@wix/auto_sdk_ecom_shipping-options 1.0.113 → 1.0.115
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/build/cjs/schemas.d.ts +360 -0
- package/build/cjs/schemas.js +603 -0
- package/build/cjs/schemas.js.map +1 -0
- package/build/es/schemas.d.mts +360 -0
- package/build/es/schemas.mjs +551 -0
- package/build/es/schemas.mjs.map +1 -0
- package/build/internal/cjs/schemas.d.ts +360 -0
- package/build/internal/cjs/schemas.js +603 -0
- package/build/internal/cjs/schemas.js.map +1 -0
- package/build/internal/es/schemas.d.mts +360 -0
- package/build/internal/es/schemas.mjs +551 -0
- package/build/internal/es/schemas.mjs.map +1 -0
- package/package.json +12 -5
- package/schemas/package.json +3 -0
|
@@ -0,0 +1,603 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// schemas.ts
|
|
31
|
+
var schemas_exports = {};
|
|
32
|
+
__export(schemas_exports, {
|
|
33
|
+
AddDeliveryRegionRequest: () => AddDeliveryRegionRequest,
|
|
34
|
+
AddDeliveryRegionResponse: () => AddDeliveryRegionResponse,
|
|
35
|
+
CreateShippingOptionRequest: () => CreateShippingOptionRequest,
|
|
36
|
+
CreateShippingOptionResponse: () => CreateShippingOptionResponse,
|
|
37
|
+
DeleteShippingOptionRequest: () => DeleteShippingOptionRequest,
|
|
38
|
+
DeleteShippingOptionResponse: () => DeleteShippingOptionResponse,
|
|
39
|
+
GetShippingOptionRequest: () => GetShippingOptionRequest,
|
|
40
|
+
GetShippingOptionResponse: () => GetShippingOptionResponse,
|
|
41
|
+
QueryShippingOptionsRequest: () => QueryShippingOptionsRequest,
|
|
42
|
+
QueryShippingOptionsResponse: () => QueryShippingOptionsResponse,
|
|
43
|
+
RemoveDeliveryRegionRequest: () => RemoveDeliveryRegionRequest,
|
|
44
|
+
RemoveDeliveryRegionResponse: () => RemoveDeliveryRegionResponse,
|
|
45
|
+
UpdateExtendedFieldsRequest: () => UpdateExtendedFieldsRequest,
|
|
46
|
+
UpdateExtendedFieldsResponse: () => UpdateExtendedFieldsResponse,
|
|
47
|
+
UpdateShippingOptionRequest: () => UpdateShippingOptionRequest,
|
|
48
|
+
UpdateShippingOptionResponse: () => UpdateShippingOptionResponse
|
|
49
|
+
});
|
|
50
|
+
module.exports = __toCommonJS(schemas_exports);
|
|
51
|
+
|
|
52
|
+
// src/ecom-v1-shipping-option-shipping-options.schemas.ts
|
|
53
|
+
var z = __toESM(require("zod"));
|
|
54
|
+
var CreateShippingOptionRequest = z.object({
|
|
55
|
+
shippingOption: z.object({
|
|
56
|
+
_id: z.string().describe("ShippingOption ID.").regex(
|
|
57
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
58
|
+
"Must be a valid GUID"
|
|
59
|
+
).optional().nullable(),
|
|
60
|
+
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
61
|
+
"Revision number, which increments by 1 each time the ShippingOption is updated.\nTo prevent conflicting changes,\nthe current revision must be passed when updating the ShippingOption.\n\nIgnored when creating a ShippingOption."
|
|
62
|
+
).optional().nullable(),
|
|
63
|
+
_createdDate: z.date().describe("Date and time the ShippingOption was created.").optional().nullable(),
|
|
64
|
+
_updatedDate: z.date().describe("Date and time the ShippingOption was last updated.").optional().nullable(),
|
|
65
|
+
deliveryRegionId: z.string().describe("Associated delivery region id.").regex(
|
|
66
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
67
|
+
"Must be a valid GUID"
|
|
68
|
+
).optional(),
|
|
69
|
+
deliveryRegionIds: z.array(z.string()).max(50).optional(),
|
|
70
|
+
title: z.string().describe("Delivery option configured for the ShippingOption").max(1e3).optional().nullable(),
|
|
71
|
+
estimatedDeliveryTime: z.string().describe('Estimated delivery time. For example, "2-3 business days".').max(500).optional().nullable(),
|
|
72
|
+
rates: z.array(
|
|
73
|
+
z.object({
|
|
74
|
+
amount: z.string().describe(
|
|
75
|
+
"there is an AND logic between all the conditions. Empty conditions means true.\nThe amount of the rate that will be returned if all conditions are met."
|
|
76
|
+
).optional(),
|
|
77
|
+
conditions: z.array(
|
|
78
|
+
z.object({
|
|
79
|
+
type: z.enum([
|
|
80
|
+
"BY_TOTAL_WEIGHT",
|
|
81
|
+
"BY_TOTAL_PRICE",
|
|
82
|
+
"BY_TOTAL_QUANTITY"
|
|
83
|
+
]).optional(),
|
|
84
|
+
value: z.string().describe(
|
|
85
|
+
"The value in respective to the condition type\nWeight values should be in the same weight units of the store: KG / LB\nTotal price is according to the store currency\nQuantity of items should be integers"
|
|
86
|
+
).optional(),
|
|
87
|
+
operator: z.enum(["EQ", "GT", "GTE", "LT", "LTE"]).optional()
|
|
88
|
+
})
|
|
89
|
+
).min(0).max(10).optional(),
|
|
90
|
+
multiplyByQuantity: z.boolean().describe(
|
|
91
|
+
"When this flag is set to true, multiply the amount by the number of line items passed on the request."
|
|
92
|
+
).optional()
|
|
93
|
+
})
|
|
94
|
+
).min(1).max(50).optional(),
|
|
95
|
+
extendedFields: z.object({
|
|
96
|
+
namespaces: z.record(z.string(), z.record(z.string(), z.any())).describe(
|
|
97
|
+
"Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\nThe value of each key is structured according to the schema defined when the extended fields were configured.\n\nYou can only access fields for which you have the appropriate permissions.\n\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields)."
|
|
98
|
+
).optional()
|
|
99
|
+
}).describe("Data Extensions").optional()
|
|
100
|
+
}).describe("ShippingOption to be created.")
|
|
101
|
+
});
|
|
102
|
+
var CreateShippingOptionResponse = z.object({
|
|
103
|
+
_id: z.string().describe("ShippingOption ID.").regex(
|
|
104
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
105
|
+
"Must be a valid GUID"
|
|
106
|
+
).optional().nullable(),
|
|
107
|
+
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
108
|
+
"Revision number, which increments by 1 each time the ShippingOption is updated.\nTo prevent conflicting changes,\nthe current revision must be passed when updating the ShippingOption.\n\nIgnored when creating a ShippingOption."
|
|
109
|
+
).optional().nullable(),
|
|
110
|
+
_createdDate: z.date().describe("Date and time the ShippingOption was created.").optional().nullable(),
|
|
111
|
+
_updatedDate: z.date().describe("Date and time the ShippingOption was last updated.").optional().nullable(),
|
|
112
|
+
deliveryRegionId: z.string().describe("Associated delivery region id.").regex(
|
|
113
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
114
|
+
"Must be a valid GUID"
|
|
115
|
+
).optional(),
|
|
116
|
+
deliveryRegionIds: z.array(z.string()).max(50).optional(),
|
|
117
|
+
title: z.string().describe("Delivery option configured for the ShippingOption").max(1e3).optional().nullable(),
|
|
118
|
+
estimatedDeliveryTime: z.string().describe('Estimated delivery time. For example, "2-3 business days".').max(500).optional().nullable(),
|
|
119
|
+
rates: z.array(
|
|
120
|
+
z.object({
|
|
121
|
+
amount: z.string().describe(
|
|
122
|
+
"there is an AND logic between all the conditions. Empty conditions means true.\nThe amount of the rate that will be returned if all conditions are met."
|
|
123
|
+
).optional(),
|
|
124
|
+
conditions: z.array(
|
|
125
|
+
z.object({
|
|
126
|
+
type: z.enum([
|
|
127
|
+
"BY_TOTAL_WEIGHT",
|
|
128
|
+
"BY_TOTAL_PRICE",
|
|
129
|
+
"BY_TOTAL_QUANTITY"
|
|
130
|
+
]).optional(),
|
|
131
|
+
value: z.string().describe(
|
|
132
|
+
"The value in respective to the condition type\nWeight values should be in the same weight units of the store: KG / LB\nTotal price is according to the store currency\nQuantity of items should be integers"
|
|
133
|
+
).optional(),
|
|
134
|
+
operator: z.enum(["EQ", "GT", "GTE", "LT", "LTE"]).describe("Logical operator.").optional()
|
|
135
|
+
})
|
|
136
|
+
).min(0).max(10).optional(),
|
|
137
|
+
multiplyByQuantity: z.boolean().describe(
|
|
138
|
+
"When this flag is set to true, multiply the amount by the number of line items passed on the request."
|
|
139
|
+
).optional()
|
|
140
|
+
})
|
|
141
|
+
).min(1).max(50).optional(),
|
|
142
|
+
extendedFields: z.object({
|
|
143
|
+
namespaces: z.record(z.string(), z.record(z.string(), z.any())).describe(
|
|
144
|
+
"Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\nThe value of each key is structured according to the schema defined when the extended fields were configured.\n\nYou can only access fields for which you have the appropriate permissions.\n\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields)."
|
|
145
|
+
).optional()
|
|
146
|
+
}).describe("Data Extensions").optional()
|
|
147
|
+
});
|
|
148
|
+
var GetShippingOptionRequest = z.object({
|
|
149
|
+
shippingOptionId: z.string().describe("ID of the ShippingOption to retrieve.").regex(
|
|
150
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
151
|
+
"Must be a valid GUID"
|
|
152
|
+
)
|
|
153
|
+
});
|
|
154
|
+
var GetShippingOptionResponse = z.object({
|
|
155
|
+
_id: z.string().describe("ShippingOption ID.").regex(
|
|
156
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
157
|
+
"Must be a valid GUID"
|
|
158
|
+
).optional().nullable(),
|
|
159
|
+
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
160
|
+
"Revision number, which increments by 1 each time the ShippingOption is updated.\nTo prevent conflicting changes,\nthe current revision must be passed when updating the ShippingOption.\n\nIgnored when creating a ShippingOption."
|
|
161
|
+
).optional().nullable(),
|
|
162
|
+
_createdDate: z.date().describe("Date and time the ShippingOption was created.").optional().nullable(),
|
|
163
|
+
_updatedDate: z.date().describe("Date and time the ShippingOption was last updated.").optional().nullable(),
|
|
164
|
+
deliveryRegionId: z.string().describe("Associated delivery region id.").regex(
|
|
165
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
166
|
+
"Must be a valid GUID"
|
|
167
|
+
).optional(),
|
|
168
|
+
deliveryRegionIds: z.array(z.string()).max(50).optional(),
|
|
169
|
+
title: z.string().describe("Delivery option configured for the ShippingOption").max(1e3).optional().nullable(),
|
|
170
|
+
estimatedDeliveryTime: z.string().describe('Estimated delivery time. For example, "2-3 business days".').max(500).optional().nullable(),
|
|
171
|
+
rates: z.array(
|
|
172
|
+
z.object({
|
|
173
|
+
amount: z.string().describe(
|
|
174
|
+
"there is an AND logic between all the conditions. Empty conditions means true.\nThe amount of the rate that will be returned if all conditions are met."
|
|
175
|
+
).optional(),
|
|
176
|
+
conditions: z.array(
|
|
177
|
+
z.object({
|
|
178
|
+
type: z.enum([
|
|
179
|
+
"BY_TOTAL_WEIGHT",
|
|
180
|
+
"BY_TOTAL_PRICE",
|
|
181
|
+
"BY_TOTAL_QUANTITY"
|
|
182
|
+
]).optional(),
|
|
183
|
+
value: z.string().describe(
|
|
184
|
+
"The value in respective to the condition type\nWeight values should be in the same weight units of the store: KG / LB\nTotal price is according to the store currency\nQuantity of items should be integers"
|
|
185
|
+
).optional(),
|
|
186
|
+
operator: z.enum(["EQ", "GT", "GTE", "LT", "LTE"]).describe("Logical operator.").optional()
|
|
187
|
+
})
|
|
188
|
+
).min(0).max(10).optional(),
|
|
189
|
+
multiplyByQuantity: z.boolean().describe(
|
|
190
|
+
"When this flag is set to true, multiply the amount by the number of line items passed on the request."
|
|
191
|
+
).optional()
|
|
192
|
+
})
|
|
193
|
+
).min(1).max(50).optional(),
|
|
194
|
+
extendedFields: z.object({
|
|
195
|
+
namespaces: z.record(z.string(), z.record(z.string(), z.any())).describe(
|
|
196
|
+
"Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\nThe value of each key is structured according to the schema defined when the extended fields were configured.\n\nYou can only access fields for which you have the appropriate permissions.\n\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields)."
|
|
197
|
+
).optional()
|
|
198
|
+
}).describe("Data Extensions").optional()
|
|
199
|
+
});
|
|
200
|
+
var UpdateShippingOptionRequest = z.object({
|
|
201
|
+
_id: z.string().describe("ShippingOption ID.").regex(
|
|
202
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
203
|
+
"Must be a valid GUID"
|
|
204
|
+
),
|
|
205
|
+
shippingOption: z.object({
|
|
206
|
+
_id: z.string().describe("ShippingOption ID.").regex(
|
|
207
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
208
|
+
"Must be a valid GUID"
|
|
209
|
+
).optional().nullable(),
|
|
210
|
+
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
211
|
+
"Revision number, which increments by 1 each time the ShippingOption is updated.\nTo prevent conflicting changes,\nthe current revision must be passed when updating the ShippingOption.\n\nIgnored when creating a ShippingOption."
|
|
212
|
+
),
|
|
213
|
+
_createdDate: z.date().describe("Date and time the ShippingOption was created.").optional().nullable(),
|
|
214
|
+
_updatedDate: z.date().describe("Date and time the ShippingOption was last updated.").optional().nullable(),
|
|
215
|
+
deliveryRegionId: z.string().describe("Associated delivery region id.").regex(
|
|
216
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
217
|
+
"Must be a valid GUID"
|
|
218
|
+
).optional(),
|
|
219
|
+
deliveryRegionIds: z.array(z.string()).max(50).optional(),
|
|
220
|
+
title: z.string().describe("Delivery option configured for the ShippingOption").max(1e3).optional().nullable(),
|
|
221
|
+
estimatedDeliveryTime: z.string().describe('Estimated delivery time. For example, "2-3 business days".').max(500).optional().nullable(),
|
|
222
|
+
rates: z.array(
|
|
223
|
+
z.object({
|
|
224
|
+
amount: z.string().describe(
|
|
225
|
+
"there is an AND logic between all the conditions. Empty conditions means true.\nThe amount of the rate that will be returned if all conditions are met."
|
|
226
|
+
).optional(),
|
|
227
|
+
conditions: z.array(
|
|
228
|
+
z.object({
|
|
229
|
+
type: z.enum([
|
|
230
|
+
"BY_TOTAL_WEIGHT",
|
|
231
|
+
"BY_TOTAL_PRICE",
|
|
232
|
+
"BY_TOTAL_QUANTITY"
|
|
233
|
+
]).optional(),
|
|
234
|
+
value: z.string().describe(
|
|
235
|
+
"The value in respective to the condition type\nWeight values should be in the same weight units of the store: KG / LB\nTotal price is according to the store currency\nQuantity of items should be integers"
|
|
236
|
+
).optional(),
|
|
237
|
+
operator: z.enum(["EQ", "GT", "GTE", "LT", "LTE"]).optional()
|
|
238
|
+
})
|
|
239
|
+
).min(0).max(10).optional(),
|
|
240
|
+
multiplyByQuantity: z.boolean().describe(
|
|
241
|
+
"When this flag is set to true, multiply the amount by the number of line items passed on the request."
|
|
242
|
+
).optional()
|
|
243
|
+
})
|
|
244
|
+
).min(1).max(50).optional(),
|
|
245
|
+
extendedFields: z.object({
|
|
246
|
+
namespaces: z.record(z.string(), z.record(z.string(), z.any())).describe(
|
|
247
|
+
"Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\nThe value of each key is structured according to the schema defined when the extended fields were configured.\n\nYou can only access fields for which you have the appropriate permissions.\n\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields)."
|
|
248
|
+
).optional()
|
|
249
|
+
}).describe("Data Extensions").optional()
|
|
250
|
+
}).describe("ShippingOption to be updated, may be partial.")
|
|
251
|
+
});
|
|
252
|
+
var UpdateShippingOptionResponse = z.object({
|
|
253
|
+
_id: z.string().describe("ShippingOption ID.").regex(
|
|
254
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
255
|
+
"Must be a valid GUID"
|
|
256
|
+
).optional().nullable(),
|
|
257
|
+
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
258
|
+
"Revision number, which increments by 1 each time the ShippingOption is updated.\nTo prevent conflicting changes,\nthe current revision must be passed when updating the ShippingOption.\n\nIgnored when creating a ShippingOption."
|
|
259
|
+
).optional().nullable(),
|
|
260
|
+
_createdDate: z.date().describe("Date and time the ShippingOption was created.").optional().nullable(),
|
|
261
|
+
_updatedDate: z.date().describe("Date and time the ShippingOption was last updated.").optional().nullable(),
|
|
262
|
+
deliveryRegionId: z.string().describe("Associated delivery region id.").regex(
|
|
263
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
264
|
+
"Must be a valid GUID"
|
|
265
|
+
).optional(),
|
|
266
|
+
deliveryRegionIds: z.array(z.string()).max(50).optional(),
|
|
267
|
+
title: z.string().describe("Delivery option configured for the ShippingOption").max(1e3).optional().nullable(),
|
|
268
|
+
estimatedDeliveryTime: z.string().describe('Estimated delivery time. For example, "2-3 business days".').max(500).optional().nullable(),
|
|
269
|
+
rates: z.array(
|
|
270
|
+
z.object({
|
|
271
|
+
amount: z.string().describe(
|
|
272
|
+
"there is an AND logic between all the conditions. Empty conditions means true.\nThe amount of the rate that will be returned if all conditions are met."
|
|
273
|
+
).optional(),
|
|
274
|
+
conditions: z.array(
|
|
275
|
+
z.object({
|
|
276
|
+
type: z.enum([
|
|
277
|
+
"BY_TOTAL_WEIGHT",
|
|
278
|
+
"BY_TOTAL_PRICE",
|
|
279
|
+
"BY_TOTAL_QUANTITY"
|
|
280
|
+
]).optional(),
|
|
281
|
+
value: z.string().describe(
|
|
282
|
+
"The value in respective to the condition type\nWeight values should be in the same weight units of the store: KG / LB\nTotal price is according to the store currency\nQuantity of items should be integers"
|
|
283
|
+
).optional(),
|
|
284
|
+
operator: z.enum(["EQ", "GT", "GTE", "LT", "LTE"]).describe("Logical operator.").optional()
|
|
285
|
+
})
|
|
286
|
+
).min(0).max(10).optional(),
|
|
287
|
+
multiplyByQuantity: z.boolean().describe(
|
|
288
|
+
"When this flag is set to true, multiply the amount by the number of line items passed on the request."
|
|
289
|
+
).optional()
|
|
290
|
+
})
|
|
291
|
+
).min(1).max(50).optional(),
|
|
292
|
+
extendedFields: z.object({
|
|
293
|
+
namespaces: z.record(z.string(), z.record(z.string(), z.any())).describe(
|
|
294
|
+
"Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\nThe value of each key is structured according to the schema defined when the extended fields were configured.\n\nYou can only access fields for which you have the appropriate permissions.\n\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields)."
|
|
295
|
+
).optional()
|
|
296
|
+
}).describe("Data Extensions").optional()
|
|
297
|
+
});
|
|
298
|
+
var DeleteShippingOptionRequest = z.object({
|
|
299
|
+
shippingOptionId: z.string().describe("Id of the ShippingOption to delete.").regex(
|
|
300
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
301
|
+
"Must be a valid GUID"
|
|
302
|
+
)
|
|
303
|
+
});
|
|
304
|
+
var DeleteShippingOptionResponse = z.object({});
|
|
305
|
+
var QueryShippingOptionsRequest = z.object({
|
|
306
|
+
query: z.intersection(
|
|
307
|
+
z.object({
|
|
308
|
+
filter: z.record(z.string(), z.any()).describe(
|
|
309
|
+
'Filter object in the following format:\n`"filter" : {\n"fieldName1": "value1",\n"fieldName2":{"$operator":"value2"}\n}`\nExample of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`'
|
|
310
|
+
).optional().nullable(),
|
|
311
|
+
sort: z.array(
|
|
312
|
+
z.object({
|
|
313
|
+
fieldName: z.string().describe("Name of the field to sort by.").max(512).optional(),
|
|
314
|
+
order: z.enum(["ASC", "DESC"]).optional()
|
|
315
|
+
})
|
|
316
|
+
).max(5).optional()
|
|
317
|
+
}),
|
|
318
|
+
z.xor([
|
|
319
|
+
z.object({ cursorPaging: z.never().optional() }),
|
|
320
|
+
z.object({
|
|
321
|
+
cursorPaging: z.object({
|
|
322
|
+
limit: z.number().int().describe("Maximum number of items to return in the results.").min(0).max(100).optional().nullable(),
|
|
323
|
+
cursor: z.string().describe(
|
|
324
|
+
"Pointer to the next or previous page in the list of results.\n\nPass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\nNot relevant for the first request."
|
|
325
|
+
).max(16e3).optional().nullable()
|
|
326
|
+
}).describe(
|
|
327
|
+
"Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`."
|
|
328
|
+
)
|
|
329
|
+
})
|
|
330
|
+
])
|
|
331
|
+
).describe("WQL expression.")
|
|
332
|
+
});
|
|
333
|
+
var QueryShippingOptionsResponse = z.object({
|
|
334
|
+
shippingOptions: z.array(
|
|
335
|
+
z.object({
|
|
336
|
+
_id: z.string().describe("ShippingOption ID.").regex(
|
|
337
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
338
|
+
"Must be a valid GUID"
|
|
339
|
+
).optional().nullable(),
|
|
340
|
+
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
341
|
+
"Revision number, which increments by 1 each time the ShippingOption is updated.\nTo prevent conflicting changes,\nthe current revision must be passed when updating the ShippingOption.\n\nIgnored when creating a ShippingOption."
|
|
342
|
+
).optional().nullable(),
|
|
343
|
+
_createdDate: z.date().describe("Date and time the ShippingOption was created.").optional().nullable(),
|
|
344
|
+
_updatedDate: z.date().describe("Date and time the ShippingOption was last updated.").optional().nullable(),
|
|
345
|
+
deliveryRegionId: z.string().describe("Associated delivery region id.").regex(
|
|
346
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
347
|
+
"Must be a valid GUID"
|
|
348
|
+
).optional(),
|
|
349
|
+
deliveryRegionIds: z.array(z.string()).max(50).optional(),
|
|
350
|
+
title: z.string().describe("Delivery option configured for the ShippingOption").max(1e3).optional().nullable(),
|
|
351
|
+
estimatedDeliveryTime: z.string().describe(
|
|
352
|
+
'Estimated delivery time. For example, "2-3 business days".'
|
|
353
|
+
).max(500).optional().nullable(),
|
|
354
|
+
rates: z.array(
|
|
355
|
+
z.object({
|
|
356
|
+
amount: z.string().describe(
|
|
357
|
+
"there is an AND logic between all the conditions. Empty conditions means true.\nThe amount of the rate that will be returned if all conditions are met."
|
|
358
|
+
).optional(),
|
|
359
|
+
conditions: z.array(
|
|
360
|
+
z.object({
|
|
361
|
+
type: z.enum([
|
|
362
|
+
"BY_TOTAL_WEIGHT",
|
|
363
|
+
"BY_TOTAL_PRICE",
|
|
364
|
+
"BY_TOTAL_QUANTITY"
|
|
365
|
+
]).optional(),
|
|
366
|
+
value: z.string().describe(
|
|
367
|
+
"The value in respective to the condition type\nWeight values should be in the same weight units of the store: KG / LB\nTotal price is according to the store currency\nQuantity of items should be integers"
|
|
368
|
+
).optional(),
|
|
369
|
+
operator: z.enum(["EQ", "GT", "GTE", "LT", "LTE"]).describe("Logical operator.").optional()
|
|
370
|
+
})
|
|
371
|
+
).min(0).max(10).optional(),
|
|
372
|
+
multiplyByQuantity: z.boolean().describe(
|
|
373
|
+
"When this flag is set to true, multiply the amount by the number of line items passed on the request."
|
|
374
|
+
).optional()
|
|
375
|
+
})
|
|
376
|
+
).min(1).max(50).optional(),
|
|
377
|
+
extendedFields: z.object({
|
|
378
|
+
namespaces: z.record(z.string(), z.record(z.string(), z.any())).describe(
|
|
379
|
+
"Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\nThe value of each key is structured according to the schema defined when the extended fields were configured.\n\nYou can only access fields for which you have the appropriate permissions.\n\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields)."
|
|
380
|
+
).optional()
|
|
381
|
+
}).describe("Data Extensions").optional()
|
|
382
|
+
})
|
|
383
|
+
).min(0).max(100).optional(),
|
|
384
|
+
pagingMetadata: z.object({
|
|
385
|
+
count: z.number().int().describe("Number of items returned in the response.").optional().nullable(),
|
|
386
|
+
cursors: z.object({
|
|
387
|
+
next: z.string().describe(
|
|
388
|
+
"Cursor string pointing to the next page in the list of results."
|
|
389
|
+
).max(16e3).optional().nullable(),
|
|
390
|
+
prev: z.string().describe(
|
|
391
|
+
"Cursor pointing to the previous page in the list of results."
|
|
392
|
+
).max(16e3).optional().nullable()
|
|
393
|
+
}).describe(
|
|
394
|
+
"Cursor strings that point to the next page, previous page, or both."
|
|
395
|
+
).optional(),
|
|
396
|
+
hasNext: z.boolean().describe(
|
|
397
|
+
"Whether there are more pages to retrieve following the current page.\n\n+ `true`: Another page of results can be retrieved.\n+ `false`: This is the last page."
|
|
398
|
+
).optional().nullable()
|
|
399
|
+
}).describe("Paging metadata").optional()
|
|
400
|
+
});
|
|
401
|
+
var UpdateExtendedFieldsRequest = z.object({
|
|
402
|
+
_id: z.string().describe("ID of the entity to update."),
|
|
403
|
+
namespace: z.string().describe(
|
|
404
|
+
"Identifier for the app whose extended fields are being updated."
|
|
405
|
+
),
|
|
406
|
+
options: z.object({
|
|
407
|
+
namespaceData: z.record(z.string(), z.any()).describe(
|
|
408
|
+
"Data to update. Structured according to the [schema](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields#json-schema-for-extended-fields) defined when the extended fields were configured."
|
|
409
|
+
)
|
|
410
|
+
})
|
|
411
|
+
});
|
|
412
|
+
var UpdateExtendedFieldsResponse = z.object({
|
|
413
|
+
shippingOption: z.object({
|
|
414
|
+
_id: z.string().describe("ShippingOption ID.").regex(
|
|
415
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
416
|
+
"Must be a valid GUID"
|
|
417
|
+
).optional().nullable(),
|
|
418
|
+
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
419
|
+
"Revision number, which increments by 1 each time the ShippingOption is updated.\nTo prevent conflicting changes,\nthe current revision must be passed when updating the ShippingOption.\n\nIgnored when creating a ShippingOption."
|
|
420
|
+
).optional().nullable(),
|
|
421
|
+
_createdDate: z.date().describe("Date and time the ShippingOption was created.").optional().nullable(),
|
|
422
|
+
_updatedDate: z.date().describe("Date and time the ShippingOption was last updated.").optional().nullable(),
|
|
423
|
+
deliveryRegionId: z.string().describe("Associated delivery region id.").regex(
|
|
424
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
425
|
+
"Must be a valid GUID"
|
|
426
|
+
).optional(),
|
|
427
|
+
deliveryRegionIds: z.array(z.string()).max(50).optional(),
|
|
428
|
+
title: z.string().describe("Delivery option configured for the ShippingOption").max(1e3).optional().nullable(),
|
|
429
|
+
estimatedDeliveryTime: z.string().describe('Estimated delivery time. For example, "2-3 business days".').max(500).optional().nullable(),
|
|
430
|
+
rates: z.array(
|
|
431
|
+
z.object({
|
|
432
|
+
amount: z.string().describe(
|
|
433
|
+
"there is an AND logic between all the conditions. Empty conditions means true.\nThe amount of the rate that will be returned if all conditions are met."
|
|
434
|
+
).optional(),
|
|
435
|
+
conditions: z.array(
|
|
436
|
+
z.object({
|
|
437
|
+
type: z.enum([
|
|
438
|
+
"BY_TOTAL_WEIGHT",
|
|
439
|
+
"BY_TOTAL_PRICE",
|
|
440
|
+
"BY_TOTAL_QUANTITY"
|
|
441
|
+
]).optional(),
|
|
442
|
+
value: z.string().describe(
|
|
443
|
+
"The value in respective to the condition type\nWeight values should be in the same weight units of the store: KG / LB\nTotal price is according to the store currency\nQuantity of items should be integers"
|
|
444
|
+
).optional(),
|
|
445
|
+
operator: z.enum(["EQ", "GT", "GTE", "LT", "LTE"]).describe("Logical operator.").optional()
|
|
446
|
+
})
|
|
447
|
+
).min(0).max(10).optional(),
|
|
448
|
+
multiplyByQuantity: z.boolean().describe(
|
|
449
|
+
"When this flag is set to true, multiply the amount by the number of line items passed on the request."
|
|
450
|
+
).optional()
|
|
451
|
+
})
|
|
452
|
+
).min(1).max(50).optional(),
|
|
453
|
+
extendedFields: z.object({
|
|
454
|
+
namespaces: z.record(z.string(), z.record(z.string(), z.any())).describe(
|
|
455
|
+
"Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\nThe value of each key is structured according to the schema defined when the extended fields were configured.\n\nYou can only access fields for which you have the appropriate permissions.\n\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields)."
|
|
456
|
+
).optional()
|
|
457
|
+
}).describe("Data Extensions").optional()
|
|
458
|
+
}).describe("Updated ShippingOption.").optional()
|
|
459
|
+
});
|
|
460
|
+
var AddDeliveryRegionRequest = z.object({
|
|
461
|
+
shippingOptionId: z.string().describe("ID of the ShippingOption to be updated.").regex(
|
|
462
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
463
|
+
"Must be a valid GUID"
|
|
464
|
+
),
|
|
465
|
+
deliveryRegionId: z.string().describe("ID of the delivery region that should use this ShippingOption.").regex(
|
|
466
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
467
|
+
"Must be a valid GUID"
|
|
468
|
+
),
|
|
469
|
+
options: z.object({
|
|
470
|
+
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe("Revision of the ShippingOption.")
|
|
471
|
+
})
|
|
472
|
+
});
|
|
473
|
+
var AddDeliveryRegionResponse = z.object({
|
|
474
|
+
shippingOption: z.object({
|
|
475
|
+
_id: z.string().describe("ShippingOption ID.").regex(
|
|
476
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
477
|
+
"Must be a valid GUID"
|
|
478
|
+
).optional().nullable(),
|
|
479
|
+
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
480
|
+
"Revision number, which increments by 1 each time the ShippingOption is updated.\nTo prevent conflicting changes,\nthe current revision must be passed when updating the ShippingOption.\n\nIgnored when creating a ShippingOption."
|
|
481
|
+
).optional().nullable(),
|
|
482
|
+
_createdDate: z.date().describe("Date and time the ShippingOption was created.").optional().nullable(),
|
|
483
|
+
_updatedDate: z.date().describe("Date and time the ShippingOption was last updated.").optional().nullable(),
|
|
484
|
+
deliveryRegionId: z.string().describe("Associated delivery region id.").regex(
|
|
485
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
486
|
+
"Must be a valid GUID"
|
|
487
|
+
).optional(),
|
|
488
|
+
deliveryRegionIds: z.array(z.string()).max(50).optional(),
|
|
489
|
+
title: z.string().describe("Delivery option configured for the ShippingOption").max(1e3).optional().nullable(),
|
|
490
|
+
estimatedDeliveryTime: z.string().describe('Estimated delivery time. For example, "2-3 business days".').max(500).optional().nullable(),
|
|
491
|
+
rates: z.array(
|
|
492
|
+
z.object({
|
|
493
|
+
amount: z.string().describe(
|
|
494
|
+
"there is an AND logic between all the conditions. Empty conditions means true.\nThe amount of the rate that will be returned if all conditions are met."
|
|
495
|
+
).optional(),
|
|
496
|
+
conditions: z.array(
|
|
497
|
+
z.object({
|
|
498
|
+
type: z.enum([
|
|
499
|
+
"BY_TOTAL_WEIGHT",
|
|
500
|
+
"BY_TOTAL_PRICE",
|
|
501
|
+
"BY_TOTAL_QUANTITY"
|
|
502
|
+
]).optional(),
|
|
503
|
+
value: z.string().describe(
|
|
504
|
+
"The value in respective to the condition type\nWeight values should be in the same weight units of the store: KG / LB\nTotal price is according to the store currency\nQuantity of items should be integers"
|
|
505
|
+
).optional(),
|
|
506
|
+
operator: z.enum(["EQ", "GT", "GTE", "LT", "LTE"]).describe("Logical operator.").optional()
|
|
507
|
+
})
|
|
508
|
+
).min(0).max(10).optional(),
|
|
509
|
+
multiplyByQuantity: z.boolean().describe(
|
|
510
|
+
"When this flag is set to true, multiply the amount by the number of line items passed on the request."
|
|
511
|
+
).optional()
|
|
512
|
+
})
|
|
513
|
+
).min(1).max(50).optional(),
|
|
514
|
+
extendedFields: z.object({
|
|
515
|
+
namespaces: z.record(z.string(), z.record(z.string(), z.any())).describe(
|
|
516
|
+
"Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\nThe value of each key is structured according to the schema defined when the extended fields were configured.\n\nYou can only access fields for which you have the appropriate permissions.\n\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields)."
|
|
517
|
+
).optional()
|
|
518
|
+
}).describe("Data Extensions").optional()
|
|
519
|
+
}).describe("Updated ShippingOption.").optional()
|
|
520
|
+
});
|
|
521
|
+
var RemoveDeliveryRegionRequest = z.object({
|
|
522
|
+
shippingOptionId: z.string().describe("ID of the ShippingOption to be updated.").regex(
|
|
523
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
524
|
+
"Must be a valid GUID"
|
|
525
|
+
),
|
|
526
|
+
deliveryRegionId: z.string().describe(
|
|
527
|
+
"ID of the delivery region that should not use this ShippingOption anymore."
|
|
528
|
+
).regex(
|
|
529
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
530
|
+
"Must be a valid GUID"
|
|
531
|
+
),
|
|
532
|
+
options: z.object({
|
|
533
|
+
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe("Revision of the ShippingOption.")
|
|
534
|
+
})
|
|
535
|
+
});
|
|
536
|
+
var RemoveDeliveryRegionResponse = z.object({
|
|
537
|
+
shippingOption: z.object({
|
|
538
|
+
_id: z.string().describe("ShippingOption ID.").regex(
|
|
539
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
540
|
+
"Must be a valid GUID"
|
|
541
|
+
).optional().nullable(),
|
|
542
|
+
revision: z.string().regex(/^-?\d+$/, "Must be a valid Int64 string").describe(
|
|
543
|
+
"Revision number, which increments by 1 each time the ShippingOption is updated.\nTo prevent conflicting changes,\nthe current revision must be passed when updating the ShippingOption.\n\nIgnored when creating a ShippingOption."
|
|
544
|
+
).optional().nullable(),
|
|
545
|
+
_createdDate: z.date().describe("Date and time the ShippingOption was created.").optional().nullable(),
|
|
546
|
+
_updatedDate: z.date().describe("Date and time the ShippingOption was last updated.").optional().nullable(),
|
|
547
|
+
deliveryRegionId: z.string().describe("Associated delivery region id.").regex(
|
|
548
|
+
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,
|
|
549
|
+
"Must be a valid GUID"
|
|
550
|
+
).optional(),
|
|
551
|
+
deliveryRegionIds: z.array(z.string()).max(50).optional(),
|
|
552
|
+
title: z.string().describe("Delivery option configured for the ShippingOption").max(1e3).optional().nullable(),
|
|
553
|
+
estimatedDeliveryTime: z.string().describe('Estimated delivery time. For example, "2-3 business days".').max(500).optional().nullable(),
|
|
554
|
+
rates: z.array(
|
|
555
|
+
z.object({
|
|
556
|
+
amount: z.string().describe(
|
|
557
|
+
"there is an AND logic between all the conditions. Empty conditions means true.\nThe amount of the rate that will be returned if all conditions are met."
|
|
558
|
+
).optional(),
|
|
559
|
+
conditions: z.array(
|
|
560
|
+
z.object({
|
|
561
|
+
type: z.enum([
|
|
562
|
+
"BY_TOTAL_WEIGHT",
|
|
563
|
+
"BY_TOTAL_PRICE",
|
|
564
|
+
"BY_TOTAL_QUANTITY"
|
|
565
|
+
]).optional(),
|
|
566
|
+
value: z.string().describe(
|
|
567
|
+
"The value in respective to the condition type\nWeight values should be in the same weight units of the store: KG / LB\nTotal price is according to the store currency\nQuantity of items should be integers"
|
|
568
|
+
).optional(),
|
|
569
|
+
operator: z.enum(["EQ", "GT", "GTE", "LT", "LTE"]).describe("Logical operator.").optional()
|
|
570
|
+
})
|
|
571
|
+
).min(0).max(10).optional(),
|
|
572
|
+
multiplyByQuantity: z.boolean().describe(
|
|
573
|
+
"When this flag is set to true, multiply the amount by the number of line items passed on the request."
|
|
574
|
+
).optional()
|
|
575
|
+
})
|
|
576
|
+
).min(1).max(50).optional(),
|
|
577
|
+
extendedFields: z.object({
|
|
578
|
+
namespaces: z.record(z.string(), z.record(z.string(), z.any())).describe(
|
|
579
|
+
"Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\nThe value of each key is structured according to the schema defined when the extended fields were configured.\n\nYou can only access fields for which you have the appropriate permissions.\n\nLearn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields)."
|
|
580
|
+
).optional()
|
|
581
|
+
}).describe("Data Extensions").optional()
|
|
582
|
+
}).describe("Updated ShippingOption.").optional()
|
|
583
|
+
});
|
|
584
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
585
|
+
0 && (module.exports = {
|
|
586
|
+
AddDeliveryRegionRequest,
|
|
587
|
+
AddDeliveryRegionResponse,
|
|
588
|
+
CreateShippingOptionRequest,
|
|
589
|
+
CreateShippingOptionResponse,
|
|
590
|
+
DeleteShippingOptionRequest,
|
|
591
|
+
DeleteShippingOptionResponse,
|
|
592
|
+
GetShippingOptionRequest,
|
|
593
|
+
GetShippingOptionResponse,
|
|
594
|
+
QueryShippingOptionsRequest,
|
|
595
|
+
QueryShippingOptionsResponse,
|
|
596
|
+
RemoveDeliveryRegionRequest,
|
|
597
|
+
RemoveDeliveryRegionResponse,
|
|
598
|
+
UpdateExtendedFieldsRequest,
|
|
599
|
+
UpdateExtendedFieldsResponse,
|
|
600
|
+
UpdateShippingOptionRequest,
|
|
601
|
+
UpdateShippingOptionResponse
|
|
602
|
+
});
|
|
603
|
+
//# sourceMappingURL=schemas.js.map
|