fontdue-js 2.18.3 → 2.19.0

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.
Files changed (77) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/dist/__generated__/AddToCartBannerQuery.graphql.d.ts +1 -1
  3. package/dist/__generated__/AddToCartBannerQuery.graphql.js +22 -7
  4. package/dist/__generated__/AddToCartBanner_item.graphql.d.ts +10 -1
  5. package/dist/__generated__/AddToCartBanner_item.graphql.js +19 -4
  6. package/dist/__generated__/AddToCartBanner_order.graphql.d.ts +10 -1
  7. package/dist/__generated__/AddToCartBanner_order.graphql.js +18 -3
  8. package/dist/__generated__/CartItemProduct_product.graphql.d.ts +4 -1
  9. package/dist/__generated__/CartItemProduct_product.graphql.js +15 -5
  10. package/dist/__generated__/CartOrderCompleteOrderMutation.graphql.d.ts +1 -1
  11. package/dist/__generated__/CartOrderCompleteOrderMutation.graphql.js +27 -5
  12. package/dist/__generated__/CartOrderRemoveDiscountMutation.graphql.d.ts +1 -1
  13. package/dist/__generated__/CartOrderRemoveDiscountMutation.graphql.js +27 -5
  14. package/dist/__generated__/CartOrderUpdateMutation.graphql.d.ts +1 -1
  15. package/dist/__generated__/CartOrderUpdateMutation.graphql.js +27 -5
  16. package/dist/__generated__/CartQuery.graphql.d.ts +1 -1
  17. package/dist/__generated__/CartQuery.graphql.js +72 -49
  18. package/dist/__generated__/CartStateRemoveDiscountMutation.graphql.d.ts +1 -1
  19. package/dist/__generated__/CartStateRemoveDiscountMutation.graphql.js +15 -3
  20. package/dist/__generated__/CartStateUpdateMutation.graphql.d.ts +1 -1
  21. package/dist/__generated__/CartStateUpdateMutation.graphql.js +27 -5
  22. package/dist/__generated__/CartTotals_order.graphql.d.ts +3 -1
  23. package/dist/__generated__/CartTotals_order.graphql.js +14 -2
  24. package/dist/__generated__/CheckoutUpdateCustomerMutation.graphql.d.ts +1 -1
  25. package/dist/__generated__/CheckoutUpdateCustomerMutation.graphql.js +27 -5
  26. package/dist/__generated__/CheckoutUpdateOrderMutation.graphql.d.ts +1 -1
  27. package/dist/__generated__/CheckoutUpdateOrderMutation.graphql.js +27 -5
  28. package/dist/__generated__/CouponCodeInputApplyCouponMutation.graphql.d.ts +1 -1
  29. package/dist/__generated__/CouponCodeInputApplyCouponMutation.graphql.js +15 -3
  30. package/dist/__generated__/CustomerLoginFormQuery.graphql.d.ts +20 -0
  31. package/dist/__generated__/CustomerLoginFormQuery.graphql.js +91 -0
  32. package/dist/__generated__/PrecartAddToCartMutation.graphql.d.ts +1 -1
  33. package/dist/__generated__/PrecartAddToCartMutation.graphql.js +32 -10
  34. package/dist/__generated__/PrecartClearCartMutation.graphql.d.ts +61 -0
  35. package/dist/__generated__/PrecartClearCartMutation.graphql.js +81 -0
  36. package/dist/__generated__/StoreModalCartQuery.graphql.d.ts +1 -1
  37. package/dist/__generated__/StoreModalCartQuery.graphql.js +67 -44
  38. package/dist/__generated__/StoreModalCheckoutQuery.graphql.d.ts +1 -1
  39. package/dist/__generated__/StoreModalCheckoutQuery.graphql.js +18 -17
  40. package/dist/__generated__/StoreModalFamily_collection.graphql.d.ts +2 -1
  41. package/dist/__generated__/StoreModalFamily_collection.graphql.js +9 -3
  42. package/dist/__generated__/StoreModalProductQuery.graphql.d.ts +1 -1
  43. package/dist/__generated__/StoreModalProductQuery.graphql.js +10 -4
  44. package/dist/__generated__/StoreModalProductRefetchQuery.graphql.d.ts +1 -1
  45. package/dist/__generated__/StoreModalProductRefetchQuery.graphql.js +10 -4
  46. package/dist/__generated__/StoreModalProductSummaryClearCartMutation.graphql.d.ts +61 -0
  47. package/dist/__generated__/StoreModalProductSummaryClearCartMutation.graphql.js +81 -0
  48. package/dist/__generated__/StoreModalUnifiedCheckoutUpdateOrderMutation.graphql.d.ts +1 -1
  49. package/dist/__generated__/StoreModalUnifiedCheckoutUpdateOrderMutation.graphql.js +15 -3
  50. package/dist/__generated__/StripeProvider_viewer.graphql.d.ts +2 -1
  51. package/dist/__generated__/StripeProvider_viewer.graphql.js +78 -75
  52. package/dist/__generated__/TestFontsFormUpdateCustomerMutation.graphql.d.ts +1 -1
  53. package/dist/__generated__/TestFontsFormUpdateCustomerMutation.graphql.js +27 -5
  54. package/dist/components/AddToCartBanner/index.js +7 -1
  55. package/dist/components/Cart/CartItem/CartItemProduct.js +3 -2
  56. package/dist/components/Cart/CartTotals.js +7 -7
  57. package/dist/components/CharacterViewer/index.js +53 -37
  58. package/dist/components/ConfigContext.d.ts +10 -0
  59. package/dist/components/ConfigContext.js +7 -2
  60. package/dist/components/CorsErrorModal.d.ts +1 -0
  61. package/dist/components/CorsErrorModal.js +99 -0
  62. package/dist/components/CustomerLoginForm/index.js +12 -4
  63. package/dist/components/OrderVariableSelection/OrderVariableSelectionRedux.js +2 -1
  64. package/dist/components/Precart/index.js +30 -4
  65. package/dist/components/StoreModal/StoreModalFamily.js +2 -2
  66. package/dist/components/StoreModalProductSummary/index.js +35 -4
  67. package/dist/components/StripeProvider/index.js +5 -4
  68. package/dist/components/TypeTester/index.d.ts +5 -0
  69. package/dist/components/TypeTester/index.js +2 -1
  70. package/dist/components/TypeTester/useTypeTesterStyler.d.ts +7 -1
  71. package/dist/components/TypeTester/useTypeTesterStyler.js +8 -2
  72. package/dist/corsError.d.ts +5 -0
  73. package/dist/corsError.js +55 -0
  74. package/dist/fontdue.css +61 -3
  75. package/dist/relay/environment.js +33 -19
  76. package/fontdue.css +197 -121
  77. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @generated SignedSource<<96d87d3a68a4ca51a7f10747ff111894>>
2
+ * @generated SignedSource<<34f32c24ef45defa0db7792c85f90899>>
3
3
  * @lightSyntaxTransform
4
4
  * @nogrep
5
5
  */
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = void 0;
7
7
  /**
8
- * @generated SignedSource<<96d87d3a68a4ca51a7f10747ff111894>>
8
+ * @generated SignedSource<<34f32c24ef45defa0db7792c85f90899>>
9
9
  * @lightSyntaxTransform
10
10
  * @nogrep
11
11
  */
@@ -40,23 +40,30 @@ const node = function () {
40
40
  "alias": null,
41
41
  "args": null,
42
42
  "kind": "ScalarField",
43
- "name": "email",
43
+ "name": "stripeAccountId",
44
44
  "storageKey": null
45
45
  },
46
46
  v4 = {
47
+ "alias": null,
48
+ "args": null,
49
+ "kind": "ScalarField",
50
+ "name": "email",
51
+ "storageKey": null
52
+ },
53
+ v5 = {
47
54
  "alias": null,
48
55
  "args": null,
49
56
  "kind": "ScalarField",
50
57
  "name": "country",
51
58
  "storageKey": null
52
59
  },
53
- v5 = [v0 /*: any*/, {
60
+ v6 = [v0 /*: any*/, {
54
61
  "alias": null,
55
62
  "args": null,
56
63
  "kind": "ScalarField",
57
64
  "name": "organization",
58
65
  "storageKey": null
59
- }, v3 /*: any*/, {
66
+ }, v4 /*: any*/, {
60
67
  "alias": null,
61
68
  "args": null,
62
69
  "kind": "ScalarField",
@@ -80,7 +87,7 @@ const node = function () {
80
87
  "kind": "ScalarField",
81
88
  "name": "sublocality",
82
89
  "storageKey": null
83
- }, v4 /*: any*/, {
90
+ }, v5 /*: any*/, {
84
91
  "alias": null,
85
92
  "args": null,
86
93
  "kind": "ScalarField",
@@ -111,54 +118,64 @@ const node = function () {
111
118
  "name": "addressFormatted",
112
119
  "storageKey": null
113
120
  }],
114
- v6 = {
121
+ v7 = {
115
122
  "alias": null,
116
123
  "args": null,
117
124
  "kind": "ScalarField",
118
125
  "name": "amount",
119
126
  "storageKey": null
120
127
  },
121
- v7 = [v6 /*: any*/, {
128
+ v8 = [v7 /*: any*/, {
122
129
  "alias": null,
123
130
  "args": null,
124
131
  "kind": "ScalarField",
125
132
  "name": "currency",
126
133
  "storageKey": null
127
134
  }],
128
- v8 = [v2 /*: any*/],
129
- v9 = {
135
+ v9 = [v2 /*: any*/],
136
+ v10 = {
130
137
  "alias": null,
131
138
  "args": null,
132
139
  "concreteType": "LicenseOption",
133
140
  "kind": "LinkedField",
134
141
  "name": "licenseOptions",
135
142
  "plural": true,
136
- "selections": v8 /*: any*/,
143
+ "selections": v9 /*: any*/,
137
144
  "storageKey": null
138
145
  },
139
- v10 = {
146
+ v11 = {
140
147
  "alias": null,
141
148
  "args": null,
142
149
  "concreteType": "Money",
143
150
  "kind": "LinkedField",
144
151
  "name": "price",
145
152
  "plural": false,
146
- "selections": v7 /*: any*/,
153
+ "selections": v8 /*: any*/,
147
154
  "storageKey": null
148
155
  },
149
- v11 = {
156
+ v12 = {
150
157
  "alias": null,
151
158
  "args": null,
152
159
  "kind": "ScalarField",
153
160
  "name": "cssUrl",
154
161
  "storageKey": null
155
162
  },
156
- v12 = {
163
+ v13 = {
157
164
  "alias": null,
158
165
  "args": null,
159
166
  "kind": "ScalarField",
160
167
  "name": "totalStyles",
161
168
  "storageKey": null
169
+ },
170
+ v14 = {
171
+ "alias": null,
172
+ "args": null,
173
+ "concreteType": "FontCollection",
174
+ "kind": "LinkedField",
175
+ "name": "fontCollection",
176
+ "plural": false,
177
+ "selections": [v0 /*: any*/, v2 /*: any*/],
178
+ "storageKey": null
162
179
  };
163
180
  return {
164
181
  "fragment": {
@@ -306,13 +323,7 @@ const node = function () {
306
323
  "storageKey": null
307
324
  }],
308
325
  "storageKey": null
309
- }, {
310
- "alias": null,
311
- "args": null,
312
- "kind": "ScalarField",
313
- "name": "stripeAccountId",
314
- "storageKey": null
315
- }, {
326
+ }, v3 /*: any*/, {
316
327
  "alias": null,
317
328
  "args": null,
318
329
  "kind": "ScalarField",
@@ -325,7 +336,7 @@ const node = function () {
325
336
  "kind": "LinkedField",
326
337
  "name": "currentOrder",
327
338
  "plural": false,
328
- "selections": [{
339
+ "selections": [v3 /*: any*/, {
329
340
  "alias": null,
330
341
  "args": null,
331
342
  "concreteType": "StripePaymentIntent",
@@ -359,7 +370,7 @@ const node = function () {
359
370
  "kind": "LinkedField",
360
371
  "name": "customer",
361
372
  "plural": false,
362
- "selections": [v0 /*: any*/, v3 /*: any*/, {
373
+ "selections": [v0 /*: any*/, v4 /*: any*/, {
363
374
  "alias": null,
364
375
  "args": null,
365
376
  "kind": "ScalarField",
@@ -380,7 +391,7 @@ const node = function () {
380
391
  "kind": "LinkedField",
381
392
  "name": "billingIdentity",
382
393
  "plural": false,
383
- "selections": v5 /*: any*/,
394
+ "selections": v6 /*: any*/,
384
395
  "storageKey": null
385
396
  }, {
386
397
  "alias": null,
@@ -389,7 +400,7 @@ const node = function () {
389
400
  "kind": "LinkedField",
390
401
  "name": "licenseeIdentity",
391
402
  "plural": false,
392
- "selections": v5 /*: any*/,
403
+ "selections": v6 /*: any*/,
393
404
  "storageKey": null
394
405
  }, {
395
406
  "alias": null,
@@ -416,7 +427,7 @@ const node = function () {
416
427
  "kind": "LinkedField",
417
428
  "name": "subtotal",
418
429
  "plural": false,
419
- "selections": v7 /*: any*/,
430
+ "selections": v8 /*: any*/,
420
431
  "storageKey": null
421
432
  }, {
422
433
  "alias": null,
@@ -432,7 +443,7 @@ const node = function () {
432
443
  "kind": "LinkedField",
433
444
  "name": "amount",
434
445
  "plural": false,
435
- "selections": v7 /*: any*/,
446
+ "selections": v8 /*: any*/,
436
447
  "storageKey": null
437
448
  }, {
438
449
  "alias": null,
@@ -460,7 +471,7 @@ const node = function () {
460
471
  "kind": "LinkedField",
461
472
  "name": "creditAmount",
462
473
  "plural": false,
463
- "selections": v7 /*: any*/,
474
+ "selections": v8 /*: any*/,
464
475
  "storageKey": null
465
476
  }, {
466
477
  "alias": null,
@@ -469,7 +480,7 @@ const node = function () {
469
480
  "kind": "LinkedField",
470
481
  "name": "creditAmountRemaining",
471
482
  "plural": false,
472
- "selections": v7 /*: any*/,
483
+ "selections": v8 /*: any*/,
473
484
  "storageKey": null
474
485
  }, v2 /*: any*/],
475
486
  "storageKey": null
@@ -482,7 +493,7 @@ const node = function () {
482
493
  "kind": "LinkedField",
483
494
  "name": "discountedSubtotal",
484
495
  "plural": false,
485
- "selections": v7 /*: any*/,
496
+ "selections": v8 /*: any*/,
486
497
  "storageKey": null
487
498
  }, {
488
499
  "alias": null,
@@ -491,7 +502,7 @@ const node = function () {
491
502
  "kind": "LinkedField",
492
503
  "name": "total",
493
504
  "plural": false,
494
- "selections": v7 /*: any*/,
505
+ "selections": v8 /*: any*/,
495
506
  "storageKey": null
496
507
  }, {
497
508
  "alias": null,
@@ -506,7 +517,7 @@ const node = function () {
506
517
  "kind": "LinkedField",
507
518
  "name": "taxes",
508
519
  "plural": false,
509
- "selections": v7 /*: any*/,
520
+ "selections": v8 /*: any*/,
510
521
  "storageKey": null
511
522
  }, {
512
523
  "alias": null,
@@ -514,6 +525,18 @@ const node = function () {
514
525
  "kind": "ScalarField",
515
526
  "name": "taxName",
516
527
  "storageKey": null
528
+ }, {
529
+ "alias": null,
530
+ "args": null,
531
+ "kind": "ScalarField",
532
+ "name": "taxNotApplicable",
533
+ "storageKey": null
534
+ }, {
535
+ "alias": null,
536
+ "args": null,
537
+ "kind": "ScalarField",
538
+ "name": "taxNotApplicableReason",
539
+ "storageKey": null
517
540
  }, {
518
541
  "alias": null,
519
542
  "args": null,
@@ -555,7 +578,7 @@ const node = function () {
555
578
  "kind": "LinkedField",
556
579
  "name": "licenseOptions",
557
580
  "plural": true,
558
- "selections": [v2 /*: any*/, v0 /*: any*/, v6 /*: any*/],
581
+ "selections": [v2 /*: any*/, v0 /*: any*/, v7 /*: any*/],
559
582
  "storageKey": null
560
583
  }],
561
584
  "storageKey": null
@@ -580,7 +603,7 @@ const node = function () {
580
603
  "kind": "ScalarField",
581
604
  "name": "variableType",
582
605
  "storageKey": null
583
- }, v9 /*: any*/],
606
+ }, v10 /*: any*/],
584
607
  "storageKey": null
585
608
  }, {
586
609
  "alias": null,
@@ -595,7 +618,7 @@ const node = function () {
595
618
  "kind": "ScalarField",
596
619
  "name": "amounts",
597
620
  "storageKey": null
598
- }, v0 /*: any*/, v6 /*: any*/],
621
+ }, v0 /*: any*/, v7 /*: any*/],
599
622
  "storageKey": null
600
623
  }, {
601
624
  "alias": null,
@@ -605,14 +628,14 @@ const node = function () {
605
628
  "storageKey": null
606
629
  }, v2 /*: any*/],
607
630
  "storageKey": null
608
- }, v10 /*: any*/, {
631
+ }, v11 /*: any*/, {
609
632
  "alias": null,
610
633
  "args": null,
611
634
  "concreteType": "Sku",
612
635
  "kind": "LinkedField",
613
636
  "name": "sku",
614
637
  "plural": false,
615
- "selections": [v10 /*: any*/, {
638
+ "selections": [v11 /*: any*/, {
616
639
  "alias": null,
617
640
  "args": null,
618
641
  "concreteType": null,
@@ -644,7 +667,7 @@ const node = function () {
644
667
  "kind": "LinkedField",
645
668
  "name": "family",
646
669
  "plural": false,
647
- "selections": [v11 /*: any*/, v2 /*: any*/],
670
+ "selections": [v12 /*: any*/, v2 /*: any*/],
648
671
  "storageKey": null
649
672
  }],
650
673
  "storageKey": null
@@ -654,7 +677,7 @@ const node = function () {
654
677
  "kind": "ScalarField",
655
678
  "name": "isVariableFont",
656
679
  "storageKey": null
657
- }, v12 /*: any*/],
680
+ }, v13 /*: any*/],
658
681
  "type": "FontCollection",
659
682
  "abstractKey": null
660
683
  }, {
@@ -668,7 +691,7 @@ const node = function () {
668
691
  "plural": true,
669
692
  "selections": [v1 /*: any*/, v0 /*: any*/, v2 /*: any*/],
670
693
  "storageKey": null
671
- }, v0 /*: any*/],
694
+ }, v0 /*: any*/, v14 /*: any*/],
672
695
  "type": "Bundle",
673
696
  "abstractKey": null
674
697
  }, {
@@ -680,7 +703,7 @@ const node = function () {
680
703
  "kind": "LinkedField",
681
704
  "name": "family",
682
705
  "plural": false,
683
- "selections": [v0 /*: any*/, v11 /*: any*/, v2 /*: any*/],
706
+ "selections": [v0 /*: any*/, v12 /*: any*/, v2 /*: any*/],
684
707
  "storageKey": null
685
708
  }, {
686
709
  "alias": null,
@@ -696,7 +719,7 @@ const node = function () {
696
719
  "abstractKey": null
697
720
  }, {
698
721
  "kind": "InlineFragment",
699
- "selections": [v0 /*: any*/, v12 /*: any*/],
722
+ "selections": [v0 /*: any*/, v13 /*: any*/, v14 /*: any*/],
700
723
  "type": "CollectionBundle",
701
724
  "abstractKey": null
702
725
  }, {
@@ -715,7 +738,7 @@ const node = function () {
715
738
  "kind": "LinkedField",
716
739
  "name": "licenseVariables",
717
740
  "plural": true,
718
- "selections": [v2 /*: any*/, v9 /*: any*/],
741
+ "selections": [v2 /*: any*/, v10 /*: any*/],
719
742
  "storageKey": null
720
743
  }],
721
744
  "storageKey": null
@@ -724,7 +747,7 @@ const node = function () {
724
747
  "abstractKey": "__isLicenseable"
725
748
  }, {
726
749
  "kind": "InlineFragment",
727
- "selections": v8 /*: any*/,
750
+ "selections": v9 /*: any*/,
728
751
  "type": "Node",
729
752
  "abstractKey": "__isNode"
730
753
  }],
@@ -747,7 +770,7 @@ const node = function () {
747
770
  "kind": "LinkedField",
748
771
  "name": "orderVariable",
749
772
  "plural": false,
750
- "selections": v8 /*: any*/,
773
+ "selections": v9 /*: any*/,
751
774
  "storageKey": null
752
775
  }, {
753
776
  "alias": null,
@@ -756,7 +779,7 @@ const node = function () {
756
779
  "kind": "LinkedField",
757
780
  "name": "orderVariableOption",
758
781
  "plural": false,
759
- "selections": v8 /*: any*/,
782
+ "selections": v9 /*: any*/,
760
783
  "storageKey": null
761
784
  }, {
762
785
  "alias": null,
@@ -813,17 +836,17 @@ const node = function () {
813
836
  "storageKey": null
814
837
  }, v0 /*: any*/],
815
838
  "storageKey": null
816
- }, v4 /*: any*/, v2 /*: any*/],
839
+ }, v5 /*: any*/, v2 /*: any*/],
817
840
  "storageKey": null
818
841
  }]
819
842
  },
820
843
  "params": {
821
- "cacheID": "09719137edac17a5e2df66057f6524b1",
844
+ "cacheID": "d9ae75532790bd9c06a4c4116c1fb775",
822
845
  "id": null,
823
846
  "metadata": {},
824
847
  "name": "CartQuery",
825
848
  "operationKind": "query",
826
- "text": "query CartQuery {\n viewer {\n ...StripeProvider_viewer\n ...CartOrder_viewer\n currentOrder {\n ...CartOrder_order\n id\n }\n id\n }\n}\n\nfragment AddressFields_viewer on Viewer {\n countries {\n code\n name\n }\n settings {\n checkoutAddressCollection\n checkoutPhoneNumberCollection\n }\n}\n\nfragment CartItemAdditionalLicenses_licenses on License {\n id\n name\n}\n\nfragment CartItemAdditionalLicenses_orderItem on OrderItem {\n licenseSelections {\n license {\n id\n }\n id\n }\n}\n\nfragment CartItemLicense_selection on LicenseSelection {\n id\n license {\n id\n name\n licenseVariables {\n id\n ...CartItemVariable_variable\n }\n }\n licenseVariable {\n id\n }\n ...CartItemVariable_selection\n}\n\nfragment CartItemProduct_product on SkuProduct {\n __isSkuProduct: __typename\n __typename\n ...CollectionAa_product\n ...FontStyle_fontStyle\n ... on FontStyle {\n family {\n name\n cssUrl\n id\n }\n name\n variableInstances {\n name\n }\n }\n ... on Bundle {\n name\n }\n ... on FontCollection {\n name\n isVariableFont\n totalStyles\n featureStyle {\n family {\n cssUrl\n id\n }\n id\n }\n }\n ... on CollectionBundle {\n name\n totalStyles\n }\n}\n\nfragment CartItemVariable_selection on LicenseSelection {\n id\n variableText\n license {\n id\n }\n licenseVariable {\n ...VariableTableAmounts_variable\n id\n name\n variableType\n licenseOptions {\n id\n }\n }\n licenseOption {\n ...VariableTableAmounts_option\n id\n name\n amount\n }\n}\n\nfragment CartItemVariable_variable on LicenseVariable {\n id\n licenseOptions {\n id\n name\n amount\n }\n}\n\nfragment CartItem_node on OrderItem {\n ...CartItemAdditionalLicenses_orderItem\n id\n price {\n ...Price_price\n }\n sku {\n price {\n ...Price_price\n }\n product {\n ...CartItemProduct_product\n __typename\n ... on Licenseable {\n __isLicenseable: __typename\n licenses {\n ...CartItemAdditionalLicenses_licenses\n id\n licenseVariables {\n id\n licenseOptions {\n id\n }\n }\n }\n }\n ... on Node {\n __isNode: __typename\n id\n }\n }\n id\n }\n licenseSelections {\n ...CartItemLicense_selection\n id\n license {\n id\n }\n licenseVariable {\n id\n }\n licenseOption {\n id\n }\n variableText\n }\n}\n\nfragment CartOrder_order on Order {\n ...Checkout_order\n ...Download_order\n ...CartTotals_order\n ...CartState_order\n id\n orderItems {\n ...CartItem_node\n id\n licenseSelections {\n license {\n id\n }\n licenseVariable {\n id\n variableType\n }\n licenseOption {\n id\n }\n variableText\n id\n }\n }\n orderVariableSelections {\n orderVariable {\n id\n }\n orderVariableOption {\n id\n }\n id\n }\n discount {\n id\n }\n customer {\n email\n name\n anonymous\n id\n }\n billingIdentity {\n ...IdentityBox_identity\n }\n licenseeIdentity {\n ...IdentityBox_identity\n }\n licenseeIsBillingIdentity\n stripePaymentMethod {\n card {\n last4\n brand\n }\n }\n stripePaymentIntent {\n status\n }\n canCompleteWithCoupon\n completedWithCoupon\n}\n\nfragment CartOrder_viewer on Viewer {\n ...Checkout_viewer\n settings {\n eulaAgreementLabel(format: HTML)\n }\n}\n\nfragment CartState_order on Order {\n id\n orderItems {\n id\n licenseSelections {\n license {\n id\n }\n licenseVariable {\n id\n }\n licenseOption {\n id\n }\n variableText\n id\n }\n }\n orderVariableSelections {\n orderVariable {\n id\n }\n orderVariableOption {\n id\n }\n countryCode\n id\n }\n}\n\nfragment CartTotals_order on Order {\n subtotal {\n ...Price_price\n }\n discount {\n amount {\n amount\n ...Price_price\n }\n coupon {\n ...CouponText_coupon\n id\n }\n id\n }\n discountedSubtotal {\n ...Price_price\n }\n total {\n amount\n ...Price_price\n }\n taxRate\n taxes {\n ...Price_price\n }\n taxName\n gstIncluded\n}\n\nfragment Checkout_order on Order {\n canCompleteWithCoupon\n customer {\n name\n email\n newsletterOptIn\n id\n }\n billingIdentity {\n name\n organization\n email\n phoneNullable\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n licenseeIdentity {\n name\n organization\n email\n phoneNullable\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n licenseeIsBillingIdentity\n}\n\nfragment Checkout_viewer on Viewer {\n ...AddressFields_viewer\n country\n settings {\n uiFontName\n newsletterOptInLabel\n }\n themeConfig {\n customProperties\n }\n}\n\nfragment CollectionAa_product on SkuProduct {\n __isSkuProduct: __typename\n __typename\n ... on FontCollection {\n featureStyle {\n ...FontStyle_fontStyle\n id\n }\n }\n ... on Bundle {\n fontStyles {\n ...FontStyle_fontStyle\n id\n }\n }\n}\n\nfragment CouponText_coupon on Coupon {\n type\n percentAmount\n creditAmount {\n amount\n currency\n }\n creditAmountRemaining {\n amount\n currency\n }\n}\n\nfragment Download_order on Order {\n id\n archiveUrl\n customer {\n email\n id\n }\n completedWithCoupon\n}\n\nfragment FontStyle_fontStyle on FontStyle {\n cssFamily\n name\n}\n\nfragment IdentityBox_identity on Identity {\n email\n phoneFormatted\n addressFormatted\n vatNumber\n}\n\nfragment Price_price on Money {\n amount\n currency\n}\n\nfragment StripeProvider_viewer on Viewer {\n settings {\n taxSystem\n uiFontStyle {\n name\n cssFamily\n webfontSources {\n format\n url\n }\n id\n }\n }\n themeConfig {\n customProperties\n }\n stripeAccountId\n stripePublishableKey\n currentOrder {\n stripePaymentIntent {\n clientSecret\n }\n id\n }\n}\n\nfragment VariableTableAmounts_option on LicenseOption {\n amounts\n}\n\nfragment VariableTableAmounts_variable on LicenseVariable {\n units\n}\n"
849
+ "text": "query CartQuery {\n viewer {\n ...StripeProvider_viewer\n ...CartOrder_viewer\n currentOrder {\n ...CartOrder_order\n id\n }\n id\n }\n}\n\nfragment AddressFields_viewer on Viewer {\n countries {\n code\n name\n }\n settings {\n checkoutAddressCollection\n checkoutPhoneNumberCollection\n }\n}\n\nfragment CartItemAdditionalLicenses_licenses on License {\n id\n name\n}\n\nfragment CartItemAdditionalLicenses_orderItem on OrderItem {\n licenseSelections {\n license {\n id\n }\n id\n }\n}\n\nfragment CartItemLicense_selection on LicenseSelection {\n id\n license {\n id\n name\n licenseVariables {\n id\n ...CartItemVariable_variable\n }\n }\n licenseVariable {\n id\n }\n ...CartItemVariable_selection\n}\n\nfragment CartItemProduct_product on SkuProduct {\n __isSkuProduct: __typename\n __typename\n ...CollectionAa_product\n ...FontStyle_fontStyle\n ... on FontStyle {\n family {\n name\n cssUrl\n id\n }\n name\n variableInstances {\n name\n }\n }\n ... on Bundle {\n name\n fontCollection {\n name\n id\n }\n }\n ... on FontCollection {\n name\n isVariableFont\n totalStyles\n featureStyle {\n family {\n cssUrl\n id\n }\n id\n }\n }\n ... on CollectionBundle {\n name\n totalStyles\n fontCollection {\n name\n id\n }\n }\n}\n\nfragment CartItemVariable_selection on LicenseSelection {\n id\n variableText\n license {\n id\n }\n licenseVariable {\n ...VariableTableAmounts_variable\n id\n name\n variableType\n licenseOptions {\n id\n }\n }\n licenseOption {\n ...VariableTableAmounts_option\n id\n name\n amount\n }\n}\n\nfragment CartItemVariable_variable on LicenseVariable {\n id\n licenseOptions {\n id\n name\n amount\n }\n}\n\nfragment CartItem_node on OrderItem {\n ...CartItemAdditionalLicenses_orderItem\n id\n price {\n ...Price_price\n }\n sku {\n price {\n ...Price_price\n }\n product {\n ...CartItemProduct_product\n __typename\n ... on Licenseable {\n __isLicenseable: __typename\n licenses {\n ...CartItemAdditionalLicenses_licenses\n id\n licenseVariables {\n id\n licenseOptions {\n id\n }\n }\n }\n }\n ... on Node {\n __isNode: __typename\n id\n }\n }\n id\n }\n licenseSelections {\n ...CartItemLicense_selection\n id\n license {\n id\n }\n licenseVariable {\n id\n }\n licenseOption {\n id\n }\n variableText\n }\n}\n\nfragment CartOrder_order on Order {\n ...Checkout_order\n ...Download_order\n ...CartTotals_order\n ...CartState_order\n id\n orderItems {\n ...CartItem_node\n id\n licenseSelections {\n license {\n id\n }\n licenseVariable {\n id\n variableType\n }\n licenseOption {\n id\n }\n variableText\n id\n }\n }\n orderVariableSelections {\n orderVariable {\n id\n }\n orderVariableOption {\n id\n }\n id\n }\n discount {\n id\n }\n customer {\n email\n name\n anonymous\n id\n }\n billingIdentity {\n ...IdentityBox_identity\n }\n licenseeIdentity {\n ...IdentityBox_identity\n }\n licenseeIsBillingIdentity\n stripePaymentMethod {\n card {\n last4\n brand\n }\n }\n stripePaymentIntent {\n status\n }\n canCompleteWithCoupon\n completedWithCoupon\n}\n\nfragment CartOrder_viewer on Viewer {\n ...Checkout_viewer\n settings {\n eulaAgreementLabel(format: HTML)\n }\n}\n\nfragment CartState_order on Order {\n id\n orderItems {\n id\n licenseSelections {\n license {\n id\n }\n licenseVariable {\n id\n }\n licenseOption {\n id\n }\n variableText\n id\n }\n }\n orderVariableSelections {\n orderVariable {\n id\n }\n orderVariableOption {\n id\n }\n countryCode\n id\n }\n}\n\nfragment CartTotals_order on Order {\n subtotal {\n ...Price_price\n }\n discount {\n amount {\n amount\n ...Price_price\n }\n coupon {\n ...CouponText_coupon\n id\n }\n id\n }\n discountedSubtotal {\n ...Price_price\n }\n total {\n amount\n ...Price_price\n }\n taxRate\n taxes {\n ...Price_price\n }\n taxName\n taxNotApplicable\n taxNotApplicableReason\n gstIncluded\n}\n\nfragment Checkout_order on Order {\n canCompleteWithCoupon\n customer {\n name\n email\n newsletterOptIn\n id\n }\n billingIdentity {\n name\n organization\n email\n phoneNullable\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n licenseeIdentity {\n name\n organization\n email\n phoneNullable\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n licenseeIsBillingIdentity\n}\n\nfragment Checkout_viewer on Viewer {\n ...AddressFields_viewer\n country\n settings {\n uiFontName\n newsletterOptInLabel\n }\n themeConfig {\n customProperties\n }\n}\n\nfragment CollectionAa_product on SkuProduct {\n __isSkuProduct: __typename\n __typename\n ... on FontCollection {\n featureStyle {\n ...FontStyle_fontStyle\n id\n }\n }\n ... on Bundle {\n fontStyles {\n ...FontStyle_fontStyle\n id\n }\n }\n}\n\nfragment CouponText_coupon on Coupon {\n type\n percentAmount\n creditAmount {\n amount\n currency\n }\n creditAmountRemaining {\n amount\n currency\n }\n}\n\nfragment Download_order on Order {\n id\n archiveUrl\n customer {\n email\n id\n }\n completedWithCoupon\n}\n\nfragment FontStyle_fontStyle on FontStyle {\n cssFamily\n name\n}\n\nfragment IdentityBox_identity on Identity {\n email\n phoneFormatted\n addressFormatted\n vatNumber\n}\n\nfragment Price_price on Money {\n amount\n currency\n}\n\nfragment StripeProvider_viewer on Viewer {\n settings {\n taxSystem\n uiFontStyle {\n name\n cssFamily\n webfontSources {\n format\n url\n }\n id\n }\n }\n themeConfig {\n customProperties\n }\n stripeAccountId\n stripePublishableKey\n currentOrder {\n stripeAccountId\n stripePaymentIntent {\n clientSecret\n }\n id\n }\n}\n\nfragment VariableTableAmounts_option on LicenseOption {\n amounts\n}\n\nfragment VariableTableAmounts_variable on LicenseVariable {\n units\n}\n"
827
850
  }
828
851
  };
829
852
  }();
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @generated SignedSource<<5151a6cd79d2856c79a513854ae151b6>>
2
+ * @generated SignedSource<<73e87a36211a81c5c6a82b6068677c96>>
3
3
  * @lightSyntaxTransform
4
4
  * @nogrep
5
5
  */
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = void 0;
7
7
  /**
8
- * @generated SignedSource<<5151a6cd79d2856c79a513854ae151b6>>
8
+ * @generated SignedSource<<73e87a36211a81c5c6a82b6068677c96>>
9
9
  * @lightSyntaxTransform
10
10
  * @nogrep
11
11
  */
@@ -383,6 +383,18 @@ const node = function () {
383
383
  "kind": "ScalarField",
384
384
  "name": "taxName",
385
385
  "storageKey": null
386
+ }, {
387
+ "alias": null,
388
+ "args": null,
389
+ "kind": "ScalarField",
390
+ "name": "taxNotApplicable",
391
+ "storageKey": null
392
+ }, {
393
+ "alias": null,
394
+ "args": null,
395
+ "kind": "ScalarField",
396
+ "name": "taxNotApplicableReason",
397
+ "storageKey": null
386
398
  }, {
387
399
  "alias": null,
388
400
  "args": null,
@@ -396,12 +408,12 @@ const node = function () {
396
408
  }]
397
409
  },
398
410
  "params": {
399
- "cacheID": "23b645f08a4819fa57911af25f88bf68",
411
+ "cacheID": "998294cef27b3971ca8ea276537399ff",
400
412
  "id": null,
401
413
  "metadata": {},
402
414
  "name": "CartStateRemoveDiscountMutation",
403
415
  "operationKind": "mutation",
404
- "text": "mutation CartStateRemoveDiscountMutation {\n removeDiscount {\n order {\n ...StoreModalUnifiedCheckout_order\n ...CartTotals_order\n id\n }\n }\n}\n\nfragment CartTotals_order on Order {\n subtotal {\n ...Price_price\n }\n discount {\n amount {\n amount\n ...Price_price\n }\n coupon {\n ...CouponText_coupon\n id\n }\n id\n }\n discountedSubtotal {\n ...Price_price\n }\n total {\n amount\n ...Price_price\n }\n taxRate\n taxes {\n ...Price_price\n }\n taxName\n gstIncluded\n}\n\nfragment CouponText_coupon on Coupon {\n type\n percentAmount\n creditAmount {\n amount\n currency\n }\n creditAmountRemaining {\n amount\n currency\n }\n}\n\nfragment Price_price on Money {\n amount\n currency\n}\n\nfragment StoreModalReviewIdentity_identity on Identity {\n email\n phoneFormatted\n addressFormatted\n vatNumber\n}\n\nfragment StoreModalUnifiedCheckout_order on Order {\n completeUrl\n canCompleteWithCoupon\n total {\n amount\n }\n customer {\n name\n email\n newsletterOptIn\n id\n }\n licenseeIsBillingIdentity\n licenseeIdentity {\n ...StoreModalReviewIdentity_identity\n name\n organization\n email\n phoneNullable\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n billingIdentity {\n ...StoreModalReviewIdentity_identity\n name\n organization\n email\n phoneNullable\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n stripePaymentIntent {\n clientSecret\n amount\n currency\n }\n orderVariableSelections {\n orderVariable {\n id\n variableType\n }\n orderVariableOption {\n id\n }\n countryCode\n id\n }\n}\n"
416
+ "text": "mutation CartStateRemoveDiscountMutation {\n removeDiscount {\n order {\n ...StoreModalUnifiedCheckout_order\n ...CartTotals_order\n id\n }\n }\n}\n\nfragment CartTotals_order on Order {\n subtotal {\n ...Price_price\n }\n discount {\n amount {\n amount\n ...Price_price\n }\n coupon {\n ...CouponText_coupon\n id\n }\n id\n }\n discountedSubtotal {\n ...Price_price\n }\n total {\n amount\n ...Price_price\n }\n taxRate\n taxes {\n ...Price_price\n }\n taxName\n taxNotApplicable\n taxNotApplicableReason\n gstIncluded\n}\n\nfragment CouponText_coupon on Coupon {\n type\n percentAmount\n creditAmount {\n amount\n currency\n }\n creditAmountRemaining {\n amount\n currency\n }\n}\n\nfragment Price_price on Money {\n amount\n currency\n}\n\nfragment StoreModalReviewIdentity_identity on Identity {\n email\n phoneFormatted\n addressFormatted\n vatNumber\n}\n\nfragment StoreModalUnifiedCheckout_order on Order {\n completeUrl\n canCompleteWithCoupon\n total {\n amount\n }\n customer {\n name\n email\n newsletterOptIn\n id\n }\n licenseeIsBillingIdentity\n licenseeIdentity {\n ...StoreModalReviewIdentity_identity\n name\n organization\n email\n phoneNullable\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n billingIdentity {\n ...StoreModalReviewIdentity_identity\n name\n organization\n email\n phoneNullable\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n stripePaymentIntent {\n clientSecret\n amount\n currency\n }\n orderVariableSelections {\n orderVariable {\n id\n variableType\n }\n orderVariableOption {\n id\n }\n countryCode\n id\n }\n}\n"
405
417
  }
406
418
  };
407
419
  }();
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @generated SignedSource<<885790dd0856bee9d09a335ef126f64a>>
2
+ * @generated SignedSource<<cac58abb3074540c7be5cdd7ba296ac6>>
3
3
  * @lightSyntaxTransform
4
4
  * @nogrep
5
5
  */
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = void 0;
7
7
  /**
8
- * @generated SignedSource<<885790dd0856bee9d09a335ef126f64a>>
8
+ * @generated SignedSource<<cac58abb3074540c7be5cdd7ba296ac6>>
9
9
  * @lightSyntaxTransform
10
10
  * @nogrep
11
11
  */
@@ -201,6 +201,16 @@ const node = function () {
201
201
  "kind": "ScalarField",
202
202
  "name": "totalStyles",
203
203
  "storageKey": null
204
+ },
205
+ v17 = {
206
+ "alias": null,
207
+ "args": null,
208
+ "concreteType": "FontCollection",
209
+ "kind": "LinkedField",
210
+ "name": "fontCollection",
211
+ "plural": false,
212
+ "selections": [v6 /*: any*/, v8 /*: any*/],
213
+ "storageKey": null
204
214
  };
205
215
  return {
206
216
  "fragment": {
@@ -538,7 +548,7 @@ const node = function () {
538
548
  "plural": true,
539
549
  "selections": [v14 /*: any*/, v6 /*: any*/, v8 /*: any*/],
540
550
  "storageKey": null
541
- }, v6 /*: any*/],
551
+ }, v6 /*: any*/, v17 /*: any*/],
542
552
  "type": "Bundle",
543
553
  "abstractKey": null
544
554
  }, {
@@ -566,7 +576,7 @@ const node = function () {
566
576
  "abstractKey": null
567
577
  }, {
568
578
  "kind": "InlineFragment",
569
- "selections": [v6 /*: any*/, v16 /*: any*/],
579
+ "selections": [v6 /*: any*/, v16 /*: any*/, v17 /*: any*/],
570
580
  "type": "CollectionBundle",
571
581
  "abstractKey": null
572
582
  }, {
@@ -699,6 +709,18 @@ const node = function () {
699
709
  "kind": "ScalarField",
700
710
  "name": "taxName",
701
711
  "storageKey": null
712
+ }, {
713
+ "alias": null,
714
+ "args": null,
715
+ "kind": "ScalarField",
716
+ "name": "taxNotApplicable",
717
+ "storageKey": null
718
+ }, {
719
+ "alias": null,
720
+ "args": null,
721
+ "kind": "ScalarField",
722
+ "name": "taxNotApplicableReason",
723
+ "storageKey": null
702
724
  }, {
703
725
  "alias": null,
704
726
  "args": null,
@@ -712,12 +734,12 @@ const node = function () {
712
734
  }]
713
735
  },
714
736
  "params": {
715
- "cacheID": "1c6250b16d7cf92ae4f883d9b9312d46",
737
+ "cacheID": "9d8d680a9052cc0fc311dde7c1c2dc47",
716
738
  "id": null,
717
739
  "metadata": {},
718
740
  "name": "CartStateUpdateMutation",
719
741
  "operationKind": "mutation",
720
- "text": "mutation CartStateUpdateMutation(\n $input: UpdateOrderInput!\n) {\n updateOrder(input: $input) {\n order {\n ...StoreModalUnifiedCheckout_order\n ...CartState_order\n ...CartTotals_order\n ...StoreModalOrderVariableSelection_order\n orderItems {\n ...CartItem_node\n id\n }\n id\n }\n errors {\n orderItems {\n licenseSelections\n }\n }\n }\n}\n\nfragment CartItemAdditionalLicenses_licenses on License {\n id\n name\n}\n\nfragment CartItemAdditionalLicenses_orderItem on OrderItem {\n licenseSelections {\n license {\n id\n }\n id\n }\n}\n\nfragment CartItemLicense_selection on LicenseSelection {\n id\n license {\n id\n name\n licenseVariables {\n id\n ...CartItemVariable_variable\n }\n }\n licenseVariable {\n id\n }\n ...CartItemVariable_selection\n}\n\nfragment CartItemProduct_product on SkuProduct {\n __isSkuProduct: __typename\n __typename\n ...CollectionAa_product\n ...FontStyle_fontStyle\n ... on FontStyle {\n family {\n name\n cssUrl\n id\n }\n name\n variableInstances {\n name\n }\n }\n ... on Bundle {\n name\n }\n ... on FontCollection {\n name\n isVariableFont\n totalStyles\n featureStyle {\n family {\n cssUrl\n id\n }\n id\n }\n }\n ... on CollectionBundle {\n name\n totalStyles\n }\n}\n\nfragment CartItemVariable_selection on LicenseSelection {\n id\n variableText\n license {\n id\n }\n licenseVariable {\n ...VariableTableAmounts_variable\n id\n name\n variableType\n licenseOptions {\n id\n }\n }\n licenseOption {\n ...VariableTableAmounts_option\n id\n name\n amount\n }\n}\n\nfragment CartItemVariable_variable on LicenseVariable {\n id\n licenseOptions {\n id\n name\n amount\n }\n}\n\nfragment CartItem_node on OrderItem {\n ...CartItemAdditionalLicenses_orderItem\n id\n price {\n ...Price_price\n }\n sku {\n price {\n ...Price_price\n }\n product {\n ...CartItemProduct_product\n __typename\n ... on Licenseable {\n __isLicenseable: __typename\n licenses {\n ...CartItemAdditionalLicenses_licenses\n id\n licenseVariables {\n id\n licenseOptions {\n id\n }\n }\n }\n }\n ... on Node {\n __isNode: __typename\n id\n }\n }\n id\n }\n licenseSelections {\n ...CartItemLicense_selection\n id\n license {\n id\n }\n licenseVariable {\n id\n }\n licenseOption {\n id\n }\n variableText\n }\n}\n\nfragment CartState_order on Order {\n id\n orderItems {\n id\n licenseSelections {\n license {\n id\n }\n licenseVariable {\n id\n }\n licenseOption {\n id\n }\n variableText\n id\n }\n }\n orderVariableSelections {\n orderVariable {\n id\n }\n orderVariableOption {\n id\n }\n countryCode\n id\n }\n}\n\nfragment CartTotals_order on Order {\n subtotal {\n ...Price_price\n }\n discount {\n amount {\n amount\n ...Price_price\n }\n coupon {\n ...CouponText_coupon\n id\n }\n id\n }\n discountedSubtotal {\n ...Price_price\n }\n total {\n amount\n ...Price_price\n }\n taxRate\n taxes {\n ...Price_price\n }\n taxName\n gstIncluded\n}\n\nfragment CollectionAa_product on SkuProduct {\n __isSkuProduct: __typename\n __typename\n ... on FontCollection {\n featureStyle {\n ...FontStyle_fontStyle\n id\n }\n }\n ... on Bundle {\n fontStyles {\n ...FontStyle_fontStyle\n id\n }\n }\n}\n\nfragment CouponText_coupon on Coupon {\n type\n percentAmount\n creditAmount {\n amount\n currency\n }\n creditAmountRemaining {\n amount\n currency\n }\n}\n\nfragment FontStyle_fontStyle on FontStyle {\n cssFamily\n name\n}\n\nfragment Price_price on Money {\n amount\n currency\n}\n\nfragment StoreModalOrderVariableSelection_order on Order {\n id\n orderVariableSelections {\n orderVariable {\n id\n name\n variableType\n }\n orderVariableDescription(format: HTML)\n orderVariableOption {\n id\n amount\n }\n countryCode\n id\n }\n}\n\nfragment StoreModalReviewIdentity_identity on Identity {\n email\n phoneFormatted\n addressFormatted\n vatNumber\n}\n\nfragment StoreModalUnifiedCheckout_order on Order {\n completeUrl\n canCompleteWithCoupon\n total {\n amount\n }\n customer {\n name\n email\n newsletterOptIn\n id\n }\n licenseeIsBillingIdentity\n licenseeIdentity {\n ...StoreModalReviewIdentity_identity\n name\n organization\n email\n phoneNullable\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n billingIdentity {\n ...StoreModalReviewIdentity_identity\n name\n organization\n email\n phoneNullable\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n stripePaymentIntent {\n clientSecret\n amount\n currency\n }\n orderVariableSelections {\n orderVariable {\n id\n variableType\n }\n orderVariableOption {\n id\n }\n countryCode\n id\n }\n}\n\nfragment VariableTableAmounts_option on LicenseOption {\n amounts\n}\n\nfragment VariableTableAmounts_variable on LicenseVariable {\n units\n}\n"
742
+ "text": "mutation CartStateUpdateMutation(\n $input: UpdateOrderInput!\n) {\n updateOrder(input: $input) {\n order {\n ...StoreModalUnifiedCheckout_order\n ...CartState_order\n ...CartTotals_order\n ...StoreModalOrderVariableSelection_order\n orderItems {\n ...CartItem_node\n id\n }\n id\n }\n errors {\n orderItems {\n licenseSelections\n }\n }\n }\n}\n\nfragment CartItemAdditionalLicenses_licenses on License {\n id\n name\n}\n\nfragment CartItemAdditionalLicenses_orderItem on OrderItem {\n licenseSelections {\n license {\n id\n }\n id\n }\n}\n\nfragment CartItemLicense_selection on LicenseSelection {\n id\n license {\n id\n name\n licenseVariables {\n id\n ...CartItemVariable_variable\n }\n }\n licenseVariable {\n id\n }\n ...CartItemVariable_selection\n}\n\nfragment CartItemProduct_product on SkuProduct {\n __isSkuProduct: __typename\n __typename\n ...CollectionAa_product\n ...FontStyle_fontStyle\n ... on FontStyle {\n family {\n name\n cssUrl\n id\n }\n name\n variableInstances {\n name\n }\n }\n ... on Bundle {\n name\n fontCollection {\n name\n id\n }\n }\n ... on FontCollection {\n name\n isVariableFont\n totalStyles\n featureStyle {\n family {\n cssUrl\n id\n }\n id\n }\n }\n ... on CollectionBundle {\n name\n totalStyles\n fontCollection {\n name\n id\n }\n }\n}\n\nfragment CartItemVariable_selection on LicenseSelection {\n id\n variableText\n license {\n id\n }\n licenseVariable {\n ...VariableTableAmounts_variable\n id\n name\n variableType\n licenseOptions {\n id\n }\n }\n licenseOption {\n ...VariableTableAmounts_option\n id\n name\n amount\n }\n}\n\nfragment CartItemVariable_variable on LicenseVariable {\n id\n licenseOptions {\n id\n name\n amount\n }\n}\n\nfragment CartItem_node on OrderItem {\n ...CartItemAdditionalLicenses_orderItem\n id\n price {\n ...Price_price\n }\n sku {\n price {\n ...Price_price\n }\n product {\n ...CartItemProduct_product\n __typename\n ... on Licenseable {\n __isLicenseable: __typename\n licenses {\n ...CartItemAdditionalLicenses_licenses\n id\n licenseVariables {\n id\n licenseOptions {\n id\n }\n }\n }\n }\n ... on Node {\n __isNode: __typename\n id\n }\n }\n id\n }\n licenseSelections {\n ...CartItemLicense_selection\n id\n license {\n id\n }\n licenseVariable {\n id\n }\n licenseOption {\n id\n }\n variableText\n }\n}\n\nfragment CartState_order on Order {\n id\n orderItems {\n id\n licenseSelections {\n license {\n id\n }\n licenseVariable {\n id\n }\n licenseOption {\n id\n }\n variableText\n id\n }\n }\n orderVariableSelections {\n orderVariable {\n id\n }\n orderVariableOption {\n id\n }\n countryCode\n id\n }\n}\n\nfragment CartTotals_order on Order {\n subtotal {\n ...Price_price\n }\n discount {\n amount {\n amount\n ...Price_price\n }\n coupon {\n ...CouponText_coupon\n id\n }\n id\n }\n discountedSubtotal {\n ...Price_price\n }\n total {\n amount\n ...Price_price\n }\n taxRate\n taxes {\n ...Price_price\n }\n taxName\n taxNotApplicable\n taxNotApplicableReason\n gstIncluded\n}\n\nfragment CollectionAa_product on SkuProduct {\n __isSkuProduct: __typename\n __typename\n ... on FontCollection {\n featureStyle {\n ...FontStyle_fontStyle\n id\n }\n }\n ... on Bundle {\n fontStyles {\n ...FontStyle_fontStyle\n id\n }\n }\n}\n\nfragment CouponText_coupon on Coupon {\n type\n percentAmount\n creditAmount {\n amount\n currency\n }\n creditAmountRemaining {\n amount\n currency\n }\n}\n\nfragment FontStyle_fontStyle on FontStyle {\n cssFamily\n name\n}\n\nfragment Price_price on Money {\n amount\n currency\n}\n\nfragment StoreModalOrderVariableSelection_order on Order {\n id\n orderVariableSelections {\n orderVariable {\n id\n name\n variableType\n }\n orderVariableDescription(format: HTML)\n orderVariableOption {\n id\n amount\n }\n countryCode\n id\n }\n}\n\nfragment StoreModalReviewIdentity_identity on Identity {\n email\n phoneFormatted\n addressFormatted\n vatNumber\n}\n\nfragment StoreModalUnifiedCheckout_order on Order {\n completeUrl\n canCompleteWithCoupon\n total {\n amount\n }\n customer {\n name\n email\n newsletterOptIn\n id\n }\n licenseeIsBillingIdentity\n licenseeIdentity {\n ...StoreModalReviewIdentity_identity\n name\n organization\n email\n phoneNullable\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n billingIdentity {\n ...StoreModalReviewIdentity_identity\n name\n organization\n email\n phoneNullable\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n stripePaymentIntent {\n clientSecret\n amount\n currency\n }\n orderVariableSelections {\n orderVariable {\n id\n variableType\n }\n orderVariableOption {\n id\n }\n countryCode\n id\n }\n}\n\nfragment VariableTableAmounts_option on LicenseOption {\n amounts\n}\n\nfragment VariableTableAmounts_variable on LicenseVariable {\n units\n}\n"
721
743
  }
722
744
  };
723
745
  }();
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @generated SignedSource<<c94c37f4b79edefa1222b1de38af1084>>
2
+ * @generated SignedSource<<cabde69346813ca67f9605a91cb2f131>>
3
3
  * @lightSyntaxTransform
4
4
  * @nogrep
5
5
  */
@@ -23,6 +23,8 @@ export type CartTotals_order$data = {
23
23
  readonly " $fragmentSpreads": FragmentRefs<"Price_price">;
24
24
  } | null;
25
25
  readonly taxName: string | null;
26
+ readonly taxNotApplicable: boolean | null;
27
+ readonly taxNotApplicableReason: string | null;
26
28
  readonly taxRate: string | null;
27
29
  readonly taxes: {
28
30
  readonly " $fragmentSpreads": FragmentRefs<"Price_price">;
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = void 0;
7
7
  /**
8
- * @generated SignedSource<<c94c37f4b79edefa1222b1de38af1084>>
8
+ * @generated SignedSource<<cabde69346813ca67f9605a91cb2f131>>
9
9
  * @lightSyntaxTransform
10
10
  * @nogrep
11
11
  */
@@ -112,6 +112,18 @@ const node = function () {
112
112
  "kind": "ScalarField",
113
113
  "name": "taxName",
114
114
  "storageKey": null
115
+ }, {
116
+ "alias": null,
117
+ "args": null,
118
+ "kind": "ScalarField",
119
+ "name": "taxNotApplicable",
120
+ "storageKey": null
121
+ }, {
122
+ "alias": null,
123
+ "args": null,
124
+ "kind": "ScalarField",
125
+ "name": "taxNotApplicableReason",
126
+ "storageKey": null
115
127
  }, {
116
128
  "alias": null,
117
129
  "args": null,
@@ -123,6 +135,6 @@ const node = function () {
123
135
  "abstractKey": null
124
136
  };
125
137
  }();
126
- node.hash = "7fe25d7e214b579ce085157b9bd551a8";
138
+ node.hash = "aee2e882d4d0d063fd4eaf6cb43485db";
127
139
  var _default = node;
128
140
  exports.default = _default;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @generated SignedSource<<f642c5e201c9916f3ab6cbc62d8f1cfa>>
2
+ * @generated SignedSource<<7035d4b9006eb5fe8945b586758b9868>>
3
3
  * @lightSyntaxTransform
4
4
  * @nogrep
5
5
  */