@indigina/wms-api 0.0.65 → 0.0.67

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
@@ -58,6 +58,7 @@ export * from './taskOperation';
58
58
  export * from './taskOperations';
59
59
  export * from './taskUserRecord';
60
60
  export * from './taskUserRecordSelf';
61
+ export * from './taskUserRecordView';
61
62
  export * from './taskUserRecords';
62
63
  export * from './userApplication';
63
64
  export * from './userApplications';
@@ -11,4 +11,8 @@ export interface TaskOperation {
11
11
  id?: number;
12
12
  title: string;
13
13
  notes: string;
14
+ /**
15
+ * Indicates if the task operation has any user records associated with it.
16
+ */
17
+ hasRecords?: boolean;
14
18
  }
@@ -0,0 +1,28 @@
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 TaskUserRecordView {
12
+ userId?: string | null;
13
+ userName?: string;
14
+ taskOperationId: number;
15
+ taskOperationName: string;
16
+ clientId: string;
17
+ clientName: string;
18
+ startedUserId?: string | null;
19
+ startedUserName?: string;
20
+ startedDate: string;
21
+ startedDeviceType: DeviceType;
22
+ finishedUserId?: string | null;
23
+ finishedUserName?: string;
24
+ finishedDate?: string | null;
25
+ finishedDeviceType?: DeviceType;
26
+ }
27
+ export declare namespace TaskUserRecordView {
28
+ }
@@ -7,8 +7,8 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
- import { TaskUserRecord } from './taskUserRecord';
10
+ import { TaskUserRecordView } from './taskUserRecordView';
11
11
  export interface TaskUserRecords {
12
12
  total: number;
13
- data: Array<TaskUserRecord>;
13
+ data: Array<TaskUserRecordView>;
14
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.65",
3
+ "version": "0.0.67",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {