@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.
@@ -354,13 +354,19 @@ interface RuntimeComponentCacheEntityComponent {
354
354
  additionalTranslatedKeys?: Record<string, string>;
355
355
  /** The additional translated keys organized as a nested tree, derived by splitting keys on dots. */
356
356
  additionalTranslatedKeysTree?: Record<string, any> | null;
357
- /** Partial update patch value */
357
+ /**
358
+ * @deprecated
359
+ * @replacedBy partial_update_patches
360
+ * @targetRemovalDate 2026-12-31
361
+ */
358
362
  partialUpdatePatch?: string | null;
359
363
  /**
360
364
  * The external version of the component, if exists. Related to the component's external_id.
361
365
  * @maxLength 64
362
366
  */
363
367
  externalVersion?: string | null;
368
+ /** spec -> partial update patch JSON */
369
+ partialUpdatePatches?: Record<string, string>;
364
370
  }
365
371
  /** Component type */
366
372
  declare enum ComponentType {
@@ -20963,15 +20969,21 @@ interface RuntimeComponentCacheEntityExperiment extends RuntimeComponentCacheEnt
20963
20969
  gradualDelete?: GradualDeleteCacheEntity;
20964
20970
  partialUpdate?: PartialUpdateCacheEntity;
20965
20971
  /**
20966
- * Spec to conduct on the component
20967
20972
  * @maxLength 128
20973
+ * @deprecated
20974
+ * @replacedBy spec_to_variant
20975
+ * @targetRemovalDate 2026-12-31
20968
20976
  */
20969
20977
  spec?: string;
20970
20978
  /**
20971
- * Value the spec should return in order to return the newer component version
20972
20979
  * @maxLength 128
20980
+ * @deprecated
20981
+ * @replacedBy spec_to_variant
20982
+ * @targetRemovalDate 2026-12-31
20973
20983
  */
20974
20984
  variantValue?: string;
20985
+ /** spec -> variant_value */
20986
+ specToVariant?: Record<string, string>;
20975
20987
  }
20976
20988
  /** @oneof */
20977
20989
  interface RuntimeComponentCacheEntityExperimentExperimentOneOf {