@teemill/pickfaces 0.17.2 → 0.19.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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/pickfaces@0.17.2
1
+ ## @teemill/pickfaces@0.19.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.17.2 --save
39
+ npm install @teemill/pickfaces@0.19.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.17.2
7
+ * The version of the OpenAPI document: 0.19.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -149,11 +149,11 @@ export interface GetPickfaces200Response {
149
149
  */
150
150
  'pickfaces'?: Array<Pickface>;
151
151
  /**
152
- *
152
+ * The token referencing the next page number
153
153
  * @type {number}
154
154
  * @memberof GetPickfaces200Response
155
155
  */
156
- 'nextPageToken'?: number;
156
+ 'nextPageToken'?: number | null;
157
157
  }
158
158
  /**
159
159
  *
@@ -200,11 +200,11 @@ export interface ListPickfaceLogs200Response {
200
200
  */
201
201
  'logs'?: Array<PickfaceLog>;
202
202
  /**
203
- *
203
+ * The token referencing the next page number
204
204
  * @type {number}
205
205
  * @memberof ListPickfaceLogs200Response
206
206
  */
207
- 'nextPageToken'?: number;
207
+ 'nextPageToken'?: number | null;
208
208
  }
209
209
  /**
210
210
  *
@@ -739,10 +739,11 @@ export const PickfacesApiAxiosParamCreator = function (configuration?: Configura
739
739
  * Export pickfaces as a CSV file
740
740
  * @summary Export pickfaces
741
741
  * @param {string} project What project it is
742
+ * @param {string} [search] Search term to filter based on pickface code
742
743
  * @param {*} [options] Override http request option.
743
744
  * @throws {RequiredError}
744
745
  */
745
- exportPickfaces: async (project: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
746
+ exportPickfaces: async (project: string, search?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
746
747
  // verify required parameter 'project' is not null or undefined
747
748
  assertParamExists('exportPickfaces', 'project', project)
748
749
  const localVarPath = `/v1/pickfaces/export`;
@@ -768,6 +769,10 @@ export const PickfacesApiAxiosParamCreator = function (configuration?: Configura
768
769
  localVarQueryParameter['project'] = project;
769
770
  }
770
771
 
772
+ if (search !== undefined) {
773
+ localVarQueryParameter['search'] = search;
774
+ }
775
+
771
776
 
772
777
 
773
778
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1483,11 +1488,12 @@ export const PickfacesApiFp = function(configuration?: Configuration) {
1483
1488
  * Export pickfaces as a CSV file
1484
1489
  * @summary Export pickfaces
1485
1490
  * @param {string} project What project it is
1491
+ * @param {string} [search] Search term to filter based on pickface code
1486
1492
  * @param {*} [options] Override http request option.
1487
1493
  * @throws {RequiredError}
1488
1494
  */
1489
- async exportPickfaces(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>> {
1490
- const localVarAxiosArgs = await localVarAxiosParamCreator.exportPickfaces(project, options);
1495
+ async exportPickfaces(project: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>> {
1496
+ const localVarAxiosArgs = await localVarAxiosParamCreator.exportPickfaces(project, search, options);
1491
1497
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1492
1498
  const localVarOperationServerBasePath = operationServerMap['PickfacesApi.exportPickfaces']?.[localVarOperationServerIndex]?.url;
1493
1499
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1712,7 +1718,7 @@ export const PickfacesApiFactory = function (configuration?: Configuration, base
1712
1718
  * @throws {RequiredError}
1713
1719
  */
1714
1720
  exportPickfaces(requestParameters: PickfacesApiExportPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<File> {
1715
- return localVarFp.exportPickfaces(requestParameters.project, options).then((request) => request(axios, basePath));
1721
+ return localVarFp.exportPickfaces(requestParameters.project, requestParameters.search, options).then((request) => request(axios, basePath));
1716
1722
  },
1717
1723
  /**
1718
1724
  * Get a specific pickface. Pickfaces contain useful information such as the items they contain and their level of fullness
@@ -1891,6 +1897,13 @@ export interface PickfacesApiExportPickfacesRequest {
1891
1897
  * @memberof PickfacesApiExportPickfaces
1892
1898
  */
1893
1899
  readonly project: string
1900
+
1901
+ /**
1902
+ * Search term to filter based on pickface code
1903
+ * @type {string}
1904
+ * @memberof PickfacesApiExportPickfaces
1905
+ */
1906
+ readonly search?: string
1894
1907
  }
1895
1908
 
1896
1909
  /**
@@ -2283,7 +2296,7 @@ export class PickfacesApi extends BaseAPI {
2283
2296
  * @memberof PickfacesApi
2284
2297
  */
2285
2298
  public exportPickfaces(requestParameters: PickfacesApiExportPickfacesRequest, options?: RawAxiosRequestConfig) {
2286
- return PickfacesApiFp(this.configuration).exportPickfaces(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
2299
+ return PickfacesApiFp(this.configuration).exportPickfaces(requestParameters.project, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
2287
2300
  }
2288
2301
 
2289
2302
  /**
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.17.2
7
+ * The version of the OpenAPI document: 0.19.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.17.2
7
+ * The version of the OpenAPI document: 0.19.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.17.2
7
+ * The version of the OpenAPI document: 0.19.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.17.2
5
+ * The version of the OpenAPI document: 0.19.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -139,11 +139,11 @@ export interface GetPickfaces200Response {
139
139
  */
140
140
  'pickfaces'?: Array<Pickface>;
141
141
  /**
142
- *
142
+ * The token referencing the next page number
143
143
  * @type {number}
144
144
  * @memberof GetPickfaces200Response
145
145
  */
146
- 'nextPageToken'?: number;
146
+ 'nextPageToken'?: number | null;
147
147
  }
148
148
  /**
149
149
  *
@@ -190,11 +190,11 @@ export interface ListPickfaceLogs200Response {
190
190
  */
191
191
  'logs'?: Array<PickfaceLog>;
192
192
  /**
193
- *
193
+ * The token referencing the next page number
194
194
  * @type {number}
195
195
  * @memberof ListPickfaceLogs200Response
196
196
  */
197
- 'nextPageToken'?: number;
197
+ 'nextPageToken'?: number | null;
198
198
  }
199
199
  /**
200
200
  *
@@ -644,10 +644,11 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
644
644
  * Export pickfaces as a CSV file
645
645
  * @summary Export pickfaces
646
646
  * @param {string} project What project it is
647
+ * @param {string} [search] Search term to filter based on pickface code
647
648
  * @param {*} [options] Override http request option.
648
649
  * @throws {RequiredError}
649
650
  */
650
- exportPickfaces: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
651
+ exportPickfaces: (project: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
651
652
  /**
652
653
  * Get a specific pickface. Pickfaces contain useful information such as the items they contain and their level of fullness
653
654
  * @summary Get pickface
@@ -798,10 +799,11 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
798
799
  * Export pickfaces as a CSV file
799
800
  * @summary Export pickfaces
800
801
  * @param {string} project What project it is
802
+ * @param {string} [search] Search term to filter based on pickface code
801
803
  * @param {*} [options] Override http request option.
802
804
  * @throws {RequiredError}
803
805
  */
804
- exportPickfaces(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
806
+ exportPickfaces(project: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
805
807
  /**
806
808
  * Get a specific pickface. Pickfaces contain useful information such as the items they contain and their level of fullness
807
809
  * @summary Get pickface
@@ -1101,6 +1103,12 @@ export interface PickfacesApiExportPickfacesRequest {
1101
1103
  * @memberof PickfacesApiExportPickfaces
1102
1104
  */
1103
1105
  readonly project: string;
1106
+ /**
1107
+ * Search term to filter based on pickface code
1108
+ * @type {string}
1109
+ * @memberof PickfacesApiExportPickfaces
1110
+ */
1111
+ readonly search?: string;
1104
1112
  }
1105
1113
  /**
1106
1114
  * Request parameters for getPickface operation in PickfacesApi.
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.17.2
8
+ * The version of the OpenAPI document: 0.19.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -124,10 +124,11 @@ const PickfacesApiAxiosParamCreator = function (configuration) {
124
124
  * Export pickfaces as a CSV file
125
125
  * @summary Export pickfaces
126
126
  * @param {string} project What project it is
127
+ * @param {string} [search] Search term to filter based on pickface code
127
128
  * @param {*} [options] Override http request option.
128
129
  * @throws {RequiredError}
129
130
  */
130
- exportPickfaces: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
131
+ exportPickfaces: (project_1, search_1, ...args_1) => __awaiter(this, [project_1, search_1, ...args_1], void 0, function* (project, search, options = {}) {
131
132
  // verify required parameter 'project' is not null or undefined
132
133
  (0, common_1.assertParamExists)('exportPickfaces', 'project', project);
133
134
  const localVarPath = `/v1/pickfaces/export`;
@@ -148,6 +149,9 @@ const PickfacesApiAxiosParamCreator = function (configuration) {
148
149
  if (project !== undefined) {
149
150
  localVarQueryParameter['project'] = project;
150
151
  }
152
+ if (search !== undefined) {
153
+ localVarQueryParameter['search'] = search;
154
+ }
151
155
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
152
156
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
153
157
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -752,13 +756,14 @@ const PickfacesApiFp = function (configuration) {
752
756
  * Export pickfaces as a CSV file
753
757
  * @summary Export pickfaces
754
758
  * @param {string} project What project it is
759
+ * @param {string} [search] Search term to filter based on pickface code
755
760
  * @param {*} [options] Override http request option.
756
761
  * @throws {RequiredError}
757
762
  */
758
- exportPickfaces(project, options) {
763
+ exportPickfaces(project, search, options) {
759
764
  return __awaiter(this, void 0, void 0, function* () {
760
765
  var _a, _b, _c;
761
- const localVarAxiosArgs = yield localVarAxiosParamCreator.exportPickfaces(project, options);
766
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.exportPickfaces(project, search, options);
762
767
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
763
768
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['PickfacesApi.exportPickfaces']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
764
769
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1020,7 +1025,7 @@ const PickfacesApiFactory = function (configuration, basePath, axios) {
1020
1025
  * @throws {RequiredError}
1021
1026
  */
1022
1027
  exportPickfaces(requestParameters, options) {
1023
- return localVarFp.exportPickfaces(requestParameters.project, options).then((request) => request(axios, basePath));
1028
+ return localVarFp.exportPickfaces(requestParameters.project, requestParameters.search, options).then((request) => request(axios, basePath));
1024
1029
  },
1025
1030
  /**
1026
1031
  * Get a specific pickface. Pickfaces contain useful information such as the items they contain and their level of fullness
@@ -1183,7 +1188,7 @@ class PickfacesApi extends base_1.BaseAPI {
1183
1188
  * @memberof PickfacesApi
1184
1189
  */
1185
1190
  exportPickfaces(requestParameters, options) {
1186
- return (0, exports.PickfacesApiFp)(this.configuration).exportPickfaces(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
1191
+ return (0, exports.PickfacesApiFp)(this.configuration).exportPickfaces(requestParameters.project, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
1187
1192
  }
1188
1193
  /**
1189
1194
  * Get a specific pickface. Pickfaces contain useful information such as the items they contain and their level of fullness
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.17.2
5
+ * The version of the OpenAPI document: 0.19.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.17.2
8
+ * The version of the OpenAPI document: 0.19.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.17.2
5
+ * The version of the OpenAPI document: 0.19.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.17.2
8
+ * The version of the OpenAPI document: 0.19.0
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.17.2
5
+ * The version of the OpenAPI document: 0.19.0
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.17.2
8
+ * The version of the OpenAPI document: 0.19.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.17.2
5
+ * The version of the OpenAPI document: 0.19.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -139,11 +139,11 @@ export interface GetPickfaces200Response {
139
139
  */
140
140
  'pickfaces'?: Array<Pickface>;
141
141
  /**
142
- *
142
+ * The token referencing the next page number
143
143
  * @type {number}
144
144
  * @memberof GetPickfaces200Response
145
145
  */
146
- 'nextPageToken'?: number;
146
+ 'nextPageToken'?: number | null;
147
147
  }
148
148
  /**
149
149
  *
@@ -190,11 +190,11 @@ export interface ListPickfaceLogs200Response {
190
190
  */
191
191
  'logs'?: Array<PickfaceLog>;
192
192
  /**
193
- *
193
+ * The token referencing the next page number
194
194
  * @type {number}
195
195
  * @memberof ListPickfaceLogs200Response
196
196
  */
197
- 'nextPageToken'?: number;
197
+ 'nextPageToken'?: number | null;
198
198
  }
199
199
  /**
200
200
  *
@@ -644,10 +644,11 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
644
644
  * Export pickfaces as a CSV file
645
645
  * @summary Export pickfaces
646
646
  * @param {string} project What project it is
647
+ * @param {string} [search] Search term to filter based on pickface code
647
648
  * @param {*} [options] Override http request option.
648
649
  * @throws {RequiredError}
649
650
  */
650
- exportPickfaces: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
651
+ exportPickfaces: (project: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
651
652
  /**
652
653
  * Get a specific pickface. Pickfaces contain useful information such as the items they contain and their level of fullness
653
654
  * @summary Get pickface
@@ -798,10 +799,11 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
798
799
  * Export pickfaces as a CSV file
799
800
  * @summary Export pickfaces
800
801
  * @param {string} project What project it is
802
+ * @param {string} [search] Search term to filter based on pickface code
801
803
  * @param {*} [options] Override http request option.
802
804
  * @throws {RequiredError}
803
805
  */
804
- exportPickfaces(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
806
+ exportPickfaces(project: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
805
807
  /**
806
808
  * Get a specific pickface. Pickfaces contain useful information such as the items they contain and their level of fullness
807
809
  * @summary Get pickface
@@ -1101,6 +1103,12 @@ export interface PickfacesApiExportPickfacesRequest {
1101
1103
  * @memberof PickfacesApiExportPickfaces
1102
1104
  */
1103
1105
  readonly project: string;
1106
+ /**
1107
+ * Search term to filter based on pickface code
1108
+ * @type {string}
1109
+ * @memberof PickfacesApiExportPickfaces
1110
+ */
1111
+ readonly search?: string;
1104
1112
  }
1105
1113
  /**
1106
1114
  * Request parameters for getPickface operation in PickfacesApi.
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.17.2
7
+ * The version of the OpenAPI document: 0.19.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -121,10 +121,11 @@ export const PickfacesApiAxiosParamCreator = function (configuration) {
121
121
  * Export pickfaces as a CSV file
122
122
  * @summary Export pickfaces
123
123
  * @param {string} project What project it is
124
+ * @param {string} [search] Search term to filter based on pickface code
124
125
  * @param {*} [options] Override http request option.
125
126
  * @throws {RequiredError}
126
127
  */
127
- exportPickfaces: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
128
+ exportPickfaces: (project_1, search_1, ...args_1) => __awaiter(this, [project_1, search_1, ...args_1], void 0, function* (project, search, options = {}) {
128
129
  // verify required parameter 'project' is not null or undefined
129
130
  assertParamExists('exportPickfaces', 'project', project);
130
131
  const localVarPath = `/v1/pickfaces/export`;
@@ -145,6 +146,9 @@ export const PickfacesApiAxiosParamCreator = function (configuration) {
145
146
  if (project !== undefined) {
146
147
  localVarQueryParameter['project'] = project;
147
148
  }
149
+ if (search !== undefined) {
150
+ localVarQueryParameter['search'] = search;
151
+ }
148
152
  setSearchParams(localVarUrlObj, localVarQueryParameter);
149
153
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
150
154
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -748,13 +752,14 @@ export const PickfacesApiFp = function (configuration) {
748
752
  * Export pickfaces as a CSV file
749
753
  * @summary Export pickfaces
750
754
  * @param {string} project What project it is
755
+ * @param {string} [search] Search term to filter based on pickface code
751
756
  * @param {*} [options] Override http request option.
752
757
  * @throws {RequiredError}
753
758
  */
754
- exportPickfaces(project, options) {
759
+ exportPickfaces(project, search, options) {
755
760
  return __awaiter(this, void 0, void 0, function* () {
756
761
  var _a, _b, _c;
757
- const localVarAxiosArgs = yield localVarAxiosParamCreator.exportPickfaces(project, options);
762
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.exportPickfaces(project, search, options);
758
763
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
759
764
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PickfacesApi.exportPickfaces']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
760
765
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1015,7 +1020,7 @@ export const PickfacesApiFactory = function (configuration, basePath, axios) {
1015
1020
  * @throws {RequiredError}
1016
1021
  */
1017
1022
  exportPickfaces(requestParameters, options) {
1018
- return localVarFp.exportPickfaces(requestParameters.project, options).then((request) => request(axios, basePath));
1023
+ return localVarFp.exportPickfaces(requestParameters.project, requestParameters.search, options).then((request) => request(axios, basePath));
1019
1024
  },
1020
1025
  /**
1021
1026
  * Get a specific pickface. Pickfaces contain useful information such as the items they contain and their level of fullness
@@ -1177,7 +1182,7 @@ export class PickfacesApi extends BaseAPI {
1177
1182
  * @memberof PickfacesApi
1178
1183
  */
1179
1184
  exportPickfaces(requestParameters, options) {
1180
- return PickfacesApiFp(this.configuration).exportPickfaces(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
1185
+ return PickfacesApiFp(this.configuration).exportPickfaces(requestParameters.project, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
1181
1186
  }
1182
1187
  /**
1183
1188
  * Get a specific pickface. Pickfaces contain useful information such as the items they contain and their level of fullness
@@ -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.17.2
5
+ * The version of the OpenAPI document: 0.19.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.17.2
7
+ * The version of the OpenAPI document: 0.19.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.17.2
5
+ * The version of the OpenAPI document: 0.19.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.17.2
7
+ * The version of the OpenAPI document: 0.19.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.17.2
5
+ * The version of the OpenAPI document: 0.19.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.17.2
7
+ * The version of the OpenAPI document: 0.19.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.17.2
5
+ * The version of the OpenAPI document: 0.19.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.17.2
7
+ * The version of the OpenAPI document: 0.19.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.17.2
5
+ * The version of the OpenAPI document: 0.19.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.17.2
8
+ * The version of the OpenAPI document: 0.19.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.17.2
7
+ * The version of the OpenAPI document: 0.19.0
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.17.2",
3
+ "version": "0.19.0",
4
4
  "description": "OpenAPI client for @teemill/pickfaces",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {