@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.
@@ -20991,6 +20991,23 @@ interface ConnectorConfig extends ConnectorConfigAuthConfigOneOf {
20991
20991
  * implicit default, so an unverifiable delivery is never trusted.
20992
20992
  */
20993
20993
  webhookConfig?: WebhookConfig;
20994
+ /**
20995
+ * Optional human-readable description of the connector, shown to developers in the catalog.
20996
+ * @maxLength 300
20997
+ */
20998
+ description?: string | null;
20999
+ /**
21000
+ * Optional URL of the connector's icon, shown alongside the provider in the catalog.
21001
+ * @format WEB_URL
21002
+ */
21003
+ iconUrl?: string | null;
21004
+ /**
21005
+ * Optional list of human-readable permission descriptions shown to users in the UI.
21006
+ * These are for display only and are distinct from the OAuth scopes the connector actually requests.
21007
+ * @maxSize 6
21008
+ * @maxLength 70
21009
+ */
21010
+ displayedPermissions?: string[];
20994
21011
  }
20995
21012
  /** @oneof */
20996
21013
  interface ConnectorConfigAuthConfigOneOf {