@burdenoff/microfe-billing 2026.708.1 → 2026.716.1
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/dist/billing/modules/checkout/components/StoreShippingSection.js +444 -0
- package/dist/billing/modules/checkout/components/StoreShippingSection.js.map +1 -0
- package/dist/billing/modules/checkout/components/index.js +1 -0
- package/dist/billing/modules/checkout/hooks/useStoreShipping.js +113 -0
- package/dist/billing/modules/checkout/hooks/useStoreShipping.js.map +1 -0
- package/dist/billing/modules/checkout/index.js +1 -0
- package/dist/billing/modules/checkout/pages/CheckoutPage.js +542 -475
- package/dist/billing/modules/checkout/pages/CheckoutPage.js.map +1 -1
- package/dist/generated/global-operations.js +77 -1
- package/dist/generated/global-operations.js.map +1 -1
- package/dist/generated/global-types.js.map +1 -1
- package/package.json +1 -1
|
@@ -1400,7 +1400,7 @@ function Ue(t) {
|
|
|
1400
1400
|
}
|
|
1401
1401
|
var We = t`
|
|
1402
1402
|
query GetBillingAccountsCheckout {
|
|
1403
|
-
|
|
1403
|
+
myBillingAccounts {
|
|
1404
1404
|
id
|
|
1405
1405
|
name
|
|
1406
1406
|
email
|
|
@@ -3753,6 +3753,47 @@ function Ur(t) {
|
|
|
3753
3753
|
return e.useQuery(Hr, r);
|
|
3754
3754
|
}
|
|
3755
3755
|
t`
|
|
3756
|
+
mutation CreateShippingAddress($input: CreateShippingAddressInput!) {
|
|
3757
|
+
createShippingAddress(input: $input) {
|
|
3758
|
+
id
|
|
3759
|
+
fullName
|
|
3760
|
+
phone
|
|
3761
|
+
email
|
|
3762
|
+
addressLine1
|
|
3763
|
+
addressLine2
|
|
3764
|
+
city
|
|
3765
|
+
state
|
|
3766
|
+
postalCode
|
|
3767
|
+
country
|
|
3768
|
+
isDefault
|
|
3769
|
+
label
|
|
3770
|
+
instructions
|
|
3771
|
+
}
|
|
3772
|
+
}
|
|
3773
|
+
`, t`
|
|
3774
|
+
mutation SetStoreOrderShipping($input: SetStoreOrderShippingInput!) {
|
|
3775
|
+
setStoreOrderShipping(input: $input) {
|
|
3776
|
+
id
|
|
3777
|
+
total
|
|
3778
|
+
shippingCost
|
|
3779
|
+
shippingCurrency
|
|
3780
|
+
}
|
|
3781
|
+
}
|
|
3782
|
+
`, t`
|
|
3783
|
+
query EstimateOrderShipping($input: OrderShippingEstimateInput!) {
|
|
3784
|
+
estimateOrderShipping(input: $input) {
|
|
3785
|
+
orderId
|
|
3786
|
+
shippingMethodId
|
|
3787
|
+
cost
|
|
3788
|
+
currency
|
|
3789
|
+
methodName
|
|
3790
|
+
carrier
|
|
3791
|
+
estimatedMinDays
|
|
3792
|
+
estimatedMaxDays
|
|
3793
|
+
estimatedDeliveryDate
|
|
3794
|
+
}
|
|
3795
|
+
}
|
|
3796
|
+
`, t`
|
|
3756
3797
|
query GetMyOrders {
|
|
3757
3798
|
myOrders {
|
|
3758
3799
|
id
|
|
@@ -3783,6 +3824,41 @@ t`
|
|
|
3783
3824
|
createdAt
|
|
3784
3825
|
updatedAt
|
|
3785
3826
|
}
|
|
3827
|
+
}
|
|
3828
|
+
`, t`
|
|
3829
|
+
query MyShippingAddresses {
|
|
3830
|
+
myShippingAddresses {
|
|
3831
|
+
id
|
|
3832
|
+
fullName
|
|
3833
|
+
phone
|
|
3834
|
+
email
|
|
3835
|
+
addressLine1
|
|
3836
|
+
addressLine2
|
|
3837
|
+
city
|
|
3838
|
+
state
|
|
3839
|
+
postalCode
|
|
3840
|
+
country
|
|
3841
|
+
isDefault
|
|
3842
|
+
label
|
|
3843
|
+
instructions
|
|
3844
|
+
}
|
|
3845
|
+
}
|
|
3846
|
+
`, t`
|
|
3847
|
+
query ShippingMethods {
|
|
3848
|
+
shippingMethods {
|
|
3849
|
+
id
|
|
3850
|
+
name
|
|
3851
|
+
code
|
|
3852
|
+
carrier
|
|
3853
|
+
baseCost
|
|
3854
|
+
currency
|
|
3855
|
+
estimatedMinDays
|
|
3856
|
+
estimatedMaxDays
|
|
3857
|
+
availableCountries
|
|
3858
|
+
excludedCountries
|
|
3859
|
+
isActive
|
|
3860
|
+
displayOrder
|
|
3861
|
+
}
|
|
3786
3862
|
}
|
|
3787
3863
|
`;
|
|
3788
3864
|
//#endregion
|