@teemill/pickfaces 0.19.0 → 0.20.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 +290 -315
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +8 -2
- package/dist/api.d.ts +213 -238
- package/dist/api.js +172 -172
- 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 +3 -2
- package/dist/esm/api.d.ts +213 -238
- package/dist/esm/api.js +171 -171
- 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 +3 -2
- 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/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.20.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -35,58 +35,58 @@ export interface ApiError {
|
|
|
35
35
|
/**
|
|
36
36
|
* The factory container the pickface is within
|
|
37
37
|
* @export
|
|
38
|
-
* @interface
|
|
38
|
+
* @interface ContainerType
|
|
39
39
|
*/
|
|
40
|
-
export interface
|
|
40
|
+
export interface ContainerType {
|
|
41
41
|
/**
|
|
42
42
|
* Unique object identifier
|
|
43
43
|
* @type {string}
|
|
44
|
-
* @memberof
|
|
44
|
+
* @memberof ContainerType
|
|
45
45
|
*/
|
|
46
46
|
'id': string;
|
|
47
47
|
/**
|
|
48
48
|
* A reference to the resource location
|
|
49
49
|
* @type {string}
|
|
50
|
-
* @memberof
|
|
50
|
+
* @memberof ContainerType
|
|
51
51
|
*/
|
|
52
52
|
'ref': string;
|
|
53
53
|
/**
|
|
54
54
|
*
|
|
55
55
|
* @type {string}
|
|
56
|
-
* @memberof
|
|
56
|
+
* @memberof ContainerType
|
|
57
57
|
*/
|
|
58
58
|
'name': string;
|
|
59
59
|
/**
|
|
60
|
-
* The width of the
|
|
60
|
+
* The width of the container in millimetres
|
|
61
61
|
* @type {number}
|
|
62
|
-
* @memberof
|
|
62
|
+
* @memberof ContainerType
|
|
63
63
|
*/
|
|
64
64
|
'width'?: number;
|
|
65
65
|
/**
|
|
66
|
-
* The depth of the
|
|
66
|
+
* The depth of the container in millimetres
|
|
67
67
|
* @type {number}
|
|
68
|
-
* @memberof
|
|
68
|
+
* @memberof ContainerType
|
|
69
69
|
*/
|
|
70
70
|
'depth'?: number;
|
|
71
71
|
/**
|
|
72
|
-
* The height of the
|
|
72
|
+
* The height of the container in millimetres
|
|
73
73
|
* @type {number}
|
|
74
|
-
* @memberof
|
|
74
|
+
* @memberof ContainerType
|
|
75
75
|
*/
|
|
76
76
|
'height'?: number;
|
|
77
77
|
}
|
|
78
78
|
/**
|
|
79
79
|
*
|
|
80
80
|
* @export
|
|
81
|
-
* @interface
|
|
81
|
+
* @interface ContainerTypes
|
|
82
82
|
*/
|
|
83
|
-
export interface
|
|
83
|
+
export interface ContainerTypes {
|
|
84
84
|
/**
|
|
85
85
|
*
|
|
86
|
-
* @type {Array<
|
|
87
|
-
* @memberof
|
|
86
|
+
* @type {Array<ContainerType>}
|
|
87
|
+
* @memberof ContainerTypes
|
|
88
88
|
*/
|
|
89
|
-
'
|
|
89
|
+
'containerTypes'?: Array<ContainerType>;
|
|
90
90
|
}
|
|
91
91
|
/**
|
|
92
92
|
*
|
|
@@ -99,13 +99,13 @@ export interface CreatePickfaceRequest {
|
|
|
99
99
|
* @type {string}
|
|
100
100
|
* @memberof CreatePickfaceRequest
|
|
101
101
|
*/
|
|
102
|
-
'location'
|
|
102
|
+
'location': string;
|
|
103
103
|
/**
|
|
104
104
|
* Unique object identifier
|
|
105
105
|
* @type {string}
|
|
106
106
|
* @memberof CreatePickfaceRequest
|
|
107
107
|
*/
|
|
108
|
-
'
|
|
108
|
+
'containerTypeId': string;
|
|
109
109
|
/**
|
|
110
110
|
* Unique object identifier
|
|
111
111
|
* @type {string}
|
|
@@ -126,25 +126,6 @@ export interface ExportPickfaces202Response {
|
|
|
126
126
|
*/
|
|
127
127
|
'message'?: string;
|
|
128
128
|
}
|
|
129
|
-
/**
|
|
130
|
-
*
|
|
131
|
-
* @export
|
|
132
|
-
* @interface GetPickfaces200Response
|
|
133
|
-
*/
|
|
134
|
-
export interface GetPickfaces200Response {
|
|
135
|
-
/**
|
|
136
|
-
*
|
|
137
|
-
* @type {Array<Pickface>}
|
|
138
|
-
* @memberof GetPickfaces200Response
|
|
139
|
-
*/
|
|
140
|
-
'pickfaces'?: Array<Pickface>;
|
|
141
|
-
/**
|
|
142
|
-
* The token referencing the next page number
|
|
143
|
-
* @type {number}
|
|
144
|
-
* @memberof GetPickfaces200Response
|
|
145
|
-
*/
|
|
146
|
-
'nextPageToken'?: number | null;
|
|
147
|
-
}
|
|
148
129
|
/**
|
|
149
130
|
*
|
|
150
131
|
* @export
|
|
@@ -196,6 +177,25 @@ export interface ListPickfaceLogs200Response {
|
|
|
196
177
|
*/
|
|
197
178
|
'nextPageToken'?: number | null;
|
|
198
179
|
}
|
|
180
|
+
/**
|
|
181
|
+
*
|
|
182
|
+
* @export
|
|
183
|
+
* @interface ListPickfaces200Response
|
|
184
|
+
*/
|
|
185
|
+
export interface ListPickfaces200Response {
|
|
186
|
+
/**
|
|
187
|
+
*
|
|
188
|
+
* @type {Array<Pickface>}
|
|
189
|
+
* @memberof ListPickfaces200Response
|
|
190
|
+
*/
|
|
191
|
+
'pickfaces'?: Array<Pickface>;
|
|
192
|
+
/**
|
|
193
|
+
* The token referencing the next page number
|
|
194
|
+
* @type {number}
|
|
195
|
+
* @memberof ListPickfaces200Response
|
|
196
|
+
*/
|
|
197
|
+
'nextPageToken'?: number | null;
|
|
198
|
+
}
|
|
199
199
|
/**
|
|
200
200
|
*
|
|
201
201
|
* @export
|
|
@@ -253,10 +253,10 @@ export interface Pickface {
|
|
|
253
253
|
'enabled'?: boolean;
|
|
254
254
|
/**
|
|
255
255
|
*
|
|
256
|
-
* @type {
|
|
256
|
+
* @type {PickfaceContainerType}
|
|
257
257
|
* @memberof Pickface
|
|
258
258
|
*/
|
|
259
|
-
'
|
|
259
|
+
'containerType'?: PickfaceContainerType;
|
|
260
260
|
/**
|
|
261
261
|
* The percentage of the pickface that has been taken up by its contents
|
|
262
262
|
* @type {number}
|
|
@@ -291,19 +291,19 @@ export interface Pickface {
|
|
|
291
291
|
/**
|
|
292
292
|
*
|
|
293
293
|
* @export
|
|
294
|
-
* @interface
|
|
294
|
+
* @interface PickfaceContainerType
|
|
295
295
|
*/
|
|
296
|
-
export interface
|
|
296
|
+
export interface PickfaceContainerType {
|
|
297
297
|
/**
|
|
298
298
|
* Unique object identifier
|
|
299
299
|
* @type {string}
|
|
300
|
-
* @memberof
|
|
300
|
+
* @memberof PickfaceContainerType
|
|
301
301
|
*/
|
|
302
302
|
'id'?: string;
|
|
303
303
|
/**
|
|
304
304
|
* A reference to the resource location
|
|
305
305
|
* @type {string}
|
|
306
|
-
* @memberof
|
|
306
|
+
* @memberof PickfaceContainerType
|
|
307
307
|
*/
|
|
308
308
|
'ref'?: string;
|
|
309
309
|
}
|
|
@@ -331,12 +331,6 @@ export interface PickfaceContentsInner {
|
|
|
331
331
|
* @memberof PickfaceContentsInner
|
|
332
332
|
*/
|
|
333
333
|
'quantity'?: PickfaceContentsInnerQuantity;
|
|
334
|
-
/**
|
|
335
|
-
*
|
|
336
|
-
* @type {Array<PickfaceContentsInnerApplicationsInner>}
|
|
337
|
-
* @memberof PickfaceContentsInner
|
|
338
|
-
*/
|
|
339
|
-
'applications'?: Array<PickfaceContentsInnerApplicationsInner>;
|
|
340
334
|
/**
|
|
341
335
|
*
|
|
342
336
|
* @type {PickfaceContentsInnerMetadata}
|
|
@@ -344,25 +338,6 @@ export interface PickfaceContentsInner {
|
|
|
344
338
|
*/
|
|
345
339
|
'metadata'?: PickfaceContentsInnerMetadata | null;
|
|
346
340
|
}
|
|
347
|
-
/**
|
|
348
|
-
*
|
|
349
|
-
* @export
|
|
350
|
-
* @interface PickfaceContentsInnerApplicationsInner
|
|
351
|
-
*/
|
|
352
|
-
export interface PickfaceContentsInnerApplicationsInner {
|
|
353
|
-
/**
|
|
354
|
-
*
|
|
355
|
-
* @type {string}
|
|
356
|
-
* @memberof PickfaceContentsInnerApplicationsInner
|
|
357
|
-
*/
|
|
358
|
-
'placement'?: string;
|
|
359
|
-
/**
|
|
360
|
-
* A unique identifier for the application
|
|
361
|
-
* @type {string}
|
|
362
|
-
* @memberof PickfaceContentsInnerApplicationsInner
|
|
363
|
-
*/
|
|
364
|
-
'signature'?: string;
|
|
365
|
-
}
|
|
366
341
|
/**
|
|
367
342
|
* Any additional metadata
|
|
368
343
|
* @export
|
|
@@ -560,7 +535,7 @@ export interface UpdatePickfaceRequest {
|
|
|
560
535
|
* @type {string}
|
|
561
536
|
* @memberof UpdatePickfaceRequest
|
|
562
537
|
*/
|
|
563
|
-
'
|
|
538
|
+
'containerTypeId'?: string;
|
|
564
539
|
/**
|
|
565
540
|
* Unique object identifier
|
|
566
541
|
* @type {string}
|
|
@@ -625,7 +600,7 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
625
600
|
/**
|
|
626
601
|
* Create a Pickface
|
|
627
602
|
* @summary Create Pickface
|
|
628
|
-
* @param {string} project
|
|
603
|
+
* @param {string} project The project ID
|
|
629
604
|
* @param {CreatePickfaceRequest} createPickfaceRequest Create pickface schema
|
|
630
605
|
* @param {*} [options] Override http request option.
|
|
631
606
|
* @throws {RequiredError}
|
|
@@ -634,7 +609,7 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
634
609
|
/**
|
|
635
610
|
* Delete a Pickface
|
|
636
611
|
* @summary Delete Pickface
|
|
637
|
-
* @param {string} project
|
|
612
|
+
* @param {string} project The project ID
|
|
638
613
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
639
614
|
* @param {*} [options] Override http request option.
|
|
640
615
|
* @throws {RequiredError}
|
|
@@ -643,7 +618,7 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
643
618
|
/**
|
|
644
619
|
* Export pickfaces as a CSV file
|
|
645
620
|
* @summary Export pickfaces
|
|
646
|
-
* @param {string} project
|
|
621
|
+
* @param {string} project The project ID
|
|
647
622
|
* @param {string} [search] Search term to filter based on pickface code
|
|
648
623
|
* @param {*} [options] Override http request option.
|
|
649
624
|
* @throws {RequiredError}
|
|
@@ -652,36 +627,16 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
652
627
|
/**
|
|
653
628
|
* Get a specific pickface. Pickfaces contain useful information such as the items they contain and their level of fullness
|
|
654
629
|
* @summary Get pickface
|
|
655
|
-
* @param {string} project
|
|
630
|
+
* @param {string} project The project ID
|
|
656
631
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
657
632
|
* @param {*} [options] Override http request option.
|
|
658
633
|
* @throws {RequiredError}
|
|
659
634
|
*/
|
|
660
635
|
getPickface: (project: string, pickfaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
661
|
-
/**
|
|
662
|
-
* Lists pickface container models
|
|
663
|
-
* @summary Get pickface container models
|
|
664
|
-
* @param {string} project What project it is
|
|
665
|
-
* @param {*} [options] Override http request option.
|
|
666
|
-
* @throws {RequiredError}
|
|
667
|
-
*/
|
|
668
|
-
getPickfaceContainerModels: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
669
|
-
/**
|
|
670
|
-
* Lists all available pickfaces paginated into chunks. Pickfaces contain useful information such as the items they contain and their level of fullness
|
|
671
|
-
* @summary List pickfaces
|
|
672
|
-
* @param {string} project What project it is
|
|
673
|
-
* @param {string} [search] Search term to filter based on pickface code
|
|
674
|
-
* @param {number} [pageToken] Page reference token
|
|
675
|
-
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
676
|
-
* @param {Array<GetPickfacesSortByEnum>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
677
|
-
* @param {*} [options] Override http request option.
|
|
678
|
-
* @throws {RequiredError}
|
|
679
|
-
*/
|
|
680
|
-
getPickfaces: (project: string, search?: string, pageToken?: number, pageSize?: number, sortBy?: Array<GetPickfacesSortByEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
681
636
|
/**
|
|
682
637
|
* Issue an empty pickface
|
|
683
638
|
* @summary Issue empty pickface
|
|
684
|
-
* @param {string} project
|
|
639
|
+
* @param {string} project The project ID
|
|
685
640
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
686
641
|
* @param {IssueEmptyPickfaceRequest} issueEmptyPickfaceRequest pickface issue schema
|
|
687
642
|
* @param {*} [options] Override http request option.
|
|
@@ -691,17 +646,25 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
691
646
|
/**
|
|
692
647
|
* Issue a pickface with wrong contents
|
|
693
648
|
* @summary Issue wrong contents pickface
|
|
694
|
-
* @param {string} project
|
|
649
|
+
* @param {string} project The project ID
|
|
695
650
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
696
651
|
* @param {IssueWrongContentsPickfaceRequest} issueWrongContentsPickfaceRequest pickface issue schema
|
|
697
652
|
* @param {*} [options] Override http request option.
|
|
698
653
|
* @throws {RequiredError}
|
|
699
654
|
*/
|
|
700
655
|
issueWrongContentsPickface: (project: string, pickfaceId: string, issueWrongContentsPickfaceRequest: IssueWrongContentsPickfaceRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
656
|
+
/**
|
|
657
|
+
* Lists pickface container types
|
|
658
|
+
* @summary List pickface container types
|
|
659
|
+
* @param {string} project The project ID
|
|
660
|
+
* @param {*} [options] Override http request option.
|
|
661
|
+
* @throws {RequiredError}
|
|
662
|
+
*/
|
|
663
|
+
listPickfaceContainerTypes: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
701
664
|
/**
|
|
702
665
|
* Get a list of pickface logs
|
|
703
666
|
* @summary Get pickface logs
|
|
704
|
-
* @param {string} project
|
|
667
|
+
* @param {string} project The project ID
|
|
705
668
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
706
669
|
* @param {number} [pageToken] Page reference token
|
|
707
670
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
@@ -709,10 +672,22 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
709
672
|
* @throws {RequiredError}
|
|
710
673
|
*/
|
|
711
674
|
listPickfaceLogs: (project: string, pickfaceId: string, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
675
|
+
/**
|
|
676
|
+
* Lists pickfaces paginated into chunks. Pickfaces contain useful information such as the items they contain and their level of fullness
|
|
677
|
+
* @summary List pickfaces
|
|
678
|
+
* @param {string} project The project ID
|
|
679
|
+
* @param {string} [search] Search term to filter based on pickface code
|
|
680
|
+
* @param {number} [pageToken] Page reference token
|
|
681
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
682
|
+
* @param {Array<ListPickfacesSortByEnum>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
683
|
+
* @param {*} [options] Override http request option.
|
|
684
|
+
* @throws {RequiredError}
|
|
685
|
+
*/
|
|
686
|
+
listPickfaces: (project: string, search?: string, pageToken?: number, pageSize?: number, sortBy?: Array<ListPickfacesSortByEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
712
687
|
/**
|
|
713
688
|
* Move stock from one pickface to another in a single transaction
|
|
714
689
|
* @summary Move stock
|
|
715
|
-
* @param {string} project
|
|
690
|
+
* @param {string} project The project ID
|
|
716
691
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
717
692
|
* @param {MoveStockRequest} moveStockRequest Move stock from one pickface to another
|
|
718
693
|
* @param {*} [options] Override http request option.
|
|
@@ -722,7 +697,7 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
722
697
|
/**
|
|
723
698
|
* Print a pickface label
|
|
724
699
|
* @summary Print pickface label
|
|
725
|
-
* @param {string} project
|
|
700
|
+
* @param {string} project The project ID
|
|
726
701
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
727
702
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
728
703
|
* @param {*} [options] Override http request option.
|
|
@@ -732,7 +707,7 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
732
707
|
/**
|
|
733
708
|
* Print pickface labels
|
|
734
709
|
* @summary Print pickface Labels
|
|
735
|
-
* @param {string} project
|
|
710
|
+
* @param {string} project The project ID
|
|
736
711
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
737
712
|
* @param {string} [search] Search term to filter based on pickface code
|
|
738
713
|
* @param {Array<string> | null} [ids] List of pickface ids
|
|
@@ -743,7 +718,7 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
743
718
|
/**
|
|
744
719
|
* Resolves an issue on a pickface
|
|
745
720
|
* @summary Resolve pickface issue
|
|
746
|
-
* @param {string} project
|
|
721
|
+
* @param {string} project The project ID
|
|
747
722
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
748
723
|
* @param {*} [options] Override http request option.
|
|
749
724
|
* @throws {RequiredError}
|
|
@@ -752,7 +727,7 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
752
727
|
/**
|
|
753
728
|
* Suggest pickfaces for putting away stock
|
|
754
729
|
* @summary Suggest pickfaces
|
|
755
|
-
* @param {string} project
|
|
730
|
+
* @param {string} project The project ID
|
|
756
731
|
* @param {string} variantRef Unique identifier of a warehouse variant
|
|
757
732
|
* @param {number} quantity Number of variants
|
|
758
733
|
* @param {number} [pageToken] Page reference token
|
|
@@ -764,7 +739,7 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
764
739
|
/**
|
|
765
740
|
* Update a Pickface
|
|
766
741
|
* @summary Update Pickface
|
|
767
|
-
* @param {string} project
|
|
742
|
+
* @param {string} project The project ID
|
|
768
743
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
769
744
|
* @param {UpdatePickfaceRequest} updatePickfaceRequest Update pickface schema
|
|
770
745
|
* @param {*} [options] Override http request option.
|
|
@@ -780,7 +755,7 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
|
|
|
780
755
|
/**
|
|
781
756
|
* Create a Pickface
|
|
782
757
|
* @summary Create Pickface
|
|
783
|
-
* @param {string} project
|
|
758
|
+
* @param {string} project The project ID
|
|
784
759
|
* @param {CreatePickfaceRequest} createPickfaceRequest Create pickface schema
|
|
785
760
|
* @param {*} [options] Override http request option.
|
|
786
761
|
* @throws {RequiredError}
|
|
@@ -789,7 +764,7 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
|
|
|
789
764
|
/**
|
|
790
765
|
* Delete a Pickface
|
|
791
766
|
* @summary Delete Pickface
|
|
792
|
-
* @param {string} project
|
|
767
|
+
* @param {string} project The project ID
|
|
793
768
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
794
769
|
* @param {*} [options] Override http request option.
|
|
795
770
|
* @throws {RequiredError}
|
|
@@ -798,7 +773,7 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
|
|
|
798
773
|
/**
|
|
799
774
|
* Export pickfaces as a CSV file
|
|
800
775
|
* @summary Export pickfaces
|
|
801
|
-
* @param {string} project
|
|
776
|
+
* @param {string} project The project ID
|
|
802
777
|
* @param {string} [search] Search term to filter based on pickface code
|
|
803
778
|
* @param {*} [options] Override http request option.
|
|
804
779
|
* @throws {RequiredError}
|
|
@@ -807,36 +782,16 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
|
|
|
807
782
|
/**
|
|
808
783
|
* Get a specific pickface. Pickfaces contain useful information such as the items they contain and their level of fullness
|
|
809
784
|
* @summary Get pickface
|
|
810
|
-
* @param {string} project
|
|
785
|
+
* @param {string} project The project ID
|
|
811
786
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
812
787
|
* @param {*} [options] Override http request option.
|
|
813
788
|
* @throws {RequiredError}
|
|
814
789
|
*/
|
|
815
790
|
getPickface(project: string, pickfaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pickface>>;
|
|
816
|
-
/**
|
|
817
|
-
* Lists pickface container models
|
|
818
|
-
* @summary Get pickface container models
|
|
819
|
-
* @param {string} project What project it is
|
|
820
|
-
* @param {*} [options] Override http request option.
|
|
821
|
-
* @throws {RequiredError}
|
|
822
|
-
*/
|
|
823
|
-
getPickfaceContainerModels(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContainerModels>>;
|
|
824
|
-
/**
|
|
825
|
-
* Lists all available pickfaces paginated into chunks. Pickfaces contain useful information such as the items they contain and their level of fullness
|
|
826
|
-
* @summary List pickfaces
|
|
827
|
-
* @param {string} project What project it is
|
|
828
|
-
* @param {string} [search] Search term to filter based on pickface code
|
|
829
|
-
* @param {number} [pageToken] Page reference token
|
|
830
|
-
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
831
|
-
* @param {Array<GetPickfacesSortByEnum>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
832
|
-
* @param {*} [options] Override http request option.
|
|
833
|
-
* @throws {RequiredError}
|
|
834
|
-
*/
|
|
835
|
-
getPickfaces(project: string, search?: string, pageToken?: number, pageSize?: number, sortBy?: Array<GetPickfacesSortByEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPickfaces200Response>>;
|
|
836
791
|
/**
|
|
837
792
|
* Issue an empty pickface
|
|
838
793
|
* @summary Issue empty pickface
|
|
839
|
-
* @param {string} project
|
|
794
|
+
* @param {string} project The project ID
|
|
840
795
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
841
796
|
* @param {IssueEmptyPickfaceRequest} issueEmptyPickfaceRequest pickface issue schema
|
|
842
797
|
* @param {*} [options] Override http request option.
|
|
@@ -846,17 +801,25 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
|
|
|
846
801
|
/**
|
|
847
802
|
* Issue a pickface with wrong contents
|
|
848
803
|
* @summary Issue wrong contents pickface
|
|
849
|
-
* @param {string} project
|
|
804
|
+
* @param {string} project The project ID
|
|
850
805
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
851
806
|
* @param {IssueWrongContentsPickfaceRequest} issueWrongContentsPickfaceRequest pickface issue schema
|
|
852
807
|
* @param {*} [options] Override http request option.
|
|
853
808
|
* @throws {RequiredError}
|
|
854
809
|
*/
|
|
855
810
|
issueWrongContentsPickface(project: string, pickfaceId: string, issueWrongContentsPickfaceRequest: IssueWrongContentsPickfaceRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pickface>>;
|
|
811
|
+
/**
|
|
812
|
+
* Lists pickface container types
|
|
813
|
+
* @summary List pickface container types
|
|
814
|
+
* @param {string} project The project ID
|
|
815
|
+
* @param {*} [options] Override http request option.
|
|
816
|
+
* @throws {RequiredError}
|
|
817
|
+
*/
|
|
818
|
+
listPickfaceContainerTypes(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContainerTypes>>;
|
|
856
819
|
/**
|
|
857
820
|
* Get a list of pickface logs
|
|
858
821
|
* @summary Get pickface logs
|
|
859
|
-
* @param {string} project
|
|
822
|
+
* @param {string} project The project ID
|
|
860
823
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
861
824
|
* @param {number} [pageToken] Page reference token
|
|
862
825
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
@@ -864,10 +827,22 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
|
|
|
864
827
|
* @throws {RequiredError}
|
|
865
828
|
*/
|
|
866
829
|
listPickfaceLogs(project: string, pickfaceId: string, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPickfaceLogs200Response>>;
|
|
830
|
+
/**
|
|
831
|
+
* Lists pickfaces paginated into chunks. Pickfaces contain useful information such as the items they contain and their level of fullness
|
|
832
|
+
* @summary List pickfaces
|
|
833
|
+
* @param {string} project The project ID
|
|
834
|
+
* @param {string} [search] Search term to filter based on pickface code
|
|
835
|
+
* @param {number} [pageToken] Page reference token
|
|
836
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
837
|
+
* @param {Array<ListPickfacesSortByEnum>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
838
|
+
* @param {*} [options] Override http request option.
|
|
839
|
+
* @throws {RequiredError}
|
|
840
|
+
*/
|
|
841
|
+
listPickfaces(project: string, search?: string, pageToken?: number, pageSize?: number, sortBy?: Array<ListPickfacesSortByEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPickfaces200Response>>;
|
|
867
842
|
/**
|
|
868
843
|
* Move stock from one pickface to another in a single transaction
|
|
869
844
|
* @summary Move stock
|
|
870
|
-
* @param {string} project
|
|
845
|
+
* @param {string} project The project ID
|
|
871
846
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
872
847
|
* @param {MoveStockRequest} moveStockRequest Move stock from one pickface to another
|
|
873
848
|
* @param {*} [options] Override http request option.
|
|
@@ -877,7 +852,7 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
|
|
|
877
852
|
/**
|
|
878
853
|
* Print a pickface label
|
|
879
854
|
* @summary Print pickface label
|
|
880
|
-
* @param {string} project
|
|
855
|
+
* @param {string} project The project ID
|
|
881
856
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
882
857
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
883
858
|
* @param {*} [options] Override http request option.
|
|
@@ -887,7 +862,7 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
|
|
|
887
862
|
/**
|
|
888
863
|
* Print pickface labels
|
|
889
864
|
* @summary Print pickface Labels
|
|
890
|
-
* @param {string} project
|
|
865
|
+
* @param {string} project The project ID
|
|
891
866
|
* @param {string} deviceRef Unique identifier of a warehouse device
|
|
892
867
|
* @param {string} [search] Search term to filter based on pickface code
|
|
893
868
|
* @param {Array<string> | null} [ids] List of pickface ids
|
|
@@ -898,7 +873,7 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
|
|
|
898
873
|
/**
|
|
899
874
|
* Resolves an issue on a pickface
|
|
900
875
|
* @summary Resolve pickface issue
|
|
901
|
-
* @param {string} project
|
|
876
|
+
* @param {string} project The project ID
|
|
902
877
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
903
878
|
* @param {*} [options] Override http request option.
|
|
904
879
|
* @throws {RequiredError}
|
|
@@ -907,7 +882,7 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
|
|
|
907
882
|
/**
|
|
908
883
|
* Suggest pickfaces for putting away stock
|
|
909
884
|
* @summary Suggest pickfaces
|
|
910
|
-
* @param {string} project
|
|
885
|
+
* @param {string} project The project ID
|
|
911
886
|
* @param {string} variantRef Unique identifier of a warehouse variant
|
|
912
887
|
* @param {number} quantity Number of variants
|
|
913
888
|
* @param {number} [pageToken] Page reference token
|
|
@@ -915,11 +890,11 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
|
|
|
915
890
|
* @param {*} [options] Override http request option.
|
|
916
891
|
* @throws {RequiredError}
|
|
917
892
|
*/
|
|
918
|
-
suggestPickfaces(project: string, variantRef: string, quantity: number, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
893
|
+
suggestPickfaces(project: string, variantRef: string, quantity: number, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPickfaces200Response>>;
|
|
919
894
|
/**
|
|
920
895
|
* Update a Pickface
|
|
921
896
|
* @summary Update Pickface
|
|
922
|
-
* @param {string} project
|
|
897
|
+
* @param {string} project The project ID
|
|
923
898
|
* @param {string} pickfaceId Unique identifier of a pickface
|
|
924
899
|
* @param {UpdatePickfaceRequest} updatePickfaceRequest Update pickface schema
|
|
925
900
|
* @param {*} [options] Override http request option.
|
|
@@ -964,22 +939,6 @@ export declare const PickfacesApiFactory: (configuration?: Configuration, basePa
|
|
|
964
939
|
* @throws {RequiredError}
|
|
965
940
|
*/
|
|
966
941
|
getPickface(requestParameters: PickfacesApiGetPickfaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<Pickface>;
|
|
967
|
-
/**
|
|
968
|
-
* Lists pickface container models
|
|
969
|
-
* @summary Get pickface container models
|
|
970
|
-
* @param {PickfacesApiGetPickfaceContainerModelsRequest} requestParameters Request parameters.
|
|
971
|
-
* @param {*} [options] Override http request option.
|
|
972
|
-
* @throws {RequiredError}
|
|
973
|
-
*/
|
|
974
|
-
getPickfaceContainerModels(requestParameters: PickfacesApiGetPickfaceContainerModelsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ContainerModels>;
|
|
975
|
-
/**
|
|
976
|
-
* Lists all available pickfaces paginated into chunks. Pickfaces contain useful information such as the items they contain and their level of fullness
|
|
977
|
-
* @summary List pickfaces
|
|
978
|
-
* @param {PickfacesApiGetPickfacesRequest} requestParameters Request parameters.
|
|
979
|
-
* @param {*} [options] Override http request option.
|
|
980
|
-
* @throws {RequiredError}
|
|
981
|
-
*/
|
|
982
|
-
getPickfaces(requestParameters: PickfacesApiGetPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetPickfaces200Response>;
|
|
983
942
|
/**
|
|
984
943
|
* Issue an empty pickface
|
|
985
944
|
* @summary Issue empty pickface
|
|
@@ -996,6 +955,14 @@ export declare const PickfacesApiFactory: (configuration?: Configuration, basePa
|
|
|
996
955
|
* @throws {RequiredError}
|
|
997
956
|
*/
|
|
998
957
|
issueWrongContentsPickface(requestParameters: PickfacesApiIssueWrongContentsPickfaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<Pickface>;
|
|
958
|
+
/**
|
|
959
|
+
* Lists pickface container types
|
|
960
|
+
* @summary List pickface container types
|
|
961
|
+
* @param {PickfacesApiListPickfaceContainerTypesRequest} requestParameters Request parameters.
|
|
962
|
+
* @param {*} [options] Override http request option.
|
|
963
|
+
* @throws {RequiredError}
|
|
964
|
+
*/
|
|
965
|
+
listPickfaceContainerTypes(requestParameters: PickfacesApiListPickfaceContainerTypesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ContainerTypes>;
|
|
999
966
|
/**
|
|
1000
967
|
* Get a list of pickface logs
|
|
1001
968
|
* @summary Get pickface logs
|
|
@@ -1004,6 +971,14 @@ export declare const PickfacesApiFactory: (configuration?: Configuration, basePa
|
|
|
1004
971
|
* @throws {RequiredError}
|
|
1005
972
|
*/
|
|
1006
973
|
listPickfaceLogs(requestParameters: PickfacesApiListPickfaceLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListPickfaceLogs200Response>;
|
|
974
|
+
/**
|
|
975
|
+
* Lists pickfaces paginated into chunks. Pickfaces contain useful information such as the items they contain and their level of fullness
|
|
976
|
+
* @summary List pickfaces
|
|
977
|
+
* @param {PickfacesApiListPickfacesRequest} requestParameters Request parameters.
|
|
978
|
+
* @param {*} [options] Override http request option.
|
|
979
|
+
* @throws {RequiredError}
|
|
980
|
+
*/
|
|
981
|
+
listPickfaces(requestParameters: PickfacesApiListPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListPickfaces200Response>;
|
|
1007
982
|
/**
|
|
1008
983
|
* Move stock from one pickface to another in a single transaction
|
|
1009
984
|
* @summary Move stock
|
|
@@ -1043,7 +1018,7 @@ export declare const PickfacesApiFactory: (configuration?: Configuration, basePa
|
|
|
1043
1018
|
* @param {*} [options] Override http request option.
|
|
1044
1019
|
* @throws {RequiredError}
|
|
1045
1020
|
*/
|
|
1046
|
-
suggestPickfaces(requestParameters: PickfacesApiSuggestPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
1021
|
+
suggestPickfaces(requestParameters: PickfacesApiSuggestPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListPickfaces200Response>;
|
|
1047
1022
|
/**
|
|
1048
1023
|
* Update a Pickface
|
|
1049
1024
|
* @summary Update Pickface
|
|
@@ -1060,7 +1035,7 @@ export declare const PickfacesApiFactory: (configuration?: Configuration, basePa
|
|
|
1060
1035
|
*/
|
|
1061
1036
|
export interface PickfacesApiCreatePickfaceRequest {
|
|
1062
1037
|
/**
|
|
1063
|
-
*
|
|
1038
|
+
* The project ID
|
|
1064
1039
|
* @type {string}
|
|
1065
1040
|
* @memberof PickfacesApiCreatePickface
|
|
1066
1041
|
*/
|
|
@@ -1079,7 +1054,7 @@ export interface PickfacesApiCreatePickfaceRequest {
|
|
|
1079
1054
|
*/
|
|
1080
1055
|
export interface PickfacesApiDeletePickfaceRequest {
|
|
1081
1056
|
/**
|
|
1082
|
-
*
|
|
1057
|
+
* The project ID
|
|
1083
1058
|
* @type {string}
|
|
1084
1059
|
* @memberof PickfacesApiDeletePickface
|
|
1085
1060
|
*/
|
|
@@ -1098,7 +1073,7 @@ export interface PickfacesApiDeletePickfaceRequest {
|
|
|
1098
1073
|
*/
|
|
1099
1074
|
export interface PickfacesApiExportPickfacesRequest {
|
|
1100
1075
|
/**
|
|
1101
|
-
*
|
|
1076
|
+
* The project ID
|
|
1102
1077
|
* @type {string}
|
|
1103
1078
|
* @memberof PickfacesApiExportPickfaces
|
|
1104
1079
|
*/
|
|
@@ -1117,7 +1092,7 @@ export interface PickfacesApiExportPickfacesRequest {
|
|
|
1117
1092
|
*/
|
|
1118
1093
|
export interface PickfacesApiGetPickfaceRequest {
|
|
1119
1094
|
/**
|
|
1120
|
-
*
|
|
1095
|
+
* The project ID
|
|
1121
1096
|
* @type {string}
|
|
1122
1097
|
* @memberof PickfacesApiGetPickface
|
|
1123
1098
|
*/
|
|
@@ -1129,56 +1104,6 @@ export interface PickfacesApiGetPickfaceRequest {
|
|
|
1129
1104
|
*/
|
|
1130
1105
|
readonly pickfaceId: string;
|
|
1131
1106
|
}
|
|
1132
|
-
/**
|
|
1133
|
-
* Request parameters for getPickfaceContainerModels operation in PickfacesApi.
|
|
1134
|
-
* @export
|
|
1135
|
-
* @interface PickfacesApiGetPickfaceContainerModelsRequest
|
|
1136
|
-
*/
|
|
1137
|
-
export interface PickfacesApiGetPickfaceContainerModelsRequest {
|
|
1138
|
-
/**
|
|
1139
|
-
* What project it is
|
|
1140
|
-
* @type {string}
|
|
1141
|
-
* @memberof PickfacesApiGetPickfaceContainerModels
|
|
1142
|
-
*/
|
|
1143
|
-
readonly project: string;
|
|
1144
|
-
}
|
|
1145
|
-
/**
|
|
1146
|
-
* Request parameters for getPickfaces operation in PickfacesApi.
|
|
1147
|
-
* @export
|
|
1148
|
-
* @interface PickfacesApiGetPickfacesRequest
|
|
1149
|
-
*/
|
|
1150
|
-
export interface PickfacesApiGetPickfacesRequest {
|
|
1151
|
-
/**
|
|
1152
|
-
* What project it is
|
|
1153
|
-
* @type {string}
|
|
1154
|
-
* @memberof PickfacesApiGetPickfaces
|
|
1155
|
-
*/
|
|
1156
|
-
readonly project: string;
|
|
1157
|
-
/**
|
|
1158
|
-
* Search term to filter based on pickface code
|
|
1159
|
-
* @type {string}
|
|
1160
|
-
* @memberof PickfacesApiGetPickfaces
|
|
1161
|
-
*/
|
|
1162
|
-
readonly search?: string;
|
|
1163
|
-
/**
|
|
1164
|
-
* Page reference token
|
|
1165
|
-
* @type {number}
|
|
1166
|
-
* @memberof PickfacesApiGetPickfaces
|
|
1167
|
-
*/
|
|
1168
|
-
readonly pageToken?: number;
|
|
1169
|
-
/**
|
|
1170
|
-
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1171
|
-
* @type {number}
|
|
1172
|
-
* @memberof PickfacesApiGetPickfaces
|
|
1173
|
-
*/
|
|
1174
|
-
readonly pageSize?: number;
|
|
1175
|
-
/**
|
|
1176
|
-
* An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
1177
|
-
* @type {Array<'+available' | '-available' | '+wip' | '-wip' | '+total' | '-total' | '+fullness' | '-fullness' | '+restocked' | '-restocked' | '+picked' | '-picked'>}
|
|
1178
|
-
* @memberof PickfacesApiGetPickfaces
|
|
1179
|
-
*/
|
|
1180
|
-
readonly sortBy?: Array<GetPickfacesSortByEnum>;
|
|
1181
|
-
}
|
|
1182
1107
|
/**
|
|
1183
1108
|
* Request parameters for issueEmptyPickface operation in PickfacesApi.
|
|
1184
1109
|
* @export
|
|
@@ -1186,7 +1111,7 @@ export interface PickfacesApiGetPickfacesRequest {
|
|
|
1186
1111
|
*/
|
|
1187
1112
|
export interface PickfacesApiIssueEmptyPickfaceRequest {
|
|
1188
1113
|
/**
|
|
1189
|
-
*
|
|
1114
|
+
* The project ID
|
|
1190
1115
|
* @type {string}
|
|
1191
1116
|
* @memberof PickfacesApiIssueEmptyPickface
|
|
1192
1117
|
*/
|
|
@@ -1211,7 +1136,7 @@ export interface PickfacesApiIssueEmptyPickfaceRequest {
|
|
|
1211
1136
|
*/
|
|
1212
1137
|
export interface PickfacesApiIssueWrongContentsPickfaceRequest {
|
|
1213
1138
|
/**
|
|
1214
|
-
*
|
|
1139
|
+
* The project ID
|
|
1215
1140
|
* @type {string}
|
|
1216
1141
|
* @memberof PickfacesApiIssueWrongContentsPickface
|
|
1217
1142
|
*/
|
|
@@ -1229,6 +1154,19 @@ export interface PickfacesApiIssueWrongContentsPickfaceRequest {
|
|
|
1229
1154
|
*/
|
|
1230
1155
|
readonly issueWrongContentsPickfaceRequest: IssueWrongContentsPickfaceRequest;
|
|
1231
1156
|
}
|
|
1157
|
+
/**
|
|
1158
|
+
* Request parameters for listPickfaceContainerTypes operation in PickfacesApi.
|
|
1159
|
+
* @export
|
|
1160
|
+
* @interface PickfacesApiListPickfaceContainerTypesRequest
|
|
1161
|
+
*/
|
|
1162
|
+
export interface PickfacesApiListPickfaceContainerTypesRequest {
|
|
1163
|
+
/**
|
|
1164
|
+
* The project ID
|
|
1165
|
+
* @type {string}
|
|
1166
|
+
* @memberof PickfacesApiListPickfaceContainerTypes
|
|
1167
|
+
*/
|
|
1168
|
+
readonly project: string;
|
|
1169
|
+
}
|
|
1232
1170
|
/**
|
|
1233
1171
|
* Request parameters for listPickfaceLogs operation in PickfacesApi.
|
|
1234
1172
|
* @export
|
|
@@ -1236,7 +1174,7 @@ export interface PickfacesApiIssueWrongContentsPickfaceRequest {
|
|
|
1236
1174
|
*/
|
|
1237
1175
|
export interface PickfacesApiListPickfaceLogsRequest {
|
|
1238
1176
|
/**
|
|
1239
|
-
*
|
|
1177
|
+
* The project ID
|
|
1240
1178
|
* @type {string}
|
|
1241
1179
|
* @memberof PickfacesApiListPickfaceLogs
|
|
1242
1180
|
*/
|
|
@@ -1260,6 +1198,43 @@ export interface PickfacesApiListPickfaceLogsRequest {
|
|
|
1260
1198
|
*/
|
|
1261
1199
|
readonly pageSize?: number;
|
|
1262
1200
|
}
|
|
1201
|
+
/**
|
|
1202
|
+
* Request parameters for listPickfaces operation in PickfacesApi.
|
|
1203
|
+
* @export
|
|
1204
|
+
* @interface PickfacesApiListPickfacesRequest
|
|
1205
|
+
*/
|
|
1206
|
+
export interface PickfacesApiListPickfacesRequest {
|
|
1207
|
+
/**
|
|
1208
|
+
* The project ID
|
|
1209
|
+
* @type {string}
|
|
1210
|
+
* @memberof PickfacesApiListPickfaces
|
|
1211
|
+
*/
|
|
1212
|
+
readonly project: string;
|
|
1213
|
+
/**
|
|
1214
|
+
* Search term to filter based on pickface code
|
|
1215
|
+
* @type {string}
|
|
1216
|
+
* @memberof PickfacesApiListPickfaces
|
|
1217
|
+
*/
|
|
1218
|
+
readonly search?: string;
|
|
1219
|
+
/**
|
|
1220
|
+
* Page reference token
|
|
1221
|
+
* @type {number}
|
|
1222
|
+
* @memberof PickfacesApiListPickfaces
|
|
1223
|
+
*/
|
|
1224
|
+
readonly pageToken?: number;
|
|
1225
|
+
/**
|
|
1226
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1227
|
+
* @type {number}
|
|
1228
|
+
* @memberof PickfacesApiListPickfaces
|
|
1229
|
+
*/
|
|
1230
|
+
readonly pageSize?: number;
|
|
1231
|
+
/**
|
|
1232
|
+
* An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
1233
|
+
* @type {Array<'+available' | '-available' | '+wip' | '-wip' | '+total' | '-total' | '+fullness' | '-fullness' | '+restocked' | '-restocked' | '+picked' | '-picked'>}
|
|
1234
|
+
* @memberof PickfacesApiListPickfaces
|
|
1235
|
+
*/
|
|
1236
|
+
readonly sortBy?: Array<ListPickfacesSortByEnum>;
|
|
1237
|
+
}
|
|
1263
1238
|
/**
|
|
1264
1239
|
* Request parameters for moveStock operation in PickfacesApi.
|
|
1265
1240
|
* @export
|
|
@@ -1267,7 +1242,7 @@ export interface PickfacesApiListPickfaceLogsRequest {
|
|
|
1267
1242
|
*/
|
|
1268
1243
|
export interface PickfacesApiMoveStockRequest {
|
|
1269
1244
|
/**
|
|
1270
|
-
*
|
|
1245
|
+
* The project ID
|
|
1271
1246
|
* @type {string}
|
|
1272
1247
|
* @memberof PickfacesApiMoveStock
|
|
1273
1248
|
*/
|
|
@@ -1292,7 +1267,7 @@ export interface PickfacesApiMoveStockRequest {
|
|
|
1292
1267
|
*/
|
|
1293
1268
|
export interface PickfacesApiPrintPickfaceLabelRequest {
|
|
1294
1269
|
/**
|
|
1295
|
-
*
|
|
1270
|
+
* The project ID
|
|
1296
1271
|
* @type {string}
|
|
1297
1272
|
* @memberof PickfacesApiPrintPickfaceLabel
|
|
1298
1273
|
*/
|
|
@@ -1317,7 +1292,7 @@ export interface PickfacesApiPrintPickfaceLabelRequest {
|
|
|
1317
1292
|
*/
|
|
1318
1293
|
export interface PickfacesApiPrintPickfaceLabelsRequest {
|
|
1319
1294
|
/**
|
|
1320
|
-
*
|
|
1295
|
+
* The project ID
|
|
1321
1296
|
* @type {string}
|
|
1322
1297
|
* @memberof PickfacesApiPrintPickfaceLabels
|
|
1323
1298
|
*/
|
|
@@ -1348,7 +1323,7 @@ export interface PickfacesApiPrintPickfaceLabelsRequest {
|
|
|
1348
1323
|
*/
|
|
1349
1324
|
export interface PickfacesApiResolvePickfaceIssueRequest {
|
|
1350
1325
|
/**
|
|
1351
|
-
*
|
|
1326
|
+
* The project ID
|
|
1352
1327
|
* @type {string}
|
|
1353
1328
|
* @memberof PickfacesApiResolvePickfaceIssue
|
|
1354
1329
|
*/
|
|
@@ -1367,7 +1342,7 @@ export interface PickfacesApiResolvePickfaceIssueRequest {
|
|
|
1367
1342
|
*/
|
|
1368
1343
|
export interface PickfacesApiSuggestPickfacesRequest {
|
|
1369
1344
|
/**
|
|
1370
|
-
*
|
|
1345
|
+
* The project ID
|
|
1371
1346
|
* @type {string}
|
|
1372
1347
|
* @memberof PickfacesApiSuggestPickfaces
|
|
1373
1348
|
*/
|
|
@@ -1404,7 +1379,7 @@ export interface PickfacesApiSuggestPickfacesRequest {
|
|
|
1404
1379
|
*/
|
|
1405
1380
|
export interface PickfacesApiUpdatePickfaceRequest {
|
|
1406
1381
|
/**
|
|
1407
|
-
*
|
|
1382
|
+
* The project ID
|
|
1408
1383
|
* @type {string}
|
|
1409
1384
|
* @memberof PickfacesApiUpdatePickface
|
|
1410
1385
|
*/
|
|
@@ -1465,24 +1440,6 @@ export declare class PickfacesApi extends BaseAPI {
|
|
|
1465
1440
|
* @memberof PickfacesApi
|
|
1466
1441
|
*/
|
|
1467
1442
|
getPickface(requestParameters: PickfacesApiGetPickfaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Pickface, any>>;
|
|
1468
|
-
/**
|
|
1469
|
-
* Lists pickface container models
|
|
1470
|
-
* @summary Get pickface container models
|
|
1471
|
-
* @param {PickfacesApiGetPickfaceContainerModelsRequest} requestParameters Request parameters.
|
|
1472
|
-
* @param {*} [options] Override http request option.
|
|
1473
|
-
* @throws {RequiredError}
|
|
1474
|
-
* @memberof PickfacesApi
|
|
1475
|
-
*/
|
|
1476
|
-
getPickfaceContainerModels(requestParameters: PickfacesApiGetPickfaceContainerModelsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerModels, any>>;
|
|
1477
|
-
/**
|
|
1478
|
-
* Lists all available pickfaces paginated into chunks. Pickfaces contain useful information such as the items they contain and their level of fullness
|
|
1479
|
-
* @summary List pickfaces
|
|
1480
|
-
* @param {PickfacesApiGetPickfacesRequest} requestParameters Request parameters.
|
|
1481
|
-
* @param {*} [options] Override http request option.
|
|
1482
|
-
* @throws {RequiredError}
|
|
1483
|
-
* @memberof PickfacesApi
|
|
1484
|
-
*/
|
|
1485
|
-
getPickfaces(requestParameters: PickfacesApiGetPickfacesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPickfaces200Response, any>>;
|
|
1486
1443
|
/**
|
|
1487
1444
|
* Issue an empty pickface
|
|
1488
1445
|
* @summary Issue empty pickface
|
|
@@ -1501,6 +1458,15 @@ export declare class PickfacesApi extends BaseAPI {
|
|
|
1501
1458
|
* @memberof PickfacesApi
|
|
1502
1459
|
*/
|
|
1503
1460
|
issueWrongContentsPickface(requestParameters: PickfacesApiIssueWrongContentsPickfaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Pickface, any>>;
|
|
1461
|
+
/**
|
|
1462
|
+
* Lists pickface container types
|
|
1463
|
+
* @summary List pickface container types
|
|
1464
|
+
* @param {PickfacesApiListPickfaceContainerTypesRequest} requestParameters Request parameters.
|
|
1465
|
+
* @param {*} [options] Override http request option.
|
|
1466
|
+
* @throws {RequiredError}
|
|
1467
|
+
* @memberof PickfacesApi
|
|
1468
|
+
*/
|
|
1469
|
+
listPickfaceContainerTypes(requestParameters: PickfacesApiListPickfaceContainerTypesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerTypes, any>>;
|
|
1504
1470
|
/**
|
|
1505
1471
|
* Get a list of pickface logs
|
|
1506
1472
|
* @summary Get pickface logs
|
|
@@ -1510,6 +1476,15 @@ export declare class PickfacesApi extends BaseAPI {
|
|
|
1510
1476
|
* @memberof PickfacesApi
|
|
1511
1477
|
*/
|
|
1512
1478
|
listPickfaceLogs(requestParameters: PickfacesApiListPickfaceLogsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPickfaceLogs200Response, any>>;
|
|
1479
|
+
/**
|
|
1480
|
+
* Lists pickfaces paginated into chunks. Pickfaces contain useful information such as the items they contain and their level of fullness
|
|
1481
|
+
* @summary List pickfaces
|
|
1482
|
+
* @param {PickfacesApiListPickfacesRequest} requestParameters Request parameters.
|
|
1483
|
+
* @param {*} [options] Override http request option.
|
|
1484
|
+
* @throws {RequiredError}
|
|
1485
|
+
* @memberof PickfacesApi
|
|
1486
|
+
*/
|
|
1487
|
+
listPickfaces(requestParameters: PickfacesApiListPickfacesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPickfaces200Response, any>>;
|
|
1513
1488
|
/**
|
|
1514
1489
|
* Move stock from one pickface to another in a single transaction
|
|
1515
1490
|
* @summary Move stock
|
|
@@ -1554,7 +1529,7 @@ export declare class PickfacesApi extends BaseAPI {
|
|
|
1554
1529
|
* @throws {RequiredError}
|
|
1555
1530
|
* @memberof PickfacesApi
|
|
1556
1531
|
*/
|
|
1557
|
-
suggestPickfaces(requestParameters: PickfacesApiSuggestPickfacesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
1532
|
+
suggestPickfaces(requestParameters: PickfacesApiSuggestPickfacesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPickfaces200Response, any>>;
|
|
1558
1533
|
/**
|
|
1559
1534
|
* Update a Pickface
|
|
1560
1535
|
* @summary Update Pickface
|
|
@@ -1568,7 +1543,7 @@ export declare class PickfacesApi extends BaseAPI {
|
|
|
1568
1543
|
/**
|
|
1569
1544
|
* @export
|
|
1570
1545
|
*/
|
|
1571
|
-
export declare const
|
|
1546
|
+
export declare const ListPickfacesSortByEnum: {
|
|
1572
1547
|
readonly Available: "+available";
|
|
1573
1548
|
readonly Available2: "-available";
|
|
1574
1549
|
readonly Wip: "+wip";
|
|
@@ -1582,4 +1557,4 @@ export declare const GetPickfacesSortByEnum: {
|
|
|
1582
1557
|
readonly Picked: "+picked";
|
|
1583
1558
|
readonly Picked2: "-picked";
|
|
1584
1559
|
};
|
|
1585
|
-
export type
|
|
1560
|
+
export type ListPickfacesSortByEnum = typeof ListPickfacesSortByEnum[keyof typeof ListPickfacesSortByEnum];
|