@indigina/wms-api 0.0.61 → 0.0.63

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/model/models.d.ts CHANGED
@@ -57,6 +57,7 @@ export * from './taskCompletionTimes';
57
57
  export * from './taskOperation';
58
58
  export * from './taskOperations';
59
59
  export * from './taskUserRecord';
60
+ export * from './taskUserRecordSelf';
60
61
  export * from './taskUserRecords';
61
62
  export * from './userApplication';
62
63
  export * from './userApplications';
@@ -9,15 +9,16 @@
9
9
  */
10
10
  import { DeviceType } from './deviceType';
11
11
  export interface TaskUserRecord {
12
- id?: number;
13
12
  taskOperationId: number;
14
- userId: string;
15
13
  clientId: string;
14
+ startedDeviceType: DeviceType;
15
+ id?: number;
16
+ userId?: string | null;
17
+ startedUserId?: string | null;
16
18
  startedDate: string;
17
- startedUserId: string;
18
- finishedDate?: string | null;
19
19
  finishedUserId?: string | null;
20
- finishedDeviceType?: DeviceType;
20
+ finishedDate?: string | null;
21
+ finishedDeviceType: DeviceType;
21
22
  }
22
23
  export declare namespace TaskUserRecord {
23
24
  }
@@ -0,0 +1,17 @@
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 TaskUserRecordSelf {
12
+ taskOperationId: number;
13
+ clientId: string;
14
+ startedDeviceType: DeviceType;
15
+ }
16
+ export declare namespace TaskUserRecordSelf {
17
+ }
@@ -11,8 +11,4 @@ export interface UserInfo {
11
11
  id?: string;
12
12
  userName: string;
13
13
  fullName: string;
14
- /**
15
- * The identifier of the associated person, if available.
16
- */
17
- personId?: string | null;
18
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.61",
3
+ "version": "0.0.63",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {