@gizone/rrs-client 4.2.0-alpha.387 → 4.2.0-alpha.389
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/.openapi-generator/FILES +1 -0
- package/dist/esm/models/index.d.ts +1 -0
- package/dist/esm/models/index.js +1 -0
- package/dist/esm/models/plan-search-dto.d.ts +7 -0
- package/dist/esm/models/plan-search-dtoplan-item.d.ts +30 -0
- package/dist/esm/models/plan-search-dtoplan-item.js +14 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/plan-search-dto.d.ts +7 -0
- package/dist/models/plan-search-dtoplan-item.d.ts +30 -0
- package/dist/models/plan-search-dtoplan-item.js +15 -0
- package/models/index.ts +1 -0
- package/models/plan-search-dto.ts +9 -0
- package/models/plan-search-dtoplan-item.ts +36 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -364,6 +364,7 @@ models/plan-item-add-vo.ts
|
|
|
364
364
|
models/plan-item-edit-vo.ts
|
|
365
365
|
models/plan-level-enum.ts
|
|
366
366
|
models/plan-search-dto.ts
|
|
367
|
+
models/plan-search-dtoplan-item.ts
|
|
367
368
|
models/plan-to-state-vo.ts
|
|
368
369
|
models/privacy-add-vo.ts
|
|
369
370
|
models/privacy-update-state-dto.ts
|
|
@@ -320,6 +320,7 @@ export * from './plan-item-add-vo';
|
|
|
320
320
|
export * from './plan-item-edit-vo';
|
|
321
321
|
export * from './plan-level-enum';
|
|
322
322
|
export * from './plan-search-dto';
|
|
323
|
+
export * from './plan-search-dtoplan-item';
|
|
323
324
|
export * from './plan-to-state-vo';
|
|
324
325
|
export * from './privacy-add-vo';
|
|
325
326
|
export * from './privacy-update-state-dto';
|
package/dist/esm/models/index.js
CHANGED
|
@@ -320,6 +320,7 @@ export * from './plan-item-add-vo';
|
|
|
320
320
|
export * from './plan-item-edit-vo';
|
|
321
321
|
export * from './plan-level-enum';
|
|
322
322
|
export * from './plan-search-dto';
|
|
323
|
+
export * from './plan-search-dtoplan-item';
|
|
323
324
|
export * from './plan-to-state-vo';
|
|
324
325
|
export * from './privacy-add-vo';
|
|
325
326
|
export * from './privacy-update-state-dto';
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { PlanSearchDTOPlanItem } from './plan-search-dtoplan-item';
|
|
12
13
|
import type { WorkOrderDeptDTO } from './work-order-dept-dto';
|
|
13
14
|
import type { WorkOrderPlanRepeatsEnum } from './work-order-plan-repeats-enum';
|
|
14
15
|
import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
|
|
@@ -84,6 +85,12 @@ export interface PlanSearchDTO {
|
|
|
84
85
|
* @memberof PlanSearchDTO
|
|
85
86
|
*/
|
|
86
87
|
'itemIds'?: Array<number>;
|
|
88
|
+
/**
|
|
89
|
+
* 巡检点集合
|
|
90
|
+
* @type {Array<PlanSearchDTOPlanItem>}
|
|
91
|
+
* @memberof PlanSearchDTO
|
|
92
|
+
*/
|
|
93
|
+
'items'?: Array<PlanSearchDTOPlanItem>;
|
|
87
94
|
}
|
|
88
95
|
export declare const PlanSearchDTOPlanTypeEnum: {
|
|
89
96
|
readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OpenAPI definition
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* 巡检点集合
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PlanSearchDTOPlanItem
|
|
16
|
+
*/
|
|
17
|
+
export interface PlanSearchDTOPlanItem {
|
|
18
|
+
/**
|
|
19
|
+
* 巡检点ID
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof PlanSearchDTOPlanItem
|
|
22
|
+
*/
|
|
23
|
+
'itemId'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* 巡检点名称
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PlanSearchDTOPlanItem
|
|
28
|
+
*/
|
|
29
|
+
'itemName'?: string;
|
|
30
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OpenAPI definition
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
package/dist/models/index.d.ts
CHANGED
|
@@ -320,6 +320,7 @@ export * from './plan-item-add-vo';
|
|
|
320
320
|
export * from './plan-item-edit-vo';
|
|
321
321
|
export * from './plan-level-enum';
|
|
322
322
|
export * from './plan-search-dto';
|
|
323
|
+
export * from './plan-search-dtoplan-item';
|
|
323
324
|
export * from './plan-to-state-vo';
|
|
324
325
|
export * from './privacy-add-vo';
|
|
325
326
|
export * from './privacy-update-state-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -336,6 +336,7 @@ __exportStar(require("./plan-item-add-vo"), exports);
|
|
|
336
336
|
__exportStar(require("./plan-item-edit-vo"), exports);
|
|
337
337
|
__exportStar(require("./plan-level-enum"), exports);
|
|
338
338
|
__exportStar(require("./plan-search-dto"), exports);
|
|
339
|
+
__exportStar(require("./plan-search-dtoplan-item"), exports);
|
|
339
340
|
__exportStar(require("./plan-to-state-vo"), exports);
|
|
340
341
|
__exportStar(require("./privacy-add-vo"), exports);
|
|
341
342
|
__exportStar(require("./privacy-update-state-dto"), exports);
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { PlanSearchDTOPlanItem } from './plan-search-dtoplan-item';
|
|
12
13
|
import type { WorkOrderDeptDTO } from './work-order-dept-dto';
|
|
13
14
|
import type { WorkOrderPlanRepeatsEnum } from './work-order-plan-repeats-enum';
|
|
14
15
|
import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
|
|
@@ -84,6 +85,12 @@ export interface PlanSearchDTO {
|
|
|
84
85
|
* @memberof PlanSearchDTO
|
|
85
86
|
*/
|
|
86
87
|
'itemIds'?: Array<number>;
|
|
88
|
+
/**
|
|
89
|
+
* 巡检点集合
|
|
90
|
+
* @type {Array<PlanSearchDTOPlanItem>}
|
|
91
|
+
* @memberof PlanSearchDTO
|
|
92
|
+
*/
|
|
93
|
+
'items'?: Array<PlanSearchDTOPlanItem>;
|
|
87
94
|
}
|
|
88
95
|
export declare const PlanSearchDTOPlanTypeEnum: {
|
|
89
96
|
readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OpenAPI definition
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* 巡检点集合
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PlanSearchDTOPlanItem
|
|
16
|
+
*/
|
|
17
|
+
export interface PlanSearchDTOPlanItem {
|
|
18
|
+
/**
|
|
19
|
+
* 巡检点ID
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof PlanSearchDTOPlanItem
|
|
22
|
+
*/
|
|
23
|
+
'itemId'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* 巡检点名称
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PlanSearchDTOPlanItem
|
|
28
|
+
*/
|
|
29
|
+
'itemName'?: string;
|
|
30
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* OpenAPI definition
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
package/models/index.ts
CHANGED
|
@@ -320,6 +320,7 @@ export * from './plan-item-add-vo';
|
|
|
320
320
|
export * from './plan-item-edit-vo';
|
|
321
321
|
export * from './plan-level-enum';
|
|
322
322
|
export * from './plan-search-dto';
|
|
323
|
+
export * from './plan-search-dtoplan-item';
|
|
323
324
|
export * from './plan-to-state-vo';
|
|
324
325
|
export * from './privacy-add-vo';
|
|
325
326
|
export * from './privacy-update-state-dto';
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { PlanSearchDTOPlanItem } from './plan-search-dtoplan-item';
|
|
16
19
|
// May contain unused imports in some cases
|
|
17
20
|
// @ts-ignore
|
|
18
21
|
import type { WorkOrderDeptDTO } from './work-order-dept-dto';
|
|
@@ -95,6 +98,12 @@ export interface PlanSearchDTO {
|
|
|
95
98
|
* @memberof PlanSearchDTO
|
|
96
99
|
*/
|
|
97
100
|
'itemIds'?: Array<number>;
|
|
101
|
+
/**
|
|
102
|
+
* 巡检点集合
|
|
103
|
+
* @type {Array<PlanSearchDTOPlanItem>}
|
|
104
|
+
* @memberof PlanSearchDTO
|
|
105
|
+
*/
|
|
106
|
+
'items'?: Array<PlanSearchDTOPlanItem>;
|
|
98
107
|
}
|
|
99
108
|
|
|
100
109
|
export const PlanSearchDTOPlanTypeEnum = {
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OpenAPI definition
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 巡检点集合
|
|
19
|
+
* @export
|
|
20
|
+
* @interface PlanSearchDTOPlanItem
|
|
21
|
+
*/
|
|
22
|
+
export interface PlanSearchDTOPlanItem {
|
|
23
|
+
/**
|
|
24
|
+
* 巡检点ID
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof PlanSearchDTOPlanItem
|
|
27
|
+
*/
|
|
28
|
+
'itemId'?: number;
|
|
29
|
+
/**
|
|
30
|
+
* 巡检点名称
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PlanSearchDTOPlanItem
|
|
33
|
+
*/
|
|
34
|
+
'itemName'?: string;
|
|
35
|
+
}
|
|
36
|
+
|