@teemill/pickfaces 0.24.0 → 0.25.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.
- package/README.md +2 -2
- package/api.ts +54 -36
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +54 -36
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +54 -36
- package/dist/esm/api.js +1 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/pickfaces@0.
|
|
1
|
+
## @teemill/pickfaces@0.25.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.
|
|
39
|
+
npm install @teemill/pickfaces@0.25.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 0.25.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -122,6 +122,12 @@ export interface CreatePickfaceRequest {
|
|
|
122
122
|
* @memberof CreatePickfaceRequest
|
|
123
123
|
*/
|
|
124
124
|
'containerTypeId': string;
|
|
125
|
+
/**
|
|
126
|
+
* Whether the pickface is used for bulk storage
|
|
127
|
+
* @type {boolean}
|
|
128
|
+
* @memberof CreatePickfaceRequest
|
|
129
|
+
*/
|
|
130
|
+
'bulk'?: boolean;
|
|
125
131
|
/**
|
|
126
132
|
* Whether the pickface can contain mixed contents.
|
|
127
133
|
* @type {boolean}
|
|
@@ -254,79 +260,79 @@ export interface Pickface {
|
|
|
254
260
|
* @type {string}
|
|
255
261
|
* @memberof Pickface
|
|
256
262
|
*/
|
|
257
|
-
'id'
|
|
263
|
+
'id': string;
|
|
258
264
|
/**
|
|
259
265
|
* A reference to the resource location
|
|
260
266
|
* @type {string}
|
|
261
267
|
* @memberof Pickface
|
|
262
268
|
*/
|
|
263
|
-
'ref'
|
|
269
|
+
'ref': string;
|
|
264
270
|
/**
|
|
265
271
|
*
|
|
266
272
|
* @type {PickfaceZone}
|
|
267
273
|
* @memberof Pickface
|
|
268
274
|
*/
|
|
269
|
-
'zone'
|
|
275
|
+
'zone': PickfaceZone | null;
|
|
270
276
|
/**
|
|
271
277
|
* The human readable location of the pickface, if a name is provided this will be the name.
|
|
272
278
|
* @type {string}
|
|
273
279
|
* @memberof Pickface
|
|
274
280
|
*/
|
|
275
|
-
'code'
|
|
281
|
+
'code': string;
|
|
276
282
|
/**
|
|
277
283
|
*
|
|
278
284
|
* @type {boolean}
|
|
279
285
|
* @memberof Pickface
|
|
280
286
|
*/
|
|
281
|
-
'enabled'
|
|
287
|
+
'enabled': boolean;
|
|
282
288
|
/**
|
|
283
289
|
* Whether the pickface can contain mixed contents.
|
|
284
290
|
* @type {boolean}
|
|
285
291
|
* @memberof Pickface
|
|
286
292
|
*/
|
|
287
|
-
'mixedContents'
|
|
293
|
+
'mixedContents': boolean;
|
|
288
294
|
/**
|
|
289
295
|
* Whether the pickface is used for bulk storage and not for picking
|
|
290
296
|
* @type {boolean}
|
|
291
297
|
* @memberof Pickface
|
|
292
298
|
*/
|
|
293
|
-
'bulk'
|
|
299
|
+
'bulk': boolean;
|
|
294
300
|
/**
|
|
295
301
|
*
|
|
296
302
|
* @type {PickfaceContainerType}
|
|
297
303
|
* @memberof Pickface
|
|
298
304
|
*/
|
|
299
|
-
'containerType'
|
|
305
|
+
'containerType': PickfaceContainerType;
|
|
300
306
|
/**
|
|
301
307
|
* The percentage of the pickface that has been taken up by its contents
|
|
302
308
|
* @type {number}
|
|
303
309
|
* @memberof Pickface
|
|
304
310
|
*/
|
|
305
|
-
'fullness'
|
|
311
|
+
'fullness': number;
|
|
306
312
|
/**
|
|
307
313
|
*
|
|
308
314
|
* @type {PickfaceLastPicked}
|
|
309
315
|
* @memberof Pickface
|
|
310
316
|
*/
|
|
311
|
-
'lastPicked'
|
|
317
|
+
'lastPicked': PickfaceLastPicked;
|
|
312
318
|
/**
|
|
313
319
|
*
|
|
314
320
|
* @type {PickfaceLastRestocked}
|
|
315
321
|
* @memberof Pickface
|
|
316
322
|
*/
|
|
317
|
-
'lastRestocked'
|
|
323
|
+
'lastRestocked': PickfaceLastRestocked;
|
|
318
324
|
/**
|
|
319
325
|
*
|
|
320
326
|
* @type {PickfaceIssue}
|
|
321
327
|
* @memberof Pickface
|
|
322
328
|
*/
|
|
323
|
-
'issue'
|
|
329
|
+
'issue': PickfaceIssue | null;
|
|
324
330
|
/**
|
|
325
331
|
*
|
|
326
332
|
* @type {Array<PickfaceContentsInner>}
|
|
327
333
|
* @memberof Pickface
|
|
328
334
|
*/
|
|
329
|
-
'contents'
|
|
335
|
+
'contents': Array<PickfaceContentsInner>;
|
|
330
336
|
}
|
|
331
337
|
/**
|
|
332
338
|
*
|
|
@@ -358,25 +364,25 @@ export interface PickfaceContentsInner {
|
|
|
358
364
|
* @type {string}
|
|
359
365
|
* @memberof PickfaceContentsInner
|
|
360
366
|
*/
|
|
361
|
-
'variantRef'
|
|
367
|
+
'variantRef': string;
|
|
362
368
|
/**
|
|
363
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.
|
|
364
370
|
* @type {string}
|
|
365
371
|
* @memberof PickfaceContentsInner
|
|
366
372
|
*/
|
|
367
|
-
'ownerProjectId'
|
|
373
|
+
'ownerProjectId': string | null;
|
|
368
374
|
/**
|
|
369
375
|
*
|
|
370
376
|
* @type {PickfaceContentsInnerQuantity}
|
|
371
377
|
* @memberof PickfaceContentsInner
|
|
372
378
|
*/
|
|
373
|
-
'quantity'
|
|
379
|
+
'quantity': PickfaceContentsInnerQuantity;
|
|
374
380
|
/**
|
|
375
381
|
*
|
|
376
382
|
* @type {PickfaceContentsInnerMetadata}
|
|
377
383
|
* @memberof PickfaceContentsInner
|
|
378
384
|
*/
|
|
379
|
-
'metadata'
|
|
385
|
+
'metadata': PickfaceContentsInnerMetadata | null;
|
|
380
386
|
}
|
|
381
387
|
/**
|
|
382
388
|
* Any additional metadata
|
|
@@ -389,13 +395,13 @@ export interface PickfaceContentsInnerMetadata {
|
|
|
389
395
|
* @type {string}
|
|
390
396
|
* @memberof PickfaceContentsInnerMetadata
|
|
391
397
|
*/
|
|
392
|
-
'title'
|
|
398
|
+
'title': string | null;
|
|
393
399
|
/**
|
|
394
400
|
* The SKU of the product
|
|
395
401
|
* @type {string}
|
|
396
402
|
* @memberof PickfaceContentsInnerMetadata
|
|
397
403
|
*/
|
|
398
|
-
'sku'
|
|
404
|
+
'sku': string | null;
|
|
399
405
|
/**
|
|
400
406
|
* The image of the front of the product
|
|
401
407
|
* @type {string}
|
|
@@ -470,31 +476,31 @@ export interface PickfaceLastPicked {
|
|
|
470
476
|
* @type {string}
|
|
471
477
|
* @memberof PickfaceLastPicked
|
|
472
478
|
*/
|
|
473
|
-
'id'
|
|
479
|
+
'id': string;
|
|
474
480
|
/**
|
|
475
481
|
* A reference to the resource location
|
|
476
482
|
* @type {string}
|
|
477
483
|
* @memberof PickfaceLastPicked
|
|
478
484
|
*/
|
|
479
|
-
'userRef'
|
|
485
|
+
'userRef': string;
|
|
480
486
|
/**
|
|
481
487
|
* The action that was taken
|
|
482
488
|
* @type {string}
|
|
483
489
|
* @memberof PickfaceLastPicked
|
|
484
490
|
*/
|
|
485
|
-
'action'
|
|
491
|
+
'action': string;
|
|
486
492
|
/**
|
|
487
493
|
* The reason for the action
|
|
488
494
|
* @type {string}
|
|
489
495
|
* @memberof PickfaceLastPicked
|
|
490
496
|
*/
|
|
491
|
-
'reason'
|
|
497
|
+
'reason': string | null;
|
|
492
498
|
/**
|
|
493
499
|
* ISO 8601 Created at timestamp
|
|
494
500
|
* @type {string}
|
|
495
501
|
* @memberof PickfaceLastPicked
|
|
496
502
|
*/
|
|
497
|
-
'createdAt'
|
|
503
|
+
'createdAt': string;
|
|
498
504
|
}
|
|
499
505
|
/**
|
|
500
506
|
*
|
|
@@ -507,31 +513,31 @@ export interface PickfaceLastRestocked {
|
|
|
507
513
|
* @type {string}
|
|
508
514
|
* @memberof PickfaceLastRestocked
|
|
509
515
|
*/
|
|
510
|
-
'id'
|
|
516
|
+
'id': string;
|
|
511
517
|
/**
|
|
512
518
|
* A reference to the resource location
|
|
513
519
|
* @type {string}
|
|
514
520
|
* @memberof PickfaceLastRestocked
|
|
515
521
|
*/
|
|
516
|
-
'userRef'
|
|
522
|
+
'userRef': string;
|
|
517
523
|
/**
|
|
518
524
|
* The action that was taken
|
|
519
525
|
* @type {string}
|
|
520
526
|
* @memberof PickfaceLastRestocked
|
|
521
527
|
*/
|
|
522
|
-
'action'
|
|
528
|
+
'action': string;
|
|
523
529
|
/**
|
|
524
530
|
* The reason for the action
|
|
525
531
|
* @type {string}
|
|
526
532
|
* @memberof PickfaceLastRestocked
|
|
527
533
|
*/
|
|
528
|
-
'reason'
|
|
534
|
+
'reason': string | null;
|
|
529
535
|
/**
|
|
530
536
|
* ISO 8601 Created at timestamp
|
|
531
537
|
* @type {string}
|
|
532
538
|
* @memberof PickfaceLastRestocked
|
|
533
539
|
*/
|
|
534
|
-
'createdAt'
|
|
540
|
+
'createdAt': string;
|
|
535
541
|
}
|
|
536
542
|
/**
|
|
537
543
|
*
|
|
@@ -544,31 +550,31 @@ export interface PickfaceLog {
|
|
|
544
550
|
* @type {string}
|
|
545
551
|
* @memberof PickfaceLog
|
|
546
552
|
*/
|
|
547
|
-
'id'
|
|
553
|
+
'id': string;
|
|
548
554
|
/**
|
|
549
555
|
* A reference to the resource location
|
|
550
556
|
* @type {string}
|
|
551
557
|
* @memberof PickfaceLog
|
|
552
558
|
*/
|
|
553
|
-
'userRef'
|
|
559
|
+
'userRef': string;
|
|
554
560
|
/**
|
|
555
561
|
* The action that was taken
|
|
556
562
|
* @type {string}
|
|
557
563
|
* @memberof PickfaceLog
|
|
558
564
|
*/
|
|
559
|
-
'action'
|
|
565
|
+
'action': string;
|
|
560
566
|
/**
|
|
561
567
|
* The reason for the action
|
|
562
568
|
* @type {string}
|
|
563
569
|
* @memberof PickfaceLog
|
|
564
570
|
*/
|
|
565
|
-
'reason'
|
|
571
|
+
'reason': string | null;
|
|
566
572
|
/**
|
|
567
573
|
* ISO 8601 Created at timestamp
|
|
568
574
|
* @type {string}
|
|
569
575
|
* @memberof PickfaceLog
|
|
570
576
|
*/
|
|
571
|
-
'createdAt'
|
|
577
|
+
'createdAt': string;
|
|
572
578
|
}
|
|
573
579
|
/**
|
|
574
580
|
*
|
|
@@ -606,7 +612,7 @@ export interface UpdatePickfaceRequest {
|
|
|
606
612
|
* @type {boolean}
|
|
607
613
|
* @memberof UpdatePickfaceRequest
|
|
608
614
|
*/
|
|
609
|
-
'enabled'
|
|
615
|
+
'enabled': boolean;
|
|
610
616
|
/**
|
|
611
617
|
* Unique object identifier
|
|
612
618
|
* @type {string}
|
|
@@ -625,6 +631,12 @@ export interface UpdatePickfaceRequest {
|
|
|
625
631
|
* @memberof UpdatePickfaceRequest
|
|
626
632
|
*/
|
|
627
633
|
'mixedContents'?: boolean;
|
|
634
|
+
/**
|
|
635
|
+
* Whether the pickface is used for bulk storage
|
|
636
|
+
* @type {boolean}
|
|
637
|
+
* @memberof UpdatePickfaceRequest
|
|
638
|
+
*/
|
|
639
|
+
'bulk'?: boolean;
|
|
628
640
|
/**
|
|
629
641
|
* A user defined name for the pickface, if this is not provided the location will be used as the name.
|
|
630
642
|
* @type {string}
|
|
@@ -637,6 +649,12 @@ export interface UpdatePickfaceRequest {
|
|
|
637
649
|
* @memberof UpdatePickfaceRequest
|
|
638
650
|
*/
|
|
639
651
|
'contents'?: Array<UpdatePickfaceRequestContentsInner> | null;
|
|
652
|
+
/**
|
|
653
|
+
* Unique object identifier
|
|
654
|
+
* @type {string}
|
|
655
|
+
* @memberof UpdatePickfaceRequest
|
|
656
|
+
*/
|
|
657
|
+
'purchaseOrderId'?: string;
|
|
640
658
|
}
|
|
641
659
|
/**
|
|
642
660
|
*
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 0.25.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.
|
|
7
|
+
* The version of the OpenAPI document: 0.25.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.
|
|
7
|
+
* The version of the OpenAPI document: 0.25.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.25.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -112,6 +112,12 @@ export interface CreatePickfaceRequest {
|
|
|
112
112
|
* @memberof CreatePickfaceRequest
|
|
113
113
|
*/
|
|
114
114
|
'containerTypeId': string;
|
|
115
|
+
/**
|
|
116
|
+
* Whether the pickface is used for bulk storage
|
|
117
|
+
* @type {boolean}
|
|
118
|
+
* @memberof CreatePickfaceRequest
|
|
119
|
+
*/
|
|
120
|
+
'bulk'?: boolean;
|
|
115
121
|
/**
|
|
116
122
|
* Whether the pickface can contain mixed contents.
|
|
117
123
|
* @type {boolean}
|
|
@@ -244,79 +250,79 @@ export interface Pickface {
|
|
|
244
250
|
* @type {string}
|
|
245
251
|
* @memberof Pickface
|
|
246
252
|
*/
|
|
247
|
-
'id'
|
|
253
|
+
'id': string;
|
|
248
254
|
/**
|
|
249
255
|
* A reference to the resource location
|
|
250
256
|
* @type {string}
|
|
251
257
|
* @memberof Pickface
|
|
252
258
|
*/
|
|
253
|
-
'ref'
|
|
259
|
+
'ref': string;
|
|
254
260
|
/**
|
|
255
261
|
*
|
|
256
262
|
* @type {PickfaceZone}
|
|
257
263
|
* @memberof Pickface
|
|
258
264
|
*/
|
|
259
|
-
'zone'
|
|
265
|
+
'zone': PickfaceZone | null;
|
|
260
266
|
/**
|
|
261
267
|
* The human readable location of the pickface, if a name is provided this will be the name.
|
|
262
268
|
* @type {string}
|
|
263
269
|
* @memberof Pickface
|
|
264
270
|
*/
|
|
265
|
-
'code'
|
|
271
|
+
'code': string;
|
|
266
272
|
/**
|
|
267
273
|
*
|
|
268
274
|
* @type {boolean}
|
|
269
275
|
* @memberof Pickface
|
|
270
276
|
*/
|
|
271
|
-
'enabled'
|
|
277
|
+
'enabled': boolean;
|
|
272
278
|
/**
|
|
273
279
|
* Whether the pickface can contain mixed contents.
|
|
274
280
|
* @type {boolean}
|
|
275
281
|
* @memberof Pickface
|
|
276
282
|
*/
|
|
277
|
-
'mixedContents'
|
|
283
|
+
'mixedContents': boolean;
|
|
278
284
|
/**
|
|
279
285
|
* Whether the pickface is used for bulk storage and not for picking
|
|
280
286
|
* @type {boolean}
|
|
281
287
|
* @memberof Pickface
|
|
282
288
|
*/
|
|
283
|
-
'bulk'
|
|
289
|
+
'bulk': boolean;
|
|
284
290
|
/**
|
|
285
291
|
*
|
|
286
292
|
* @type {PickfaceContainerType}
|
|
287
293
|
* @memberof Pickface
|
|
288
294
|
*/
|
|
289
|
-
'containerType'
|
|
295
|
+
'containerType': PickfaceContainerType;
|
|
290
296
|
/**
|
|
291
297
|
* The percentage of the pickface that has been taken up by its contents
|
|
292
298
|
* @type {number}
|
|
293
299
|
* @memberof Pickface
|
|
294
300
|
*/
|
|
295
|
-
'fullness'
|
|
301
|
+
'fullness': number;
|
|
296
302
|
/**
|
|
297
303
|
*
|
|
298
304
|
* @type {PickfaceLastPicked}
|
|
299
305
|
* @memberof Pickface
|
|
300
306
|
*/
|
|
301
|
-
'lastPicked'
|
|
307
|
+
'lastPicked': PickfaceLastPicked;
|
|
302
308
|
/**
|
|
303
309
|
*
|
|
304
310
|
* @type {PickfaceLastRestocked}
|
|
305
311
|
* @memberof Pickface
|
|
306
312
|
*/
|
|
307
|
-
'lastRestocked'
|
|
313
|
+
'lastRestocked': PickfaceLastRestocked;
|
|
308
314
|
/**
|
|
309
315
|
*
|
|
310
316
|
* @type {PickfaceIssue}
|
|
311
317
|
* @memberof Pickface
|
|
312
318
|
*/
|
|
313
|
-
'issue'
|
|
319
|
+
'issue': PickfaceIssue | null;
|
|
314
320
|
/**
|
|
315
321
|
*
|
|
316
322
|
* @type {Array<PickfaceContentsInner>}
|
|
317
323
|
* @memberof Pickface
|
|
318
324
|
*/
|
|
319
|
-
'contents'
|
|
325
|
+
'contents': Array<PickfaceContentsInner>;
|
|
320
326
|
}
|
|
321
327
|
/**
|
|
322
328
|
*
|
|
@@ -348,25 +354,25 @@ export interface PickfaceContentsInner {
|
|
|
348
354
|
* @type {string}
|
|
349
355
|
* @memberof PickfaceContentsInner
|
|
350
356
|
*/
|
|
351
|
-
'variantRef'
|
|
357
|
+
'variantRef': string;
|
|
352
358
|
/**
|
|
353
359
|
* 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.
|
|
354
360
|
* @type {string}
|
|
355
361
|
* @memberof PickfaceContentsInner
|
|
356
362
|
*/
|
|
357
|
-
'ownerProjectId'
|
|
363
|
+
'ownerProjectId': string | null;
|
|
358
364
|
/**
|
|
359
365
|
*
|
|
360
366
|
* @type {PickfaceContentsInnerQuantity}
|
|
361
367
|
* @memberof PickfaceContentsInner
|
|
362
368
|
*/
|
|
363
|
-
'quantity'
|
|
369
|
+
'quantity': PickfaceContentsInnerQuantity;
|
|
364
370
|
/**
|
|
365
371
|
*
|
|
366
372
|
* @type {PickfaceContentsInnerMetadata}
|
|
367
373
|
* @memberof PickfaceContentsInner
|
|
368
374
|
*/
|
|
369
|
-
'metadata'
|
|
375
|
+
'metadata': PickfaceContentsInnerMetadata | null;
|
|
370
376
|
}
|
|
371
377
|
/**
|
|
372
378
|
* Any additional metadata
|
|
@@ -379,13 +385,13 @@ export interface PickfaceContentsInnerMetadata {
|
|
|
379
385
|
* @type {string}
|
|
380
386
|
* @memberof PickfaceContentsInnerMetadata
|
|
381
387
|
*/
|
|
382
|
-
'title'
|
|
388
|
+
'title': string | null;
|
|
383
389
|
/**
|
|
384
390
|
* The SKU of the product
|
|
385
391
|
* @type {string}
|
|
386
392
|
* @memberof PickfaceContentsInnerMetadata
|
|
387
393
|
*/
|
|
388
|
-
'sku'
|
|
394
|
+
'sku': string | null;
|
|
389
395
|
/**
|
|
390
396
|
* The image of the front of the product
|
|
391
397
|
* @type {string}
|
|
@@ -460,31 +466,31 @@ export interface PickfaceLastPicked {
|
|
|
460
466
|
* @type {string}
|
|
461
467
|
* @memberof PickfaceLastPicked
|
|
462
468
|
*/
|
|
463
|
-
'id'
|
|
469
|
+
'id': string;
|
|
464
470
|
/**
|
|
465
471
|
* A reference to the resource location
|
|
466
472
|
* @type {string}
|
|
467
473
|
* @memberof PickfaceLastPicked
|
|
468
474
|
*/
|
|
469
|
-
'userRef'
|
|
475
|
+
'userRef': string;
|
|
470
476
|
/**
|
|
471
477
|
* The action that was taken
|
|
472
478
|
* @type {string}
|
|
473
479
|
* @memberof PickfaceLastPicked
|
|
474
480
|
*/
|
|
475
|
-
'action'
|
|
481
|
+
'action': string;
|
|
476
482
|
/**
|
|
477
483
|
* The reason for the action
|
|
478
484
|
* @type {string}
|
|
479
485
|
* @memberof PickfaceLastPicked
|
|
480
486
|
*/
|
|
481
|
-
'reason'
|
|
487
|
+
'reason': string | null;
|
|
482
488
|
/**
|
|
483
489
|
* ISO 8601 Created at timestamp
|
|
484
490
|
* @type {string}
|
|
485
491
|
* @memberof PickfaceLastPicked
|
|
486
492
|
*/
|
|
487
|
-
'createdAt'
|
|
493
|
+
'createdAt': string;
|
|
488
494
|
}
|
|
489
495
|
/**
|
|
490
496
|
*
|
|
@@ -497,31 +503,31 @@ export interface PickfaceLastRestocked {
|
|
|
497
503
|
* @type {string}
|
|
498
504
|
* @memberof PickfaceLastRestocked
|
|
499
505
|
*/
|
|
500
|
-
'id'
|
|
506
|
+
'id': string;
|
|
501
507
|
/**
|
|
502
508
|
* A reference to the resource location
|
|
503
509
|
* @type {string}
|
|
504
510
|
* @memberof PickfaceLastRestocked
|
|
505
511
|
*/
|
|
506
|
-
'userRef'
|
|
512
|
+
'userRef': string;
|
|
507
513
|
/**
|
|
508
514
|
* The action that was taken
|
|
509
515
|
* @type {string}
|
|
510
516
|
* @memberof PickfaceLastRestocked
|
|
511
517
|
*/
|
|
512
|
-
'action'
|
|
518
|
+
'action': string;
|
|
513
519
|
/**
|
|
514
520
|
* The reason for the action
|
|
515
521
|
* @type {string}
|
|
516
522
|
* @memberof PickfaceLastRestocked
|
|
517
523
|
*/
|
|
518
|
-
'reason'
|
|
524
|
+
'reason': string | null;
|
|
519
525
|
/**
|
|
520
526
|
* ISO 8601 Created at timestamp
|
|
521
527
|
* @type {string}
|
|
522
528
|
* @memberof PickfaceLastRestocked
|
|
523
529
|
*/
|
|
524
|
-
'createdAt'
|
|
530
|
+
'createdAt': string;
|
|
525
531
|
}
|
|
526
532
|
/**
|
|
527
533
|
*
|
|
@@ -534,31 +540,31 @@ export interface PickfaceLog {
|
|
|
534
540
|
* @type {string}
|
|
535
541
|
* @memberof PickfaceLog
|
|
536
542
|
*/
|
|
537
|
-
'id'
|
|
543
|
+
'id': string;
|
|
538
544
|
/**
|
|
539
545
|
* A reference to the resource location
|
|
540
546
|
* @type {string}
|
|
541
547
|
* @memberof PickfaceLog
|
|
542
548
|
*/
|
|
543
|
-
'userRef'
|
|
549
|
+
'userRef': string;
|
|
544
550
|
/**
|
|
545
551
|
* The action that was taken
|
|
546
552
|
* @type {string}
|
|
547
553
|
* @memberof PickfaceLog
|
|
548
554
|
*/
|
|
549
|
-
'action'
|
|
555
|
+
'action': string;
|
|
550
556
|
/**
|
|
551
557
|
* The reason for the action
|
|
552
558
|
* @type {string}
|
|
553
559
|
* @memberof PickfaceLog
|
|
554
560
|
*/
|
|
555
|
-
'reason'
|
|
561
|
+
'reason': string | null;
|
|
556
562
|
/**
|
|
557
563
|
* ISO 8601 Created at timestamp
|
|
558
564
|
* @type {string}
|
|
559
565
|
* @memberof PickfaceLog
|
|
560
566
|
*/
|
|
561
|
-
'createdAt'
|
|
567
|
+
'createdAt': string;
|
|
562
568
|
}
|
|
563
569
|
/**
|
|
564
570
|
*
|
|
@@ -596,7 +602,7 @@ export interface UpdatePickfaceRequest {
|
|
|
596
602
|
* @type {boolean}
|
|
597
603
|
* @memberof UpdatePickfaceRequest
|
|
598
604
|
*/
|
|
599
|
-
'enabled'
|
|
605
|
+
'enabled': boolean;
|
|
600
606
|
/**
|
|
601
607
|
* Unique object identifier
|
|
602
608
|
* @type {string}
|
|
@@ -615,6 +621,12 @@ export interface UpdatePickfaceRequest {
|
|
|
615
621
|
* @memberof UpdatePickfaceRequest
|
|
616
622
|
*/
|
|
617
623
|
'mixedContents'?: boolean;
|
|
624
|
+
/**
|
|
625
|
+
* Whether the pickface is used for bulk storage
|
|
626
|
+
* @type {boolean}
|
|
627
|
+
* @memberof UpdatePickfaceRequest
|
|
628
|
+
*/
|
|
629
|
+
'bulk'?: boolean;
|
|
618
630
|
/**
|
|
619
631
|
* A user defined name for the pickface, if this is not provided the location will be used as the name.
|
|
620
632
|
* @type {string}
|
|
@@ -627,6 +639,12 @@ export interface UpdatePickfaceRequest {
|
|
|
627
639
|
* @memberof UpdatePickfaceRequest
|
|
628
640
|
*/
|
|
629
641
|
'contents'?: Array<UpdatePickfaceRequestContentsInner> | null;
|
|
642
|
+
/**
|
|
643
|
+
* Unique object identifier
|
|
644
|
+
* @type {string}
|
|
645
|
+
* @memberof UpdatePickfaceRequest
|
|
646
|
+
*/
|
|
647
|
+
'purchaseOrderId'?: string;
|
|
630
648
|
}
|
|
631
649
|
/**
|
|
632
650
|
*
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pickfaces API
|
|
6
6
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.25.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.25.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pickfaces API
|
|
6
6
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.25.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.25.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pickfaces API
|
|
6
6
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.25.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.25.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pickfaces API
|
|
6
6
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.25.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.25.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -112,6 +112,12 @@ export interface CreatePickfaceRequest {
|
|
|
112
112
|
* @memberof CreatePickfaceRequest
|
|
113
113
|
*/
|
|
114
114
|
'containerTypeId': string;
|
|
115
|
+
/**
|
|
116
|
+
* Whether the pickface is used for bulk storage
|
|
117
|
+
* @type {boolean}
|
|
118
|
+
* @memberof CreatePickfaceRequest
|
|
119
|
+
*/
|
|
120
|
+
'bulk'?: boolean;
|
|
115
121
|
/**
|
|
116
122
|
* Whether the pickface can contain mixed contents.
|
|
117
123
|
* @type {boolean}
|
|
@@ -244,79 +250,79 @@ export interface Pickface {
|
|
|
244
250
|
* @type {string}
|
|
245
251
|
* @memberof Pickface
|
|
246
252
|
*/
|
|
247
|
-
'id'
|
|
253
|
+
'id': string;
|
|
248
254
|
/**
|
|
249
255
|
* A reference to the resource location
|
|
250
256
|
* @type {string}
|
|
251
257
|
* @memberof Pickface
|
|
252
258
|
*/
|
|
253
|
-
'ref'
|
|
259
|
+
'ref': string;
|
|
254
260
|
/**
|
|
255
261
|
*
|
|
256
262
|
* @type {PickfaceZone}
|
|
257
263
|
* @memberof Pickface
|
|
258
264
|
*/
|
|
259
|
-
'zone'
|
|
265
|
+
'zone': PickfaceZone | null;
|
|
260
266
|
/**
|
|
261
267
|
* The human readable location of the pickface, if a name is provided this will be the name.
|
|
262
268
|
* @type {string}
|
|
263
269
|
* @memberof Pickface
|
|
264
270
|
*/
|
|
265
|
-
'code'
|
|
271
|
+
'code': string;
|
|
266
272
|
/**
|
|
267
273
|
*
|
|
268
274
|
* @type {boolean}
|
|
269
275
|
* @memberof Pickface
|
|
270
276
|
*/
|
|
271
|
-
'enabled'
|
|
277
|
+
'enabled': boolean;
|
|
272
278
|
/**
|
|
273
279
|
* Whether the pickface can contain mixed contents.
|
|
274
280
|
* @type {boolean}
|
|
275
281
|
* @memberof Pickface
|
|
276
282
|
*/
|
|
277
|
-
'mixedContents'
|
|
283
|
+
'mixedContents': boolean;
|
|
278
284
|
/**
|
|
279
285
|
* Whether the pickface is used for bulk storage and not for picking
|
|
280
286
|
* @type {boolean}
|
|
281
287
|
* @memberof Pickface
|
|
282
288
|
*/
|
|
283
|
-
'bulk'
|
|
289
|
+
'bulk': boolean;
|
|
284
290
|
/**
|
|
285
291
|
*
|
|
286
292
|
* @type {PickfaceContainerType}
|
|
287
293
|
* @memberof Pickface
|
|
288
294
|
*/
|
|
289
|
-
'containerType'
|
|
295
|
+
'containerType': PickfaceContainerType;
|
|
290
296
|
/**
|
|
291
297
|
* The percentage of the pickface that has been taken up by its contents
|
|
292
298
|
* @type {number}
|
|
293
299
|
* @memberof Pickface
|
|
294
300
|
*/
|
|
295
|
-
'fullness'
|
|
301
|
+
'fullness': number;
|
|
296
302
|
/**
|
|
297
303
|
*
|
|
298
304
|
* @type {PickfaceLastPicked}
|
|
299
305
|
* @memberof Pickface
|
|
300
306
|
*/
|
|
301
|
-
'lastPicked'
|
|
307
|
+
'lastPicked': PickfaceLastPicked;
|
|
302
308
|
/**
|
|
303
309
|
*
|
|
304
310
|
* @type {PickfaceLastRestocked}
|
|
305
311
|
* @memberof Pickface
|
|
306
312
|
*/
|
|
307
|
-
'lastRestocked'
|
|
313
|
+
'lastRestocked': PickfaceLastRestocked;
|
|
308
314
|
/**
|
|
309
315
|
*
|
|
310
316
|
* @type {PickfaceIssue}
|
|
311
317
|
* @memberof Pickface
|
|
312
318
|
*/
|
|
313
|
-
'issue'
|
|
319
|
+
'issue': PickfaceIssue | null;
|
|
314
320
|
/**
|
|
315
321
|
*
|
|
316
322
|
* @type {Array<PickfaceContentsInner>}
|
|
317
323
|
* @memberof Pickface
|
|
318
324
|
*/
|
|
319
|
-
'contents'
|
|
325
|
+
'contents': Array<PickfaceContentsInner>;
|
|
320
326
|
}
|
|
321
327
|
/**
|
|
322
328
|
*
|
|
@@ -348,25 +354,25 @@ export interface PickfaceContentsInner {
|
|
|
348
354
|
* @type {string}
|
|
349
355
|
* @memberof PickfaceContentsInner
|
|
350
356
|
*/
|
|
351
|
-
'variantRef'
|
|
357
|
+
'variantRef': string;
|
|
352
358
|
/**
|
|
353
359
|
* 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.
|
|
354
360
|
* @type {string}
|
|
355
361
|
* @memberof PickfaceContentsInner
|
|
356
362
|
*/
|
|
357
|
-
'ownerProjectId'
|
|
363
|
+
'ownerProjectId': string | null;
|
|
358
364
|
/**
|
|
359
365
|
*
|
|
360
366
|
* @type {PickfaceContentsInnerQuantity}
|
|
361
367
|
* @memberof PickfaceContentsInner
|
|
362
368
|
*/
|
|
363
|
-
'quantity'
|
|
369
|
+
'quantity': PickfaceContentsInnerQuantity;
|
|
364
370
|
/**
|
|
365
371
|
*
|
|
366
372
|
* @type {PickfaceContentsInnerMetadata}
|
|
367
373
|
* @memberof PickfaceContentsInner
|
|
368
374
|
*/
|
|
369
|
-
'metadata'
|
|
375
|
+
'metadata': PickfaceContentsInnerMetadata | null;
|
|
370
376
|
}
|
|
371
377
|
/**
|
|
372
378
|
* Any additional metadata
|
|
@@ -379,13 +385,13 @@ export interface PickfaceContentsInnerMetadata {
|
|
|
379
385
|
* @type {string}
|
|
380
386
|
* @memberof PickfaceContentsInnerMetadata
|
|
381
387
|
*/
|
|
382
|
-
'title'
|
|
388
|
+
'title': string | null;
|
|
383
389
|
/**
|
|
384
390
|
* The SKU of the product
|
|
385
391
|
* @type {string}
|
|
386
392
|
* @memberof PickfaceContentsInnerMetadata
|
|
387
393
|
*/
|
|
388
|
-
'sku'
|
|
394
|
+
'sku': string | null;
|
|
389
395
|
/**
|
|
390
396
|
* The image of the front of the product
|
|
391
397
|
* @type {string}
|
|
@@ -460,31 +466,31 @@ export interface PickfaceLastPicked {
|
|
|
460
466
|
* @type {string}
|
|
461
467
|
* @memberof PickfaceLastPicked
|
|
462
468
|
*/
|
|
463
|
-
'id'
|
|
469
|
+
'id': string;
|
|
464
470
|
/**
|
|
465
471
|
* A reference to the resource location
|
|
466
472
|
* @type {string}
|
|
467
473
|
* @memberof PickfaceLastPicked
|
|
468
474
|
*/
|
|
469
|
-
'userRef'
|
|
475
|
+
'userRef': string;
|
|
470
476
|
/**
|
|
471
477
|
* The action that was taken
|
|
472
478
|
* @type {string}
|
|
473
479
|
* @memberof PickfaceLastPicked
|
|
474
480
|
*/
|
|
475
|
-
'action'
|
|
481
|
+
'action': string;
|
|
476
482
|
/**
|
|
477
483
|
* The reason for the action
|
|
478
484
|
* @type {string}
|
|
479
485
|
* @memberof PickfaceLastPicked
|
|
480
486
|
*/
|
|
481
|
-
'reason'
|
|
487
|
+
'reason': string | null;
|
|
482
488
|
/**
|
|
483
489
|
* ISO 8601 Created at timestamp
|
|
484
490
|
* @type {string}
|
|
485
491
|
* @memberof PickfaceLastPicked
|
|
486
492
|
*/
|
|
487
|
-
'createdAt'
|
|
493
|
+
'createdAt': string;
|
|
488
494
|
}
|
|
489
495
|
/**
|
|
490
496
|
*
|
|
@@ -497,31 +503,31 @@ export interface PickfaceLastRestocked {
|
|
|
497
503
|
* @type {string}
|
|
498
504
|
* @memberof PickfaceLastRestocked
|
|
499
505
|
*/
|
|
500
|
-
'id'
|
|
506
|
+
'id': string;
|
|
501
507
|
/**
|
|
502
508
|
* A reference to the resource location
|
|
503
509
|
* @type {string}
|
|
504
510
|
* @memberof PickfaceLastRestocked
|
|
505
511
|
*/
|
|
506
|
-
'userRef'
|
|
512
|
+
'userRef': string;
|
|
507
513
|
/**
|
|
508
514
|
* The action that was taken
|
|
509
515
|
* @type {string}
|
|
510
516
|
* @memberof PickfaceLastRestocked
|
|
511
517
|
*/
|
|
512
|
-
'action'
|
|
518
|
+
'action': string;
|
|
513
519
|
/**
|
|
514
520
|
* The reason for the action
|
|
515
521
|
* @type {string}
|
|
516
522
|
* @memberof PickfaceLastRestocked
|
|
517
523
|
*/
|
|
518
|
-
'reason'
|
|
524
|
+
'reason': string | null;
|
|
519
525
|
/**
|
|
520
526
|
* ISO 8601 Created at timestamp
|
|
521
527
|
* @type {string}
|
|
522
528
|
* @memberof PickfaceLastRestocked
|
|
523
529
|
*/
|
|
524
|
-
'createdAt'
|
|
530
|
+
'createdAt': string;
|
|
525
531
|
}
|
|
526
532
|
/**
|
|
527
533
|
*
|
|
@@ -534,31 +540,31 @@ export interface PickfaceLog {
|
|
|
534
540
|
* @type {string}
|
|
535
541
|
* @memberof PickfaceLog
|
|
536
542
|
*/
|
|
537
|
-
'id'
|
|
543
|
+
'id': string;
|
|
538
544
|
/**
|
|
539
545
|
* A reference to the resource location
|
|
540
546
|
* @type {string}
|
|
541
547
|
* @memberof PickfaceLog
|
|
542
548
|
*/
|
|
543
|
-
'userRef'
|
|
549
|
+
'userRef': string;
|
|
544
550
|
/**
|
|
545
551
|
* The action that was taken
|
|
546
552
|
* @type {string}
|
|
547
553
|
* @memberof PickfaceLog
|
|
548
554
|
*/
|
|
549
|
-
'action'
|
|
555
|
+
'action': string;
|
|
550
556
|
/**
|
|
551
557
|
* The reason for the action
|
|
552
558
|
* @type {string}
|
|
553
559
|
* @memberof PickfaceLog
|
|
554
560
|
*/
|
|
555
|
-
'reason'
|
|
561
|
+
'reason': string | null;
|
|
556
562
|
/**
|
|
557
563
|
* ISO 8601 Created at timestamp
|
|
558
564
|
* @type {string}
|
|
559
565
|
* @memberof PickfaceLog
|
|
560
566
|
*/
|
|
561
|
-
'createdAt'
|
|
567
|
+
'createdAt': string;
|
|
562
568
|
}
|
|
563
569
|
/**
|
|
564
570
|
*
|
|
@@ -596,7 +602,7 @@ export interface UpdatePickfaceRequest {
|
|
|
596
602
|
* @type {boolean}
|
|
597
603
|
* @memberof UpdatePickfaceRequest
|
|
598
604
|
*/
|
|
599
|
-
'enabled'
|
|
605
|
+
'enabled': boolean;
|
|
600
606
|
/**
|
|
601
607
|
* Unique object identifier
|
|
602
608
|
* @type {string}
|
|
@@ -615,6 +621,12 @@ export interface UpdatePickfaceRequest {
|
|
|
615
621
|
* @memberof UpdatePickfaceRequest
|
|
616
622
|
*/
|
|
617
623
|
'mixedContents'?: boolean;
|
|
624
|
+
/**
|
|
625
|
+
* Whether the pickface is used for bulk storage
|
|
626
|
+
* @type {boolean}
|
|
627
|
+
* @memberof UpdatePickfaceRequest
|
|
628
|
+
*/
|
|
629
|
+
'bulk'?: boolean;
|
|
618
630
|
/**
|
|
619
631
|
* A user defined name for the pickface, if this is not provided the location will be used as the name.
|
|
620
632
|
* @type {string}
|
|
@@ -627,6 +639,12 @@ export interface UpdatePickfaceRequest {
|
|
|
627
639
|
* @memberof UpdatePickfaceRequest
|
|
628
640
|
*/
|
|
629
641
|
'contents'?: Array<UpdatePickfaceRequestContentsInner> | null;
|
|
642
|
+
/**
|
|
643
|
+
* Unique object identifier
|
|
644
|
+
* @type {string}
|
|
645
|
+
* @memberof UpdatePickfaceRequest
|
|
646
|
+
*/
|
|
647
|
+
'purchaseOrderId'?: string;
|
|
630
648
|
}
|
|
631
649
|
/**
|
|
632
650
|
*
|
package/dist/esm/api.js
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.
|
|
7
|
+
* The version of the OpenAPI document: 0.25.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.25.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.js
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.
|
|
7
|
+
* The version of the OpenAPI document: 0.25.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.25.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.js
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.
|
|
7
|
+
* The version of the OpenAPI document: 0.25.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.25.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -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.
|
|
7
|
+
* The version of the OpenAPI document: 0.25.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.25.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.js
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.
|
|
7
|
+
* The version of the OpenAPI document: 0.25.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.25.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pickfaces API
|
|
6
6
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.25.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/index.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.
|
|
7
|
+
* The version of the OpenAPI document: 0.25.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|