@teemill/pickfaces 0.29.1 → 0.29.2

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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/pickfaces@0.29.1
1
+ ## @teemill/pickfaces@0.29.2
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.29.1 --save
39
+ npm install @teemill/pickfaces@0.29.2 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -75,10 +75,10 @@ Class | Method | HTTP request | Description
75
75
  - [ContainerTypes](docs/ContainerTypes.md)
76
76
  - [CreatePickfaceRequest](docs/CreatePickfaceRequest.md)
77
77
  - [ExportPickfaces202Response](docs/ExportPickfaces202Response.md)
78
+ - [InlineObject](docs/InlineObject.md)
78
79
  - [IssueEmptyPickfaceRequest](docs/IssueEmptyPickfaceRequest.md)
79
80
  - [IssueWrongContentsPickfaceRequest](docs/IssueWrongContentsPickfaceRequest.md)
80
81
  - [ListPickfaceLogs200Response](docs/ListPickfaceLogs200Response.md)
81
- - [ListPickfaces200Response](docs/ListPickfaces200Response.md)
82
82
  - [MoveStockRequest](docs/MoveStockRequest.md)
83
83
  - [Pickface](docs/Pickface.md)
84
84
  - [PickfaceContainerType](docs/PickfaceContainerType.md)
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.29.1
7
+ * The version of the OpenAPI document: 0.29.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -154,6 +154,25 @@ export interface ExportPickfaces202Response {
154
154
  */
155
155
  'message'?: string;
156
156
  }
157
+ /**
158
+ *
159
+ * @export
160
+ * @interface InlineObject
161
+ */
162
+ export interface InlineObject {
163
+ /**
164
+ *
165
+ * @type {Array<Pickface>}
166
+ * @memberof InlineObject
167
+ */
168
+ 'pickfaces'?: Array<Pickface>;
169
+ /**
170
+ * The token referencing the next page number
171
+ * @type {number}
172
+ * @memberof InlineObject
173
+ */
174
+ 'nextPageToken'?: number | null;
175
+ }
157
176
  /**
158
177
  *
159
178
  * @export
@@ -205,25 +224,6 @@ export interface ListPickfaceLogs200Response {
205
224
  */
206
225
  'nextPageToken'?: number | null;
207
226
  }
208
- /**
209
- *
210
- * @export
211
- * @interface ListPickfaces200Response
212
- */
213
- export interface ListPickfaces200Response {
214
- /**
215
- *
216
- * @type {Array<Pickface>}
217
- * @memberof ListPickfaces200Response
218
- */
219
- 'pickfaces'?: Array<Pickface>;
220
- /**
221
- * The token referencing the next page number
222
- * @type {number}
223
- * @memberof ListPickfaces200Response
224
- */
225
- 'nextPageToken'?: number | null;
226
- }
227
227
  /**
228
228
  *
229
229
  * @export
@@ -316,13 +316,13 @@ export interface Pickface {
316
316
  */
317
317
  'fullness': number;
318
318
  /**
319
- *
319
+ * The last time the pickface was picked from
320
320
  * @type {PickfaceLog}
321
321
  * @memberof Pickface
322
322
  */
323
323
  'lastPicked': PickfaceLog | null;
324
324
  /**
325
- *
325
+ * The last time the pickface was restocked
326
326
  * @type {PickfaceLog}
327
327
  * @memberof Pickface
328
328
  */
@@ -1714,7 +1714,7 @@ export const PickfacesApiFp = function(configuration?: Configuration) {
1714
1714
  * @param {*} [options] Override http request option.
1715
1715
  * @throws {RequiredError}
1716
1716
  */
1717
- async listPickfaces(project: string, search?: string, pageToken?: number, pageSize?: number, sortBy?: Array<ListPickfacesSortByEnum>, updatedStart?: string, updatedEnd?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPickfaces200Response>> {
1717
+ async listPickfaces(project: string, search?: string, pageToken?: number, pageSize?: number, sortBy?: Array<ListPickfacesSortByEnum>, updatedStart?: string, updatedEnd?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject>> {
1718
1718
  const localVarAxiosArgs = await localVarAxiosParamCreator.listPickfaces(project, search, pageToken, pageSize, sortBy, updatedStart, updatedEnd, options);
1719
1719
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1720
1720
  const localVarOperationServerBasePath = operationServerMap['PickfacesApi.listPickfaces']?.[localVarOperationServerIndex]?.url;
@@ -1792,7 +1792,7 @@ export const PickfacesApiFp = function(configuration?: Configuration) {
1792
1792
  * @param {*} [options] Override http request option.
1793
1793
  * @throws {RequiredError}
1794
1794
  */
1795
- async suggestPickfaces(project: string, variantRef: string, quantity: number, sellThroughRate?: number, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPickfaces200Response>> {
1795
+ async suggestPickfaces(project: string, variantRef: string, quantity: number, sellThroughRate?: number, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject>> {
1796
1796
  const localVarAxiosArgs = await localVarAxiosParamCreator.suggestPickfaces(project, variantRef, quantity, sellThroughRate, pageToken, pageSize, options);
1797
1797
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1798
1798
  const localVarOperationServerBasePath = operationServerMap['PickfacesApi.suggestPickfaces']?.[localVarOperationServerIndex]?.url;
@@ -1910,7 +1910,7 @@ export const PickfacesApiFactory = function (configuration?: Configuration, base
1910
1910
  * @param {*} [options] Override http request option.
1911
1911
  * @throws {RequiredError}
1912
1912
  */
1913
- listPickfaces(requestParameters: PickfacesApiListPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListPickfaces200Response> {
1913
+ listPickfaces(requestParameters: PickfacesApiListPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<InlineObject> {
1914
1914
  return localVarFp.listPickfaces(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, requestParameters.sortBy, requestParameters.updatedStart, requestParameters.updatedEnd, options).then((request) => request(axios, basePath));
1915
1915
  },
1916
1916
  /**
@@ -1960,7 +1960,7 @@ export const PickfacesApiFactory = function (configuration?: Configuration, base
1960
1960
  * @param {*} [options] Override http request option.
1961
1961
  * @throws {RequiredError}
1962
1962
  */
1963
- suggestPickfaces(requestParameters: PickfacesApiSuggestPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListPickfaces200Response> {
1963
+ suggestPickfaces(requestParameters: PickfacesApiSuggestPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<InlineObject> {
1964
1964
  return localVarFp.suggestPickfaces(requestParameters.project, requestParameters.variantRef, requestParameters.quantity, requestParameters.sellThroughRate, requestParameters.pageToken, requestParameters.pageSize, options).then((request) => request(axios, basePath));
1965
1965
  },
1966
1966
  /**
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.29.1
7
+ * The version of the OpenAPI document: 0.29.2
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.29.1
7
+ * The version of the OpenAPI document: 0.29.2
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.29.1
7
+ * The version of the OpenAPI document: 0.29.2
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.29.1
5
+ * The version of the OpenAPI document: 0.29.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -144,6 +144,25 @@ export interface ExportPickfaces202Response {
144
144
  */
145
145
  'message'?: string;
146
146
  }
147
+ /**
148
+ *
149
+ * @export
150
+ * @interface InlineObject
151
+ */
152
+ export interface InlineObject {
153
+ /**
154
+ *
155
+ * @type {Array<Pickface>}
156
+ * @memberof InlineObject
157
+ */
158
+ 'pickfaces'?: Array<Pickface>;
159
+ /**
160
+ * The token referencing the next page number
161
+ * @type {number}
162
+ * @memberof InlineObject
163
+ */
164
+ 'nextPageToken'?: number | null;
165
+ }
147
166
  /**
148
167
  *
149
168
  * @export
@@ -195,25 +214,6 @@ export interface ListPickfaceLogs200Response {
195
214
  */
196
215
  'nextPageToken'?: number | null;
197
216
  }
198
- /**
199
- *
200
- * @export
201
- * @interface ListPickfaces200Response
202
- */
203
- export interface ListPickfaces200Response {
204
- /**
205
- *
206
- * @type {Array<Pickface>}
207
- * @memberof ListPickfaces200Response
208
- */
209
- 'pickfaces'?: Array<Pickface>;
210
- /**
211
- * The token referencing the next page number
212
- * @type {number}
213
- * @memberof ListPickfaces200Response
214
- */
215
- 'nextPageToken'?: number | null;
216
- }
217
217
  /**
218
218
  *
219
219
  * @export
@@ -306,13 +306,13 @@ export interface Pickface {
306
306
  */
307
307
  'fullness': number;
308
308
  /**
309
- *
309
+ * The last time the pickface was picked from
310
310
  * @type {PickfaceLog}
311
311
  * @memberof Pickface
312
312
  */
313
313
  'lastPicked': PickfaceLog | null;
314
314
  /**
315
- *
315
+ * The last time the pickface was restocked
316
316
  * @type {PickfaceLog}
317
317
  * @memberof Pickface
318
318
  */
@@ -973,7 +973,7 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
973
973
  * @param {*} [options] Override http request option.
974
974
  * @throws {RequiredError}
975
975
  */
976
- listPickfaces(project: string, search?: string, pageToken?: number, pageSize?: number, sortBy?: Array<ListPickfacesSortByEnum>, updatedStart?: string, updatedEnd?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPickfaces200Response>>;
976
+ listPickfaces(project: string, search?: string, pageToken?: number, pageSize?: number, sortBy?: Array<ListPickfacesSortByEnum>, updatedStart?: string, updatedEnd?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject>>;
977
977
  /**
978
978
  * Move stock from one pickface to another in a single transaction
979
979
  * @summary Move stock
@@ -1026,7 +1026,7 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
1026
1026
  * @param {*} [options] Override http request option.
1027
1027
  * @throws {RequiredError}
1028
1028
  */
1029
- suggestPickfaces(project: string, variantRef: string, quantity: number, sellThroughRate?: number, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPickfaces200Response>>;
1029
+ suggestPickfaces(project: string, variantRef: string, quantity: number, sellThroughRate?: number, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject>>;
1030
1030
  /**
1031
1031
  * Update a Pickface
1032
1032
  * @summary Update Pickface
@@ -1114,7 +1114,7 @@ export declare const PickfacesApiFactory: (configuration?: Configuration, basePa
1114
1114
  * @param {*} [options] Override http request option.
1115
1115
  * @throws {RequiredError}
1116
1116
  */
1117
- listPickfaces(requestParameters: PickfacesApiListPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListPickfaces200Response>;
1117
+ listPickfaces(requestParameters: PickfacesApiListPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<InlineObject>;
1118
1118
  /**
1119
1119
  * Move stock from one pickface to another in a single transaction
1120
1120
  * @summary Move stock
@@ -1154,7 +1154,7 @@ export declare const PickfacesApiFactory: (configuration?: Configuration, basePa
1154
1154
  * @param {*} [options] Override http request option.
1155
1155
  * @throws {RequiredError}
1156
1156
  */
1157
- suggestPickfaces(requestParameters: PickfacesApiSuggestPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListPickfaces200Response>;
1157
+ suggestPickfaces(requestParameters: PickfacesApiSuggestPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<InlineObject>;
1158
1158
  /**
1159
1159
  * Update a Pickface
1160
1160
  * @summary Update Pickface
@@ -1638,7 +1638,7 @@ export declare class PickfacesApi extends BaseAPI {
1638
1638
  * @throws {RequiredError}
1639
1639
  * @memberof PickfacesApi
1640
1640
  */
1641
- listPickfaces(requestParameters: PickfacesApiListPickfacesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPickfaces200Response, any>>;
1641
+ listPickfaces(requestParameters: PickfacesApiListPickfacesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineObject, any>>;
1642
1642
  /**
1643
1643
  * Move stock from one pickface to another in a single transaction
1644
1644
  * @summary Move stock
@@ -1683,7 +1683,7 @@ export declare class PickfacesApi extends BaseAPI {
1683
1683
  * @throws {RequiredError}
1684
1684
  * @memberof PickfacesApi
1685
1685
  */
1686
- suggestPickfaces(requestParameters: PickfacesApiSuggestPickfacesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPickfaces200Response, any>>;
1686
+ suggestPickfaces(requestParameters: PickfacesApiSuggestPickfacesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineObject, any>>;
1687
1687
  /**
1688
1688
  * Update a Pickface
1689
1689
  * @summary Update Pickface
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.29.1
8
+ * The version of the OpenAPI document: 0.29.2
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.29.1
5
+ * The version of the OpenAPI document: 0.29.2
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.29.1
8
+ * The version of the OpenAPI document: 0.29.2
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.29.1
5
+ * The version of the OpenAPI document: 0.29.2
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.29.1
8
+ * The version of the OpenAPI document: 0.29.2
9
9
  *
10
10
  *
11
11
  * 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.29.1
5
+ * The version of the OpenAPI document: 0.29.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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.29.1
8
+ * The version of the OpenAPI document: 0.29.2
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.29.1
5
+ * The version of the OpenAPI document: 0.29.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -144,6 +144,25 @@ export interface ExportPickfaces202Response {
144
144
  */
145
145
  'message'?: string;
146
146
  }
147
+ /**
148
+ *
149
+ * @export
150
+ * @interface InlineObject
151
+ */
152
+ export interface InlineObject {
153
+ /**
154
+ *
155
+ * @type {Array<Pickface>}
156
+ * @memberof InlineObject
157
+ */
158
+ 'pickfaces'?: Array<Pickface>;
159
+ /**
160
+ * The token referencing the next page number
161
+ * @type {number}
162
+ * @memberof InlineObject
163
+ */
164
+ 'nextPageToken'?: number | null;
165
+ }
147
166
  /**
148
167
  *
149
168
  * @export
@@ -195,25 +214,6 @@ export interface ListPickfaceLogs200Response {
195
214
  */
196
215
  'nextPageToken'?: number | null;
197
216
  }
198
- /**
199
- *
200
- * @export
201
- * @interface ListPickfaces200Response
202
- */
203
- export interface ListPickfaces200Response {
204
- /**
205
- *
206
- * @type {Array<Pickface>}
207
- * @memberof ListPickfaces200Response
208
- */
209
- 'pickfaces'?: Array<Pickface>;
210
- /**
211
- * The token referencing the next page number
212
- * @type {number}
213
- * @memberof ListPickfaces200Response
214
- */
215
- 'nextPageToken'?: number | null;
216
- }
217
217
  /**
218
218
  *
219
219
  * @export
@@ -306,13 +306,13 @@ export interface Pickface {
306
306
  */
307
307
  'fullness': number;
308
308
  /**
309
- *
309
+ * The last time the pickface was picked from
310
310
  * @type {PickfaceLog}
311
311
  * @memberof Pickface
312
312
  */
313
313
  'lastPicked': PickfaceLog | null;
314
314
  /**
315
- *
315
+ * The last time the pickface was restocked
316
316
  * @type {PickfaceLog}
317
317
  * @memberof Pickface
318
318
  */
@@ -973,7 +973,7 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
973
973
  * @param {*} [options] Override http request option.
974
974
  * @throws {RequiredError}
975
975
  */
976
- listPickfaces(project: string, search?: string, pageToken?: number, pageSize?: number, sortBy?: Array<ListPickfacesSortByEnum>, updatedStart?: string, updatedEnd?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPickfaces200Response>>;
976
+ listPickfaces(project: string, search?: string, pageToken?: number, pageSize?: number, sortBy?: Array<ListPickfacesSortByEnum>, updatedStart?: string, updatedEnd?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject>>;
977
977
  /**
978
978
  * Move stock from one pickface to another in a single transaction
979
979
  * @summary Move stock
@@ -1026,7 +1026,7 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
1026
1026
  * @param {*} [options] Override http request option.
1027
1027
  * @throws {RequiredError}
1028
1028
  */
1029
- suggestPickfaces(project: string, variantRef: string, quantity: number, sellThroughRate?: number, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPickfaces200Response>>;
1029
+ suggestPickfaces(project: string, variantRef: string, quantity: number, sellThroughRate?: number, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject>>;
1030
1030
  /**
1031
1031
  * Update a Pickface
1032
1032
  * @summary Update Pickface
@@ -1114,7 +1114,7 @@ export declare const PickfacesApiFactory: (configuration?: Configuration, basePa
1114
1114
  * @param {*} [options] Override http request option.
1115
1115
  * @throws {RequiredError}
1116
1116
  */
1117
- listPickfaces(requestParameters: PickfacesApiListPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListPickfaces200Response>;
1117
+ listPickfaces(requestParameters: PickfacesApiListPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<InlineObject>;
1118
1118
  /**
1119
1119
  * Move stock from one pickface to another in a single transaction
1120
1120
  * @summary Move stock
@@ -1154,7 +1154,7 @@ export declare const PickfacesApiFactory: (configuration?: Configuration, basePa
1154
1154
  * @param {*} [options] Override http request option.
1155
1155
  * @throws {RequiredError}
1156
1156
  */
1157
- suggestPickfaces(requestParameters: PickfacesApiSuggestPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListPickfaces200Response>;
1157
+ suggestPickfaces(requestParameters: PickfacesApiSuggestPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<InlineObject>;
1158
1158
  /**
1159
1159
  * Update a Pickface
1160
1160
  * @summary Update Pickface
@@ -1638,7 +1638,7 @@ export declare class PickfacesApi extends BaseAPI {
1638
1638
  * @throws {RequiredError}
1639
1639
  * @memberof PickfacesApi
1640
1640
  */
1641
- listPickfaces(requestParameters: PickfacesApiListPickfacesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPickfaces200Response, any>>;
1641
+ listPickfaces(requestParameters: PickfacesApiListPickfacesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineObject, any>>;
1642
1642
  /**
1643
1643
  * Move stock from one pickface to another in a single transaction
1644
1644
  * @summary Move stock
@@ -1683,7 +1683,7 @@ export declare class PickfacesApi extends BaseAPI {
1683
1683
  * @throws {RequiredError}
1684
1684
  * @memberof PickfacesApi
1685
1685
  */
1686
- suggestPickfaces(requestParameters: PickfacesApiSuggestPickfacesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPickfaces200Response, any>>;
1686
+ suggestPickfaces(requestParameters: PickfacesApiSuggestPickfacesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineObject, any>>;
1687
1687
  /**
1688
1688
  * Update a Pickface
1689
1689
  * @summary Update Pickface
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.29.1
7
+ * The version of the OpenAPI document: 0.29.2
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.29.1
5
+ * The version of the OpenAPI document: 0.29.2
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.29.1
7
+ * The version of the OpenAPI document: 0.29.2
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.29.1
5
+ * The version of the OpenAPI document: 0.29.2
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.29.1
7
+ * The version of the OpenAPI document: 0.29.2
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.29.1
5
+ * The version of the OpenAPI document: 0.29.2
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.29.1
7
+ * The version of the OpenAPI document: 0.29.2
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.29.1
5
+ * The version of the OpenAPI document: 0.29.2
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.29.1
7
+ * The version of the OpenAPI document: 0.29.2
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.29.1
5
+ * The version of the OpenAPI document: 0.29.2
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.29.1
8
+ * The version of the OpenAPI document: 0.29.2
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -0,0 +1,22 @@
1
+ # InlineObject
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **pickfaces** | [**Array&lt;Pickface&gt;**](Pickface.md) | | [optional] [default to undefined]
9
+ **nextPageToken** | **number** | The token referencing the next page number | [optional] [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { InlineObject } from '@teemill/pickfaces';
15
+
16
+ const instance: InlineObject = {
17
+ pickfaces,
18
+ nextPageToken,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
package/docs/Pickface.md CHANGED
@@ -15,8 +15,8 @@ Name | Type | Description | Notes
15
15
  **bulk** | **boolean** | Whether the pickface is used for bulk storage and not for picking | [default to undefined]
16
16
  **containerType** | [**PickfaceContainerType**](PickfaceContainerType.md) | | [default to undefined]
17
17
  **fullness** | **number** | The percentage of the pickface that has been taken up by its contents | [default to undefined]
18
- **lastPicked** | [**PickfaceLog**](PickfaceLog.md) | | [default to undefined]
19
- **lastRestocked** | [**PickfaceLog**](PickfaceLog.md) | | [default to undefined]
18
+ **lastPicked** | [**PickfaceLog**](PickfaceLog.md) | The last time the pickface was picked from | [default to undefined]
19
+ **lastRestocked** | [**PickfaceLog**](PickfaceLog.md) | The last time the pickface was restocked | [default to undefined]
20
20
  **issue** | [**PickfaceIssue**](PickfaceIssue.md) | | [default to undefined]
21
21
  **contents** | [**Array&lt;PickfaceContentsInner&gt;**](PickfaceContentsInner.md) | | [default to undefined]
22
22
 
@@ -503,7 +503,7 @@ const { status, data } = await apiInstance.listPickfaceLogs(
503
503
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
504
504
 
505
505
  # **listPickfaces**
506
- > ListPickfaces200Response listPickfaces()
506
+ > InlineObject listPickfaces()
507
507
 
508
508
  Lists pickfaces paginated into chunks. Pickfaces contain useful information such as the items they contain and their level of fullness
509
509
 
@@ -552,7 +552,7 @@ const { status, data } = await apiInstance.listPickfaces(
552
552
 
553
553
  ### Return type
554
554
 
555
- **ListPickfaces200Response**
555
+ **InlineObject**
556
556
 
557
557
  ### Authorization
558
558
 
@@ -823,7 +823,7 @@ const { status, data } = await apiInstance.resolvePickfaceIssue(
823
823
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
824
824
 
825
825
  # **suggestPickfaces**
826
- > ListPickfaces200Response suggestPickfaces()
826
+ > InlineObject suggestPickfaces()
827
827
 
828
828
  Suggest pickfaces for putting away stock
829
829
 
@@ -869,7 +869,7 @@ const { status, data } = await apiInstance.suggestPickfaces(
869
869
 
870
870
  ### Return type
871
871
 
872
- **ListPickfaces200Response**
872
+ **InlineObject**
873
873
 
874
874
  ### Authorization
875
875
 
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.29.1
7
+ * The version of the OpenAPI document: 0.29.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/pickfaces",
3
- "version": "0.29.1",
3
+ "version": "0.29.2",
4
4
  "description": "OpenAPI client for @teemill/pickfaces",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {