@wix/stores 1.0.312 → 1.0.313
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/stores",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.313",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@wix/stores_brands-v-3": "1.0.30",
|
|
25
|
-
"@wix/stores_catalog-versioning": "1.0.
|
|
26
|
-
"@wix/stores_collections": "1.0.
|
|
25
|
+
"@wix/stores_catalog-versioning": "1.0.15",
|
|
26
|
+
"@wix/stores_collections": "1.0.50",
|
|
27
27
|
"@wix/stores_customizations-v-3": "1.0.32",
|
|
28
28
|
"@wix/stores_info-sections-v-3": "1.0.31",
|
|
29
29
|
"@wix/stores_inventory": "1.0.68",
|
|
30
30
|
"@wix/stores_inventory-items-v-3": "1.0.37",
|
|
31
|
-
"@wix/stores_products": "1.0.
|
|
31
|
+
"@wix/stores_products": "1.0.93",
|
|
32
32
|
"@wix/stores_products-v-3": "1.0.80",
|
|
33
33
|
"@wix/stores_ribbons-v-3": "1.0.26",
|
|
34
34
|
"@wix/stores_stores-locations-v-3": "1.0.32",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"fqdn": ""
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
|
-
"falconPackageHash": "
|
|
61
|
+
"falconPackageHash": "690648a22e481245c624807477b73946fd7eb1b781b1537edde0749b"
|
|
62
62
|
}
|
|
@@ -732,10 +732,15 @@ interface MediaItemUrlAndSize$1 {
|
|
|
732
732
|
}
|
|
733
733
|
declare enum MediaItemType$1 {
|
|
734
734
|
unspecified_media_item_type = "unspecified_media_item_type",
|
|
735
|
+
/** Image media type. */
|
|
735
736
|
image = "image",
|
|
737
|
+
/** Video media type. */
|
|
736
738
|
video = "video",
|
|
739
|
+
/** Audio media type. */
|
|
737
740
|
audio = "audio",
|
|
741
|
+
/** Document media type. */
|
|
738
742
|
document = "document",
|
|
743
|
+
/** Zip media type. */
|
|
739
744
|
zip = "zip"
|
|
740
745
|
}
|
|
741
746
|
interface MediaItemVideo$1 {
|
|
@@ -1192,8 +1197,11 @@ interface Stock {
|
|
|
1192
1197
|
inventoryStatus?: InventoryStatus$1;
|
|
1193
1198
|
}
|
|
1194
1199
|
declare enum InventoryStatus$1 {
|
|
1200
|
+
/** In stock */
|
|
1195
1201
|
IN_STOCK = "IN_STOCK",
|
|
1202
|
+
/** Not in stock */
|
|
1196
1203
|
OUT_OF_STOCK = "OUT_OF_STOCK",
|
|
1204
|
+
/** Some of the variants are not in stock */
|
|
1197
1205
|
PARTIALLY_OUT_OF_STOCK = "PARTIALLY_OUT_OF_STOCK"
|
|
1198
1206
|
}
|
|
1199
1207
|
interface PriceData {
|
|
@@ -1341,10 +1349,15 @@ interface MediaItemUrlAndSize {
|
|
|
1341
1349
|
}
|
|
1342
1350
|
declare enum MediaItemType {
|
|
1343
1351
|
unspecified_media_item_type = "unspecified_media_item_type",
|
|
1352
|
+
/** Image media type. */
|
|
1344
1353
|
image = "image",
|
|
1354
|
+
/** Video media type. */
|
|
1345
1355
|
video = "video",
|
|
1356
|
+
/** Audio media type. */
|
|
1346
1357
|
audio = "audio",
|
|
1358
|
+
/** Document media type. */
|
|
1347
1359
|
document = "document",
|
|
1360
|
+
/** Zip media type. */
|
|
1348
1361
|
zip = "zip"
|
|
1349
1362
|
}
|
|
1350
1363
|
interface MediaItemVideo {
|
|
@@ -1363,7 +1376,7 @@ interface CustomTextField {
|
|
|
1363
1376
|
}
|
|
1364
1377
|
interface ProductOption {
|
|
1365
1378
|
/**
|
|
1366
|
-
* Option type
|
|
1379
|
+
* Option type.
|
|
1367
1380
|
* @readonly
|
|
1368
1381
|
*/
|
|
1369
1382
|
optionType?: OptionType;
|
|
@@ -1373,8 +1386,11 @@ interface ProductOption {
|
|
|
1373
1386
|
choices?: Choice$1[];
|
|
1374
1387
|
}
|
|
1375
1388
|
declare enum OptionType {
|
|
1389
|
+
/** Unspecified option type. */
|
|
1376
1390
|
unspecified_option_type = "unspecified_option_type",
|
|
1391
|
+
/** Drop down. */
|
|
1377
1392
|
drop_down = "drop_down",
|
|
1393
|
+
/** Color. */
|
|
1378
1394
|
color = "color"
|
|
1379
1395
|
}
|
|
1380
1396
|
interface Choice$1 {
|
|
@@ -1418,7 +1434,9 @@ declare enum DiscountType$2 {
|
|
|
1418
1434
|
UNDEFINED = "UNDEFINED",
|
|
1419
1435
|
/** No discount */
|
|
1420
1436
|
NONE = "NONE",
|
|
1437
|
+
/** Discount by a fixed amount */
|
|
1421
1438
|
AMOUNT = "AMOUNT",
|
|
1439
|
+
/** Discount by a percentage */
|
|
1422
1440
|
PERCENT = "PERCENT"
|
|
1423
1441
|
}
|
|
1424
1442
|
interface Variant$1 {
|
|
@@ -2043,7 +2061,9 @@ interface ProductCreated {
|
|
|
2043
2061
|
slug?: string;
|
|
2044
2062
|
}
|
|
2045
2063
|
declare enum Version$1 {
|
|
2064
|
+
/** Version 1 of the catalog. */
|
|
2046
2065
|
V1_CATALOG = "V1_CATALOG",
|
|
2066
|
+
/** Version 3 of the catalog. */
|
|
2047
2067
|
V3_CATALOG = "V3_CATALOG"
|
|
2048
2068
|
}
|
|
2049
2069
|
interface ProductChanged {
|
|
@@ -18010,7 +18030,9 @@ interface Provision {
|
|
|
18010
18030
|
catalogVersion?: Version;
|
|
18011
18031
|
}
|
|
18012
18032
|
declare enum Version {
|
|
18033
|
+
/** Version 1 of the catalog. */
|
|
18013
18034
|
V1_CATALOG = "V1_CATALOG",
|
|
18035
|
+
/** Version 3 of the catalog. */
|
|
18014
18036
|
V3_CATALOG = "V3_CATALOG"
|
|
18015
18037
|
}
|
|
18016
18038
|
interface DefaultDeliveryProfileSetup {
|
|
@@ -18226,7 +18248,9 @@ declare enum Namespace {
|
|
|
18226
18248
|
*/
|
|
18227
18249
|
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
18228
18250
|
/** Codux Headless Sites */
|
|
18229
|
-
CODUX = "CODUX"
|
|
18251
|
+
CODUX = "CODUX",
|
|
18252
|
+
/** Bobb - AI Design Creator. */
|
|
18253
|
+
MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
|
|
18230
18254
|
}
|
|
18231
18255
|
/** Site transferred to another user. */
|
|
18232
18256
|
interface SiteTransferred {
|
|
@@ -732,10 +732,15 @@ interface MediaItemUrlAndSize$1 {
|
|
|
732
732
|
}
|
|
733
733
|
declare enum MediaItemType$1 {
|
|
734
734
|
unspecified_media_item_type = "unspecified_media_item_type",
|
|
735
|
+
/** Image media type. */
|
|
735
736
|
image = "image",
|
|
737
|
+
/** Video media type. */
|
|
736
738
|
video = "video",
|
|
739
|
+
/** Audio media type. */
|
|
737
740
|
audio = "audio",
|
|
741
|
+
/** Document media type. */
|
|
738
742
|
document = "document",
|
|
743
|
+
/** Zip media type. */
|
|
739
744
|
zip = "zip"
|
|
740
745
|
}
|
|
741
746
|
interface MediaItemVideo$1 {
|
|
@@ -1192,8 +1197,11 @@ interface Stock {
|
|
|
1192
1197
|
inventoryStatus?: InventoryStatus$1;
|
|
1193
1198
|
}
|
|
1194
1199
|
declare enum InventoryStatus$1 {
|
|
1200
|
+
/** In stock */
|
|
1195
1201
|
IN_STOCK = "IN_STOCK",
|
|
1202
|
+
/** Not in stock */
|
|
1196
1203
|
OUT_OF_STOCK = "OUT_OF_STOCK",
|
|
1204
|
+
/** Some of the variants are not in stock */
|
|
1197
1205
|
PARTIALLY_OUT_OF_STOCK = "PARTIALLY_OUT_OF_STOCK"
|
|
1198
1206
|
}
|
|
1199
1207
|
interface PriceData {
|
|
@@ -1341,10 +1349,15 @@ interface MediaItemUrlAndSize {
|
|
|
1341
1349
|
}
|
|
1342
1350
|
declare enum MediaItemType {
|
|
1343
1351
|
unspecified_media_item_type = "unspecified_media_item_type",
|
|
1352
|
+
/** Image media type. */
|
|
1344
1353
|
image = "image",
|
|
1354
|
+
/** Video media type. */
|
|
1345
1355
|
video = "video",
|
|
1356
|
+
/** Audio media type. */
|
|
1346
1357
|
audio = "audio",
|
|
1358
|
+
/** Document media type. */
|
|
1347
1359
|
document = "document",
|
|
1360
|
+
/** Zip media type. */
|
|
1348
1361
|
zip = "zip"
|
|
1349
1362
|
}
|
|
1350
1363
|
interface MediaItemVideo {
|
|
@@ -1363,7 +1376,7 @@ interface CustomTextField {
|
|
|
1363
1376
|
}
|
|
1364
1377
|
interface ProductOption {
|
|
1365
1378
|
/**
|
|
1366
|
-
* Option type
|
|
1379
|
+
* Option type.
|
|
1367
1380
|
* @readonly
|
|
1368
1381
|
*/
|
|
1369
1382
|
optionType?: OptionType;
|
|
@@ -1373,8 +1386,11 @@ interface ProductOption {
|
|
|
1373
1386
|
choices?: Choice$1[];
|
|
1374
1387
|
}
|
|
1375
1388
|
declare enum OptionType {
|
|
1389
|
+
/** Unspecified option type. */
|
|
1376
1390
|
unspecified_option_type = "unspecified_option_type",
|
|
1391
|
+
/** Drop down. */
|
|
1377
1392
|
drop_down = "drop_down",
|
|
1393
|
+
/** Color. */
|
|
1378
1394
|
color = "color"
|
|
1379
1395
|
}
|
|
1380
1396
|
interface Choice$1 {
|
|
@@ -1418,7 +1434,9 @@ declare enum DiscountType$2 {
|
|
|
1418
1434
|
UNDEFINED = "UNDEFINED",
|
|
1419
1435
|
/** No discount */
|
|
1420
1436
|
NONE = "NONE",
|
|
1437
|
+
/** Discount by a fixed amount */
|
|
1421
1438
|
AMOUNT = "AMOUNT",
|
|
1439
|
+
/** Discount by a percentage */
|
|
1422
1440
|
PERCENT = "PERCENT"
|
|
1423
1441
|
}
|
|
1424
1442
|
interface Variant$1 {
|
|
@@ -2043,7 +2061,9 @@ interface ProductCreated {
|
|
|
2043
2061
|
slug?: string;
|
|
2044
2062
|
}
|
|
2045
2063
|
declare enum Version$1 {
|
|
2064
|
+
/** Version 1 of the catalog. */
|
|
2046
2065
|
V1_CATALOG = "V1_CATALOG",
|
|
2066
|
+
/** Version 3 of the catalog. */
|
|
2047
2067
|
V3_CATALOG = "V3_CATALOG"
|
|
2048
2068
|
}
|
|
2049
2069
|
interface ProductChanged {
|
|
@@ -18010,7 +18030,9 @@ interface Provision {
|
|
|
18010
18030
|
catalogVersion?: Version;
|
|
18011
18031
|
}
|
|
18012
18032
|
declare enum Version {
|
|
18033
|
+
/** Version 1 of the catalog. */
|
|
18013
18034
|
V1_CATALOG = "V1_CATALOG",
|
|
18035
|
+
/** Version 3 of the catalog. */
|
|
18014
18036
|
V3_CATALOG = "V3_CATALOG"
|
|
18015
18037
|
}
|
|
18016
18038
|
interface DefaultDeliveryProfileSetup {
|
|
@@ -18226,7 +18248,9 @@ declare enum Namespace {
|
|
|
18226
18248
|
*/
|
|
18227
18249
|
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
18228
18250
|
/** Codux Headless Sites */
|
|
18229
|
-
CODUX = "CODUX"
|
|
18251
|
+
CODUX = "CODUX",
|
|
18252
|
+
/** Bobb - AI Design Creator. */
|
|
18253
|
+
MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
|
|
18230
18254
|
}
|
|
18231
18255
|
/** Site transferred to another user. */
|
|
18232
18256
|
interface SiteTransferred {
|
|
@@ -195,10 +195,15 @@ interface MediaItemUrlAndSize$3 {
|
|
|
195
195
|
}
|
|
196
196
|
declare enum MediaItemType$3 {
|
|
197
197
|
unspecified_media_item_type = "unspecified_media_item_type",
|
|
198
|
+
/** Image media type. */
|
|
198
199
|
image = "image",
|
|
200
|
+
/** Video media type. */
|
|
199
201
|
video = "video",
|
|
202
|
+
/** Audio media type. */
|
|
200
203
|
audio = "audio",
|
|
204
|
+
/** Document media type. */
|
|
201
205
|
document = "document",
|
|
206
|
+
/** Zip media type. */
|
|
202
207
|
zip = "zip"
|
|
203
208
|
}
|
|
204
209
|
interface MediaItemVideo$3 {
|
|
@@ -409,10 +414,15 @@ interface MediaItemUrlAndSize$2 {
|
|
|
409
414
|
}
|
|
410
415
|
declare enum MediaItemType$2 {
|
|
411
416
|
unspecified_media_item_type = "unspecified_media_item_type",
|
|
417
|
+
/** Image media type. */
|
|
412
418
|
image = "image",
|
|
419
|
+
/** Video media type. */
|
|
413
420
|
video = "video",
|
|
421
|
+
/** Audio media type. */
|
|
414
422
|
audio = "audio",
|
|
423
|
+
/** Document media type. */
|
|
415
424
|
document = "document",
|
|
425
|
+
/** Zip media type. */
|
|
416
426
|
zip = "zip"
|
|
417
427
|
}
|
|
418
428
|
interface MediaItemVideo$2 {
|
|
@@ -743,8 +753,11 @@ interface Stock$1 {
|
|
|
743
753
|
inventoryStatus?: InventoryStatus$3;
|
|
744
754
|
}
|
|
745
755
|
declare enum InventoryStatus$3 {
|
|
756
|
+
/** In stock */
|
|
746
757
|
IN_STOCK = "IN_STOCK",
|
|
758
|
+
/** Not in stock */
|
|
747
759
|
OUT_OF_STOCK = "OUT_OF_STOCK",
|
|
760
|
+
/** Some of the variants are not in stock */
|
|
748
761
|
PARTIALLY_OUT_OF_STOCK = "PARTIALLY_OUT_OF_STOCK"
|
|
749
762
|
}
|
|
750
763
|
interface PriceData$1 {
|
|
@@ -892,10 +905,15 @@ interface MediaItemUrlAndSize$1 {
|
|
|
892
905
|
}
|
|
893
906
|
declare enum MediaItemType$1 {
|
|
894
907
|
unspecified_media_item_type = "unspecified_media_item_type",
|
|
908
|
+
/** Image media type. */
|
|
895
909
|
image = "image",
|
|
910
|
+
/** Video media type. */
|
|
896
911
|
video = "video",
|
|
912
|
+
/** Audio media type. */
|
|
897
913
|
audio = "audio",
|
|
914
|
+
/** Document media type. */
|
|
898
915
|
document = "document",
|
|
916
|
+
/** Zip media type. */
|
|
899
917
|
zip = "zip"
|
|
900
918
|
}
|
|
901
919
|
interface MediaItemVideo$1 {
|
|
@@ -914,7 +932,7 @@ interface CustomTextField$1 {
|
|
|
914
932
|
}
|
|
915
933
|
interface ProductOption$1 {
|
|
916
934
|
/**
|
|
917
|
-
* Option type
|
|
935
|
+
* Option type.
|
|
918
936
|
* @readonly
|
|
919
937
|
*/
|
|
920
938
|
optionType?: OptionType$1;
|
|
@@ -924,8 +942,11 @@ interface ProductOption$1 {
|
|
|
924
942
|
choices?: Choice$3[];
|
|
925
943
|
}
|
|
926
944
|
declare enum OptionType$1 {
|
|
945
|
+
/** Unspecified option type. */
|
|
927
946
|
unspecified_option_type = "unspecified_option_type",
|
|
947
|
+
/** Drop down. */
|
|
928
948
|
drop_down = "drop_down",
|
|
949
|
+
/** Color. */
|
|
929
950
|
color = "color"
|
|
930
951
|
}
|
|
931
952
|
interface Choice$3 {
|
|
@@ -969,7 +990,9 @@ declare enum DiscountType$5 {
|
|
|
969
990
|
UNDEFINED = "UNDEFINED",
|
|
970
991
|
/** No discount */
|
|
971
992
|
NONE = "NONE",
|
|
993
|
+
/** Discount by a fixed amount */
|
|
972
994
|
AMOUNT = "AMOUNT",
|
|
995
|
+
/** Discount by a percentage */
|
|
973
996
|
PERCENT = "PERCENT"
|
|
974
997
|
}
|
|
975
998
|
interface Variant$3 {
|
|
@@ -2151,8 +2174,11 @@ interface Stock {
|
|
|
2151
2174
|
inventoryStatus?: InventoryStatus$2;
|
|
2152
2175
|
}
|
|
2153
2176
|
declare enum InventoryStatus$2 {
|
|
2177
|
+
/** In stock */
|
|
2154
2178
|
IN_STOCK = "IN_STOCK",
|
|
2179
|
+
/** Not in stock */
|
|
2155
2180
|
OUT_OF_STOCK = "OUT_OF_STOCK",
|
|
2181
|
+
/** Some of the variants are not in stock */
|
|
2156
2182
|
PARTIALLY_OUT_OF_STOCK = "PARTIALLY_OUT_OF_STOCK"
|
|
2157
2183
|
}
|
|
2158
2184
|
interface PriceData {
|
|
@@ -2300,10 +2326,15 @@ interface MediaItemUrlAndSize {
|
|
|
2300
2326
|
}
|
|
2301
2327
|
declare enum MediaItemType {
|
|
2302
2328
|
unspecified_media_item_type = "unspecified_media_item_type",
|
|
2329
|
+
/** Image media type. */
|
|
2303
2330
|
image = "image",
|
|
2331
|
+
/** Video media type. */
|
|
2304
2332
|
video = "video",
|
|
2333
|
+
/** Audio media type. */
|
|
2305
2334
|
audio = "audio",
|
|
2335
|
+
/** Document media type. */
|
|
2306
2336
|
document = "document",
|
|
2337
|
+
/** Zip media type. */
|
|
2307
2338
|
zip = "zip"
|
|
2308
2339
|
}
|
|
2309
2340
|
interface MediaItemVideo {
|
|
@@ -2322,7 +2353,7 @@ interface CustomTextField {
|
|
|
2322
2353
|
}
|
|
2323
2354
|
interface ProductOption {
|
|
2324
2355
|
/**
|
|
2325
|
-
* Option type
|
|
2356
|
+
* Option type.
|
|
2326
2357
|
* @readonly
|
|
2327
2358
|
*/
|
|
2328
2359
|
optionType?: OptionType;
|
|
@@ -2332,8 +2363,11 @@ interface ProductOption {
|
|
|
2332
2363
|
choices?: Choice$2[];
|
|
2333
2364
|
}
|
|
2334
2365
|
declare enum OptionType {
|
|
2366
|
+
/** Unspecified option type. */
|
|
2335
2367
|
unspecified_option_type = "unspecified_option_type",
|
|
2368
|
+
/** Drop down. */
|
|
2336
2369
|
drop_down = "drop_down",
|
|
2370
|
+
/** Color. */
|
|
2337
2371
|
color = "color"
|
|
2338
2372
|
}
|
|
2339
2373
|
interface Choice$2 {
|
|
@@ -2377,7 +2411,9 @@ declare enum DiscountType$4 {
|
|
|
2377
2411
|
UNDEFINED = "UNDEFINED",
|
|
2378
2412
|
/** No discount */
|
|
2379
2413
|
NONE = "NONE",
|
|
2414
|
+
/** Discount by a fixed amount */
|
|
2380
2415
|
AMOUNT = "AMOUNT",
|
|
2416
|
+
/** Discount by a percentage */
|
|
2381
2417
|
PERCENT = "PERCENT"
|
|
2382
2418
|
}
|
|
2383
2419
|
interface Variant$2 {
|
|
@@ -20128,7 +20164,9 @@ declare namespace meta$5 {
|
|
|
20128
20164
|
}
|
|
20129
20165
|
|
|
20130
20166
|
declare enum Version$1 {
|
|
20167
|
+
/** Version 1 of the catalog. */
|
|
20131
20168
|
V1_CATALOG = "V1_CATALOG",
|
|
20169
|
+
/** Version 3 of the catalog. */
|
|
20132
20170
|
V3_CATALOG = "V3_CATALOG"
|
|
20133
20171
|
}
|
|
20134
20172
|
interface GetCatalogVersionRequest$1 {
|
|
@@ -20142,7 +20180,9 @@ interface GetCatalogVersionResponseNonNullableFields$1 {
|
|
|
20142
20180
|
}
|
|
20143
20181
|
|
|
20144
20182
|
declare enum Version {
|
|
20183
|
+
/** Version 1 of the catalog. */
|
|
20145
20184
|
V1_CATALOG = "V1_CATALOG",
|
|
20185
|
+
/** Version 3 of the catalog. */
|
|
20146
20186
|
V3_CATALOG = "V3_CATALOG"
|
|
20147
20187
|
}
|
|
20148
20188
|
interface GetCatalogVersionRequest {
|