@teemill/warehouse-prefab-applications 0.6.0 → 0.6.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/README.md +2 -2
- package/api.ts +21 -6
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +11 -3
- package/dist/api.js +13 -6
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +11 -3
- package/dist/esm/api.js +13 -6
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/warehouse-prefab-applications@0.6.
|
|
1
|
+
## @teemill/warehouse-prefab-applications@0.6.1
|
|
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.6.
|
|
39
|
+
npm install @teemill/warehouse-prefab-applications@0.6.1 --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.6.
|
|
7
|
+
* The version of the OpenAPI document: 0.6.1
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1373,11 +1373,14 @@ export const TraysApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
1373
1373
|
/**
|
|
1374
1374
|
* Create a tray
|
|
1375
1375
|
* @summary Create tray
|
|
1376
|
+
* @param {string} project What project it is
|
|
1376
1377
|
* @param {CreateTrayRequest} createTrayRequest Create a tray
|
|
1377
1378
|
* @param {*} [options] Override http request option.
|
|
1378
1379
|
* @throws {RequiredError}
|
|
1379
1380
|
*/
|
|
1380
|
-
createTray: async (createTrayRequest: CreateTrayRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1381
|
+
createTray: async (project: string, createTrayRequest: CreateTrayRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1382
|
+
// verify required parameter 'project' is not null or undefined
|
|
1383
|
+
assertParamExists('createTray', 'project', project)
|
|
1381
1384
|
// verify required parameter 'createTrayRequest' is not null or undefined
|
|
1382
1385
|
assertParamExists('createTray', 'createTrayRequest', createTrayRequest)
|
|
1383
1386
|
const localVarPath = `/v1/warehouse/prefab-applications/trays`;
|
|
@@ -1399,6 +1402,10 @@ export const TraysApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
1399
1402
|
// authentication api-key required
|
|
1400
1403
|
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
1401
1404
|
|
|
1405
|
+
if (project !== undefined) {
|
|
1406
|
+
localVarQueryParameter['project'] = project;
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1402
1409
|
|
|
1403
1410
|
|
|
1404
1411
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -1825,12 +1832,13 @@ export const TraysApiFp = function(configuration?: Configuration) {
|
|
|
1825
1832
|
/**
|
|
1826
1833
|
* Create a tray
|
|
1827
1834
|
* @summary Create tray
|
|
1835
|
+
* @param {string} project What project it is
|
|
1828
1836
|
* @param {CreateTrayRequest} createTrayRequest Create a tray
|
|
1829
1837
|
* @param {*} [options] Override http request option.
|
|
1830
1838
|
* @throws {RequiredError}
|
|
1831
1839
|
*/
|
|
1832
|
-
async createTray(createTrayRequest: CreateTrayRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tray>> {
|
|
1833
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createTray(createTrayRequest, options);
|
|
1840
|
+
async createTray(project: string, createTrayRequest: CreateTrayRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tray>> {
|
|
1841
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createTray(project, createTrayRequest, options);
|
|
1834
1842
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1835
1843
|
const localVarOperationServerBasePath = operationServerMap['TraysApi.createTray']?.[localVarOperationServerIndex]?.url;
|
|
1836
1844
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1962,7 +1970,7 @@ export const TraysApiFactory = function (configuration?: Configuration, basePath
|
|
|
1962
1970
|
* @throws {RequiredError}
|
|
1963
1971
|
*/
|
|
1964
1972
|
createTray(requestParameters: TraysApiCreateTrayRequest, options?: RawAxiosRequestConfig): AxiosPromise<Tray> {
|
|
1965
|
-
return localVarFp.createTray(requestParameters.createTrayRequest, options).then((request) => request(axios, basePath));
|
|
1973
|
+
return localVarFp.createTray(requestParameters.project, requestParameters.createTrayRequest, options).then((request) => request(axios, basePath));
|
|
1966
1974
|
},
|
|
1967
1975
|
/**
|
|
1968
1976
|
* Get a tray of applications
|
|
@@ -2043,6 +2051,13 @@ export const TraysApiFactory = function (configuration?: Configuration, basePath
|
|
|
2043
2051
|
* @interface TraysApiCreateTrayRequest
|
|
2044
2052
|
*/
|
|
2045
2053
|
export interface TraysApiCreateTrayRequest {
|
|
2054
|
+
/**
|
|
2055
|
+
* What project it is
|
|
2056
|
+
* @type {string}
|
|
2057
|
+
* @memberof TraysApiCreateTray
|
|
2058
|
+
*/
|
|
2059
|
+
readonly project: string
|
|
2060
|
+
|
|
2046
2061
|
/**
|
|
2047
2062
|
* Create a tray
|
|
2048
2063
|
* @type {CreateTrayRequest}
|
|
@@ -2291,7 +2306,7 @@ export class TraysApi extends BaseAPI {
|
|
|
2291
2306
|
* @memberof TraysApi
|
|
2292
2307
|
*/
|
|
2293
2308
|
public createTray(requestParameters: TraysApiCreateTrayRequest, options?: RawAxiosRequestConfig) {
|
|
2294
|
-
return TraysApiFp(this.configuration).createTray(requestParameters.createTrayRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2309
|
+
return TraysApiFp(this.configuration).createTray(requestParameters.project, requestParameters.createTrayRequest, options).then((request) => request(this.axios, this.basePath));
|
|
2295
2310
|
}
|
|
2296
2311
|
|
|
2297
2312
|
/**
|
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.6.
|
|
7
|
+
* The version of the OpenAPI document: 0.6.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/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.6.
|
|
7
|
+
* The version of the OpenAPI document: 0.6.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/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.6.
|
|
7
|
+
* The version of the OpenAPI document: 0.6.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/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.6.
|
|
5
|
+
* The version of the OpenAPI document: 0.6.1
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -938,11 +938,12 @@ export declare const TraysApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
938
938
|
/**
|
|
939
939
|
* Create a tray
|
|
940
940
|
* @summary Create tray
|
|
941
|
+
* @param {string} project What project it is
|
|
941
942
|
* @param {CreateTrayRequest} createTrayRequest Create a tray
|
|
942
943
|
* @param {*} [options] Override http request option.
|
|
943
944
|
* @throws {RequiredError}
|
|
944
945
|
*/
|
|
945
|
-
createTray: (createTrayRequest: CreateTrayRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
946
|
+
createTray: (project: string, createTrayRequest: CreateTrayRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
946
947
|
/**
|
|
947
948
|
* Get a tray of applications
|
|
948
949
|
* @summary Get tray
|
|
@@ -1026,11 +1027,12 @@ export declare const TraysApiFp: (configuration?: Configuration) => {
|
|
|
1026
1027
|
/**
|
|
1027
1028
|
* Create a tray
|
|
1028
1029
|
* @summary Create tray
|
|
1030
|
+
* @param {string} project What project it is
|
|
1029
1031
|
* @param {CreateTrayRequest} createTrayRequest Create a tray
|
|
1030
1032
|
* @param {*} [options] Override http request option.
|
|
1031
1033
|
* @throws {RequiredError}
|
|
1032
1034
|
*/
|
|
1033
|
-
createTray(createTrayRequest: CreateTrayRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tray>>;
|
|
1035
|
+
createTray(project: string, createTrayRequest: CreateTrayRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tray>>;
|
|
1034
1036
|
/**
|
|
1035
1037
|
* Get a tray of applications
|
|
1036
1038
|
* @summary Get tray
|
|
@@ -1182,6 +1184,12 @@ export declare const TraysApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1182
1184
|
* @interface TraysApiCreateTrayRequest
|
|
1183
1185
|
*/
|
|
1184
1186
|
export interface TraysApiCreateTrayRequest {
|
|
1187
|
+
/**
|
|
1188
|
+
* What project it is
|
|
1189
|
+
* @type {string}
|
|
1190
|
+
* @memberof TraysApiCreateTray
|
|
1191
|
+
*/
|
|
1192
|
+
readonly project: string;
|
|
1185
1193
|
/**
|
|
1186
1194
|
* Create a tray
|
|
1187
1195
|
* @type {CreateTrayRequest}
|
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.6.
|
|
8
|
+
* The version of the OpenAPI document: 0.6.1
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -704,11 +704,14 @@ const TraysApiAxiosParamCreator = function (configuration) {
|
|
|
704
704
|
/**
|
|
705
705
|
* Create a tray
|
|
706
706
|
* @summary Create tray
|
|
707
|
+
* @param {string} project What project it is
|
|
707
708
|
* @param {CreateTrayRequest} createTrayRequest Create a tray
|
|
708
709
|
* @param {*} [options] Override http request option.
|
|
709
710
|
* @throws {RequiredError}
|
|
710
711
|
*/
|
|
711
|
-
createTray: (createTrayRequest_1, ...args_1) => __awaiter(this, [createTrayRequest_1, ...args_1], void 0, function* (createTrayRequest, options = {}) {
|
|
712
|
+
createTray: (project_1, createTrayRequest_1, ...args_1) => __awaiter(this, [project_1, createTrayRequest_1, ...args_1], void 0, function* (project, createTrayRequest, options = {}) {
|
|
713
|
+
// verify required parameter 'project' is not null or undefined
|
|
714
|
+
(0, common_1.assertParamExists)('createTray', 'project', project);
|
|
712
715
|
// verify required parameter 'createTrayRequest' is not null or undefined
|
|
713
716
|
(0, common_1.assertParamExists)('createTray', 'createTrayRequest', createTrayRequest);
|
|
714
717
|
const localVarPath = `/v1/warehouse/prefab-applications/trays`;
|
|
@@ -726,6 +729,9 @@ const TraysApiAxiosParamCreator = function (configuration) {
|
|
|
726
729
|
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
727
730
|
// authentication api-key required
|
|
728
731
|
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
732
|
+
if (project !== undefined) {
|
|
733
|
+
localVarQueryParameter['project'] = project;
|
|
734
|
+
}
|
|
729
735
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
730
736
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
731
737
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1078,14 +1084,15 @@ const TraysApiFp = function (configuration) {
|
|
|
1078
1084
|
/**
|
|
1079
1085
|
* Create a tray
|
|
1080
1086
|
* @summary Create tray
|
|
1087
|
+
* @param {string} project What project it is
|
|
1081
1088
|
* @param {CreateTrayRequest} createTrayRequest Create a tray
|
|
1082
1089
|
* @param {*} [options] Override http request option.
|
|
1083
1090
|
* @throws {RequiredError}
|
|
1084
1091
|
*/
|
|
1085
|
-
createTray(createTrayRequest, options) {
|
|
1092
|
+
createTray(project, createTrayRequest, options) {
|
|
1086
1093
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1087
1094
|
var _a, _b, _c;
|
|
1088
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.createTray(createTrayRequest, options);
|
|
1095
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.createTray(project, createTrayRequest, options);
|
|
1089
1096
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1090
1097
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['TraysApi.createTray']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1091
1098
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1239,7 +1246,7 @@ const TraysApiFactory = function (configuration, basePath, axios) {
|
|
|
1239
1246
|
* @throws {RequiredError}
|
|
1240
1247
|
*/
|
|
1241
1248
|
createTray(requestParameters, options) {
|
|
1242
|
-
return localVarFp.createTray(requestParameters.createTrayRequest, options).then((request) => request(axios, basePath));
|
|
1249
|
+
return localVarFp.createTray(requestParameters.project, requestParameters.createTrayRequest, options).then((request) => request(axios, basePath));
|
|
1243
1250
|
},
|
|
1244
1251
|
/**
|
|
1245
1252
|
* Get a tray of applications
|
|
@@ -1330,7 +1337,7 @@ class TraysApi extends base_1.BaseAPI {
|
|
|
1330
1337
|
* @memberof TraysApi
|
|
1331
1338
|
*/
|
|
1332
1339
|
createTray(requestParameters, options) {
|
|
1333
|
-
return (0, exports.TraysApiFp)(this.configuration).createTray(requestParameters.createTrayRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1340
|
+
return (0, exports.TraysApiFp)(this.configuration).createTray(requestParameters.project, requestParameters.createTrayRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1334
1341
|
}
|
|
1335
1342
|
/**
|
|
1336
1343
|
* Get a tray of applications
|
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.6.
|
|
5
|
+
* The version of the OpenAPI document: 0.6.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/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.6.
|
|
8
|
+
* The version of the OpenAPI document: 0.6.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/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.6.
|
|
5
|
+
* The version of the OpenAPI document: 0.6.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/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.6.
|
|
8
|
+
* The version of the OpenAPI document: 0.6.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/dist/configuration.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.6.
|
|
5
|
+
* The version of the OpenAPI document: 0.6.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/configuration.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.6.
|
|
8
|
+
* The version of the OpenAPI document: 0.6.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/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.6.
|
|
5
|
+
* The version of the OpenAPI document: 0.6.1
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -938,11 +938,12 @@ export declare const TraysApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
938
938
|
/**
|
|
939
939
|
* Create a tray
|
|
940
940
|
* @summary Create tray
|
|
941
|
+
* @param {string} project What project it is
|
|
941
942
|
* @param {CreateTrayRequest} createTrayRequest Create a tray
|
|
942
943
|
* @param {*} [options] Override http request option.
|
|
943
944
|
* @throws {RequiredError}
|
|
944
945
|
*/
|
|
945
|
-
createTray: (createTrayRequest: CreateTrayRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
946
|
+
createTray: (project: string, createTrayRequest: CreateTrayRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
946
947
|
/**
|
|
947
948
|
* Get a tray of applications
|
|
948
949
|
* @summary Get tray
|
|
@@ -1026,11 +1027,12 @@ export declare const TraysApiFp: (configuration?: Configuration) => {
|
|
|
1026
1027
|
/**
|
|
1027
1028
|
* Create a tray
|
|
1028
1029
|
* @summary Create tray
|
|
1030
|
+
* @param {string} project What project it is
|
|
1029
1031
|
* @param {CreateTrayRequest} createTrayRequest Create a tray
|
|
1030
1032
|
* @param {*} [options] Override http request option.
|
|
1031
1033
|
* @throws {RequiredError}
|
|
1032
1034
|
*/
|
|
1033
|
-
createTray(createTrayRequest: CreateTrayRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tray>>;
|
|
1035
|
+
createTray(project: string, createTrayRequest: CreateTrayRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tray>>;
|
|
1034
1036
|
/**
|
|
1035
1037
|
* Get a tray of applications
|
|
1036
1038
|
* @summary Get tray
|
|
@@ -1182,6 +1184,12 @@ export declare const TraysApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1182
1184
|
* @interface TraysApiCreateTrayRequest
|
|
1183
1185
|
*/
|
|
1184
1186
|
export interface TraysApiCreateTrayRequest {
|
|
1187
|
+
/**
|
|
1188
|
+
* What project it is
|
|
1189
|
+
* @type {string}
|
|
1190
|
+
* @memberof TraysApiCreateTray
|
|
1191
|
+
*/
|
|
1192
|
+
readonly project: string;
|
|
1185
1193
|
/**
|
|
1186
1194
|
* Create a tray
|
|
1187
1195
|
* @type {CreateTrayRequest}
|
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.6.
|
|
7
|
+
* The version of the OpenAPI document: 0.6.1
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -693,11 +693,14 @@ export const TraysApiAxiosParamCreator = function (configuration) {
|
|
|
693
693
|
/**
|
|
694
694
|
* Create a tray
|
|
695
695
|
* @summary Create tray
|
|
696
|
+
* @param {string} project What project it is
|
|
696
697
|
* @param {CreateTrayRequest} createTrayRequest Create a tray
|
|
697
698
|
* @param {*} [options] Override http request option.
|
|
698
699
|
* @throws {RequiredError}
|
|
699
700
|
*/
|
|
700
|
-
createTray: (createTrayRequest_1, ...args_1) => __awaiter(this, [createTrayRequest_1, ...args_1], void 0, function* (createTrayRequest, options = {}) {
|
|
701
|
+
createTray: (project_1, createTrayRequest_1, ...args_1) => __awaiter(this, [project_1, createTrayRequest_1, ...args_1], void 0, function* (project, createTrayRequest, options = {}) {
|
|
702
|
+
// verify required parameter 'project' is not null or undefined
|
|
703
|
+
assertParamExists('createTray', 'project', project);
|
|
701
704
|
// verify required parameter 'createTrayRequest' is not null or undefined
|
|
702
705
|
assertParamExists('createTray', 'createTrayRequest', createTrayRequest);
|
|
703
706
|
const localVarPath = `/v1/warehouse/prefab-applications/trays`;
|
|
@@ -715,6 +718,9 @@ export const TraysApiAxiosParamCreator = function (configuration) {
|
|
|
715
718
|
yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
716
719
|
// authentication api-key required
|
|
717
720
|
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
721
|
+
if (project !== undefined) {
|
|
722
|
+
localVarQueryParameter['project'] = project;
|
|
723
|
+
}
|
|
718
724
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
719
725
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
720
726
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1066,14 +1072,15 @@ export const TraysApiFp = function (configuration) {
|
|
|
1066
1072
|
/**
|
|
1067
1073
|
* Create a tray
|
|
1068
1074
|
* @summary Create tray
|
|
1075
|
+
* @param {string} project What project it is
|
|
1069
1076
|
* @param {CreateTrayRequest} createTrayRequest Create a tray
|
|
1070
1077
|
* @param {*} [options] Override http request option.
|
|
1071
1078
|
* @throws {RequiredError}
|
|
1072
1079
|
*/
|
|
1073
|
-
createTray(createTrayRequest, options) {
|
|
1080
|
+
createTray(project, createTrayRequest, options) {
|
|
1074
1081
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1075
1082
|
var _a, _b, _c;
|
|
1076
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.createTray(createTrayRequest, options);
|
|
1083
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.createTray(project, createTrayRequest, options);
|
|
1077
1084
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1078
1085
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TraysApi.createTray']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1079
1086
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1226,7 +1233,7 @@ export const TraysApiFactory = function (configuration, basePath, axios) {
|
|
|
1226
1233
|
* @throws {RequiredError}
|
|
1227
1234
|
*/
|
|
1228
1235
|
createTray(requestParameters, options) {
|
|
1229
|
-
return localVarFp.createTray(requestParameters.createTrayRequest, options).then((request) => request(axios, basePath));
|
|
1236
|
+
return localVarFp.createTray(requestParameters.project, requestParameters.createTrayRequest, options).then((request) => request(axios, basePath));
|
|
1230
1237
|
},
|
|
1231
1238
|
/**
|
|
1232
1239
|
* Get a tray of applications
|
|
@@ -1316,7 +1323,7 @@ export class TraysApi extends BaseAPI {
|
|
|
1316
1323
|
* @memberof TraysApi
|
|
1317
1324
|
*/
|
|
1318
1325
|
createTray(requestParameters, options) {
|
|
1319
|
-
return TraysApiFp(this.configuration).createTray(requestParameters.createTrayRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1326
|
+
return TraysApiFp(this.configuration).createTray(requestParameters.project, requestParameters.createTrayRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1320
1327
|
}
|
|
1321
1328
|
/**
|
|
1322
1329
|
* Get a tray of applications
|
package/dist/esm/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.6.
|
|
5
|
+
* The version of the OpenAPI document: 0.6.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
|
@@ -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.6.
|
|
7
|
+
* The version of the OpenAPI document: 0.6.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/esm/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.6.
|
|
5
|
+
* The version of the OpenAPI document: 0.6.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/common.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.6.
|
|
7
|
+
* The version of the OpenAPI document: 0.6.1
|
|
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.6.
|
|
5
|
+
* The version of the OpenAPI document: 0.6.1
|
|
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.6.
|
|
7
|
+
* The version of the OpenAPI document: 0.6.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/esm/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.6.
|
|
5
|
+
* The version of the OpenAPI document: 0.6.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
|
@@ -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.6.
|
|
7
|
+
* The version of the OpenAPI document: 0.6.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
|
@@ -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.6.
|
|
5
|
+
* The version of the OpenAPI document: 0.6.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
|
@@ -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.6.
|
|
8
|
+
* The version of the OpenAPI document: 0.6.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
|
@@ -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.6.
|
|
7
|
+
* The version of the OpenAPI document: 0.6.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