@wix/auto_sdk_data-extension-schema_schemas 1.0.149 → 1.0.151

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.
@@ -17452,7 +17452,7 @@ interface ProviderConfigMessage {
17452
17452
  * Can be used in conjunction with ListFilteringCapabilities.
17453
17453
  * When a provider first integrates with segments, we allow to pass empty filtering_capabilities, and to gradually add capabilities.
17454
17454
  * a provider with 0 capabilities will not be shown in the UI.
17455
- * @maxSize 20
17455
+ * @maxSize 50
17456
17456
  */
17457
17457
  filteringCapabilities?: FilteringCapability[];
17458
17458
  /**
@@ -18458,6 +18458,16 @@ interface EditorContextProvider {
18458
18458
  data?: Record<string, DataItem>;
18459
18459
  /** Allows overriding the default settings actions for the data of this component */
18460
18460
  settings?: Action;
18461
+ /**
18462
+ * Human friendly name of the context provider for human readability
18463
+ * @maxLength 50
18464
+ */
18465
+ displayName?: string | null;
18466
+ /**
18467
+ * The public description of the context provider
18468
+ * @maxLength 300
18469
+ */
18470
+ description?: string | null;
18461
18471
  }
18462
18472
  interface EditorContextProviderResources {
18463
18473
  /** The ESM bundle for this component in runtime */
@@ -18841,6 +18851,15 @@ interface EventMetadata extends BaseEventMetadata {
18841
18851
  * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
18842
18852
  */
18843
18853
  entityEventSequence?: string | null;
18854
+ accountInfo?: AccountInfoMetadata;
18855
+ }
18856
+ interface AccountInfoMetadata {
18857
+ /** ID of the Wix account associated with the event */
18858
+ accountId: string;
18859
+ /** ID of the Wix site associated with the event. Only included when the event is tied to a specific site. */
18860
+ siteId?: string;
18861
+ /** ID of the parent Wix account. Only included when 'accountId' belongs to a child account. */
18862
+ parentAccountId?: string;
18844
18863
  }
18845
18864
  interface DataExtensionSchemaCreatedEnvelope {
18846
18865
  entity: DataExtensionSchema;