@wix/auto_sdk_data-extension-schema_schemas 1.0.255 → 1.0.257
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 +19 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +19 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +19 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +19 -1
- 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 +19 -1
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +19 -1
- 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 +19 -1
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +19 -1
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/meta.d.mts
CHANGED
|
@@ -15948,7 +15948,8 @@ interface StateContextItem extends StateContextItemValueOneOf {
|
|
|
15948
15948
|
*/
|
|
15949
15949
|
enumValue?: string | null;
|
|
15950
15950
|
/**
|
|
15951
|
-
* Key of the context.items entry this value applies to. Must reference an existing item whose
|
|
15951
|
+
* Key of the context.items entry this value applies to. Must reference an existing item whose
|
|
15952
|
+
* data_type is booleanValue or textEnum
|
|
15952
15953
|
* @maxLength 100
|
|
15953
15954
|
*/
|
|
15954
15955
|
itemKey?: string | null;
|
|
@@ -20991,6 +20992,23 @@ interface ConnectorConfig extends ConnectorConfigAuthConfigOneOf {
|
|
|
20991
20992
|
* implicit default, so an unverifiable delivery is never trusted.
|
|
20992
20993
|
*/
|
|
20993
20994
|
webhookConfig?: WebhookConfig;
|
|
20995
|
+
/**
|
|
20996
|
+
* Optional human-readable description of the connector, shown to developers in the catalog.
|
|
20997
|
+
* @maxLength 300
|
|
20998
|
+
*/
|
|
20999
|
+
description?: string | null;
|
|
21000
|
+
/**
|
|
21001
|
+
* Optional URL of the connector's icon, shown alongside the provider in the catalog.
|
|
21002
|
+
* @format WEB_URL
|
|
21003
|
+
*/
|
|
21004
|
+
iconUrl?: string | null;
|
|
21005
|
+
/**
|
|
21006
|
+
* Optional list of human-readable permission descriptions shown to users in the UI.
|
|
21007
|
+
* These are for display only and are distinct from the OAuth scopes the connector actually requests.
|
|
21008
|
+
* @maxSize 6
|
|
21009
|
+
* @maxLength 70
|
|
21010
|
+
*/
|
|
21011
|
+
displayedPermissions?: string[];
|
|
20994
21012
|
}
|
|
20995
21013
|
/** @oneof */
|
|
20996
21014
|
interface ConnectorConfigAuthConfigOneOf {
|