@teemill/warehouse-prefab-applications 0.14.1 → 0.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +22 -0
- package/.openapi-generator/VERSION +1 -1
- package/README.md +2 -2
- package/api.ts +4 -4
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +1 -1
- package/dist/api.js +4 -4
- 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 +1 -1
- package/dist/esm/api.js +4 -4
- 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 +2 -2
package/.openapi-generator/FILES
CHANGED
|
@@ -5,6 +5,28 @@ api.ts
|
|
|
5
5
|
base.ts
|
|
6
6
|
common.ts
|
|
7
7
|
configuration.ts
|
|
8
|
+
docs/ApiError.md
|
|
9
|
+
docs/Batch.md
|
|
10
|
+
docs/BatchesApi.md
|
|
11
|
+
docs/CreateBatchRequest.md
|
|
12
|
+
docs/CreateTrayRequest.md
|
|
13
|
+
docs/ListBatchPrefabApplications200Response.md
|
|
14
|
+
docs/ListBatches200Response.md
|
|
15
|
+
docs/ListTrays200Response.md
|
|
16
|
+
docs/PrefabApplication.md
|
|
17
|
+
docs/PrefabApplicationCatalogApplication.md
|
|
18
|
+
docs/PrefabApplicationsApi.md
|
|
19
|
+
docs/PrefabApplicationsResponse.md
|
|
20
|
+
docs/PrintPrefabApplication202Response.md
|
|
21
|
+
docs/SuggestTrays200Response.md
|
|
22
|
+
docs/Tray.md
|
|
23
|
+
docs/TrayContents.md
|
|
24
|
+
docs/TrayContentsCatalogApplication.md
|
|
25
|
+
docs/TraysApi.md
|
|
26
|
+
docs/UpdatePrefabApplicationRequest.md
|
|
27
|
+
docs/UpdateTrayRequest.md
|
|
28
|
+
docs/UpdateTrayRequestContents.md
|
|
29
|
+
docs/ValidationError.md
|
|
8
30
|
git_push.sh
|
|
9
31
|
index.ts
|
|
10
32
|
package.json
|
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
1
|
+
7.21.0
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/warehouse-prefab-applications@0.14.
|
|
1
|
+
## @teemill/warehouse-prefab-applications@0.14.2
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @teemill/warehouse-prefab-applications@0.14.
|
|
39
|
+
npm install @teemill/warehouse-prefab-applications@0.14.2 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Warehouse Prefab Applications
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.14.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.2
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -79,7 +79,7 @@ export const BatchStatusEnum = {
|
|
|
79
79
|
Ready: 'ready',
|
|
80
80
|
Printed: 'printed',
|
|
81
81
|
Complete: 'complete',
|
|
82
|
-
Failed: 'failed'
|
|
82
|
+
Failed: 'failed',
|
|
83
83
|
} as const;
|
|
84
84
|
|
|
85
85
|
export type BatchStatusEnum = typeof BatchStatusEnum[keyof typeof BatchStatusEnum];
|
|
@@ -153,7 +153,7 @@ export const PrefabApplicationStatusEnum = {
|
|
|
153
153
|
Ready: 'ready',
|
|
154
154
|
Cancelled: 'cancelled',
|
|
155
155
|
Processing: 'processing',
|
|
156
|
-
Complete: 'complete'
|
|
156
|
+
Complete: 'complete',
|
|
157
157
|
} as const;
|
|
158
158
|
|
|
159
159
|
export type PrefabApplicationStatusEnum = typeof PrefabApplicationStatusEnum[keyof typeof PrefabApplicationStatusEnum];
|
|
@@ -220,7 +220,7 @@ export interface Tray {
|
|
|
220
220
|
|
|
221
221
|
export const TrayStatusEnum = {
|
|
222
222
|
Ok: 'ok',
|
|
223
|
-
Issue: 'issue'
|
|
223
|
+
Issue: 'issue',
|
|
224
224
|
} as const;
|
|
225
225
|
|
|
226
226
|
export type TrayStatusEnum = typeof TrayStatusEnum[keyof typeof TrayStatusEnum];
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Warehouse Prefab Applications
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.14.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.2
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Warehouse Prefab Applications
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.14.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.2
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Warehouse Prefab Applications
|
|
4
4
|
* Manage PodOS Warehouse Prefab Applications
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 0.14.
|
|
6
|
+
* The version of the OpenAPI document: 0.14.2
|
|
7
7
|
*
|
|
8
8
|
*
|
|
9
9
|
* 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
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.14.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Warehouse Prefab Applications
|
|
6
6
|
* Manage PodOS Warehouse Prefab Applications
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.14.
|
|
8
|
+
* The version of the OpenAPI document: 0.14.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -34,17 +34,17 @@ exports.BatchStatusEnum = {
|
|
|
34
34
|
Ready: 'ready',
|
|
35
35
|
Printed: 'printed',
|
|
36
36
|
Complete: 'complete',
|
|
37
|
-
Failed: 'failed'
|
|
37
|
+
Failed: 'failed',
|
|
38
38
|
};
|
|
39
39
|
exports.PrefabApplicationStatusEnum = {
|
|
40
40
|
Ready: 'ready',
|
|
41
41
|
Cancelled: 'cancelled',
|
|
42
42
|
Processing: 'processing',
|
|
43
|
-
Complete: 'complete'
|
|
43
|
+
Complete: 'complete',
|
|
44
44
|
};
|
|
45
45
|
exports.TrayStatusEnum = {
|
|
46
46
|
Ok: 'ok',
|
|
47
|
-
Issue: 'issue'
|
|
47
|
+
Issue: 'issue',
|
|
48
48
|
};
|
|
49
49
|
/**
|
|
50
50
|
* BatchesApi - axios parameter creator
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Warehouse Prefab Applications
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.14.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Warehouse Prefab Applications
|
|
6
6
|
* Manage PodOS Warehouse Prefab Applications
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.14.
|
|
8
|
+
* The version of the OpenAPI document: 0.14.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Warehouse Prefab Applications
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.14.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Warehouse Prefab Applications
|
|
6
6
|
* Manage PodOS Warehouse Prefab Applications
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.14.
|
|
8
|
+
* The version of the OpenAPI document: 0.14.2
|
|
9
9
|
*
|
|
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
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.14.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Warehouse Prefab Applications
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.14.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.2
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* 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
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.14.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Warehouse Prefab Applications
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.14.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.2
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -31,17 +31,17 @@ export const BatchStatusEnum = {
|
|
|
31
31
|
Ready: 'ready',
|
|
32
32
|
Printed: 'printed',
|
|
33
33
|
Complete: 'complete',
|
|
34
|
-
Failed: 'failed'
|
|
34
|
+
Failed: 'failed',
|
|
35
35
|
};
|
|
36
36
|
export const PrefabApplicationStatusEnum = {
|
|
37
37
|
Ready: 'ready',
|
|
38
38
|
Cancelled: 'cancelled',
|
|
39
39
|
Processing: 'processing',
|
|
40
|
-
Complete: 'complete'
|
|
40
|
+
Complete: 'complete',
|
|
41
41
|
};
|
|
42
42
|
export const TrayStatusEnum = {
|
|
43
43
|
Ok: 'ok',
|
|
44
|
-
Issue: 'issue'
|
|
44
|
+
Issue: 'issue',
|
|
45
45
|
};
|
|
46
46
|
/**
|
|
47
47
|
* BatchesApi - axios parameter creator
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Warehouse Prefab Applications
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.14.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Warehouse Prefab Applications
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.14.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.2
|
|
8
8
|
*
|
|
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
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.14.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.2
|
|
6
6
|
*
|
|
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
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.14.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.2
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Warehouse Prefab Applications
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.14.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Warehouse Prefab Applications
|
|
4
4
|
* Manage PodOS Warehouse Prefab Applications
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 0.14.
|
|
6
|
+
* The version of the OpenAPI document: 0.14.2
|
|
7
7
|
*
|
|
8
8
|
*
|
|
9
9
|
* 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
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.14.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Warehouse Prefab Applications
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.14.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.2
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Warehouse Prefab Applications
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.14.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.2
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Warehouse Prefab Applications
|
|
6
6
|
* Manage PodOS Warehouse Prefab Applications
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.14.
|
|
8
|
+
* The version of the OpenAPI document: 0.14.2
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Warehouse Prefab Applications
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.14.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.2
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teemill/warehouse-prefab-applications",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.2",
|
|
4
4
|
"description": "OpenAPI client for @teemill/warehouse-prefab-applications",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"prepare": "npm run build"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"axios": "1.
|
|
27
|
+
"axios": "1.15.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node": "12.11.5 - 12.20.42",
|