@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.
- package/dist/esm/models/access-release-method-enum.d.ts +2 -0
- package/dist/esm/models/access-release-method-enum.js +3 -1
- package/dist/esm/models/followup-work-order-dto.d.ts +7 -0
- package/dist/esm/models/offline-alert-work-order-details-dto.d.ts +7 -0
- package/dist/models/access-release-method-enum.d.ts +2 -0
- package/dist/models/access-release-method-enum.js +3 -1
- package/dist/models/followup-work-order-dto.d.ts +7 -0
- package/dist/models/offline-alert-work-order-details-dto.d.ts +7 -0
- package/models/access-release-method-enum.ts +3 -1
- package/models/followup-work-order-dto.ts +11 -0
- package/models/offline-alert-work-order-details-dto.ts +9 -0
- package/package.json +1 -1
|
@@ -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];
|
|
@@ -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];
|
|
@@ -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
|
|