@teemill/warehouse-prefab-applications 0.13.3 → 0.14.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 +3 -2
- package/api.ts +23 -4
- package/base.ts +2 -2
- package/common.ts +2 -2
- package/configuration.ts +2 -2
- package/dist/api.d.ts +23 -4
- package/dist/api.js +3 -2
- package/dist/base.d.ts +2 -2
- package/dist/base.js +2 -2
- package/dist/common.d.ts +2 -2
- package/dist/common.js +2 -2
- package/dist/configuration.d.ts +2 -2
- package/dist/configuration.js +2 -2
- package/dist/esm/api.d.ts +23 -4
- package/dist/esm/api.js +3 -2
- package/dist/esm/base.d.ts +2 -2
- package/dist/esm/base.js +2 -2
- package/dist/esm/common.d.ts +2 -2
- package/dist/esm/common.js +2 -2
- package/dist/esm/configuration.d.ts +2 -2
- package/dist/esm/configuration.js +2 -2
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/docs/Batch.md +1 -1
- package/docs/TrayContents.md +1 -1
- package/docs/TrayContentsCatalogApplication.md +26 -0
- package/index.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/warehouse-prefab-applications@0.
|
|
1
|
+
## @teemill/warehouse-prefab-applications@0.14.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.
|
|
39
|
+
npm install @teemill/warehouse-prefab-applications@0.14.1 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -87,6 +87,7 @@ Class | Method | HTTP request | Description
|
|
|
87
87
|
- [SuggestTrays200Response](docs/SuggestTrays200Response.md)
|
|
88
88
|
- [Tray](docs/Tray.md)
|
|
89
89
|
- [TrayContents](docs/TrayContents.md)
|
|
90
|
+
- [TrayContentsCatalogApplication](docs/TrayContentsCatalogApplication.md)
|
|
90
91
|
- [UpdatePrefabApplicationRequest](docs/UpdatePrefabApplicationRequest.md)
|
|
91
92
|
- [UpdateTrayRequest](docs/UpdateTrayRequest.md)
|
|
92
93
|
- [UpdateTrayRequestContents](docs/UpdateTrayRequestContents.md)
|
package/api.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
|
-
* Warehouse Prefab Applications
|
|
4
|
+
* Warehouse Prefab Applications
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -41,7 +41,7 @@ export interface Batch {
|
|
|
41
41
|
*/
|
|
42
42
|
'number': string;
|
|
43
43
|
/**
|
|
44
|
-
* The status of the batch
|
|
44
|
+
* The status of the batch. Values: - processing: Print files are being generated for the batch. - ready: All print files are ready; the batch can be sent to the printer. - printed: The batch has been sent to the printer; sheets are being cut and organised into trays. - complete: All applications in the batch are processed (warehouse application finished, or order complete/refunded). - failed: The batch or print job failed.
|
|
45
45
|
*/
|
|
46
46
|
'status': BatchStatusEnum;
|
|
47
47
|
/**
|
|
@@ -77,6 +77,7 @@ export interface Batch {
|
|
|
77
77
|
export const BatchStatusEnum = {
|
|
78
78
|
Processing: 'processing',
|
|
79
79
|
Ready: 'ready',
|
|
80
|
+
Printed: 'printed',
|
|
80
81
|
Complete: 'complete',
|
|
81
82
|
Failed: 'failed'
|
|
82
83
|
} as const;
|
|
@@ -225,7 +226,25 @@ export const TrayStatusEnum = {
|
|
|
225
226
|
export type TrayStatusEnum = typeof TrayStatusEnum[keyof typeof TrayStatusEnum];
|
|
226
227
|
|
|
227
228
|
export interface TrayContents {
|
|
228
|
-
'catalogApplication'?:
|
|
229
|
+
'catalogApplication'?: TrayContentsCatalogApplication;
|
|
230
|
+
}
|
|
231
|
+
export interface TrayContentsCatalogApplication {
|
|
232
|
+
/**
|
|
233
|
+
* Unique object identifier
|
|
234
|
+
*/
|
|
235
|
+
'id'?: string;
|
|
236
|
+
/**
|
|
237
|
+
* A reference to the resource location
|
|
238
|
+
*/
|
|
239
|
+
'ref'?: string;
|
|
240
|
+
/**
|
|
241
|
+
* Design file URL
|
|
242
|
+
*/
|
|
243
|
+
'design'?: string | null;
|
|
244
|
+
/**
|
|
245
|
+
* Display name of the catalog application when the tray contains a single application type
|
|
246
|
+
*/
|
|
247
|
+
'name'?: string | null;
|
|
229
248
|
}
|
|
230
249
|
export interface UpdatePrefabApplicationRequest {
|
|
231
250
|
/**
|
package/base.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
|
-
* Warehouse Prefab Applications
|
|
4
|
+
* Warehouse Prefab Applications
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
|
-
* Warehouse Prefab Applications
|
|
4
|
+
* Warehouse Prefab Applications
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/**
|
|
3
|
-
* Warehouse Prefab Applications
|
|
3
|
+
* Warehouse Prefab Applications
|
|
4
4
|
* Manage PodOS Warehouse Prefab Applications
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 0.
|
|
6
|
+
* The version of the OpenAPI document: 0.14.1
|
|
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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Warehouse Prefab Applications
|
|
2
|
+
* Warehouse Prefab Applications
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -31,7 +31,7 @@ export interface Batch {
|
|
|
31
31
|
*/
|
|
32
32
|
'number': string;
|
|
33
33
|
/**
|
|
34
|
-
* The status of the batch
|
|
34
|
+
* The status of the batch. Values: - processing: Print files are being generated for the batch. - ready: All print files are ready; the batch can be sent to the printer. - printed: The batch has been sent to the printer; sheets are being cut and organised into trays. - complete: All applications in the batch are processed (warehouse application finished, or order complete/refunded). - failed: The batch or print job failed.
|
|
35
35
|
*/
|
|
36
36
|
'status': BatchStatusEnum;
|
|
37
37
|
/**
|
|
@@ -66,6 +66,7 @@ export interface Batch {
|
|
|
66
66
|
export declare const BatchStatusEnum: {
|
|
67
67
|
readonly Processing: "processing";
|
|
68
68
|
readonly Ready: "ready";
|
|
69
|
+
readonly Printed: "printed";
|
|
69
70
|
readonly Complete: "complete";
|
|
70
71
|
readonly Failed: "failed";
|
|
71
72
|
};
|
|
@@ -206,7 +207,25 @@ export declare const TrayStatusEnum: {
|
|
|
206
207
|
};
|
|
207
208
|
export type TrayStatusEnum = typeof TrayStatusEnum[keyof typeof TrayStatusEnum];
|
|
208
209
|
export interface TrayContents {
|
|
209
|
-
'catalogApplication'?:
|
|
210
|
+
'catalogApplication'?: TrayContentsCatalogApplication;
|
|
211
|
+
}
|
|
212
|
+
export interface TrayContentsCatalogApplication {
|
|
213
|
+
/**
|
|
214
|
+
* Unique object identifier
|
|
215
|
+
*/
|
|
216
|
+
'id'?: string;
|
|
217
|
+
/**
|
|
218
|
+
* A reference to the resource location
|
|
219
|
+
*/
|
|
220
|
+
'ref'?: string;
|
|
221
|
+
/**
|
|
222
|
+
* Design file URL
|
|
223
|
+
*/
|
|
224
|
+
'design'?: string | null;
|
|
225
|
+
/**
|
|
226
|
+
* Display name of the catalog application when the tray contains a single application type
|
|
227
|
+
*/
|
|
228
|
+
'name'?: string | null;
|
|
210
229
|
}
|
|
211
230
|
export interface UpdatePrefabApplicationRequest {
|
|
212
231
|
/**
|
package/dist/api.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
|
-
* Warehouse Prefab Applications
|
|
5
|
+
* Warehouse Prefab Applications
|
|
6
6
|
* Manage PodOS Warehouse Prefab Applications
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.14.1
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -32,6 +32,7 @@ const base_1 = require("./base");
|
|
|
32
32
|
exports.BatchStatusEnum = {
|
|
33
33
|
Processing: 'processing',
|
|
34
34
|
Ready: 'ready',
|
|
35
|
+
Printed: 'printed',
|
|
35
36
|
Complete: 'complete',
|
|
36
37
|
Failed: 'failed'
|
|
37
38
|
};
|
package/dist/base.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Warehouse Prefab Applications
|
|
2
|
+
* Warehouse Prefab Applications
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
|
-
* Warehouse Prefab Applications
|
|
5
|
+
* Warehouse Prefab Applications
|
|
6
6
|
* Manage PodOS Warehouse Prefab Applications
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.14.1
|
|
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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Warehouse Prefab Applications
|
|
2
|
+
* Warehouse Prefab Applications
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
|
-
* Warehouse Prefab Applications
|
|
5
|
+
* Warehouse Prefab Applications
|
|
6
6
|
* Manage PodOS Warehouse Prefab Applications
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.14.1
|
|
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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Warehouse Prefab Applications
|
|
2
|
+
* Warehouse Prefab Applications
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/**
|
|
4
|
-
* Warehouse Prefab Applications
|
|
4
|
+
* Warehouse Prefab Applications
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.1
|
|
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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Warehouse Prefab Applications
|
|
2
|
+
* Warehouse Prefab Applications
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -31,7 +31,7 @@ export interface Batch {
|
|
|
31
31
|
*/
|
|
32
32
|
'number': string;
|
|
33
33
|
/**
|
|
34
|
-
* The status of the batch
|
|
34
|
+
* The status of the batch. Values: - processing: Print files are being generated for the batch. - ready: All print files are ready; the batch can be sent to the printer. - printed: The batch has been sent to the printer; sheets are being cut and organised into trays. - complete: All applications in the batch are processed (warehouse application finished, or order complete/refunded). - failed: The batch or print job failed.
|
|
35
35
|
*/
|
|
36
36
|
'status': BatchStatusEnum;
|
|
37
37
|
/**
|
|
@@ -66,6 +66,7 @@ export interface Batch {
|
|
|
66
66
|
export declare const BatchStatusEnum: {
|
|
67
67
|
readonly Processing: "processing";
|
|
68
68
|
readonly Ready: "ready";
|
|
69
|
+
readonly Printed: "printed";
|
|
69
70
|
readonly Complete: "complete";
|
|
70
71
|
readonly Failed: "failed";
|
|
71
72
|
};
|
|
@@ -206,7 +207,25 @@ export declare const TrayStatusEnum: {
|
|
|
206
207
|
};
|
|
207
208
|
export type TrayStatusEnum = typeof TrayStatusEnum[keyof typeof TrayStatusEnum];
|
|
208
209
|
export interface TrayContents {
|
|
209
|
-
'catalogApplication'?:
|
|
210
|
+
'catalogApplication'?: TrayContentsCatalogApplication;
|
|
211
|
+
}
|
|
212
|
+
export interface TrayContentsCatalogApplication {
|
|
213
|
+
/**
|
|
214
|
+
* Unique object identifier
|
|
215
|
+
*/
|
|
216
|
+
'id'?: string;
|
|
217
|
+
/**
|
|
218
|
+
* A reference to the resource location
|
|
219
|
+
*/
|
|
220
|
+
'ref'?: string;
|
|
221
|
+
/**
|
|
222
|
+
* Design file URL
|
|
223
|
+
*/
|
|
224
|
+
'design'?: string | null;
|
|
225
|
+
/**
|
|
226
|
+
* Display name of the catalog application when the tray contains a single application type
|
|
227
|
+
*/
|
|
228
|
+
'name'?: string | null;
|
|
210
229
|
}
|
|
211
230
|
export interface UpdatePrefabApplicationRequest {
|
|
212
231
|
/**
|
package/dist/esm/api.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
|
-
* Warehouse Prefab Applications
|
|
4
|
+
* Warehouse Prefab Applications
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -29,6 +29,7 @@ import { BASE_PATH, BaseAPI, operationServerMap } from './base';
|
|
|
29
29
|
export const BatchStatusEnum = {
|
|
30
30
|
Processing: 'processing',
|
|
31
31
|
Ready: 'ready',
|
|
32
|
+
Printed: 'printed',
|
|
32
33
|
Complete: 'complete',
|
|
33
34
|
Failed: 'failed'
|
|
34
35
|
};
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Warehouse Prefab Applications
|
|
2
|
+
* Warehouse Prefab Applications
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.1
|
|
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
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
|
-
* Warehouse Prefab Applications
|
|
4
|
+
* Warehouse Prefab Applications
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.1
|
|
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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Warehouse Prefab Applications
|
|
2
|
+
* Warehouse Prefab Applications
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.1
|
|
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
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
|
-
* Warehouse Prefab Applications
|
|
4
|
+
* Warehouse Prefab Applications
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Warehouse Prefab Applications
|
|
2
|
+
* Warehouse Prefab Applications
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/**
|
|
3
|
-
* Warehouse Prefab Applications
|
|
3
|
+
* Warehouse Prefab Applications
|
|
4
4
|
* Manage PodOS Warehouse Prefab Applications
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 0.
|
|
6
|
+
* The version of the OpenAPI document: 0.14.1
|
|
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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Warehouse Prefab Applications
|
|
2
|
+
* Warehouse Prefab Applications
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.1
|
|
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
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
|
-
* Warehouse Prefab Applications
|
|
4
|
+
* Warehouse Prefab Applications
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.1
|
|
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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Warehouse Prefab Applications
|
|
2
|
+
* Warehouse Prefab Applications
|
|
3
3
|
* Manage PodOS Warehouse Prefab Applications
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.14.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
|
-
* Warehouse Prefab Applications
|
|
5
|
+
* Warehouse Prefab Applications
|
|
6
6
|
* Manage PodOS Warehouse Prefab Applications
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.14.1
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/docs/Batch.md
CHANGED
|
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**id** | **string** | Unique object identifier | [default to undefined]
|
|
9
9
|
**ref** | **string** | A reference to the resource location | [readonly] [default to undefined]
|
|
10
10
|
**number** | **string** | A unique, user-friendly identifier for the batch. | [readonly] [default to undefined]
|
|
11
|
-
**status** | **string** | The status of the batch | [readonly] [default to undefined]
|
|
11
|
+
**status** | **string** | The status of the batch. Values: - processing: Print files are being generated for the batch. - ready: All print files are ready; the batch can be sent to the printer. - printed: The batch has been sent to the printer; sheets are being cut and organised into trays. - complete: All applications in the batch are processed (warehouse application finished, or order complete/refunded). - failed: The batch or print job failed. | [readonly] [default to undefined]
|
|
12
12
|
**size** | **number** | Number of applications in the batch | [readonly] [default to undefined]
|
|
13
13
|
**processed** | **number** | Number of applications processed | [readonly] [default to undefined]
|
|
14
14
|
**inTray** | **number** | Number of applications in a tray | [optional] [readonly] [default to undefined]
|
package/docs/TrayContents.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**catalogApplication** | [**
|
|
8
|
+
**catalogApplication** | [**TrayContentsCatalogApplication**](TrayContentsCatalogApplication.md) | | [optional] [default to undefined]
|
|
9
9
|
|
|
10
10
|
## Example
|
|
11
11
|
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# TrayContentsCatalogApplication
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | Unique object identifier | [optional] [default to undefined]
|
|
9
|
+
**ref** | **string** | A reference to the resource location | [optional] [readonly] [default to undefined]
|
|
10
|
+
**design** | **string** | Design file URL | [optional] [readonly] [default to undefined]
|
|
11
|
+
**name** | **string** | Display name of the catalog application when the tray contains a single application type | [optional] [readonly] [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { TrayContentsCatalogApplication } from '@teemill/warehouse-prefab-applications';
|
|
17
|
+
|
|
18
|
+
const instance: TrayContentsCatalogApplication = {
|
|
19
|
+
id,
|
|
20
|
+
ref,
|
|
21
|
+
design,
|
|
22
|
+
name,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/index.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
|
-
* Warehouse Prefab Applications
|
|
4
|
+
* Warehouse Prefab Applications
|
|
5
5
|
* Manage PodOS Warehouse Prefab Applications
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.14.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/package.json
CHANGED