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