@teemill/pickfaces 0.24.1 → 0.27.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/README.md +75 -2
  2. package/api.ts +87 -109
  3. package/base.ts +1 -1
  4. package/common.ts +1 -1
  5. package/configuration.ts +1 -1
  6. package/dist/api.d.ts +84 -109
  7. package/dist/api.js +7 -3
  8. package/dist/base.d.ts +1 -1
  9. package/dist/base.js +1 -1
  10. package/dist/common.d.ts +1 -1
  11. package/dist/common.js +1 -1
  12. package/dist/configuration.d.ts +1 -1
  13. package/dist/configuration.js +1 -1
  14. package/dist/esm/api.d.ts +84 -109
  15. package/dist/esm/api.js +6 -2
  16. package/dist/esm/base.d.ts +1 -1
  17. package/dist/esm/base.js +1 -1
  18. package/dist/esm/common.d.ts +1 -1
  19. package/dist/esm/common.js +1 -1
  20. package/dist/esm/configuration.d.ts +1 -1
  21. package/dist/esm/configuration.js +1 -1
  22. package/dist/esm/index.d.ts +1 -1
  23. package/dist/esm/index.js +1 -1
  24. package/dist/index.d.ts +1 -1
  25. package/dist/index.js +1 -1
  26. package/docs/ApiError.md +22 -0
  27. package/docs/ContainerType.md +31 -0
  28. package/docs/ContainerTypes.md +20 -0
  29. package/docs/CreatePickfaceRequest.md +30 -0
  30. package/docs/ExportPickfaces202Response.md +20 -0
  31. package/docs/IssueEmptyPickfaceRequest.md +20 -0
  32. package/docs/IssueWrongContentsPickfaceRequest.md +22 -0
  33. package/docs/ListPickfaceLogs200Response.md +22 -0
  34. package/docs/ListPickfaces200Response.md +22 -0
  35. package/docs/MoveStockRequest.md +24 -0
  36. package/docs/Pickface.md +44 -0
  37. package/docs/PickfaceContainerType.md +22 -0
  38. package/docs/PickfaceContentsInner.md +26 -0
  39. package/docs/PickfaceContentsInnerMetadata.md +29 -0
  40. package/docs/PickfaceContentsInnerQuantity.md +24 -0
  41. package/docs/PickfaceIssue.md +23 -0
  42. package/docs/PickfaceLog.md +28 -0
  43. package/docs/PickfaceZone.md +24 -0
  44. package/docs/PickfacesApi.md +957 -0
  45. package/docs/UpdatePickfaceRequest.md +35 -0
  46. package/docs/UpdatePickfaceRequestContentsInner.md +22 -0
  47. package/docs/UpdatePickfaceRequestContentsInnerQuantity.md +22 -0
  48. package/docs/UpdatePickfaceRequestContentsInnerQuantityAvailable.md +23 -0
  49. package/docs/UpdatePickfaceRequestContentsInnerQuantityReserved.md +23 -0
  50. package/docs/VariantAttribute.md +24 -0
  51. package/docs/VariantAttributeThumbnail.md +23 -0
  52. package/index.ts +1 -1
  53. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/pickfaces@0.24.1
1
+ ## @teemill/pickfaces@0.27.0
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @teemill/pickfaces@0.24.1 --save
39
+ npm install @teemill/pickfaces@0.27.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -44,3 +44,76 @@ _unPublished (not recommended):_
44
44
  ```
45
45
  npm install PATH_TO_GENERATED_PACKAGE --save
46
46
  ```
47
+
48
+ ### Documentation for API Endpoints
49
+
50
+ All URIs are relative to *https://api.localhost:8080*
51
+
52
+ Class | Method | HTTP request | Description
53
+ ------------ | ------------- | ------------- | -------------
54
+ *PickfacesApi* | [**createPickface**](docs/PickfacesApi.md#createpickface) | **POST** /v1/pickfaces | Create Pickface
55
+ *PickfacesApi* | [**deletePickface**](docs/PickfacesApi.md#deletepickface) | **DELETE** /v1/pickfaces/{pickfaceId} | Delete Pickface
56
+ *PickfacesApi* | [**exportPickfaces**](docs/PickfacesApi.md#exportpickfaces) | **GET** /v1/pickfaces/export | Export pickfaces
57
+ *PickfacesApi* | [**getPickface**](docs/PickfacesApi.md#getpickface) | **GET** /v1/pickfaces/{pickfaceId} | Get pickface
58
+ *PickfacesApi* | [**issueEmptyPickface**](docs/PickfacesApi.md#issueemptypickface) | **POST** /v1/pickfaces/{pickfaceId}/issue/empty | Issue empty pickface
59
+ *PickfacesApi* | [**issueWrongContentsPickface**](docs/PickfacesApi.md#issuewrongcontentspickface) | **POST** /v1/pickfaces/{pickfaceId}/issue/wrong-contents | Issue wrong contents pickface
60
+ *PickfacesApi* | [**listPickfaceContainerTypes**](docs/PickfacesApi.md#listpickfacecontainertypes) | **GET** /v1/pickfaces/container-types | List pickface container types
61
+ *PickfacesApi* | [**listPickfaceLogs**](docs/PickfacesApi.md#listpickfacelogs) | **GET** /v1/pickfaces/{pickfaceId}/logs | Get pickface logs
62
+ *PickfacesApi* | [**listPickfaces**](docs/PickfacesApi.md#listpickfaces) | **GET** /v1/pickfaces | List pickfaces
63
+ *PickfacesApi* | [**moveStock**](docs/PickfacesApi.md#movestock) | **POST** /v1/pickfaces/{pickfaceId}/stock/move | Move stock
64
+ *PickfacesApi* | [**printPickfaceLabel**](docs/PickfacesApi.md#printpickfacelabel) | **GET** /v1/pickfaces/{pickfaceId}/print | Print pickface label
65
+ *PickfacesApi* | [**printPickfaceLabels**](docs/PickfacesApi.md#printpickfacelabels) | **GET** /v1/pickfaces/print | Print pickface Labels
66
+ *PickfacesApi* | [**resolvePickfaceIssue**](docs/PickfacesApi.md#resolvepickfaceissue) | **POST** /v1/pickfaces/{pickfaceId}/issue/resolve | Resolve pickface issue
67
+ *PickfacesApi* | [**suggestPickfaces**](docs/PickfacesApi.md#suggestpickfaces) | **GET** /v1/pickfaces/suggest | Suggest pickfaces
68
+ *PickfacesApi* | [**updatePickface**](docs/PickfacesApi.md#updatepickface) | **PATCH** /v1/pickfaces/{pickfaceId} | Update Pickface
69
+
70
+
71
+ ### Documentation For Models
72
+
73
+ - [ApiError](docs/ApiError.md)
74
+ - [ContainerType](docs/ContainerType.md)
75
+ - [ContainerTypes](docs/ContainerTypes.md)
76
+ - [CreatePickfaceRequest](docs/CreatePickfaceRequest.md)
77
+ - [ExportPickfaces202Response](docs/ExportPickfaces202Response.md)
78
+ - [IssueEmptyPickfaceRequest](docs/IssueEmptyPickfaceRequest.md)
79
+ - [IssueWrongContentsPickfaceRequest](docs/IssueWrongContentsPickfaceRequest.md)
80
+ - [ListPickfaceLogs200Response](docs/ListPickfaceLogs200Response.md)
81
+ - [ListPickfaces200Response](docs/ListPickfaces200Response.md)
82
+ - [MoveStockRequest](docs/MoveStockRequest.md)
83
+ - [Pickface](docs/Pickface.md)
84
+ - [PickfaceContainerType](docs/PickfaceContainerType.md)
85
+ - [PickfaceContentsInner](docs/PickfaceContentsInner.md)
86
+ - [PickfaceContentsInnerMetadata](docs/PickfaceContentsInnerMetadata.md)
87
+ - [PickfaceContentsInnerQuantity](docs/PickfaceContentsInnerQuantity.md)
88
+ - [PickfaceIssue](docs/PickfaceIssue.md)
89
+ - [PickfaceLog](docs/PickfaceLog.md)
90
+ - [PickfaceZone](docs/PickfaceZone.md)
91
+ - [UpdatePickfaceRequest](docs/UpdatePickfaceRequest.md)
92
+ - [UpdatePickfaceRequestContentsInner](docs/UpdatePickfaceRequestContentsInner.md)
93
+ - [UpdatePickfaceRequestContentsInnerQuantity](docs/UpdatePickfaceRequestContentsInnerQuantity.md)
94
+ - [UpdatePickfaceRequestContentsInnerQuantityAvailable](docs/UpdatePickfaceRequestContentsInnerQuantityAvailable.md)
95
+ - [UpdatePickfaceRequestContentsInnerQuantityReserved](docs/UpdatePickfaceRequestContentsInnerQuantityReserved.md)
96
+ - [VariantAttribute](docs/VariantAttribute.md)
97
+ - [VariantAttributeThumbnail](docs/VariantAttributeThumbnail.md)
98
+
99
+
100
+ <a id="documentation-for-authorization"></a>
101
+ ## Documentation For Authorization
102
+
103
+
104
+ Authentication schemes defined for the API:
105
+ <a id="api-key"></a>
106
+ ### api-key
107
+
108
+ - **Type**: API key
109
+ - **API key parameter name**: Authorization
110
+ - **Location**: HTTP header
111
+
112
+ <a id="session-oauth"></a>
113
+ ### session-oauth
114
+
115
+ - **Type**: OAuth
116
+ - **Flow**: password
117
+ - **Authorization URL**:
118
+ - **Scopes**: N/A
119
+
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
6
6
  *
7
- * The version of the OpenAPI document: 0.24.1
7
+ * The version of the OpenAPI document: 0.27.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -260,79 +260,79 @@ export interface Pickface {
260
260
  * @type {string}
261
261
  * @memberof Pickface
262
262
  */
263
- 'id'?: string;
263
+ 'id': string;
264
264
  /**
265
265
  * A reference to the resource location
266
266
  * @type {string}
267
267
  * @memberof Pickface
268
268
  */
269
- 'ref'?: string;
269
+ 'ref': string;
270
270
  /**
271
271
  *
272
272
  * @type {PickfaceZone}
273
273
  * @memberof Pickface
274
274
  */
275
- 'zone'?: PickfaceZone | null;
275
+ 'zone': PickfaceZone | null;
276
276
  /**
277
277
  * The human readable location of the pickface, if a name is provided this will be the name.
278
278
  * @type {string}
279
279
  * @memberof Pickface
280
280
  */
281
- 'code'?: string;
281
+ 'code': string;
282
282
  /**
283
283
  *
284
284
  * @type {boolean}
285
285
  * @memberof Pickface
286
286
  */
287
- 'enabled'?: boolean;
287
+ 'enabled': boolean;
288
288
  /**
289
289
  * Whether the pickface can contain mixed contents.
290
290
  * @type {boolean}
291
291
  * @memberof Pickface
292
292
  */
293
- 'mixedContents'?: boolean;
293
+ 'mixedContents': boolean;
294
294
  /**
295
295
  * Whether the pickface is used for bulk storage and not for picking
296
296
  * @type {boolean}
297
297
  * @memberof Pickface
298
298
  */
299
- 'bulk'?: boolean;
299
+ 'bulk': boolean;
300
300
  /**
301
301
  *
302
302
  * @type {PickfaceContainerType}
303
303
  * @memberof Pickface
304
304
  */
305
- 'containerType'?: PickfaceContainerType;
305
+ 'containerType': PickfaceContainerType;
306
306
  /**
307
307
  * The percentage of the pickface that has been taken up by its contents
308
308
  * @type {number}
309
309
  * @memberof Pickface
310
310
  */
311
- 'fullness'?: number;
311
+ 'fullness': number;
312
312
  /**
313
313
  *
314
- * @type {PickfaceLastPicked}
314
+ * @type {PickfaceLog}
315
315
  * @memberof Pickface
316
316
  */
317
- 'lastPicked'?: PickfaceLastPicked;
317
+ 'lastPicked': PickfaceLog | null;
318
318
  /**
319
319
  *
320
- * @type {PickfaceLastRestocked}
320
+ * @type {PickfaceLog}
321
321
  * @memberof Pickface
322
322
  */
323
- 'lastRestocked'?: PickfaceLastRestocked;
323
+ 'lastRestocked': PickfaceLog | null;
324
324
  /**
325
325
  *
326
326
  * @type {PickfaceIssue}
327
327
  * @memberof Pickface
328
328
  */
329
- 'issue'?: PickfaceIssue | null;
329
+ 'issue': PickfaceIssue | null;
330
330
  /**
331
331
  *
332
332
  * @type {Array<PickfaceContentsInner>}
333
333
  * @memberof Pickface
334
334
  */
335
- 'contents'?: Array<PickfaceContentsInner>;
335
+ 'contents': Array<PickfaceContentsInner>;
336
336
  }
337
337
  /**
338
338
  *
@@ -364,25 +364,25 @@ export interface PickfaceContentsInner {
364
364
  * @type {string}
365
365
  * @memberof PickfaceContentsInner
366
366
  */
367
- 'variantRef'?: string;
367
+ 'variantRef': string;
368
368
  /**
369
369
  * The ID of the project that the contents belongs to. For example, if you had a 3PL item this would be the project that created the product.
370
370
  * @type {string}
371
371
  * @memberof PickfaceContentsInner
372
372
  */
373
- 'ownerProjectId'?: string | null;
373
+ 'ownerProjectId': string | null;
374
374
  /**
375
375
  *
376
376
  * @type {PickfaceContentsInnerQuantity}
377
377
  * @memberof PickfaceContentsInner
378
378
  */
379
- 'quantity'?: PickfaceContentsInnerQuantity;
379
+ 'quantity': PickfaceContentsInnerQuantity;
380
380
  /**
381
381
  *
382
382
  * @type {PickfaceContentsInnerMetadata}
383
383
  * @memberof PickfaceContentsInner
384
384
  */
385
- 'metadata'?: PickfaceContentsInnerMetadata | null;
385
+ 'metadata': PickfaceContentsInnerMetadata | null;
386
386
  }
387
387
  /**
388
388
  * Any additional metadata
@@ -395,13 +395,13 @@ export interface PickfaceContentsInnerMetadata {
395
395
  * @type {string}
396
396
  * @memberof PickfaceContentsInnerMetadata
397
397
  */
398
- 'title'?: string | null;
398
+ 'title': string | null;
399
399
  /**
400
400
  * The SKU of the product
401
401
  * @type {string}
402
402
  * @memberof PickfaceContentsInnerMetadata
403
403
  */
404
- 'sku'?: string | null;
404
+ 'sku': string | null;
405
405
  /**
406
406
  * The image of the front of the product
407
407
  * @type {string}
@@ -465,80 +465,6 @@ export interface PickfaceIssue {
465
465
  */
466
466
  'ref'?: string;
467
467
  }
468
- /**
469
- *
470
- * @export
471
- * @interface PickfaceLastPicked
472
- */
473
- export interface PickfaceLastPicked {
474
- /**
475
- * Unique object identifier
476
- * @type {string}
477
- * @memberof PickfaceLastPicked
478
- */
479
- 'id'?: string;
480
- /**
481
- * A reference to the resource location
482
- * @type {string}
483
- * @memberof PickfaceLastPicked
484
- */
485
- 'userRef'?: string;
486
- /**
487
- * The action that was taken
488
- * @type {string}
489
- * @memberof PickfaceLastPicked
490
- */
491
- 'action'?: string;
492
- /**
493
- * The reason for the action
494
- * @type {string}
495
- * @memberof PickfaceLastPicked
496
- */
497
- 'reason'?: string | null;
498
- /**
499
- * ISO 8601 Created at timestamp
500
- * @type {string}
501
- * @memberof PickfaceLastPicked
502
- */
503
- 'createdAt'?: string;
504
- }
505
- /**
506
- *
507
- * @export
508
- * @interface PickfaceLastRestocked
509
- */
510
- export interface PickfaceLastRestocked {
511
- /**
512
- * Unique object identifier
513
- * @type {string}
514
- * @memberof PickfaceLastRestocked
515
- */
516
- 'id'?: string;
517
- /**
518
- * A reference to the resource location
519
- * @type {string}
520
- * @memberof PickfaceLastRestocked
521
- */
522
- 'userRef'?: string;
523
- /**
524
- * The action that was taken
525
- * @type {string}
526
- * @memberof PickfaceLastRestocked
527
- */
528
- 'action'?: string;
529
- /**
530
- * The reason for the action
531
- * @type {string}
532
- * @memberof PickfaceLastRestocked
533
- */
534
- 'reason'?: string | null;
535
- /**
536
- * ISO 8601 Created at timestamp
537
- * @type {string}
538
- * @memberof PickfaceLastRestocked
539
- */
540
- 'createdAt'?: string;
541
- }
542
468
  /**
543
469
  *
544
470
  * @export
@@ -550,31 +476,31 @@ export interface PickfaceLog {
550
476
  * @type {string}
551
477
  * @memberof PickfaceLog
552
478
  */
553
- 'id'?: string;
479
+ 'id': string;
554
480
  /**
555
481
  * A reference to the resource location
556
482
  * @type {string}
557
483
  * @memberof PickfaceLog
558
484
  */
559
- 'userRef'?: string;
485
+ 'userRef': string;
560
486
  /**
561
487
  * The action that was taken
562
488
  * @type {string}
563
489
  * @memberof PickfaceLog
564
490
  */
565
- 'action'?: string;
491
+ 'action': string;
566
492
  /**
567
493
  * The reason for the action
568
494
  * @type {string}
569
495
  * @memberof PickfaceLog
570
496
  */
571
- 'reason'?: string | null;
497
+ 'reason': string | null;
572
498
  /**
573
499
  * ISO 8601 Created at timestamp
574
500
  * @type {string}
575
501
  * @memberof PickfaceLog
576
502
  */
577
- 'createdAt'?: string;
503
+ 'createdAt': string;
578
504
  }
579
505
  /**
580
506
  *
@@ -612,7 +538,7 @@ export interface UpdatePickfaceRequest {
612
538
  * @type {boolean}
613
539
  * @memberof UpdatePickfaceRequest
614
540
  */
615
- 'enabled'?: boolean;
541
+ 'enabled': boolean;
616
542
  /**
617
543
  * Unique object identifier
618
544
  * @type {string}
@@ -649,6 +575,12 @@ export interface UpdatePickfaceRequest {
649
575
  * @memberof UpdatePickfaceRequest
650
576
  */
651
577
  'contents'?: Array<UpdatePickfaceRequestContentsInner> | null;
578
+ /**
579
+ * Unique object identifier
580
+ * @type {string}
581
+ * @memberof UpdatePickfaceRequest
582
+ */
583
+ 'purchaseOrderId'?: string;
652
584
  }
653
585
  /**
654
586
  *
@@ -676,25 +608,71 @@ export interface UpdatePickfaceRequestContentsInner {
676
608
  */
677
609
  export interface UpdatePickfaceRequestContentsInnerQuantity {
678
610
  /**
679
- * The operation to perform on the pickface
680
- * @type {string}
611
+ *
612
+ * @type {UpdatePickfaceRequestContentsInnerQuantityAvailable}
681
613
  * @memberof UpdatePickfaceRequestContentsInnerQuantity
682
614
  */
683
- 'operation': UpdatePickfaceRequestContentsInnerQuantityOperationEnum;
615
+ 'available'?: UpdatePickfaceRequestContentsInnerQuantityAvailable | null;
684
616
  /**
685
- * The value to use with the operation
686
- * @type {number}
617
+ *
618
+ * @type {UpdatePickfaceRequestContentsInnerQuantityReserved}
687
619
  * @memberof UpdatePickfaceRequestContentsInnerQuantity
688
620
  */
621
+ 'reserved'?: UpdatePickfaceRequestContentsInnerQuantityReserved | null;
622
+ }
623
+ /**
624
+ * The amount to add or subtract from the available stock on the pickface
625
+ * @export
626
+ * @interface UpdatePickfaceRequestContentsInnerQuantityAvailable
627
+ */
628
+ export interface UpdatePickfaceRequestContentsInnerQuantityAvailable {
629
+ /**
630
+ *
631
+ * @type {string}
632
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityAvailable
633
+ */
634
+ 'operation'?: UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum;
635
+ /**
636
+ *
637
+ * @type {number}
638
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityAvailable
639
+ */
640
+ 'value': number;
641
+ }
642
+
643
+ export const UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = {
644
+ Add: 'add',
645
+ Subtract: 'subtract'
646
+ } as const;
647
+
648
+ export type UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum];
649
+
650
+ /**
651
+ * The amount to add or subtract from the reserved stock on the pickface. Note that you cannot subtract more than the amount of stock that has been reserved for PodOS orders.
652
+ * @export
653
+ * @interface UpdatePickfaceRequestContentsInnerQuantityReserved
654
+ */
655
+ export interface UpdatePickfaceRequestContentsInnerQuantityReserved {
656
+ /**
657
+ *
658
+ * @type {string}
659
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
660
+ */
661
+ 'operation'?: UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum;
662
+ /**
663
+ *
664
+ * @type {number}
665
+ * @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
666
+ */
689
667
  'value': number;
690
668
  }
691
669
 
692
- export const UpdatePickfaceRequestContentsInnerQuantityOperationEnum = {
670
+ export const UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = {
693
671
  Add: 'add',
694
672
  Subtract: 'subtract'
695
673
  } as const;
696
674
 
697
- export type UpdatePickfaceRequestContentsInnerQuantityOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum];
675
+ export type UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum];
698
676
 
699
677
  /**
700
678
  *
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
6
6
  *
7
- * The version of the OpenAPI document: 0.24.1
7
+ * The version of the OpenAPI document: 0.27.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
6
6
  *
7
- * The version of the OpenAPI document: 0.24.1
7
+ * The version of the OpenAPI document: 0.27.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
6
6
  *
7
- * The version of the OpenAPI document: 0.24.1
7
+ * The version of the OpenAPI document: 0.27.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).