@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.
@@ -349,6 +349,8 @@ interface RuntimeComponentCacheEntityComponent {
349
349
  externalId?: string | null;
350
350
  /** The additional translated keys of the component */
351
351
  additionalTranslatedKeys?: Record<string, string>;
352
+ /** The additional translated keys organized as a nested tree, derived by splitting keys on dots. */
353
+ additionalTranslatedKeysTree?: Record<string, any> | null;
352
354
  /** Partial update patch value */
353
355
  partialUpdatePatch?: string | null;
354
356
  /**
@@ -1988,6 +1990,8 @@ interface WebComponentData {
1988
1990
  excludeFromAutoRevoke?: boolean;
1989
1991
  /** defines the widget's behaviour in editor page */
1990
1992
  widgetBehavior?: WidgetBehavior;
1993
+ /** When true, avoid adding widgets when this component is installed/used. */
1994
+ avoidAddingWidgets?: boolean;
1991
1995
  }
1992
1996
  /** Web component size */
1993
1997
  interface Size {
@@ -18973,7 +18977,7 @@ interface AppData {
18973
18977
  appType?: string;
18974
18978
  /**
18975
18979
  * Represents the Component data enriched with translations and overrides
18976
- * @maxSize 350
18980
+ * @maxSize 500
18977
18981
  */
18978
18982
  components?: RuntimeComponentCacheEntity[];
18979
18983
  /**