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