@gizone/rrs-client 4.2.0-alpha.341 → 4.2.0-alpha.343

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.
@@ -17,5 +17,7 @@
17
17
  export declare const AccessReleaseMethodEnum: {
18
18
  readonly LicenseRecognition: "LICENSE_RECOGNITION";
19
19
  readonly Manual: "MANUAL";
20
+ readonly RemoteControl: "REMOTE_CONTROL";
21
+ readonly NotOpened: "NOT_OPENED";
20
22
  };
21
23
  export type AccessReleaseMethodEnum = typeof AccessReleaseMethodEnum[keyof typeof AccessReleaseMethodEnum];
@@ -18,5 +18,7 @@
18
18
  */
19
19
  export const AccessReleaseMethodEnum = {
20
20
  LicenseRecognition: 'LICENSE_RECOGNITION',
21
- Manual: 'MANUAL'
21
+ Manual: 'MANUAL',
22
+ RemoteControl: 'REMOTE_CONTROL',
23
+ NotOpened: 'NOT_OPENED'
22
24
  };
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { WorkOrderTypeEnum } from './work-order-type-enum';
12
13
  /**
13
14
  * 后续工单
14
15
  * @export
@@ -27,4 +28,10 @@ export interface FollowupWorkOrderDTO {
27
28
  * @memberof FollowupWorkOrderDTO
28
29
  */
29
30
  'workOrderNo'?: string;
31
+ /**
32
+ *
33
+ * @type {WorkOrderTypeEnum}
34
+ * @memberof FollowupWorkOrderDTO
35
+ */
36
+ 'workOrderType'?: WorkOrderTypeEnum;
30
37
  }
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { FollowupWorkOrderDTO } from './followup-work-order-dto';
12
13
  import type { WorkOrderDeptDTO } from './work-order-dept-dto';
13
14
  import type { WorkOrderExtData } from './work-order-ext-data';
14
15
  import type { WorkOrderHandlerDto } from './work-order-handler-dto';
@@ -101,4 +102,10 @@ export interface OfflineAlertWorkOrderDetailsDto {
101
102
  * @memberof OfflineAlertWorkOrderDetailsDto
102
103
  */
103
104
  'workOrderDeptIds'?: Array<number>;
105
+ /**
106
+ *
107
+ * @type {FollowupWorkOrderDTO}
108
+ * @memberof OfflineAlertWorkOrderDetailsDto
109
+ */
110
+ 'followupWorkOrder'?: FollowupWorkOrderDTO;
104
111
  }
@@ -17,5 +17,7 @@
17
17
  export declare const AccessReleaseMethodEnum: {
18
18
  readonly LicenseRecognition: "LICENSE_RECOGNITION";
19
19
  readonly Manual: "MANUAL";
20
+ readonly RemoteControl: "REMOTE_CONTROL";
21
+ readonly NotOpened: "NOT_OPENED";
20
22
  };
21
23
  export type AccessReleaseMethodEnum = typeof AccessReleaseMethodEnum[keyof typeof AccessReleaseMethodEnum];
@@ -21,5 +21,7 @@ exports.AccessReleaseMethodEnum = void 0;
21
21
  */
22
22
  exports.AccessReleaseMethodEnum = {
23
23
  LicenseRecognition: 'LICENSE_RECOGNITION',
24
- Manual: 'MANUAL'
24
+ Manual: 'MANUAL',
25
+ RemoteControl: 'REMOTE_CONTROL',
26
+ NotOpened: 'NOT_OPENED'
25
27
  };
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { WorkOrderTypeEnum } from './work-order-type-enum';
12
13
  /**
13
14
  * 后续工单
14
15
  * @export
@@ -27,4 +28,10 @@ export interface FollowupWorkOrderDTO {
27
28
  * @memberof FollowupWorkOrderDTO
28
29
  */
29
30
  'workOrderNo'?: string;
31
+ /**
32
+ *
33
+ * @type {WorkOrderTypeEnum}
34
+ * @memberof FollowupWorkOrderDTO
35
+ */
36
+ 'workOrderType'?: WorkOrderTypeEnum;
30
37
  }
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { FollowupWorkOrderDTO } from './followup-work-order-dto';
12
13
  import type { WorkOrderDeptDTO } from './work-order-dept-dto';
13
14
  import type { WorkOrderExtData } from './work-order-ext-data';
14
15
  import type { WorkOrderHandlerDto } from './work-order-handler-dto';
@@ -101,4 +102,10 @@ export interface OfflineAlertWorkOrderDetailsDto {
101
102
  * @memberof OfflineAlertWorkOrderDetailsDto
102
103
  */
103
104
  'workOrderDeptIds'?: Array<number>;
105
+ /**
106
+ *
107
+ * @type {FollowupWorkOrderDTO}
108
+ * @memberof OfflineAlertWorkOrderDetailsDto
109
+ */
110
+ 'followupWorkOrder'?: FollowupWorkOrderDTO;
104
111
  }
@@ -22,7 +22,9 @@
22
22
 
23
23
  export const AccessReleaseMethodEnum = {
24
24
  LicenseRecognition: 'LICENSE_RECOGNITION',
25
- Manual: 'MANUAL'
25
+ Manual: 'MANUAL',
26
+ RemoteControl: 'REMOTE_CONTROL',
27
+ NotOpened: 'NOT_OPENED'
26
28
  } as const;
27
29
 
28
30
  export type AccessReleaseMethodEnum = typeof AccessReleaseMethodEnum[keyof typeof AccessReleaseMethodEnum];
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { WorkOrderTypeEnum } from './work-order-type-enum';
16
19
 
17
20
  /**
18
21
  * 后续工单
@@ -32,5 +35,13 @@ export interface FollowupWorkOrderDTO {
32
35
  * @memberof FollowupWorkOrderDTO
33
36
  */
34
37
  'workOrderNo'?: string;
38
+ /**
39
+ *
40
+ * @type {WorkOrderTypeEnum}
41
+ * @memberof FollowupWorkOrderDTO
42
+ */
43
+ 'workOrderType'?: WorkOrderTypeEnum;
35
44
  }
36
45
 
46
+
47
+
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { FollowupWorkOrderDTO } from './followup-work-order-dto';
16
19
  // May contain unused imports in some cases
17
20
  // @ts-ignore
18
21
  import type { WorkOrderDeptDTO } from './work-order-dept-dto';
@@ -122,6 +125,12 @@ export interface OfflineAlertWorkOrderDetailsDto {
122
125
  * @memberof OfflineAlertWorkOrderDetailsDto
123
126
  */
124
127
  'workOrderDeptIds'?: Array<number>;
128
+ /**
129
+ *
130
+ * @type {FollowupWorkOrderDTO}
131
+ * @memberof OfflineAlertWorkOrderDetailsDto
132
+ */
133
+ 'followupWorkOrder'?: FollowupWorkOrderDTO;
125
134
  }
126
135
 
127
136
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.2.0-alpha.341",
3
+ "version": "4.2.0-alpha.343",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {