apify-client 2.23.4-beta.20 → 2.23.4-beta.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -103,7 +103,9 @@ export interface WebhookIdempotencyKey {
|
|
|
103
103
|
/**
|
|
104
104
|
* Data for updating a webhook.
|
|
105
105
|
*/
|
|
106
|
-
export type WebhookUpdateData = Partial<Pick<Webhook, 'isAdHoc' | '
|
|
106
|
+
export type WebhookUpdateData = Partial<Pick<Webhook, 'isAdHoc' | 'condition' | 'ignoreSslErrors' | 'doNotRetry' | 'requestUrl' | 'payloadTemplate' | 'shouldInterpolateStrings' | 'isApifyIntegration' | 'headersTemplate' | 'description'> & {
|
|
107
|
+
eventTypes: readonly WebhookEventType[];
|
|
108
|
+
}> & WebhookIdempotencyKey;
|
|
107
109
|
/**
|
|
108
110
|
* Statistics about webhook usage.
|
|
109
111
|
*/
|