@wix/app-extensions 1.0.145 → 1.0.147

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.
@@ -26741,6 +26741,17 @@ interface ProviderIdentityOperation {
26741
26741
  * @maxSize 20
26742
26742
  */
26743
26743
  headers?: Record<string, string>;
26744
+ /**
26745
+ * RFC 6901 JSON Pointer selecting a human-readable display label from the same response —
26746
+ * GitHub's /user has "login" next to "node_id", Google's userinfo has "email" next to "sub".
26747
+ * Optional, deliberately with no minLength: a connector may leave this unset and stay
26748
+ * perfectly valid — an identity operation with no label pointer is not a misconfiguration.
26749
+ * This selects a display label only. It is mutable, never used for dedup, uniqueness, or
26750
+ * authorization, and it is not the identity — deduping on a display name would let a
26751
+ * provider-side rename fabricate a phantom duplicate connection.
26752
+ * @maxLength 500
26753
+ */
26754
+ responseDisplayNameJsonPointer?: string;
26744
26755
  }
26745
26756
  /**
26746
26757
  * Provider-specific parameters required when the normal authorization endpoint is reused to
@@ -27371,10 +27382,11 @@ interface WebhookConfig extends WebhookConfigVerificationOneOf, WebhookConfigRep
27371
27382
  * value this field carries for every other method. HTTPS and a parseable endpoint are enforced
27372
27383
  * when the keys are fetched instead.
27373
27384
  *
27374
- * Deprecated: superseded by PublicKeyConfig.public_key_url.
27385
+ * Deprecated: superseded by PublicKeyConfig.public_key_url for PUBLIC_KEY, and by
27386
+ * OidcBearerConfig.public_key_url for OIDC_BEARER.
27375
27387
  * @maxLength 2000
27376
27388
  * @deprecated
27377
- * @replacedBy verification.public_key_config.public_key_url
27389
+ * @replacedBy verification.public_key_config.public_key_url (PUBLIC_KEY) or verification.oidc_bearer_config.public_key_url (OIDC_BEARER)
27378
27390
  * @targetRemovalDate 2027-06-30
27379
27391
  */
27380
27392
  publicKeyUrl?: string;
@@ -27611,10 +27623,10 @@ interface McpConfig {
27611
27623
  interface DisplayedPermission {
27612
27624
  /**
27613
27625
  * Identifies this line within its connector's list, so editing or reordering the list does not
27614
- * orphan an existing translation. Leave empty for a new line the server assigns one on create
27615
- * or update. To preserve an existing line's translation history, echo back the id you last read
27616
- * for it; sending it empty (even for a line that already had one) is read as "this is new" and
27617
- * mints a fresh id, starting a fresh translation history.
27626
+ * orphan an existing translation. The caller mints the id for a new line and it is echoed back
27627
+ * unchanged on update. To preserve an existing line's translation history, echo back the id you
27628
+ * last read for it; sending it empty (even for a line that already had one) is read as "this is
27629
+ * new" and mints a fresh id, starting a fresh translation history.
27618
27630
  * @maxLength 80
27619
27631
  */
27620
27632
  id?: string;