@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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +15 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +15 -3
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +15 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +15 -3
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +15 -3
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +15 -3
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +15 -3
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +15 -3
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -358,13 +358,19 @@ interface RuntimeComponentCacheEntityComponent {
|
|
|
358
358
|
additionalTranslatedKeys?: Record<string, string>;
|
|
359
359
|
/** The additional translated keys organized as a nested tree, derived by splitting keys on dots. */
|
|
360
360
|
additionalTranslatedKeysTree?: Record<string, any> | null;
|
|
361
|
-
/**
|
|
361
|
+
/**
|
|
362
|
+
* @deprecated
|
|
363
|
+
* @replacedBy partial_update_patches
|
|
364
|
+
* @targetRemovalDate 2026-12-31
|
|
365
|
+
*/
|
|
362
366
|
partialUpdatePatch?: string | null;
|
|
363
367
|
/**
|
|
364
368
|
* The external version of the component, if exists. Related to the component's external_id.
|
|
365
369
|
* @maxLength 64
|
|
366
370
|
*/
|
|
367
371
|
externalVersion?: string | null;
|
|
372
|
+
/** spec -> partial update patch JSON */
|
|
373
|
+
partialUpdatePatches?: Record<string, string>;
|
|
368
374
|
}
|
|
369
375
|
/** Component type */
|
|
370
376
|
declare enum ComponentType {
|
|
@@ -20944,15 +20950,21 @@ interface RuntimeComponentCacheEntityExperiment extends RuntimeComponentCacheEnt
|
|
|
20944
20950
|
gradualDelete?: GradualDeleteCacheEntity;
|
|
20945
20951
|
partialUpdate?: PartialUpdateCacheEntity;
|
|
20946
20952
|
/**
|
|
20947
|
-
* Spec to conduct on the component
|
|
20948
20953
|
* @maxLength 128
|
|
20954
|
+
* @deprecated
|
|
20955
|
+
* @replacedBy spec_to_variant
|
|
20956
|
+
* @targetRemovalDate 2026-12-31
|
|
20949
20957
|
*/
|
|
20950
20958
|
spec?: string;
|
|
20951
20959
|
/**
|
|
20952
|
-
* Value the spec should return in order to return the newer component version
|
|
20953
20960
|
* @maxLength 128
|
|
20961
|
+
* @deprecated
|
|
20962
|
+
* @replacedBy spec_to_variant
|
|
20963
|
+
* @targetRemovalDate 2026-12-31
|
|
20954
20964
|
*/
|
|
20955
20965
|
variantValue?: string;
|
|
20966
|
+
/** spec -> variant_value */
|
|
20967
|
+
specToVariant?: Record<string, string>;
|
|
20956
20968
|
}
|
|
20957
20969
|
/** @oneof */
|
|
20958
20970
|
interface RuntimeComponentCacheEntityExperimentExperimentOneOf {
|