@wix/auto_sdk_data-extension-schema_schemas 1.0.238 → 1.0.239

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.
@@ -351,13 +351,19 @@ interface RuntimeComponentCacheEntityComponent {
351
351
  additionalTranslatedKeys?: Record<string, string>;
352
352
  /** The additional translated keys organized as a nested tree, derived by splitting keys on dots. */
353
353
  additionalTranslatedKeysTree?: Record<string, any> | null;
354
- /** Partial update patch value */
354
+ /**
355
+ * @deprecated
356
+ * @replacedBy partial_update_patches
357
+ * @targetRemovalDate 2026-12-31
358
+ */
355
359
  partialUpdatePatch?: string | null;
356
360
  /**
357
361
  * The external version of the component, if exists. Related to the component's external_id.
358
362
  * @maxLength 64
359
363
  */
360
364
  externalVersion?: string | null;
365
+ /** spec -> partial update patch JSON */
366
+ partialUpdatePatches?: Record<string, string>;
361
367
  }
362
368
  /** Component type */
363
369
  declare enum ComponentType {
@@ -20937,15 +20943,21 @@ interface RuntimeComponentCacheEntityExperiment extends RuntimeComponentCacheEnt
20937
20943
  gradualDelete?: GradualDeleteCacheEntity;
20938
20944
  partialUpdate?: PartialUpdateCacheEntity;
20939
20945
  /**
20940
- * Spec to conduct on the component
20941
20946
  * @maxLength 128
20947
+ * @deprecated
20948
+ * @replacedBy spec_to_variant
20949
+ * @targetRemovalDate 2026-12-31
20942
20950
  */
20943
20951
  spec?: string;
20944
20952
  /**
20945
- * Value the spec should return in order to return the newer component version
20946
20953
  * @maxLength 128
20954
+ * @deprecated
20955
+ * @replacedBy spec_to_variant
20956
+ * @targetRemovalDate 2026-12-31
20947
20957
  */
20948
20958
  variantValue?: string;
20959
+ /** spec -> variant_value */
20960
+ specToVariant?: Record<string, string>;
20949
20961
  }
20950
20962
  /** @oneof */
20951
20963
  interface RuntimeComponentCacheEntityExperimentExperimentOneOf {