@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
|
@@ -423,6 +423,11 @@ interface RuntimeComponentCacheEntityComponent {
|
|
|
423
423
|
additionalTranslatedKeys?: Record<string, string>;
|
|
424
424
|
/** Partial update patch value */
|
|
425
425
|
partialUpdatePatch?: string | null;
|
|
426
|
+
/**
|
|
427
|
+
* The external version of the component, if exists. Related to the component's external_id.
|
|
428
|
+
* @maxLength 64
|
|
429
|
+
*/
|
|
430
|
+
externalVersion?: string | null;
|
|
426
431
|
}
|
|
427
432
|
/** Component type */
|
|
428
433
|
declare enum ComponentType {
|
|
@@ -15178,10 +15183,12 @@ interface EventTimeSlotsProviderConfig {
|
|
|
15178
15183
|
eventFilter?: Record<string, any> | null;
|
|
15179
15184
|
/**
|
|
15180
15185
|
* event service id field, that will be used to map the event.
|
|
15181
|
-
* i.e. "externalScheduleId"
|
|
15186
|
+
* i.e. "externalScheduleId"
|
|
15182
15187
|
* @maxLength 100
|
|
15183
15188
|
*/
|
|
15184
15189
|
eventServiceIdField?: string | null;
|
|
15190
|
+
/** whether listExcludedServiceIds is enabled. */
|
|
15191
|
+
toggleListExcludedServiceIdsEnabled?: boolean;
|
|
15185
15192
|
}
|
|
15186
15193
|
interface AppEnvironmentProviderConfig {
|
|
15187
15194
|
/** URI where the SPI implementer is deployed */
|