@wix/auto_sdk_data-extension-schema_schemas 1.0.176 → 1.0.177

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.
@@ -352,6 +352,8 @@ interface RuntimeComponentCacheEntityComponent {
352
352
  externalId?: string | null;
353
353
  /** The additional translated keys of the component */
354
354
  additionalTranslatedKeys?: Record<string, string>;
355
+ /** The additional translated keys organized as a nested tree, derived by splitting keys on dots. */
356
+ additionalTranslatedKeysTree?: Record<string, any> | null;
355
357
  /** Partial update patch value */
356
358
  partialUpdatePatch?: string | null;
357
359
  /**
@@ -2014,6 +2016,8 @@ interface WebComponentData {
2014
2016
  excludeFromAutoRevoke?: boolean;
2015
2017
  /** defines the widget's behaviour in editor page */
2016
2018
  widgetBehavior?: WidgetBehavior;
2019
+ /** When true, avoid adding widgets when this component is installed/used. */
2020
+ avoidAddingWidgets?: boolean;
2017
2021
  }
2018
2022
  /** Web component size */
2019
2023
  interface Size {
@@ -18999,7 +19003,7 @@ interface AppData {
18999
19003
  appType?: string;
19000
19004
  /**
19001
19005
  * Represents the Component data enriched with translations and overrides
19002
- * @maxSize 350
19006
+ * @maxSize 500
19003
19007
  */
19004
19008
  components?: RuntimeComponentCacheEntity[];
19005
19009
  /**