@medusajs/js-sdk 0.0.2-snapshot-20241022120003 → 0.0.2-snapshot-20241022140307

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.
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,114 @@ class Claim {
8
8
  constructor(client) {
9
9
  this.client = client;
10
10
  }
11
+ /**
12
+ * This method retrieves a paginated list of claims. It sends a request to the
13
+ * [List Claims](https://docs.medusajs.com/v2/api/admin#claims_getclaims) API route.
14
+ *
15
+ * @param query - Filters and pagination configurations.
16
+ * @param headers - Headers to pass in the request.
17
+ * @returns The paginated list of claims.
18
+ *
19
+ * @example
20
+ * To retrieve the list of claims:
21
+ *
22
+ * ```ts
23
+ * sdk.admin.claim.list()
24
+ * .then(({ claims, count, limit, offset }) => {
25
+ * console.log(claims)
26
+ * })
27
+ * ```
28
+ *
29
+ * To configure the pagination, pass the `limit` and `offset` query parameters.
30
+ *
31
+ * For example, to retrieve only 10 items and skip 10 items:
32
+ *
33
+ * ```ts
34
+ * sdk.admin.claim.list({
35
+ * limit: 10,
36
+ * offset: 10
37
+ * })
38
+ * .then(({ claims, count, limit, offset }) => {
39
+ * console.log(claims)
40
+ * })
41
+ * ```
42
+ *
43
+ * Using the `fields` query parameter, you can specify the fields and relations to retrieve
44
+ * in each claim:
45
+ *
46
+ * ```ts
47
+ * sdk.admin.claim.list({
48
+ * fields: "id,*additional_items"
49
+ * })
50
+ * .then(({ claims, count, limit, offset }) => {
51
+ * console.log(claims)
52
+ * })
53
+ * ```
54
+ *
55
+ * Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/v2/api/store#select-fields-and-relations).
56
+ */
11
57
  async list(query, headers) {
12
58
  return await this.client.fetch(`/admin/claims`, {
13
59
  query,
14
60
  headers,
15
61
  });
16
62
  }
63
+ /**
64
+ * This method retrieves a claim. It sends a request to the
65
+ * [Get Claim](https://docs.medusajs.com/v2/api/admin#claims_getclaimsid) API route.
66
+ *
67
+ * @param id - The claim's ID.
68
+ * @param query - Configure the fields to retrieve in the claim.
69
+ * @param headers - Headers to pass in the request
70
+ * @returns The claim's details.
71
+ *
72
+ * @example
73
+ * To retrieve a claim by its ID:
74
+ *
75
+ * ```ts
76
+ * sdk.admin.claim.retrieve("claim_123")
77
+ * .then(({ claim }) => {
78
+ * console.log(claim)
79
+ * })
80
+ * ```
81
+ *
82
+ * To specify the fields and relations to retrieve:
83
+ *
84
+ * ```ts
85
+ * sdk.admin.claim.retrieve("claim_123", {
86
+ * fields: "id,*additional_items"
87
+ * })
88
+ * .then(({ claim }) => {
89
+ * console.log(claim)
90
+ * })
91
+ * ```
92
+ *
93
+ * Learn more about the `fields` property in the [API reference](https://docs.medusajs.com/v2/api/store#select-fields-and-relations).
94
+ */
17
95
  async retrieve(id, query, headers) {
18
96
  return await this.client.fetch(`/admin/claims/${id}`, {
19
97
  query,
20
98
  headers,
21
99
  });
22
100
  }
101
+ /**
102
+ * This method creates a claim. It sends a request to the
103
+ * [Create Claim](https://docs.medusajs.com/v2/api/admin#claims_postclaims) API route.
104
+ *
105
+ * @param body - The claim's details.
106
+ * @param query - Configure the fields to retrieve in the claim.
107
+ * @param headers - Headers to pass in the request
108
+ * @returns The claim and order's details.
109
+ *
110
+ * @example
111
+ * sdk.admin.claim.create({
112
+ * type: "refund",
113
+ * order_id: "order_123",
114
+ * })
115
+ * .then(({ claim }) => {
116
+ * console.log(claim)
117
+ * })
118
+ */
23
119
  async create(body, query, headers) {
24
120
  return await this.client.fetch(`/admin/claims`, {
25
121
  method: "POST",
@@ -28,6 +124,21 @@ class Claim {
28
124
  query,
29
125
  });
30
126
  }
127
+ /**
128
+ * This method cancels a claim. It sends a request to the
129
+ * [Cancel Claim](https://docs.medusajs.com/v2/api/admin#claims_postclaimsidcancel) API route.
130
+ *
131
+ * @param id - The claim's ID.
132
+ * @param query - Configure the fields to retrieve in the claim.
133
+ * @param headers - Headers to pass in the request
134
+ * @returns The claim's details.
135
+ *
136
+ * @example
137
+ * sdk.admin.claim.cancel("claim_123")
138
+ * .then(({ claim }) => {
139
+ * console.log(claim)
140
+ * })
141
+ */
31
142
  async cancel(id, query, headers) {
32
143
  return await this.client.fetch(`/admin/claims/${id}/cancel`, {
33
144
  method: "POST",
@@ -35,6 +146,29 @@ class Claim {
35
146
  query,
36
147
  });
37
148
  }
149
+ /**
150
+ * This method adds items to the claim. It sends a request to the
151
+ * [Add Items](https://docs.medusajs.com/v2/api/admin#claims_postclaimsidclaimitems) API route.
152
+ *
153
+ * @param id - The ID of the claim to add the items to.
154
+ * @param body - The items' details.
155
+ * @param query - Configure the fields to retrieve in the claim.
156
+ * @param headers - Headers to pass in the request
157
+ * @returns The claim's details with a preview of the order when the claim is applied.
158
+ *
159
+ * @example
160
+ * sdk.admin.claim.addItems("claim_123", {
161
+ * items: [
162
+ * {
163
+ * id: "orli_123",
164
+ * quantity: 1
165
+ * }
166
+ * ]
167
+ * })
168
+ * .then(({ claim }) => {
169
+ * console.log(claim)
170
+ * })
171
+ */
38
172
  async addItems(id, body, query, headers) {
39
173
  return await this.client.fetch(`/admin/claims/${id}/claim-items`, {
40
174
  method: "POST",
@@ -43,6 +177,32 @@ class Claim {
43
177
  query,
44
178
  });
45
179
  }
180
+ /**
181
+ * This method updates a claim item by the ID of the item's `WRITE_OFF_ITEM` action. It
182
+ * sends a request to the [Update Claim Item](https://docs.medusajs.com/v2/api/admin#claims_postclaimsidclaimitemsaction_id) API route.
183
+ *
184
+ * Every item has an `actions` property, whose value is an array of actions.
185
+ * You can check the action's name using its `action` property, and use the value of the `id` property.
186
+ *
187
+ * @param id - The claim's ID.
188
+ * @param actionId - The id of the order item's `WRITE_OFF_ITEM` action.
189
+ * @param body - The details to update.
190
+ * @param query - Configure the fields to retrieve in the claim.
191
+ * @param headers - Headers to pass in the request
192
+ * @returns The claim's details with a preview of the order when the claim is applied.
193
+ *
194
+ * @example
195
+ * sdk.admin.claim.updateItem(
196
+ * "claim_123",
197
+ * "ordchact_123",
198
+ * {
199
+ * quantity: 1
200
+ * }
201
+ * )
202
+ * .then(({ claim }) => {
203
+ * console.log(claim)
204
+ * })
205
+ */
46
206
  async updateItem(id, actionId, body, query, headers) {
47
207
  return await this.client.fetch(`/admin/claims/${id}/claim-items/${actionId}`, {
48
208
  method: "POST",
@@ -51,6 +211,29 @@ class Claim {
51
211
  query,
52
212
  });
53
213
  }
214
+ /**
215
+ * This method removes a claim item from a claim by the ID of the item's `WRITE_OFF_ITEM` action.
216
+ * It sends a request to the [Remove Claim Item](https://docs.medusajs.com/v2/api/admin#claims_deleteclaimsidclaimitemsaction_id)
217
+ * API route.
218
+ *
219
+ * Every item has an `actions` property, whose value is an array of actions.
220
+ * You can check the action's name using its `action` property, and use the value of the `id` property.
221
+ *
222
+ * @param id - The claim's ID.
223
+ * @param actionId - The id of the order item's `WRITE_OFF_ITEM` action.
224
+ * @param query - Configure the fields to retrieve in the claim.
225
+ * @param headers - Headers to pass in the request
226
+ * @returns The claim's details with a preview of the order when the claim is applied.
227
+ *
228
+ * @example
229
+ * sdk.admin.claim.removeItem(
230
+ * "claim_123",
231
+ * "ordchact_123",
232
+ * )
233
+ * .then(({ claim }) => {
234
+ * console.log(claim)
235
+ * })
236
+ */
54
237
  async removeItem(id, actionId, query, headers) {
55
238
  return await this.client.fetch(`/admin/claims/${id}/claim-items/${actionId}`, {
56
239
  method: "DELETE",
@@ -58,6 +241,34 @@ class Claim {
58
241
  query,
59
242
  });
60
243
  }
244
+ /**
245
+ * This method adds inbound (or return) items to the claim. These inbound items will have a `RETURN_ITEM` action.
246
+ *
247
+ * This method sends a request to the [Add Inbound Items](https://docs.medusajs.com/v2/api/admin#claims_postclaimsidinbounditems)
248
+ * API route.
249
+ *
250
+ * @param id - The ID of the claim to add the inbound items to.
251
+ * @param body - The inbound items' details.
252
+ * @param query - Configure the fields to retrieve in the return.
253
+ * @param headers - Headers to pass in the request
254
+ * @returns The details of the return associated with the claim, with a preview of the order when the claim is applied.
255
+ *
256
+ * @example
257
+ * sdk.admin.claim.addInboundItems(
258
+ * "claim_123",
259
+ * {
260
+ * items: [
261
+ * {
262
+ * id: "orli_123",
263
+ * quantity: 1
264
+ * }
265
+ * ]
266
+ * },
267
+ * )
268
+ * .then(({ return: returnData }) => {
269
+ * console.log(returnData)
270
+ * })
271
+ */
61
272
  async addInboundItems(id, body, query, headers) {
62
273
  return await this.client.fetch(`/admin/claims/${id}/inbound/items`, {
63
274
  method: "POST",
@@ -66,6 +277,33 @@ class Claim {
66
277
  query,
67
278
  });
68
279
  }
280
+ /**
281
+ * This method updates an inbound (or return) item of a claim using the ID of the item's `RETURN_ITEM` action.
282
+ * It sends a request to the [Update Inbound Item](https://docs.medusajs.com/v2/api/admin#claims_postclaimsidinbounditemsaction_id)
283
+ * API route.
284
+ *
285
+ * Every item has an `actions` property, whose value is an array of actions.
286
+ * You can check the action's name using its `action` property, and use the value of the `id` property.
287
+ *
288
+ * @param id - The claim's ID.
289
+ * @param actionId - The id of the return item's `RETURN_ITEM` action.
290
+ * @param body - The details to update in the inbound item.
291
+ * @param query - Configure the fields to retrieve in the return.
292
+ * @param headers - Headers to pass in the request
293
+ * @returns The details of the return associated wth the claim, with a preview of the order when the claim is applied.
294
+ *
295
+ * @example
296
+ * sdk.admin.claim.updateInboundItem(
297
+ * "claim_123",
298
+ * "ordchact_123",
299
+ * {
300
+ * quantity: 1
301
+ * },
302
+ * )
303
+ * .then(({ return: returnData }) => {
304
+ * console.log(returnData)
305
+ * })
306
+ */
69
307
  async updateInboundItem(id, actionId, body, query, headers) {
70
308
  return await this.client.fetch(`/admin/claims/${id}/inbound/items/${actionId}`, {
71
309
  method: "POST",
@@ -74,6 +312,29 @@ class Claim {
74
312
  query,
75
313
  });
76
314
  }
315
+ /**
316
+ * This method removes an inbound (or return) item from a claim using the ID of the item's `RETURN_ITEM` action.
317
+ * It sends a request to the [Remove Inbound Item](https://docs.medusajs.com/v2/api/admin#claims_deleteclaimsidinbounditemsaction_id)
318
+ * API route.
319
+ *
320
+ * Every item has an `actions` property, whose value is an array of actions.
321
+ * You can check the action's name using its `action` property, and use the value of the `id` property.
322
+ *
323
+ * @param id - The claim's ID.
324
+ * @param actionId - The ID of the return item's `RETURN_ITEM` action.
325
+ * @param query - Configure the fields to retrieve in the return.
326
+ * @param headers - Headers to pass in the request
327
+ * @returns The details of the return associated wth the claim, with a preview of the order when the claim is applied.
328
+ *
329
+ * @example
330
+ * sdk.admin.claim.removeInboundItem(
331
+ * "claim_123",
332
+ * "ordchact_123",
333
+ * )
334
+ * .then(({ return: returnData }) => {
335
+ * console.log(returnData)
336
+ * })
337
+ */
77
338
  async removeInboundItem(id, actionId, query, headers) {
78
339
  return await this.client.fetch(`/admin/claims/${id}/inbound/items/${actionId}`, {
79
340
  method: "DELETE",
@@ -81,6 +342,31 @@ class Claim {
81
342
  query,
82
343
  });
83
344
  }
345
+ /**
346
+ * This method adds an inbound (or return) shipping method to a claim.
347
+ * The inbound shipping method will have a `SHIPPING_ADD` action.
348
+ *
349
+ * This method sends a request to the [Add Inbound Shipping](https://docs.medusajs.com/v2/api/admin#claims_postclaimsidinboundshippingmethod)
350
+ * API route.
351
+ *
352
+ * @param id - The claim's ID.
353
+ * @param body - The shipping method's details.
354
+ * @param query - Configure the fields to retrieve in the return.
355
+ * @param headers - Headers to pass in the request
356
+ * @returns The details of the return associated wth the claim, with a preview of the order when the claim is applied.
357
+ *
358
+ * @example
359
+ * sdk.admin.claim.addInboundShipping(
360
+ * "claim_123",
361
+ * {
362
+ * shipping_option_id: "so_123",
363
+ * custom_amount: 10
364
+ * },
365
+ * )
366
+ * .then(({ return: returnData }) => {
367
+ * console.log(returnData)
368
+ * })
369
+ */
84
370
  async addInboundShipping(id, body, query, headers) {
85
371
  return await this.client.fetch(`/admin/claims/${id}/inbound/shipping-method`, {
86
372
  method: "POST",
@@ -89,6 +375,33 @@ class Claim {
89
375
  query,
90
376
  });
91
377
  }
378
+ /**
379
+ * This method updates a shipping method for returning items in the claim using the ID of the method's `SHIPPING_ADD` action.
380
+ * It sends a request to the [Update Inbound Shipping](https://docs.medusajs.com/v2/api/admin#claims_postclaimsidinboundshippingmethodaction_id)
381
+ * API route.
382
+ *
383
+ * Every shipping method has an `actions` property, whose value is an array of actions.
384
+ * You can check the action's name using its `action` property, and use the value of the `id` property.
385
+ *
386
+ * @param id - The claim's ID.
387
+ * @param actionId - The id of the shipping method's `SHIPPING_ADD` action.
388
+ * @param body - The details to update in the shipping method
389
+ * @param query - Configure the fields to retrieve in the claim.
390
+ * @param headers - Headers to pass in the request
391
+ * @returns The details of the claim, with a preview of the order when the claim is applied.
392
+ *
393
+ * @example
394
+ * sdk.admin.claim.updateInboundShipping(
395
+ * "claim_123",
396
+ * "ordchact_123",
397
+ * {
398
+ * custom_amount: 10
399
+ * },
400
+ * )
401
+ * .then(({ claim }) => {
402
+ * console.log(claim)
403
+ * })
404
+ */
92
405
  async updateInboundShipping(id, actionId, body, query, headers) {
93
406
  return await this.client.fetch(`/admin/claims/${id}/inbound/shipping-method/${actionId}`, {
94
407
  method: "POST",
@@ -97,6 +410,29 @@ class Claim {
97
410
  query,
98
411
  });
99
412
  }
413
+ /**
414
+ * This method deletes a shipping method for returning items in the claim using the ID of the method's `SHIPPING_ADD` action.
415
+ * It sends a request to the [Remove Inbound Shipping](https://docs.medusajs.com/v2/api/admin#claims_deleteclaimsidinboundshippingmethodaction_id)
416
+ * API route.
417
+ *
418
+ * Every shipping method has an `actions` property, whose value is an array of actions.
419
+ * You can check the action's name using its `action` property, and use the value of the `id` property.
420
+ *
421
+ * @param id - The claim's ID.
422
+ * @param actionId - The id of the shipping method's `SHIPPING_ADD` action.
423
+ * @param query - Configure the fields to retrieve in the return.
424
+ * @param headers - Headers to pass in the request
425
+ * @returns The details of the return associated wth the claim, with a preview of the order when the claim is applied.
426
+ *
427
+ * @example
428
+ * sdk.admin.claim.deleteInboundShipping(
429
+ * "claim_123",
430
+ * "ordchact_123",
431
+ * )
432
+ * .then(({ return: returnData }) => {
433
+ * console.log(returnData)
434
+ * })
435
+ */
100
436
  async deleteInboundShipping(id, actionId, query, headers) {
101
437
  return await this.client.fetch(`/admin/claims/${id}/inbound/shipping-method/${actionId}`, {
102
438
  method: "DELETE",
@@ -104,6 +440,31 @@ class Claim {
104
440
  query,
105
441
  });
106
442
  }
443
+ /**
444
+ * This method adds outbound (or new) items to a claim. These outbound items will have an `ITEM_ADD` action.
445
+ * It sends a request to the [Add Outbound Items](https://docs.medusajs.com/v2/api/admin#claims_postclaimsidoutbounditems)
446
+ * API route.
447
+ *
448
+ * @param id - The ID of the claim to add the outbound items to.
449
+ * @param body - The items' details.
450
+ * @param query - Configure the fields to retrieve in the claim.
451
+ * @param headers - Headers to pass in the request
452
+ * @returns The details of the claim, with a preview of the order when the claim is applied.
453
+ *
454
+ * @example
455
+ * sdk.admin.claim.addOutboundItems(
456
+ * "claim_123",
457
+ * {
458
+ * items: [{
459
+ * id: "orli_123",
460
+ * quantity: 1
461
+ * }]
462
+ * },
463
+ * )
464
+ * .then(({ claim }) => {
465
+ * console.log(claim)
466
+ * })
467
+ */
107
468
  async addOutboundItems(id, body, query, headers) {
108
469
  return await this.client.fetch(`/admin/claims/${id}/outbound/items`, {
109
470
  method: "POST",
@@ -112,6 +473,33 @@ class Claim {
112
473
  query,
113
474
  });
114
475
  }
476
+ /**
477
+ * This method updates an outbound (or new) item of a claim using the ID of the item's `ITEM_ADD` action.
478
+ * It sends a request to the [Update Outbound Item](https://docs.medusajs.com/v2/api/admin#claims_postclaimsidoutbounditemsaction_id)
479
+ * API route.
480
+ *
481
+ * Every item has an `actions` property, whose value is an array of actions.
482
+ * You can check the action's name using its `action` property, and use the value of the `id` property.
483
+ *
484
+ * @param id - The claim's ID.
485
+ * @param actionId - The id of the new claim item's `ITEM_ADD` action.
486
+ * @param body - The item's details.
487
+ * @param query - Configure the fields to retrieve in the claim.
488
+ * @param headers - Headers to pass in the request
489
+ * @returns The details of the claim, with a preview of the order when the claim is applied.
490
+ *
491
+ * @example
492
+ * sdk.admin.claim.updateOutboundItem(
493
+ * "claim_123",
494
+ * "ordchact_123",
495
+ * {
496
+ * quantity: 1
497
+ * },
498
+ * )
499
+ * .then(({ claim }) => {
500
+ * console.log(claim)
501
+ * })
502
+ */
115
503
  async updateOutboundItem(id, actionId, body, query, headers) {
116
504
  return await this.client.fetch(`/admin/claims/${id}/outbound/items/${actionId}`, {
117
505
  method: "POST",
@@ -120,6 +508,29 @@ class Claim {
120
508
  query,
121
509
  });
122
510
  }
511
+ /**
512
+ * This method removes an outbound (or new) item from a claim using the ID of the item's `ITEM_ADD` action.
513
+ * It sends a request to the [Remove Outbound Item](https://docs.medusajs.com/v2/api/admin#claims_deleteclaimsidoutbounditemsaction_id)
514
+ * API route.
515
+ *
516
+ * Every item has an `actions` property, whose value is an array of actions.
517
+ * You can check the action's name using its `action` property, and use the value of the `id` property.
518
+ *
519
+ * @param id - The claim's ID.
520
+ * @param actionId - The id of the new claim item's `ITEM_ADD` action.
521
+ * @param query - Configure the fields to retrieve in the claim.
522
+ * @param headers - Headers to pass in the request
523
+ * @returns The details of the claim, with a preview of the order when the claim is applied.
524
+ *
525
+ * @example
526
+ * sdk.admin.claim.removeOutboundItem(
527
+ * "claim_123",
528
+ * "ordchact_123",
529
+ * )
530
+ * .then(({ claim }) => {
531
+ * console.log(claim)
532
+ * })
533
+ */
123
534
  async removeOutboundItem(id, actionId, query, headers) {
124
535
  return await this.client.fetch(`/admin/claims/${id}/outbound/items/${actionId}`, {
125
536
  method: "DELETE",
@@ -127,6 +538,32 @@ class Claim {
127
538
  query,
128
539
  });
129
540
  }
541
+ /**
542
+ * This method adds outbound an outbound shipping method to a claim.
543
+ * The outbound shipping method will have a `SHIPPING_ADD` action.
544
+ *
545
+ * This method sends a request to the
546
+ * [Add Outbound Shipping](https://docs.medusajs.com/v2/api/admin#claims_postclaimsidoutboundshippingmethod)
547
+ * API route.
548
+ *
549
+ * @param id - The claim's ID.
550
+ * @param body - The shipping method's details.
551
+ * @param query - Configure the fields to retrieve in the claim.
552
+ * @param headers - Headers to pass in the request
553
+ * @returns The details of the claim, with a preview of the order when the claim is applied.
554
+ *
555
+ * @example
556
+ * * sdk.admin.claim.addOutboundShipping(
557
+ * "claim_123",
558
+ * {
559
+ * shipping_option_id: "so_123",
560
+ * custom_amount: 10
561
+ * },
562
+ * )
563
+ * .then(({ claim }) => {
564
+ * console.log(claim)
565
+ * })
566
+ */
130
567
  async addOutboundShipping(id, body, query, headers) {
131
568
  return await this.client.fetch(`/admin/claims/${id}/outbound/shipping-method`, {
132
569
  method: "POST",
@@ -135,6 +572,33 @@ class Claim {
135
572
  query,
136
573
  });
137
574
  }
575
+ /**
576
+ * This method updates the shipping method for delivering outbound items in a claim using the ID of the method's `SHIPPING_ADD` action.
577
+ * It sends a request to the [Update Outbound Shipping](https://docs.medusajs.com/v2/api/admin#claims_postclaimsidoutboundshippingmethodaction_id)
578
+ * API route.
579
+ *
580
+ * Every shipping method has an `actions` property, whose value is an array of actions.
581
+ * You can check the action's name using its `action` property, and use the value of the `id` property.
582
+ *
583
+ * @param id - The claim's ID.
584
+ * @param actionId - The id of the shipping method's `SHIPPING_ADD` action.
585
+ * @param body - The shipping method's details.
586
+ * @param query - Configure the fields to retrieve in the claim.
587
+ * @param headers - Headers to pass in the request
588
+ * @returns The details of the claim, with a preview of the order when the claim is applied.
589
+ *
590
+ * @example
591
+ * sdk.admin.claim.updateOutboundShipping(
592
+ * "claim_123",
593
+ * "ordchact_123",
594
+ * {
595
+ * custom_amount: 10
596
+ * },
597
+ * )
598
+ * .then(({ claim }) => {
599
+ * console.log(claim)
600
+ * })
601
+ */
138
602
  async updateOutboundShipping(id, actionId, body, query, headers) {
139
603
  return await this.client.fetch(`/admin/claims/${id}/outbound/shipping-method/${actionId}`, {
140
604
  method: "POST",
@@ -143,6 +607,27 @@ class Claim {
143
607
  query,
144
608
  });
145
609
  }
610
+ /**
611
+ * This method deletes the shipping method for delivering outbound items in the claim using the ID of the method's `SHIPPING_ADD` action.
612
+ *
613
+ * Every shipping method has an `actions` property, whose value is an array of actions.
614
+ * You can check the action's name using its `action` property, and use the value of the `id` property.
615
+ *
616
+ * @param id - The claim's ID.
617
+ * @param actionId - The id of the shipping method's `SHIPPING_ADD` action.
618
+ * @param query - Configure the fields to retrieve in the claim.
619
+ * @param headers - Headers to pass in the request
620
+ * @returns The details of the claim, with a preview of the order when the claim is applied.
621
+ *
622
+ * @example
623
+ * sdk.admin.claim.deleteOutboundShipping(
624
+ * "claim_123",
625
+ * "ordchact_123",
626
+ * )
627
+ * .then(({ claim }) => {
628
+ * console.log(claim)
629
+ * })
630
+ */
146
631
  async deleteOutboundShipping(id, actionId, query, headers) {
147
632
  return await this.client.fetch(`/admin/claims/${id}/outbound/shipping-method/${actionId}`, {
148
633
  method: "DELETE",
@@ -150,6 +635,26 @@ class Claim {
150
635
  query,
151
636
  });
152
637
  }
638
+ /**
639
+ * This method confirms a claim request, applying its changes on the associated order.
640
+ * It sends a request to the [Confirm Claim Request](https://docs.medusajs.com/v2/api/admin#claims_postclaimsidrequest)
641
+ * API route.
642
+ *
643
+ * @param id - The claim's ID.
644
+ * @param body - The confirmation details.
645
+ * @param query - Configure the fields to retrieve in the claim.
646
+ * @param headers - Headers to pass in the request
647
+ * @returns The details of the claim and its associated return, with a preview of the order when the claim is applied.
648
+ *
649
+ * @example
650
+ * sdk.admin.claim.request(
651
+ * "claim_123",
652
+ * {},
653
+ * )
654
+ * .then(({ claim }) => {
655
+ * console.log(claim)
656
+ * })
657
+ */
153
658
  async request(id, body, query, headers) {
154
659
  return await this.client.fetch(`/admin/claims/${id}/request`, {
155
660
  method: "POST",
@@ -158,6 +663,24 @@ class Claim {
158
663
  query,
159
664
  });
160
665
  }
666
+ /**
667
+ * This method cancels a requested claim. It sends a request to the
668
+ * [Cancel Claim Request](https://docs.medusajs.com/v2/api/admin#claims_deleteclaimsidrequest)
669
+ * API route.
670
+ *
671
+ * @param id - The claim's ID.
672
+ * @param query - Configure the fields to retrieve in the claim.
673
+ * @param headers - Headers to pass in the request
674
+ * @returns The cancelation's details.
675
+ *
676
+ * @example
677
+ * sdk.admin.claim.cancelRequest(
678
+ * "claim_123",
679
+ * )
680
+ * .then(({ deleted }) => {
681
+ * console.log(deleted)
682
+ * })
683
+ */
161
684
  async cancelRequest(id, query, headers) {
162
685
  return await this.client.fetch(`/admin/claims/${id}/request`, {
163
686
  method: "DELETE",
@@ -1 +1 @@
1
- {"version":3,"file":"claim.js","sourceRoot":"","sources":["../../src/admin/claim.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"claim.js","sourceRoot":"","sources":["../../src/admin/claim.ts"],"names":[],"mappings":"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"}