@@ -336,17 +336,21 @@ class WebhookRepresentationDict(TypedDict):
336336 """
337337 Optional template for the HTTP headers sent by the webhook.
338338 """
339+ should_interpolate_strings : NotRequired [bool | None ]
340+ """
341+ Flag to also interpolate `{{...}}` variables inside string values of the payload and headers templates.
342+ """
339343 idempotency_key : NotRequired [str | None ]
340344 """
341- Optional key that prevents creating duplicate webhooks, e.g. when the run-starting request is retried.
345+ Key that prevents creating duplicate webhooks, e.g. when the run-starting request is retried.
342346 """
343347 ignore_ssl_errors : NotRequired [bool | None ]
344348 """
345- Optional flag to ignore SSL errors when the webhook sends the request.
349+ Flag to ignore SSL errors when the webhook sends the request.
346350 """
347351 do_not_retry : NotRequired [bool | None ]
348352 """
349- Optional flag to skip retrying the webhook request on failure.
353+ Flag to skip retrying the webhook request on failure.
350354 """
351355
352356
@@ -386,15 +390,19 @@ class WebhookRepresentationCamelDict(TypedDict):
386390 """
387391 Optional template for the HTTP headers sent by the webhook.
388392 """
393+ shouldInterpolateStrings : NotRequired [bool | None ]
394+ """
395+ Flag to also interpolate `{{...}}` variables inside string values of the payload and headers templates.
396+ """
389397 idempotencyKey : NotRequired [str | None ]
390398 """
391- Optional key that prevents creating duplicate webhooks, e.g. when the run-starting request is retried.
399+ Key that prevents creating duplicate webhooks, e.g. when the run-starting request is retried.
392400 """
393401 ignoreSslErrors : NotRequired [bool | None ]
394402 """
395- Optional flag to ignore SSL errors when the webhook sends the request.
403+ Flag to ignore SSL errors when the webhook sends the request.
396404 """
397405 doNotRetry : NotRequired [bool | None ]
398406 """
399- Optional flag to skip retrying the webhook request on failure.
407+ Flag to skip retrying the webhook request on failure.
400408 """
0 commit comments