@wix/export-async-job 1.0.12 → 1.0.14

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.
@@ -25,3 +25,4 @@ var __importStar = (this && this.__importStar) || function (mod) {
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.exportAsyncJob = void 0;
27
27
  exports.exportAsyncJob = __importStar(require("@wix/export-async-job_export-async-job/context"));
28
+ //# sourceMappingURL=context.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"context.js","sourceRoot":"","sources":["../../context.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,iGAAiF"}
@@ -26,3 +26,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.exportAsyncJob = void 0;
27
27
  const exportAsyncJob = __importStar(require("@wix/export-async-job_export-async-job"));
28
28
  exports.exportAsyncJob = exportAsyncJob;
29
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,uFAAyE;AAEhE,wCAAc"}
package/build/cjs/meta.js CHANGED
@@ -25,3 +25,4 @@ var __importStar = (this && this.__importStar) || function (mod) {
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.exportAsyncJob = void 0;
27
27
  exports.exportAsyncJob = __importStar(require("@wix/export-async-job_export-async-job/meta"));
28
+ //# sourceMappingURL=meta.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"meta.js","sourceRoot":"","sources":["../../meta.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,8FAA8E"}
@@ -1 +1,2 @@
1
1
  export * as exportAsyncJob from '@wix/export-async-job_export-async-job/context';
2
+ //# sourceMappingURL=context.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"context.js","sourceRoot":"","sources":["../../context.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,cAAc,MAAM,gDAAgD,CAAC"}
package/build/es/index.js CHANGED
@@ -1,2 +1,3 @@
1
1
  import * as exportAsyncJob from '@wix/export-async-job_export-async-job';
2
2
  export { exportAsyncJob };
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,cAAc,MAAM,wCAAwC,CAAC;AAEzE,OAAO,EAAE,cAAc,EAAE,CAAC"}
package/build/es/meta.js CHANGED
@@ -1 +1,2 @@
1
1
  export * as exportAsyncJob from '@wix/export-async-job_export-async-job/meta';
2
+ //# sourceMappingURL=meta.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"meta.js","sourceRoot":"","sources":["../../meta.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,cAAc,MAAM,6CAA6C,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/export-async-job",
3
- "version": "1.0.12",
3
+ "version": "1.0.14",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -21,7 +21,7 @@
21
21
  "type-bundles"
22
22
  ],
23
23
  "dependencies": {
24
- "@wix/export-async-job_export-async-job": "1.0.8"
24
+ "@wix/export-async-job_export-async-job": "1.0.10"
25
25
  },
26
26
  "devDependencies": {
27
27
  "glob": "^10.4.1",
@@ -46,5 +46,5 @@
46
46
  "fqdn": ""
47
47
  }
48
48
  },
49
- "falconPackageHash": "bb2915c3469fdc9b829eef454b7f0c26e4d7de1961db9c1540e63148"
49
+ "falconPackageHash": "760e2667a31a51f7a14b40f1e3ede0f81e545f7969ff6c0eea97998f"
50
50
  }
@@ -482,9 +482,9 @@ interface ExportAsyncJob {
482
482
  data?: ExportAsyncJobData;
483
483
  status?: Status;
484
484
  /** @readonly */
485
- createDate?: Date;
485
+ createDate?: Date | null;
486
486
  /** @readonly */
487
- updateDate?: Date;
487
+ updateDate?: Date | null;
488
488
  }
489
489
  interface ExportAsyncJobData {
490
490
  /** original request data for the export */
@@ -693,7 +693,9 @@ declare enum RuleType {
693
693
  INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
694
694
  REQUIRED_FIELD = "REQUIRED_FIELD",
695
695
  FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
696
- ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
696
+ ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
697
+ EXACT_LENGTH = "EXACT_LENGTH",
698
+ EXACT_SIZE = "EXACT_SIZE"
697
699
  }
698
700
  interface FieldViolation {
699
701
  field?: string;
@@ -709,7 +711,7 @@ interface SystemError {
709
711
  }
710
712
  declare enum Status {
711
713
  UNKNOWN = "UNKNOWN",
712
- /** Job was created, but not started yet. */
714
+ /** Job is created, but hasn't started yet. */
713
715
  INITIALIZED = "INITIALIZED",
714
716
  /** Job has started and is in progress. */
715
717
  PROCESSING = "PROCESSING",
@@ -891,12 +893,12 @@ interface Product {
891
893
  * Date and time the product was last updated.
892
894
  * @readonly
893
895
  */
894
- lastUpdated?: Date;
896
+ lastUpdated?: Date | null;
895
897
  /**
896
898
  * Date and time the product was created.
897
899
  * @readonly
898
900
  */
899
- _createdDate?: Date;
901
+ _createdDate?: Date | null;
900
902
  /** Custom SEO data for the product. */
901
903
  seoData?: SeoSchema;
902
904
  /** Product ribbon. Used to highlight relevant information about a product. For example, "Sale", "New Arrival", "Sold Out". */
@@ -935,8 +937,11 @@ interface Stock {
935
937
  inventoryStatus?: InventoryStatus;
936
938
  }
937
939
  declare enum InventoryStatus {
940
+ /** In stock */
938
941
  IN_STOCK = "IN_STOCK",
942
+ /** Not in stock */
939
943
  OUT_OF_STOCK = "OUT_OF_STOCK",
944
+ /** Some of the variants are not in stock */
940
945
  PARTIALLY_OUT_OF_STOCK = "PARTIALLY_OUT_OF_STOCK"
941
946
  }
942
947
  interface PriceData {
@@ -1084,10 +1089,15 @@ interface MediaItemUrlAndSize {
1084
1089
  }
1085
1090
  declare enum MediaItemType {
1086
1091
  unspecified_media_item_type = "unspecified_media_item_type",
1092
+ /** Image media type. */
1087
1093
  image = "image",
1094
+ /** Video media type. */
1088
1095
  video = "video",
1096
+ /** Audio media type. */
1089
1097
  audio = "audio",
1098
+ /** Document media type. */
1090
1099
  document = "document",
1100
+ /** Zip media type. */
1091
1101
  zip = "zip"
1092
1102
  }
1093
1103
  interface MediaItemVideo {
@@ -1106,7 +1116,7 @@ interface CustomTextField {
1106
1116
  }
1107
1117
  interface ProductOption {
1108
1118
  /**
1109
- * Option type - color or other(drop down)
1119
+ * Option type.
1110
1120
  * @readonly
1111
1121
  */
1112
1122
  optionType?: OptionType;
@@ -1116,8 +1126,11 @@ interface ProductOption {
1116
1126
  choices?: Choice[];
1117
1127
  }
1118
1128
  declare enum OptionType {
1129
+ /** Unspecified option type. */
1119
1130
  unspecified_option_type = "unspecified_option_type",
1131
+ /** Drop down. */
1120
1132
  drop_down = "drop_down",
1133
+ /** Color. */
1121
1134
  color = "color"
1122
1135
  }
1123
1136
  interface Choice {
@@ -1161,7 +1174,9 @@ declare enum DiscountType {
1161
1174
  UNDEFINED = "UNDEFINED",
1162
1175
  /** No discount */
1163
1176
  NONE = "NONE",
1177
+ /** Discount by a fixed amount */
1164
1178
  AMOUNT = "AMOUNT",
1179
+ /** Discount by a percentage */
1165
1180
  PERCENT = "PERCENT"
1166
1181
  }
1167
1182
  interface Variant {
@@ -1307,6 +1322,16 @@ interface PlatformMediaMediaOneOf {
1307
1322
  image?: string;
1308
1323
  video?: string;
1309
1324
  }
1325
+ interface FocalPoint {
1326
+ /** X-coordinate of the focal point. */
1327
+ x?: number;
1328
+ /** Y-coordinate of the focal point. */
1329
+ y?: number;
1330
+ /** crop by height */
1331
+ height?: number | null;
1332
+ /** crop by width */
1333
+ width?: number | null;
1334
+ }
1310
1335
  interface VideoResolution {
1311
1336
  /** Video URL. */
1312
1337
  url?: string;
@@ -1460,6 +1485,7 @@ type context_FieldDescriptor = FieldDescriptor;
1460
1485
  type context_FieldViolation = FieldViolation;
1461
1486
  type context_FileType = FileType;
1462
1487
  declare const context_FileType: typeof FileType;
1488
+ type context_FocalPoint = FocalPoint;
1463
1489
  type context_FormattedPrice = FormattedPrice;
1464
1490
  type context_GenerateExportAsyncJobDownloadUrlRequest = GenerateExportAsyncJobDownloadUrlRequest;
1465
1491
  type context_GenerateExportAsyncJobDownloadUrlResponse = GenerateExportAsyncJobDownloadUrlResponse;
@@ -1525,7 +1551,7 @@ type context_VideoResolution = VideoResolution;
1525
1551
  declare const context_createExportAsyncJob: typeof createExportAsyncJob;
1526
1552
  declare const context_getExportAsyncJob: typeof getExportAsyncJob;
1527
1553
  declare namespace context {
1528
- export { type context_AdditionalInfoSection as AdditionalInfoSection, type context_ApplicationError as ApplicationError, context_ArrayFieldDelimiter as ArrayFieldDelimiter, type context_CancelExportAsyncJobRequest as CancelExportAsyncJobRequest, type context_CancelExportAsyncJobResponse as CancelExportAsyncJobResponse, type context_Choice as Choice, type context_CostAndProfitData as CostAndProfitData, type context_CreateExportAsyncJobOptions as CreateExportAsyncJobOptions, type context_CreateExportAsyncJobRequest as CreateExportAsyncJobRequest, type context_CreateExportAsyncJobResponse as CreateExportAsyncJobResponse, type context_CreateExportAsyncJobResponseNonNullableFields as CreateExportAsyncJobResponseNonNullableFields, type context_Cursors as Cursors, type context_CustomTextField as CustomTextField, type context_Details as Details, type context_DetailsKindOneOf as DetailsKindOneOf, type context_Discount as Discount, context_DiscountType as DiscountType, type context_ExportAsyncJob as ExportAsyncJob, type context_ExportAsyncJobData as ExportAsyncJobData, type context_ExportAsyncJobNonNullableFields as ExportAsyncJobNonNullableFields, type context_ExportCursorPaging as ExportCursorPaging, type context_ExportQueryV2 as ExportQueryV2, type context_ExportQueryV2PagingMethodOneOf as ExportQueryV2PagingMethodOneOf, type context_FieldDescriptor as FieldDescriptor, type context_FieldViolation as FieldViolation, context_FileType as FileType, type context_FormattedPrice as FormattedPrice, type context_GenerateExportAsyncJobDownloadUrlRequest as GenerateExportAsyncJobDownloadUrlRequest, type context_GenerateExportAsyncJobDownloadUrlResponse as GenerateExportAsyncJobDownloadUrlResponse, type context_GetExportAsyncJobRequest as GetExportAsyncJobRequest, type context_GetExportAsyncJobResponse as GetExportAsyncJobResponse, type context_GetExportAsyncJobResponseNonNullableFields as GetExportAsyncJobResponseNonNullableFields, context_InventoryStatus as InventoryStatus, type context_Keyword as Keyword, context_MeasurementUnit as MeasurementUnit, type context_Media as Media, type context_MediaItem as MediaItem, type context_MediaItemItemOneOf as MediaItemItemOneOf, context_MediaItemType as MediaItemType, type context_MediaItemUrlAndSize as MediaItemUrlAndSize, type context_MediaItemVideo as MediaItemVideo, type context_MethodMetadata as MethodMetadata, type context_MethodSpec as MethodSpec, type context_NumericPropertyRange as NumericPropertyRange, context_OptionType as OptionType, type context_PageUrl as PageUrl, type context_Paging as Paging, type context_PagingMetadataV2 as PagingMetadataV2, type context_PlatformMedia as PlatformMedia, type context_PlatformMediaMediaOneOf as PlatformMediaMediaOneOf, type context_PreorderInfo as PreorderInfo, type context_PriceData as PriceData, type context_PricePerUnitData as PricePerUnitData, type context_Product as Product, type context_ProductOption as ProductOption, type context_ProductOrVariant as ProductOrVariant, type context_ProductOrVariantV2 as ProductOrVariantV2, context_ProductType as ProductType, context_QueryFieldNumber as QueryFieldNumber, type context_QueryProductsExportSpiResponse as QueryProductsExportSpiResponse, type context_QueryRequestLoose as QueryRequestLoose, type context_QueryVariantsExportSpiResponse as QueryVariantsExportSpiResponse, type context_Ribbon as Ribbon, context_RuleType as RuleType, type context_SecuredMedia as SecuredMedia, type context_SeoSchema as SeoSchema, type context_Settings as Settings, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_Status as Status, type context_Stock as Stock, type context_StoreVariant as StoreVariant, type context_SystemError as SystemError, type context_Tag as Tag, type context_ValidationError as ValidationError, type context_Variant as Variant, type context_VariantDataWithNoStock as VariantDataWithNoStock, type context_VariantStock as VariantStock, type context_VideoResolution as VideoResolution, context_createExportAsyncJob as createExportAsyncJob, context_getExportAsyncJob as getExportAsyncJob };
1554
+ export { type context_AdditionalInfoSection as AdditionalInfoSection, type context_ApplicationError as ApplicationError, context_ArrayFieldDelimiter as ArrayFieldDelimiter, type context_CancelExportAsyncJobRequest as CancelExportAsyncJobRequest, type context_CancelExportAsyncJobResponse as CancelExportAsyncJobResponse, type context_Choice as Choice, type context_CostAndProfitData as CostAndProfitData, type context_CreateExportAsyncJobOptions as CreateExportAsyncJobOptions, type context_CreateExportAsyncJobRequest as CreateExportAsyncJobRequest, type context_CreateExportAsyncJobResponse as CreateExportAsyncJobResponse, type context_CreateExportAsyncJobResponseNonNullableFields as CreateExportAsyncJobResponseNonNullableFields, type context_Cursors as Cursors, type context_CustomTextField as CustomTextField, type context_Details as Details, type context_DetailsKindOneOf as DetailsKindOneOf, type context_Discount as Discount, context_DiscountType as DiscountType, type context_ExportAsyncJob as ExportAsyncJob, type context_ExportAsyncJobData as ExportAsyncJobData, type context_ExportAsyncJobNonNullableFields as ExportAsyncJobNonNullableFields, type context_ExportCursorPaging as ExportCursorPaging, type context_ExportQueryV2 as ExportQueryV2, type context_ExportQueryV2PagingMethodOneOf as ExportQueryV2PagingMethodOneOf, type context_FieldDescriptor as FieldDescriptor, type context_FieldViolation as FieldViolation, context_FileType as FileType, type context_FocalPoint as FocalPoint, type context_FormattedPrice as FormattedPrice, type context_GenerateExportAsyncJobDownloadUrlRequest as GenerateExportAsyncJobDownloadUrlRequest, type context_GenerateExportAsyncJobDownloadUrlResponse as GenerateExportAsyncJobDownloadUrlResponse, type context_GetExportAsyncJobRequest as GetExportAsyncJobRequest, type context_GetExportAsyncJobResponse as GetExportAsyncJobResponse, type context_GetExportAsyncJobResponseNonNullableFields as GetExportAsyncJobResponseNonNullableFields, context_InventoryStatus as InventoryStatus, type context_Keyword as Keyword, context_MeasurementUnit as MeasurementUnit, type context_Media as Media, type context_MediaItem as MediaItem, type context_MediaItemItemOneOf as MediaItemItemOneOf, context_MediaItemType as MediaItemType, type context_MediaItemUrlAndSize as MediaItemUrlAndSize, type context_MediaItemVideo as MediaItemVideo, type context_MethodMetadata as MethodMetadata, type context_MethodSpec as MethodSpec, type context_NumericPropertyRange as NumericPropertyRange, context_OptionType as OptionType, type context_PageUrl as PageUrl, type context_Paging as Paging, type context_PagingMetadataV2 as PagingMetadataV2, type context_PlatformMedia as PlatformMedia, type context_PlatformMediaMediaOneOf as PlatformMediaMediaOneOf, type context_PreorderInfo as PreorderInfo, type context_PriceData as PriceData, type context_PricePerUnitData as PricePerUnitData, type context_Product as Product, type context_ProductOption as ProductOption, type context_ProductOrVariant as ProductOrVariant, type context_ProductOrVariantV2 as ProductOrVariantV2, context_ProductType as ProductType, context_QueryFieldNumber as QueryFieldNumber, type context_QueryProductsExportSpiResponse as QueryProductsExportSpiResponse, type context_QueryRequestLoose as QueryRequestLoose, type context_QueryVariantsExportSpiResponse as QueryVariantsExportSpiResponse, type context_Ribbon as Ribbon, context_RuleType as RuleType, type context_SecuredMedia as SecuredMedia, type context_SeoSchema as SeoSchema, type context_Settings as Settings, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_Status as Status, type context_Stock as Stock, type context_StoreVariant as StoreVariant, type context_SystemError as SystemError, type context_Tag as Tag, type context_ValidationError as ValidationError, type context_Variant as Variant, type context_VariantDataWithNoStock as VariantDataWithNoStock, type context_VariantStock as VariantStock, type context_VideoResolution as VideoResolution, context_createExportAsyncJob as createExportAsyncJob, context_getExportAsyncJob as getExportAsyncJob };
1529
1555
  }
1530
1556
 
1531
1557
  export { context as exportAsyncJob };
@@ -482,9 +482,9 @@ interface ExportAsyncJob {
482
482
  data?: ExportAsyncJobData;
483
483
  status?: Status;
484
484
  /** @readonly */
485
- createDate?: Date;
485
+ createDate?: Date | null;
486
486
  /** @readonly */
487
- updateDate?: Date;
487
+ updateDate?: Date | null;
488
488
  }
489
489
  interface ExportAsyncJobData {
490
490
  /** original request data for the export */
@@ -693,7 +693,9 @@ declare enum RuleType {
693
693
  INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
694
694
  REQUIRED_FIELD = "REQUIRED_FIELD",
695
695
  FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
696
- ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
696
+ ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
697
+ EXACT_LENGTH = "EXACT_LENGTH",
698
+ EXACT_SIZE = "EXACT_SIZE"
697
699
  }
698
700
  interface FieldViolation {
699
701
  field?: string;
@@ -709,7 +711,7 @@ interface SystemError {
709
711
  }
710
712
  declare enum Status {
711
713
  UNKNOWN = "UNKNOWN",
712
- /** Job was created, but not started yet. */
714
+ /** Job is created, but hasn't started yet. */
713
715
  INITIALIZED = "INITIALIZED",
714
716
  /** Job has started and is in progress. */
715
717
  PROCESSING = "PROCESSING",
@@ -891,12 +893,12 @@ interface Product {
891
893
  * Date and time the product was last updated.
892
894
  * @readonly
893
895
  */
894
- lastUpdated?: Date;
896
+ lastUpdated?: Date | null;
895
897
  /**
896
898
  * Date and time the product was created.
897
899
  * @readonly
898
900
  */
899
- _createdDate?: Date;
901
+ _createdDate?: Date | null;
900
902
  /** Custom SEO data for the product. */
901
903
  seoData?: SeoSchema;
902
904
  /** Product ribbon. Used to highlight relevant information about a product. For example, "Sale", "New Arrival", "Sold Out". */
@@ -935,8 +937,11 @@ interface Stock {
935
937
  inventoryStatus?: InventoryStatus;
936
938
  }
937
939
  declare enum InventoryStatus {
940
+ /** In stock */
938
941
  IN_STOCK = "IN_STOCK",
942
+ /** Not in stock */
939
943
  OUT_OF_STOCK = "OUT_OF_STOCK",
944
+ /** Some of the variants are not in stock */
940
945
  PARTIALLY_OUT_OF_STOCK = "PARTIALLY_OUT_OF_STOCK"
941
946
  }
942
947
  interface PriceData {
@@ -1084,10 +1089,15 @@ interface MediaItemUrlAndSize {
1084
1089
  }
1085
1090
  declare enum MediaItemType {
1086
1091
  unspecified_media_item_type = "unspecified_media_item_type",
1092
+ /** Image media type. */
1087
1093
  image = "image",
1094
+ /** Video media type. */
1088
1095
  video = "video",
1096
+ /** Audio media type. */
1089
1097
  audio = "audio",
1098
+ /** Document media type. */
1090
1099
  document = "document",
1100
+ /** Zip media type. */
1091
1101
  zip = "zip"
1092
1102
  }
1093
1103
  interface MediaItemVideo {
@@ -1106,7 +1116,7 @@ interface CustomTextField {
1106
1116
  }
1107
1117
  interface ProductOption {
1108
1118
  /**
1109
- * Option type - color or other(drop down)
1119
+ * Option type.
1110
1120
  * @readonly
1111
1121
  */
1112
1122
  optionType?: OptionType;
@@ -1116,8 +1126,11 @@ interface ProductOption {
1116
1126
  choices?: Choice[];
1117
1127
  }
1118
1128
  declare enum OptionType {
1129
+ /** Unspecified option type. */
1119
1130
  unspecified_option_type = "unspecified_option_type",
1131
+ /** Drop down. */
1120
1132
  drop_down = "drop_down",
1133
+ /** Color. */
1121
1134
  color = "color"
1122
1135
  }
1123
1136
  interface Choice {
@@ -1161,7 +1174,9 @@ declare enum DiscountType {
1161
1174
  UNDEFINED = "UNDEFINED",
1162
1175
  /** No discount */
1163
1176
  NONE = "NONE",
1177
+ /** Discount by a fixed amount */
1164
1178
  AMOUNT = "AMOUNT",
1179
+ /** Discount by a percentage */
1165
1180
  PERCENT = "PERCENT"
1166
1181
  }
1167
1182
  interface Variant {
@@ -1307,6 +1322,16 @@ interface PlatformMediaMediaOneOf {
1307
1322
  image?: string;
1308
1323
  video?: string;
1309
1324
  }
1325
+ interface FocalPoint {
1326
+ /** X-coordinate of the focal point. */
1327
+ x?: number;
1328
+ /** Y-coordinate of the focal point. */
1329
+ y?: number;
1330
+ /** crop by height */
1331
+ height?: number | null;
1332
+ /** crop by width */
1333
+ width?: number | null;
1334
+ }
1310
1335
  interface VideoResolution {
1311
1336
  /** Video URL. */
1312
1337
  url?: string;
@@ -1460,6 +1485,7 @@ type index_d_FieldDescriptor = FieldDescriptor;
1460
1485
  type index_d_FieldViolation = FieldViolation;
1461
1486
  type index_d_FileType = FileType;
1462
1487
  declare const index_d_FileType: typeof FileType;
1488
+ type index_d_FocalPoint = FocalPoint;
1463
1489
  type index_d_FormattedPrice = FormattedPrice;
1464
1490
  type index_d_GenerateExportAsyncJobDownloadUrlRequest = GenerateExportAsyncJobDownloadUrlRequest;
1465
1491
  type index_d_GenerateExportAsyncJobDownloadUrlResponse = GenerateExportAsyncJobDownloadUrlResponse;
@@ -1525,7 +1551,7 @@ type index_d_VideoResolution = VideoResolution;
1525
1551
  declare const index_d_createExportAsyncJob: typeof createExportAsyncJob;
1526
1552
  declare const index_d_getExportAsyncJob: typeof getExportAsyncJob;
1527
1553
  declare namespace index_d {
1528
- export { type index_d_AdditionalInfoSection as AdditionalInfoSection, type index_d_ApplicationError as ApplicationError, index_d_ArrayFieldDelimiter as ArrayFieldDelimiter, type index_d_CancelExportAsyncJobRequest as CancelExportAsyncJobRequest, type index_d_CancelExportAsyncJobResponse as CancelExportAsyncJobResponse, type index_d_Choice as Choice, type index_d_CostAndProfitData as CostAndProfitData, type index_d_CreateExportAsyncJobOptions as CreateExportAsyncJobOptions, type index_d_CreateExportAsyncJobRequest as CreateExportAsyncJobRequest, type index_d_CreateExportAsyncJobResponse as CreateExportAsyncJobResponse, type index_d_CreateExportAsyncJobResponseNonNullableFields as CreateExportAsyncJobResponseNonNullableFields, type index_d_Cursors as Cursors, type index_d_CustomTextField as CustomTextField, type index_d_Details as Details, type index_d_DetailsKindOneOf as DetailsKindOneOf, type index_d_Discount as Discount, index_d_DiscountType as DiscountType, type index_d_ExportAsyncJob as ExportAsyncJob, type index_d_ExportAsyncJobData as ExportAsyncJobData, type index_d_ExportAsyncJobNonNullableFields as ExportAsyncJobNonNullableFields, type index_d_ExportCursorPaging as ExportCursorPaging, type index_d_ExportQueryV2 as ExportQueryV2, type index_d_ExportQueryV2PagingMethodOneOf as ExportQueryV2PagingMethodOneOf, type index_d_FieldDescriptor as FieldDescriptor, type index_d_FieldViolation as FieldViolation, index_d_FileType as FileType, type index_d_FormattedPrice as FormattedPrice, type index_d_GenerateExportAsyncJobDownloadUrlRequest as GenerateExportAsyncJobDownloadUrlRequest, type index_d_GenerateExportAsyncJobDownloadUrlResponse as GenerateExportAsyncJobDownloadUrlResponse, type index_d_GetExportAsyncJobRequest as GetExportAsyncJobRequest, type index_d_GetExportAsyncJobResponse as GetExportAsyncJobResponse, type index_d_GetExportAsyncJobResponseNonNullableFields as GetExportAsyncJobResponseNonNullableFields, index_d_InventoryStatus as InventoryStatus, type index_d_Keyword as Keyword, index_d_MeasurementUnit as MeasurementUnit, type index_d_Media as Media, type index_d_MediaItem as MediaItem, type index_d_MediaItemItemOneOf as MediaItemItemOneOf, index_d_MediaItemType as MediaItemType, type index_d_MediaItemUrlAndSize as MediaItemUrlAndSize, type index_d_MediaItemVideo as MediaItemVideo, type index_d_MethodMetadata as MethodMetadata, type index_d_MethodSpec as MethodSpec, type index_d_NumericPropertyRange as NumericPropertyRange, index_d_OptionType as OptionType, type index_d_PageUrl as PageUrl, type index_d_Paging as Paging, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_PlatformMedia as PlatformMedia, type index_d_PlatformMediaMediaOneOf as PlatformMediaMediaOneOf, type index_d_PreorderInfo as PreorderInfo, type index_d_PriceData as PriceData, type index_d_PricePerUnitData as PricePerUnitData, type index_d_Product as Product, type index_d_ProductOption as ProductOption, type index_d_ProductOrVariant as ProductOrVariant, type index_d_ProductOrVariantV2 as ProductOrVariantV2, index_d_ProductType as ProductType, index_d_QueryFieldNumber as QueryFieldNumber, type index_d_QueryProductsExportSpiResponse as QueryProductsExportSpiResponse, type index_d_QueryRequestLoose as QueryRequestLoose, type index_d_QueryVariantsExportSpiResponse as QueryVariantsExportSpiResponse, type index_d_Ribbon as Ribbon, index_d_RuleType as RuleType, type index_d_SecuredMedia as SecuredMedia, type index_d_SeoSchema as SeoSchema, type index_d_Settings as Settings, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_Status as Status, type index_d_Stock as Stock, type index_d_StoreVariant as StoreVariant, type index_d_SystemError as SystemError, type index_d_Tag as Tag, type index_d_ValidationError as ValidationError, type index_d_Variant as Variant, type index_d_VariantDataWithNoStock as VariantDataWithNoStock, type index_d_VariantStock as VariantStock, type index_d_VideoResolution as VideoResolution, index_d_createExportAsyncJob as createExportAsyncJob, index_d_getExportAsyncJob as getExportAsyncJob };
1554
+ export { type index_d_AdditionalInfoSection as AdditionalInfoSection, type index_d_ApplicationError as ApplicationError, index_d_ArrayFieldDelimiter as ArrayFieldDelimiter, type index_d_CancelExportAsyncJobRequest as CancelExportAsyncJobRequest, type index_d_CancelExportAsyncJobResponse as CancelExportAsyncJobResponse, type index_d_Choice as Choice, type index_d_CostAndProfitData as CostAndProfitData, type index_d_CreateExportAsyncJobOptions as CreateExportAsyncJobOptions, type index_d_CreateExportAsyncJobRequest as CreateExportAsyncJobRequest, type index_d_CreateExportAsyncJobResponse as CreateExportAsyncJobResponse, type index_d_CreateExportAsyncJobResponseNonNullableFields as CreateExportAsyncJobResponseNonNullableFields, type index_d_Cursors as Cursors, type index_d_CustomTextField as CustomTextField, type index_d_Details as Details, type index_d_DetailsKindOneOf as DetailsKindOneOf, type index_d_Discount as Discount, index_d_DiscountType as DiscountType, type index_d_ExportAsyncJob as ExportAsyncJob, type index_d_ExportAsyncJobData as ExportAsyncJobData, type index_d_ExportAsyncJobNonNullableFields as ExportAsyncJobNonNullableFields, type index_d_ExportCursorPaging as ExportCursorPaging, type index_d_ExportQueryV2 as ExportQueryV2, type index_d_ExportQueryV2PagingMethodOneOf as ExportQueryV2PagingMethodOneOf, type index_d_FieldDescriptor as FieldDescriptor, type index_d_FieldViolation as FieldViolation, index_d_FileType as FileType, type index_d_FocalPoint as FocalPoint, type index_d_FormattedPrice as FormattedPrice, type index_d_GenerateExportAsyncJobDownloadUrlRequest as GenerateExportAsyncJobDownloadUrlRequest, type index_d_GenerateExportAsyncJobDownloadUrlResponse as GenerateExportAsyncJobDownloadUrlResponse, type index_d_GetExportAsyncJobRequest as GetExportAsyncJobRequest, type index_d_GetExportAsyncJobResponse as GetExportAsyncJobResponse, type index_d_GetExportAsyncJobResponseNonNullableFields as GetExportAsyncJobResponseNonNullableFields, index_d_InventoryStatus as InventoryStatus, type index_d_Keyword as Keyword, index_d_MeasurementUnit as MeasurementUnit, type index_d_Media as Media, type index_d_MediaItem as MediaItem, type index_d_MediaItemItemOneOf as MediaItemItemOneOf, index_d_MediaItemType as MediaItemType, type index_d_MediaItemUrlAndSize as MediaItemUrlAndSize, type index_d_MediaItemVideo as MediaItemVideo, type index_d_MethodMetadata as MethodMetadata, type index_d_MethodSpec as MethodSpec, type index_d_NumericPropertyRange as NumericPropertyRange, index_d_OptionType as OptionType, type index_d_PageUrl as PageUrl, type index_d_Paging as Paging, type index_d_PagingMetadataV2 as PagingMetadataV2, type index_d_PlatformMedia as PlatformMedia, type index_d_PlatformMediaMediaOneOf as PlatformMediaMediaOneOf, type index_d_PreorderInfo as PreorderInfo, type index_d_PriceData as PriceData, type index_d_PricePerUnitData as PricePerUnitData, type index_d_Product as Product, type index_d_ProductOption as ProductOption, type index_d_ProductOrVariant as ProductOrVariant, type index_d_ProductOrVariantV2 as ProductOrVariantV2, index_d_ProductType as ProductType, index_d_QueryFieldNumber as QueryFieldNumber, type index_d_QueryProductsExportSpiResponse as QueryProductsExportSpiResponse, type index_d_QueryRequestLoose as QueryRequestLoose, type index_d_QueryVariantsExportSpiResponse as QueryVariantsExportSpiResponse, type index_d_Ribbon as Ribbon, index_d_RuleType as RuleType, type index_d_SecuredMedia as SecuredMedia, type index_d_SeoSchema as SeoSchema, type index_d_Settings as Settings, index_d_SortOrder as SortOrder, type index_d_Sorting as Sorting, index_d_Status as Status, type index_d_Stock as Stock, type index_d_StoreVariant as StoreVariant, type index_d_SystemError as SystemError, type index_d_Tag as Tag, type index_d_ValidationError as ValidationError, type index_d_Variant as Variant, type index_d_VariantDataWithNoStock as VariantDataWithNoStock, type index_d_VariantStock as VariantStock, type index_d_VideoResolution as VideoResolution, index_d_createExportAsyncJob as createExportAsyncJob, index_d_getExportAsyncJob as getExportAsyncJob };
1529
1555
  }
1530
1556
 
1531
1557
  export { index_d as exportAsyncJob };
@@ -4,9 +4,9 @@ interface ExportAsyncJob$1 {
4
4
  data?: ExportAsyncJobData$1;
5
5
  status?: Status$1;
6
6
  /** @readonly */
7
- createDate?: Date;
7
+ createDate?: Date | null;
8
8
  /** @readonly */
9
- updateDate?: Date;
9
+ updateDate?: Date | null;
10
10
  }
11
11
  interface ExportAsyncJobData$1 {
12
12
  /** original request data for the export */
@@ -215,7 +215,9 @@ declare enum RuleType$1 {
215
215
  INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
216
216
  REQUIRED_FIELD = "REQUIRED_FIELD",
217
217
  FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
218
- ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
218
+ ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
219
+ EXACT_LENGTH = "EXACT_LENGTH",
220
+ EXACT_SIZE = "EXACT_SIZE"
219
221
  }
220
222
  interface FieldViolation$1 {
221
223
  field?: string;
@@ -231,7 +233,7 @@ interface SystemError$1 {
231
233
  }
232
234
  declare enum Status$1 {
233
235
  UNKNOWN = "UNKNOWN",
234
- /** Job was created, but not started yet. */
236
+ /** Job is created, but hasn't started yet. */
235
237
  INITIALIZED = "INITIALIZED",
236
238
  /** Job has started and is in progress. */
237
239
  PROCESSING = "PROCESSING",
@@ -336,9 +338,9 @@ interface ExportAsyncJob {
336
338
  data?: ExportAsyncJobData;
337
339
  status?: Status;
338
340
  /** @readonly */
339
- createDate?: Date;
341
+ createDate?: Date | null;
340
342
  /** @readonly */
341
- updateDate?: Date;
343
+ updateDate?: Date | null;
342
344
  }
343
345
  interface ExportAsyncJobData {
344
346
  /** original request data for the export */
@@ -547,7 +549,9 @@ declare enum RuleType {
547
549
  INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
548
550
  REQUIRED_FIELD = "REQUIRED_FIELD",
549
551
  FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
550
- ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
552
+ ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
553
+ EXACT_LENGTH = "EXACT_LENGTH",
554
+ EXACT_SIZE = "EXACT_SIZE"
551
555
  }
552
556
  interface FieldViolation {
553
557
  field?: string;
@@ -563,7 +567,7 @@ interface SystemError {
563
567
  }
564
568
  declare enum Status {
565
569
  UNKNOWN = "UNKNOWN",
566
- /** Job was created, but not started yet. */
570
+ /** Job is created, but hasn't started yet. */
567
571
  INITIALIZED = "INITIALIZED",
568
572
  /** Job has started and is in progress. */
569
573
  PROCESSING = "PROCESSING",