@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.
@@ -17469,7 +17469,7 @@ interface ProviderConfigMessage {
17469
17469
  * Can be used in conjunction with ListFilteringCapabilities.
17470
17470
  * When a provider first integrates with segments, we allow to pass empty filtering_capabilities, and to gradually add capabilities.
17471
17471
  * a provider with 0 capabilities will not be shown in the UI.
17472
- * @maxSize 20
17472
+ * @maxSize 50
17473
17473
  */
17474
17474
  filteringCapabilities?: FilteringCapability[];
17475
17475
  /**
@@ -18475,6 +18475,16 @@ interface EditorContextProvider {
18475
18475
  data?: Record<string, DataItem>;
18476
18476
  /** Allows overriding the default settings actions for the data of this component */
18477
18477
  settings?: Action;
18478
+ /**
18479
+ * Human friendly name of the context provider for human readability
18480
+ * @maxLength 50
18481
+ */
18482
+ displayName?: string | null;
18483
+ /**
18484
+ * The public description of the context provider
18485
+ * @maxLength 300
18486
+ */
18487
+ description?: string | null;
18478
18488
  }
18479
18489
  interface EditorContextProviderResources {
18480
18490
  /** The ESM bundle for this component in runtime */
@@ -18858,6 +18868,15 @@ interface EventMetadata extends BaseEventMetadata {
18858
18868
  * 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.
18859
18869
  */
18860
18870
  entityEventSequence?: string | null;
18871
+ accountInfo?: AccountInfoMetadata;
18872
+ }
18873
+ interface AccountInfoMetadata {
18874
+ /** ID of the Wix account associated with the event */
18875
+ accountId: string;
18876
+ /** ID of the Wix site associated with the event. Only included when the event is tied to a specific site. */
18877
+ siteId?: string;
18878
+ /** ID of the parent Wix account. Only included when 'accountId' belongs to a child account. */
18879
+ parentAccountId?: string;
18861
18880
  }
18862
18881
  interface DataExtensionSchemaCreatedEnvelope {
18863
18882
  entity: DataExtensionSchema;