@wix/auto_sdk_data-extension-schema_schemas 1.0.255 → 1.0.256
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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +17 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +17 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +17 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +17 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +17 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +17 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +17 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +17 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -20972,6 +20972,23 @@ interface ConnectorConfig extends ConnectorConfigAuthConfigOneOf {
|
|
|
20972
20972
|
* implicit default, so an unverifiable delivery is never trusted.
|
|
20973
20973
|
*/
|
|
20974
20974
|
webhookConfig?: WebhookConfig;
|
|
20975
|
+
/**
|
|
20976
|
+
* Optional human-readable description of the connector, shown to developers in the catalog.
|
|
20977
|
+
* @maxLength 300
|
|
20978
|
+
*/
|
|
20979
|
+
description?: string | null;
|
|
20980
|
+
/**
|
|
20981
|
+
* Optional URL of the connector's icon, shown alongside the provider in the catalog.
|
|
20982
|
+
* @format WEB_URL
|
|
20983
|
+
*/
|
|
20984
|
+
iconUrl?: string | null;
|
|
20985
|
+
/**
|
|
20986
|
+
* Optional list of human-readable permission descriptions shown to users in the UI.
|
|
20987
|
+
* These are for display only and are distinct from the OAuth scopes the connector actually requests.
|
|
20988
|
+
* @maxSize 6
|
|
20989
|
+
* @maxLength 70
|
|
20990
|
+
*/
|
|
20991
|
+
displayedPermissions?: string[];
|
|
20975
20992
|
}
|
|
20976
20993
|
/** @oneof */
|
|
20977
20994
|
interface ConnectorConfigAuthConfigOneOf {
|