@medusajs/js-sdk 0.0.2-snapshot-20241022123018 → 0.0.2-snapshot-20241022143805

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. package/dist/admin/api-key.d.ts +144 -1
  2. package/dist/admin/api-key.d.ts.map +1 -1
  3. package/dist/admin/api-key.js +143 -0
  4. package/dist/admin/api-key.js.map +1 -1
  5. package/dist/admin/campaign.d.ts +135 -0
  6. package/dist/admin/campaign.d.ts.map +1 -1
  7. package/dist/admin/campaign.js +135 -0
  8. package/dist/admin/campaign.js.map +1 -1
  9. package/dist/admin/claim.d.ts +542 -19
  10. package/dist/admin/claim.d.ts.map +1 -1
  11. package/dist/admin/claim.js +523 -0
  12. package/dist/admin/claim.js.map +1 -1
  13. package/dist/admin/currency.d.ts +80 -1
  14. package/dist/admin/currency.d.ts.map +1 -1
  15. package/dist/admin/currency.js +81 -2
  16. package/dist/admin/currency.js.map +1 -1
  17. package/dist/admin/customer-group.d.ts +152 -2
  18. package/dist/admin/customer-group.d.ts.map +1 -1
  19. package/dist/admin/customer-group.js +150 -0
  20. package/dist/admin/customer-group.js.map +1 -1
  21. package/dist/admin/customer.d.ts +135 -13
  22. package/dist/admin/customer.d.ts.map +1 -1
  23. package/dist/admin/customer.js +130 -0
  24. package/dist/admin/customer.js.map +1 -1
  25. package/dist/admin/exchange.d.ts +471 -16
  26. package/dist/admin/exchange.d.ts.map +1 -1
  27. package/dist/admin/exchange.js +455 -0
  28. package/dist/admin/exchange.js.map +1 -1
  29. package/dist/admin/fulfillment-provider.d.ts +47 -0
  30. package/dist/admin/fulfillment-provider.d.ts.map +1 -1
  31. package/dist/admin/fulfillment-provider.js +47 -0
  32. package/dist/admin/fulfillment-provider.js.map +1 -1
  33. package/dist/esm/admin/api-key.d.ts +144 -1
  34. package/dist/esm/admin/api-key.d.ts.map +1 -1
  35. package/dist/esm/admin/api-key.js +143 -0
  36. package/dist/esm/admin/api-key.js.map +1 -1
  37. package/dist/esm/admin/campaign.d.ts +135 -0
  38. package/dist/esm/admin/campaign.d.ts.map +1 -1
  39. package/dist/esm/admin/campaign.js +135 -0
  40. package/dist/esm/admin/campaign.js.map +1 -1
  41. package/dist/esm/admin/claim.d.ts +542 -19
  42. package/dist/esm/admin/claim.d.ts.map +1 -1
  43. package/dist/esm/admin/claim.js +523 -0
  44. package/dist/esm/admin/claim.js.map +1 -1
  45. package/dist/esm/admin/currency.d.ts +80 -1
  46. package/dist/esm/admin/currency.d.ts.map +1 -1
  47. package/dist/esm/admin/currency.js +81 -2
  48. package/dist/esm/admin/currency.js.map +1 -1
  49. package/dist/esm/admin/customer-group.d.ts +152 -2
  50. package/dist/esm/admin/customer-group.d.ts.map +1 -1
  51. package/dist/esm/admin/customer-group.js +150 -0
  52. package/dist/esm/admin/customer-group.js.map +1 -1
  53. package/dist/esm/admin/customer.d.ts +135 -13
  54. package/dist/esm/admin/customer.d.ts.map +1 -1
  55. package/dist/esm/admin/customer.js +130 -0
  56. package/dist/esm/admin/customer.js.map +1 -1
  57. package/dist/esm/admin/exchange.d.ts +471 -16
  58. package/dist/esm/admin/exchange.d.ts.map +1 -1
  59. package/dist/esm/admin/exchange.js +455 -0
  60. package/dist/esm/admin/exchange.js.map +1 -1
  61. package/dist/esm/admin/fulfillment-provider.d.ts +47 -0
  62. package/dist/esm/admin/fulfillment-provider.d.ts.map +1 -1
  63. package/dist/esm/admin/fulfillment-provider.js +47 -0
  64. package/dist/esm/admin/fulfillment-provider.js.map +1 -1
  65. package/package.json +2 -2
@@ -8,18 +8,115 @@ class Exchange {
8
8
  constructor(client) {
9
9
  this.client = client;
10
10
  }
11
+ /**
12
+ * This method retrieves a paginated list of exchanges. It sends a request to the
13
+ * [List Exchanges](https://docs.medusajs.com/v2/api/admin#exchanges_getexchanges)
14
+ * API route.
15
+ *
16
+ * @param query - Filters and pagination configurations.
17
+ * @param headers - Headers to pass in the request.
18
+ * @returns The paginated list of exchanges.
19
+ *
20
+ * @example
21
+ * To retrieve the list of exchanges:
22
+ *
23
+ * ```ts
24
+ * sdk.admin.exchange.list()
25
+ * .then(({ exchanges, count, limit, offset }) => {
26
+ * console.log(exchanges)
27
+ * })
28
+ * ```
29
+ *
30
+ * To configure the pagination, pass the `limit` and `offset` query parameters.
31
+ *
32
+ * For example, to retrieve only 10 items and skip 10 items:
33
+ *
34
+ * ```ts
35
+ * sdk.admin.exchange.list({
36
+ * limit: 10,
37
+ * offset: 10
38
+ * })
39
+ * .then(({ exchanges, count, limit, offset }) => {
40
+ * console.log(exchanges)
41
+ * })
42
+ * ```
43
+ *
44
+ * Using the `fields` query parameter, you can specify the fields and relations to retrieve
45
+ * in each exchange:
46
+ *
47
+ * ```ts
48
+ * sdk.admin.exchange.list({
49
+ * fields: "id,*order"
50
+ * })
51
+ * .then(({ exchanges, count, limit, offset }) => {
52
+ * console.log(exchanges)
53
+ * })
54
+ * ```
55
+ *
56
+ * Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/v2/api/store#select-fields-and-relations).
57
+ */
11
58
  async list(query, headers) {
12
59
  return await this.client.fetch(`/admin/exchanges`, {
13
60
  query,
14
61
  headers,
15
62
  });
16
63
  }
64
+ /**
65
+ * This method retrieves an exchange by its ID. It sends a request to the
66
+ * [Get Exchange](https://docs.medusajs.com/v2/api/admin#exchanges_getexchangesid)
67
+ * API route.
68
+ *
69
+ * @param id - The exchange's ID.
70
+ * @param query - Configure the fields to retrieve in the exchange.
71
+ * @param headers - Headers to pass in the request.
72
+ * @returns The exchange's details.
73
+ *
74
+ * @example
75
+ * To retrieve an exchange by its ID:
76
+ *
77
+ * ```ts
78
+ * sdk.admin.exchange.retrieve("exchange_123")
79
+ * .then(({ exchange }) => {
80
+ * console.log(exchange)
81
+ * })
82
+ * ```
83
+ *
84
+ * To specify the fields and relations to retrieve:
85
+ *
86
+ * ```ts
87
+ * sdk.admin.exchange.retrieve("exchange_123", {
88
+ * fields: "id,*order"
89
+ * })
90
+ * .then(({ exchange }) => {
91
+ * console.log(exchange)
92
+ * })
93
+ * ```
94
+ *
95
+ * Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/v2/api/store#select-fields-and-relations).
96
+ */
17
97
  async retrieve(id, query, headers) {
18
98
  return await this.client.fetch(`/admin/exchanges/${id}`, {
19
99
  query,
20
100
  headers,
21
101
  });
22
102
  }
103
+ /**
104
+ * This method creates an admin exchange. It sends a request to the
105
+ * [Create Exchange](https://docs.medusajs.com/v2/api/admin#exchanges_postexchanges) API route.
106
+ *
107
+ * @param body - The exchange's details.
108
+ * @param query - Configure the fields to retrieve in the exchange.
109
+ * @param headers - Headers to pass in the request.
110
+ * @returns The exchange's details.
111
+ *
112
+ * @example
113
+ * sdk.admin.exchange.create({
114
+ * order_id: "order_123"
115
+ * })
116
+ * .then(({ exchange }) => {
117
+ * console.log(exchange)
118
+ * })
119
+ */
23
120
  async create(body, query, headers) {
24
121
  return await this.client.fetch(`/admin/exchanges`, {
25
122
  method: "POST",
@@ -28,6 +125,21 @@ class Exchange {
28
125
  query,
29
126
  });
30
127
  }
128
+ /**
129
+ * This method cancels an exchange. It sends a request to the
130
+ * [Cancel Exchange](https://docs.medusajs.com/v2/api/admin#exchanges_postexchangesidcancel) API route.
131
+ *
132
+ * @param id - The exchange's ID.
133
+ * @param query - Configure the fields to retrieve in the exchange.
134
+ * @param headers - Headers to pass in the request.
135
+ * @returns The exchange's details.
136
+ *
137
+ * @example
138
+ * sdk.admin.exchange.cancel("exchange_123")
139
+ * .then(({ exchange }) => {
140
+ * console.log(exchange)
141
+ * })
142
+ */
31
143
  async cancel(id, query, headers) {
32
144
  return await this.client.fetch(`/admin/exchanges/${id}/cancel`, {
33
145
  method: "POST",
@@ -35,6 +147,30 @@ class Exchange {
35
147
  query,
36
148
  });
37
149
  }
150
+ /**
151
+ * This method adds inbound (or return) items to an exchange. These inbound items will
152
+ * have the action `RETURN_ITEM`.
153
+ *
154
+ * This method sends a request to the [Add Inbound Items](https://docs.medusajs.com/v2/api/admin#exchanges_postexchangesidinbounditems)
155
+ * API route.
156
+ *
157
+ * @param id - The exchange's ID.
158
+ * @param body - The items to add.
159
+ * @param query - Configure the fields to retrieve in the return.
160
+ * @param headers - Headers to pass in the request.
161
+ * @returns The details of the return associated with the exchange, with a preview of the order when the exchange is applied.
162
+ *
163
+ * @example
164
+ * sdk.admin.exchange.addInboundItems("exchange_123", {
165
+ * items: [{
166
+ * id: "orli_123",
167
+ * quantity: 1
168
+ * }]
169
+ * })
170
+ * .then(({ return: returnData }) => {
171
+ * console.log(returnData)
172
+ * })
173
+ */
38
174
  async addInboundItems(id, body, query, headers) {
39
175
  return await this.client.fetch(`/admin/exchanges/${id}/inbound/items`, {
40
176
  method: "POST",
@@ -43,6 +179,35 @@ class Exchange {
43
179
  query,
44
180
  });
45
181
  }
182
+ /**
183
+ * This method updates an inbound (or return) item from an exchange using the ID of
184
+ * the item's `RETURN_ITEM` action.
185
+ *
186
+ * Every item has an `actions` property, whose value is an array of actions. You can
187
+ * check the action's name using its `action` property, and use the value of the `id` property.
188
+ *
189
+ * This method sends a request to the [Update Inbound Item](https://docs.medusajs.com/v2/api/admin#exchanges_postexchangesidinbounditemsaction_id)
190
+ * API route.
191
+ *
192
+ * @param id - The exchange's ID.
193
+ * @param actionId - The id of the return item's `RETURN_ITEM` action.
194
+ * @param body - The details to update.
195
+ * @param query - Configure the fields to retrieve in the return.
196
+ * @param headers - Headers to pass in the request.
197
+ * @returns The details of the return associated with the exchange, with a preview of the order when the exchange is applied.
198
+ *
199
+ * @example
200
+ * sdk.admin.exchange.updateInboundItem(
201
+ * "exchange_123",
202
+ * "ordchact_123",
203
+ * {
204
+ * quantity: 1
205
+ * }
206
+ * )
207
+ * .then(({ return: returnData }) => {
208
+ * console.log(returnData)
209
+ * })
210
+ */
46
211
  async updateInboundItem(id, actionId, body, query, headers) {
47
212
  return await this.client.fetch(`/admin/exchanges/${id}/inbound/items/${actionId}`, {
48
213
  method: "POST",
@@ -51,6 +216,31 @@ class Exchange {
51
216
  query,
52
217
  });
53
218
  }
219
+ /**
220
+ * This method removes an inbound (or return) item from an exchange using the ID of the
221
+ * item's `RETURN_ITEM` action.
222
+ *
223
+ * Every item has an `actions` property, whose value is an array of actions.
224
+ * You can check the action's name using its `action` property, and use the value of the `id` property.
225
+ *
226
+ * This method sends a request to the [Remove Inbound Item](https://docs.medusajs.com/v2/api/admin#exchanges_deleteexchangesidinbounditemsaction_id)
227
+ * API route.
228
+ *
229
+ * @param id - The exchange's ID.
230
+ * @param actionId - The id of the return item's `RETURN_ITEM` action.
231
+ * @param query - Configure the fields to retrieve in the return.
232
+ * @param headers - Headers to pass in the request.
233
+ * @returns The details of the return associated with the exchange, with a preview of the order when the exchange is applied.
234
+ *
235
+ * @example
236
+ * sdk.admin.exchange.removeInboundItem(
237
+ * "exchange_123",
238
+ * "ordchact_123",
239
+ * )
240
+ * .then(({ return: returnData }) => {
241
+ * console.log(returnData)
242
+ * })
243
+ */
54
244
  async removeInboundItem(id, actionId, query, headers) {
55
245
  return await this.client.fetch(`/admin/exchanges/${id}/inbound/items/${actionId}`, {
56
246
  method: "DELETE",
@@ -58,6 +248,30 @@ class Exchange {
58
248
  query,
59
249
  });
60
250
  }
251
+ /**
252
+ * This method adds an inbound (or return) shipping method to an exchange.
253
+ * The inbound shipping method will have a `SHIPPING_ADD` action.
254
+ *
255
+ * This method sends a request to the [Add Inbound Shipping](https://docs.medusajs.com/v2/api/admin#exchanges_postexchangesidinboundshippingmethod)
256
+ * API route.
257
+ *
258
+ * This method sends a request to the [Add Inbound Shipping](https://docs.medusajs.com/v2/api/admin#exchanges_postexchangesidinboundshippingmethod)
259
+ * API route.
260
+ *
261
+ * @param id - The exchange's ID.
262
+ * @param body - The shipping method's details.
263
+ * @param query - Configure the fields to retrieve in the return.
264
+ * @param headers - Headers to pass in the request.
265
+ * @returns The details of the return associated with the exchange, with a preview of the order when the exchange is applied.
266
+ *
267
+ * @example
268
+ * sdk.admin.exchange.addInboundShipping("exchange_123", {
269
+ * shipping_option_id: "so_123"
270
+ * })
271
+ * .then(({ return: returnData }) => {
272
+ * console.log(returnData)
273
+ * })
274
+ */
61
275
  async addInboundShipping(id, body, query, headers) {
62
276
  return await this.client.fetch(`/admin/exchanges/${id}/inbound/shipping-method`, {
63
277
  method: "POST",
@@ -66,6 +280,35 @@ class Exchange {
66
280
  query,
67
281
  });
68
282
  }
283
+ /**
284
+ * This method updates the shipping method for returning items in the exchange using the ID
285
+ * of the method's `SHIPPING_ADD` action.
286
+ *
287
+ * Every shipping method has an `actions` property, whose value is an array of actions.
288
+ * You can check the action's name using its `action` property, and use the value of the `id` property.
289
+ *
290
+ * This method sends a request to the [Update Inbound Shipping](https://docs.medusajs.com/v2/api/admin#exchanges_postexchangesidinboundshippingmethodaction_id)
291
+ * API route.
292
+ *
293
+ * @param id - The exchange's ID.
294
+ * @param actionId - The id of the shipping method's `SHIPPING_ADD` action.
295
+ * @param body - The details to update.
296
+ * @param query - Configure the fields to retrieve in the return.
297
+ * @param headers - Headers to pass in the request.
298
+ * @returns The details of the return associated with the exchange, with a preview of the order when the exchange is applied.
299
+ *
300
+ * @example
301
+ * sdk.admin.exchange.updateInboundShipping(
302
+ * "exchange_123",
303
+ * "ordchact_123",
304
+ * {
305
+ * custom_amount: 10
306
+ * }
307
+ * )
308
+ * .then(({ return: returnData }) => {
309
+ * console.log(returnData)
310
+ * })
311
+ */
69
312
  async updateInboundShipping(id, actionId, body, query, headers) {
70
313
  return await this.client.fetch(`/admin/exchanges/${id}/inbound/shipping-method/${actionId}`, {
71
314
  method: "POST",
@@ -74,6 +317,31 @@ class Exchange {
74
317
  query,
75
318
  });
76
319
  }
320
+ /**
321
+ * This method removes the shipping method for returning items in the exchange using the ID
322
+ * of the method's `SHIPPING_ADD` action.
323
+ *
324
+ * Every shipping method has an `actions` property, whose value is an array of actions.
325
+ * You can check the action's name using its `action` property, and use the value of the `id` property.
326
+ *
327
+ * This method sends a request to the [Remove Inbound Shipping](https://docs.medusajs.com/v2/api/admin#exchanges_deleteexchangesidinboundshippingmethodaction_id)
328
+ * API route.
329
+ *
330
+ * @param id - The exchange's ID.
331
+ * @param actionId - The id of the shipping method's `SHIPPING_ADD` action.
332
+ * @param query - Configure the fields to retrieve in the return.
333
+ * @param headers - Headers to pass in the request.
334
+ * @returns The details of the return associated with the exchange, with a preview of the order when the exchange is applied.
335
+ *
336
+ * @example
337
+ * sdk.admin.exchange.deleteInboundShipping(
338
+ * "exchange_123",
339
+ * "ordchact_123",
340
+ * )
341
+ * .then(({ return: returnData }) => {
342
+ * console.log(returnData)
343
+ * })
344
+ */
77
345
  async deleteInboundShipping(id, actionId, query, headers) {
78
346
  return await this.client.fetch(`/admin/exchanges/${id}/inbound/shipping-method/${actionId}`, {
79
347
  method: "DELETE",
@@ -81,6 +349,30 @@ class Exchange {
81
349
  query,
82
350
  });
83
351
  }
352
+ /**
353
+ * This method adds outbound (or new) items to an exchange.
354
+ * These outbound items will have the action `ITEM_ADD`.
355
+ *
356
+ * This method sends a request to the [Add Outbound Items](https://docs.medusajs.com/v2/api/admin#exchanges_postexchangesidoutbounditems)
357
+ * API route.
358
+ *
359
+ * @param id - The exchange's ID.
360
+ * @param body - The items to add.
361
+ * @param query - Configure the fields to retrieve in the exchange.
362
+ * @param headers - Headers to pass in the request
363
+ * @returns The exchange's details with a preview of the order when the exchange is applied.
364
+ *
365
+ * @example
366
+ * sdk.admin.exchange.addOutboundItems("exchange_123", {
367
+ * items: [{
368
+ * id: "variant_123",
369
+ * quantity: 1
370
+ * }]
371
+ * })
372
+ * .then(({ exchange }) => {
373
+ * console.log(exchange)
374
+ * })
375
+ */
84
376
  async addOutboundItems(id, body, query, headers) {
85
377
  return await this.client.fetch(`/admin/exchanges/${id}/outbound/items`, {
86
378
  method: "POST",
@@ -89,6 +381,35 @@ class Exchange {
89
381
  query,
90
382
  });
91
383
  }
384
+ /**
385
+ * This method updates an outbound (or new) item from an exchange using the ID
386
+ * of the item's `ITEM_ADD` action.
387
+ *
388
+ * Every item has an `actions` property, whose value is an array of actions.
389
+ * You can check the action's name using its `action` property, and use the value of the `id` property.
390
+ *
391
+ * This method sends a request to the [Update Inbound Item](https://docs.medusajs.com/v2/api/admin#exchanges_postexchangesidoutbounditemsaction_id)
392
+ * API route.
393
+ *
394
+ * @param id - The exchange's ID.
395
+ * @param actionId - The id of the new exchange item's `ITEM_ADD` action.
396
+ * @param body - The item's details to update.
397
+ * @param query - Configure the fields to retrieve in the exchange.
398
+ * @param headers - Headers to pass in the request
399
+ * @returns The exchange's details with a preview of the order when the exchange is applied.
400
+ *
401
+ * @example
402
+ * sdk.admin.exchange.updateOutboundItem(
403
+ * "exchange_123",
404
+ * "ordchact_123",
405
+ * {
406
+ * quantity: 1
407
+ * }
408
+ * )
409
+ * .then(({ exchange }) => {
410
+ * console.log(exchange)
411
+ * })
412
+ */
92
413
  async updateOutboundItem(id, actionId, body, query, headers) {
93
414
  return await this.client.fetch(`/admin/exchanges/${id}/outbound/items/${actionId}`, {
94
415
  method: "POST",
@@ -97,6 +418,31 @@ class Exchange {
97
418
  query,
98
419
  });
99
420
  }
421
+ /**
422
+ * This method removes an outbound (or new) item from an exchange using the ID
423
+ * of the item's `ITEM_ADD` action.
424
+ *
425
+ * Every item has an `actions` property, whose value is an array of actions.
426
+ * You can check the action's name using its `action` property, and use the value of the `id` property.
427
+ *
428
+ * This method sends a request to the [Update Outbound Item](https://docs.medusajs.com/v2/api/admin#exchanges_deleteexchangesidoutbounditemsaction_id)
429
+ * API route.
430
+ *
431
+ * @param id - The exchange's ID.
432
+ * @param actionId - The id of the new exchange item's `ITEM_ADD` action.
433
+ * @param query - Configure the fields to retrieve in the exchange.
434
+ * @param headers - Headers to pass in the request
435
+ * @returns The exchange's details with a preview of the order when the exchange is applied.
436
+ *
437
+ * @example
438
+ * sdk.admin.exchange.removeOutboundItem(
439
+ * "exchange_123",
440
+ * "ordchact_123",
441
+ * )
442
+ * .then(({ exchange }) => {
443
+ * console.log(exchange)
444
+ * })
445
+ */
100
446
  async removeOutboundItem(id, actionId, query, headers) {
101
447
  return await this.client.fetch(`/admin/exchanges/${id}/outbound/items/${actionId}`, {
102
448
  method: "DELETE",
@@ -104,6 +450,27 @@ class Exchange {
104
450
  query,
105
451
  });
106
452
  }
453
+ /**
454
+ * This method adds an outbound shipping method to an exchange. The outbound shipping method
455
+ * will have a `SHIPPING_ADD` action.
456
+ *
457
+ * This method sends a request to the [Add Outbound Shipping](https://docs.medusajs.com/v2/api/admin#exchanges_postexchangesidoutboundshippingmethod)
458
+ * API route.
459
+ *
460
+ * @param id - The exchange's ID.
461
+ * @param body - The shipping method's details.
462
+ * @param query - Configure the fields to retrieve in the exchange.
463
+ * @param headers - Headers to pass in the request
464
+ * @returns The exchange's details with a preview of the order when the exchange is applied.
465
+ *
466
+ * @example
467
+ * sdk.admin.exchange.addOutboundShipping("exchange_123", {
468
+ * shipping_option_id: "so_123"
469
+ * })
470
+ * .then(({ exchange }) => {
471
+ * console.log(exchange)
472
+ * })
473
+ */
107
474
  async addOutboundShipping(id, body, query, headers) {
108
475
  return await this.client.fetch(`/admin/exchanges/${id}/outbound/shipping-method`, {
109
476
  method: "POST",
@@ -112,6 +479,35 @@ class Exchange {
112
479
  query,
113
480
  });
114
481
  }
482
+ /**
483
+ * This method updates the shipping method for delivering outbound items in the exchange using
484
+ * the ID of the method's `SHIPPING_ADD` action.
485
+ *
486
+ * Every shipping method has an `actions` property, whose value is an array of actions.
487
+ * You can check the action's name using its `action` property, and use the value of the `id` property.
488
+ *
489
+ * This method sends a request to the [Update Outbound Shipping](https://docs.medusajs.com/v2/api/admin#exchanges_postexchangesidoutboundshippingmethodaction_id)
490
+ * API route.
491
+ *
492
+ * @param id - The exchange's ID.
493
+ * @param actionId - The id of the shipping method's `SHIPPING_ADD` action.
494
+ * @param body - The details to update.
495
+ * @param query - Configure the fields to retrieve in the exchange.
496
+ * @param headers - Headers to pass in the request
497
+ * @returns The exchange's details with a preview of the order when the exchange is applied.
498
+ *
499
+ * @example
500
+ * sdk.admin.exchange.updateOutboundShipping(
501
+ * "exchange_123",
502
+ * "ordchact_123",
503
+ * {
504
+ * custom_amount: 10
505
+ * }
506
+ * )
507
+ * .then(({ exchange }) => {
508
+ * console.log(exchange)
509
+ * })
510
+ */
115
511
  async updateOutboundShipping(id, actionId, body, query, headers) {
116
512
  return await this.client.fetch(`/admin/exchanges/${id}/outbound/shipping-method/${actionId}`, {
117
513
  method: "POST",
@@ -120,6 +516,31 @@ class Exchange {
120
516
  query,
121
517
  });
122
518
  }
519
+ /**
520
+ * This method removes the shipping method for delivering outbound items in the exchange using
521
+ * the ID of the method's `SHIPPING_ADD` action.
522
+ *
523
+ * Every shipping method has an `actions` property, whose value is an array of actions.
524
+ * You can check the action's name using its `action` property, and use the value of the `id` property.
525
+ *
526
+ * This method sends a request to the [Remove Outbound Shipping](https://docs.medusajs.com/v2/api/admin#exchanges_deleteexchangesidoutboundshippingmethodaction_id)
527
+ * API route.
528
+ *
529
+ * @param id - The exchange's ID.
530
+ * @param actionId - The id of the shipping method's `SHIPPING_ADD` action.
531
+ * @param query - Configure the fields to retrieve in the exchange.
532
+ * @param headers - Headers to pass in the request
533
+ * @returns The exchange's details with a preview of the order when the exchange is applied.
534
+ *
535
+ * @example
536
+ * sdk.admin.exchange.deleteOutboundShipping(
537
+ * "exchange_123",
538
+ * "ordchact_123",
539
+ * )
540
+ * .then(({ exchange }) => {
541
+ * console.log(exchange)
542
+ * })
543
+ */
123
544
  async deleteOutboundShipping(id, actionId, query, headers) {
124
545
  return await this.client.fetch(`/admin/exchanges/${id}/outbound/shipping-method/${actionId}`, {
125
546
  method: "DELETE",
@@ -127,6 +548,24 @@ class Exchange {
127
548
  query,
128
549
  });
129
550
  }
551
+ /**
552
+ * This method confirms an exchange request, applying its changes on the associated order.
553
+ *
554
+ * This method sends a request to the [Confirm Exchange](https://docs.medusajs.com/v2/api/admin#exchanges_postexchangesidrequest)
555
+ * API route.
556
+ *
557
+ * @param id - The exchange's ID.
558
+ * @param body - The confirmation's details.
559
+ * @param query - Configure the fields to retrieve in the exchange.
560
+ * @param headers - Headers to pass in the request
561
+ * @returns The exchange and associated return's details with a preview of the order when the exchange is applied.
562
+ *
563
+ * @example
564
+ * sdk.admin.exchange.request("exchange_123", {})
565
+ * .then(({ exchange }) => {
566
+ * console.log(exchange)
567
+ * })
568
+ */
130
569
  async request(id, body, query, headers) {
131
570
  return await this.client.fetch(`/admin/exchanges/${id}/request`, {
132
571
  method: "POST",
@@ -135,6 +574,22 @@ class Exchange {
135
574
  query,
136
575
  });
137
576
  }
577
+ /**
578
+ * This method cancels an exchange request. It sends a request to the
579
+ * [Cancel Exchange Request](https://docs.medusajs.com/v2/api/admin#exchanges_deleteexchangesidrequest)
580
+ * API route.
581
+ *
582
+ * @param id - The exchange's ID.
583
+ * @param query - Configure the fields to retrieve in the exchange.
584
+ * @param headers - Headers to pass in the request
585
+ * @returns The cancelation's details.
586
+ *
587
+ * @example
588
+ * sdk.admin.exchange.cancel("exchange_123")
589
+ * .then(({ deleted }) => {
590
+ * console.log(deleted)
591
+ * })
592
+ */
138
593
  async cancelRequest(id, query, headers) {
139
594
  return await this.client.fetch(`/admin/exchanges/${id}/request`, {
140
595
  method: "DELETE",
@@ -1 +1 @@
1
- {"version":3,"file":"exchange.js","sourceRoot":"","sources":["../../src/admin/exchange.ts"],"names":[],"mappings":";;;AAKA,MAAa,QAAQ;IAKnB;;OAEG;IACH,YAAY,MAAc;QACxB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;IACtB,CAAC;IAED,KAAK,CAAC,IAAI,CACR,KAAyC,EACzC,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,kBAAkB,EAClB;YACE,KAAK;YACL,OAAO;SACR,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,QAAQ,CACZ,EAAU,EACV,KAAqC,EACrC,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,oBAAoB,EAAE,EAAE,EACxB;YACE,KAAK;YACL,OAAO;SACR,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,MAAM,CACV,IAAmC,EACnC,KAA8B,EAC9B,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,kBAAkB,EAClB;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,MAAM,CACV,EAAU,EACV,KAA8B,EAC9B,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,oBAAoB,EAAE,SAAS,EAC/B;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,eAAe,CACnB,EAAU,EACV,IAA4C,EAC5C,KAA8B,EAC9B,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,oBAAoB,EAAE,gBAAgB,EACtC;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,iBAAiB,CACrB,EAAU,EACV,QAAgB,EAChB,IAA8C,EAC9C,KAA8B,EAC9B,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,EAClD;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,iBAAiB,CACrB,EAAU,EACV,QAAgB,EAChB,KAA8B,EAC9B,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,EAClD;YACE,MAAM,EAAE,QAAQ;YAChB,OAAO;YACP,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,kBAAkB,CACtB,EAAU,EACV,IAA+C,EAC/C,KAA8B,EAC9B,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,oBAAoB,EAAE,0BAA0B,EAChD;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,qBAAqB,CACzB,EAAU,EACV,QAAgB,EAChB,IAAkD,EAClD,KAA8B,EAC9B,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,oBAAoB,EAAE,4BAA4B,QAAQ,EAAE,EAC5D;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,qBAAqB,CACzB,EAAU,EACV,QAAgB,EAChB,KAA8B,EAC9B,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,oBAAoB,EAAE,4BAA4B,QAAQ,EAAE,EAC5D;YACE,MAAM,EAAE,QAAQ;YAChB,OAAO;YACP,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,gBAAgB,CACpB,EAAU,EACV,IAA6C,EAC7C,KAA8B,EAC9B,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,oBAAoB,EAAE,iBAAiB,EACvC;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,kBAAkB,CACtB,EAAU,EACV,QAAgB,EAChB,IAA+C,EAC/C,KAA8B,EAC9B,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,oBAAoB,EAAE,mBAAmB,QAAQ,EAAE,EACnD;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,kBAAkB,CACtB,EAAU,EACV,QAAgB,EAChB,KAA8B,EAC9B,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,oBAAoB,EAAE,mBAAmB,QAAQ,EAAE,EACnD;YACE,MAAM,EAAE,QAAQ;YAChB,OAAO;YACP,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,mBAAmB,CACvB,EAAU,EACV,IAAgD,EAChD,KAA8B,EAC9B,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,oBAAoB,EAAE,2BAA2B,EACjD;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,sBAAsB,CAC1B,EAAU,EACV,QAAgB,EAChB,IAAmD,EACnD,KAA8B,EAC9B,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,oBAAoB,EAAE,6BAA6B,QAAQ,EAAE,EAC7D;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,sBAAsB,CAC1B,EAAU,EACV,QAAgB,EAChB,KAA8B,EAC9B,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,oBAAoB,EAAE,6BAA6B,QAAQ,EAAE,EAC7D;YACE,MAAM,EAAE,QAAQ;YAChB,OAAO;YACP,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,OAAO,CACX,EAAU,EACV,IAAoC,EACpC,KAA8B,EAC9B,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,oBAAoB,EAAE,UAAU,EAChC;YACE,MAAM,EAAE,MAAM;YACd,OAAO;YACP,IAAI;YACJ,KAAK;SACN,CACF,CAAA;IACH,CAAC;IAED,KAAK,CAAC,aAAa,CACjB,EAAU,EACV,KAA8B,EAC9B,OAAuB;QAEvB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAC5B,oBAAoB,EAAE,UAAU,EAChC;YACE,MAAM,EAAE,QAAQ;YAChB,OAAO;YACP,KAAK;SACN,CACF,CAAA;IACH,CAAC;CACF;AAjTD,4BAiTC"}
1
+ {"version":3,"file":"exchange.js","sourceRoot":"","sources":["../../src/admin/exchange.ts"],"names":[],"mappings":"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"}
@@ -10,6 +10,53 @@ export declare class FulfillmentProvider {
10
10
  * @ignore
11
11
  */
12
12
  constructor(client: Client);
13
+ /**
14
+ * This method retrieves a paginated list of fulfillment providers. It sends a request to the
15
+ * [List Fulfillment Providers](https://docs.medusajs.com/v2/api/admin#fulfillment-providers_getfulfillmentproviders)
16
+ * API route.
17
+ *
18
+ * @param query - Filters and pagination configurations.
19
+ * @param headers - Headers to pass in the request.
20
+ * @returns The paginated list of providers.
21
+ *
22
+ * @example
23
+ * To retrieve the list of fulfillment providers:
24
+ *
25
+ * ```ts
26
+ * sdk.admin.fulfillmentProvider.list()
27
+ * .then(({ fulfillment_providers, count, limit, offset }) => {
28
+ * console.log(fulfillment_providers)
29
+ * })
30
+ * ```
31
+ *
32
+ * To configure the pagination, pass the `limit` and `offset` query parameters.
33
+ *
34
+ * For example, to retrieve only 10 items and skip 10 items:
35
+ *
36
+ * ```ts
37
+ * sdk.admin.fulfillmentProvider.list({
38
+ * limit: 10,
39
+ * offset: 10
40
+ * })
41
+ * .then(({ fulfillment_providers, count, limit, offset }) => {
42
+ * console.log(fulfillment_providers)
43
+ * })
44
+ * ```
45
+ *
46
+ * Using the `fields` query parameter, you can specify the fields and relations to retrieve
47
+ * in each fulfillment provider:
48
+ *
49
+ * ```ts
50
+ * sdk.admin.fulfillmentProvider.list({
51
+ * fields: "id"
52
+ * })
53
+ * .then(({ fulfillment_providers, count, limit, offset }) => {
54
+ * console.log(fulfillment_providers)
55
+ * })
56
+ * ```
57
+ *
58
+ * Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/v2/api/store#select-fields-and-relations).
59
+ */
13
60
  list(query?: HttpTypes.AdminFulfillmentProviderListParams, headers?: ClientHeaders): Promise<HttpTypes.AdminFulfillmentProviderListResponse>;
14
61
  }
15
62
  //# sourceMappingURL=fulfillment-provider.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"fulfillment-provider.d.ts","sourceRoot":"","sources":["../../src/admin/fulfillment-provider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAC3C,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAA;AAClC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAA;AAExC,qBAAa,mBAAmB;IAC9B;;OAEG;IACH,OAAO,CAAC,MAAM,CAAQ;IACtB;;OAEG;gBACS,MAAM,EAAE,MAAM;IAIpB,IAAI,CACR,KAAK,CAAC,EAAE,SAAS,CAAC,kCAAkC,EACpD,OAAO,CAAC,EAAE,aAAa;CAW1B"}
1
+ {"version":3,"file":"fulfillment-provider.d.ts","sourceRoot":"","sources":["../../src/admin/fulfillment-provider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAC3C,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAA;AAClC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAA;AAExC,qBAAa,mBAAmB;IAC9B;;OAEG;IACH,OAAO,CAAC,MAAM,CAAQ;IACtB;;OAEG;gBACS,MAAM,EAAE,MAAM;IAI1B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8CG;IACG,IAAI,CACR,KAAK,CAAC,EAAE,SAAS,CAAC,kCAAkC,EACpD,OAAO,CAAC,EAAE,aAAa;CAW1B"}