@wix/auto_sdk_data-extension-schema_schemas 1.0.250 → 1.0.251

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.
@@ -21048,7 +21048,25 @@ interface OAuthConfig {
21048
21048
  refreshUrl?: string;
21049
21049
  /**
21050
21050
  * Optional token revocation endpoint used by the disconnect flow (RFC 7009). Empty if unsupported.
21051
- * @format WEB_URL
21051
+ *
21052
+ * Supports `{field_name}` placeholders, substituted at call time from values the server already
21053
+ * holds. Some providers require one in the path, for example GitHub:
21054
+ * "https://api.github.com/applications/{client_id}/token". Recognized names are client_id,
21055
+ * app_id, component_id and connector_slug — all non-secret and non-PII. Values are
21056
+ * percent-encoded and may appear only in the path or query; a placeholder in the scheme or host
21057
+ * is rejected.
21058
+ *
21059
+ * Secrets and tokens are never substitutable: client_secret, access_token and refresh_token are
21060
+ * not recognized names, and any unknown or leftover placeholder fails the call rather than
21061
+ * producing a partially templated URL. Templating is per field — the other URL fields in this
21062
+ * message are taken literally and keep their WEB_URL format.
21063
+ *
21064
+ * This field carries a URI Template (RFC 6570), not a URI, so it deliberately has no
21065
+ * (wix.api.format): a templated value such as the GitHub one above is not a syntactically valid
21066
+ * URL, and WEB_URL would reject it (as it would reject the empty value documented above). The
21067
+ * resolver enforces the equivalent guarantees at call time instead — HTTPS only, a parseable
21068
+ * endpoint, and an authority identical to the configured one.
21069
+ * @maxLength 2000
21052
21070
  */
21053
21071
  revokeUrl?: string;
21054
21072
  /**