@wix/export-async-job 1.0.13 → 1.0.15
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/export-async-job",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
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.
|
|
24
|
+
"@wix/export-async-job_export-async-job": "1.0.11"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"glob": "^10.4.1",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"fqdn": ""
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
|
-
"falconPackageHash": "
|
|
49
|
+
"falconPackageHash": "d3f19aa2f3a239dbf97bb9c7682bd28696f9c1130f138c176d05a2f8"
|
|
50
50
|
}
|
|
@@ -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
|
|
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",
|
|
@@ -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
|
|
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 {
|
|
@@ -1229,11 +1244,11 @@ interface Tag {
|
|
|
1229
1244
|
*/
|
|
1230
1245
|
type?: string;
|
|
1231
1246
|
/**
|
|
1232
|
-
* A `{
|
|
1233
|
-
* For example: `{
|
|
1247
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
1248
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
1234
1249
|
*/
|
|
1235
1250
|
props?: Record<string, any> | null;
|
|
1236
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
1251
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
1237
1252
|
meta?: Record<string, any> | null;
|
|
1238
1253
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
1239
1254
|
children?: string;
|
|
@@ -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 };
|
|
@@ -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
|
|
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",
|
|
@@ -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
|
|
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 {
|
|
@@ -1229,11 +1244,11 @@ interface Tag {
|
|
|
1229
1244
|
*/
|
|
1230
1245
|
type?: string;
|
|
1231
1246
|
/**
|
|
1232
|
-
* A `{
|
|
1233
|
-
* For example: `{
|
|
1247
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
1248
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
1234
1249
|
*/
|
|
1235
1250
|
props?: Record<string, any> | null;
|
|
1236
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
1251
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
1237
1252
|
meta?: Record<string, any> | null;
|
|
1238
1253
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
1239
1254
|
children?: string;
|
|
@@ -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 };
|
|
@@ -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
|
|
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",
|
|
@@ -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
|
|
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",
|