@wix/auto_sdk_ecom_order-fulfillments 1.0.20 → 1.0.22

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.
@@ -0,0 +1,436 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // index.typings.ts
21
+ var index_typings_exports = {};
22
+ __export(index_typings_exports, {
23
+ FulfillmentStatus: () => FulfillmentStatus,
24
+ IdentityType: () => IdentityType,
25
+ WebhookIdentityType: () => WebhookIdentityType,
26
+ bulkCreateFulfillments: () => bulkCreateFulfillments,
27
+ createFulfillment: () => createFulfillment2,
28
+ deleteFulfillment: () => deleteFulfillment2,
29
+ listFulfillmentsForMultipleOrders: () => listFulfillmentsForMultipleOrders2,
30
+ listFulfillmentsForSingleOrder: () => listFulfillmentsForSingleOrder2,
31
+ updateFulfillment: () => updateFulfillment2
32
+ });
33
+ module.exports = __toCommonJS(index_typings_exports);
34
+
35
+ // src/ecom-v1-fulfillments-order-fulfillments.universal.ts
36
+ var import_transform_error = require("@wix/sdk-runtime/transform-error");
37
+ var import_rename_all_nested_keys = require("@wix/sdk-runtime/rename-all-nested-keys");
38
+
39
+ // src/ecom-v1-fulfillments-order-fulfillments.http.ts
40
+ var import_rest_modules = require("@wix/sdk-runtime/rest-modules");
41
+ var import_timestamp = require("@wix/sdk-runtime/transformations/timestamp");
42
+ var import_timestamp2 = require("@wix/sdk-runtime/transformations/timestamp");
43
+ var import_field_mask = require("@wix/sdk-runtime/transformations/field-mask");
44
+ var import_transform_paths = require("@wix/sdk-runtime/transformations/transform-paths");
45
+ var import_rest_modules2 = require("@wix/sdk-runtime/rest-modules");
46
+ function resolveComWixEcomOrdersFulfillmentsV1FulfillmentsUrl(opts) {
47
+ const domainToMappings = {
48
+ "www.wixapis.com": [
49
+ {
50
+ srcPath: "/ecom/v1/fulfillments",
51
+ destPath: "/v1/fulfillments"
52
+ }
53
+ ],
54
+ _: [
55
+ {
56
+ srcPath: "/_api/fulfillments",
57
+ destPath: ""
58
+ },
59
+ {
60
+ srcPath: "/_api/ecom-fulfillments",
61
+ destPath: ""
62
+ }
63
+ ],
64
+ "manage._base_domain_": [
65
+ {
66
+ srcPath: "/_api/fulfillments/v1/fulfillments",
67
+ destPath: "/v1/fulfillments"
68
+ }
69
+ ]
70
+ };
71
+ return (0, import_rest_modules2.resolveUrl)(Object.assign(opts, { domainToMappings }));
72
+ }
73
+ var PACKAGE_NAME = "@wix/auto_sdk_ecom_order-fulfillments";
74
+ function listFulfillmentsForSingleOrder(payload) {
75
+ function __listFulfillmentsForSingleOrder({ host }) {
76
+ const metadata = {
77
+ entityFqdn: "wix.ecom.v1.fulfillments",
78
+ method: "GET",
79
+ methodFqn: "com.wix.ecom.orders.fulfillments.v1.Fulfillments.ListFulfillmentsForSingleOrder",
80
+ packageName: PACKAGE_NAME,
81
+ url: resolveComWixEcomOrdersFulfillmentsV1FulfillmentsUrl({
82
+ protoPath: "/v1/fulfillments/orders/{orderId}",
83
+ data: payload,
84
+ host
85
+ }),
86
+ params: (0, import_rest_modules.toURLSearchParams)(payload),
87
+ transformResponse: (payload2) => (0, import_transform_paths.transformPaths)(payload2, [
88
+ {
89
+ transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
90
+ paths: [{ path: "orderWithFulfillments.fulfillments.createdDate" }]
91
+ }
92
+ ])
93
+ };
94
+ return metadata;
95
+ }
96
+ return __listFulfillmentsForSingleOrder;
97
+ }
98
+ function listFulfillmentsForMultipleOrders(payload) {
99
+ function __listFulfillmentsForMultipleOrders({ host }) {
100
+ const metadata = {
101
+ entityFqdn: "wix.ecom.v1.fulfillments",
102
+ method: "POST",
103
+ methodFqn: "com.wix.ecom.orders.fulfillments.v1.Fulfillments.ListFulfillmentsForMultipleOrders",
104
+ packageName: PACKAGE_NAME,
105
+ url: resolveComWixEcomOrdersFulfillmentsV1FulfillmentsUrl({
106
+ protoPath: "/v1/fulfillments/list-by-ids",
107
+ data: payload,
108
+ host
109
+ }),
110
+ data: payload,
111
+ transformResponse: (payload2) => (0, import_transform_paths.transformPaths)(payload2, [
112
+ {
113
+ transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
114
+ paths: [
115
+ { path: "ordersWithFulfillments.fulfillments.createdDate" }
116
+ ]
117
+ }
118
+ ])
119
+ };
120
+ return metadata;
121
+ }
122
+ return __listFulfillmentsForMultipleOrders;
123
+ }
124
+ function createFulfillment(payload) {
125
+ function __createFulfillment({ host }) {
126
+ const serializedData = (0, import_transform_paths.transformPaths)(payload, [
127
+ {
128
+ transformFn: import_timestamp.transformSDKTimestampToRESTTimestamp,
129
+ paths: [{ path: "fulfillment.createdDate" }]
130
+ }
131
+ ]);
132
+ const metadata = {
133
+ entityFqdn: "wix.ecom.v1.fulfillments",
134
+ method: "POST",
135
+ methodFqn: "com.wix.ecom.orders.fulfillments.v1.Fulfillments.CreateFulfillment",
136
+ packageName: PACKAGE_NAME,
137
+ url: resolveComWixEcomOrdersFulfillmentsV1FulfillmentsUrl({
138
+ protoPath: "/v1/fulfillments/orders/{orderId}/create-fulfillment",
139
+ data: serializedData,
140
+ host
141
+ }),
142
+ data: serializedData,
143
+ transformResponse: (payload2) => (0, import_transform_paths.transformPaths)(payload2, [
144
+ {
145
+ transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
146
+ paths: [{ path: "orderWithFulfillments.fulfillments.createdDate" }]
147
+ }
148
+ ])
149
+ };
150
+ return metadata;
151
+ }
152
+ return __createFulfillment;
153
+ }
154
+ function updateFulfillment(payload) {
155
+ function __updateFulfillment({ host }) {
156
+ const serializedData = (0, import_transform_paths.transformPaths)(payload, [
157
+ {
158
+ transformFn: import_field_mask.transformSDKFieldMaskToRESTFieldMask,
159
+ paths: [{ path: "fieldMask" }]
160
+ },
161
+ {
162
+ transformFn: import_timestamp.transformSDKTimestampToRESTTimestamp,
163
+ paths: [{ path: "fulfillment.createdDate" }]
164
+ }
165
+ ]);
166
+ const metadata = {
167
+ entityFqdn: "wix.ecom.v1.fulfillments",
168
+ method: "PATCH",
169
+ methodFqn: "com.wix.ecom.orders.fulfillments.v1.Fulfillments.UpdateFulfillment",
170
+ packageName: PACKAGE_NAME,
171
+ url: resolveComWixEcomOrdersFulfillmentsV1FulfillmentsUrl({
172
+ protoPath: "/v1/fulfillments/{fulfillment.id}/orders/{orderId}",
173
+ data: serializedData,
174
+ host
175
+ }),
176
+ data: serializedData,
177
+ transformResponse: (payload2) => (0, import_transform_paths.transformPaths)(payload2, [
178
+ {
179
+ transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
180
+ paths: [{ path: "orderWithFulfillments.fulfillments.createdDate" }]
181
+ }
182
+ ])
183
+ };
184
+ return metadata;
185
+ }
186
+ return __updateFulfillment;
187
+ }
188
+ function deleteFulfillment(payload) {
189
+ function __deleteFulfillment({ host }) {
190
+ const metadata = {
191
+ entityFqdn: "wix.ecom.v1.fulfillments",
192
+ method: "DELETE",
193
+ methodFqn: "com.wix.ecom.orders.fulfillments.v1.Fulfillments.DeleteFulfillment",
194
+ packageName: PACKAGE_NAME,
195
+ url: resolveComWixEcomOrdersFulfillmentsV1FulfillmentsUrl({
196
+ protoPath: "/v1/fulfillments/{fulfillmentId}/orders/{orderId}",
197
+ data: payload,
198
+ host
199
+ }),
200
+ params: (0, import_rest_modules.toURLSearchParams)(payload),
201
+ transformResponse: (payload2) => (0, import_transform_paths.transformPaths)(payload2, [
202
+ {
203
+ transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
204
+ paths: [{ path: "orderWithFulfillments.fulfillments.createdDate" }]
205
+ }
206
+ ])
207
+ };
208
+ return metadata;
209
+ }
210
+ return __deleteFulfillment;
211
+ }
212
+ function bulkCreateFulfillment(payload) {
213
+ function __bulkCreateFulfillment({ host }) {
214
+ const serializedData = (0, import_transform_paths.transformPaths)(payload, [
215
+ {
216
+ transformFn: import_timestamp.transformSDKTimestampToRESTTimestamp,
217
+ paths: [{ path: "ordersWithFulfillments.fulfillments.createdDate" }]
218
+ }
219
+ ]);
220
+ const metadata = {
221
+ entityFqdn: "wix.ecom.v1.fulfillments",
222
+ method: "POST",
223
+ methodFqn: "com.wix.ecom.orders.fulfillments.v1.Fulfillments.BulkCreateFulfillment",
224
+ packageName: PACKAGE_NAME,
225
+ url: resolveComWixEcomOrdersFulfillmentsV1FulfillmentsUrl({
226
+ protoPath: "/v1/fulfillments/orders/bulk/create-fulfillments",
227
+ data: serializedData,
228
+ host
229
+ }),
230
+ data: serializedData,
231
+ transformResponse: (payload2) => (0, import_transform_paths.transformPaths)(payload2, [
232
+ {
233
+ transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
234
+ paths: [
235
+ {
236
+ path: "results.ordersWithFulfillments.fulfillments.createdDate"
237
+ }
238
+ ]
239
+ }
240
+ ])
241
+ };
242
+ return metadata;
243
+ }
244
+ return __bulkCreateFulfillment;
245
+ }
246
+
247
+ // src/ecom-v1-fulfillments-order-fulfillments.universal.ts
248
+ var IdentityType = /* @__PURE__ */ ((IdentityType2) => {
249
+ IdentityType2["UNSPECIFIED_IDENTITY_TYPE"] = "UNSPECIFIED_IDENTITY_TYPE";
250
+ IdentityType2["MEMBER"] = "MEMBER";
251
+ IdentityType2["CONTACT"] = "CONTACT";
252
+ return IdentityType2;
253
+ })(IdentityType || {});
254
+ var FulfillmentStatus = /* @__PURE__ */ ((FulfillmentStatus2) => {
255
+ FulfillmentStatus2["NOT_FULFILLED"] = "NOT_FULFILLED";
256
+ FulfillmentStatus2["FULFILLED"] = "FULFILLED";
257
+ FulfillmentStatus2["CANCELED"] = "CANCELED";
258
+ FulfillmentStatus2["PARTIALLY_FULFILLED"] = "PARTIALLY_FULFILLED";
259
+ return FulfillmentStatus2;
260
+ })(FulfillmentStatus || {});
261
+ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
262
+ WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
263
+ WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
264
+ WebhookIdentityType2["MEMBER"] = "MEMBER";
265
+ WebhookIdentityType2["WIX_USER"] = "WIX_USER";
266
+ WebhookIdentityType2["APP"] = "APP";
267
+ return WebhookIdentityType2;
268
+ })(WebhookIdentityType || {});
269
+ async function listFulfillmentsForSingleOrder2(orderId) {
270
+ const { httpClient, sideEffects } = arguments[1];
271
+ const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({ orderId });
272
+ const reqOpts = listFulfillmentsForSingleOrder(payload);
273
+ sideEffects?.onSiteCall?.();
274
+ try {
275
+ const result = await httpClient.request(reqOpts);
276
+ sideEffects?.onSuccess?.(result);
277
+ return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(result.data);
278
+ } catch (err) {
279
+ const transformedError = (0, import_transform_error.transformError)(
280
+ err,
281
+ {
282
+ spreadPathsToArguments: {},
283
+ explicitPathsToArguments: { orderId: "$[0]" },
284
+ singleArgumentUnchanged: false
285
+ },
286
+ ["orderId"]
287
+ );
288
+ sideEffects?.onError?.(err);
289
+ throw transformedError;
290
+ }
291
+ }
292
+ async function listFulfillmentsForMultipleOrders2(orderIds) {
293
+ const { httpClient, sideEffects } = arguments[1];
294
+ const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({ orderIds });
295
+ const reqOpts = listFulfillmentsForMultipleOrders(payload);
296
+ sideEffects?.onSiteCall?.();
297
+ try {
298
+ const result = await httpClient.request(reqOpts);
299
+ sideEffects?.onSuccess?.(result);
300
+ return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(result.data);
301
+ } catch (err) {
302
+ const transformedError = (0, import_transform_error.transformError)(
303
+ err,
304
+ {
305
+ spreadPathsToArguments: {},
306
+ explicitPathsToArguments: { orderIds: "$[0]" },
307
+ singleArgumentUnchanged: false
308
+ },
309
+ ["orderIds"]
310
+ );
311
+ sideEffects?.onError?.(err);
312
+ throw transformedError;
313
+ }
314
+ }
315
+ async function createFulfillment2(orderId, fulfillment) {
316
+ const { httpClient, sideEffects } = arguments[2];
317
+ const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
318
+ orderId,
319
+ fulfillment
320
+ });
321
+ const reqOpts = createFulfillment(payload);
322
+ sideEffects?.onSiteCall?.();
323
+ try {
324
+ const result = await httpClient.request(reqOpts);
325
+ sideEffects?.onSuccess?.(result);
326
+ return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(result.data);
327
+ } catch (err) {
328
+ const transformedError = (0, import_transform_error.transformError)(
329
+ err,
330
+ {
331
+ spreadPathsToArguments: {},
332
+ explicitPathsToArguments: { orderId: "$[0]", fulfillment: "$[1]" },
333
+ singleArgumentUnchanged: false
334
+ },
335
+ ["orderId", "fulfillment"]
336
+ );
337
+ sideEffects?.onError?.(err);
338
+ throw transformedError;
339
+ }
340
+ }
341
+ async function updateFulfillment2(identifiers, options) {
342
+ const { httpClient, sideEffects } = arguments[2];
343
+ const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
344
+ fulfillment: { ...options?.fulfillment, id: identifiers?.fulfillmentId },
345
+ orderId: identifiers?.orderId
346
+ });
347
+ const reqOpts = updateFulfillment(payload);
348
+ sideEffects?.onSiteCall?.();
349
+ try {
350
+ const result = await httpClient.request(reqOpts);
351
+ sideEffects?.onSuccess?.(result);
352
+ return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(result.data)?.orderWithFulfillments;
353
+ } catch (err) {
354
+ const transformedError = (0, import_transform_error.transformError)(
355
+ err,
356
+ {
357
+ spreadPathsToArguments: { fulfillment: "$[1].fulfillment" },
358
+ explicitPathsToArguments: {
359
+ "fulfillment.id": "$[0].fulfillmentId",
360
+ orderId: "$[0].orderId"
361
+ },
362
+ singleArgumentUnchanged: false
363
+ },
364
+ ["identifiers", "options"]
365
+ );
366
+ sideEffects?.onError?.(err);
367
+ throw transformedError;
368
+ }
369
+ }
370
+ async function deleteFulfillment2(identifiers) {
371
+ const { httpClient, sideEffects } = arguments[1];
372
+ const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
373
+ fulfillmentId: identifiers?.fulfillmentId,
374
+ orderId: identifiers?.orderId
375
+ });
376
+ const reqOpts = deleteFulfillment(payload);
377
+ sideEffects?.onSiteCall?.();
378
+ try {
379
+ const result = await httpClient.request(reqOpts);
380
+ sideEffects?.onSuccess?.(result);
381
+ return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(result.data);
382
+ } catch (err) {
383
+ const transformedError = (0, import_transform_error.transformError)(
384
+ err,
385
+ {
386
+ spreadPathsToArguments: {},
387
+ explicitPathsToArguments: {
388
+ fulfillmentId: "$[0].fulfillmentId",
389
+ orderId: "$[0].orderId"
390
+ },
391
+ singleArgumentUnchanged: false
392
+ },
393
+ ["identifiers"]
394
+ );
395
+ sideEffects?.onError?.(err);
396
+ throw transformedError;
397
+ }
398
+ }
399
+ async function bulkCreateFulfillments(ordersWithFulfillments) {
400
+ const { httpClient, sideEffects } = arguments[1];
401
+ const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
402
+ ordersWithFulfillments
403
+ });
404
+ const reqOpts = bulkCreateFulfillment(payload);
405
+ sideEffects?.onSiteCall?.();
406
+ try {
407
+ const result = await httpClient.request(reqOpts);
408
+ sideEffects?.onSuccess?.(result);
409
+ return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(result.data);
410
+ } catch (err) {
411
+ const transformedError = (0, import_transform_error.transformError)(
412
+ err,
413
+ {
414
+ spreadPathsToArguments: {},
415
+ explicitPathsToArguments: { ordersWithFulfillments: "$[0]" },
416
+ singleArgumentUnchanged: false
417
+ },
418
+ ["ordersWithFulfillments"]
419
+ );
420
+ sideEffects?.onError?.(err);
421
+ throw transformedError;
422
+ }
423
+ }
424
+ // Annotate the CommonJS export names for ESM import in node:
425
+ 0 && (module.exports = {
426
+ FulfillmentStatus,
427
+ IdentityType,
428
+ WebhookIdentityType,
429
+ bulkCreateFulfillments,
430
+ createFulfillment,
431
+ deleteFulfillment,
432
+ listFulfillmentsForMultipleOrders,
433
+ listFulfillmentsForSingleOrder,
434
+ updateFulfillment
435
+ });
436
+ //# sourceMappingURL=index.typings.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../index.typings.ts","../../../src/ecom-v1-fulfillments-order-fulfillments.universal.ts","../../../src/ecom-v1-fulfillments-order-fulfillments.http.ts"],"sourcesContent":["export * from './src/ecom-v1-fulfillments-order-fulfillments.universal.js';\n","import { transformError as sdkTransformError } from '@wix/sdk-runtime/transform-error';\nimport {\n renameKeysFromSDKRequestToRESTRequest,\n renameKeysFromRESTResponseToSDKResponse,\n} from '@wix/sdk-runtime/rename-all-nested-keys';\nimport { HttpClient, NonNullablePaths } from '@wix/sdk-types';\nimport * as ambassadorWixEcomV1Fulfillments from './ecom-v1-fulfillments-order-fulfillments.http.js';\n\nexport interface OrderWithFulfillments {\n /**\n * Order ID.\n * @minLength 1\n * @maxLength 100\n */\n orderId?: string;\n /** Fulfillments associated with the order. */\n fulfillments?: Fulfillment[];\n}\n\n/** for now, this is a sub-object of Orders, so can refer to order line items by id. */\nexport interface Fulfillment extends FulfillmentFulfillmentInfoOneOf {\n /** Tracking info. */\n trackingInfo?: FulfillmentTrackingInfo;\n /** Custom fulfillment info. */\n customInfo?: CustomFulfillmentInfo;\n /**\n * Fulfillment ID.\n * @format GUID\n * @readonly\n */\n _id?: string | null;\n /**\n * Fulfillment creation date and time in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.\n * @readonly\n */\n _createdDate?: Date | null;\n /**\n * Line items being fulfilled.\n * @maxSize 300\n */\n lineItems?: FulfillmentLineItem[];\n /**\n * __Optional.__ Fulfillment status.\n *\n * Supported values:\n * + `\"Pending\"`\n * + `\"Accepted\"`\n * + `\"Ready\"`\n * + `\"In_Delivery\"`\n * + `\"Fulfilled\"`\n * @minLength 1\n * @maxLength 100\n */\n status?: string | null;\n /** Fulfillment handling complete. */\n completed?: boolean | null;\n}\n\n/** @oneof */\nexport interface FulfillmentFulfillmentInfoOneOf {\n /** Tracking info. */\n trackingInfo?: FulfillmentTrackingInfo;\n /** Custom fulfillment info. */\n customInfo?: CustomFulfillmentInfo;\n}\n\nexport interface FulfillmentLineItem {\n /**\n * Line item ID (mirrors the ID of the order line item).\n * @format GUID\n */\n _id?: string;\n /**\n * Line item quantity.\n * * If this property isn't passed on creation, it defaults to the number of items not already linked to a fulfillment.\n * * If the order does not have the requested quantity of line items available to add to this fulfillment, the fulfillment will not be created and an error is returned.\n *\n * Min: `1`\n * Max: `100000`\n * @min 1\n * @max 100000\n */\n quantity?: number | null;\n}\n\nexport interface FulfillmentTrackingInfo {\n /**\n * Shipping/delivery tracking number.\n * @minLength 1\n * @maxLength 100\n */\n trackingNumber?: string | null;\n /**\n * Shipping provider. Using one of the following shipping providers will allow for auto-filling the tracking link:\n * * `'fedex'`\n * * `'ups'`\n * * `'usps'`\n * * `'dhl'`\n * * `'canadaPost'`\n * @minLength 1\n * @maxLength 100\n */\n shippingProvider?: string | null;\n /**\n * Tracking link. Auto-filled if a predefined shipping provider is used, otherwise provided on creation.\n * @minLength 1\n * @maxLength 2048\n * @format WEB_URL\n */\n trackingLink?: string | null;\n}\n\nexport interface CustomFulfillmentInfo {\n /**\n * Custom fulfillment info in key:value form.\n * @maxSize 100\n */\n fieldsData?: Record<string, string>;\n}\n\nexport interface FulfillmentCreated {\n /**\n * Order ID (auto generated upon order creation).\n * @format GUID\n */\n orderId?: string;\n /**\n * ID of the newly created fulfillment.\n * @format GUID\n */\n fulfillmentId?: string;\n /** Fulfillment creation date and time. */\n dateCreated?: Date | null;\n /** Buyer information. */\n buyerInfo?: BuyerInfo;\n /** Order fulfillment status. */\n fulfillmentStatus?: FulfillmentStatusWithLiterals;\n /** Fulfillment tracking information. */\n trackingInfo?: V2FulfillmentTrackingInfo;\n}\n\n/** Buyer Info */\nexport interface BuyerInfo {\n /**\n * Wix customer ID\n * @format GUID\n */\n _id?: string | null;\n /**\n * Deprecated (use identityType instead)\n * @readonly\n * @deprecated\n */\n type?: IdentityTypeWithLiterals;\n /** Customer type */\n identityType?: IdentityTypeWithLiterals;\n /**\n * Customer's first name\n * @readonly\n */\n firstName?: string;\n /**\n * Customer's last name\n * @readonly\n */\n lastName?: string;\n /**\n * Customer's phone number\n * @readonly\n */\n phone?: string | null;\n /**\n * Customer's email address\n * @readonly\n */\n email?: string;\n}\n\nexport enum IdentityType {\n UNSPECIFIED_IDENTITY_TYPE = 'UNSPECIFIED_IDENTITY_TYPE',\n /** Site member */\n MEMBER = 'MEMBER',\n /** Contact */\n CONTACT = 'CONTACT',\n}\n\n/** @enumType */\nexport type IdentityTypeWithLiterals =\n | IdentityType\n | 'UNSPECIFIED_IDENTITY_TYPE'\n | 'MEMBER'\n | 'CONTACT';\n\nexport enum FulfillmentStatus {\n /** None of the order items are fulfilled */\n NOT_FULFILLED = 'NOT_FULFILLED',\n /**\n * All of the order items are fulfilled\n * Orders without shipping info are fulfilled automatically\n */\n FULFILLED = 'FULFILLED',\n /** Order is canceled */\n CANCELED = 'CANCELED',\n /** Some, but not all of the order items are fulfilled */\n PARTIALLY_FULFILLED = 'PARTIALLY_FULFILLED',\n}\n\n/** @enumType */\nexport type FulfillmentStatusWithLiterals =\n | FulfillmentStatus\n | 'NOT_FULFILLED'\n | 'FULFILLED'\n | 'CANCELED'\n | 'PARTIALLY_FULFILLED';\n\nexport interface V2FulfillmentTrackingInfo {\n /**\n * Tracking number.\n * @minLength 1\n * @maxLength 100\n */\n trackingNumber?: string;\n /**\n * Shipping provider. Using the following shipping providers will allow for autofilling the tracking link:\n * * `fedex`\n * * `ups`\n * * `usps`\n * * `dhl`\n * * `canadaPost`\n * @minLength 1\n * @maxLength 100\n */\n shippingProvider?: string;\n /**\n * Tracking link - autofilled if using a predefined shipping provider, otherwise provided on creation.\n * @minLength 1\n * @maxLength 2048\n * @format WEB_URL\n */\n trackingLink?: string | null;\n}\n\nexport interface FulfillmentUpdated {\n /**\n * Order ID (auto generated upon order creation).\n * @format GUID\n */\n orderId?: string;\n /**\n * ID of the updated fulfillment.\n * @format GUID\n */\n fulfillmentId?: string;\n /** Fulfillment tracking information. */\n trackingInfo?: V2FulfillmentTrackingInfo;\n}\n\nexport interface FulfillmentDeleted {\n /**\n * Order ID (auto generated upon order creation).\n * @format GUID\n */\n orderId?: string;\n /**\n * ID of the deleted fulfillment.\n * @format GUID\n */\n fulfillmentId?: string;\n /** Order fulfillment status. */\n fulfillmentStatus?: FulfillmentStatusWithLiterals;\n}\n\nexport interface ListFulfillmentsForSingleOrderRequest {\n /**\n * Order ID for which to retrieve fulfillments.\n * @minLength 1\n * @maxLength 100\n */\n orderId: string;\n}\n\nexport interface ListFulfillmentsForSingleOrderResponse {\n /** List of fulfillments associated with the order. */\n orderWithFulfillments?: OrderWithFulfillments;\n}\n\nexport interface ListFulfillmentsForMultipleOrdersRequest {\n /**\n * List of order IDs for which to retrieve fulfillments.\n * @minSize 1\n * @maxSize 100\n */\n orderIds: string[];\n}\n\nexport interface ListFulfillmentsForMultipleOrdersResponse {\n /** List of order IDs and their associated fulfillments. */\n ordersWithFulfillments?: OrderWithFulfillments[];\n}\n\nexport interface CreateFulfillmentRequest {\n /** Order ID. */\n orderId: string;\n /** Fulfillment info. */\n fulfillment: Fulfillment;\n}\n\nexport interface CreateFulfillmentResponse {\n /** Order ID and the orders' fulfillments. */\n orderWithFulfillments?: OrderWithFulfillments;\n /** ID of created fulfillment. */\n fulfillmentId?: string;\n}\n\nexport interface UpdateFulfillmentRequest {\n /** Order ID. */\n orderId: string;\n /** Fulfillment info to update. */\n fulfillment?: Fulfillment;\n}\n\nexport interface UpdateFulfillmentResponse {\n /** Order ID and the orders' associated fulfillments after update. */\n orderWithFulfillments?: OrderWithFulfillments;\n}\n\nexport interface DeleteFulfillmentRequest {\n /**\n * Order ID.\n * @minLength 1\n * @maxLength 100\n */\n orderId: string;\n /**\n * ID of the fulfillment to delete.\n * @format GUID\n */\n fulfillmentId: string;\n}\n\nexport interface DeleteFulfillmentResponse {\n /** Order ID and the order's associated fulfillments after deletion. */\n orderWithFulfillments?: OrderWithFulfillments;\n}\n\nexport interface BulkCreateFulfillmentRequest {\n /**\n * List of order IDs and their associated fulfillments' info.\n * @minSize 1\n * @maxSize 100\n */\n ordersWithFulfillments: BulkCreateOrderWithFulfillments[];\n}\n\nexport interface BulkCreateOrderWithFulfillments {\n /**\n * Order ID.\n * @minLength 1\n * @maxLength 100\n */\n orderId?: string;\n /**\n * Fulfillments associated with the order.\n * @minSize 1\n */\n fulfillments?: Fulfillment[];\n}\n\nexport interface BulkCreateFulfillmentResponse {\n /** Items updated by bulk action. */\n results?: BulkOrderFulfillmentsResult[];\n /** Bulk action metadata. */\n bulkActionMetadata?: BulkActionMetadata;\n}\n\nexport interface BulkOrderFulfillmentsResult {\n /** Item metadata. */\n itemMetadata?: ItemMetadata;\n /** List of order IDs and their associated fulfillments. */\n ordersWithFulfillments?: OrderWithFulfillments;\n}\n\nexport interface ItemMetadata {\n /** Item ID. Should always be available, unless it's impossible (for example, when failing to create an item). */\n _id?: string | null;\n /** Index of the item within the request array. Allows for correlation between request and response items. */\n originalIndex?: number;\n /** Whether the requested action was successful for this item. When `false`, the `error` field is populated. */\n success?: boolean;\n /** Details about the error in case of failure. */\n error?: ApplicationError;\n}\n\nexport interface ApplicationError {\n /** Error code. */\n code?: string;\n /** Description of the error. */\n description?: string;\n /** Data related to the error. */\n data?: Record<string, any> | null;\n}\n\nexport interface BulkActionMetadata {\n /** Number of items that were successfully processed. */\n totalSuccesses?: number;\n /** Number of items that couldn't be processed. */\n totalFailures?: number;\n /** Number of failures without details because detailed failure threshold was exceeded. */\n undetailedFailures?: number;\n}\n\nexport interface DomainEvent extends DomainEventBodyOneOf {\n createdEvent?: EntityCreatedEvent;\n updatedEvent?: EntityUpdatedEvent;\n deletedEvent?: EntityDeletedEvent;\n actionEvent?: ActionEvent;\n /** Event ID. With this ID you can easily spot duplicated events and ignore them. */\n _id?: string;\n /**\n * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.\n * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.\n */\n entityFqdn?: string;\n /**\n * Event action name, placed at the top level to make it easier for users to dispatch messages.\n * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.\n */\n slug?: string;\n /** ID of the entity associated with the event. */\n entityId?: string;\n /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */\n eventTime?: Date | null;\n /**\n * Whether the event was triggered as a result of a privacy regulation application\n * (for example, GDPR).\n */\n triggeredByAnonymizeRequest?: boolean | null;\n /** If present, indicates the action that triggered the event. */\n originatedFrom?: string | null;\n /**\n * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.\n * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.\n */\n entityEventSequence?: string | null;\n}\n\n/** @oneof */\nexport interface DomainEventBodyOneOf {\n createdEvent?: EntityCreatedEvent;\n updatedEvent?: EntityUpdatedEvent;\n deletedEvent?: EntityDeletedEvent;\n actionEvent?: ActionEvent;\n}\n\nexport interface EntityCreatedEvent {\n entity?: string;\n}\n\nexport interface RestoreInfo {\n deletedDate?: Date | null;\n}\n\nexport interface EntityUpdatedEvent {\n /**\n * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.\n * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.\n * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.\n */\n currentEntity?: string;\n}\n\nexport interface EntityDeletedEvent {\n /** Entity that was deleted. */\n deletedEntity?: string | null;\n}\n\nexport interface ActionEvent {\n body?: string;\n}\n\nexport interface MessageEnvelope {\n /**\n * App instance ID.\n * @format GUID\n */\n instanceId?: string | null;\n /**\n * Event type.\n * @maxLength 150\n */\n eventType?: string;\n /** The identification type and identity data. */\n identity?: IdentificationData;\n /** Stringify payload. */\n data?: string;\n}\n\nexport interface IdentificationData extends IdentificationDataIdOneOf {\n /**\n * ID of a site visitor that has not logged in to the site.\n * @format GUID\n */\n anonymousVisitorId?: string;\n /**\n * ID of a site visitor that has logged in to the site.\n * @format GUID\n */\n memberId?: string;\n /**\n * ID of a Wix user (site owner, contributor, etc.).\n * @format GUID\n */\n wixUserId?: string;\n /**\n * ID of an app.\n * @format GUID\n */\n appId?: string;\n /** @readonly */\n identityType?: WebhookIdentityTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface IdentificationDataIdOneOf {\n /**\n * ID of a site visitor that has not logged in to the site.\n * @format GUID\n */\n anonymousVisitorId?: string;\n /**\n * ID of a site visitor that has logged in to the site.\n * @format GUID\n */\n memberId?: string;\n /**\n * ID of a Wix user (site owner, contributor, etc.).\n * @format GUID\n */\n wixUserId?: string;\n /**\n * ID of an app.\n * @format GUID\n */\n appId?: string;\n}\n\nexport enum WebhookIdentityType {\n UNKNOWN = 'UNKNOWN',\n ANONYMOUS_VISITOR = 'ANONYMOUS_VISITOR',\n MEMBER = 'MEMBER',\n WIX_USER = 'WIX_USER',\n APP = 'APP',\n}\n\n/** @enumType */\nexport type WebhookIdentityTypeWithLiterals =\n | WebhookIdentityType\n | 'UNKNOWN'\n | 'ANONYMOUS_VISITOR'\n | 'MEMBER'\n | 'WIX_USER'\n | 'APP';\nexport type CreateFulfillmentApplicationErrors = {\n code?: 'TRACKING_NUMBER_ALREADY_EXISTS';\n description?: string;\n data?: Record<string, any>;\n};\nexport type UpdateFulfillmentApplicationErrors = {\n code?: 'TRACKING_NUMBER_ALREADY_EXISTS';\n description?: string;\n data?: Record<string, any>;\n};\n\nexport interface BaseEventMetadata {\n /**\n * App instance ID.\n * @format GUID\n */\n instanceId?: string | null;\n /**\n * Event type.\n * @maxLength 150\n */\n eventType?: string;\n /** The identification type and identity data. */\n identity?: IdentificationData;\n}\n\nexport interface EventMetadata extends BaseEventMetadata {\n /** Event ID. With this ID you can easily spot duplicated events and ignore them. */\n _id?: string;\n /**\n * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.\n * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.\n */\n entityFqdn?: string;\n /**\n * Event action name, placed at the top level to make it easier for users to dispatch messages.\n * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.\n */\n slug?: string;\n /** ID of the entity associated with the event. */\n entityId?: string;\n /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */\n eventTime?: Date | null;\n /**\n * Whether the event was triggered as a result of a privacy regulation application\n * (for example, GDPR).\n */\n triggeredByAnonymizeRequest?: boolean | null;\n /** If present, indicates the action that triggered the event. */\n originatedFrom?: string | null;\n /**\n * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.\n * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.\n */\n entityEventSequence?: string | null;\n}\n\nexport interface FulfillmentsUpdatedEnvelope {\n entity: OrderWithFulfillments;\n metadata: EventMetadata;\n}\n\n/**\n * Triggered when one or more of an order's fulfillments are created, updated, or deleted.\n *\n * The response contains the order's ID and details about all of its fulfillments following the change.\n * @permissionScope Manage Stores - all permissions\n * @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES\n * @permissionScope Manage Stores\n * @permissionScopeId SCOPE.STORES.MANAGE-STORES\n * @permissionScope Read eCommerce - all read permissions\n * @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM\n * @permissionScope Read Orders\n * @permissionScopeId SCOPE.DC-STORES.READ-ORDERS\n * @permissionScope Read Stores - all read permissions\n * @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES\n * @permissionScope Manage Restaurants - all permissions\n * @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES\n * @permissionScope Manage eCommerce - all permissions\n * @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM\n * @permissionScope Manage Orders\n * @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS\n * @permissionId ECOM.READ_FULFILLMENTS\n * @webhook\n * @eventType wix.ecom.v1.fulfillments_updated\n * @serviceIdentifier com.wix.ecom.orders.fulfillments.v1.Fulfillments\n * @slug updated\n */\nexport declare function onFulfillmentsUpdated(\n handler: (event: FulfillmentsUpdatedEnvelope) => void | Promise<void>\n): void;\n\ntype FulfillmentsNonNullablePaths = `orderId` | `fulfillments`;\n\n/**\n * Retrieves fulfillments associated with a specified order.\n *\n *\n * The `listFulfillmentsForSingleOrder()` function returns a Promise that resolves when the fulfillments are retrieved.\n * @param orderId - Order ID for which to retrieve fulfillments.\n * @public\n * @requiredField orderId\n * @permissionId ECOM.READ_FULFILLMENTS\n * @applicableIdentity APP\n * @applicableIdentity MEMBER\n * @fqn com.wix.ecom.orders.fulfillments.v1.Fulfillments.ListFulfillmentsForSingleOrder\n */\nexport async function listFulfillmentsForSingleOrder(\n orderId: string\n): Promise<\n NonNullablePaths<\n ListFulfillmentsForSingleOrderResponse,\n {\n [P in FulfillmentsNonNullablePaths]: `orderWithFulfillments.${P}`;\n }[FulfillmentsNonNullablePaths]\n >\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[1] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({ orderId: orderId });\n\n const reqOpts =\n ambassadorWixEcomV1Fulfillments.listFulfillmentsForSingleOrder(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { orderId: '$[0]' },\n singleArgumentUnchanged: false,\n },\n ['orderId']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\n/**\n * Retrieves fulfillments associated with multiple specified orders.\n *\n *\n * The `listFulfillmentsForMultipleOrders()` function returns a Promise that resolves when the fulfillments are retrieved.\n * @param orderIds - List of order IDs for which to retrieve fulfillments.\n * @public\n * @requiredField orderIds\n * @permissionId ECOM.READ_FULFILLMENTS\n * @applicableIdentity APP\n * @applicableIdentity MEMBER\n * @fqn com.wix.ecom.orders.fulfillments.v1.Fulfillments.ListFulfillmentsForMultipleOrders\n */\nexport async function listFulfillmentsForMultipleOrders(\n orderIds: string[]\n): Promise<\n NonNullablePaths<\n ListFulfillmentsForMultipleOrdersResponse,\n {\n [P in FulfillmentsNonNullablePaths]: `ordersWithFulfillments.${number}.${P}`;\n }[FulfillmentsNonNullablePaths]\n >\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[1] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({ orderIds: orderIds });\n\n const reqOpts =\n ambassadorWixEcomV1Fulfillments.listFulfillmentsForMultipleOrders(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { orderIds: '$[0]' },\n singleArgumentUnchanged: false,\n },\n ['orderIds']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\n/**\n * Creates an order fulfillment.\n *\n *\n * The `createFulfillment()` function returns a Promise that resolves when the fulfillment is created.\n * @param orderId - Order ID.\n * @param fulfillment - Fulfillment info.\n * @public\n * @requiredField fulfillment\n * @requiredField fulfillment.lineItems\n * @requiredField fulfillment.lineItems._id\n * @requiredField orderId\n * @permissionId ECOM.MODIFY_FULFILLMENTS\n * @applicableIdentity APP\n * @fqn com.wix.ecom.orders.fulfillments.v1.Fulfillments.CreateFulfillment\n */\nexport async function createFulfillment(\n orderId: string,\n fulfillment: NonNullablePaths<\n Fulfillment,\n `lineItems` | `lineItems.${number}._id`\n >\n): Promise<\n NonNullablePaths<\n CreateFulfillmentResponse,\n | {\n [P in FulfillmentsNonNullablePaths]: `orderWithFulfillments.${P}`;\n }[FulfillmentsNonNullablePaths]\n | `fulfillmentId`\n > & {\n __applicationErrorsType?: CreateFulfillmentApplicationErrors;\n }\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[2] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n orderId: orderId,\n fulfillment: fulfillment,\n });\n\n const reqOpts = ambassadorWixEcomV1Fulfillments.createFulfillment(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { orderId: '$[0]', fulfillment: '$[1]' },\n singleArgumentUnchanged: false,\n },\n ['orderId', 'fulfillment']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\n/**\n * Updates a fulfillment's properties.\n * To update a field's value, include the new value in the `fulfillment` field in the body params.\n * To remove a field's value, pass `null`.\n *\n *\n * The `updateFulfillment()` function returns a Promise that resolves when the fulfillment is updated.\n *\n * > **Note:** Updating line item IDs or fulfilled quantities is not allowed. To update line item IDs or quantities, delete the fulfillment and create it again.\n * @public\n * @requiredField identifiers\n * @requiredField identifiers.fulfillmentId\n * @requiredField identifiers.orderId\n * @param identifiers - Order and fulfillment IDs to be updated.\n * @param options - Available options to use when updating a fulfillment.\n * @permissionId ECOM.MODIFY_FULFILLMENTS\n * @applicableIdentity APP\n * @returns Order ID and the orders' associated fulfillments after update.\n * @fqn com.wix.ecom.orders.fulfillments.v1.Fulfillments.UpdateFulfillment\n */\nexport async function updateFulfillment(\n identifiers: NonNullablePaths<\n UpdateFulfillmentIdentifiers,\n `fulfillmentId` | `orderId`\n >,\n options?: UpdateFulfillmentOptions\n): Promise<\n NonNullablePaths<OrderWithFulfillments, FulfillmentsNonNullablePaths> & {\n __applicationErrorsType?: UpdateFulfillmentApplicationErrors;\n }\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[2] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n fulfillment: { ...options?.fulfillment, id: identifiers?.fulfillmentId },\n orderId: identifiers?.orderId,\n });\n\n const reqOpts = ambassadorWixEcomV1Fulfillments.updateFulfillment(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)\n ?.orderWithFulfillments!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: { fulfillment: '$[1].fulfillment' },\n explicitPathsToArguments: {\n 'fulfillment.id': '$[0].fulfillmentId',\n orderId: '$[0].orderId',\n },\n singleArgumentUnchanged: false,\n },\n ['identifiers', 'options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface UpdateFulfillmentOptions {\n /** Fulfillment info. */\n fulfillment: {\n /** Tracking info. */\n trackingInfo?: FulfillmentTrackingInfo;\n /** Custom fulfillment info. */\n customInfo?: CustomFulfillmentInfo;\n /**\n * Fulfillment ID.\n * @format GUID\n * @readonly\n */\n _id?: string | null;\n /**\n * Fulfillment creation date and time in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.\n * @readonly\n */\n _createdDate?: Date | null;\n /**\n * Line items being fulfilled.\n * @maxSize 300\n */\n lineItems?: FulfillmentLineItem[];\n /**\n * __Optional.__ Fulfillment status.\n *\n * Supported values:\n * + `\"Pending\"`\n * + `\"Accepted\"`\n * + `\"Ready\"`\n * + `\"In_Delivery\"`\n * + `\"Fulfilled\"`\n * @minLength 1\n * @maxLength 100\n */\n status?: string | null;\n /** Fulfillment handling complete. */\n completed?: boolean | null;\n };\n}\n\nexport interface UpdateFulfillmentIdentifiers {\n /**\n * ID of the fulfillment to be updated.\n * @format GUID\n * @readonly\n */\n fulfillmentId?: string | null;\n /** Order ID. */\n orderId: string;\n}\n\n/**\n * Deletes an existing order fulfillment.\n *\n *\n * The `deleteFulfillment()` function returns a Promise that resolves when the fulfillment is deleted.\n * @public\n * @requiredField identifiers\n * @requiredField identifiers.fulfillmentId\n * @requiredField identifiers.orderId\n * @param identifiers - Order and fulfillment IDs.\n * @permissionId ECOM.MODIFY_FULFILLMENTS\n * @applicableIdentity APP\n * @fqn com.wix.ecom.orders.fulfillments.v1.Fulfillments.DeleteFulfillment\n */\nexport async function deleteFulfillment(\n identifiers: NonNullablePaths<\n DeleteFulfillmentIdentifiers,\n `fulfillmentId` | `orderId`\n >\n): Promise<\n NonNullablePaths<\n DeleteFulfillmentResponse,\n {\n [P in FulfillmentsNonNullablePaths]: `orderWithFulfillments.${P}`;\n }[FulfillmentsNonNullablePaths]\n >\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[1] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n fulfillmentId: identifiers?.fulfillmentId,\n orderId: identifiers?.orderId,\n });\n\n const reqOpts = ambassadorWixEcomV1Fulfillments.deleteFulfillment(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n fulfillmentId: '$[0].fulfillmentId',\n orderId: '$[0].orderId',\n },\n singleArgumentUnchanged: false,\n },\n ['identifiers']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface DeleteFulfillmentIdentifiers {\n /**\n * ID of the fulfillment to delete.\n * @format GUID\n */\n fulfillmentId: string;\n /**\n * Order ID.\n * @minLength 1\n * @maxLength 100\n */\n orderId: string;\n}\n\n/**\n * Creates multiple fulfillments for one or more orders.\n *\n *\n * The `bulkCreateFulfillments()` function returns a Promise that resolves when the fulfillments are created.\n * @param ordersWithFulfillments - List of order IDs and their associated fulfillments' info.\n * @public\n * @requiredField ordersWithFulfillments\n * @requiredField ordersWithFulfillments.fulfillments\n * @requiredField ordersWithFulfillments.fulfillments.lineItems\n * @requiredField ordersWithFulfillments.fulfillments.lineItems._id\n * @requiredField ordersWithFulfillments.orderId\n * @permissionId ECOM.MODIFY_FULFILLMENTS\n * @applicableIdentity APP\n * @fqn com.wix.ecom.orders.fulfillments.v1.Fulfillments.BulkCreateFulfillment\n */\nexport async function bulkCreateFulfillments(\n ordersWithFulfillments: NonNullablePaths<\n BulkCreateOrderWithFulfillments,\n | `fulfillments`\n | `fulfillments.${number}.lineItems`\n | `fulfillments.${number}.lineItems.${number}._id`\n | `orderId`\n >[]\n): Promise<\n NonNullablePaths<\n BulkCreateFulfillmentResponse,\n | `results`\n | `results.${number}.itemMetadata.originalIndex`\n | `results.${number}.itemMetadata.success`\n | `results.${number}.itemMetadata.error.code`\n | `results.${number}.itemMetadata.error.description`\n | {\n [P in FulfillmentsNonNullablePaths]: `results.${number}.ordersWithFulfillments.${P}`;\n }[FulfillmentsNonNullablePaths]\n | `bulkActionMetadata.totalSuccesses`\n | `bulkActionMetadata.totalFailures`\n | `bulkActionMetadata.undetailedFailures`\n >\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[1] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n ordersWithFulfillments: ordersWithFulfillments,\n });\n\n const reqOpts =\n ambassadorWixEcomV1Fulfillments.bulkCreateFulfillment(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { ordersWithFulfillments: '$[0]' },\n singleArgumentUnchanged: false,\n },\n ['ordersWithFulfillments']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformSDKTimestampToRESTTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformSDKFieldMaskToRESTFieldMask } from '@wix/sdk-runtime/transformations/field-mask';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveComWixEcomOrdersFulfillmentsV1FulfillmentsUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'www.wixapis.com': [\n {\n srcPath: '/ecom/v1/fulfillments',\n destPath: '/v1/fulfillments',\n },\n ],\n _: [\n {\n srcPath: '/_api/fulfillments',\n destPath: '',\n },\n {\n srcPath: '/_api/ecom-fulfillments',\n destPath: '',\n },\n ],\n 'manage._base_domain_': [\n {\n srcPath: '/_api/fulfillments/v1/fulfillments',\n destPath: '/v1/fulfillments',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_ecom_order-fulfillments';\n\n/**\n * Retrieves fulfillments associated with a specified order.\n *\n *\n * The `listFulfillmentsForSingleOrder()` function returns a Promise that resolves when the fulfillments are retrieved.\n */\nexport function listFulfillmentsForSingleOrder(\n payload: object\n): RequestOptionsFactory<any> {\n function __listFulfillmentsForSingleOrder({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.ecom.v1.fulfillments',\n method: 'GET' as any,\n methodFqn:\n 'com.wix.ecom.orders.fulfillments.v1.Fulfillments.ListFulfillmentsForSingleOrder',\n packageName: PACKAGE_NAME,\n url: resolveComWixEcomOrdersFulfillmentsV1FulfillmentsUrl({\n protoPath: '/v1/fulfillments/orders/{orderId}',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [{ path: 'orderWithFulfillments.fulfillments.createdDate' }],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __listFulfillmentsForSingleOrder;\n}\n\n/**\n * Retrieves fulfillments associated with multiple specified orders.\n *\n *\n * The `listFulfillmentsForMultipleOrders()` function returns a Promise that resolves when the fulfillments are retrieved.\n */\nexport function listFulfillmentsForMultipleOrders(\n payload: object\n): RequestOptionsFactory<any> {\n function __listFulfillmentsForMultipleOrders({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.ecom.v1.fulfillments',\n method: 'POST' as any,\n methodFqn:\n 'com.wix.ecom.orders.fulfillments.v1.Fulfillments.ListFulfillmentsForMultipleOrders',\n packageName: PACKAGE_NAME,\n url: resolveComWixEcomOrdersFulfillmentsV1FulfillmentsUrl({\n protoPath: '/v1/fulfillments/list-by-ids',\n data: payload,\n host,\n }),\n data: payload,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'ordersWithFulfillments.fulfillments.createdDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __listFulfillmentsForMultipleOrders;\n}\n\n/**\n * Creates an order fulfillment.\n *\n *\n * The `createFulfillment()` function returns a Promise that resolves when the fulfillment is created.\n */\nexport function createFulfillment(payload: object): RequestOptionsFactory<any> {\n function __createFulfillment({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [{ path: 'fulfillment.createdDate' }],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.ecom.v1.fulfillments',\n method: 'POST' as any,\n methodFqn:\n 'com.wix.ecom.orders.fulfillments.v1.Fulfillments.CreateFulfillment',\n packageName: PACKAGE_NAME,\n url: resolveComWixEcomOrdersFulfillmentsV1FulfillmentsUrl({\n protoPath: '/v1/fulfillments/orders/{orderId}/create-fulfillment',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [{ path: 'orderWithFulfillments.fulfillments.createdDate' }],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __createFulfillment;\n}\n\n/**\n * Updates a fulfillment's properties.\n * To update a field's value, include the new value in the `fulfillment` field in the body params.\n * To remove a field's value, pass `null`.\n *\n *\n * The `updateFulfillment()` function returns a Promise that resolves when the fulfillment is updated.\n *\n * > **Note:** Updating line item IDs or fulfilled quantities is not allowed. To update line item IDs or quantities, delete the fulfillment and create it again.\n */\nexport function updateFulfillment(payload: object): RequestOptionsFactory<any> {\n function __updateFulfillment({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKFieldMaskToRESTFieldMask,\n paths: [{ path: 'fieldMask' }],\n },\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [{ path: 'fulfillment.createdDate' }],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.ecom.v1.fulfillments',\n method: 'PATCH' as any,\n methodFqn:\n 'com.wix.ecom.orders.fulfillments.v1.Fulfillments.UpdateFulfillment',\n packageName: PACKAGE_NAME,\n url: resolveComWixEcomOrdersFulfillmentsV1FulfillmentsUrl({\n protoPath: '/v1/fulfillments/{fulfillment.id}/orders/{orderId}',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [{ path: 'orderWithFulfillments.fulfillments.createdDate' }],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __updateFulfillment;\n}\n\n/**\n * Deletes an existing order fulfillment.\n *\n *\n * The `deleteFulfillment()` function returns a Promise that resolves when the fulfillment is deleted.\n */\nexport function deleteFulfillment(payload: object): RequestOptionsFactory<any> {\n function __deleteFulfillment({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.ecom.v1.fulfillments',\n method: 'DELETE' as any,\n methodFqn:\n 'com.wix.ecom.orders.fulfillments.v1.Fulfillments.DeleteFulfillment',\n packageName: PACKAGE_NAME,\n url: resolveComWixEcomOrdersFulfillmentsV1FulfillmentsUrl({\n protoPath: '/v1/fulfillments/{fulfillmentId}/orders/{orderId}',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [{ path: 'orderWithFulfillments.fulfillments.createdDate' }],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __deleteFulfillment;\n}\n\n/**\n * Creates multiple fulfillments for one or more orders.\n *\n *\n * The `bulkCreateFulfillments()` function returns a Promise that resolves when the fulfillments are created.\n */\nexport function bulkCreateFulfillment(\n payload: object\n): RequestOptionsFactory<any> {\n function __bulkCreateFulfillment({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [{ path: 'ordersWithFulfillments.fulfillments.createdDate' }],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.ecom.v1.fulfillments',\n method: 'POST' as any,\n methodFqn:\n 'com.wix.ecom.orders.fulfillments.v1.Fulfillments.BulkCreateFulfillment',\n packageName: PACKAGE_NAME,\n url: resolveComWixEcomOrdersFulfillmentsV1FulfillmentsUrl({\n protoPath: '/v1/fulfillments/orders/bulk/create-fulfillments',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n {\n path: 'results.ordersWithFulfillments.fulfillments.createdDate',\n },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __bulkCreateFulfillment;\n}\n"],"mappings":"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","names":["createFulfillment","deleteFulfillment","listFulfillmentsForMultipleOrders","listFulfillmentsForSingleOrder","updateFulfillment","import_timestamp","import_rest_modules","payload","IdentityType","FulfillmentStatus","WebhookIdentityType","listFulfillmentsForSingleOrder","sdkTransformError","listFulfillmentsForMultipleOrders","createFulfillment","updateFulfillment","deleteFulfillment"]}
@@ -1,4 +1,5 @@
1
- import { o as ListFulfillmentsForSingleOrderRequest$1, L as ListFulfillmentsForSingleOrderResponse$1, p as ListFulfillmentsForMultipleOrdersRequest$1, a as ListFulfillmentsForMultipleOrdersResponse$1, q as CreateFulfillmentRequest$1, C as CreateFulfillmentResponse$1, r as UpdateFulfillmentRequest$1, s as UpdateFulfillmentResponse$1, t as DeleteFulfillmentRequest$1, c as DeleteFulfillmentResponse$1, u as BulkCreateFulfillmentRequest$1, d as BulkCreateFulfillmentResponse$1 } from './ecom-v1-fulfillments-order-fulfillments.universal-DOM-x30R.js';
1
+ import { ListFulfillmentsForSingleOrderRequest as ListFulfillmentsForSingleOrderRequest$1, ListFulfillmentsForSingleOrderResponse as ListFulfillmentsForSingleOrderResponse$1, ListFulfillmentsForMultipleOrdersRequest as ListFulfillmentsForMultipleOrdersRequest$1, ListFulfillmentsForMultipleOrdersResponse as ListFulfillmentsForMultipleOrdersResponse$1, CreateFulfillmentRequest as CreateFulfillmentRequest$1, CreateFulfillmentResponse as CreateFulfillmentResponse$1, UpdateFulfillmentRequest as UpdateFulfillmentRequest$1, UpdateFulfillmentResponse as UpdateFulfillmentResponse$1, DeleteFulfillmentRequest as DeleteFulfillmentRequest$1, DeleteFulfillmentResponse as DeleteFulfillmentResponse$1, BulkCreateFulfillmentRequest as BulkCreateFulfillmentRequest$1, BulkCreateFulfillmentResponse as BulkCreateFulfillmentResponse$1 } from './index.typings.js';
2
+ import '@wix/sdk-types';
2
3
 
3
4
  interface OrderWithFulfillments {
4
5
  /**
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { L as ListFulfillmentsForSingleOrderResponse, a as ListFulfillmentsForMultipleOrdersResponse, F as Fulfillment, C as CreateFulfillmentResponse, U as UpdateFulfillmentIdentifiers, b as UpdateFulfillmentOptions, O as OrderWithFulfillments, D as DeleteFulfillmentIdentifiers, c as DeleteFulfillmentResponse, B as BulkCreateOrderWithFulfillments, d as BulkCreateFulfillmentResponse, e as FulfillmentsUpdatedEnvelope } from './ecom-v1-fulfillments-order-fulfillments.universal-DOM-x30R.mjs';
3
- export { J as ActionEvent, A as ApplicationError, P as BaseEventMetadata, x as BulkActionMetadata, u as BulkCreateFulfillmentRequest, v as BulkOrderFulfillmentsResult, l as BuyerInfo, q as CreateFulfillmentRequest, j as CustomFulfillmentInfo, t as DeleteFulfillmentRequest, y as DomainEvent, z as DomainEventBodyOneOf, E as EntityCreatedEvent, H as EntityDeletedEvent, G as EntityUpdatedEvent, Q as EventMetadata, k as FulfillmentCreated, n as FulfillmentDeleted, g as FulfillmentFulfillmentInfoOneOf, h as FulfillmentLineItem, f as FulfillmentStatus, i as FulfillmentTrackingInfo, m as FulfillmentUpdated, K as IdentificationData, N as IdentificationDataIdOneOf, I as IdentityType, w as ItemMetadata, p as ListFulfillmentsForMultipleOrdersRequest, o as ListFulfillmentsForSingleOrderRequest, M as MessageEnvelope, R as RestoreInfo, r as UpdateFulfillmentRequest, s as UpdateFulfillmentResponse, V as V2FulfillmentTrackingInfo, W as WebhookIdentityType } from './ecom-v1-fulfillments-order-fulfillments.universal-DOM-x30R.mjs';
2
+ import { ListFulfillmentsForSingleOrderResponse, ListFulfillmentsForMultipleOrdersResponse, Fulfillment, CreateFulfillmentResponse, CreateFulfillmentApplicationErrors, UpdateFulfillmentIdentifiers, UpdateFulfillmentOptions, OrderWithFulfillments, UpdateFulfillmentApplicationErrors, DeleteFulfillmentIdentifiers, DeleteFulfillmentResponse, BulkCreateOrderWithFulfillments, BulkCreateFulfillmentResponse, FulfillmentsUpdatedEnvelope } from './index.typings.mjs';
3
+ export { ActionEvent, ApplicationError, BaseEventMetadata, BulkActionMetadata, BulkCreateFulfillmentRequest, BulkOrderFulfillmentsResult, BuyerInfo, CreateFulfillmentRequest, CustomFulfillmentInfo, DeleteFulfillmentRequest, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventMetadata, FulfillmentCreated, FulfillmentDeleted, FulfillmentFulfillmentInfoOneOf, FulfillmentLineItem, FulfillmentStatus, FulfillmentTrackingInfo, FulfillmentUpdated, IdentificationData, IdentificationDataIdOneOf, IdentityType, ItemMetadata, ListFulfillmentsForMultipleOrdersRequest, ListFulfillmentsForSingleOrderRequest, MessageEnvelope, RestoreInfo, UpdateFulfillmentRequest, UpdateFulfillmentResponse, V2FulfillmentTrackingInfo, WebhookIdentityType } from './index.typings.mjs';
4
4
 
5
5
  declare function listFulfillmentsForSingleOrder$1(httpClient: HttpClient): ListFulfillmentsForSingleOrderSignature;
6
6
  interface ListFulfillmentsForSingleOrderSignature {
@@ -34,7 +34,9 @@ interface CreateFulfillmentSignature {
34
34
  * @param - Order ID.
35
35
  * @param - Fulfillment info.
36
36
  */
37
- (orderId: string, fulfillment: Fulfillment): Promise<CreateFulfillmentResponse>;
37
+ (orderId: string, fulfillment: Fulfillment): Promise<CreateFulfillmentResponse & {
38
+ __applicationErrorsType?: CreateFulfillmentApplicationErrors | undefined;
39
+ }>;
38
40
  }
39
41
  declare function updateFulfillment$1(httpClient: HttpClient): UpdateFulfillmentSignature;
40
42
  interface UpdateFulfillmentSignature {
@@ -51,7 +53,9 @@ interface UpdateFulfillmentSignature {
51
53
  * @param - Available options to use when updating a fulfillment.
52
54
  * @returns Order ID and the orders' associated fulfillments after update.
53
55
  */
54
- (identifiers: UpdateFulfillmentIdentifiers, options?: UpdateFulfillmentOptions | undefined): Promise<OrderWithFulfillments>;
56
+ (identifiers: UpdateFulfillmentIdentifiers, options?: UpdateFulfillmentOptions | undefined): Promise<OrderWithFulfillments & {
57
+ __applicationErrorsType?: UpdateFulfillmentApplicationErrors | undefined;
58
+ }>;
55
59
  }
56
60
  declare function deleteFulfillment$1(httpClient: HttpClient): DeleteFulfillmentSignature;
57
61
  interface DeleteFulfillmentSignature {