@teemill/pickfaces 0.14.0 → 0.15.1

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/dist/esm/api.js CHANGED
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * Pickfaces API
5
- * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.14.0
7
+ * The version of the OpenAPI document: 0.15.1
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -230,18 +230,17 @@ export const PickfacesApiAxiosParamCreator = function (configuration) {
230
230
  };
231
231
  }),
232
232
  /**
233
- * Lists all pickfaces available paginated into chunks
233
+ * Lists all available pickfaces paginated into chunks
234
234
  * @summary List pickfaces
235
235
  * @param {string} project What project it is
236
236
  * @param {string} [search] Search term to filter based on pickface code
237
237
  * @param {number} [pageToken] Page reference token
238
238
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
239
- * @param {Array<GetPickfacesFiltersEnum>} [filters] Filters to apply to the request
240
- * @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
239
+ * @param {Array<GetPickfacesSortByEnum>} [sortBy] An array of fields to sort by, prefixed with a \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
241
240
  * @param {*} [options] Override http request option.
242
241
  * @throws {RequiredError}
243
242
  */
244
- getPickfaces: (project_1, search_1, pageToken_1, pageSize_1, filters_1, sortBy_1, ...args_1) => __awaiter(this, [project_1, search_1, pageToken_1, pageSize_1, filters_1, sortBy_1, ...args_1], void 0, function* (project, search, pageToken, pageSize, filters, sortBy, options = {}) {
243
+ getPickfaces: (project_1, search_1, pageToken_1, pageSize_1, sortBy_1, ...args_1) => __awaiter(this, [project_1, search_1, pageToken_1, pageSize_1, sortBy_1, ...args_1], void 0, function* (project, search, pageToken, pageSize, sortBy, options = {}) {
245
244
  // verify required parameter 'project' is not null or undefined
246
245
  assertParamExists('getPickfaces', 'project', project);
247
246
  const localVarPath = `/v1/pickfaces`;
@@ -271,9 +270,6 @@ export const PickfacesApiAxiosParamCreator = function (configuration) {
271
270
  if (pageSize !== undefined) {
272
271
  localVarQueryParameter['pageSize'] = pageSize;
273
272
  }
274
- if (filters) {
275
- localVarQueryParameter['filters'] = filters;
276
- }
277
273
  if (sortBy) {
278
274
  localVarQueryParameter['sortBy'] = sortBy;
279
275
  }
@@ -514,6 +510,54 @@ export const PickfacesApiAxiosParamCreator = function (configuration) {
514
510
  options: localVarRequestOptions,
515
511
  };
516
512
  }),
513
+ /**
514
+ * Print pickface labels
515
+ * @summary Print pickface Labels
516
+ * @param {string} project What project it is
517
+ * @param {string} deviceRef Unique identifier of a warehouse device
518
+ * @param {Array<string>} ids List of pickface ids
519
+ * @param {*} [options] Override http request option.
520
+ * @throws {RequiredError}
521
+ */
522
+ printPickfaceLabels: (project_1, deviceRef_1, ids_1, ...args_1) => __awaiter(this, [project_1, deviceRef_1, ids_1, ...args_1], void 0, function* (project, deviceRef, ids, options = {}) {
523
+ // verify required parameter 'project' is not null or undefined
524
+ assertParamExists('printPickfaceLabels', 'project', project);
525
+ // verify required parameter 'deviceRef' is not null or undefined
526
+ assertParamExists('printPickfaceLabels', 'deviceRef', deviceRef);
527
+ // verify required parameter 'ids' is not null or undefined
528
+ assertParamExists('printPickfaceLabels', 'ids', ids);
529
+ const localVarPath = `/v1/pickfaces/print`;
530
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
531
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
532
+ let baseOptions;
533
+ if (configuration) {
534
+ baseOptions = configuration.baseOptions;
535
+ }
536
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
537
+ const localVarHeaderParameter = {};
538
+ const localVarQueryParameter = {};
539
+ // authentication session-oauth required
540
+ // oauth required
541
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
542
+ // authentication api-key required
543
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
544
+ if (project !== undefined) {
545
+ localVarQueryParameter['project'] = project;
546
+ }
547
+ if (deviceRef !== undefined) {
548
+ localVarQueryParameter['deviceRef'] = deviceRef;
549
+ }
550
+ if (ids) {
551
+ localVarQueryParameter['ids'] = ids;
552
+ }
553
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
554
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
555
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
556
+ return {
557
+ url: toPathString(localVarUrlObj),
558
+ options: localVarRequestOptions,
559
+ };
560
+ }),
517
561
  /**
518
562
  * Resolves an issue on a pickface
519
563
  * @summary Resolve pickface issue
@@ -748,21 +792,20 @@ export const PickfacesApiFp = function (configuration) {
748
792
  });
749
793
  },
750
794
  /**
751
- * Lists all pickfaces available paginated into chunks
795
+ * Lists all available pickfaces paginated into chunks
752
796
  * @summary List pickfaces
753
797
  * @param {string} project What project it is
754
798
  * @param {string} [search] Search term to filter based on pickface code
755
799
  * @param {number} [pageToken] Page reference token
756
800
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
757
- * @param {Array<GetPickfacesFiltersEnum>} [filters] Filters to apply to the request
758
- * @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
801
+ * @param {Array<GetPickfacesSortByEnum>} [sortBy] An array of fields to sort by, prefixed with a \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
759
802
  * @param {*} [options] Override http request option.
760
803
  * @throws {RequiredError}
761
804
  */
762
- getPickfaces(project, search, pageToken, pageSize, filters, sortBy, options) {
805
+ getPickfaces(project, search, pageToken, pageSize, sortBy, options) {
763
806
  return __awaiter(this, void 0, void 0, function* () {
764
807
  var _a, _b, _c;
765
- const localVarAxiosArgs = yield localVarAxiosParamCreator.getPickfaces(project, search, pageToken, pageSize, filters, sortBy, options);
808
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getPickfaces(project, search, pageToken, pageSize, sortBy, options);
766
809
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
767
810
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PickfacesApi.getPickfaces']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
768
811
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -859,6 +902,24 @@ export const PickfacesApiFp = function (configuration) {
859
902
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
860
903
  });
861
904
  },
905
+ /**
906
+ * Print pickface labels
907
+ * @summary Print pickface Labels
908
+ * @param {string} project What project it is
909
+ * @param {string} deviceRef Unique identifier of a warehouse device
910
+ * @param {Array<string>} ids List of pickface ids
911
+ * @param {*} [options] Override http request option.
912
+ * @throws {RequiredError}
913
+ */
914
+ printPickfaceLabels(project, deviceRef, ids, options) {
915
+ return __awaiter(this, void 0, void 0, function* () {
916
+ var _a, _b, _c;
917
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.printPickfaceLabels(project, deviceRef, ids, options);
918
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
919
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PickfacesApi.printPickfaceLabels']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
920
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
921
+ });
922
+ },
862
923
  /**
863
924
  * Resolves an issue on a pickface
864
925
  * @summary Resolve pickface issue
@@ -974,14 +1035,14 @@ export const PickfacesApiFactory = function (configuration, basePath, axios) {
974
1035
  return localVarFp.getPickfaceContainerModels(requestParameters.project, options).then((request) => request(axios, basePath));
975
1036
  },
976
1037
  /**
977
- * Lists all pickfaces available paginated into chunks
1038
+ * Lists all available pickfaces paginated into chunks
978
1039
  * @summary List pickfaces
979
1040
  * @param {PickfacesApiGetPickfacesRequest} requestParameters Request parameters.
980
1041
  * @param {*} [options] Override http request option.
981
1042
  * @throws {RequiredError}
982
1043
  */
983
1044
  getPickfaces(requestParameters, options) {
984
- return localVarFp.getPickfaces(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, requestParameters.filters, requestParameters.sortBy, options).then((request) => request(axios, basePath));
1045
+ return localVarFp.getPickfaces(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, requestParameters.sortBy, options).then((request) => request(axios, basePath));
985
1046
  },
986
1047
  /**
987
1048
  * Issue an empty pickface
@@ -1033,6 +1094,16 @@ export const PickfacesApiFactory = function (configuration, basePath, axios) {
1033
1094
  printPickfaceLabel(requestParameters, options) {
1034
1095
  return localVarFp.printPickfaceLabel(requestParameters.project, requestParameters.pickfaceId, requestParameters.deviceRef, options).then((request) => request(axios, basePath));
1035
1096
  },
1097
+ /**
1098
+ * Print pickface labels
1099
+ * @summary Print pickface Labels
1100
+ * @param {PickfacesApiPrintPickfaceLabelsRequest} requestParameters Request parameters.
1101
+ * @param {*} [options] Override http request option.
1102
+ * @throws {RequiredError}
1103
+ */
1104
+ printPickfaceLabels(requestParameters, options) {
1105
+ return localVarFp.printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(axios, basePath));
1106
+ },
1036
1107
  /**
1037
1108
  * Resolves an issue on a pickface
1038
1109
  * @summary Resolve pickface issue
@@ -1128,7 +1199,7 @@ export class PickfacesApi extends BaseAPI {
1128
1199
  return PickfacesApiFp(this.configuration).getPickfaceContainerModels(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
1129
1200
  }
1130
1201
  /**
1131
- * Lists all pickfaces available paginated into chunks
1202
+ * Lists all available pickfaces paginated into chunks
1132
1203
  * @summary List pickfaces
1133
1204
  * @param {PickfacesApiGetPickfacesRequest} requestParameters Request parameters.
1134
1205
  * @param {*} [options] Override http request option.
@@ -1136,7 +1207,7 @@ export class PickfacesApi extends BaseAPI {
1136
1207
  * @memberof PickfacesApi
1137
1208
  */
1138
1209
  getPickfaces(requestParameters, options) {
1139
- return PickfacesApiFp(this.configuration).getPickfaces(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, requestParameters.filters, requestParameters.sortBy, options).then((request) => request(this.axios, this.basePath));
1210
+ return PickfacesApiFp(this.configuration).getPickfaces(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, requestParameters.sortBy, options).then((request) => request(this.axios, this.basePath));
1140
1211
  }
1141
1212
  /**
1142
1213
  * Issue an empty pickface
@@ -1193,6 +1264,17 @@ export class PickfacesApi extends BaseAPI {
1193
1264
  printPickfaceLabel(requestParameters, options) {
1194
1265
  return PickfacesApiFp(this.configuration).printPickfaceLabel(requestParameters.project, requestParameters.pickfaceId, requestParameters.deviceRef, options).then((request) => request(this.axios, this.basePath));
1195
1266
  }
1267
+ /**
1268
+ * Print pickface labels
1269
+ * @summary Print pickface Labels
1270
+ * @param {PickfacesApiPrintPickfaceLabelsRequest} requestParameters Request parameters.
1271
+ * @param {*} [options] Override http request option.
1272
+ * @throws {RequiredError}
1273
+ * @memberof PickfacesApi
1274
+ */
1275
+ printPickfaceLabels(requestParameters, options) {
1276
+ return PickfacesApiFp(this.configuration).printPickfaceLabels(requestParameters.project, requestParameters.deviceRef, requestParameters.ids, options).then((request) => request(this.axios, this.basePath));
1277
+ }
1196
1278
  /**
1197
1279
  * Resolves an issue on a pickface
1198
1280
  * @summary Resolve pickface issue
@@ -1230,7 +1312,17 @@ export class PickfacesApi extends BaseAPI {
1230
1312
  /**
1231
1313
  * @export
1232
1314
  */
1233
- export const GetPickfacesFiltersEnum = {
1234
- Empty: 'empty',
1235
- Flagged: 'flagged'
1315
+ export const GetPickfacesSortByEnum = {
1316
+ Available: '+available',
1317
+ Available2: '-available',
1318
+ Wip: '+wip',
1319
+ Wip2: '-wip',
1320
+ Total: '+total',
1321
+ Total2: '-total',
1322
+ Fullness: '+fullness',
1323
+ Fullness2: '-fullness',
1324
+ Restocked: '+restocked',
1325
+ Restocked2: '-restocked',
1326
+ Picked: '+picked',
1327
+ Picked2: '-picked'
1236
1328
  };
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Pickfaces API
3
- * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.14.0
5
+ * The version of the OpenAPI document: 0.15.1
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.js CHANGED
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * Pickfaces API
5
- * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.14.0
7
+ * The version of the OpenAPI document: 0.15.1
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Pickfaces API
3
- * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.14.0
5
+ * The version of the OpenAPI document: 0.15.1
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * Pickfaces API
5
- * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.14.0
7
+ * The version of the OpenAPI document: 0.15.1
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Pickfaces API
3
- * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.14.0
5
+ * The version of the OpenAPI document: 0.15.1
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * Pickfaces API
5
- * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.14.0
7
+ * The version of the OpenAPI document: 0.15.1
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Pickfaces API
3
- * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.14.0
5
+ * The version of the OpenAPI document: 0.15.1
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.js CHANGED
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * Pickfaces API
5
- * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.14.0
7
+ * The version of the OpenAPI document: 0.15.1
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Pickfaces API
3
- * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.14.0
5
+ * The version of the OpenAPI document: 0.15.1
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * Pickfaces API
6
- * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 0.14.0
8
+ * The version of the OpenAPI document: 0.15.1
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/index.ts CHANGED
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * Pickfaces API
5
- * Manage Teemill Pickfaces. Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.14.0
7
+ * The version of the OpenAPI document: 0.15.1
8
8
  * Contact: hello@teemill.com
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.14.0",
3
+ "version": "0.15.1",
4
4
  "description": "OpenAPI client for @teemill/pickfaces",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {