@dropins/storefront-cart 1.5.2-alpha008 → 1.5.2-alpha012
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/chunks/OrderSummary.js +1 -1
- package/chunks/OrderSummary.js.map +1 -1
- package/chunks/refreshCart.js +7 -7
- package/chunks/refreshCart.js.map +1 -1
- package/data/models/cart-model.d.ts +9 -0
- package/data/transforms/__fixtures__/productTypesData.d.ts +394 -1
- package/fragments.js +27 -7
- package/fragments.js.map +1 -1
- package/package.json +1 -1
|
@@ -654,6 +654,178 @@ declare const configurableCustomizable: {
|
|
|
654
654
|
};
|
|
655
655
|
};
|
|
656
656
|
};
|
|
657
|
+
declare const configurableWithPriceTiers: {
|
|
658
|
+
__typename: string;
|
|
659
|
+
uid: string;
|
|
660
|
+
quantity: number;
|
|
661
|
+
is_available: boolean;
|
|
662
|
+
product: {
|
|
663
|
+
sku: string;
|
|
664
|
+
name: string;
|
|
665
|
+
url_key: string;
|
|
666
|
+
canonical_url: string;
|
|
667
|
+
categories: {
|
|
668
|
+
url_key: string;
|
|
669
|
+
name: string;
|
|
670
|
+
}[];
|
|
671
|
+
thumbnail: {
|
|
672
|
+
url: string;
|
|
673
|
+
label: string;
|
|
674
|
+
};
|
|
675
|
+
stock_status: string;
|
|
676
|
+
only_x_left_in_stock: null;
|
|
677
|
+
};
|
|
678
|
+
configured_variant: {
|
|
679
|
+
sku: string;
|
|
680
|
+
stock_status: string;
|
|
681
|
+
only_x_left_in_stock: null;
|
|
682
|
+
price_range: {
|
|
683
|
+
maximum_price: {
|
|
684
|
+
regular_price: {
|
|
685
|
+
value: number;
|
|
686
|
+
currency: string;
|
|
687
|
+
};
|
|
688
|
+
final_price: {
|
|
689
|
+
value: number;
|
|
690
|
+
currency: string;
|
|
691
|
+
};
|
|
692
|
+
discount: {
|
|
693
|
+
amount_off: number;
|
|
694
|
+
percent_off: number;
|
|
695
|
+
};
|
|
696
|
+
};
|
|
697
|
+
};
|
|
698
|
+
price_tiers: {
|
|
699
|
+
quantity: number;
|
|
700
|
+
final_price: {
|
|
701
|
+
value: number;
|
|
702
|
+
currency: string;
|
|
703
|
+
};
|
|
704
|
+
discount: {
|
|
705
|
+
amount_off: number;
|
|
706
|
+
percent_off: number;
|
|
707
|
+
};
|
|
708
|
+
}[];
|
|
709
|
+
};
|
|
710
|
+
configurable_options: {
|
|
711
|
+
configurable_product_option_uid: string;
|
|
712
|
+
option_label: string;
|
|
713
|
+
value_label: string;
|
|
714
|
+
}[];
|
|
715
|
+
prices: {
|
|
716
|
+
price: {
|
|
717
|
+
value: number;
|
|
718
|
+
currency: string;
|
|
719
|
+
};
|
|
720
|
+
row_total: {
|
|
721
|
+
value: number;
|
|
722
|
+
currency: string;
|
|
723
|
+
};
|
|
724
|
+
total_item_discount: {
|
|
725
|
+
value: number;
|
|
726
|
+
currency: string;
|
|
727
|
+
};
|
|
728
|
+
row_total_including_tax: {
|
|
729
|
+
value: number;
|
|
730
|
+
currency: string;
|
|
731
|
+
};
|
|
732
|
+
price_including_tax: {
|
|
733
|
+
value: number;
|
|
734
|
+
currency: string;
|
|
735
|
+
};
|
|
736
|
+
original_row_total: {
|
|
737
|
+
value: number;
|
|
738
|
+
currency: string;
|
|
739
|
+
};
|
|
740
|
+
original_item_price: {
|
|
741
|
+
value: number;
|
|
742
|
+
currency: string;
|
|
743
|
+
};
|
|
744
|
+
discounts: never[];
|
|
745
|
+
fixed_product_taxes: never[];
|
|
746
|
+
};
|
|
747
|
+
};
|
|
748
|
+
declare const configurableWithoutPriceTiers: {
|
|
749
|
+
__typename: string;
|
|
750
|
+
uid: string;
|
|
751
|
+
quantity: number;
|
|
752
|
+
is_available: boolean;
|
|
753
|
+
product: {
|
|
754
|
+
sku: string;
|
|
755
|
+
name: string;
|
|
756
|
+
url_key: string;
|
|
757
|
+
canonical_url: string;
|
|
758
|
+
categories: {
|
|
759
|
+
url_key: string;
|
|
760
|
+
name: string;
|
|
761
|
+
}[];
|
|
762
|
+
thumbnail: {
|
|
763
|
+
url: string;
|
|
764
|
+
label: string;
|
|
765
|
+
};
|
|
766
|
+
stock_status: string;
|
|
767
|
+
only_x_left_in_stock: null;
|
|
768
|
+
};
|
|
769
|
+
configured_variant: {
|
|
770
|
+
sku: string;
|
|
771
|
+
stock_status: string;
|
|
772
|
+
only_x_left_in_stock: null;
|
|
773
|
+
price_range: {
|
|
774
|
+
maximum_price: {
|
|
775
|
+
regular_price: {
|
|
776
|
+
value: number;
|
|
777
|
+
currency: string;
|
|
778
|
+
};
|
|
779
|
+
final_price: {
|
|
780
|
+
value: number;
|
|
781
|
+
currency: string;
|
|
782
|
+
};
|
|
783
|
+
discount: {
|
|
784
|
+
amount_off: number;
|
|
785
|
+
percent_off: number;
|
|
786
|
+
};
|
|
787
|
+
};
|
|
788
|
+
};
|
|
789
|
+
price_tiers: never[];
|
|
790
|
+
};
|
|
791
|
+
configurable_options: {
|
|
792
|
+
configurable_product_option_uid: string;
|
|
793
|
+
option_label: string;
|
|
794
|
+
value_label: string;
|
|
795
|
+
}[];
|
|
796
|
+
prices: {
|
|
797
|
+
price: {
|
|
798
|
+
value: number;
|
|
799
|
+
currency: string;
|
|
800
|
+
};
|
|
801
|
+
row_total: {
|
|
802
|
+
value: number;
|
|
803
|
+
currency: string;
|
|
804
|
+
};
|
|
805
|
+
total_item_discount: {
|
|
806
|
+
value: number;
|
|
807
|
+
currency: string;
|
|
808
|
+
};
|
|
809
|
+
row_total_including_tax: {
|
|
810
|
+
value: number;
|
|
811
|
+
currency: string;
|
|
812
|
+
};
|
|
813
|
+
price_including_tax: {
|
|
814
|
+
value: number;
|
|
815
|
+
currency: string;
|
|
816
|
+
};
|
|
817
|
+
original_row_total: {
|
|
818
|
+
value: number;
|
|
819
|
+
currency: string;
|
|
820
|
+
};
|
|
821
|
+
original_item_price: {
|
|
822
|
+
value: number;
|
|
823
|
+
currency: string;
|
|
824
|
+
};
|
|
825
|
+
discounts: never[];
|
|
826
|
+
fixed_product_taxes: never[];
|
|
827
|
+
};
|
|
828
|
+
};
|
|
657
829
|
declare const giftCard: {
|
|
658
830
|
__typename: string;
|
|
659
831
|
uid: string;
|
|
@@ -1156,5 +1328,226 @@ declare const simpleWithNoDiscount: {
|
|
|
1156
1328
|
gift_message_available: string;
|
|
1157
1329
|
errors: null;
|
|
1158
1330
|
};
|
|
1159
|
-
|
|
1331
|
+
declare const simpleWithPriceTiers: {
|
|
1332
|
+
__typename: string;
|
|
1333
|
+
quantity: number;
|
|
1334
|
+
product: {
|
|
1335
|
+
price_tiers: {
|
|
1336
|
+
quantity: number;
|
|
1337
|
+
final_price: {
|
|
1338
|
+
value: number;
|
|
1339
|
+
currency: string;
|
|
1340
|
+
};
|
|
1341
|
+
discount: {
|
|
1342
|
+
amount_off: number;
|
|
1343
|
+
percent_off: number;
|
|
1344
|
+
};
|
|
1345
|
+
}[];
|
|
1346
|
+
name: string;
|
|
1347
|
+
sku: string;
|
|
1348
|
+
quantity: number;
|
|
1349
|
+
thumbnail: {
|
|
1350
|
+
url: string;
|
|
1351
|
+
label: string;
|
|
1352
|
+
};
|
|
1353
|
+
url_key: string;
|
|
1354
|
+
categories: {
|
|
1355
|
+
url_path: string;
|
|
1356
|
+
url_key: string;
|
|
1357
|
+
}[];
|
|
1358
|
+
price_range: {
|
|
1359
|
+
maximum_price: {
|
|
1360
|
+
regular_price: {
|
|
1361
|
+
value: number;
|
|
1362
|
+
currency: string;
|
|
1363
|
+
};
|
|
1364
|
+
final_price: {
|
|
1365
|
+
value: number;
|
|
1366
|
+
currency: string;
|
|
1367
|
+
};
|
|
1368
|
+
discount: {
|
|
1369
|
+
amount_off: number;
|
|
1370
|
+
percent_off: number;
|
|
1371
|
+
};
|
|
1372
|
+
};
|
|
1373
|
+
};
|
|
1374
|
+
};
|
|
1375
|
+
uid: string;
|
|
1376
|
+
gift_message_available: string;
|
|
1377
|
+
errors: null;
|
|
1378
|
+
prices: {
|
|
1379
|
+
price: {
|
|
1380
|
+
value: number;
|
|
1381
|
+
currency: string;
|
|
1382
|
+
};
|
|
1383
|
+
total_item_discount: {
|
|
1384
|
+
value: number;
|
|
1385
|
+
currency: string;
|
|
1386
|
+
};
|
|
1387
|
+
row_total: {
|
|
1388
|
+
value: number;
|
|
1389
|
+
currency: string;
|
|
1390
|
+
};
|
|
1391
|
+
price_including_tax: {
|
|
1392
|
+
value: number;
|
|
1393
|
+
currency: string;
|
|
1394
|
+
};
|
|
1395
|
+
row_total_including_tax: {
|
|
1396
|
+
value: number;
|
|
1397
|
+
};
|
|
1398
|
+
original_row_total: {
|
|
1399
|
+
value: number;
|
|
1400
|
+
currency: string;
|
|
1401
|
+
};
|
|
1402
|
+
original_item_price: {
|
|
1403
|
+
value: number;
|
|
1404
|
+
currency: string;
|
|
1405
|
+
};
|
|
1406
|
+
};
|
|
1407
|
+
};
|
|
1408
|
+
declare const simpleWithPriceTiersNoMatch: {
|
|
1409
|
+
quantity: number;
|
|
1410
|
+
__typename: string;
|
|
1411
|
+
product: {
|
|
1412
|
+
price_tiers: {
|
|
1413
|
+
quantity: number;
|
|
1414
|
+
final_price: {
|
|
1415
|
+
value: number;
|
|
1416
|
+
currency: string;
|
|
1417
|
+
};
|
|
1418
|
+
discount: {
|
|
1419
|
+
amount_off: number;
|
|
1420
|
+
percent_off: number;
|
|
1421
|
+
};
|
|
1422
|
+
}[];
|
|
1423
|
+
name: string;
|
|
1424
|
+
sku: string;
|
|
1425
|
+
quantity: number;
|
|
1426
|
+
thumbnail: {
|
|
1427
|
+
url: string;
|
|
1428
|
+
label: string;
|
|
1429
|
+
};
|
|
1430
|
+
url_key: string;
|
|
1431
|
+
categories: {
|
|
1432
|
+
url_path: string;
|
|
1433
|
+
url_key: string;
|
|
1434
|
+
}[];
|
|
1435
|
+
price_range: {
|
|
1436
|
+
maximum_price: {
|
|
1437
|
+
regular_price: {
|
|
1438
|
+
value: number;
|
|
1439
|
+
currency: string;
|
|
1440
|
+
};
|
|
1441
|
+
final_price: {
|
|
1442
|
+
value: number;
|
|
1443
|
+
currency: string;
|
|
1444
|
+
};
|
|
1445
|
+
discount: {
|
|
1446
|
+
amount_off: number;
|
|
1447
|
+
percent_off: number;
|
|
1448
|
+
};
|
|
1449
|
+
};
|
|
1450
|
+
};
|
|
1451
|
+
};
|
|
1452
|
+
uid: string;
|
|
1453
|
+
gift_message_available: string;
|
|
1454
|
+
errors: null;
|
|
1455
|
+
prices: {
|
|
1456
|
+
price: {
|
|
1457
|
+
value: number;
|
|
1458
|
+
currency: string;
|
|
1459
|
+
};
|
|
1460
|
+
total_item_discount: {
|
|
1461
|
+
value: number;
|
|
1462
|
+
currency: string;
|
|
1463
|
+
};
|
|
1464
|
+
row_total: {
|
|
1465
|
+
value: number;
|
|
1466
|
+
currency: string;
|
|
1467
|
+
};
|
|
1468
|
+
price_including_tax: {
|
|
1469
|
+
value: number;
|
|
1470
|
+
currency: string;
|
|
1471
|
+
};
|
|
1472
|
+
row_total_including_tax: {
|
|
1473
|
+
value: number;
|
|
1474
|
+
};
|
|
1475
|
+
original_row_total: {
|
|
1476
|
+
value: number;
|
|
1477
|
+
currency: string;
|
|
1478
|
+
};
|
|
1479
|
+
original_item_price: {
|
|
1480
|
+
value: number;
|
|
1481
|
+
currency: string;
|
|
1482
|
+
};
|
|
1483
|
+
};
|
|
1484
|
+
};
|
|
1485
|
+
declare const simpleWithEmptyPriceTiers: {
|
|
1486
|
+
__typename: string;
|
|
1487
|
+
product: {
|
|
1488
|
+
price_tiers: never[];
|
|
1489
|
+
name: string;
|
|
1490
|
+
sku: string;
|
|
1491
|
+
quantity: number;
|
|
1492
|
+
thumbnail: {
|
|
1493
|
+
url: string;
|
|
1494
|
+
label: string;
|
|
1495
|
+
};
|
|
1496
|
+
url_key: string;
|
|
1497
|
+
categories: {
|
|
1498
|
+
url_path: string;
|
|
1499
|
+
url_key: string;
|
|
1500
|
+
}[];
|
|
1501
|
+
price_range: {
|
|
1502
|
+
maximum_price: {
|
|
1503
|
+
regular_price: {
|
|
1504
|
+
value: number;
|
|
1505
|
+
currency: string;
|
|
1506
|
+
};
|
|
1507
|
+
final_price: {
|
|
1508
|
+
value: number;
|
|
1509
|
+
currency: string;
|
|
1510
|
+
};
|
|
1511
|
+
discount: {
|
|
1512
|
+
amount_off: number;
|
|
1513
|
+
percent_off: number;
|
|
1514
|
+
};
|
|
1515
|
+
};
|
|
1516
|
+
};
|
|
1517
|
+
};
|
|
1518
|
+
uid: string;
|
|
1519
|
+
quantity: number;
|
|
1520
|
+
gift_message_available: string;
|
|
1521
|
+
errors: null;
|
|
1522
|
+
prices: {
|
|
1523
|
+
price: {
|
|
1524
|
+
value: number;
|
|
1525
|
+
currency: string;
|
|
1526
|
+
};
|
|
1527
|
+
total_item_discount: {
|
|
1528
|
+
value: number;
|
|
1529
|
+
currency: string;
|
|
1530
|
+
};
|
|
1531
|
+
row_total: {
|
|
1532
|
+
value: number;
|
|
1533
|
+
currency: string;
|
|
1534
|
+
};
|
|
1535
|
+
price_including_tax: {
|
|
1536
|
+
value: number;
|
|
1537
|
+
currency: string;
|
|
1538
|
+
};
|
|
1539
|
+
row_total_including_tax: {
|
|
1540
|
+
value: number;
|
|
1541
|
+
};
|
|
1542
|
+
original_row_total: {
|
|
1543
|
+
value: number;
|
|
1544
|
+
currency: string;
|
|
1545
|
+
};
|
|
1546
|
+
original_item_price: {
|
|
1547
|
+
value: number;
|
|
1548
|
+
currency: string;
|
|
1549
|
+
};
|
|
1550
|
+
};
|
|
1551
|
+
};
|
|
1552
|
+
export { bundleOptions, bundleOptionsEmpty, giftCardPhysical, giftCardVirtual, simple, simpleCustomizable, configurable, configurableCustomizable, giftCard, downloadbleWithMultipleLinks, simpleLowInventory, complexInsufficientQuantity, complexInsufficientQuantityGeneralMessage, complexWithProductAttributes, simpleWithNoDiscount, simpleWithPriceTiers, simpleWithPriceTiersNoMatch, simpleWithEmptyPriceTiers, configurableWithPriceTiers, configurableWithoutPriceTiers, };
|
|
1160
1553
|
//# sourceMappingURL=productTypesData.d.ts.map
|
package/fragments.js
CHANGED
|
@@ -71,14 +71,14 @@ const e=`
|
|
|
71
71
|
}
|
|
72
72
|
expiration_date
|
|
73
73
|
}
|
|
74
|
-
`,
|
|
74
|
+
`,i=`
|
|
75
75
|
fragment GIFT_MESSAGE_FRAGMENT on GiftMessage {
|
|
76
76
|
__typename
|
|
77
77
|
from
|
|
78
78
|
to
|
|
79
79
|
message
|
|
80
80
|
}
|
|
81
|
-
`,
|
|
81
|
+
`,r=`
|
|
82
82
|
fragment GIFT_WRAPPING_FRAGMENT on GiftWrapping {
|
|
83
83
|
__typename
|
|
84
84
|
uid
|
|
@@ -105,7 +105,7 @@ const e=`
|
|
|
105
105
|
value
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
|
-
`,
|
|
108
|
+
`,u=`
|
|
109
109
|
fragment CART_ITEM_FRAGMENT on CartItemInterface {
|
|
110
110
|
__typename
|
|
111
111
|
uid
|
|
@@ -165,6 +165,16 @@ const e=`
|
|
|
165
165
|
product {
|
|
166
166
|
name
|
|
167
167
|
sku
|
|
168
|
+
price_tiers {
|
|
169
|
+
quantity
|
|
170
|
+
final_price {
|
|
171
|
+
value
|
|
172
|
+
}
|
|
173
|
+
discount {
|
|
174
|
+
amount_off
|
|
175
|
+
percent_off
|
|
176
|
+
}
|
|
177
|
+
}
|
|
168
178
|
quantity
|
|
169
179
|
gift_message_available
|
|
170
180
|
gift_wrapping_available
|
|
@@ -245,6 +255,16 @@ const e=`
|
|
|
245
255
|
price_range {
|
|
246
256
|
...PRICE_RANGE_FRAGMENT
|
|
247
257
|
}
|
|
258
|
+
price_tiers {
|
|
259
|
+
quantity
|
|
260
|
+
final_price {
|
|
261
|
+
value
|
|
262
|
+
}
|
|
263
|
+
discount {
|
|
264
|
+
amount_off
|
|
265
|
+
percent_off
|
|
266
|
+
}
|
|
267
|
+
}
|
|
248
268
|
}
|
|
249
269
|
customizable_options {
|
|
250
270
|
...CUSTOMIZABLE_OPTIONS_FRAGMENT
|
|
@@ -287,10 +307,10 @@ const e=`
|
|
|
287
307
|
${e}
|
|
288
308
|
${_}
|
|
289
309
|
${a}
|
|
290
|
-
${i}
|
|
291
310
|
${r}
|
|
311
|
+
${i}
|
|
292
312
|
${n}
|
|
293
|
-
`,
|
|
313
|
+
`,c=`
|
|
294
314
|
fragment CART_FRAGMENT on Cart {
|
|
295
315
|
id
|
|
296
316
|
total_quantity
|
|
@@ -398,7 +418,7 @@ const e=`
|
|
|
398
418
|
}
|
|
399
419
|
}
|
|
400
420
|
|
|
401
|
-
${
|
|
421
|
+
${u}
|
|
402
422
|
${t}
|
|
403
|
-
`;export{t as APPLIED_GIFT_CARDS_FRAGMENT,n as AVAILABLE_GIFT_WRAPPING_FRAGMENT,
|
|
423
|
+
`;export{t as APPLIED_GIFT_CARDS_FRAGMENT,n as AVAILABLE_GIFT_WRAPPING_FRAGMENT,c as CART_FRAGMENT,u as CART_ITEM_FRAGMENT,a as DOWNLOADABLE_CART_ITEMS_FRAGMENT,i as GIFT_MESSAGE_FRAGMENT,r as GIFT_WRAPPING_FRAGMENT};
|
|
404
424
|
//# sourceMappingURL=fragments.js.map
|
package/fragments.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fragments.js","sources":["/@dropins/storefront-cart/src/api/graphql/PriceRangeFragment.ts","/@dropins/storefront-cart/src/api/graphql/CustomizableOptionsFragment.ts","/@dropins/storefront-cart/src/api/graphql/DownloadableCartItemsFragment.ts","/@dropins/storefront-cart/src/api/graphql/GiftFragment.ts","/@dropins/storefront-cart/src/api/graphql/CartItemFragment.ts","/@dropins/storefront-cart/src/api/graphql/CartFragment.ts"],"sourcesContent":["/********************************************************************\n * ADOBE CONFIDENTIAL\n * __________________\n *\n * Copyright 2024 Adobe\n * All Rights Reserved.\n *\n * NOTICE: All information contained herein is, and remains\n * the property of Adobe and its suppliers, if any. The intellectual\n * and technical concepts contained herein are proprietary to Adobe\n * and its suppliers and are protected by all applicable intellectual\n * property laws, including trade secret and copyright laws.\n * Dissemination of this information or reproduction of this material\n * is strictly forbidden unless prior written permission is obtained\n * from Adobe.\n *******************************************************************/\n\nexport const PRICE_RANGE_FRAGMENT = /* GraphQL */ `\n fragment PRICE_RANGE_FRAGMENT on PriceRange {\n minimum_price {\n regular_price {\n value\n currency\n }\n final_price {\n value\n currency\n }\n discount {\n percent_off\n amount_off\n }\n }\n maximum_price {\n regular_price {\n value\n currency\n }\n final_price {\n value\n currency\n }\n discount {\n percent_off\n amount_off\n }\n }\n }\n`;\n","/********************************************************************\n * ADOBE CONFIDENTIAL\n * __________________\n *\n * Copyright 2024 Adobe\n * All Rights Reserved.\n *\n * NOTICE: All information contained herein is, and remains\n * the property of Adobe and its suppliers, if any. The intellectual\n * and technical concepts contained herein are proprietary to Adobe\n * and its suppliers and are protected by all applicable intellectual\n * property laws, including trade secret and copyright laws.\n * Dissemination of this information or reproduction of this material\n * is strictly forbidden unless prior written permission is obtained\n * from Adobe.\n *******************************************************************/\n\nexport const CUSTOMIZABLE_OPTIONS_FRAGMENT = /* GraphQL */ `\n fragment CUSTOMIZABLE_OPTIONS_FRAGMENT on SelectedCustomizableOption {\n type\n customizable_option_uid\n label\n is_required\n values {\n label\n value\n price {\n type\n units\n value\n }\n }\n }\n`;\n","/********************************************************************\n * ADOBE CONFIDENTIAL\n * __________________\n *\n * Copyright 2024 Adobe\n * All Rights Reserved.\n *\n * NOTICE: All information contained herein is, and remains\n * the property of Adobe and its suppliers, if any. The intellectual\n * and technical concepts contained herein are proprietary to Adobe\n * and its suppliers and are protected by all applicable intellectual\n * property laws, including trade secret and copyright laws.\n * Dissemination of this information or reproduction of this material\n * is strictly forbidden unless prior written permission is obtained\n * from Adobe.\n *******************************************************************/\n\nexport const DOWNLOADABLE_CART_ITEMS_FRAGMENT = /* GraphQL */ `\n fragment DOWNLOADABLE_CART_ITEMS_FRAGMENT on DownloadableCartItem {\n links {\n sort_order\n title\n }\n customizable_options {\n ...CUSTOMIZABLE_OPTIONS_FRAGMENT\n }\n }\n`;\n","export const APPLIED_GIFT_CARDS_FRAGMENT = `\n fragment APPLIED_GIFT_CARDS_FRAGMENT on AppliedGiftCard {\n __typename\n code\n applied_balance {\n value\n currency\n }\n current_balance {\n value\n currency\n }\n expiration_date\n }\n`;\n\nexport const GIFT_MESSAGE_FRAGMENT = `\n fragment GIFT_MESSAGE_FRAGMENT on GiftMessage {\n __typename\n from\n to\n message\n }\n`;\n\nexport const GIFT_WRAPPING_FRAGMENT = `\n fragment GIFT_WRAPPING_FRAGMENT on GiftWrapping {\n __typename\n uid\n design\n image {\n url\n }\n price {\n value\n currency\n }\n }\n`;\n\nexport const AVAILABLE_GIFT_WRAPPING_FRAGMENT = `\n fragment AVAILABLE_GIFT_WRAPPING_FRAGMENT on GiftWrapping {\n __typename\n uid\n design\n image {\n url\n label\n }\n price {\n currency\n value\n }\n }\n`;\n\n","/********************************************************************\n * ADOBE CONFIDENTIAL\n * __________________\n *\n * Copyright 2024 Adobe\n * All Rights Reserved.\n *\n * NOTICE: All information contained herein is, and remains\n * the property of Adobe and its suppliers, if any. The intellectual\n * and technical concepts contained herein are proprietary to Adobe\n * and its suppliers and are protected by all applicable intellectual\n * property laws, including trade secret and copyright laws.\n * Dissemination of this information or reproduction of this material\n * is strictly forbidden unless prior written permission is obtained\n * from Adobe.\n *******************************************************************/\n\nimport { PRICE_RANGE_FRAGMENT } from './PriceRangeFragment';\nimport { CUSTOMIZABLE_OPTIONS_FRAGMENT } from './CustomizableOptionsFragment';\nimport { DOWNLOADABLE_CART_ITEMS_FRAGMENT } from './DownloadableCartItemsFragment';\nimport {\n GIFT_MESSAGE_FRAGMENT,\n GIFT_WRAPPING_FRAGMENT,\n AVAILABLE_GIFT_WRAPPING_FRAGMENT,\n} from './GiftFragment';\n\nexport const CART_ITEM_FRAGMENT = /* GraphQL */ `\n fragment CART_ITEM_FRAGMENT on CartItemInterface {\n __typename\n uid\n quantity\n is_available\n not_available_message\n errors {\n code\n message\n }\n\n prices {\n price {\n value\n currency\n }\n discounts {\n amount {\n value\n currency\n }\n label\n }\n total_item_discount {\n value\n currency\n }\n row_total {\n value\n currency\n }\n row_total_including_tax {\n value\n currency\n }\n price_including_tax {\n value\n currency\n }\n fixed_product_taxes {\n amount {\n value\n currency\n }\n label\n }\n original_item_price {\n value\n currency\n }\n original_row_total {\n value\n currency\n }\n }\n\n product {\n name\n sku\n quantity\n gift_message_available\n gift_wrapping_available\n gift_wrapping_price {\n currency\n value\n }\n thumbnail {\n url\n label\n }\n url_key\n canonical_url\n categories {\n url_path\n url_key\n name\n }\n custom_attributesV2(filters: { is_visible_on_front: true }) {\n items {\n code\n ... on AttributeValue {\n value\n }\n ... on AttributeSelectedOptions {\n selected_options {\n value\n label\n }\n }\n }\n }\n only_x_left_in_stock\n stock_status\n price_range {\n ...PRICE_RANGE_FRAGMENT\n }\n }\n ... on SimpleCartItem {\n available_gift_wrapping {\n ...AVAILABLE_GIFT_WRAPPING_FRAGMENT\n }\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n customizable_options {\n ...CUSTOMIZABLE_OPTIONS_FRAGMENT\n }\n }\n ... on ConfigurableCartItem {\n available_gift_wrapping {\n ...AVAILABLE_GIFT_WRAPPING_FRAGMENT\n }\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n configurable_options {\n configurable_product_option_uid\n option_label\n value_label\n configurable_product_option_value_uid\n }\n configured_variant {\n uid\n sku\n only_x_left_in_stock\n stock_status\n thumbnail {\n label\n url\n }\n price_range {\n ...PRICE_RANGE_FRAGMENT\n }\n }\n customizable_options {\n ...CUSTOMIZABLE_OPTIONS_FRAGMENT\n }\n }\n ...DOWNLOADABLE_CART_ITEMS_FRAGMENT\n ... on BundleCartItem {\n available_gift_wrapping {\n ...AVAILABLE_GIFT_WRAPPING_FRAGMENT\n }\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n bundle_options {\n uid\n label\n values {\n uid\n label\n }\n }\n }\n ... on GiftCardCartItem {\n message\n recipient_email\n recipient_name\n sender_email\n sender_name\n amount {\n currency\n value\n }\n is_available\n }\n }\n\n ${PRICE_RANGE_FRAGMENT}\n ${CUSTOMIZABLE_OPTIONS_FRAGMENT}\n ${DOWNLOADABLE_CART_ITEMS_FRAGMENT}\n ${GIFT_WRAPPING_FRAGMENT}\n ${GIFT_MESSAGE_FRAGMENT}\n ${AVAILABLE_GIFT_WRAPPING_FRAGMENT}\n`;\n","/********************************************************************\n * ADOBE CONFIDENTIAL\n * __________________\n *\n * Copyright 2024 Adobe\n * All Rights Reserved.\n *\n * NOTICE: All information contained herein is, and remains\n * the property of Adobe and its suppliers, if any. The intellectual\n * and technical concepts contained herein are proprietary to Adobe\n * and its suppliers and are protected by all applicable intellectual\n * property laws, including trade secret and copyright laws.\n * Dissemination of this information or reproduction of this material\n * is strictly forbidden unless prior written permission is obtained\n * from Adobe.\n *******************************************************************/\n\nimport { CART_ITEM_FRAGMENT } from './CartItemFragment';\nimport { APPLIED_GIFT_CARDS_FRAGMENT } from '../fragments';\n\nexport const CART_FRAGMENT = /* GraphQL */ `\n fragment CART_FRAGMENT on Cart {\n id\n total_quantity\n is_virtual\n applied_gift_cards {\n ...APPLIED_GIFT_CARDS_FRAGMENT\n }\n gift_receipt_included\n printed_card_included\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n available_gift_wrappings {\n ...AVAILABLE_GIFT_WRAPPING_FRAGMENT\n }\n prices {\n gift_options {\n gift_wrapping_for_items {\n currency\n value\n }\n gift_wrapping_for_items_incl_tax {\n currency\n value\n }\n gift_wrapping_for_order {\n currency\n value\n }\n gift_wrapping_for_order_incl_tax {\n currency\n value\n }\n printed_card {\n currency\n value\n }\n printed_card_incl_tax {\n currency\n value\n }\n }\n subtotal_with_discount_excluding_tax {\n currency\n value\n }\n subtotal_including_tax {\n currency\n value\n }\n subtotal_excluding_tax {\n currency\n value\n }\n grand_total {\n currency\n value\n }\n grand_total_excluding_tax {\n currency\n value\n }\n applied_taxes {\n label\n amount {\n value\n currency\n }\n }\n discounts {\n amount {\n value\n currency\n }\n label\n coupon {\n code\n }\n applied_to\n }\n }\n applied_coupons {\n code\n }\n itemsV2(\n pageSize: $pageSize\n currentPage: $currentPage\n sort: $itemsSortInput\n ) {\n items {\n ...CART_ITEM_FRAGMENT\n }\n }\n shipping_addresses {\n country {\n code\n }\n region {\n code\n }\n postcode\n }\n }\n\n ${CART_ITEM_FRAGMENT}\n ${APPLIED_GIFT_CARDS_FRAGMENT}\n`;\n"],"names":["PRICE_RANGE_FRAGMENT","CUSTOMIZABLE_OPTIONS_FRAGMENT","DOWNLOADABLE_CART_ITEMS_FRAGMENT","APPLIED_GIFT_CARDS_FRAGMENT","GIFT_MESSAGE_FRAGMENT","GIFT_WRAPPING_FRAGMENT","AVAILABLE_GIFT_WRAPPING_FRAGMENT","CART_ITEM_FRAGMENT","CART_FRAGMENT"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"fragments.js","sources":["/@dropins/storefront-cart/src/api/graphql/PriceRangeFragment.ts","/@dropins/storefront-cart/src/api/graphql/CustomizableOptionsFragment.ts","/@dropins/storefront-cart/src/api/graphql/DownloadableCartItemsFragment.ts","/@dropins/storefront-cart/src/api/graphql/GiftFragment.ts","/@dropins/storefront-cart/src/api/graphql/CartItemFragment.ts","/@dropins/storefront-cart/src/api/graphql/CartFragment.ts"],"sourcesContent":["/********************************************************************\n * ADOBE CONFIDENTIAL\n * __________________\n *\n * Copyright 2024 Adobe\n * All Rights Reserved.\n *\n * NOTICE: All information contained herein is, and remains\n * the property of Adobe and its suppliers, if any. The intellectual\n * and technical concepts contained herein are proprietary to Adobe\n * and its suppliers and are protected by all applicable intellectual\n * property laws, including trade secret and copyright laws.\n * Dissemination of this information or reproduction of this material\n * is strictly forbidden unless prior written permission is obtained\n * from Adobe.\n *******************************************************************/\n\nexport const PRICE_RANGE_FRAGMENT = /* GraphQL */ `\n fragment PRICE_RANGE_FRAGMENT on PriceRange {\n minimum_price {\n regular_price {\n value\n currency\n }\n final_price {\n value\n currency\n }\n discount {\n percent_off\n amount_off\n }\n }\n maximum_price {\n regular_price {\n value\n currency\n }\n final_price {\n value\n currency\n }\n discount {\n percent_off\n amount_off\n }\n }\n }\n`;\n","/********************************************************************\n * ADOBE CONFIDENTIAL\n * __________________\n *\n * Copyright 2024 Adobe\n * All Rights Reserved.\n *\n * NOTICE: All information contained herein is, and remains\n * the property of Adobe and its suppliers, if any. The intellectual\n * and technical concepts contained herein are proprietary to Adobe\n * and its suppliers and are protected by all applicable intellectual\n * property laws, including trade secret and copyright laws.\n * Dissemination of this information or reproduction of this material\n * is strictly forbidden unless prior written permission is obtained\n * from Adobe.\n *******************************************************************/\n\nexport const CUSTOMIZABLE_OPTIONS_FRAGMENT = /* GraphQL */ `\n fragment CUSTOMIZABLE_OPTIONS_FRAGMENT on SelectedCustomizableOption {\n type\n customizable_option_uid\n label\n is_required\n values {\n label\n value\n price {\n type\n units\n value\n }\n }\n }\n`;\n","/********************************************************************\n * ADOBE CONFIDENTIAL\n * __________________\n *\n * Copyright 2024 Adobe\n * All Rights Reserved.\n *\n * NOTICE: All information contained herein is, and remains\n * the property of Adobe and its suppliers, if any. The intellectual\n * and technical concepts contained herein are proprietary to Adobe\n * and its suppliers and are protected by all applicable intellectual\n * property laws, including trade secret and copyright laws.\n * Dissemination of this information or reproduction of this material\n * is strictly forbidden unless prior written permission is obtained\n * from Adobe.\n *******************************************************************/\n\nexport const DOWNLOADABLE_CART_ITEMS_FRAGMENT = /* GraphQL */ `\n fragment DOWNLOADABLE_CART_ITEMS_FRAGMENT on DownloadableCartItem {\n links {\n sort_order\n title\n }\n customizable_options {\n ...CUSTOMIZABLE_OPTIONS_FRAGMENT\n }\n }\n`;\n","export const APPLIED_GIFT_CARDS_FRAGMENT = `\n fragment APPLIED_GIFT_CARDS_FRAGMENT on AppliedGiftCard {\n __typename\n code\n applied_balance {\n value\n currency\n }\n current_balance {\n value\n currency\n }\n expiration_date\n }\n`;\n\nexport const GIFT_MESSAGE_FRAGMENT = `\n fragment GIFT_MESSAGE_FRAGMENT on GiftMessage {\n __typename\n from\n to\n message\n }\n`;\n\nexport const GIFT_WRAPPING_FRAGMENT = `\n fragment GIFT_WRAPPING_FRAGMENT on GiftWrapping {\n __typename\n uid\n design\n image {\n url\n }\n price {\n value\n currency\n }\n }\n`;\n\nexport const AVAILABLE_GIFT_WRAPPING_FRAGMENT = `\n fragment AVAILABLE_GIFT_WRAPPING_FRAGMENT on GiftWrapping {\n __typename\n uid\n design\n image {\n url\n label\n }\n price {\n currency\n value\n }\n }\n`;\n\n","/********************************************************************\n * ADOBE CONFIDENTIAL\n * __________________\n *\n * Copyright 2024 Adobe\n * All Rights Reserved.\n *\n * NOTICE: All information contained herein is, and remains\n * the property of Adobe and its suppliers, if any. The intellectual\n * and technical concepts contained herein are proprietary to Adobe\n * and its suppliers and are protected by all applicable intellectual\n * property laws, including trade secret and copyright laws.\n * Dissemination of this information or reproduction of this material\n * is strictly forbidden unless prior written permission is obtained\n * from Adobe.\n *******************************************************************/\n\nimport { PRICE_RANGE_FRAGMENT } from './PriceRangeFragment';\nimport { CUSTOMIZABLE_OPTIONS_FRAGMENT } from './CustomizableOptionsFragment';\nimport { DOWNLOADABLE_CART_ITEMS_FRAGMENT } from './DownloadableCartItemsFragment';\nimport {\n GIFT_MESSAGE_FRAGMENT,\n GIFT_WRAPPING_FRAGMENT,\n AVAILABLE_GIFT_WRAPPING_FRAGMENT,\n} from './GiftFragment';\n\nexport const CART_ITEM_FRAGMENT = /* GraphQL */ `\n fragment CART_ITEM_FRAGMENT on CartItemInterface {\n __typename\n uid\n quantity\n is_available\n not_available_message\n errors {\n code\n message\n }\n\n prices {\n price {\n value\n currency\n }\n discounts {\n amount {\n value\n currency\n }\n label\n }\n total_item_discount {\n value\n currency\n }\n row_total {\n value\n currency\n }\n row_total_including_tax {\n value\n currency\n }\n price_including_tax {\n value\n currency\n }\n fixed_product_taxes {\n amount {\n value\n currency\n }\n label\n }\n original_item_price {\n value\n currency\n }\n original_row_total {\n value\n currency\n }\n }\n\n product {\n name\n sku\n price_tiers {\n quantity\n final_price {\n value\n }\n discount {\n amount_off\n percent_off\n }\n }\n quantity\n gift_message_available\n gift_wrapping_available\n gift_wrapping_price {\n currency\n value\n }\n thumbnail {\n url\n label\n }\n url_key\n canonical_url\n categories {\n url_path\n url_key\n name\n }\n custom_attributesV2(filters: { is_visible_on_front: true }) {\n items {\n code\n ... on AttributeValue {\n value\n }\n ... on AttributeSelectedOptions {\n selected_options {\n value\n label\n }\n }\n }\n }\n only_x_left_in_stock\n stock_status\n price_range {\n ...PRICE_RANGE_FRAGMENT\n }\n }\n ... on SimpleCartItem {\n available_gift_wrapping {\n ...AVAILABLE_GIFT_WRAPPING_FRAGMENT\n }\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n customizable_options {\n ...CUSTOMIZABLE_OPTIONS_FRAGMENT\n }\n }\n ... on ConfigurableCartItem {\n available_gift_wrapping {\n ...AVAILABLE_GIFT_WRAPPING_FRAGMENT\n }\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n configurable_options {\n configurable_product_option_uid\n option_label\n value_label\n configurable_product_option_value_uid\n }\n configured_variant {\n uid\n sku\n only_x_left_in_stock\n stock_status\n thumbnail {\n label\n url\n }\n price_range {\n ...PRICE_RANGE_FRAGMENT\n }\n price_tiers {\n quantity\n final_price {\n value\n }\n discount {\n amount_off\n percent_off\n }\n }\n }\n customizable_options {\n ...CUSTOMIZABLE_OPTIONS_FRAGMENT\n }\n }\n ...DOWNLOADABLE_CART_ITEMS_FRAGMENT\n ... on BundleCartItem {\n available_gift_wrapping {\n ...AVAILABLE_GIFT_WRAPPING_FRAGMENT\n }\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n bundle_options {\n uid\n label\n values {\n uid\n label\n }\n }\n }\n ... on GiftCardCartItem {\n message\n recipient_email\n recipient_name\n sender_email\n sender_name\n amount {\n currency\n value\n }\n is_available\n }\n }\n\n ${PRICE_RANGE_FRAGMENT}\n ${CUSTOMIZABLE_OPTIONS_FRAGMENT}\n ${DOWNLOADABLE_CART_ITEMS_FRAGMENT}\n ${GIFT_WRAPPING_FRAGMENT}\n ${GIFT_MESSAGE_FRAGMENT}\n ${AVAILABLE_GIFT_WRAPPING_FRAGMENT}\n`;\n","/********************************************************************\n * ADOBE CONFIDENTIAL\n * __________________\n *\n * Copyright 2024 Adobe\n * All Rights Reserved.\n *\n * NOTICE: All information contained herein is, and remains\n * the property of Adobe and its suppliers, if any. The intellectual\n * and technical concepts contained herein are proprietary to Adobe\n * and its suppliers and are protected by all applicable intellectual\n * property laws, including trade secret and copyright laws.\n * Dissemination of this information or reproduction of this material\n * is strictly forbidden unless prior written permission is obtained\n * from Adobe.\n *******************************************************************/\n\nimport { CART_ITEM_FRAGMENT } from './CartItemFragment';\nimport { APPLIED_GIFT_CARDS_FRAGMENT } from '../fragments';\n\nexport const CART_FRAGMENT = /* GraphQL */ `\n fragment CART_FRAGMENT on Cart {\n id\n total_quantity\n is_virtual\n applied_gift_cards {\n ...APPLIED_GIFT_CARDS_FRAGMENT\n }\n gift_receipt_included\n printed_card_included\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n available_gift_wrappings {\n ...AVAILABLE_GIFT_WRAPPING_FRAGMENT\n }\n prices {\n gift_options {\n gift_wrapping_for_items {\n currency\n value\n }\n gift_wrapping_for_items_incl_tax {\n currency\n value\n }\n gift_wrapping_for_order {\n currency\n value\n }\n gift_wrapping_for_order_incl_tax {\n currency\n value\n }\n printed_card {\n currency\n value\n }\n printed_card_incl_tax {\n currency\n value\n }\n }\n subtotal_with_discount_excluding_tax {\n currency\n value\n }\n subtotal_including_tax {\n currency\n value\n }\n subtotal_excluding_tax {\n currency\n value\n }\n grand_total {\n currency\n value\n }\n grand_total_excluding_tax {\n currency\n value\n }\n applied_taxes {\n label\n amount {\n value\n currency\n }\n }\n discounts {\n amount {\n value\n currency\n }\n label\n coupon {\n code\n }\n applied_to\n }\n }\n applied_coupons {\n code\n }\n itemsV2(\n pageSize: $pageSize\n currentPage: $currentPage\n sort: $itemsSortInput\n ) {\n items {\n ...CART_ITEM_FRAGMENT\n }\n }\n shipping_addresses {\n country {\n code\n }\n region {\n code\n }\n postcode\n }\n }\n\n ${CART_ITEM_FRAGMENT}\n ${APPLIED_GIFT_CARDS_FRAGMENT}\n`;\n"],"names":["PRICE_RANGE_FRAGMENT","CUSTOMIZABLE_OPTIONS_FRAGMENT","DOWNLOADABLE_CART_ITEMS_FRAGMENT","APPLIED_GIFT_CARDS_FRAGMENT","GIFT_MESSAGE_FRAGMENT","GIFT_WRAPPING_FRAGMENT","AVAILABLE_GIFT_WRAPPING_FRAGMENT","CART_ITEM_FRAGMENT","CART_FRAGMENT"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name": "@dropins/storefront-cart", "version": "1.5.2-
|
|
1
|
+
{"name": "@dropins/storefront-cart", "version": "1.5.2-alpha012", "@dropins/tools": "1.5.0-beta4", "license": "SEE LICENSE IN LICENSE.md"}
|