@indigina/wms-api 0.0.50 → 0.0.51
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/api.d.ts +5 -1
- package/api/taskOperations.service.d.ts +128 -0
- package/api/taskUserRecords.service.d.ts +128 -0
- package/fesm2022/indigina-wms-api.mjs +739 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/model/deviceType.d.ts +15 -0
- package/model/models.d.ts +5 -0
- package/model/taskOperation.d.ts +15 -0
- package/model/taskOperations.d.ts +14 -0
- package/model/taskUserRecord.d.ts +23 -0
- package/model/taskUserRecords.d.ts +14 -0
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wms.API.Client
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
export type DeviceType = 'Unknown' | 'Desktop' | 'HHT';
|
|
11
|
+
export declare const DeviceType: {
|
|
12
|
+
Unknown: DeviceType;
|
|
13
|
+
Desktop: DeviceType;
|
|
14
|
+
Hht: DeviceType;
|
|
15
|
+
};
|
package/model/models.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export * from './deliveryItems';
|
|
|
15
15
|
export * from './deliverySummary';
|
|
16
16
|
export * from './deliveryType';
|
|
17
17
|
export * from './deliveryView';
|
|
18
|
+
export * from './deviceType';
|
|
18
19
|
export * from './dispatchSummary';
|
|
19
20
|
export * from './embedReport';
|
|
20
21
|
export * from './embedTokenDto';
|
|
@@ -43,6 +44,10 @@ export * from './report';
|
|
|
43
44
|
export * from './setNewFeaturesVisibilityCommand';
|
|
44
45
|
export * from './settingValue';
|
|
45
46
|
export * from './settingView';
|
|
47
|
+
export * from './taskOperation';
|
|
48
|
+
export * from './taskOperations';
|
|
49
|
+
export * from './taskUserRecord';
|
|
50
|
+
export * from './taskUserRecords';
|
|
46
51
|
export * from './userApplication';
|
|
47
52
|
export * from './userApplications';
|
|
48
53
|
export * from './userPermissions';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wms.API.Client
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
export interface TaskOperation {
|
|
11
|
+
id: number;
|
|
12
|
+
dcId: string;
|
|
13
|
+
title: string;
|
|
14
|
+
notes: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wms.API.Client
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { TaskOperation } from './taskOperation';
|
|
11
|
+
export interface TaskOperations {
|
|
12
|
+
total: number;
|
|
13
|
+
data: Array<TaskOperation>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wms.API.Client
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { DeviceType } from './deviceType';
|
|
11
|
+
export interface TaskUserRecord {
|
|
12
|
+
id: number;
|
|
13
|
+
taskOperationId: number;
|
|
14
|
+
userId: string;
|
|
15
|
+
clientId: string;
|
|
16
|
+
startedDate: string;
|
|
17
|
+
startedUserId: string;
|
|
18
|
+
finishedDate?: string | null;
|
|
19
|
+
finishedUserId?: string | null;
|
|
20
|
+
finishedDeviceType?: DeviceType;
|
|
21
|
+
}
|
|
22
|
+
export declare namespace TaskUserRecord {
|
|
23
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wms.API.Client
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { TaskUserRecord } from './taskUserRecord';
|
|
11
|
+
export interface TaskUserRecords {
|
|
12
|
+
total: number;
|
|
13
|
+
data: Array<TaskUserRecord>;
|
|
14
|
+
}
|