@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.
@@ -15929,7 +15929,8 @@ interface StateContextItem extends StateContextItemValueOneOf {
15929
15929
  */
15930
15930
  enumValue?: string | null;
15931
15931
  /**
15932
- * Key of the context.items entry this value applies to. Must reference an existing item whose data_type is booleanValue or textEnum
15932
+ * Key of the context.items entry this value applies to. Must reference an existing item whose
15933
+ * data_type is booleanValue or textEnum
15933
15934
  * @maxLength 100
15934
15935
  */
15935
15936
  itemKey?: string | null;
@@ -20972,6 +20973,23 @@ interface ConnectorConfig extends ConnectorConfigAuthConfigOneOf {
20972
20973
  * implicit default, so an unverifiable delivery is never trusted.
20973
20974
  */
20974
20975
  webhookConfig?: WebhookConfig;
20976
+ /**
20977
+ * Optional human-readable description of the connector, shown to developers in the catalog.
20978
+ * @maxLength 300
20979
+ */
20980
+ description?: string | null;
20981
+ /**
20982
+ * Optional URL of the connector's icon, shown alongside the provider in the catalog.
20983
+ * @format WEB_URL
20984
+ */
20985
+ iconUrl?: string | null;
20986
+ /**
20987
+ * Optional list of human-readable permission descriptions shown to users in the UI.
20988
+ * These are for display only and are distinct from the OAuth scopes the connector actually requests.
20989
+ * @maxSize 6
20990
+ * @maxLength 70
20991
+ */
20992
+ displayedPermissions?: string[];
20975
20993
  }
20976
20994
  /** @oneof */
20977
20995
  interface ConnectorConfigAuthConfigOneOf {