@teemill/warehouse-prefab-applications 0.4.0 → 0.5.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/warehouse-prefab-applications@0.4.0
1
+ ## @teemill/warehouse-prefab-applications@0.5.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/warehouse-prefab-applications@0.4.0 --save
39
+ npm install @teemill/warehouse-prefab-applications@0.5.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Warehouse Prefab Applications API
5
5
  * Manage Teemill Warehouse Prefab Applications 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
6
  *
7
- * The version of the OpenAPI document: 0.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1384,6 +1384,64 @@ export const TraysApiAxiosParamCreator = function (configuration?: Configuration
1384
1384
 
1385
1385
 
1386
1386
 
1387
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1388
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1389
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1390
+
1391
+ return {
1392
+ url: toPathString(localVarUrlObj),
1393
+ options: localVarRequestOptions,
1394
+ };
1395
+ },
1396
+ /**
1397
+ * Lists all prefab applications in a tray paginated into chunks
1398
+ * @summary List tray applications
1399
+ * @param {string} project What project it is
1400
+ * @param {string} trayId Tray ID
1401
+ * @param {number} [pageToken] Page reference token
1402
+ * @param {number} [pageSize] The number of results requested per request
1403
+ * @param {*} [options] Override http request option.
1404
+ * @throws {RequiredError}
1405
+ */
1406
+ listTrayPrefabApplications: async (project: string, trayId: string, pageToken?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
1407
+ // verify required parameter 'project' is not null or undefined
1408
+ assertParamExists('listTrayPrefabApplications', 'project', project)
1409
+ // verify required parameter 'trayId' is not null or undefined
1410
+ assertParamExists('listTrayPrefabApplications', 'trayId', trayId)
1411
+ const localVarPath = `/v1/warehouse/prefab-applications/trays/{trayId}/prefab-applications`
1412
+ .replace(`{${"trayId"}}`, encodeURIComponent(String(trayId)));
1413
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1414
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1415
+ let baseOptions;
1416
+ if (configuration) {
1417
+ baseOptions = configuration.baseOptions;
1418
+ }
1419
+
1420
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1421
+ const localVarHeaderParameter = {} as any;
1422
+ const localVarQueryParameter = {} as any;
1423
+
1424
+ // authentication session-oauth required
1425
+ // oauth required
1426
+ await setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration)
1427
+
1428
+ // authentication api-key required
1429
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
1430
+
1431
+ if (project !== undefined) {
1432
+ localVarQueryParameter['project'] = project;
1433
+ }
1434
+
1435
+ if (pageToken !== undefined) {
1436
+ localVarQueryParameter['pageToken'] = pageToken;
1437
+ }
1438
+
1439
+ if (pageSize !== undefined) {
1440
+ localVarQueryParameter['pageSize'] = pageSize;
1441
+ }
1442
+
1443
+
1444
+
1387
1445
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1388
1446
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1389
1447
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -1710,6 +1768,22 @@ export const TraysApiFp = function(configuration?: Configuration) {
1710
1768
  const localVarOperationServerBasePath = operationServerMap['TraysApi.getTray']?.[localVarOperationServerIndex]?.url;
1711
1769
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1712
1770
  },
1771
+ /**
1772
+ * Lists all prefab applications in a tray paginated into chunks
1773
+ * @summary List tray applications
1774
+ * @param {string} project What project it is
1775
+ * @param {string} trayId Tray ID
1776
+ * @param {number} [pageToken] Page reference token
1777
+ * @param {number} [pageSize] The number of results requested per request
1778
+ * @param {*} [options] Override http request option.
1779
+ * @throws {RequiredError}
1780
+ */
1781
+ async listTrayPrefabApplications(project: string, trayId: string, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListBatchPrefabApplications200Response>> {
1782
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listTrayPrefabApplications(project, trayId, pageToken, pageSize, options);
1783
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1784
+ const localVarOperationServerBasePath = operationServerMap['TraysApi.listTrayPrefabApplications']?.[localVarOperationServerIndex]?.url;
1785
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1786
+ },
1713
1787
  /**
1714
1788
  * Lists all prefab application trays paginated into chunks
1715
1789
  * @summary List trays
@@ -1809,6 +1883,16 @@ export const TraysApiFactory = function (configuration?: Configuration, basePath
1809
1883
  getTray(requestParameters: TraysApiGetTrayRequest, options?: RawAxiosRequestConfig): AxiosPromise<Tray> {
1810
1884
  return localVarFp.getTray(requestParameters.project, requestParameters.trayId, options).then((request) => request(axios, basePath));
1811
1885
  },
1886
+ /**
1887
+ * Lists all prefab applications in a tray paginated into chunks
1888
+ * @summary List tray applications
1889
+ * @param {TraysApiListTrayPrefabApplicationsRequest} requestParameters Request parameters.
1890
+ * @param {*} [options] Override http request option.
1891
+ * @throws {RequiredError}
1892
+ */
1893
+ listTrayPrefabApplications(requestParameters: TraysApiListTrayPrefabApplicationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListBatchPrefabApplications200Response> {
1894
+ return localVarFp.listTrayPrefabApplications(requestParameters.project, requestParameters.trayId, requestParameters.pageToken, requestParameters.pageSize, options).then((request) => request(axios, basePath));
1895
+ },
1812
1896
  /**
1813
1897
  * Lists all prefab application trays paginated into chunks
1814
1898
  * @summary List trays
@@ -1883,6 +1967,41 @@ export interface TraysApiGetTrayRequest {
1883
1967
  readonly trayId: string
1884
1968
  }
1885
1969
 
1970
+ /**
1971
+ * Request parameters for listTrayPrefabApplications operation in TraysApi.
1972
+ * @export
1973
+ * @interface TraysApiListTrayPrefabApplicationsRequest
1974
+ */
1975
+ export interface TraysApiListTrayPrefabApplicationsRequest {
1976
+ /**
1977
+ * What project it is
1978
+ * @type {string}
1979
+ * @memberof TraysApiListTrayPrefabApplications
1980
+ */
1981
+ readonly project: string
1982
+
1983
+ /**
1984
+ * Tray ID
1985
+ * @type {string}
1986
+ * @memberof TraysApiListTrayPrefabApplications
1987
+ */
1988
+ readonly trayId: string
1989
+
1990
+ /**
1991
+ * Page reference token
1992
+ * @type {number}
1993
+ * @memberof TraysApiListTrayPrefabApplications
1994
+ */
1995
+ readonly pageToken?: number
1996
+
1997
+ /**
1998
+ * The number of results requested per request
1999
+ * @type {number}
2000
+ * @memberof TraysApiListTrayPrefabApplications
2001
+ */
2002
+ readonly pageSize?: number
2003
+ }
2004
+
1886
2005
  /**
1887
2006
  * Request parameters for listTrays operation in TraysApi.
1888
2007
  * @export
@@ -2070,6 +2189,18 @@ export class TraysApi extends BaseAPI {
2070
2189
  return TraysApiFp(this.configuration).getTray(requestParameters.project, requestParameters.trayId, options).then((request) => request(this.axios, this.basePath));
2071
2190
  }
2072
2191
 
2192
+ /**
2193
+ * Lists all prefab applications in a tray paginated into chunks
2194
+ * @summary List tray applications
2195
+ * @param {TraysApiListTrayPrefabApplicationsRequest} requestParameters Request parameters.
2196
+ * @param {*} [options] Override http request option.
2197
+ * @throws {RequiredError}
2198
+ * @memberof TraysApi
2199
+ */
2200
+ public listTrayPrefabApplications(requestParameters: TraysApiListTrayPrefabApplicationsRequest, options?: RawAxiosRequestConfig) {
2201
+ return TraysApiFp(this.configuration).listTrayPrefabApplications(requestParameters.project, requestParameters.trayId, requestParameters.pageToken, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
2202
+ }
2203
+
2073
2204
  /**
2074
2205
  * Lists all prefab application trays paginated into chunks
2075
2206
  * @summary List trays
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Warehouse Prefab Applications API
5
5
  * Manage Teemill Warehouse Prefab Applications 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
6
  *
7
- * The version of the OpenAPI document: 0.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
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
  * Warehouse Prefab Applications API
5
5
  * Manage Teemill Warehouse Prefab Applications 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
6
  *
7
- * The version of the OpenAPI document: 0.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
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
  * Warehouse Prefab Applications API
5
5
  * Manage Teemill Warehouse Prefab Applications 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
6
  *
7
- * The version of the OpenAPI document: 0.4.0
7
+ * The version of the OpenAPI document: 0.5.0
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/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage Teemill Warehouse Prefab Applications 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)
4
4
  *
5
- * The version of the OpenAPI document: 0.4.0
5
+ * The version of the OpenAPI document: 0.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -917,6 +917,17 @@ export declare const TraysApiAxiosParamCreator: (configuration?: Configuration)
917
917
  * @throws {RequiredError}
918
918
  */
919
919
  getTray: (project: string, trayId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
920
+ /**
921
+ * Lists all prefab applications in a tray paginated into chunks
922
+ * @summary List tray applications
923
+ * @param {string} project What project it is
924
+ * @param {string} trayId Tray ID
925
+ * @param {number} [pageToken] Page reference token
926
+ * @param {number} [pageSize] The number of results requested per request
927
+ * @param {*} [options] Override http request option.
928
+ * @throws {RequiredError}
929
+ */
930
+ listTrayPrefabApplications: (project: string, trayId: string, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
920
931
  /**
921
932
  * Lists all prefab application trays paginated into chunks
922
933
  * @summary List trays
@@ -986,6 +997,17 @@ export declare const TraysApiFp: (configuration?: Configuration) => {
986
997
  * @throws {RequiredError}
987
998
  */
988
999
  getTray(project: string, trayId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tray>>;
1000
+ /**
1001
+ * Lists all prefab applications in a tray paginated into chunks
1002
+ * @summary List tray applications
1003
+ * @param {string} project What project it is
1004
+ * @param {string} trayId Tray ID
1005
+ * @param {number} [pageToken] Page reference token
1006
+ * @param {number} [pageSize] The number of results requested per request
1007
+ * @param {*} [options] Override http request option.
1008
+ * @throws {RequiredError}
1009
+ */
1010
+ listTrayPrefabApplications(project: string, trayId: string, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListBatchPrefabApplications200Response>>;
989
1011
  /**
990
1012
  * Lists all prefab application trays paginated into chunks
991
1013
  * @summary List trays
@@ -1054,6 +1076,14 @@ export declare const TraysApiFactory: (configuration?: Configuration, basePath?:
1054
1076
  * @throws {RequiredError}
1055
1077
  */
1056
1078
  getTray(requestParameters: TraysApiGetTrayRequest, options?: RawAxiosRequestConfig): AxiosPromise<Tray>;
1079
+ /**
1080
+ * Lists all prefab applications in a tray paginated into chunks
1081
+ * @summary List tray applications
1082
+ * @param {TraysApiListTrayPrefabApplicationsRequest} requestParameters Request parameters.
1083
+ * @param {*} [options] Override http request option.
1084
+ * @throws {RequiredError}
1085
+ */
1086
+ listTrayPrefabApplications(requestParameters: TraysApiListTrayPrefabApplicationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListBatchPrefabApplications200Response>;
1057
1087
  /**
1058
1088
  * Lists all prefab application trays paginated into chunks
1059
1089
  * @summary List trays
@@ -1114,6 +1144,37 @@ export interface TraysApiGetTrayRequest {
1114
1144
  */
1115
1145
  readonly trayId: string;
1116
1146
  }
1147
+ /**
1148
+ * Request parameters for listTrayPrefabApplications operation in TraysApi.
1149
+ * @export
1150
+ * @interface TraysApiListTrayPrefabApplicationsRequest
1151
+ */
1152
+ export interface TraysApiListTrayPrefabApplicationsRequest {
1153
+ /**
1154
+ * What project it is
1155
+ * @type {string}
1156
+ * @memberof TraysApiListTrayPrefabApplications
1157
+ */
1158
+ readonly project: string;
1159
+ /**
1160
+ * Tray ID
1161
+ * @type {string}
1162
+ * @memberof TraysApiListTrayPrefabApplications
1163
+ */
1164
+ readonly trayId: string;
1165
+ /**
1166
+ * Page reference token
1167
+ * @type {number}
1168
+ * @memberof TraysApiListTrayPrefabApplications
1169
+ */
1170
+ readonly pageToken?: number;
1171
+ /**
1172
+ * The number of results requested per request
1173
+ * @type {number}
1174
+ * @memberof TraysApiListTrayPrefabApplications
1175
+ */
1176
+ readonly pageSize?: number;
1177
+ }
1117
1178
  /**
1118
1179
  * Request parameters for listTrays operation in TraysApi.
1119
1180
  * @export
@@ -1279,6 +1340,15 @@ export declare class TraysApi extends BaseAPI {
1279
1340
  * @memberof TraysApi
1280
1341
  */
1281
1342
  getTray(requestParameters: TraysApiGetTrayRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Tray, any>>;
1343
+ /**
1344
+ * Lists all prefab applications in a tray paginated into chunks
1345
+ * @summary List tray applications
1346
+ * @param {TraysApiListTrayPrefabApplicationsRequest} requestParameters Request parameters.
1347
+ * @param {*} [options] Override http request option.
1348
+ * @throws {RequiredError}
1349
+ * @memberof TraysApi
1350
+ */
1351
+ listTrayPrefabApplications(requestParameters: TraysApiListTrayPrefabApplicationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListBatchPrefabApplications200Response, any>>;
1282
1352
  /**
1283
1353
  * Lists all prefab application trays paginated into chunks
1284
1354
  * @summary List trays
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Warehouse Prefab Applications API
6
6
  * Manage Teemill Warehouse Prefab Applications 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)
7
7
  *
8
- * The version of the OpenAPI document: 0.4.0
8
+ * The version of the OpenAPI document: 0.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -741,6 +741,54 @@ const TraysApiAxiosParamCreator = function (configuration) {
741
741
  options: localVarRequestOptions,
742
742
  };
743
743
  }),
744
+ /**
745
+ * Lists all prefab applications in a tray paginated into chunks
746
+ * @summary List tray applications
747
+ * @param {string} project What project it is
748
+ * @param {string} trayId Tray ID
749
+ * @param {number} [pageToken] Page reference token
750
+ * @param {number} [pageSize] The number of results requested per request
751
+ * @param {*} [options] Override http request option.
752
+ * @throws {RequiredError}
753
+ */
754
+ listTrayPrefabApplications: (project_1, trayId_1, pageToken_1, pageSize_1, ...args_1) => __awaiter(this, [project_1, trayId_1, pageToken_1, pageSize_1, ...args_1], void 0, function* (project, trayId, pageToken, pageSize, options = {}) {
755
+ // verify required parameter 'project' is not null or undefined
756
+ (0, common_1.assertParamExists)('listTrayPrefabApplications', 'project', project);
757
+ // verify required parameter 'trayId' is not null or undefined
758
+ (0, common_1.assertParamExists)('listTrayPrefabApplications', 'trayId', trayId);
759
+ const localVarPath = `/v1/warehouse/prefab-applications/trays/{trayId}/prefab-applications`
760
+ .replace(`{${"trayId"}}`, encodeURIComponent(String(trayId)));
761
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
762
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
763
+ let baseOptions;
764
+ if (configuration) {
765
+ baseOptions = configuration.baseOptions;
766
+ }
767
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
768
+ const localVarHeaderParameter = {};
769
+ const localVarQueryParameter = {};
770
+ // authentication session-oauth required
771
+ // oauth required
772
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
773
+ // authentication api-key required
774
+ yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
775
+ if (project !== undefined) {
776
+ localVarQueryParameter['project'] = project;
777
+ }
778
+ if (pageToken !== undefined) {
779
+ localVarQueryParameter['pageToken'] = pageToken;
780
+ }
781
+ if (pageSize !== undefined) {
782
+ localVarQueryParameter['pageSize'] = pageSize;
783
+ }
784
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
785
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
786
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
787
+ return {
788
+ url: (0, common_1.toPathString)(localVarUrlObj),
789
+ options: localVarRequestOptions,
790
+ };
791
+ }),
744
792
  /**
745
793
  * Lists all prefab application trays paginated into chunks
746
794
  * @summary List trays
@@ -1009,6 +1057,25 @@ const TraysApiFp = function (configuration) {
1009
1057
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1010
1058
  });
1011
1059
  },
1060
+ /**
1061
+ * Lists all prefab applications in a tray paginated into chunks
1062
+ * @summary List tray applications
1063
+ * @param {string} project What project it is
1064
+ * @param {string} trayId Tray ID
1065
+ * @param {number} [pageToken] Page reference token
1066
+ * @param {number} [pageSize] The number of results requested per request
1067
+ * @param {*} [options] Override http request option.
1068
+ * @throws {RequiredError}
1069
+ */
1070
+ listTrayPrefabApplications(project, trayId, pageToken, pageSize, options) {
1071
+ return __awaiter(this, void 0, void 0, function* () {
1072
+ var _a, _b, _c;
1073
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.listTrayPrefabApplications(project, trayId, pageToken, pageSize, options);
1074
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1075
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['TraysApi.listTrayPrefabApplications']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1076
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1077
+ });
1078
+ },
1012
1079
  /**
1013
1080
  * Lists all prefab application trays paginated into chunks
1014
1081
  * @summary List trays
@@ -1123,6 +1190,16 @@ const TraysApiFactory = function (configuration, basePath, axios) {
1123
1190
  getTray(requestParameters, options) {
1124
1191
  return localVarFp.getTray(requestParameters.project, requestParameters.trayId, options).then((request) => request(axios, basePath));
1125
1192
  },
1193
+ /**
1194
+ * Lists all prefab applications in a tray paginated into chunks
1195
+ * @summary List tray applications
1196
+ * @param {TraysApiListTrayPrefabApplicationsRequest} requestParameters Request parameters.
1197
+ * @param {*} [options] Override http request option.
1198
+ * @throws {RequiredError}
1199
+ */
1200
+ listTrayPrefabApplications(requestParameters, options) {
1201
+ return localVarFp.listTrayPrefabApplications(requestParameters.project, requestParameters.trayId, requestParameters.pageToken, requestParameters.pageSize, options).then((request) => request(axios, basePath));
1202
+ },
1126
1203
  /**
1127
1204
  * Lists all prefab application trays paginated into chunks
1128
1205
  * @summary List trays
@@ -1194,6 +1271,17 @@ class TraysApi extends base_1.BaseAPI {
1194
1271
  getTray(requestParameters, options) {
1195
1272
  return (0, exports.TraysApiFp)(this.configuration).getTray(requestParameters.project, requestParameters.trayId, options).then((request) => request(this.axios, this.basePath));
1196
1273
  }
1274
+ /**
1275
+ * Lists all prefab applications in a tray paginated into chunks
1276
+ * @summary List tray applications
1277
+ * @param {TraysApiListTrayPrefabApplicationsRequest} requestParameters Request parameters.
1278
+ * @param {*} [options] Override http request option.
1279
+ * @throws {RequiredError}
1280
+ * @memberof TraysApi
1281
+ */
1282
+ listTrayPrefabApplications(requestParameters, options) {
1283
+ return (0, exports.TraysApiFp)(this.configuration).listTrayPrefabApplications(requestParameters.project, requestParameters.trayId, requestParameters.pageToken, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
1284
+ }
1197
1285
  /**
1198
1286
  * Lists all prefab application trays paginated into chunks
1199
1287
  * @summary List trays
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage Teemill Warehouse Prefab Applications 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)
4
4
  *
5
- * The version of the OpenAPI document: 0.4.0
5
+ * The version of the OpenAPI document: 0.5.0
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/base.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Warehouse Prefab Applications API
6
6
  * Manage Teemill Warehouse Prefab Applications 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)
7
7
  *
8
- * The version of the OpenAPI document: 0.4.0
8
+ * The version of the OpenAPI document: 0.5.0
9
9
  * Contact: hello@teemill.com
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
  * Warehouse Prefab Applications API
3
3
  * Manage Teemill Warehouse Prefab Applications 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)
4
4
  *
5
- * The version of the OpenAPI document: 0.4.0
5
+ * The version of the OpenAPI document: 0.5.0
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/common.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Warehouse Prefab Applications API
6
6
  * Manage Teemill Warehouse Prefab Applications 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)
7
7
  *
8
- * The version of the OpenAPI document: 0.4.0
8
+ * The version of the OpenAPI document: 0.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage Teemill Warehouse Prefab Applications 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)
4
4
  *
5
- * The version of the OpenAPI document: 0.4.0
5
+ * The version of the OpenAPI document: 0.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Warehouse Prefab Applications API
6
6
  * Manage Teemill Warehouse Prefab Applications 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)
7
7
  *
8
- * The version of the OpenAPI document: 0.4.0
8
+ * The version of the OpenAPI document: 0.5.0
9
9
  * Contact: hello@teemill.com
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
  * Warehouse Prefab Applications API
3
3
  * Manage Teemill Warehouse Prefab Applications 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)
4
4
  *
5
- * The version of the OpenAPI document: 0.4.0
5
+ * The version of the OpenAPI document: 0.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -917,6 +917,17 @@ export declare const TraysApiAxiosParamCreator: (configuration?: Configuration)
917
917
  * @throws {RequiredError}
918
918
  */
919
919
  getTray: (project: string, trayId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
920
+ /**
921
+ * Lists all prefab applications in a tray paginated into chunks
922
+ * @summary List tray applications
923
+ * @param {string} project What project it is
924
+ * @param {string} trayId Tray ID
925
+ * @param {number} [pageToken] Page reference token
926
+ * @param {number} [pageSize] The number of results requested per request
927
+ * @param {*} [options] Override http request option.
928
+ * @throws {RequiredError}
929
+ */
930
+ listTrayPrefabApplications: (project: string, trayId: string, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
920
931
  /**
921
932
  * Lists all prefab application trays paginated into chunks
922
933
  * @summary List trays
@@ -986,6 +997,17 @@ export declare const TraysApiFp: (configuration?: Configuration) => {
986
997
  * @throws {RequiredError}
987
998
  */
988
999
  getTray(project: string, trayId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tray>>;
1000
+ /**
1001
+ * Lists all prefab applications in a tray paginated into chunks
1002
+ * @summary List tray applications
1003
+ * @param {string} project What project it is
1004
+ * @param {string} trayId Tray ID
1005
+ * @param {number} [pageToken] Page reference token
1006
+ * @param {number} [pageSize] The number of results requested per request
1007
+ * @param {*} [options] Override http request option.
1008
+ * @throws {RequiredError}
1009
+ */
1010
+ listTrayPrefabApplications(project: string, trayId: string, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListBatchPrefabApplications200Response>>;
989
1011
  /**
990
1012
  * Lists all prefab application trays paginated into chunks
991
1013
  * @summary List trays
@@ -1054,6 +1076,14 @@ export declare const TraysApiFactory: (configuration?: Configuration, basePath?:
1054
1076
  * @throws {RequiredError}
1055
1077
  */
1056
1078
  getTray(requestParameters: TraysApiGetTrayRequest, options?: RawAxiosRequestConfig): AxiosPromise<Tray>;
1079
+ /**
1080
+ * Lists all prefab applications in a tray paginated into chunks
1081
+ * @summary List tray applications
1082
+ * @param {TraysApiListTrayPrefabApplicationsRequest} requestParameters Request parameters.
1083
+ * @param {*} [options] Override http request option.
1084
+ * @throws {RequiredError}
1085
+ */
1086
+ listTrayPrefabApplications(requestParameters: TraysApiListTrayPrefabApplicationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListBatchPrefabApplications200Response>;
1057
1087
  /**
1058
1088
  * Lists all prefab application trays paginated into chunks
1059
1089
  * @summary List trays
@@ -1114,6 +1144,37 @@ export interface TraysApiGetTrayRequest {
1114
1144
  */
1115
1145
  readonly trayId: string;
1116
1146
  }
1147
+ /**
1148
+ * Request parameters for listTrayPrefabApplications operation in TraysApi.
1149
+ * @export
1150
+ * @interface TraysApiListTrayPrefabApplicationsRequest
1151
+ */
1152
+ export interface TraysApiListTrayPrefabApplicationsRequest {
1153
+ /**
1154
+ * What project it is
1155
+ * @type {string}
1156
+ * @memberof TraysApiListTrayPrefabApplications
1157
+ */
1158
+ readonly project: string;
1159
+ /**
1160
+ * Tray ID
1161
+ * @type {string}
1162
+ * @memberof TraysApiListTrayPrefabApplications
1163
+ */
1164
+ readonly trayId: string;
1165
+ /**
1166
+ * Page reference token
1167
+ * @type {number}
1168
+ * @memberof TraysApiListTrayPrefabApplications
1169
+ */
1170
+ readonly pageToken?: number;
1171
+ /**
1172
+ * The number of results requested per request
1173
+ * @type {number}
1174
+ * @memberof TraysApiListTrayPrefabApplications
1175
+ */
1176
+ readonly pageSize?: number;
1177
+ }
1117
1178
  /**
1118
1179
  * Request parameters for listTrays operation in TraysApi.
1119
1180
  * @export
@@ -1279,6 +1340,15 @@ export declare class TraysApi extends BaseAPI {
1279
1340
  * @memberof TraysApi
1280
1341
  */
1281
1342
  getTray(requestParameters: TraysApiGetTrayRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Tray, any>>;
1343
+ /**
1344
+ * Lists all prefab applications in a tray paginated into chunks
1345
+ * @summary List tray applications
1346
+ * @param {TraysApiListTrayPrefabApplicationsRequest} requestParameters Request parameters.
1347
+ * @param {*} [options] Override http request option.
1348
+ * @throws {RequiredError}
1349
+ * @memberof TraysApi
1350
+ */
1351
+ listTrayPrefabApplications(requestParameters: TraysApiListTrayPrefabApplicationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListBatchPrefabApplications200Response, any>>;
1282
1352
  /**
1283
1353
  * Lists all prefab application trays paginated into chunks
1284
1354
  * @summary List trays
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Warehouse Prefab Applications API
5
5
  * Manage Teemill Warehouse Prefab Applications 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
6
  *
7
- * The version of the OpenAPI document: 0.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -730,6 +730,54 @@ export const TraysApiAxiosParamCreator = function (configuration) {
730
730
  options: localVarRequestOptions,
731
731
  };
732
732
  }),
733
+ /**
734
+ * Lists all prefab applications in a tray paginated into chunks
735
+ * @summary List tray applications
736
+ * @param {string} project What project it is
737
+ * @param {string} trayId Tray ID
738
+ * @param {number} [pageToken] Page reference token
739
+ * @param {number} [pageSize] The number of results requested per request
740
+ * @param {*} [options] Override http request option.
741
+ * @throws {RequiredError}
742
+ */
743
+ listTrayPrefabApplications: (project_1, trayId_1, pageToken_1, pageSize_1, ...args_1) => __awaiter(this, [project_1, trayId_1, pageToken_1, pageSize_1, ...args_1], void 0, function* (project, trayId, pageToken, pageSize, options = {}) {
744
+ // verify required parameter 'project' is not null or undefined
745
+ assertParamExists('listTrayPrefabApplications', 'project', project);
746
+ // verify required parameter 'trayId' is not null or undefined
747
+ assertParamExists('listTrayPrefabApplications', 'trayId', trayId);
748
+ const localVarPath = `/v1/warehouse/prefab-applications/trays/{trayId}/prefab-applications`
749
+ .replace(`{${"trayId"}}`, encodeURIComponent(String(trayId)));
750
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
751
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
752
+ let baseOptions;
753
+ if (configuration) {
754
+ baseOptions = configuration.baseOptions;
755
+ }
756
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
757
+ const localVarHeaderParameter = {};
758
+ const localVarQueryParameter = {};
759
+ // authentication session-oauth required
760
+ // oauth required
761
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
762
+ // authentication api-key required
763
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
764
+ if (project !== undefined) {
765
+ localVarQueryParameter['project'] = project;
766
+ }
767
+ if (pageToken !== undefined) {
768
+ localVarQueryParameter['pageToken'] = pageToken;
769
+ }
770
+ if (pageSize !== undefined) {
771
+ localVarQueryParameter['pageSize'] = pageSize;
772
+ }
773
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
774
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
775
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
776
+ return {
777
+ url: toPathString(localVarUrlObj),
778
+ options: localVarRequestOptions,
779
+ };
780
+ }),
733
781
  /**
734
782
  * Lists all prefab application trays paginated into chunks
735
783
  * @summary List trays
@@ -997,6 +1045,25 @@ export const TraysApiFp = function (configuration) {
997
1045
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
998
1046
  });
999
1047
  },
1048
+ /**
1049
+ * Lists all prefab applications in a tray paginated into chunks
1050
+ * @summary List tray applications
1051
+ * @param {string} project What project it is
1052
+ * @param {string} trayId Tray ID
1053
+ * @param {number} [pageToken] Page reference token
1054
+ * @param {number} [pageSize] The number of results requested per request
1055
+ * @param {*} [options] Override http request option.
1056
+ * @throws {RequiredError}
1057
+ */
1058
+ listTrayPrefabApplications(project, trayId, pageToken, pageSize, options) {
1059
+ return __awaiter(this, void 0, void 0, function* () {
1060
+ var _a, _b, _c;
1061
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.listTrayPrefabApplications(project, trayId, pageToken, pageSize, options);
1062
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1063
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TraysApi.listTrayPrefabApplications']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1064
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1065
+ });
1066
+ },
1000
1067
  /**
1001
1068
  * Lists all prefab application trays paginated into chunks
1002
1069
  * @summary List trays
@@ -1110,6 +1177,16 @@ export const TraysApiFactory = function (configuration, basePath, axios) {
1110
1177
  getTray(requestParameters, options) {
1111
1178
  return localVarFp.getTray(requestParameters.project, requestParameters.trayId, options).then((request) => request(axios, basePath));
1112
1179
  },
1180
+ /**
1181
+ * Lists all prefab applications in a tray paginated into chunks
1182
+ * @summary List tray applications
1183
+ * @param {TraysApiListTrayPrefabApplicationsRequest} requestParameters Request parameters.
1184
+ * @param {*} [options] Override http request option.
1185
+ * @throws {RequiredError}
1186
+ */
1187
+ listTrayPrefabApplications(requestParameters, options) {
1188
+ return localVarFp.listTrayPrefabApplications(requestParameters.project, requestParameters.trayId, requestParameters.pageToken, requestParameters.pageSize, options).then((request) => request(axios, basePath));
1189
+ },
1113
1190
  /**
1114
1191
  * Lists all prefab application trays paginated into chunks
1115
1192
  * @summary List trays
@@ -1180,6 +1257,17 @@ export class TraysApi extends BaseAPI {
1180
1257
  getTray(requestParameters, options) {
1181
1258
  return TraysApiFp(this.configuration).getTray(requestParameters.project, requestParameters.trayId, options).then((request) => request(this.axios, this.basePath));
1182
1259
  }
1260
+ /**
1261
+ * Lists all prefab applications in a tray paginated into chunks
1262
+ * @summary List tray applications
1263
+ * @param {TraysApiListTrayPrefabApplicationsRequest} requestParameters Request parameters.
1264
+ * @param {*} [options] Override http request option.
1265
+ * @throws {RequiredError}
1266
+ * @memberof TraysApi
1267
+ */
1268
+ listTrayPrefabApplications(requestParameters, options) {
1269
+ return TraysApiFp(this.configuration).listTrayPrefabApplications(requestParameters.project, requestParameters.trayId, requestParameters.pageToken, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
1270
+ }
1183
1271
  /**
1184
1272
  * Lists all prefab application trays paginated into chunks
1185
1273
  * @summary List trays
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage Teemill Warehouse Prefab Applications 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)
4
4
  *
5
- * The version of the OpenAPI document: 0.4.0
5
+ * The version of the OpenAPI document: 0.5.0
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
@@ -4,7 +4,7 @@
4
4
  * Warehouse Prefab Applications API
5
5
  * Manage Teemill Warehouse Prefab Applications 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
6
  *
7
- * The version of the OpenAPI document: 0.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage Teemill Warehouse Prefab Applications 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)
4
4
  *
5
- * The version of the OpenAPI document: 0.4.0
5
+ * The version of the OpenAPI document: 0.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Warehouse Prefab Applications API
5
5
  * Manage Teemill Warehouse Prefab Applications 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
6
  *
7
- * The version of the OpenAPI document: 0.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage Teemill Warehouse Prefab Applications 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)
4
4
  *
5
- * The version of the OpenAPI document: 0.4.0
5
+ * The version of the OpenAPI document: 0.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Warehouse Prefab Applications API
5
5
  * Manage Teemill Warehouse Prefab Applications 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
6
  *
7
- * The version of the OpenAPI document: 0.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage Teemill Warehouse Prefab Applications 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)
4
4
  *
5
- * The version of the OpenAPI document: 0.4.0
5
+ * The version of the OpenAPI document: 0.5.0
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
@@ -4,7 +4,7 @@
4
4
  * Warehouse Prefab Applications API
5
5
  * Manage Teemill Warehouse Prefab Applications 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
6
  *
7
- * The version of the OpenAPI document: 0.4.0
7
+ * The version of the OpenAPI document: 0.5.0
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
@@ -2,7 +2,7 @@
2
2
  * Warehouse Prefab Applications API
3
3
  * Manage Teemill Warehouse Prefab Applications 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)
4
4
  *
5
- * The version of the OpenAPI document: 0.4.0
5
+ * The version of the OpenAPI document: 0.5.0
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
@@ -5,7 +5,7 @@
5
5
  * Warehouse Prefab Applications API
6
6
  * Manage Teemill Warehouse Prefab Applications 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)
7
7
  *
8
- * The version of the OpenAPI document: 0.4.0
8
+ * The version of the OpenAPI document: 0.5.0
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
@@ -4,7 +4,7 @@
4
4
  * Warehouse Prefab Applications API
5
5
  * Manage Teemill Warehouse Prefab Applications 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
6
  *
7
- * The version of the OpenAPI document: 0.4.0
7
+ * The version of the OpenAPI document: 0.5.0
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/warehouse-prefab-applications",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "OpenAPI client for @teemill/warehouse-prefab-applications",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {