@wix/auto_sdk_data_scheduled-workflows 1.0.3 → 1.0.5
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.d.ts +1 -1
- package/build/cjs/index.js +9 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +78 -11
- package/build/cjs/index.typings.js +9 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +78 -1
- package/build/cjs/meta.js +9 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +8 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +78 -11
- package/build/es/index.typings.mjs +8 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +78 -1
- package/build/es/meta.mjs +8 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +9 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +78 -11
- package/build/internal/cjs/index.typings.js +9 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +78 -1
- package/build/internal/cjs/meta.js +9 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +8 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +78 -11
- package/build/internal/es/index.typings.mjs +8 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +78 -1
- package/build/internal/es/meta.mjs +8 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/meta.d.mts
CHANGED
|
@@ -1211,6 +1211,83 @@ interface TransformationTransformationOneOf {
|
|
|
1211
1211
|
}
|
|
1212
1212
|
interface TestTransformation {
|
|
1213
1213
|
}
|
|
1214
|
+
/** Maps and filters source fields onto destination fields. */
|
|
1215
|
+
interface FieldMapping {
|
|
1216
|
+
/**
|
|
1217
|
+
* Column mappings. Any source field not listed here is excluded from the import.
|
|
1218
|
+
* @minSize 1
|
|
1219
|
+
* @maxSize 1000
|
|
1220
|
+
*/
|
|
1221
|
+
mappings?: FieldMappingEntry[];
|
|
1222
|
+
}
|
|
1223
|
+
interface FieldMappingEntry extends FieldMappingEntryConversionOneOf {
|
|
1224
|
+
/** Boolean token mapping. Set when field_type is BOOLEAN. */
|
|
1225
|
+
booleanOptions?: BooleanOptions;
|
|
1226
|
+
/** Date-time format. Set when field_type is DATETIME. */
|
|
1227
|
+
datetimeOptions?: DateTimeOptions;
|
|
1228
|
+
/**
|
|
1229
|
+
* Source field key (e.g. a CSV column header).
|
|
1230
|
+
* @minLength 1
|
|
1231
|
+
* @maxLength 1024
|
|
1232
|
+
*/
|
|
1233
|
+
sourceKey?: string;
|
|
1234
|
+
/**
|
|
1235
|
+
* Destination field key. Must already exist in the destination collection.
|
|
1236
|
+
* Use "_id" to control the item ID. May target a multi-reference or array
|
|
1237
|
+
* field (use field_type = ARRAY; the cell must be a JSON array).
|
|
1238
|
+
* @minLength 1
|
|
1239
|
+
* @maxLength 1024
|
|
1240
|
+
*/
|
|
1241
|
+
targetKey?: string;
|
|
1242
|
+
/**
|
|
1243
|
+
* Destination field data type, used to coerce the source string value.
|
|
1244
|
+
* ARRAY / OBJECT parse the cell as JSON. Default: ANY (pass-through).
|
|
1245
|
+
*/
|
|
1246
|
+
fieldType?: FieldTypeWithLiterals;
|
|
1247
|
+
}
|
|
1248
|
+
/** @oneof */
|
|
1249
|
+
interface FieldMappingEntryConversionOneOf {
|
|
1250
|
+
/** Boolean token mapping. Set when field_type is BOOLEAN. */
|
|
1251
|
+
booleanOptions?: BooleanOptions;
|
|
1252
|
+
/** Date-time format. Set when field_type is DATETIME. */
|
|
1253
|
+
datetimeOptions?: DateTimeOptions;
|
|
1254
|
+
}
|
|
1255
|
+
/**
|
|
1256
|
+
* Maps source tokens to boolean values. Matching is case-insensitive.
|
|
1257
|
+
* When both lists are empty, booleans are converted best-effort ("true"/"false").
|
|
1258
|
+
* Values matching neither list are kept as-is.
|
|
1259
|
+
*/
|
|
1260
|
+
interface BooleanOptions {
|
|
1261
|
+
/**
|
|
1262
|
+
* Source tokens representing boolean true (e.g. "true", "yes", "1").
|
|
1263
|
+
* @maxSize 64
|
|
1264
|
+
* @maxLength 256
|
|
1265
|
+
*/
|
|
1266
|
+
trueValues?: string[];
|
|
1267
|
+
/**
|
|
1268
|
+
* Source tokens representing boolean false (e.g. "false", "no", "0").
|
|
1269
|
+
* @maxSize 64
|
|
1270
|
+
* @maxLength 256
|
|
1271
|
+
*/
|
|
1272
|
+
falseValues?: string[];
|
|
1273
|
+
}
|
|
1274
|
+
/** How to parse a source date-time value. */
|
|
1275
|
+
interface DateTimeOptions {
|
|
1276
|
+
format?: DateFormatWithLiterals;
|
|
1277
|
+
}
|
|
1278
|
+
/** Known source date / date-time formats. Extend with new formats as needed. */
|
|
1279
|
+
declare enum DateFormat {
|
|
1280
|
+
/** Try to detect and parse the value automatically. */
|
|
1281
|
+
BEST_EFFORT = "BEST_EFFORT",
|
|
1282
|
+
/** ISO 8601, e.g. "2026-07-03T14:04:31.000Z". */
|
|
1283
|
+
ISO_8601 = "ISO_8601",
|
|
1284
|
+
/** "MM/DD/YYYY HH:mm", e.g. "07/03/2026 14:04". */
|
|
1285
|
+
MM_DD_YYYY_HH_MM = "MM_DD_YYYY_HH_MM",
|
|
1286
|
+
/** "DD/MM/YYYY HH:mm", e.g. "03/07/2026 14:04". */
|
|
1287
|
+
DD_MM_YYYY_HH_MM = "DD_MM_YYYY_HH_MM"
|
|
1288
|
+
}
|
|
1289
|
+
/** @enumType */
|
|
1290
|
+
type DateFormatWithLiterals = DateFormat | 'BEST_EFFORT' | 'ISO_8601' | 'MM_DD_YYYY_HH_MM' | 'DD_MM_YYYY_HH_MM';
|
|
1214
1291
|
interface CreateScheduledDataWorkflowRequest {
|
|
1215
1292
|
/** Scheduled data movement workflow to create. */
|
|
1216
1293
|
scheduledDataWorkflow: ScheduledDataWorkflow;
|
|
@@ -1536,4 +1613,4 @@ declare function getScheduledDataWorkflow(): __PublicMethodMetaInfo<'GET', {
|
|
|
1536
1613
|
}, GetScheduledDataWorkflowRequest$1, GetScheduledDataWorkflowRequest, GetScheduledDataWorkflowResponse$1, GetScheduledDataWorkflowResponse>;
|
|
1537
1614
|
declare function listScheduledDataWorkflows(): __PublicMethodMetaInfo<'GET', {}, ListScheduledDataWorkflowsRequest$1, ListScheduledDataWorkflowsRequest, ListScheduledDataWorkflowsResponse$1, ListScheduledDataWorkflowsResponse>;
|
|
1538
1615
|
|
|
1539
|
-
export { type AbsOperation as AbsOperationOriginal, type AccountInfo as AccountInfoOriginal, type AccumulatorExpressionOneOf as AccumulatorExpressionOneOfOriginal, type Accumulator as AccumulatorOriginal, type ActionEvent as ActionEventOriginal, type AddField as AddFieldOriginal, type AddFields as AddFieldsOriginal, type AddOperation as AddOperationOriginal, type AggregationPipeline as AggregationPipelineOriginal, type AggregationPipelinePagingMethodOneOf as AggregationPipelinePagingMethodOneOfOriginal, type AggregationQuery as AggregationQueryOriginal, type Avg as AvgOriginal, type CeilOperation as CeilOperationOriginal, type CommonCursorPaging as CommonCursorPagingOriginal, type CommonSorting as CommonSortingOriginal, type ConcatOperation as ConcatOperationOriginal, type ConditionOperation as ConditionOperationOriginal, type CreateScheduledDataWorkflowRequest as CreateScheduledDataWorkflowRequestOriginal, type CreateScheduledDataWorkflowResponse as CreateScheduledDataWorkflowResponseOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DataMovementJobLogs as DataMovementJobLogsOriginal, type DeleteScheduledDataWorkflowRequest as DeleteScheduledDataWorkflowRequestOriginal, type DeleteScheduledDataWorkflowResponse as DeleteScheduledDataWorkflowResponseOriginal, type DestinationDestinationOneOf as DestinationDestinationOneOfOriginal, type Destination as DestinationOriginal, type DivideOperation as DivideOperationOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type Exclude as ExcludeOriginal, type Expression as ExpressionOriginal, type ExpressionValueOneOf as ExpressionValueOneOfOriginal, type ExternalFileSource as ExternalFileSourceOriginal, type Field as FieldOriginal, type FieldProjectionOneOf as FieldProjectionOneOfOriginal, FieldType as FieldTypeOriginal, type FieldTypeWithLiterals as FieldTypeWithLiteralsOriginal, Fields as FieldsOriginal, type FieldsWithLiterals as FieldsWithLiteralsOriginal, type FileDestination as FileDestinationOriginal, FileFormat as FileFormatOriginal, type FileFormatWithLiterals as FileFormatWithLiteralsOriginal, type FileSource as FileSourceOriginal, type FilterQuery as FilterQueryOriginal, type First as FirstOriginal, type FloorOperation as FloorOperationOriginal, type GetScheduledDataWorkflowRequest as GetScheduledDataWorkflowRequestOriginal, type GetScheduledDataWorkflowResponse as GetScheduledDataWorkflowResponseOriginal, type GoogleSheetsSource as GoogleSheetsSourceOriginal, type GreaterThanOperation as GreaterThanOperationOriginal, type GroupId as GroupIdOriginal, type Group as GroupOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type Include as IncludeOriginal, type JobSpec as JobSpecOriginal, type JobSpecSiteOverrideOneOf as JobSpecSiteOverrideOneOfOriginal, type Last as LastOriginal, type LengthOperation as LengthOperationOriginal, type ListScheduledDataWorkflowsRequest as ListScheduledDataWorkflowsRequestOriginal, type ListScheduledDataWorkflowsResponse as ListScheduledDataWorkflowsResponseOriginal, type LocalizationDestination as LocalizationDestinationOriginal, type LocalizationSource as LocalizationSourceOriginal, type Lookup as LookupOriginal, type Max as MaxOriginal, MediaType as MediaTypeOriginal, type MediaTypeWithLiterals as MediaTypeWithLiteralsOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Min as MinOriginal, type ModOperation as ModOperationOriginal, type MultiplyOperation as MultiplyOperationOriginal, type ObjectToArray as ObjectToArrayOriginal, type Paging as PagingOriginal, type ProjectNested as ProjectNestedOriginal, type Projection as ProjectionOriginal, type Push as PushOriginal, type RescheduleScheduledDataWorkflowRequest as RescheduleScheduledDataWorkflowRequestOriginal, type RescheduleScheduledDataWorkflowResponse as RescheduleScheduledDataWorkflowResponseOriginal, type Reshape as ReshapeOriginal, type RestoreInfo as RestoreInfoOriginal, type ScheduledDataWorkflow as ScheduledDataWorkflowOriginal, type ScheduledDataWorkflowSpec as ScheduledDataWorkflowSpecOriginal, type Schema as SchemaOriginal, type SizeOperation as SizeOperationOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, type Source as SourceOriginal, type SourceSourceOneOf as SourceSourceOneOfOriginal, type Stage as StageOriginal, type StageStageOneOf as StageStageOneOfOriginal, type StoresCatalogInventoryDestination as StoresCatalogInventoryDestinationOriginal, type StoresCatalogProductsDestination as StoresCatalogProductsDestinationOriginal, type StringifyOperation as StringifyOperationOriginal, type SubstringOperation as SubstringOperationOriginal, type SubtractOperation as SubtractOperationOriginal, type SumOperation as SumOperationOriginal, type Sum as SumOriginal, type TestDestination as TestDestinationOriginal, type TestSource as TestSourceOriginal, type TestTransformation as TestTransformationOriginal, type ToLowerOperation as ToLowerOperationOriginal, type ToUpperOperation as ToUpperOperationOriginal, type Transformation as TransformationOriginal, type TransformationTransformationOneOf as TransformationTransformationOneOfOriginal, type TriggerScheduledDataWorkflowNowRequest as TriggerScheduledDataWorkflowNowRequestOriginal, type TriggerScheduledDataWorkflowNowResponse as TriggerScheduledDataWorkflowNowResponseOriginal, type UnionWith as UnionWithOriginal, type UnwindArray as UnwindArrayOriginal, type UpdateScheduledDataWorkflowRequest as UpdateScheduledDataWorkflowRequestOriginal, type UpdateScheduledDataWorkflowResponse as UpdateScheduledDataWorkflowResponseOriginal, type V1Field as V1FieldOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type WixDataCollectionDefinitionDestination as WixDataCollectionDefinitionDestinationOriginal, type WixDataCollectionDefinitionSource as WixDataCollectionDefinitionSourceOriginal, type WixDataDestination as WixDataDestinationOriginal, WixDataDestinationWritePolicy as WixDataDestinationWritePolicyOriginal, type WixDataDestinationWritePolicyWithLiterals as WixDataDestinationWritePolicyWithLiteralsOriginal, WixDataEnvironment as WixDataEnvironmentOriginal, type WixDataEnvironmentWithLiterals as WixDataEnvironmentWithLiteralsOriginal, type WixDataSource as WixDataSourceOriginal, type WixDataSourceQueryOneOf as WixDataSourceQueryOneOfOriginal, type WixMediaDestination as WixMediaDestinationOriginal, WixMediaDestinationWritePolicy as WixMediaDestinationWritePolicyOriginal, type WixMediaDestinationWritePolicyWithLiterals as WixMediaDestinationWritePolicyWithLiteralsOriginal, type WixMediaSource as WixMediaSourceOriginal, WritePolicy as WritePolicyOriginal, type WritePolicyWithLiterals as WritePolicyWithLiteralsOriginal, type __PublicMethodMetaInfo, createScheduledDataWorkflow, deleteScheduledDataWorkflow, getScheduledDataWorkflow, listScheduledDataWorkflows, rescheduleScheduledDataWorkflow, triggerScheduledDataWorkflowNow, updateScheduledDataWorkflow };
|
|
1616
|
+
export { type AbsOperation as AbsOperationOriginal, type AccountInfo as AccountInfoOriginal, type AccumulatorExpressionOneOf as AccumulatorExpressionOneOfOriginal, type Accumulator as AccumulatorOriginal, type ActionEvent as ActionEventOriginal, type AddField as AddFieldOriginal, type AddFields as AddFieldsOriginal, type AddOperation as AddOperationOriginal, type AggregationPipeline as AggregationPipelineOriginal, type AggregationPipelinePagingMethodOneOf as AggregationPipelinePagingMethodOneOfOriginal, type AggregationQuery as AggregationQueryOriginal, type Avg as AvgOriginal, type BooleanOptions as BooleanOptionsOriginal, type CeilOperation as CeilOperationOriginal, type CommonCursorPaging as CommonCursorPagingOriginal, type CommonSorting as CommonSortingOriginal, type ConcatOperation as ConcatOperationOriginal, type ConditionOperation as ConditionOperationOriginal, type CreateScheduledDataWorkflowRequest as CreateScheduledDataWorkflowRequestOriginal, type CreateScheduledDataWorkflowResponse as CreateScheduledDataWorkflowResponseOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type DataMovementJobLogs as DataMovementJobLogsOriginal, DateFormat as DateFormatOriginal, type DateFormatWithLiterals as DateFormatWithLiteralsOriginal, type DateTimeOptions as DateTimeOptionsOriginal, type DeleteScheduledDataWorkflowRequest as DeleteScheduledDataWorkflowRequestOriginal, type DeleteScheduledDataWorkflowResponse as DeleteScheduledDataWorkflowResponseOriginal, type DestinationDestinationOneOf as DestinationDestinationOneOfOriginal, type Destination as DestinationOriginal, type DivideOperation as DivideOperationOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type Exclude as ExcludeOriginal, type Expression as ExpressionOriginal, type ExpressionValueOneOf as ExpressionValueOneOfOriginal, type ExternalFileSource as ExternalFileSourceOriginal, type FieldMappingEntryConversionOneOf as FieldMappingEntryConversionOneOfOriginal, type FieldMappingEntry as FieldMappingEntryOriginal, type FieldMapping as FieldMappingOriginal, type Field as FieldOriginal, type FieldProjectionOneOf as FieldProjectionOneOfOriginal, FieldType as FieldTypeOriginal, type FieldTypeWithLiterals as FieldTypeWithLiteralsOriginal, Fields as FieldsOriginal, type FieldsWithLiterals as FieldsWithLiteralsOriginal, type FileDestination as FileDestinationOriginal, FileFormat as FileFormatOriginal, type FileFormatWithLiterals as FileFormatWithLiteralsOriginal, type FileSource as FileSourceOriginal, type FilterQuery as FilterQueryOriginal, type First as FirstOriginal, type FloorOperation as FloorOperationOriginal, type GetScheduledDataWorkflowRequest as GetScheduledDataWorkflowRequestOriginal, type GetScheduledDataWorkflowResponse as GetScheduledDataWorkflowResponseOriginal, type GoogleSheetsSource as GoogleSheetsSourceOriginal, type GreaterThanOperation as GreaterThanOperationOriginal, type GroupId as GroupIdOriginal, type Group as GroupOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type Include as IncludeOriginal, type JobSpec as JobSpecOriginal, type JobSpecSiteOverrideOneOf as JobSpecSiteOverrideOneOfOriginal, type Last as LastOriginal, type LengthOperation as LengthOperationOriginal, type ListScheduledDataWorkflowsRequest as ListScheduledDataWorkflowsRequestOriginal, type ListScheduledDataWorkflowsResponse as ListScheduledDataWorkflowsResponseOriginal, type LocalizationDestination as LocalizationDestinationOriginal, type LocalizationSource as LocalizationSourceOriginal, type Lookup as LookupOriginal, type Max as MaxOriginal, MediaType as MediaTypeOriginal, type MediaTypeWithLiterals as MediaTypeWithLiteralsOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Min as MinOriginal, type ModOperation as ModOperationOriginal, type MultiplyOperation as MultiplyOperationOriginal, type ObjectToArray as ObjectToArrayOriginal, type Paging as PagingOriginal, type ProjectNested as ProjectNestedOriginal, type Projection as ProjectionOriginal, type Push as PushOriginal, type RescheduleScheduledDataWorkflowRequest as RescheduleScheduledDataWorkflowRequestOriginal, type RescheduleScheduledDataWorkflowResponse as RescheduleScheduledDataWorkflowResponseOriginal, type Reshape as ReshapeOriginal, type RestoreInfo as RestoreInfoOriginal, type ScheduledDataWorkflow as ScheduledDataWorkflowOriginal, type ScheduledDataWorkflowSpec as ScheduledDataWorkflowSpecOriginal, type Schema as SchemaOriginal, type SizeOperation as SizeOperationOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, type Source as SourceOriginal, type SourceSourceOneOf as SourceSourceOneOfOriginal, type Stage as StageOriginal, type StageStageOneOf as StageStageOneOfOriginal, type StoresCatalogInventoryDestination as StoresCatalogInventoryDestinationOriginal, type StoresCatalogProductsDestination as StoresCatalogProductsDestinationOriginal, type StringifyOperation as StringifyOperationOriginal, type SubstringOperation as SubstringOperationOriginal, type SubtractOperation as SubtractOperationOriginal, type SumOperation as SumOperationOriginal, type Sum as SumOriginal, type TestDestination as TestDestinationOriginal, type TestSource as TestSourceOriginal, type TestTransformation as TestTransformationOriginal, type ToLowerOperation as ToLowerOperationOriginal, type ToUpperOperation as ToUpperOperationOriginal, type Transformation as TransformationOriginal, type TransformationTransformationOneOf as TransformationTransformationOneOfOriginal, type TriggerScheduledDataWorkflowNowRequest as TriggerScheduledDataWorkflowNowRequestOriginal, type TriggerScheduledDataWorkflowNowResponse as TriggerScheduledDataWorkflowNowResponseOriginal, type UnionWith as UnionWithOriginal, type UnwindArray as UnwindArrayOriginal, type UpdateScheduledDataWorkflowRequest as UpdateScheduledDataWorkflowRequestOriginal, type UpdateScheduledDataWorkflowResponse as UpdateScheduledDataWorkflowResponseOriginal, type V1Field as V1FieldOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type WixDataCollectionDefinitionDestination as WixDataCollectionDefinitionDestinationOriginal, type WixDataCollectionDefinitionSource as WixDataCollectionDefinitionSourceOriginal, type WixDataDestination as WixDataDestinationOriginal, WixDataDestinationWritePolicy as WixDataDestinationWritePolicyOriginal, type WixDataDestinationWritePolicyWithLiterals as WixDataDestinationWritePolicyWithLiteralsOriginal, WixDataEnvironment as WixDataEnvironmentOriginal, type WixDataEnvironmentWithLiterals as WixDataEnvironmentWithLiteralsOriginal, type WixDataSource as WixDataSourceOriginal, type WixDataSourceQueryOneOf as WixDataSourceQueryOneOfOriginal, type WixMediaDestination as WixMediaDestinationOriginal, WixMediaDestinationWritePolicy as WixMediaDestinationWritePolicyOriginal, type WixMediaDestinationWritePolicyWithLiterals as WixMediaDestinationWritePolicyWithLiteralsOriginal, type WixMediaSource as WixMediaSourceOriginal, WritePolicy as WritePolicyOriginal, type WritePolicyWithLiterals as WritePolicyWithLiteralsOriginal, type __PublicMethodMetaInfo, createScheduledDataWorkflow, deleteScheduledDataWorkflow, getScheduledDataWorkflow, listScheduledDataWorkflows, rescheduleScheduledDataWorkflow, triggerScheduledDataWorkflowNow, updateScheduledDataWorkflow };
|
package/build/es/meta.mjs
CHANGED
|
@@ -537,6 +537,13 @@ var WritePolicy = /* @__PURE__ */ ((WritePolicy2) => {
|
|
|
537
537
|
WritePolicy2["OVERWRITE"] = "OVERWRITE";
|
|
538
538
|
return WritePolicy2;
|
|
539
539
|
})(WritePolicy || {});
|
|
540
|
+
var DateFormat = /* @__PURE__ */ ((DateFormat2) => {
|
|
541
|
+
DateFormat2["BEST_EFFORT"] = "BEST_EFFORT";
|
|
542
|
+
DateFormat2["ISO_8601"] = "ISO_8601";
|
|
543
|
+
DateFormat2["MM_DD_YYYY_HH_MM"] = "MM_DD_YYYY_HH_MM";
|
|
544
|
+
DateFormat2["DD_MM_YYYY_HH_MM"] = "DD_MM_YYYY_HH_MM";
|
|
545
|
+
return DateFormat2;
|
|
546
|
+
})(DateFormat || {});
|
|
540
547
|
var Fields = /* @__PURE__ */ ((Fields2) => {
|
|
541
548
|
Fields2["NEXT_SCHEDULE_EXECUTION"] = "NEXT_SCHEDULE_EXECUTION";
|
|
542
549
|
return Fields2;
|
|
@@ -686,6 +693,7 @@ function listScheduledDataWorkflows2() {
|
|
|
686
693
|
};
|
|
687
694
|
}
|
|
688
695
|
export {
|
|
696
|
+
DateFormat as DateFormatOriginal,
|
|
689
697
|
FieldType as FieldTypeOriginal,
|
|
690
698
|
Fields as FieldsOriginal,
|
|
691
699
|
FileFormat as FileFormatOriginal,
|