@wix/auto_sdk_data-extension-schema_schemas 1.0.53 → 1.0.54
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 +8 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +8 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +8 -1
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +8 -1
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -416,6 +416,11 @@ interface RuntimeComponentCacheEntityComponent {
|
|
|
416
416
|
additionalTranslatedKeys?: Record<string, string>;
|
|
417
417
|
/** Partial update patch value */
|
|
418
418
|
partialUpdatePatch?: string | null;
|
|
419
|
+
/**
|
|
420
|
+
* The external version of the component, if exists. Related to the component's external_id.
|
|
421
|
+
* @maxLength 64
|
|
422
|
+
*/
|
|
423
|
+
externalVersion?: string | null;
|
|
419
424
|
}
|
|
420
425
|
/** Component type */
|
|
421
426
|
declare enum ComponentType {
|
|
@@ -15161,10 +15166,12 @@ interface EventTimeSlotsProviderConfig {
|
|
|
15161
15166
|
eventFilter?: Record<string, any> | null;
|
|
15162
15167
|
/**
|
|
15163
15168
|
* event service id field, that will be used to map the event.
|
|
15164
|
-
* i.e. "externalScheduleId"
|
|
15169
|
+
* i.e. "externalScheduleId"
|
|
15165
15170
|
* @maxLength 100
|
|
15166
15171
|
*/
|
|
15167
15172
|
eventServiceIdField?: string | null;
|
|
15173
|
+
/** whether listExcludedServiceIds is enabled. */
|
|
15174
|
+
toggleListExcludedServiceIdsEnabled?: boolean;
|
|
15168
15175
|
}
|
|
15169
15176
|
interface AppEnvironmentProviderConfig {
|
|
15170
15177
|
/** URI where the SPI implementer is deployed */
|