@gizone/rrs-client 3.11.13-alpha.67 → 3.11.14-alpha.69

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.
Files changed (41) hide show
  1. package/.openapi-generator/FILES +1 -0
  2. package/README.md +2 -2
  3. package/apis/inspection-standard-api.ts +77 -10
  4. package/configuration.ts +1 -1
  5. package/dist/apis/inspection-standard-api.d.ts +45 -4
  6. package/dist/apis/inspection-standard-api.js +35 -10
  7. package/dist/configuration.js +1 -1
  8. package/dist/esm/apis/inspection-standard-api.d.ts +45 -4
  9. package/dist/esm/apis/inspection-standard-api.js +35 -10
  10. package/dist/esm/configuration.js +1 -1
  11. package/dist/esm/models/get-user-wx200-response.d.ts +10 -10
  12. package/dist/esm/models/index.d.ts +1 -0
  13. package/dist/esm/models/index.js +1 -0
  14. package/dist/esm/models/inspection-category-enum.d.ts +3 -1
  15. package/dist/esm/models/inspection-category-enum.js +4 -2
  16. package/dist/esm/models/inspection-standard-add-or-update-vo.d.ts +14 -1
  17. package/dist/esm/models/inspection-standard-entity.d.ts +20 -0
  18. package/dist/esm/models/inspection-standard-import-dto.d.ts +26 -0
  19. package/dist/esm/models/inspection-standard-type-enum.d.ts +21 -0
  20. package/dist/esm/models/inspection-standard-type-enum.js +22 -0
  21. package/dist/esm/models/ipage-access-vo.d.ts +6 -6
  22. package/dist/models/get-user-wx200-response.d.ts +10 -10
  23. package/dist/models/index.d.ts +1 -0
  24. package/dist/models/index.js +1 -0
  25. package/dist/models/inspection-category-enum.d.ts +3 -1
  26. package/dist/models/inspection-category-enum.js +4 -2
  27. package/dist/models/inspection-standard-add-or-update-vo.d.ts +14 -1
  28. package/dist/models/inspection-standard-entity.d.ts +20 -0
  29. package/dist/models/inspection-standard-import-dto.d.ts +26 -0
  30. package/dist/models/inspection-standard-type-enum.d.ts +21 -0
  31. package/dist/models/inspection-standard-type-enum.js +25 -0
  32. package/dist/models/ipage-access-vo.d.ts +6 -6
  33. package/models/get-user-wx200-response.ts +10 -10
  34. package/models/index.ts +1 -0
  35. package/models/inspection-category-enum.ts +4 -2
  36. package/models/inspection-standard-add-or-update-vo.ts +16 -1
  37. package/models/inspection-standard-entity.ts +24 -0
  38. package/models/inspection-standard-import-dto.ts +32 -0
  39. package/models/inspection-standard-type-enum.ts +31 -0
  40. package/models/ipage-access-vo.ts +6 -6
  41. package/package.json +1 -1
@@ -0,0 +1,21 @@
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
+ * @enum {string}
16
+ */
17
+ export declare const InspectionStandardTypeEnum: {
18
+ readonly Equipment: "EQUIPMENT";
19
+ readonly Space: "SPACE";
20
+ };
21
+ export type InspectionStandardTypeEnum = typeof InspectionStandardTypeEnum[keyof typeof InspectionStandardTypeEnum];
@@ -0,0 +1,25 @@
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 });
16
+ exports.InspectionStandardTypeEnum = void 0;
17
+ /**
18
+ * 巡检标准类型
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.InspectionStandardTypeEnum = {
23
+ Equipment: 'EQUIPMENT',
24
+ Space: 'SPACE'
25
+ };
@@ -36,23 +36,23 @@ export interface IPageAccessVO {
36
36
  'records'?: Array<AccessVO>;
37
37
  /**
38
38
  *
39
- * @type {number}
39
+ * @type {boolean}
40
40
  * @memberof IPageAccessVO
41
41
  */
42
- 'pages'?: number;
42
+ 'searchCount'?: boolean;
43
43
  /**
44
44
  *
45
- * @type {boolean}
45
+ * @type {number}
46
46
  * @memberof IPageAccessVO
47
- * @deprecated
48
47
  */
49
- 'hitCount'?: boolean;
48
+ 'pages'?: number;
50
49
  /**
51
50
  *
52
51
  * @type {boolean}
53
52
  * @memberof IPageAccessVO
53
+ * @deprecated
54
54
  */
55
- 'searchCount'?: boolean;
55
+ 'hitCount'?: boolean;
56
56
  /**
57
57
  *
58
58
  * @type {number}
@@ -28,22 +28,28 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
28
28
  export interface GetUserWx200Response {
29
29
  /**
30
30
  *
31
- * @type {number}
31
+ * @type {object}
32
32
  * @memberof GetUserWx200Response
33
33
  */
34
- 'status'?: number;
34
+ 'trailerFields'?: object;
35
35
  /**
36
36
  *
37
- * @type {object}
37
+ * @type {number}
38
38
  * @memberof GetUserWx200Response
39
39
  */
40
- 'trailerFields'?: object;
40
+ 'status'?: number;
41
41
  /**
42
42
  *
43
43
  * @type {Array<string>}
44
44
  * @memberof GetUserWx200Response
45
45
  */
46
46
  'headerNames'?: Array<string>;
47
+ /**
48
+ *
49
+ * @type {GetUserWx200ResponseLocale}
50
+ * @memberof GetUserWx200Response
51
+ */
52
+ 'locale'?: GetUserWx200ResponseLocale;
47
53
  /**
48
54
  *
49
55
  * @type {string}
@@ -62,12 +68,6 @@ export interface GetUserWx200Response {
62
68
  * @memberof GetUserWx200Response
63
69
  */
64
70
  'outputStream'?: GetUserWx200ResponseOutputStream;
65
- /**
66
- *
67
- * @type {GetUserWx200ResponseLocale}
68
- * @memberof GetUserWx200Response
69
- */
70
- 'locale'?: GetUserWx200ResponseLocale;
71
71
  /**
72
72
  *
73
73
  * @type {number}
package/models/index.ts CHANGED
@@ -297,6 +297,7 @@ export * from './inspection-standard-add-or-update-vo';
297
297
  export * from './inspection-standard-dto';
298
298
  export * from './inspection-standard-entity';
299
299
  export * from './inspection-standard-import-dto';
300
+ export * from './inspection-standard-type-enum';
300
301
  export * from './internet-access-park-vehicle-vo';
301
302
  export * from './internet-meter-add-vo';
302
303
  export * from './internet-meter-details-add-vo';
@@ -27,10 +27,12 @@ export const InspectionCategoryEnum = {
27
27
  FireFightingFacilitiesAndEquipment: 'FIRE_FIGHTING_FACILITIES_AND_EQUIPMENT',
28
28
  MainBuildingStructure: 'MAIN_BUILDING_STRUCTURE',
29
29
  EquipmentRoomArea: 'EQUIPMENT_ROOM_AREA',
30
- CentralControlRoomDuty: 'CENTRAL_CONTROL_ROOM_DUTY',
31
30
  FireDrill: 'FIRE_DRILL',
32
31
  EmergencySupplies: 'EMERGENCY_SUPPLIES',
33
- FourPestsElimination: 'FOUR_PESTS_ELIMINATION'
32
+ SixSInspection: 'SIX_S_INSPECTION',
33
+ FourPestsElimination: 'FOUR_PESTS_ELIMINATION',
34
+ CentralControlRoomDuty: 'CENTRAL_CONTROL_ROOM_DUTY',
35
+ GreeningMaintenance: 'GREENING_MAINTENANCE'
34
36
  } as const;
35
37
 
36
38
  export type InspectionCategoryEnum = typeof InspectionCategoryEnum[keyof typeof InspectionCategoryEnum];
@@ -18,6 +18,9 @@
18
18
  import type { InspectionCategoryEnum } from './inspection-category-enum';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
+ import type { InspectionStandardTypeEnum } from './inspection-standard-type-enum';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
21
24
  import type { WorkOrderPlanHolidaysEnum } from './work-order-plan-holidays-enum';
22
25
  // May contain unused imports in some cases
23
26
  // @ts-ignore
@@ -34,7 +37,19 @@ export interface InspectionStandardAddOrUpdateVO {
34
37
  * @type {InspectionCategoryEnum}
35
38
  * @memberof InspectionStandardAddOrUpdateVO
36
39
  */
37
- 'category': InspectionCategoryEnum;
40
+ 'category'?: InspectionCategoryEnum;
41
+ /**
42
+ *
43
+ * @type {InspectionStandardTypeEnum}
44
+ * @memberof InspectionStandardAddOrUpdateVO
45
+ */
46
+ 'type': InspectionStandardTypeEnum;
47
+ /**
48
+ * 设备系统
49
+ * @type {number}
50
+ * @memberof InspectionStandardAddOrUpdateVO
51
+ */
52
+ 'equipmentSystemId'?: number;
38
53
  /**
39
54
  * 内容
40
55
  * @type {string}
@@ -13,11 +13,17 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { EquipmentSystemEntity } from './equipment-system-entity';
16
19
  // May contain unused imports in some cases
17
20
  // @ts-ignore
18
21
  import type { InspectionCategoryEnum } from './inspection-category-enum';
19
22
  // May contain unused imports in some cases
20
23
  // @ts-ignore
24
+ import type { InspectionStandardTypeEnum } from './inspection-standard-type-enum';
25
+ // May contain unused imports in some cases
26
+ // @ts-ignore
21
27
  import type { WorkOrderPlanHolidaysEnum } from './work-order-plan-holidays-enum';
22
28
  // May contain unused imports in some cases
23
29
  // @ts-ignore
@@ -35,12 +41,24 @@ export interface InspectionStandardEntity {
35
41
  * @memberof InspectionStandardEntity
36
42
  */
37
43
  'id'?: number;
44
+ /**
45
+ *
46
+ * @type {InspectionStandardTypeEnum}
47
+ * @memberof InspectionStandardEntity
48
+ */
49
+ 'type'?: InspectionStandardTypeEnum;
38
50
  /**
39
51
  *
40
52
  * @type {InspectionCategoryEnum}
41
53
  * @memberof InspectionStandardEntity
42
54
  */
43
55
  'category'?: InspectionCategoryEnum;
56
+ /**
57
+ * 设备系统ID
58
+ * @type {number}
59
+ * @memberof InspectionStandardEntity
60
+ */
61
+ 'equipmentSystemId'?: number;
44
62
  /**
45
63
  * 内容
46
64
  * @type {string}
@@ -137,6 +155,12 @@ export interface InspectionStandardEntity {
137
155
  * @memberof InspectionStandardEntity
138
156
  */
139
157
  'executionTime'?: number;
158
+ /**
159
+ *
160
+ * @type {EquipmentSystemEntity}
161
+ * @memberof InspectionStandardEntity
162
+ */
163
+ 'equipmentSystem'?: EquipmentSystemEntity;
140
164
  }
141
165
 
142
166
 
@@ -13,6 +13,12 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { InspectionCategoryEnum } from './inspection-category-enum';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import type { InspectionStandardTypeEnum } from './inspection-standard-type-enum';
16
22
 
17
23
  /**
18
24
  * 巡检标准导入
@@ -20,12 +26,24 @@
20
26
  * @interface InspectionStandardImportDTO
21
27
  */
22
28
  export interface InspectionStandardImportDTO {
29
+ /**
30
+ * 巡检标准类型
31
+ * @type {string}
32
+ * @memberof InspectionStandardImportDTO
33
+ */
34
+ 'type'?: string;
23
35
  /**
24
36
  * 巡检分类
25
37
  * @type {string}
26
38
  * @memberof InspectionStandardImportDTO
27
39
  */
28
40
  'category'?: string;
41
+ /**
42
+ * 设备系统
43
+ * @type {string}
44
+ * @memberof InspectionStandardImportDTO
45
+ */
46
+ 'equipmentSystemName'?: string;
29
47
  /**
30
48
  * 内容项
31
49
  * @type {string}
@@ -116,5 +134,19 @@ export interface InspectionStandardImportDTO {
116
134
  * @memberof InspectionStandardImportDTO
117
135
  */
118
136
  'equipmentSystemId'?: number;
137
+ /**
138
+ *
139
+ * @type {InspectionStandardTypeEnum}
140
+ * @memberof InspectionStandardImportDTO
141
+ */
142
+ 'typeEnum'?: InspectionStandardTypeEnum;
143
+ /**
144
+ *
145
+ * @type {InspectionCategoryEnum}
146
+ * @memberof InspectionStandardImportDTO
147
+ */
148
+ 'categoryEnum'?: InspectionCategoryEnum;
119
149
  }
120
150
 
151
+
152
+
@@ -0,0 +1,31 @@
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
+ * @enum {string}
21
+ */
22
+
23
+ export const InspectionStandardTypeEnum = {
24
+ Equipment: 'EQUIPMENT',
25
+ Space: 'SPACE'
26
+ } as const;
27
+
28
+ export type InspectionStandardTypeEnum = typeof InspectionStandardTypeEnum[keyof typeof InspectionStandardTypeEnum];
29
+
30
+
31
+
@@ -43,23 +43,23 @@ export interface IPageAccessVO {
43
43
  'records'?: Array<AccessVO>;
44
44
  /**
45
45
  *
46
- * @type {number}
46
+ * @type {boolean}
47
47
  * @memberof IPageAccessVO
48
48
  */
49
- 'pages'?: number;
49
+ 'searchCount'?: boolean;
50
50
  /**
51
51
  *
52
- * @type {boolean}
52
+ * @type {number}
53
53
  * @memberof IPageAccessVO
54
- * @deprecated
55
54
  */
56
- 'hitCount'?: boolean;
55
+ 'pages'?: number;
57
56
  /**
58
57
  *
59
58
  * @type {boolean}
60
59
  * @memberof IPageAccessVO
60
+ * @deprecated
61
61
  */
62
- 'searchCount'?: boolean;
62
+ 'hitCount'?: boolean;
63
63
  /**
64
64
  *
65
65
  * @type {number}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "3.11.13-alpha.67",
3
+ "version": "3.11.14-alpha.69",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {