@wix/app-extensions 1.0.84 → 1.0.85

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.
@@ -25508,7 +25508,25 @@ interface OAuthConfig {
25508
25508
  refreshUrl?: string;
25509
25509
  /**
25510
25510
  * Optional token revocation endpoint used by the disconnect flow (RFC 7009). Empty if unsupported.
25511
- * @format WEB_URL
25511
+ *
25512
+ * Supports `{field_name}` placeholders, substituted at call time from values the server already
25513
+ * holds. Some providers require one in the path, for example GitHub:
25514
+ * "https://api.github.com/applications/{client_id}/token". Recognized names are client_id,
25515
+ * app_id, component_id and connector_slug — all non-secret and non-PII. Values are
25516
+ * percent-encoded and may appear only in the path or query; a placeholder in the scheme or host
25517
+ * is rejected.
25518
+ *
25519
+ * Secrets and tokens are never substitutable: client_secret, access_token and refresh_token are
25520
+ * not recognized names, and any unknown or leftover placeholder fails the call rather than
25521
+ * producing a partially templated URL. Templating is per field — the other URL fields in this
25522
+ * message are taken literally and keep their WEB_URL format.
25523
+ *
25524
+ * This field carries a URI Template (RFC 6570), not a URI, so it deliberately has no
25525
+ * (wix.api.format): a templated value such as the GitHub one above is not a syntactically valid
25526
+ * URL, and WEB_URL would reject it (as it would reject the empty value documented above). The
25527
+ * resolver enforces the equivalent guarantees at call time instead — HTTPS only, a parseable
25528
+ * endpoint, and an authority identical to the configured one.
25529
+ * @maxLength 2000
25512
25530
  */
25513
25531
  revokeUrl?: string;
25514
25532
  /**