conductor-node 12.0.1 → 12.1.0

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 (53) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/core.d.ts +12 -1
  3. package/core.d.ts.map +1 -1
  4. package/core.js +5 -5
  5. package/core.js.map +1 -1
  6. package/core.mjs +5 -5
  7. package/core.mjs.map +1 -1
  8. package/package.json +1 -1
  9. package/resources/end-users.d.ts +2 -1
  10. package/resources/end-users.d.ts.map +1 -1
  11. package/resources/end-users.js +4 -4
  12. package/resources/end-users.js.map +1 -1
  13. package/resources/end-users.mjs +4 -4
  14. package/resources/end-users.mjs.map +1 -1
  15. package/resources/qbd/bills.d.ts +45 -45
  16. package/resources/qbd/checks.d.ts +45 -45
  17. package/resources/qbd/credit-card-charges.d.ts +45 -45
  18. package/resources/qbd/credit-card-credits.d.ts +45 -45
  19. package/resources/qbd/index.d.ts +1 -0
  20. package/resources/qbd/index.d.ts.map +1 -1
  21. package/resources/qbd/index.js +5 -2
  22. package/resources/qbd/index.js.map +1 -1
  23. package/resources/qbd/index.mjs +1 -0
  24. package/resources/qbd/index.mjs.map +1 -1
  25. package/resources/qbd/item-groups.d.ts +490 -0
  26. package/resources/qbd/item-groups.d.ts.map +1 -0
  27. package/resources/qbd/item-groups.js +58 -0
  28. package/resources/qbd/item-groups.js.map +1 -0
  29. package/resources/qbd/item-groups.mjs +53 -0
  30. package/resources/qbd/item-groups.mjs.map +1 -0
  31. package/resources/qbd/item-receipts.d.ts +45 -45
  32. package/resources/qbd/qbd.d.ts +4 -0
  33. package/resources/qbd/qbd.d.ts.map +1 -1
  34. package/resources/qbd/qbd.js +5 -0
  35. package/resources/qbd/qbd.js.map +1 -1
  36. package/resources/qbd/qbd.mjs +5 -0
  37. package/resources/qbd/qbd.mjs.map +1 -1
  38. package/resources/qbd/vendor-credits.d.ts +45 -45
  39. package/src/core.ts +18 -4
  40. package/src/resources/end-users.ts +16 -1
  41. package/src/resources/qbd/bills.ts +45 -45
  42. package/src/resources/qbd/checks.ts +45 -45
  43. package/src/resources/qbd/credit-card-charges.ts +45 -45
  44. package/src/resources/qbd/credit-card-credits.ts +45 -45
  45. package/src/resources/qbd/index.ts +9 -0
  46. package/src/resources/qbd/item-groups.ts +621 -0
  47. package/src/resources/qbd/item-receipts.ts +45 -45
  48. package/src/resources/qbd/qbd.ts +23 -0
  49. package/src/resources/qbd/vendor-credits.ts +45 -45
  50. package/src/version.ts +1 -1
  51. package/version.d.ts +1 -1
  52. package/version.js +1 -1
  53. package/version.mjs +1 -1
@@ -0,0 +1,621 @@
1
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ import { APIResource } from '../../resource';
4
+ import * as Core from '../../core';
5
+ import { CursorPage, type CursorPageParams } from '../../pagination';
6
+
7
+ export class ItemGroups extends APIResource {
8
+ /**
9
+ * Creates a new item group.
10
+ */
11
+ create(params: ItemGroupCreateParams, options?: Core.RequestOptions): Core.APIPromise<ItemGroup> {
12
+ const { conductorEndUserId, ...body } = params;
13
+ return this._client.post('/quickbooks-desktop/item-groups', {
14
+ body,
15
+ ...options,
16
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
17
+ });
18
+ }
19
+
20
+ /**
21
+ * Retrieves an item group by ID.
22
+ */
23
+ retrieve(
24
+ id: string,
25
+ params: ItemGroupRetrieveParams,
26
+ options?: Core.RequestOptions,
27
+ ): Core.APIPromise<ItemGroup> {
28
+ const { conductorEndUserId } = params;
29
+ return this._client.get(`/quickbooks-desktop/item-groups/${id}`, {
30
+ ...options,
31
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
32
+ });
33
+ }
34
+
35
+ /**
36
+ * Updates an existing item group.
37
+ */
38
+ update(
39
+ id: string,
40
+ params: ItemGroupUpdateParams,
41
+ options?: Core.RequestOptions,
42
+ ): Core.APIPromise<ItemGroup> {
43
+ const { conductorEndUserId, ...body } = params;
44
+ return this._client.post(`/quickbooks-desktop/item-groups/${id}`, {
45
+ body,
46
+ ...options,
47
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
48
+ });
49
+ }
50
+
51
+ /**
52
+ * Returns a list of item groups. Use the `cursor` parameter to paginate through
53
+ * the results.
54
+ */
55
+ list(
56
+ params: ItemGroupListParams,
57
+ options?: Core.RequestOptions,
58
+ ): Core.PagePromise<ItemGroupsCursorPage, ItemGroup> {
59
+ const { conductorEndUserId, ...query } = params;
60
+ return this._client.getAPIList('/quickbooks-desktop/item-groups', ItemGroupsCursorPage, {
61
+ query,
62
+ ...options,
63
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
64
+ });
65
+ }
66
+ }
67
+
68
+ export class ItemGroupsCursorPage extends CursorPage<ItemGroup> {}
69
+
70
+ export interface ItemGroup {
71
+ /**
72
+ * The unique identifier assigned by QuickBooks to this item group. This ID is
73
+ * unique across all item groups but not across different QuickBooks object types.
74
+ */
75
+ id: string;
76
+
77
+ /**
78
+ * The item group's barcode.
79
+ */
80
+ barcode: string | null;
81
+
82
+ /**
83
+ * The date and time when this item group was created, in ISO 8601 format
84
+ * (YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
85
+ * in QuickBooks.
86
+ */
87
+ createdAt: string;
88
+
89
+ /**
90
+ * The custom fields for the item group object, added as user-defined data
91
+ * extensions, not included in the standard QuickBooks object.
92
+ */
93
+ customFields: Array<ItemGroup.CustomField>;
94
+
95
+ /**
96
+ * The item group's description that will appear on sales forms that include this
97
+ * item.
98
+ */
99
+ description: string | null;
100
+
101
+ /**
102
+ * A globally unique identifier (GUID) you, the developer, can provide for tracking
103
+ * this object in your external system. This field is immutable and can only be set
104
+ * during object creation.
105
+ */
106
+ externalId: string | null;
107
+
108
+ /**
109
+ * Indicates whether this item group is active. Inactive objects are typically
110
+ * hidden from views and reports in QuickBooks. Defaults to `true`.
111
+ */
112
+ isActive: boolean;
113
+
114
+ /**
115
+ * The item lines in this item group.
116
+ */
117
+ lines: Array<ItemGroup.Line>;
118
+
119
+ /**
120
+ * The case-insensitive unique name of this item group, unique across all item
121
+ * groups.
122
+ *
123
+ * **NOTE**: Item groups do not have a `fullName` field because they are not
124
+ * hierarchical objects, which is why `name` is unique for them but not for objects
125
+ * that have parents.
126
+ */
127
+ name: string;
128
+
129
+ /**
130
+ * The type of object. This value is always `"qbd_item_group"`.
131
+ */
132
+ objectType: 'qbd_item_group';
133
+
134
+ /**
135
+ * The current QuickBooks-assigned revision number of this item group object, which
136
+ * changes each time the object is modified. When updating this object, you must
137
+ * provide the most recent `revisionNumber` to ensure you're working with the
138
+ * latest data; otherwise, the update will return an error.
139
+ */
140
+ revisionNumber: string;
141
+
142
+ /**
143
+ * Indicates whether the individual items in this item group and their separate
144
+ * amounts appear on printed forms.
145
+ */
146
+ shouldPrintItemsInGroup: boolean;
147
+
148
+ /**
149
+ * The type of special item for this item group.
150
+ */
151
+ specialItemType: 'finance_charge' | 'reimbursable_expense_group' | 'reimbursable_expense_subtotal' | null;
152
+
153
+ /**
154
+ * The unit-of-measure set associated with this item group, which consists of a
155
+ * base unit and related units.
156
+ */
157
+ unitOfMeasureSet: ItemGroup.UnitOfMeasureSet | null;
158
+
159
+ /**
160
+ * The date and time when this item group was last updated, in ISO 8601 format
161
+ * (YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
162
+ * in QuickBooks.
163
+ */
164
+ updatedAt: string;
165
+ }
166
+
167
+ export namespace ItemGroup {
168
+ export interface CustomField {
169
+ /**
170
+ * The name of the custom field, unique for the specified `ownerId`. For public
171
+ * custom fields, this name is visible as a label in the QuickBooks UI.
172
+ */
173
+ name: string;
174
+
175
+ /**
176
+ * The identifier of the owner of the custom field, which QuickBooks internally
177
+ * calls a "data extension". For public custom fields visible in the UI, such as
178
+ * those added by the QuickBooks user, this is always "0". For private custom
179
+ * fields that are only visible to the application that created them, this is a
180
+ * valid GUID identifying the owning application. Internally, Conductor always
181
+ * fetches all public custom fields (those with an `ownerId` of "0") for all
182
+ * objects.
183
+ */
184
+ ownerId: string;
185
+
186
+ /**
187
+ * The data type of this custom field.
188
+ */
189
+ type:
190
+ | 'amount_type'
191
+ | 'date_time_type'
192
+ | 'integer_type'
193
+ | 'percent_type'
194
+ | 'price_type'
195
+ | 'quantity_type'
196
+ | 'string_1024_type'
197
+ | 'string_255_type';
198
+
199
+ /**
200
+ * The value of this custom field. The maximum length depends on the field's data
201
+ * type.
202
+ */
203
+ value: string;
204
+ }
205
+
206
+ export interface Line {
207
+ /**
208
+ * The item associated with this item group line. This can refer to any good or
209
+ * service that the business buys or sells, including item types such as a service
210
+ * item, inventory item, or special calculation item like a discount item or
211
+ * sales-tax item.
212
+ */
213
+ item: Line.Item | null;
214
+
215
+ /**
216
+ * The quantity of the item group associated with this item group line. This field
217
+ * cannot be cleared.
218
+ *
219
+ * **NOTE**: Do not use this field if the associated item group is a discount item
220
+ * group.
221
+ */
222
+ quantity: number | null;
223
+
224
+ /**
225
+ * The unit-of-measure used for the `quantity` in this item group line. Must be a
226
+ * valid unit within the item's available units of measure.
227
+ */
228
+ unitOfMeasure: string | null;
229
+ }
230
+
231
+ export namespace Line {
232
+ /**
233
+ * The item associated with this item group line. This can refer to any good or
234
+ * service that the business buys or sells, including item types such as a service
235
+ * item, inventory item, or special calculation item like a discount item or
236
+ * sales-tax item.
237
+ */
238
+ export interface Item {
239
+ /**
240
+ * The unique identifier assigned by QuickBooks to this object. This ID is unique
241
+ * across all objects of the same type, but not across different QuickBooks object
242
+ * types.
243
+ */
244
+ id: string | null;
245
+
246
+ /**
247
+ * The fully-qualified unique name for this object, formed by combining the names
248
+ * of its parent objects with its own `name`, separated by colons. Not
249
+ * case-sensitive.
250
+ */
251
+ fullName: string | null;
252
+ }
253
+ }
254
+
255
+ /**
256
+ * The unit-of-measure set associated with this item group, which consists of a
257
+ * base unit and related units.
258
+ */
259
+ export interface UnitOfMeasureSet {
260
+ /**
261
+ * The unique identifier assigned by QuickBooks to this object. This ID is unique
262
+ * across all objects of the same type, but not across different QuickBooks object
263
+ * types.
264
+ */
265
+ id: string | null;
266
+
267
+ /**
268
+ * The fully-qualified unique name for this object, formed by combining the names
269
+ * of its parent objects with its own `name`, separated by colons. Not
270
+ * case-sensitive.
271
+ */
272
+ fullName: string | null;
273
+ }
274
+ }
275
+
276
+ export interface ItemGroupCreateParams {
277
+ /**
278
+ * Body param: The case-insensitive unique name of this item group, unique across
279
+ * all item groups.
280
+ *
281
+ * **NOTE**: Item groups do not have a `fullName` field because they are not
282
+ * hierarchical objects, which is why `name` is unique for them but not for objects
283
+ * that have parents.
284
+ *
285
+ * Maximum length: 31 characters.
286
+ */
287
+ name: string;
288
+
289
+ /**
290
+ * Body param: Indicates whether the individual items in this item group and their
291
+ * separate amounts appear on printed forms.
292
+ */
293
+ shouldPrintItemsInGroup: boolean;
294
+
295
+ /**
296
+ * Header param: The ID of the EndUser to receive this request (e.g.,
297
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
298
+ */
299
+ conductorEndUserId: string;
300
+
301
+ /**
302
+ * Body param: The item group's barcode.
303
+ */
304
+ barcode?: ItemGroupCreateParams.Barcode;
305
+
306
+ /**
307
+ * Body param: The item group's description that will appear on sales forms that
308
+ * include this item.
309
+ */
310
+ description?: string;
311
+
312
+ /**
313
+ * Body param: A globally unique identifier (GUID) you, the developer, can provide
314
+ * for tracking this object in your external system. This field is immutable and
315
+ * can only be set during object creation.
316
+ *
317
+ * **IMPORTANT**: This field must be formatted as a valid GUID; otherwise,
318
+ * QuickBooks will return an error.
319
+ */
320
+ externalId?: string;
321
+
322
+ /**
323
+ * Body param: Indicates whether this item group is active. Inactive objects are
324
+ * typically hidden from views and reports in QuickBooks. Defaults to `true`.
325
+ */
326
+ isActive?: boolean;
327
+
328
+ /**
329
+ * Body param: The item lines in this item group.
330
+ */
331
+ lines?: Array<ItemGroupCreateParams.Line>;
332
+
333
+ /**
334
+ * Body param: The unit-of-measure set associated with this item group, which
335
+ * consists of a base unit and related units.
336
+ */
337
+ unitOfMeasureSetId?: string;
338
+ }
339
+
340
+ export namespace ItemGroupCreateParams {
341
+ /**
342
+ * The item group's barcode.
343
+ */
344
+ export interface Barcode {
345
+ /**
346
+ * Indicates whether to allow the barcode to be overridden.
347
+ */
348
+ allowOverride?: boolean;
349
+
350
+ /**
351
+ * Indicates whether to assign the barcode even if it is already used.
352
+ */
353
+ assignEvenIfUsed?: boolean;
354
+
355
+ /**
356
+ * The item's barcode value.
357
+ */
358
+ value?: string;
359
+ }
360
+
361
+ export interface Line {
362
+ /**
363
+ * The item associated with this item group line. This can refer to any good or
364
+ * service that the business buys or sells, including item types such as a service
365
+ * item, inventory item, or special calculation item like a discount item or
366
+ * sales-tax item.
367
+ */
368
+ itemId?: string;
369
+
370
+ /**
371
+ * The quantity of the item group associated with this item group line. This field
372
+ * cannot be cleared.
373
+ *
374
+ * **NOTE**: Do not use this field if the associated item group is a discount item
375
+ * group.
376
+ */
377
+ quantity?: number;
378
+
379
+ /**
380
+ * The unit-of-measure used for the `quantity` in this item group line. Must be a
381
+ * valid unit within the item's available units of measure.
382
+ */
383
+ unitOfMeasure?: string;
384
+ }
385
+ }
386
+
387
+ export interface ItemGroupRetrieveParams {
388
+ /**
389
+ * The ID of the EndUser to receive this request (e.g.,
390
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
391
+ */
392
+ conductorEndUserId: string;
393
+ }
394
+
395
+ export interface ItemGroupUpdateParams {
396
+ /**
397
+ * Body param: The current QuickBooks-assigned revision number of the item group
398
+ * object you are updating, which you can get by fetching the object first. Provide
399
+ * the most recent `revisionNumber` to ensure you're working with the latest data;
400
+ * otherwise, the update will return an error.
401
+ */
402
+ revisionNumber: string;
403
+
404
+ /**
405
+ * Header param: The ID of the EndUser to receive this request (e.g.,
406
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
407
+ */
408
+ conductorEndUserId: string;
409
+
410
+ /**
411
+ * Body param: The item group's barcode.
412
+ */
413
+ barcode?: ItemGroupUpdateParams.Barcode;
414
+
415
+ /**
416
+ * Body param: When `true`, removes all existing item lines associated with this
417
+ * item group. To modify or add individual item lines, use the field `itemLines`
418
+ * instead.
419
+ */
420
+ clearItemLines?: boolean;
421
+
422
+ /**
423
+ * Body param: The item group's description that will appear on sales forms that
424
+ * include this item.
425
+ */
426
+ description?: string;
427
+
428
+ /**
429
+ * Body param: Indicates whether to allow changing the item group's unit-of-measure
430
+ * set (using the `unitOfMeasureSetId` field) when the base unit of the new
431
+ * unit-of-measure set does not match that of the currently assigned set. Without
432
+ * setting this field to `true` in this scenario, the request will fail with an
433
+ * error; hence, this field is equivalent to accepting the warning prompt in the
434
+ * QuickBooks UI.
435
+ *
436
+ * NOTE: Changing the base unit requires you to update the item's
437
+ * quantities-on-hand and cost to reflect the new unit; otherwise, these values
438
+ * will be inaccurate. Alternatively, consider creating a new item with the desired
439
+ * unit-of-measure set and deactivating the old item.
440
+ */
441
+ forceUnitOfMeasureChange?: boolean;
442
+
443
+ /**
444
+ * Body param: Indicates whether this item group is active. Inactive objects are
445
+ * typically hidden from views and reports in QuickBooks. Defaults to `true`.
446
+ */
447
+ isActive?: boolean;
448
+
449
+ /**
450
+ * Body param: The item lines in this item group.
451
+ */
452
+ lines?: Array<ItemGroupUpdateParams.Line>;
453
+
454
+ /**
455
+ * Body param: The case-insensitive unique name of this item group, unique across
456
+ * all item groups.
457
+ *
458
+ * **NOTE**: Item groups do not have a `fullName` field because they are not
459
+ * hierarchical objects, which is why `name` is unique for them but not for objects
460
+ * that have parents.
461
+ *
462
+ * Maximum length: 31 characters.
463
+ */
464
+ name?: string;
465
+
466
+ /**
467
+ * Body param: Indicates whether the individual items in this item group and their
468
+ * separate amounts appear on printed forms.
469
+ */
470
+ shouldPrintItemsInGroup?: boolean;
471
+
472
+ /**
473
+ * Body param: The unit-of-measure set associated with this item group, which
474
+ * consists of a base unit and related units.
475
+ */
476
+ unitOfMeasureSetId?: string;
477
+ }
478
+
479
+ export namespace ItemGroupUpdateParams {
480
+ /**
481
+ * The item group's barcode.
482
+ */
483
+ export interface Barcode {
484
+ /**
485
+ * Indicates whether to allow the barcode to be overridden.
486
+ */
487
+ allowOverride?: boolean;
488
+
489
+ /**
490
+ * Indicates whether to assign the barcode even if it is already used.
491
+ */
492
+ assignEvenIfUsed?: boolean;
493
+
494
+ /**
495
+ * The item's barcode value.
496
+ */
497
+ value?: string;
498
+ }
499
+
500
+ export interface Line {
501
+ /**
502
+ * The item associated with this item group line. This can refer to any good or
503
+ * service that the business buys or sells, including item types such as a service
504
+ * item, inventory item, or special calculation item like a discount item or
505
+ * sales-tax item.
506
+ */
507
+ itemId?: string;
508
+
509
+ /**
510
+ * The quantity of the item group associated with this item group line. This field
511
+ * cannot be cleared.
512
+ *
513
+ * **NOTE**: Do not use this field if the associated item group is a discount item
514
+ * group.
515
+ */
516
+ quantity?: number;
517
+
518
+ /**
519
+ * The unit-of-measure used for the `quantity` in this item group line. Must be a
520
+ * valid unit within the item's available units of measure.
521
+ */
522
+ unitOfMeasure?: string;
523
+ }
524
+ }
525
+
526
+ export interface ItemGroupListParams extends CursorPageParams {
527
+ /**
528
+ * Header param: The ID of the EndUser to receive this request (e.g.,
529
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
530
+ */
531
+ conductorEndUserId: string;
532
+
533
+ /**
534
+ * Query param: Filter for specific item groups by their QuickBooks-assigned unique
535
+ * identifier(s).
536
+ *
537
+ * **IMPORTANT**: If you include this parameter, QuickBooks will ignore all other
538
+ * query parameters for this request.
539
+ *
540
+ * **NOTE**: If any of the values you specify in this parameter are not found, the
541
+ * request will return an error.
542
+ */
543
+ ids?: Array<string>;
544
+
545
+ /**
546
+ * Query param: Filter for item groups whose `name` contains this substring,
547
+ * case-insensitive. NOTE: If you use this parameter, you cannot also use
548
+ * `nameStartsWith` or `nameEndsWith`.
549
+ */
550
+ nameContains?: string;
551
+
552
+ /**
553
+ * Query param: Filter for item groups whose `name` ends with this substring,
554
+ * case-insensitive. NOTE: If you use this parameter, you cannot also use
555
+ * `nameContains` or `nameStartsWith`.
556
+ */
557
+ nameEndsWith?: string;
558
+
559
+ /**
560
+ * Query param: Filter for item groups whose `name` is alphabetically greater than
561
+ * or equal to this value.
562
+ */
563
+ nameFrom?: string;
564
+
565
+ /**
566
+ * Query param: Filter for specific item groups by their name(s), case-insensitive.
567
+ * Like `id`, `name` is a unique identifier for an item group.
568
+ *
569
+ * **IMPORTANT**: If you include this parameter, QuickBooks will ignore all other
570
+ * query parameters for this request.
571
+ *
572
+ * **NOTE**: If any of the values you specify in this parameter are not found, the
573
+ * request will return an error.
574
+ */
575
+ names?: Array<string>;
576
+
577
+ /**
578
+ * Query param: Filter for item groups whose `name` starts with this substring,
579
+ * case-insensitive. NOTE: If you use this parameter, you cannot also use
580
+ * `nameContains` or `nameEndsWith`.
581
+ */
582
+ nameStartsWith?: string;
583
+
584
+ /**
585
+ * Query param: Filter for item groups whose `name` is alphabetically less than or
586
+ * equal to this value.
587
+ */
588
+ nameTo?: string;
589
+
590
+ /**
591
+ * Query param: Filter for item groups that are active, inactive, or both.
592
+ */
593
+ status?: 'active' | 'all' | 'inactive';
594
+
595
+ /**
596
+ * Query param: Filter for item groups updated on or after this date and time, in
597
+ * ISO 8601 format (YYYY-MM-DDTHH:mm:ss). If you only provide a date (YYYY-MM-DD),
598
+ * the time is assumed to be 00:00:00 of that day.
599
+ */
600
+ updatedAfter?: string;
601
+
602
+ /**
603
+ * Query param: Filter for item groups updated on or before this date and time, in
604
+ * ISO 8601 format (YYYY-MM-DDTHH:mm:ss). If you only provide a date (YYYY-MM-DD),
605
+ * the time is assumed to be 23:59:59 of that day.
606
+ */
607
+ updatedBefore?: string;
608
+ }
609
+
610
+ ItemGroups.ItemGroupsCursorPage = ItemGroupsCursorPage;
611
+
612
+ export declare namespace ItemGroups {
613
+ export {
614
+ type ItemGroup as ItemGroup,
615
+ ItemGroupsCursorPage as ItemGroupsCursorPage,
616
+ type ItemGroupCreateParams as ItemGroupCreateParams,
617
+ type ItemGroupRetrieveParams as ItemGroupRetrieveParams,
618
+ type ItemGroupUpdateParams as ItemGroupUpdateParams,
619
+ type ItemGroupListParams as ItemGroupListParams,
620
+ };
621
+ }