fontdue-js 0.1.0-alpha9 → 0.1.2
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/.nvmrc +1 -0
- package/BuyButton.d.ts +3 -0
- package/BuyButton.js +1 -0
- package/CartButton.d.ts +3 -0
- package/CartButton.js +1 -0
- package/FontdueProvider.d.ts +3 -0
- package/FontdueProvider.js +1 -0
- package/NewsletterSignup.d.ts +3 -0
- package/NewsletterSignup.js +1 -0
- package/README.md +170 -2
- package/StoreModal.d.ts +3 -0
- package/StoreModal.js +1 -0
- package/TestFontsForm.d.ts +3 -0
- package/TestFontsForm.js +1 -0
- package/TypeTester.d.ts +3 -0
- package/TypeTester.js +1 -0
- package/TypeTesters.d.ts +3 -0
- package/TypeTesters.js +1 -0
- package/dist/__generated__/CartOrderApplyCouponMutation.graphql.js +11 -4
- package/dist/__generated__/CartOrderCompleteOrderMutation.graphql.js +11 -4
- package/dist/__generated__/CartOrderRemoveDiscountMutation.graphql.js +11 -4
- package/dist/__generated__/CartOrderUpdateMutation.graphql.js +11 -4
- package/dist/__generated__/CartOrder_viewer.graphql.js +7 -3
- package/dist/__generated__/CartQuery.graphql.js +18 -7
- package/dist/__generated__/CartStateApplyCouponMutation.graphql.js +11 -4
- package/dist/__generated__/CartStateRemoveDiscountMutation.graphql.js +11 -4
- package/dist/__generated__/CartStateUpdateMutation.graphql.js +11 -4
- package/dist/__generated__/CartTotals_order.graphql.d.ts +2 -1
- package/dist/__generated__/CartTotals_order.graphql.js +8 -2
- package/dist/__generated__/CharacterViewer_Query.graphql.d.ts +16 -0
- package/dist/__generated__/CharacterViewer_Query.graphql.js +255 -0
- package/dist/__generated__/CharacterViewer_collection.graphql.d.ts +49 -0
- package/dist/__generated__/CharacterViewer_collection.graphql.js +135 -0
- package/dist/__generated__/CharacterViewer_family.graphql.d.ts +28 -0
- package/dist/__generated__/CharacterViewer_family.graphql.js +102 -0
- package/dist/__generated__/CheckoutUpdateCustomerMutation.graphql.js +11 -4
- package/dist/__generated__/CheckoutUpdateOrderMutation.graphql.js +11 -4
- package/dist/__generated__/PrecartAddToCartMutation.graphql.js +11 -4
- package/dist/__generated__/StoreModalCartQuery.graphql.js +11 -4
- package/dist/__generated__/StoreModalReviewCompleteOrderMutation.graphql.js +11 -4
- package/dist/__generated__/StoreModalReviewQuery.graphql.js +11 -4
- package/dist/__generated__/TestFontsFormUpdateCustomerMutation.graphql.js +11 -4
- package/dist/__generated__/TestFontsForm_Query.graphql.js +18 -9
- package/dist/__generated__/TestFontsForm_viewer.graphql.js +69 -57
- package/dist/__generated__/TypeTesterData_typeTester.graphql.d.ts +1 -0
- package/dist/__generated__/TypeTesterData_typeTester.graphql.js +48 -40
- package/dist/__generated__/TypeTesterFloatingToolbar_testers.graphql.d.ts +16 -0
- package/dist/__generated__/TypeTesterFloatingToolbar_testers.graphql.js +44 -0
- package/dist/__generated__/TypeTestersIDQuery.graphql.js +163 -69
- package/dist/__generated__/TypeTestersSlugQuery.graphql.js +163 -69
- package/dist/__generated__/TypeTesters_collection.graphql.d.ts +10 -1
- package/dist/__generated__/TypeTesters_collection.graphql.js +51 -9
- package/dist/components/AddToCartBanner/index.js +8 -6
- package/dist/components/BuyButton/index.js +21 -35
- package/dist/components/BuyingOptions/index.js +10 -7
- package/dist/components/Cart/AddressFields.js +12 -9
- package/dist/components/Cart/CartItem/VariableTextInput.js +1 -1
- package/dist/components/Cart/CartItem/index.js +76 -58
- package/dist/components/Cart/CartOrder.js +19 -15
- package/dist/components/Cart/CartState.js +16 -13
- package/dist/components/Cart/CartTotals.js +66 -60
- package/dist/components/Cart/Checkout.js +34 -26
- package/dist/components/Cart/CustomerFields.d.ts +14 -0
- package/dist/components/Cart/CustomerFields.js +60 -50
- package/dist/components/Cart/Download.js +11 -9
- package/dist/components/Cart/EmptyCart.js +5 -4
- package/dist/components/Cart/IdentityBox.js +27 -24
- package/dist/components/Cart/index.js +23 -17
- package/dist/components/CartButton/index.js +12 -9
- package/dist/components/CharacterViewer/index.d.ts +6 -0
- package/dist/components/CharacterViewer/index.js +256 -0
- package/dist/components/Checkbox/index.d.ts +4 -0
- package/dist/components/{FontLoader → Checkbox}/index.js +15 -46
- package/dist/components/CollectionAa/index.js +15 -11
- package/dist/components/ConfigContext.d.ts +84 -1
- package/dist/components/ConfigContext.js +52 -2
- package/dist/components/CookieNotification/index.js +46 -38
- package/dist/components/CouponText/index.js +7 -5
- package/dist/components/Family/FamilyList.js +23 -20
- package/dist/components/Family/index.js +12 -9
- package/dist/components/FontFamilies/index.js +15 -12
- package/dist/components/FontStyle/index.js +11 -10
- package/dist/components/FontdueProvider/index.d.ts +2 -2
- package/dist/components/FontdueProvider/index.js +9 -8
- package/dist/components/Icons/Align.d.ts +4 -0
- package/dist/components/Icons/Align.js +63 -0
- package/dist/components/Icons/CheckboxCrossed.d.ts +3 -0
- package/dist/components/Icons/CheckboxCrossed.js +30 -0
- package/dist/components/Icons/index.d.ts +1 -0
- package/dist/components/Icons/index.js +8 -0
- package/dist/components/NewsletterSignup/index.d.ts +2 -0
- package/dist/components/NewsletterSignup/index.js +14 -10
- package/dist/components/Precart/License.js +8 -7
- package/dist/components/Precart/index.js +16 -11
- package/dist/components/Price/index.js +35 -28
- package/dist/components/PriceBar/PriceBarSection.js +14 -11
- package/dist/components/PriceBar/index.js +2 -2
- package/dist/components/Root/index.d.ts +4 -0
- package/dist/components/Root/index.js +97 -50
- package/dist/components/Root/productState.js +4 -3
- package/dist/components/SKUPrice/index.js +7 -6
- package/dist/components/Select/index.d.ts +11 -0
- package/dist/components/Select/index.js +51 -0
- package/dist/components/SelectButton/index.js +16 -16
- package/dist/components/SelectField/index.js +27 -24
- package/dist/components/SpecimenLink/index.js +14 -11
- package/dist/components/StickyNav/index.js +16 -13
- package/dist/components/StoreModal/StoreModalBundleButton.js +7 -6
- package/dist/components/StoreModal/StoreModalCart.js +18 -11
- package/dist/components/StoreModal/StoreModalCheckout.js +11 -6
- package/dist/components/StoreModal/StoreModalContainer.js +4 -3
- package/dist/components/StoreModal/StoreModalDownload.js +5 -4
- package/dist/components/StoreModal/StoreModalFamily.js +5 -4
- package/dist/components/StoreModal/StoreModalFamilyButton.js +11 -10
- package/dist/components/StoreModal/StoreModalIndex.js +32 -18
- package/dist/components/StoreModal/StoreModalLoader.js +4 -3
- package/dist/components/StoreModal/StoreModalProduct.js +13 -6
- package/dist/components/StoreModal/StoreModalReview.js +11 -9
- package/dist/components/StoreModal/StoreModalReviewIdentity.js +6 -3
- package/dist/components/StoreModal/StoreModalStyleButton.js +7 -6
- package/dist/components/StoreModal/createRouter.js +0 -1
- package/dist/components/StoreModal/types.d.ts +4 -0
- package/dist/components/StoreModal/types.js +5 -0
- package/dist/components/StoreModalProductLicenseSelection/ContainerElement.js +15 -12
- package/dist/components/StoreModalProductLicenseSelection/LicenseElement.js +31 -19
- package/dist/components/StoreModalProductLicenseSelection/LicenseVariableElement.js +31 -25
- package/dist/components/StoreModalProductLicenseSelection/LicenseVariableRadioElement.js +13 -10
- package/dist/components/StoreModalProductLicenseSelection/StoreModalProductLicense.js +23 -14
- package/dist/components/StoreModalProductLicenseSelection/index.js +12 -9
- package/dist/components/StoreModalProductSummary/index.js +13 -9
- package/dist/components/StripeProvider/index.js +5 -4
- package/dist/components/Stylesheet/index.js +4 -3
- package/dist/components/TestFontsForm/index.d.ts +1 -0
- package/dist/components/TestFontsForm/index.js +50 -46
- package/dist/components/TestModeBanner/index.js +9 -7
- package/dist/components/TextField/index.js +32 -29
- package/dist/components/ThemeConfig/index.js +10 -8
- package/dist/components/TypeTester/TypeTesterAlignButtons.d.ts +8 -0
- package/dist/components/TypeTester/TypeTesterAlignButtons.js +40 -0
- package/dist/components/TypeTester/TypeTesterBullet.js +5 -4
- package/dist/components/TypeTester/TypeTesterContent.d.ts +6 -2
- package/dist/components/TypeTester/TypeTesterContent.js +28 -11
- package/dist/components/TypeTester/TypeTesterContext.d.ts +51 -7
- package/dist/components/TypeTester/TypeTesterContext.js +124 -13
- package/dist/components/TypeTester/TypeTesterEditAll.d.ts +0 -2
- package/dist/components/TypeTester/TypeTesterEditAll.js +6 -3
- package/dist/components/TypeTester/TypeTesterFeatures.d.ts +1 -4
- package/dist/components/TypeTester/TypeTesterFeatures.js +130 -21
- package/dist/components/TypeTester/TypeTesterFeaturesButton.js +18 -14
- package/dist/components/TypeTester/TypeTesterFitter.js +5 -4
- package/dist/components/TypeTester/TypeTesterFloatingToolbar.d.ts +8 -0
- package/dist/components/TypeTester/TypeTesterFloatingToolbar.js +92 -0
- package/dist/components/TypeTester/TypeTesterInput.js +8 -7
- package/dist/components/TypeTester/TypeTesterSlider.js +15 -11
- package/dist/components/TypeTester/TypeTesterStandalone.d.ts +4 -0
- package/dist/components/TypeTester/TypeTesterStandalone.js +33 -19
- package/dist/components/TypeTester/TypeTesterState.d.ts +23 -25
- package/dist/components/TypeTester/TypeTesterState.js +69 -72
- package/dist/components/TypeTester/TypeTesterStyleSelect.js +45 -40
- package/dist/components/TypeTester/TypeTesterStyleSelectData.d.ts +1 -1
- package/dist/components/TypeTester/TypeTesterStyleSelectData.js +10 -7
- package/dist/components/TypeTester/TypeTesterToolbar.d.ts +7 -0
- package/dist/components/TypeTester/TypeTesterToolbar.js +60 -0
- package/dist/components/TypeTester/index.d.ts +20 -6
- package/dist/components/TypeTester/index.js +138 -137
- package/dist/components/TypeTester/types.d.ts +1 -0
- package/dist/components/TypeTester/useTypeTesterStyler.d.ts +3 -1
- package/dist/components/TypeTester/useTypeTesterStyler.js +32 -28
- package/dist/components/TypeTesterData/index.js +2 -1
- package/dist/components/TypeTesters/index.d.ts +3 -0
- package/dist/components/TypeTesters/index.js +95 -44
- package/dist/components/VariableTableAmounts/index.js +5 -4
- package/dist/components/elements/Button/index.js +11 -8
- package/dist/components/elements/EmptyCart/index.js +1 -3
- package/dist/components/elements/StoreModalCartLayout/index.js +29 -26
- package/dist/components/elements/StoreModalContainer/index.js +14 -13
- package/dist/components/elements/StoreModalDownloadLayout/index.js +17 -14
- package/dist/components/elements/StoreModalFamily/index.js +22 -19
- package/dist/components/elements/StoreModalFamilyButton/index.js +12 -11
- package/dist/components/elements/StoreModalIndexItem/index.js +26 -23
- package/dist/components/elements/StoreModalPageContainer/index.js +18 -15
- package/dist/components/elements/StoreModalReviewConfirm/index.js +15 -9
- package/dist/components/elements/StoreModalReviewItem/index.js +11 -8
- package/dist/components/elements/StoreModalReviewLayout/index.js +50 -47
- package/dist/components/elements/StoreModalStyleButton/index.js +10 -9
- package/dist/components/useFontStyle.js +7 -6
- package/dist/relay-environment.js +1 -1
- package/dist/utils.js +6 -5
- package/dist/vanilla/FontStyle.js +11 -9
- package/fontdue.css +1660 -1052
- package/fontdue.css.map +1 -0
- package/package.json +12 -11
- package/useFontStyle.d.ts +3 -0
- package/useFontStyle.js +1 -0
- package/dist/index.js +0 -63
- package/dist/type-tester.js +0 -23
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
/* tslint:disable */
|
|
9
|
+
|
|
10
|
+
/* eslint-disable */
|
|
11
|
+
// @ts-nocheck
|
|
12
|
+
const node = function () {
|
|
13
|
+
var v0 = {
|
|
14
|
+
"alias": null,
|
|
15
|
+
"args": null,
|
|
16
|
+
"kind": "ScalarField",
|
|
17
|
+
"name": "id",
|
|
18
|
+
"storageKey": null
|
|
19
|
+
},
|
|
20
|
+
v1 = {
|
|
21
|
+
"alias": null,
|
|
22
|
+
"args": null,
|
|
23
|
+
"kind": "ScalarField",
|
|
24
|
+
"name": "name",
|
|
25
|
+
"storageKey": null
|
|
26
|
+
},
|
|
27
|
+
v2 = {
|
|
28
|
+
"alias": null,
|
|
29
|
+
"args": null,
|
|
30
|
+
"kind": "ScalarField",
|
|
31
|
+
"name": "characters",
|
|
32
|
+
"storageKey": null
|
|
33
|
+
};
|
|
34
|
+
return {
|
|
35
|
+
"argumentDefinitions": [],
|
|
36
|
+
"kind": "Fragment",
|
|
37
|
+
"metadata": null,
|
|
38
|
+
"name": "CharacterViewer_family",
|
|
39
|
+
"selections": [v0
|
|
40
|
+
/*: any*/
|
|
41
|
+
, v1
|
|
42
|
+
/*: any*/
|
|
43
|
+
, {
|
|
44
|
+
"alias": null,
|
|
45
|
+
"args": null,
|
|
46
|
+
"concreteType": "FontStyle",
|
|
47
|
+
"kind": "LinkedField",
|
|
48
|
+
"name": "fontStyles",
|
|
49
|
+
"plural": true,
|
|
50
|
+
"selections": [v0
|
|
51
|
+
/*: any*/
|
|
52
|
+
, {
|
|
53
|
+
"alias": null,
|
|
54
|
+
"args": null,
|
|
55
|
+
"kind": "ScalarField",
|
|
56
|
+
"name": "cssFamily",
|
|
57
|
+
"storageKey": null
|
|
58
|
+
}, v1
|
|
59
|
+
/*: any*/
|
|
60
|
+
, {
|
|
61
|
+
"alias": null,
|
|
62
|
+
"args": null,
|
|
63
|
+
"concreteType": "CharacterBlock",
|
|
64
|
+
"kind": "LinkedField",
|
|
65
|
+
"name": "characterBlocks",
|
|
66
|
+
"plural": true,
|
|
67
|
+
"selections": [v1
|
|
68
|
+
/*: any*/
|
|
69
|
+
, v2
|
|
70
|
+
/*: any*/
|
|
71
|
+
],
|
|
72
|
+
"storageKey": null
|
|
73
|
+
}, {
|
|
74
|
+
"alias": null,
|
|
75
|
+
"args": null,
|
|
76
|
+
"concreteType": "FeatureCharacters",
|
|
77
|
+
"kind": "LinkedField",
|
|
78
|
+
"name": "featureCharacters",
|
|
79
|
+
"plural": true,
|
|
80
|
+
"selections": [{
|
|
81
|
+
"alias": null,
|
|
82
|
+
"args": null,
|
|
83
|
+
"kind": "ScalarField",
|
|
84
|
+
"name": "feature",
|
|
85
|
+
"storageKey": null
|
|
86
|
+
}, v1
|
|
87
|
+
/*: any*/
|
|
88
|
+
, v2
|
|
89
|
+
/*: any*/
|
|
90
|
+
],
|
|
91
|
+
"storageKey": null
|
|
92
|
+
}],
|
|
93
|
+
"storageKey": null
|
|
94
|
+
}],
|
|
95
|
+
"type": "FontCollection",
|
|
96
|
+
"abstractKey": null
|
|
97
|
+
};
|
|
98
|
+
}();
|
|
99
|
+
|
|
100
|
+
node.hash = '2883e053de6bd4a34d802fe4af824991';
|
|
101
|
+
var _default = node;
|
|
102
|
+
exports.default = _default;
|
|
@@ -166,7 +166,8 @@ fragment CartTotals_order on Order {
|
|
|
166
166
|
taxes {
|
|
167
167
|
...Price_price
|
|
168
168
|
}
|
|
169
|
-
|
|
169
|
+
taxName
|
|
170
|
+
gstIncluded
|
|
170
171
|
}
|
|
171
172
|
|
|
172
173
|
fragment Checkout_order on Order {
|
|
@@ -694,7 +695,13 @@ const node = function () {
|
|
|
694
695
|
"alias": null,
|
|
695
696
|
"args": null,
|
|
696
697
|
"kind": "ScalarField",
|
|
697
|
-
"name": "
|
|
698
|
+
"name": "taxName",
|
|
699
|
+
"storageKey": null
|
|
700
|
+
}, {
|
|
701
|
+
"alias": null,
|
|
702
|
+
"args": null,
|
|
703
|
+
"kind": "ScalarField",
|
|
704
|
+
"name": "gstIncluded",
|
|
698
705
|
"storageKey": null
|
|
699
706
|
}, {
|
|
700
707
|
"alias": null,
|
|
@@ -994,12 +1001,12 @@ const node = function () {
|
|
|
994
1001
|
}]
|
|
995
1002
|
},
|
|
996
1003
|
"params": {
|
|
997
|
-
"cacheID": "
|
|
1004
|
+
"cacheID": "d227a9fb5ef0d88040690574bf84029e",
|
|
998
1005
|
"id": null,
|
|
999
1006
|
"metadata": {},
|
|
1000
1007
|
"name": "CheckoutUpdateCustomerMutation",
|
|
1001
1008
|
"operationKind": "mutation",
|
|
1002
|
-
"text": "mutation CheckoutUpdateCustomerMutation(\n $input: UpdateCustomerInput!\n) {\n updateCustomer(input: $input) {\n order {\n ...CartOrder_order\n id\n }\n }\n}\n\nfragment CartItem_node on OrderItem {\n id\n price {\n ...Price_price\n }\n sku {\n price {\n ...Price_price\n }\n product {\n __typename\n __isSkuProduct: __typename\n ...CollectionAa_product\n ...FontStyle_fontStyle\n ... on FontStyle {\n family {\n name\n cssUrl\n id\n }\n name\n }\n ... on Bundle {\n name\n }\n ... on FontCollection {\n name\n totalStyles\n featureStyle {\n family {\n cssUrl\n id\n }\n id\n }\n }\n ... on Node {\n __isNode: __typename\n id\n }\n }\n id\n }\n licenseSelections {\n id\n license {\n id\n name\n multiplier\n }\n variable: licenseVariable {\n id\n variableType\n ...VariableTableAmounts_variable\n }\n option: licenseOption {\n id\n amount\n multiplier\n name\n ...VariableTableAmounts_option\n }\n variableText\n }\n}\n\nfragment CartOrder_order on Order {\n ...Checkout_order\n ...Download_order\n ...CouponCodeInput_order\n ...CartTotals_order\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 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 clientSecret\n }\n canCompleteWithCoupon\n completedWithCoupon\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 taxes {\n ...Price_price\n }\n
|
|
1009
|
+
"text": "mutation CheckoutUpdateCustomerMutation(\n $input: UpdateCustomerInput!\n) {\n updateCustomer(input: $input) {\n order {\n ...CartOrder_order\n id\n }\n }\n}\n\nfragment CartItem_node on OrderItem {\n id\n price {\n ...Price_price\n }\n sku {\n price {\n ...Price_price\n }\n product {\n __typename\n __isSkuProduct: __typename\n ...CollectionAa_product\n ...FontStyle_fontStyle\n ... on FontStyle {\n family {\n name\n cssUrl\n id\n }\n name\n }\n ... on Bundle {\n name\n }\n ... on FontCollection {\n name\n totalStyles\n featureStyle {\n family {\n cssUrl\n id\n }\n id\n }\n }\n ... on Node {\n __isNode: __typename\n id\n }\n }\n id\n }\n licenseSelections {\n id\n license {\n id\n name\n multiplier\n }\n variable: licenseVariable {\n id\n variableType\n ...VariableTableAmounts_variable\n }\n option: licenseOption {\n id\n amount\n multiplier\n name\n ...VariableTableAmounts_option\n }\n variableText\n }\n}\n\nfragment CartOrder_order on Order {\n ...Checkout_order\n ...Download_order\n ...CouponCodeInput_order\n ...CartTotals_order\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 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 clientSecret\n }\n canCompleteWithCoupon\n completedWithCoupon\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 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 phone\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n licenseeIdentity {\n name\n organization\n email\n phone\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n licenseeIsBillingIdentity\n}\n\nfragment CollectionAa_product on SkuProduct {\n __isSkuProduct: __typename\n __typename\n ... on FontCollection {\n featureStyle {\n ...FontStyle_fontStyle\n id\n }\n families: children(collectionTypes: [FAMILY]) {\n fontStyles {\n ...FontStyle_fontStyle\n id\n }\n id\n }\n }\n ... on Bundle {\n fontStyles {\n ...FontStyle_fontStyle\n id\n }\n }\n}\n\nfragment CouponCodeInput_order on Order {\n id\n}\n\nfragment CouponText_coupon on Coupon {\n type\n percentAmount\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 VariableTableAmounts_option on LicenseOption {\n amounts\n}\n\nfragment VariableTableAmounts_variable on LicenseVariable {\n units\n}\n"
|
|
1003
1010
|
}
|
|
1004
1011
|
};
|
|
1005
1012
|
}();
|
|
@@ -187,7 +187,8 @@ fragment CartTotals_order on Order {
|
|
|
187
187
|
taxes {
|
|
188
188
|
...Price_price
|
|
189
189
|
}
|
|
190
|
-
|
|
190
|
+
taxName
|
|
191
|
+
gstIncluded
|
|
191
192
|
}
|
|
192
193
|
|
|
193
194
|
fragment Checkout_order on Order {
|
|
@@ -788,7 +789,13 @@ const node = function () {
|
|
|
788
789
|
"alias": null,
|
|
789
790
|
"args": null,
|
|
790
791
|
"kind": "ScalarField",
|
|
791
|
-
"name": "
|
|
792
|
+
"name": "taxName",
|
|
793
|
+
"storageKey": null
|
|
794
|
+
}, {
|
|
795
|
+
"alias": null,
|
|
796
|
+
"args": null,
|
|
797
|
+
"kind": "ScalarField",
|
|
798
|
+
"name": "gstIncluded",
|
|
792
799
|
"storageKey": null
|
|
793
800
|
}, {
|
|
794
801
|
"alias": null,
|
|
@@ -1090,12 +1097,12 @@ const node = function () {
|
|
|
1090
1097
|
}]
|
|
1091
1098
|
},
|
|
1092
1099
|
"params": {
|
|
1093
|
-
"cacheID": "
|
|
1100
|
+
"cacheID": "12d4488ae7831b19ecd6b8c013630d7c",
|
|
1094
1101
|
"id": null,
|
|
1095
1102
|
"metadata": {},
|
|
1096
1103
|
"name": "CheckoutUpdateOrderMutation",
|
|
1097
1104
|
"operationKind": "mutation",
|
|
1098
|
-
"text": "mutation CheckoutUpdateOrderMutation(\n $input: UpdateOrderInput!\n) {\n updateOrder(input: $input) {\n order {\n ...CartOrder_order\n id\n }\n errors {\n stripePaymentMethodId\n billingIdentity {\n zip\n phone\n administrativeArea\n locality\n sublocality\n email\n vatNumber\n }\n licenseeIdentity {\n zip\n phone\n administrativeArea\n locality\n sublocality\n email\n vatNumber\n }\n }\n }\n}\n\nfragment CartItem_node on OrderItem {\n id\n price {\n ...Price_price\n }\n sku {\n price {\n ...Price_price\n }\n product {\n __typename\n __isSkuProduct: __typename\n ...CollectionAa_product\n ...FontStyle_fontStyle\n ... on FontStyle {\n family {\n name\n cssUrl\n id\n }\n name\n }\n ... on Bundle {\n name\n }\n ... on FontCollection {\n name\n totalStyles\n featureStyle {\n family {\n cssUrl\n id\n }\n id\n }\n }\n ... on Node {\n __isNode: __typename\n id\n }\n }\n id\n }\n licenseSelections {\n id\n license {\n id\n name\n multiplier\n }\n variable: licenseVariable {\n id\n variableType\n ...VariableTableAmounts_variable\n }\n option: licenseOption {\n id\n amount\n multiplier\n name\n ...VariableTableAmounts_option\n }\n variableText\n }\n}\n\nfragment CartOrder_order on Order {\n ...Checkout_order\n ...Download_order\n ...CouponCodeInput_order\n ...CartTotals_order\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 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 clientSecret\n }\n canCompleteWithCoupon\n completedWithCoupon\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 taxes {\n ...Price_price\n }\n
|
|
1105
|
+
"text": "mutation CheckoutUpdateOrderMutation(\n $input: UpdateOrderInput!\n) {\n updateOrder(input: $input) {\n order {\n ...CartOrder_order\n id\n }\n errors {\n stripePaymentMethodId\n billingIdentity {\n zip\n phone\n administrativeArea\n locality\n sublocality\n email\n vatNumber\n }\n licenseeIdentity {\n zip\n phone\n administrativeArea\n locality\n sublocality\n email\n vatNumber\n }\n }\n }\n}\n\nfragment CartItem_node on OrderItem {\n id\n price {\n ...Price_price\n }\n sku {\n price {\n ...Price_price\n }\n product {\n __typename\n __isSkuProduct: __typename\n ...CollectionAa_product\n ...FontStyle_fontStyle\n ... on FontStyle {\n family {\n name\n cssUrl\n id\n }\n name\n }\n ... on Bundle {\n name\n }\n ... on FontCollection {\n name\n totalStyles\n featureStyle {\n family {\n cssUrl\n id\n }\n id\n }\n }\n ... on Node {\n __isNode: __typename\n id\n }\n }\n id\n }\n licenseSelections {\n id\n license {\n id\n name\n multiplier\n }\n variable: licenseVariable {\n id\n variableType\n ...VariableTableAmounts_variable\n }\n option: licenseOption {\n id\n amount\n multiplier\n name\n ...VariableTableAmounts_option\n }\n variableText\n }\n}\n\nfragment CartOrder_order on Order {\n ...Checkout_order\n ...Download_order\n ...CouponCodeInput_order\n ...CartTotals_order\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 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 clientSecret\n }\n canCompleteWithCoupon\n completedWithCoupon\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 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 phone\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n licenseeIdentity {\n name\n organization\n email\n phone\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n licenseeIsBillingIdentity\n}\n\nfragment CollectionAa_product on SkuProduct {\n __isSkuProduct: __typename\n __typename\n ... on FontCollection {\n featureStyle {\n ...FontStyle_fontStyle\n id\n }\n families: children(collectionTypes: [FAMILY]) {\n fontStyles {\n ...FontStyle_fontStyle\n id\n }\n id\n }\n }\n ... on Bundle {\n fontStyles {\n ...FontStyle_fontStyle\n id\n }\n }\n}\n\nfragment CouponCodeInput_order on Order {\n id\n}\n\nfragment CouponText_coupon on Coupon {\n type\n percentAmount\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 VariableTableAmounts_option on LicenseOption {\n amounts\n}\n\nfragment VariableTableAmounts_variable on LicenseVariable {\n units\n}\n"
|
|
1099
1106
|
}
|
|
1100
1107
|
};
|
|
1101
1108
|
}();
|
|
@@ -176,7 +176,8 @@ fragment CartTotals_order on Order {
|
|
|
176
176
|
taxes {
|
|
177
177
|
...Price_price
|
|
178
178
|
}
|
|
179
|
-
|
|
179
|
+
taxName
|
|
180
|
+
gstIncluded
|
|
180
181
|
}
|
|
181
182
|
|
|
182
183
|
fragment Checkout_order on Order {
|
|
@@ -963,7 +964,13 @@ const node = function () {
|
|
|
963
964
|
"alias": null,
|
|
964
965
|
"args": null,
|
|
965
966
|
"kind": "ScalarField",
|
|
966
|
-
"name": "
|
|
967
|
+
"name": "taxName",
|
|
968
|
+
"storageKey": null
|
|
969
|
+
}, {
|
|
970
|
+
"alias": null,
|
|
971
|
+
"args": null,
|
|
972
|
+
"kind": "ScalarField",
|
|
973
|
+
"name": "gstIncluded",
|
|
967
974
|
"storageKey": null
|
|
968
975
|
}, {
|
|
969
976
|
"alias": null,
|
|
@@ -1023,12 +1030,12 @@ const node = function () {
|
|
|
1023
1030
|
}]
|
|
1024
1031
|
},
|
|
1025
1032
|
"params": {
|
|
1026
|
-
"cacheID": "
|
|
1033
|
+
"cacheID": "c17ed48f778004c8f8b17920f4a1653e",
|
|
1027
1034
|
"id": null,
|
|
1028
1035
|
"metadata": {},
|
|
1029
1036
|
"name": "PrecartAddToCartMutation",
|
|
1030
1037
|
"operationKind": "mutation",
|
|
1031
|
-
"text": "mutation PrecartAddToCartMutation(\n $input: CreateOrderItemsInput!\n) {\n createOrderItems(input: $input) {\n order {\n ...CartButton_order\n ...CartOrder_order\n id\n }\n }\n}\n\nfragment CartButton_order on Order {\n stripeCharge {\n paid\n }\n orderItems {\n id\n }\n}\n\nfragment CartItem_node on OrderItem {\n id\n price {\n ...Price_price\n }\n sku {\n price {\n ...Price_price\n }\n product {\n __typename\n __isSkuProduct: __typename\n ...CollectionAa_product\n ...FontStyle_fontStyle\n ... on FontStyle {\n family {\n name\n cssUrl\n id\n }\n name\n }\n ... on Bundle {\n name\n }\n ... on FontCollection {\n name\n totalStyles\n featureStyle {\n family {\n cssUrl\n id\n }\n id\n }\n }\n ... on Node {\n __isNode: __typename\n id\n }\n }\n id\n }\n licenseSelections {\n id\n license {\n id\n name\n multiplier\n }\n variable: licenseVariable {\n id\n variableType\n ...VariableTableAmounts_variable\n }\n option: licenseOption {\n id\n amount\n multiplier\n name\n ...VariableTableAmounts_option\n }\n variableText\n }\n}\n\nfragment CartOrder_order on Order {\n ...Checkout_order\n ...Download_order\n ...CouponCodeInput_order\n ...CartTotals_order\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 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 clientSecret\n }\n canCompleteWithCoupon\n completedWithCoupon\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 taxes {\n ...Price_price\n }\n
|
|
1038
|
+
"text": "mutation PrecartAddToCartMutation(\n $input: CreateOrderItemsInput!\n) {\n createOrderItems(input: $input) {\n order {\n ...CartButton_order\n ...CartOrder_order\n id\n }\n }\n}\n\nfragment CartButton_order on Order {\n stripeCharge {\n paid\n }\n orderItems {\n id\n }\n}\n\nfragment CartItem_node on OrderItem {\n id\n price {\n ...Price_price\n }\n sku {\n price {\n ...Price_price\n }\n product {\n __typename\n __isSkuProduct: __typename\n ...CollectionAa_product\n ...FontStyle_fontStyle\n ... on FontStyle {\n family {\n name\n cssUrl\n id\n }\n name\n }\n ... on Bundle {\n name\n }\n ... on FontCollection {\n name\n totalStyles\n featureStyle {\n family {\n cssUrl\n id\n }\n id\n }\n }\n ... on Node {\n __isNode: __typename\n id\n }\n }\n id\n }\n licenseSelections {\n id\n license {\n id\n name\n multiplier\n }\n variable: licenseVariable {\n id\n variableType\n ...VariableTableAmounts_variable\n }\n option: licenseOption {\n id\n amount\n multiplier\n name\n ...VariableTableAmounts_option\n }\n variableText\n }\n}\n\nfragment CartOrder_order on Order {\n ...Checkout_order\n ...Download_order\n ...CouponCodeInput_order\n ...CartTotals_order\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 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 clientSecret\n }\n canCompleteWithCoupon\n completedWithCoupon\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 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 phone\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n licenseeIdentity {\n name\n organization\n email\n phone\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n licenseeIsBillingIdentity\n}\n\nfragment CollectionAa_product on SkuProduct {\n __isSkuProduct: __typename\n __typename\n ... on FontCollection {\n featureStyle {\n ...FontStyle_fontStyle\n id\n }\n families: children(collectionTypes: [FAMILY]) {\n fontStyles {\n ...FontStyle_fontStyle\n id\n }\n id\n }\n }\n ... on Bundle {\n fontStyles {\n ...FontStyle_fontStyle\n id\n }\n }\n}\n\nfragment CouponCodeInput_order on Order {\n id\n}\n\nfragment CouponText_coupon on Coupon {\n type\n percentAmount\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 VariableTableAmounts_option on LicenseOption {\n amounts\n}\n\nfragment VariableTableAmounts_variable on LicenseVariable {\n units\n}\n"
|
|
1032
1039
|
}
|
|
1033
1040
|
};
|
|
1034
1041
|
}();
|
|
@@ -169,7 +169,8 @@ fragment CartTotals_order on Order {
|
|
|
169
169
|
taxes {
|
|
170
170
|
...Price_price
|
|
171
171
|
}
|
|
172
|
-
|
|
172
|
+
taxName
|
|
173
|
+
gstIncluded
|
|
173
174
|
}
|
|
174
175
|
|
|
175
176
|
fragment CollectionAa_product on SkuProduct {
|
|
@@ -842,7 +843,13 @@ const node = function () {
|
|
|
842
843
|
"alias": null,
|
|
843
844
|
"args": null,
|
|
844
845
|
"kind": "ScalarField",
|
|
845
|
-
"name": "
|
|
846
|
+
"name": "taxName",
|
|
847
|
+
"storageKey": null
|
|
848
|
+
}, {
|
|
849
|
+
"alias": null,
|
|
850
|
+
"args": null,
|
|
851
|
+
"kind": "ScalarField",
|
|
852
|
+
"name": "gstIncluded",
|
|
846
853
|
"storageKey": null
|
|
847
854
|
}, v4
|
|
848
855
|
/*: any*/
|
|
@@ -855,12 +862,12 @@ const node = function () {
|
|
|
855
862
|
}]
|
|
856
863
|
},
|
|
857
864
|
"params": {
|
|
858
|
-
"cacheID": "
|
|
865
|
+
"cacheID": "239e19f4dd9982fcaebbc983087fe0d8",
|
|
859
866
|
"id": null,
|
|
860
867
|
"metadata": {},
|
|
861
868
|
"name": "StoreModalCartQuery",
|
|
862
869
|
"operationKind": "query",
|
|
863
|
-
"text": "query StoreModalCartQuery {\n viewer {\n ...CartItem_viewer\n currentOrder {\n ...CartState_order\n ...CouponCodeInput_order\n ...CartTotals_order\n orderItems {\n id\n ...CartItem_node\n licenseSelections {\n licenseVariable {\n variableType\n id\n }\n variableText\n id\n }\n }\n discount {\n id\n }\n stripePaymentMethod {\n id\n }\n id\n }\n id\n }\n}\n\nfragment CartItem_node on OrderItem {\n id\n price {\n ...Price_price\n }\n sku {\n price {\n ...Price_price\n }\n product {\n __typename\n __isSkuProduct: __typename\n ...CollectionAa_product\n ...FontStyle_fontStyle\n ... on FontStyle {\n family {\n name\n cssUrl\n id\n }\n name\n }\n ... on Bundle {\n name\n }\n ... on FontCollection {\n name\n totalStyles\n featureStyle {\n family {\n cssUrl\n id\n }\n id\n }\n }\n ... on Node {\n __isNode: __typename\n id\n }\n }\n id\n }\n licenseSelections {\n id\n license {\n id\n name\n multiplier\n }\n variable: licenseVariable {\n id\n variableType\n ...VariableTableAmounts_variable\n }\n option: licenseOption {\n id\n amount\n multiplier\n name\n ...VariableTableAmounts_option\n }\n variableText\n }\n}\n\nfragment CartItem_viewer on Viewer {\n licenses(licenseTypes: [RETAIL]) {\n id\n name\n variables: licenseVariables {\n id\n name\n variableType\n options: licenseOptions {\n id\n amount\n name\n }\n }\n }\n}\n\nfragment CartState_order on Order {\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}\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 taxes {\n ...Price_price\n }\n
|
|
870
|
+
"text": "query StoreModalCartQuery {\n viewer {\n ...CartItem_viewer\n currentOrder {\n ...CartState_order\n ...CouponCodeInput_order\n ...CartTotals_order\n orderItems {\n id\n ...CartItem_node\n licenseSelections {\n licenseVariable {\n variableType\n id\n }\n variableText\n id\n }\n }\n discount {\n id\n }\n stripePaymentMethod {\n id\n }\n id\n }\n id\n }\n}\n\nfragment CartItem_node on OrderItem {\n id\n price {\n ...Price_price\n }\n sku {\n price {\n ...Price_price\n }\n product {\n __typename\n __isSkuProduct: __typename\n ...CollectionAa_product\n ...FontStyle_fontStyle\n ... on FontStyle {\n family {\n name\n cssUrl\n id\n }\n name\n }\n ... on Bundle {\n name\n }\n ... on FontCollection {\n name\n totalStyles\n featureStyle {\n family {\n cssUrl\n id\n }\n id\n }\n }\n ... on Node {\n __isNode: __typename\n id\n }\n }\n id\n }\n licenseSelections {\n id\n license {\n id\n name\n multiplier\n }\n variable: licenseVariable {\n id\n variableType\n ...VariableTableAmounts_variable\n }\n option: licenseOption {\n id\n amount\n multiplier\n name\n ...VariableTableAmounts_option\n }\n variableText\n }\n}\n\nfragment CartItem_viewer on Viewer {\n licenses(licenseTypes: [RETAIL]) {\n id\n name\n variables: licenseVariables {\n id\n name\n variableType\n options: licenseOptions {\n id\n amount\n name\n }\n }\n }\n}\n\nfragment CartState_order on Order {\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}\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 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 families: children(collectionTypes: [FAMILY]) {\n fontStyles {\n ...FontStyle_fontStyle\n id\n }\n id\n }\n }\n ... on Bundle {\n fontStyles {\n ...FontStyle_fontStyle\n id\n }\n }\n}\n\nfragment CouponCodeInput_order on Order {\n id\n}\n\nfragment CouponText_coupon on Coupon {\n type\n percentAmount\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 VariableTableAmounts_option on LicenseOption {\n amounts\n}\n\nfragment VariableTableAmounts_variable on LicenseVariable {\n units\n}\n"
|
|
864
871
|
}
|
|
865
872
|
};
|
|
866
873
|
}();
|
|
@@ -49,7 +49,8 @@ fragment CartTotals_order on Order {
|
|
|
49
49
|
taxes {
|
|
50
50
|
...Price_price
|
|
51
51
|
}
|
|
52
|
-
|
|
52
|
+
taxName
|
|
53
|
+
gstIncluded
|
|
53
54
|
}
|
|
54
55
|
|
|
55
56
|
fragment CouponText_coupon on Coupon {
|
|
@@ -354,7 +355,13 @@ const node = function () {
|
|
|
354
355
|
"alias": null,
|
|
355
356
|
"args": null,
|
|
356
357
|
"kind": "ScalarField",
|
|
357
|
-
"name": "
|
|
358
|
+
"name": "taxName",
|
|
359
|
+
"storageKey": null
|
|
360
|
+
}, {
|
|
361
|
+
"alias": null,
|
|
362
|
+
"args": null,
|
|
363
|
+
"kind": "ScalarField",
|
|
364
|
+
"name": "gstIncluded",
|
|
358
365
|
"storageKey": null
|
|
359
366
|
}, v3
|
|
360
367
|
/*: any*/
|
|
@@ -522,12 +529,12 @@ const node = function () {
|
|
|
522
529
|
}]
|
|
523
530
|
},
|
|
524
531
|
"params": {
|
|
525
|
-
"cacheID": "
|
|
532
|
+
"cacheID": "e9fc909c44347bded64b24dcf4cf6f95",
|
|
526
533
|
"id": null,
|
|
527
534
|
"metadata": {},
|
|
528
535
|
"name": "StoreModalReviewCompleteOrderMutation",
|
|
529
536
|
"operationKind": "mutation",
|
|
530
|
-
"text": "mutation StoreModalReviewCompleteOrderMutation {\n completeOrder {\n order {\n ...StoreModalReview_order\n stripePaymentIntent {\n clientSecret\n }\n id\n }\n requiresAction\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 taxes {\n ...Price_price\n }\n
|
|
537
|
+
"text": "mutation StoreModalReviewCompleteOrderMutation {\n completeOrder {\n order {\n ...StoreModalReview_order\n stripePaymentIntent {\n clientSecret\n }\n id\n }\n requiresAction\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 taxes {\n ...Price_price\n }\n taxName\n gstIncluded\n}\n\nfragment CouponText_coupon on Coupon {\n type\n percentAmount\n creditAmountRemaining {\n amount\n currency\n }\n}\n\nfragment Price_price on Money {\n amount\n currency\n}\n\nfragment SKUPrice_sku on Sku {\n id\n price(licenseOptions: []) {\n amount\n ...Price_price\n }\n}\n\nfragment StoreModalDownload_order on Order {\n id\n archiveUrl\n}\n\nfragment StoreModalReviewIdentity_identity on Identity {\n email\n phoneFormatted\n addressFormatted\n vatNumber\n}\n\nfragment StoreModalReview_order on Order {\n ...CartTotals_order\n ...StoreModalDownload_order\n customer {\n email\n name\n id\n }\n billingIdentity {\n ...StoreModalReviewIdentity_identity\n }\n licenseeIdentity {\n ...StoreModalReviewIdentity_identity\n }\n licenseeIsBillingIdentity\n stripePaymentMethod {\n card {\n last4\n brandFormatted\n }\n }\n orderItems {\n id\n description\n sku {\n ...SKUPrice_sku\n id\n }\n }\n canCompleteWithCoupon\n completedWithCoupon\n stripePaymentIntent {\n status\n clientSecret\n }\n}\n"
|
|
531
538
|
}
|
|
532
539
|
};
|
|
533
540
|
}();
|
|
@@ -47,7 +47,8 @@ fragment CartTotals_order on Order {
|
|
|
47
47
|
taxes {
|
|
48
48
|
...Price_price
|
|
49
49
|
}
|
|
50
|
-
|
|
50
|
+
taxName
|
|
51
|
+
gstIncluded
|
|
51
52
|
}
|
|
52
53
|
|
|
53
54
|
fragment CouponText_coupon on Coupon {
|
|
@@ -350,7 +351,13 @@ const node = function () {
|
|
|
350
351
|
"alias": null,
|
|
351
352
|
"args": null,
|
|
352
353
|
"kind": "ScalarField",
|
|
353
|
-
"name": "
|
|
354
|
+
"name": "taxName",
|
|
355
|
+
"storageKey": null
|
|
356
|
+
}, {
|
|
357
|
+
"alias": null,
|
|
358
|
+
"args": null,
|
|
359
|
+
"kind": "ScalarField",
|
|
360
|
+
"name": "gstIncluded",
|
|
354
361
|
"storageKey": null
|
|
355
362
|
}, v1
|
|
356
363
|
/*: any*/
|
|
@@ -522,12 +529,12 @@ const node = function () {
|
|
|
522
529
|
}]
|
|
523
530
|
},
|
|
524
531
|
"params": {
|
|
525
|
-
"cacheID": "
|
|
532
|
+
"cacheID": "9f05c680e713e3398840fa42ddd597ce",
|
|
526
533
|
"id": null,
|
|
527
534
|
"metadata": {},
|
|
528
535
|
"name": "StoreModalReviewQuery",
|
|
529
536
|
"operationKind": "query",
|
|
530
|
-
"text": "query StoreModalReviewQuery {\n viewer {\n ...StoreModalReview_viewer\n currentOrder {\n ...StoreModalReview_order\n id\n }\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 taxes {\n ...Price_price\n }\n
|
|
537
|
+
"text": "query StoreModalReviewQuery {\n viewer {\n ...StoreModalReview_viewer\n currentOrder {\n ...StoreModalReview_order\n id\n }\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 taxes {\n ...Price_price\n }\n taxName\n gstIncluded\n}\n\nfragment CouponText_coupon on Coupon {\n type\n percentAmount\n creditAmountRemaining {\n amount\n currency\n }\n}\n\nfragment Price_price on Money {\n amount\n currency\n}\n\nfragment SKUPrice_sku on Sku {\n id\n price(licenseOptions: []) {\n amount\n ...Price_price\n }\n}\n\nfragment StoreModalDownload_order on Order {\n id\n archiveUrl\n}\n\nfragment StoreModalReviewIdentity_identity on Identity {\n email\n phoneFormatted\n addressFormatted\n vatNumber\n}\n\nfragment StoreModalReview_order on Order {\n ...CartTotals_order\n ...StoreModalDownload_order\n customer {\n email\n name\n id\n }\n billingIdentity {\n ...StoreModalReviewIdentity_identity\n }\n licenseeIdentity {\n ...StoreModalReviewIdentity_identity\n }\n licenseeIsBillingIdentity\n stripePaymentMethod {\n card {\n last4\n brandFormatted\n }\n }\n orderItems {\n id\n description\n sku {\n ...SKUPrice_sku\n id\n }\n }\n canCompleteWithCoupon\n completedWithCoupon\n stripePaymentIntent {\n status\n clientSecret\n }\n}\n\nfragment StoreModalReview_viewer on Viewer {\n settings {\n eulaAgreementLabel\n }\n}\n"
|
|
531
538
|
}
|
|
532
539
|
};
|
|
533
540
|
}();
|
|
@@ -166,7 +166,8 @@ fragment CartTotals_order on Order {
|
|
|
166
166
|
taxes {
|
|
167
167
|
...Price_price
|
|
168
168
|
}
|
|
169
|
-
|
|
169
|
+
taxName
|
|
170
|
+
gstIncluded
|
|
170
171
|
}
|
|
171
172
|
|
|
172
173
|
fragment Checkout_order on Order {
|
|
@@ -694,7 +695,13 @@ const node = function () {
|
|
|
694
695
|
"alias": null,
|
|
695
696
|
"args": null,
|
|
696
697
|
"kind": "ScalarField",
|
|
697
|
-
"name": "
|
|
698
|
+
"name": "taxName",
|
|
699
|
+
"storageKey": null
|
|
700
|
+
}, {
|
|
701
|
+
"alias": null,
|
|
702
|
+
"args": null,
|
|
703
|
+
"kind": "ScalarField",
|
|
704
|
+
"name": "gstIncluded",
|
|
698
705
|
"storageKey": null
|
|
699
706
|
}, {
|
|
700
707
|
"alias": null,
|
|
@@ -994,12 +1001,12 @@ const node = function () {
|
|
|
994
1001
|
}]
|
|
995
1002
|
},
|
|
996
1003
|
"params": {
|
|
997
|
-
"cacheID": "
|
|
1004
|
+
"cacheID": "d70308cc3fb8709332ea03bdb28fd761",
|
|
998
1005
|
"id": null,
|
|
999
1006
|
"metadata": {},
|
|
1000
1007
|
"name": "TestFontsFormUpdateCustomerMutation",
|
|
1001
1008
|
"operationKind": "mutation",
|
|
1002
|
-
"text": "mutation TestFontsFormUpdateCustomerMutation(\n $input: UpdateCustomerInput!\n) {\n updateCustomer(input: $input) {\n order {\n ...CartOrder_order\n id\n }\n }\n}\n\nfragment CartItem_node on OrderItem {\n id\n price {\n ...Price_price\n }\n sku {\n price {\n ...Price_price\n }\n product {\n __typename\n __isSkuProduct: __typename\n ...CollectionAa_product\n ...FontStyle_fontStyle\n ... on FontStyle {\n family {\n name\n cssUrl\n id\n }\n name\n }\n ... on Bundle {\n name\n }\n ... on FontCollection {\n name\n totalStyles\n featureStyle {\n family {\n cssUrl\n id\n }\n id\n }\n }\n ... on Node {\n __isNode: __typename\n id\n }\n }\n id\n }\n licenseSelections {\n id\n license {\n id\n name\n multiplier\n }\n variable: licenseVariable {\n id\n variableType\n ...VariableTableAmounts_variable\n }\n option: licenseOption {\n id\n amount\n multiplier\n name\n ...VariableTableAmounts_option\n }\n variableText\n }\n}\n\nfragment CartOrder_order on Order {\n ...Checkout_order\n ...Download_order\n ...CouponCodeInput_order\n ...CartTotals_order\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 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 clientSecret\n }\n canCompleteWithCoupon\n completedWithCoupon\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 taxes {\n ...Price_price\n }\n
|
|
1009
|
+
"text": "mutation TestFontsFormUpdateCustomerMutation(\n $input: UpdateCustomerInput!\n) {\n updateCustomer(input: $input) {\n order {\n ...CartOrder_order\n id\n }\n }\n}\n\nfragment CartItem_node on OrderItem {\n id\n price {\n ...Price_price\n }\n sku {\n price {\n ...Price_price\n }\n product {\n __typename\n __isSkuProduct: __typename\n ...CollectionAa_product\n ...FontStyle_fontStyle\n ... on FontStyle {\n family {\n name\n cssUrl\n id\n }\n name\n }\n ... on Bundle {\n name\n }\n ... on FontCollection {\n name\n totalStyles\n featureStyle {\n family {\n cssUrl\n id\n }\n id\n }\n }\n ... on Node {\n __isNode: __typename\n id\n }\n }\n id\n }\n licenseSelections {\n id\n license {\n id\n name\n multiplier\n }\n variable: licenseVariable {\n id\n variableType\n ...VariableTableAmounts_variable\n }\n option: licenseOption {\n id\n amount\n multiplier\n name\n ...VariableTableAmounts_option\n }\n variableText\n }\n}\n\nfragment CartOrder_order on Order {\n ...Checkout_order\n ...Download_order\n ...CouponCodeInput_order\n ...CartTotals_order\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 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 clientSecret\n }\n canCompleteWithCoupon\n completedWithCoupon\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 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 phone\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n licenseeIdentity {\n name\n organization\n email\n phone\n street\n locality\n sublocality\n country\n administrativeArea\n zip\n vatNumber\n }\n licenseeIsBillingIdentity\n}\n\nfragment CollectionAa_product on SkuProduct {\n __isSkuProduct: __typename\n __typename\n ... on FontCollection {\n featureStyle {\n ...FontStyle_fontStyle\n id\n }\n families: children(collectionTypes: [FAMILY]) {\n fontStyles {\n ...FontStyle_fontStyle\n id\n }\n id\n }\n }\n ... on Bundle {\n fontStyles {\n ...FontStyle_fontStyle\n id\n }\n }\n}\n\nfragment CouponCodeInput_order on Order {\n id\n}\n\nfragment CouponText_coupon on Coupon {\n type\n percentAmount\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 VariableTableAmounts_option on LicenseOption {\n amounts\n}\n\nfragment VariableTableAmounts_variable on LicenseVariable {\n units\n}\n"
|
|
1003
1010
|
}
|
|
1004
1011
|
};
|
|
1005
1012
|
}();
|
|
@@ -28,8 +28,8 @@ fragment TestFontsForm_viewer on Viewer {
|
|
|
28
28
|
id
|
|
29
29
|
}
|
|
30
30
|
settings {
|
|
31
|
-
eulaAgreementLabel
|
|
32
|
-
newsletterOptInLabel
|
|
31
|
+
eulaAgreementLabel(format: HTML)
|
|
32
|
+
newsletterOptInLabel(format: HTML)
|
|
33
33
|
}
|
|
34
34
|
testFonts {
|
|
35
35
|
archiveUrl
|
|
@@ -43,7 +43,12 @@ const node = function () {
|
|
|
43
43
|
"kind": "ScalarField",
|
|
44
44
|
"name": "id",
|
|
45
45
|
"storageKey": null
|
|
46
|
-
}
|
|
46
|
+
},
|
|
47
|
+
v1 = [{
|
|
48
|
+
"kind": "Literal",
|
|
49
|
+
"name": "format",
|
|
50
|
+
"value": "HTML"
|
|
51
|
+
}];
|
|
47
52
|
return {
|
|
48
53
|
"fragment": {
|
|
49
54
|
"argumentDefinitions": [],
|
|
@@ -122,16 +127,20 @@ const node = function () {
|
|
|
122
127
|
"plural": false,
|
|
123
128
|
"selections": [{
|
|
124
129
|
"alias": null,
|
|
125
|
-
"args":
|
|
130
|
+
"args": v1
|
|
131
|
+
/*: any*/
|
|
132
|
+
,
|
|
126
133
|
"kind": "ScalarField",
|
|
127
134
|
"name": "eulaAgreementLabel",
|
|
128
|
-
"storageKey":
|
|
135
|
+
"storageKey": "eulaAgreementLabel(format:\"HTML\")"
|
|
129
136
|
}, {
|
|
130
137
|
"alias": null,
|
|
131
|
-
"args":
|
|
138
|
+
"args": v1
|
|
139
|
+
/*: any*/
|
|
140
|
+
,
|
|
132
141
|
"kind": "ScalarField",
|
|
133
142
|
"name": "newsletterOptInLabel",
|
|
134
|
-
"storageKey":
|
|
143
|
+
"storageKey": "newsletterOptInLabel(format:\"HTML\")"
|
|
135
144
|
}],
|
|
136
145
|
"storageKey": null
|
|
137
146
|
}, {
|
|
@@ -156,12 +165,12 @@ const node = function () {
|
|
|
156
165
|
}]
|
|
157
166
|
},
|
|
158
167
|
"params": {
|
|
159
|
-
"cacheID": "
|
|
168
|
+
"cacheID": "598b43f60c1a9c3b5284c2b0532eec1d",
|
|
160
169
|
"id": null,
|
|
161
170
|
"metadata": {},
|
|
162
171
|
"name": "TestFontsForm_Query",
|
|
163
172
|
"operationKind": "query",
|
|
164
|
-
"text": "query TestFontsForm_Query {\n viewer {\n ...TestFontsForm_viewer\n id\n }\n}\n\nfragment TestFontsForm_viewer on Viewer {\n currentOrder {\n customer {\n name\n email\n id\n }\n id\n }\n settings {\n eulaAgreementLabel\n newsletterOptInLabel\n }\n testFonts {\n archiveUrl\n }\n}\n"
|
|
173
|
+
"text": "query TestFontsForm_Query {\n viewer {\n ...TestFontsForm_viewer\n id\n }\n}\n\nfragment TestFontsForm_viewer on Viewer {\n currentOrder {\n customer {\n name\n email\n id\n }\n id\n }\n settings {\n eulaAgreementLabel(format: HTML)\n newsletterOptInLabel(format: HTML)\n }\n testFonts {\n archiveUrl\n }\n}\n"
|
|
165
174
|
}
|
|
166
175
|
};
|
|
167
176
|
}();
|