@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
package/build/es/meta.d.mts
CHANGED
|
@@ -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
|
-
/**
|
|
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 {
|