@gizone/rrs-client 3.11.13-alpha.66 → 3.11.14-alpha.68

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 (38) 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/models/get-user-wx200-response.d.ts +10 -10
  22. package/dist/models/index.d.ts +1 -0
  23. package/dist/models/index.js +1 -0
  24. package/dist/models/inspection-category-enum.d.ts +3 -1
  25. package/dist/models/inspection-category-enum.js +4 -2
  26. package/dist/models/inspection-standard-add-or-update-vo.d.ts +14 -1
  27. package/dist/models/inspection-standard-entity.d.ts +20 -0
  28. package/dist/models/inspection-standard-import-dto.d.ts +26 -0
  29. package/dist/models/inspection-standard-type-enum.d.ts +21 -0
  30. package/dist/models/inspection-standard-type-enum.js +25 -0
  31. package/models/get-user-wx200-response.ts +10 -10
  32. package/models/index.ts +1 -0
  33. package/models/inspection-category-enum.ts +4 -2
  34. package/models/inspection-standard-add-or-update-vo.ts +16 -1
  35. package/models/inspection-standard-entity.ts +24 -0
  36. package/models/inspection-standard-import-dto.ts +32 -0
  37. package/models/inspection-standard-type-enum.ts +31 -0
  38. package/package.json +1 -1
@@ -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
+ };
@@ -46,34 +46,34 @@ export interface GetUserWx200Response {
46
46
  'headerNames'?: Array<string>;
47
47
  /**
48
48
  *
49
- * @type {number}
49
+ * @type {string}
50
50
  * @memberof GetUserWx200Response
51
51
  */
52
- 'bufferSize'?: number;
52
+ 'contentType'?: string;
53
53
  /**
54
54
  *
55
- * @type {GetUserWx200ResponseLocale}
55
+ * @type {number}
56
56
  * @memberof GetUserWx200Response
57
57
  */
58
- 'locale'?: GetUserWx200ResponseLocale;
58
+ 'contentLength'?: number;
59
59
  /**
60
60
  *
61
- * @type {string}
61
+ * @type {GetUserWx200ResponseOutputStream}
62
62
  * @memberof GetUserWx200Response
63
63
  */
64
- 'contentType'?: string;
64
+ 'outputStream'?: GetUserWx200ResponseOutputStream;
65
65
  /**
66
66
  *
67
- * @type {number}
67
+ * @type {GetUserWx200ResponseLocale}
68
68
  * @memberof GetUserWx200Response
69
69
  */
70
- 'contentLength'?: number;
70
+ 'locale'?: GetUserWx200ResponseLocale;
71
71
  /**
72
72
  *
73
- * @type {GetUserWx200ResponseOutputStream}
73
+ * @type {number}
74
74
  * @memberof GetUserWx200Response
75
75
  */
76
- 'outputStream'?: GetUserWx200ResponseOutputStream;
76
+ 'bufferSize'?: number;
77
77
  /**
78
78
  *
79
79
  * @type {string}
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
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "3.11.13-alpha.66",
3
+ "version": "3.11.14-alpha.68",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {