@wix/app-extensions 1.0.98 → 1.0.100

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.
@@ -2476,6 +2476,8 @@ interface WidgetComponentData {
2476
2476
  shouldBeStretchedByDefaultMobile?: boolean | null;
2477
2477
  /** When true, this widget should be prefetched. */
2478
2478
  preFetch?: boolean | null;
2479
+ /** When true, this extension is excluded from the app installation flow. */
2480
+ excludeFromAppInstallation?: boolean;
2479
2481
  }
2480
2482
  /** Allow users to resize and move the widget, or pin it to a specific position on all pages of the site. */
2481
2483
  /** @internal */
@@ -2803,6 +2805,8 @@ interface PageComponentData {
2803
2805
  addOnlyOnce?: boolean | null;
2804
2806
  /** When true, this page should use server-side rendered SEO. */
2805
2807
  useSsrSeo?: boolean;
2808
+ /** When true, this extension is excluded from the app installation flow. */
2809
+ excludeFromAppInstallation?: boolean;
2806
2810
  }
2807
2811
  /** @internal */
2808
2812
  interface Padding {
@@ -26241,13 +26245,17 @@ interface WebhookConfig {
26241
26245
  deliveryIdHeader?: string;
26242
26246
  /**
26243
26247
  * Header carrying the event type of the delivery, for example "X-GitHub-Event". Exactly one of
26244
- * event_type_header and event_type_json_pointer must be set.
26248
+ * event_type_header and event_type_json_pointer must be set. The delivery path forwards an
26249
+ * extracted event type unchanged and opaque, even when it is unknown; a missing or unextractable
26250
+ * event type is malformed and must be rejected.
26245
26251
  * @maxLength 120
26246
26252
  */
26247
26253
  eventTypeHeader?: string;
26248
26254
  /**
26249
26255
  * RFC 6901 JSON Pointer selecting the event type from the delivery body, for example
26250
- * "/event/type". Exactly one of event_type_header and event_type_json_pointer must be set.
26256
+ * "/event/type". Exactly one of event_type_header and event_type_json_pointer must be set. The
26257
+ * delivery path forwards an extracted event type unchanged and opaque, even when it is unknown;
26258
+ * a missing or unextractable event type is malformed and must be rejected.
26251
26259
  * @maxLength 500
26252
26260
  */
26253
26261
  eventTypeJsonPointer?: string;
@@ -26264,20 +26272,11 @@ interface WebhookConfig {
26264
26272
  * @maxLength 500
26265
26273
  */
26266
26274
  providerResourceKeyJsonPointer?: string;
26267
- /**
26268
- * Event types the connector accepts, as the provider spells them. At least one value is
26269
- * required: a delivery whose event type is not listed is discarded after verification, so an
26270
- * empty list would accept nothing.
26271
- * @minSize 1
26272
- * @maxSize 200
26273
- * @minLength 1
26274
- * @maxLength 200
26275
- */
26276
- supportedEventTypes?: string[];
26277
26275
  /**
26278
26276
  * Event types that are a verified signal that the provider revoked the connector's credential,
26279
- * for example an app-uninstalled or token-revoked event. Every value must also appear in
26280
- * supported_event_types.
26277
+ * for example an app-uninstalled or token-revoked event. Event types are not enumerated here:
26278
+ * the delivery path forwards an extracted event type unchanged and opaque, even when it is
26279
+ * unknown; a missing or unextractable event type is malformed and must be rejected.
26281
26280
  *
26282
26281
  * Only a verified delivery may carry this signal, so the list must be empty when
26283
26282
  * verification_method is NO_VERIFICATION: otherwise anyone able to reach the callback URL could