@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.
@@ -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 {