ce-storefront 0.4.8 → 0.4.9
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/docs/sdks/carts/README.md +28 -20
- package/docs/sdks/checkout/README.md +54 -14
- package/docs/sdks/customers/README.md +24 -0
- package/esm/funcs/cartsUpdateCart.js +1 -1
- package/esm/funcs/cartsUpdateCart.js.map +1 -1
- package/esm/funcs/checkoutCreateCheckoutAddress.d.ts +1 -1
- package/esm/funcs/checkoutCreateCheckoutAddress.js +1 -1
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/lib/retries.js +0 -1
- package/esm/lib/retries.js.map +1 -1
- package/esm/models/components/cart.d.ts +64 -86
- package/esm/models/components/cart.d.ts.map +1 -1
- package/esm/models/components/cart.js +68 -95
- package/esm/models/components/cart.js.map +1 -1
- package/esm/models/components/cartitem.d.ts +111 -61
- package/esm/models/components/cartitem.d.ts.map +1 -1
- package/esm/models/components/cartitem.js +111 -59
- package/esm/models/components/cartitem.js.map +1 -1
- package/esm/models/components/customeraddress.d.ts +20 -20
- package/esm/models/components/customeraddress.d.ts.map +1 -1
- package/esm/models/components/customeraddress.js +20 -18
- package/esm/models/components/customeraddress.js.map +1 -1
- package/esm/models/components/customeraddressinput.d.ts +14 -14
- package/esm/models/components/customeraddressinput.d.ts.map +1 -1
- package/esm/models/components/customeraddressinput.js +14 -12
- package/esm/models/components/customeraddressinput.js.map +1 -1
- package/esm/models/components/productpricing.js +1 -1
- package/esm/models/components/productpricing.js.map +1 -1
- package/esm/models/operations/applycoupon.d.ts +8 -8
- package/esm/models/operations/applycoupon.d.ts.map +1 -1
- package/esm/models/operations/applycoupon.js +8 -8
- package/esm/models/operations/applycoupon.js.map +1 -1
- package/esm/models/operations/createaddress.d.ts +14 -14
- package/esm/models/operations/createaddress.d.ts.map +1 -1
- package/esm/models/operations/createaddress.js +14 -12
- package/esm/models/operations/createaddress.js.map +1 -1
- package/esm/models/operations/createcart.d.ts +2 -5
- package/esm/models/operations/createcart.d.ts.map +1 -1
- package/esm/models/operations/createcart.js +2 -2
- package/esm/models/operations/createcart.js.map +1 -1
- package/esm/models/operations/getaddressdetail.d.ts +20 -20
- package/esm/models/operations/getaddressdetail.d.ts.map +1 -1
- package/esm/models/operations/getaddressdetail.js +20 -18
- package/esm/models/operations/getaddressdetail.js.map +1 -1
- package/esm/models/operations/listaddresses.d.ts +20 -20
- package/esm/models/operations/listaddresses.d.ts.map +1 -1
- package/esm/models/operations/listaddresses.js +20 -18
- package/esm/models/operations/listaddresses.js.map +1 -1
- package/esm/models/operations/removecoupon.d.ts +8 -8
- package/esm/models/operations/removecoupon.d.ts.map +1 -1
- package/esm/models/operations/removecoupon.js +8 -8
- package/esm/models/operations/removecoupon.js.map +1 -1
- package/esm/models/operations/updateaddressdetail.d.ts +14 -14
- package/esm/models/operations/updateaddressdetail.d.ts.map +1 -1
- package/esm/models/operations/updateaddressdetail.js +14 -12
- package/esm/models/operations/updateaddressdetail.js.map +1 -1
- package/esm/models/operations/updatecart.d.ts +2 -2
- package/esm/models/operations/updatecart.d.ts.map +1 -1
- package/esm/models/operations/updatecart.js +4 -4
- package/esm/models/operations/updatecart.js.map +1 -1
- package/esm/sdk/checkout.d.ts +1 -1
- package/esm/sdk/checkout.js +1 -1
- package/jsr.json +1 -1
- package/package.json +6 -7
- package/src/funcs/cartsUpdateCart.ts +1 -1
- package/src/funcs/checkoutCreateCheckoutAddress.ts +1 -1
- package/src/lib/config.ts +3 -3
- package/src/lib/retries.ts +0 -1
- package/src/models/components/cart.ts +128 -185
- package/src/models/components/cartitem.ts +206 -120
- package/src/models/components/customeraddress.ts +40 -38
- package/src/models/components/customeraddressinput.ts +28 -26
- package/src/models/components/productpricing.ts +1 -1
- package/src/models/operations/applycoupon.ts +16 -16
- package/src/models/operations/createaddress.ts +28 -26
- package/src/models/operations/createcart.ts +4 -7
- package/src/models/operations/getaddressdetail.ts +40 -38
- package/src/models/operations/listaddresses.ts +40 -38
- package/src/models/operations/removecoupon.ts +16 -16
- package/src/models/operations/updateaddressdetail.ts +28 -26
- package/src/models/operations/updatecart.ts +6 -6
- package/src/sdk/checkout.ts +1 -1
|
@@ -8,82 +8,58 @@ import { CartItem$inboundSchema, CartItem$outboundSchema, } from "./cartitem.js"
|
|
|
8
8
|
import { Currency$inboundSchema, Currency$outboundSchema, } from "./currency.js";
|
|
9
9
|
import { CustomerAddress$inboundSchema, CustomerAddress$outboundSchema, } from "./customeraddress.js";
|
|
10
10
|
/** @internal */
|
|
11
|
-
export const Metadata$inboundSchema = z.object({});
|
|
12
|
-
/** @internal */
|
|
13
|
-
export const Metadata$outboundSchema = z.object({});
|
|
14
|
-
/**
|
|
15
|
-
* @internal
|
|
16
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
17
|
-
*/
|
|
18
|
-
export var Metadata$;
|
|
19
|
-
(function (Metadata$) {
|
|
20
|
-
/** @deprecated use `Metadata$inboundSchema` instead. */
|
|
21
|
-
Metadata$.inboundSchema = Metadata$inboundSchema;
|
|
22
|
-
/** @deprecated use `Metadata$outboundSchema` instead. */
|
|
23
|
-
Metadata$.outboundSchema = Metadata$outboundSchema;
|
|
24
|
-
})(Metadata$ || (Metadata$ = {}));
|
|
25
|
-
export function metadataToJSON(metadata) {
|
|
26
|
-
return JSON.stringify(Metadata$outboundSchema.parse(metadata));
|
|
27
|
-
}
|
|
28
|
-
export function metadataFromJSON(jsonString) {
|
|
29
|
-
return safeParse(jsonString, (x) => Metadata$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Metadata' from JSON`);
|
|
30
|
-
}
|
|
31
|
-
/** @internal */
|
|
32
11
|
export const Cart$inboundSchema = z
|
|
33
12
|
.object({
|
|
34
|
-
id: z.string()
|
|
35
|
-
active: z.boolean()
|
|
36
|
-
customer_email: z.nullable(z.string())
|
|
37
|
-
customer_phone: z.nullable(z.string())
|
|
38
|
-
customer_note: z.nullable(z.string())
|
|
39
|
-
is_promotion_applied: z.boolean()
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
coupon_discount_amount: z.number()
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
.optional(),
|
|
64
|
-
expires_at: z.string().datetime({ offset: true }).transform(v => new Date(v)).optional(),
|
|
13
|
+
id: z.string(),
|
|
14
|
+
active: z.boolean(),
|
|
15
|
+
customer_email: z.nullable(z.string()),
|
|
16
|
+
customer_phone: z.nullable(z.string()),
|
|
17
|
+
customer_note: z.nullable(z.string()),
|
|
18
|
+
is_promotion_applied: z.boolean(),
|
|
19
|
+
is_coupon_applied: z.boolean(),
|
|
20
|
+
coupon_code: z.nullable(z.string()),
|
|
21
|
+
promotion_discount_amount: z.number(),
|
|
22
|
+
coupon_discount_amount: z.number(),
|
|
23
|
+
subtotal: z.number(),
|
|
24
|
+
items_tax_amount: z.number(),
|
|
25
|
+
subtotal_including_tax: z.number(),
|
|
26
|
+
shipping_amount: z.number(),
|
|
27
|
+
shipping_tax_amount: z.number(),
|
|
28
|
+
shipping_amount_including_tax: z.number(),
|
|
29
|
+
total_tax: z.number(),
|
|
30
|
+
grand_total: z.number(),
|
|
31
|
+
credit_balance_used: z.number(),
|
|
32
|
+
to_be_paid: z.number(),
|
|
33
|
+
loyalty_points_redeemed: z.number().int(),
|
|
34
|
+
loyalty_points_earned: z.number().int(),
|
|
35
|
+
cart_items_count: z.number().int(),
|
|
36
|
+
cart_items: z.array(CartItem$inboundSchema),
|
|
37
|
+
billing_address: z.nullable(CustomerAddress$inboundSchema),
|
|
38
|
+
shipping_address: z.nullable(CustomerAddress$inboundSchema),
|
|
39
|
+
currency: Currency$inboundSchema,
|
|
40
|
+
metadata: z.record(z.string()),
|
|
41
|
+
expires_at: z.string().datetime({ offset: true }).transform(v => new Date(v)),
|
|
65
42
|
}).transform((v) => {
|
|
66
43
|
return remap$(v, {
|
|
67
44
|
"customer_email": "customerEmail",
|
|
68
45
|
"customer_phone": "customerPhone",
|
|
69
46
|
"customer_note": "customerNote",
|
|
70
47
|
"is_promotion_applied": "isPromotionApplied",
|
|
71
|
-
"promotion_discount_amount": "promotionDiscountAmount",
|
|
72
48
|
"is_coupon_applied": "isCouponApplied",
|
|
73
49
|
"coupon_code": "couponCode",
|
|
50
|
+
"promotion_discount_amount": "promotionDiscountAmount",
|
|
74
51
|
"coupon_discount_amount": "couponDiscountAmount",
|
|
75
|
-
"
|
|
76
|
-
"item_total_tax": "itemTotalTax",
|
|
52
|
+
"items_tax_amount": "itemsTaxAmount",
|
|
77
53
|
"subtotal_including_tax": "subtotalIncludingTax",
|
|
78
54
|
"shipping_amount": "shippingAmount",
|
|
79
|
-
"
|
|
55
|
+
"shipping_tax_amount": "shippingTaxAmount",
|
|
80
56
|
"shipping_amount_including_tax": "shippingAmountIncludingTax",
|
|
81
57
|
"total_tax": "totalTax",
|
|
82
58
|
"grand_total": "grandTotal",
|
|
83
59
|
"credit_balance_used": "creditBalanceUsed",
|
|
84
60
|
"to_be_paid": "toBePaid",
|
|
85
|
-
"
|
|
86
|
-
"
|
|
61
|
+
"loyalty_points_redeemed": "loyaltyPointsRedeemed",
|
|
62
|
+
"loyalty_points_earned": "loyaltyPointsEarned",
|
|
87
63
|
"cart_items_count": "cartItemsCount",
|
|
88
64
|
"cart_items": "cartItems",
|
|
89
65
|
"billing_address": "billingAddress",
|
|
@@ -93,59 +69,56 @@ export const Cart$inboundSchema = z
|
|
|
93
69
|
});
|
|
94
70
|
/** @internal */
|
|
95
71
|
export const Cart$outboundSchema = z.object({
|
|
96
|
-
id: z.string()
|
|
97
|
-
active: z.boolean()
|
|
98
|
-
customerEmail: z.nullable(z.string())
|
|
99
|
-
customerPhone: z.nullable(z.string())
|
|
100
|
-
customerNote: z.nullable(z.string())
|
|
101
|
-
isPromotionApplied: z.boolean()
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
couponDiscountAmount: z.number()
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
.optional(),
|
|
126
|
-
expiresAt: z.date().transform(v => v.toISOString()).optional(),
|
|
72
|
+
id: z.string(),
|
|
73
|
+
active: z.boolean(),
|
|
74
|
+
customerEmail: z.nullable(z.string()),
|
|
75
|
+
customerPhone: z.nullable(z.string()),
|
|
76
|
+
customerNote: z.nullable(z.string()),
|
|
77
|
+
isPromotionApplied: z.boolean(),
|
|
78
|
+
isCouponApplied: z.boolean(),
|
|
79
|
+
couponCode: z.nullable(z.string()),
|
|
80
|
+
promotionDiscountAmount: z.number(),
|
|
81
|
+
couponDiscountAmount: z.number(),
|
|
82
|
+
subtotal: z.number(),
|
|
83
|
+
itemsTaxAmount: z.number(),
|
|
84
|
+
subtotalIncludingTax: z.number(),
|
|
85
|
+
shippingAmount: z.number(),
|
|
86
|
+
shippingTaxAmount: z.number(),
|
|
87
|
+
shippingAmountIncludingTax: z.number(),
|
|
88
|
+
totalTax: z.number(),
|
|
89
|
+
grandTotal: z.number(),
|
|
90
|
+
creditBalanceUsed: z.number(),
|
|
91
|
+
toBePaid: z.number(),
|
|
92
|
+
loyaltyPointsRedeemed: z.number().int(),
|
|
93
|
+
loyaltyPointsEarned: z.number().int(),
|
|
94
|
+
cartItemsCount: z.number().int(),
|
|
95
|
+
cartItems: z.array(CartItem$outboundSchema),
|
|
96
|
+
billingAddress: z.nullable(CustomerAddress$outboundSchema),
|
|
97
|
+
shippingAddress: z.nullable(CustomerAddress$outboundSchema),
|
|
98
|
+
currency: Currency$outboundSchema,
|
|
99
|
+
metadata: z.record(z.string()),
|
|
100
|
+
expiresAt: z.date().transform(v => v.toISOString()),
|
|
127
101
|
}).transform((v) => {
|
|
128
102
|
return remap$(v, {
|
|
129
103
|
customerEmail: "customer_email",
|
|
130
104
|
customerPhone: "customer_phone",
|
|
131
105
|
customerNote: "customer_note",
|
|
132
106
|
isPromotionApplied: "is_promotion_applied",
|
|
133
|
-
promotionDiscountAmount: "promotion_discount_amount",
|
|
134
107
|
isCouponApplied: "is_coupon_applied",
|
|
135
108
|
couponCode: "coupon_code",
|
|
109
|
+
promotionDiscountAmount: "promotion_discount_amount",
|
|
136
110
|
couponDiscountAmount: "coupon_discount_amount",
|
|
137
|
-
|
|
138
|
-
itemTotalTax: "item_total_tax",
|
|
111
|
+
itemsTaxAmount: "items_tax_amount",
|
|
139
112
|
subtotalIncludingTax: "subtotal_including_tax",
|
|
140
113
|
shippingAmount: "shipping_amount",
|
|
141
|
-
|
|
114
|
+
shippingTaxAmount: "shipping_tax_amount",
|
|
142
115
|
shippingAmountIncludingTax: "shipping_amount_including_tax",
|
|
143
116
|
totalTax: "total_tax",
|
|
144
117
|
grandTotal: "grand_total",
|
|
145
118
|
creditBalanceUsed: "credit_balance_used",
|
|
146
119
|
toBePaid: "to_be_paid",
|
|
147
|
-
|
|
148
|
-
|
|
120
|
+
loyaltyPointsRedeemed: "loyalty_points_redeemed",
|
|
121
|
+
loyaltyPointsEarned: "loyalty_points_earned",
|
|
149
122
|
cartItemsCount: "cart_items_count",
|
|
150
123
|
cartItems: "cart_items",
|
|
151
124
|
billingAddress: "billing_address",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cart.js","sourceRoot":"","sources":["../../../src/models/components/cart.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,KAAK,IAAI,MAAM,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAGjD,OAAO,EAEL,sBAAsB,EAEtB,uBAAuB,GACxB,MAAM,eAAe,CAAC;AACvB,OAAO,EAEL,sBAAsB,EAEtB,uBAAuB,GACxB,MAAM,eAAe,CAAC;AACvB,OAAO,EAEL,6BAA6B,EAE7B,8BAA8B,GAC/B,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"cart.js","sourceRoot":"","sources":["../../../src/models/components/cart.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
import * as z from "zod";
|
|
2
|
+
import { ClosedEnum } from "../../types/enums.js";
|
|
2
3
|
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
3
4
|
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
5
|
+
import { AssociatedOption, AssociatedOption$Outbound } from "./associatedoption.js";
|
|
6
|
+
import { ProductSubscription, ProductSubscription$Outbound } from "./productsubscription.js";
|
|
7
|
+
export declare const CartItemProductType: {
|
|
8
|
+
readonly Physical: "physical";
|
|
9
|
+
readonly Digital: "digital";
|
|
10
|
+
readonly Bundle: "bundle";
|
|
11
|
+
};
|
|
12
|
+
export type CartItemProductType = ClosedEnum<typeof CartItemProductType>;
|
|
4
13
|
/**
|
|
5
14
|
* This Cart Item model captures the attributes of a cart item, including product details, pricing information, subscription details, and other relevant information related to Cart Item.
|
|
6
15
|
*/
|
|
@@ -8,75 +17,83 @@ export type CartItem = {
|
|
|
8
17
|
/**
|
|
9
18
|
* Unique identifier for the product.
|
|
10
19
|
*/
|
|
11
|
-
productId
|
|
12
|
-
/**
|
|
13
|
-
* Name or title of the product.
|
|
14
|
-
*/
|
|
15
|
-
productName?: string | undefined;
|
|
20
|
+
productId: string;
|
|
16
21
|
/**
|
|
17
|
-
*
|
|
22
|
+
* Unique identifier for the product.
|
|
18
23
|
*/
|
|
19
|
-
|
|
24
|
+
variantId: string | null;
|
|
20
25
|
/**
|
|
21
26
|
* Stock Keeping Unit, a unique identifier for the product within inventory.
|
|
22
27
|
*/
|
|
23
|
-
sku
|
|
28
|
+
sku: string | null;
|
|
24
29
|
/**
|
|
25
|
-
*
|
|
30
|
+
* Unique slug for the product
|
|
26
31
|
*/
|
|
27
|
-
|
|
32
|
+
slug: string;
|
|
28
33
|
/**
|
|
29
|
-
*
|
|
34
|
+
* Name of the product.
|
|
30
35
|
*/
|
|
31
|
-
|
|
36
|
+
productName: string;
|
|
32
37
|
/**
|
|
33
|
-
*
|
|
38
|
+
* Name of the variant.
|
|
34
39
|
*/
|
|
35
|
-
|
|
40
|
+
variantName: string | null;
|
|
41
|
+
productType: CartItemProductType;
|
|
36
42
|
/**
|
|
37
|
-
*
|
|
43
|
+
* URL pointing to the product image.
|
|
38
44
|
*/
|
|
39
|
-
|
|
45
|
+
productImageUrl: string;
|
|
40
46
|
/**
|
|
41
|
-
*
|
|
47
|
+
* Indicates whether the product is currently active.
|
|
42
48
|
*/
|
|
43
|
-
|
|
49
|
+
active: boolean;
|
|
44
50
|
/**
|
|
45
|
-
*
|
|
51
|
+
* Indicates whether the product is currently in stock.
|
|
46
52
|
*/
|
|
47
|
-
|
|
53
|
+
stockAvailable: boolean;
|
|
48
54
|
/**
|
|
49
|
-
*
|
|
55
|
+
* Indicates whether the product is currently on offer.
|
|
50
56
|
*/
|
|
51
|
-
|
|
57
|
+
onOffer: boolean;
|
|
52
58
|
/**
|
|
53
|
-
*
|
|
59
|
+
* Indicates whether the product is currently on a subscription.
|
|
54
60
|
*/
|
|
55
|
-
|
|
61
|
+
onSubscription: boolean;
|
|
56
62
|
/**
|
|
57
|
-
* Indicates
|
|
63
|
+
* Indicates whether the product is part of a promotion.
|
|
58
64
|
*/
|
|
59
|
-
|
|
65
|
+
onPromotion: boolean;
|
|
60
66
|
/**
|
|
61
|
-
*
|
|
67
|
+
* The quantity of the product in the cart.
|
|
62
68
|
*/
|
|
63
|
-
|
|
69
|
+
quantity: number;
|
|
64
70
|
/**
|
|
65
|
-
*
|
|
71
|
+
* Indicates if the product is offered for free.
|
|
66
72
|
*/
|
|
67
|
-
|
|
73
|
+
isFreeItem: boolean;
|
|
68
74
|
/**
|
|
69
|
-
*
|
|
75
|
+
* Quantity of the product that is free.
|
|
70
76
|
*/
|
|
71
|
-
|
|
77
|
+
freeQuantity: number;
|
|
72
78
|
/**
|
|
73
79
|
* Discount amount due to promotions.
|
|
74
80
|
*/
|
|
75
|
-
promotionDiscountAmount
|
|
81
|
+
promotionDiscountAmount: number;
|
|
76
82
|
/**
|
|
77
83
|
* Discount amount due to applied coupons.
|
|
78
84
|
*/
|
|
79
|
-
couponDiscountAmount
|
|
85
|
+
couponDiscountAmount: number;
|
|
86
|
+
priceIncludingTax: boolean;
|
|
87
|
+
listingPrice: number;
|
|
88
|
+
sellingPrice: number;
|
|
89
|
+
sellingPriceExcludingTax: number;
|
|
90
|
+
minOrderQuantity?: number | undefined;
|
|
91
|
+
maxOrderQuantity: number | null;
|
|
92
|
+
incrementalQuantity?: number | undefined;
|
|
93
|
+
/**
|
|
94
|
+
* Additional cost for shipping associated with the product.
|
|
95
|
+
*/
|
|
96
|
+
shippingAdditionalCost: number | null;
|
|
80
97
|
/**
|
|
81
98
|
* Type of tax applied (e.g., GST).
|
|
82
99
|
*/
|
|
@@ -84,42 +101,75 @@ export type CartItem = {
|
|
|
84
101
|
/**
|
|
85
102
|
* The rate of tax applied to the product.
|
|
86
103
|
*/
|
|
87
|
-
taxRate
|
|
104
|
+
taxRate: number;
|
|
88
105
|
/**
|
|
89
106
|
* The total tax amount for the product.
|
|
90
107
|
*/
|
|
91
|
-
taxAmount
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
108
|
+
taxAmount: number;
|
|
109
|
+
associatedOptions: {
|
|
110
|
+
[k: string]: AssociatedOption;
|
|
111
|
+
} | null;
|
|
112
|
+
subscriptions: Array<ProductSubscription>;
|
|
96
113
|
};
|
|
97
114
|
/** @internal */
|
|
115
|
+
export declare const CartItemProductType$inboundSchema: z.ZodNativeEnum<typeof CartItemProductType>;
|
|
116
|
+
/** @internal */
|
|
117
|
+
export declare const CartItemProductType$outboundSchema: z.ZodNativeEnum<typeof CartItemProductType>;
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
121
|
+
*/
|
|
122
|
+
export declare namespace CartItemProductType$ {
|
|
123
|
+
/** @deprecated use `CartItemProductType$inboundSchema` instead. */
|
|
124
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
125
|
+
readonly Physical: "physical";
|
|
126
|
+
readonly Digital: "digital";
|
|
127
|
+
readonly Bundle: "bundle";
|
|
128
|
+
}>;
|
|
129
|
+
/** @deprecated use `CartItemProductType$outboundSchema` instead. */
|
|
130
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
131
|
+
readonly Physical: "physical";
|
|
132
|
+
readonly Digital: "digital";
|
|
133
|
+
readonly Bundle: "bundle";
|
|
134
|
+
}>;
|
|
135
|
+
}
|
|
136
|
+
/** @internal */
|
|
98
137
|
export declare const CartItem$inboundSchema: z.ZodType<CartItem, z.ZodTypeDef, unknown>;
|
|
99
138
|
/** @internal */
|
|
100
139
|
export type CartItem$Outbound = {
|
|
101
|
-
product_id
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
promotion_discount_amount
|
|
118
|
-
coupon_discount_amount
|
|
140
|
+
product_id: string;
|
|
141
|
+
variant_id: string | null;
|
|
142
|
+
sku: string | null;
|
|
143
|
+
slug: string;
|
|
144
|
+
product_name: string;
|
|
145
|
+
variant_name: string | null;
|
|
146
|
+
product_type: string;
|
|
147
|
+
product_image_url: string;
|
|
148
|
+
active: boolean;
|
|
149
|
+
stock_available: boolean;
|
|
150
|
+
on_offer: boolean;
|
|
151
|
+
on_subscription: boolean;
|
|
152
|
+
on_promotion: boolean;
|
|
153
|
+
quantity: number;
|
|
154
|
+
is_free_item: boolean;
|
|
155
|
+
free_quantity: number;
|
|
156
|
+
promotion_discount_amount: number;
|
|
157
|
+
coupon_discount_amount: number;
|
|
158
|
+
price_including_tax: boolean;
|
|
159
|
+
listing_price: number;
|
|
160
|
+
selling_price: number;
|
|
161
|
+
selling_price_excluding_tax: number;
|
|
162
|
+
min_order_quantity: number;
|
|
163
|
+
max_order_quantity: number | null;
|
|
164
|
+
incremental_quantity: number;
|
|
165
|
+
shipping_additional_cost: number | null;
|
|
119
166
|
tax_type: "GST";
|
|
120
|
-
tax_rate
|
|
121
|
-
tax_amount
|
|
122
|
-
|
|
167
|
+
tax_rate: number;
|
|
168
|
+
tax_amount: number;
|
|
169
|
+
associated_options: {
|
|
170
|
+
[k: string]: AssociatedOption$Outbound;
|
|
171
|
+
} | null;
|
|
172
|
+
subscriptions: Array<ProductSubscription$Outbound>;
|
|
123
173
|
};
|
|
124
174
|
/** @internal */
|
|
125
175
|
export declare const CartItem$outboundSchema: z.ZodType<CartItem$Outbound, z.ZodTypeDef, CartItem>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cartitem.d.ts","sourceRoot":"","sources":["../../../src/models/components/cartitem.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;
|
|
1
|
+
{"version":3,"file":"cartitem.d.ts","sourceRoot":"","sources":["../../../src/models/components/cartitem.ts"],"names":[],"mappings":"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"}
|