@wix/app-extensions 1.0.119 → 1.0.121

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.
@@ -26324,18 +26324,20 @@ interface WebhookConfig {
26324
26324
  */
26325
26325
  deliveryIdHeader?: string;
26326
26326
  /**
26327
- * Header carrying the event type of the delivery, for example "X-GitHub-Event". Exactly one of
26328
- * event_type_header and event_type_json_pointer must be set. The delivery path forwards an
26329
- * extracted event type unchanged and opaque, even when it is unknown; a missing or unextractable
26330
- * event type is malformed and must be rejected.
26327
+ * Header carrying the event type of the delivery, for example "X-GitHub-Event". Optional: at
26328
+ * most one of event_type_header and event_type_json_pointer may be set, and a provider with no
26329
+ * single event-type header or body field can leave both unset. The delivery path forwards an
26330
+ * extracted event type unchanged and opaque, even when it is unknown; a configured extractor
26331
+ * that fails to extract a value is malformed and must be rejected.
26331
26332
  * @maxLength 120
26332
26333
  */
26333
26334
  eventTypeHeader?: string;
26334
26335
  /**
26335
26336
  * RFC 6901 JSON Pointer selecting the event type from the delivery body, for example
26336
- * "/event/type". Exactly one of event_type_header and event_type_json_pointer must be set. The
26337
+ * "/event/type". Optional: at most one of event_type_header and event_type_json_pointer may be
26338
+ * set, and a provider with no single event-type header or body field can leave both unset. The
26337
26339
  * delivery path forwards an extracted event type unchanged and opaque, even when it is unknown;
26338
- * a missing or unextractable event type is malformed and must be rejected.
26340
+ * a configured extractor that fails to extract a value is malformed and must be rejected.
26339
26341
  * @maxLength 500
26340
26342
  */
26341
26343
  eventTypeJsonPointer?: string;
@@ -26650,6 +26652,12 @@ interface AppToolConfig {
26650
26652
  responseSchema?: Record<string, any> | null;
26651
26653
  /** Whether the tool is available to Aria. Set to `true` to enable it. */
26652
26654
  activated?: boolean;
26655
+ /**
26656
+ * The tool's display name shown to users.
26657
+ * @minLength 2
26658
+ * @maxLength 50
26659
+ */
26660
+ displayName?: string | null;
26653
26661
  }
26654
26662
  /** @internal */
26655
26663
  interface Empty {