We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
eventData
WebhookDispatch
1 parent 5a9cd66 commit 351f11fCopy full SHA for 351f11f
src/resource_clients/webhook_dispatch.ts
@@ -30,6 +30,7 @@ export interface WebhookDispatch {
30
eventType: WebhookEventType;
31
calls: WebhookDispatchCall[];
32
webhook: Pick<Webhook, 'requestUrl' | 'isAdHoc'>;
33
+ eventData: WebhookDispatchEventData | null;
34
}
35
36
export enum WebhookDispatchStatus {
@@ -45,3 +46,10 @@ export interface WebhookDispatchCall {
45
46
responseStatus: number | null;
47
responseBody: string | null;
48
49
+
50
+export interface WebhookDispatchEventData {
51
+ actorRunId?: string;
52
+ actorId?: string;
53
+ actorTaskId?: string;
54
+ actorBuildId?: string;
55
+}
0 commit comments