19 lines
438 B
TypeScript
19 lines
438 B
TypeScript
import * as plugins from '../plugins.ts';
|
|
import * as data from '../data/index.ts';
|
|
|
|
export interface IReq_WebhookNotification extends plugins.typedrequestInterfaces.implementsTR<
|
|
plugins.typedrequestInterfaces.ITypedRequest,
|
|
IReq_WebhookNotification
|
|
> {
|
|
method: 'webhookNotification';
|
|
request: {
|
|
connectionId: string;
|
|
provider: string;
|
|
event: string;
|
|
timestamp: number;
|
|
};
|
|
response: {
|
|
ok: boolean;
|
|
};
|
|
}
|