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