@gizone/rrs-client 4.1.3-alpha.188 → 4.1.3-alpha.190

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 (44) hide show
  1. package/.openapi-generator/FILES +4 -0
  2. package/apis/common-api.ts +210 -0
  3. package/dist/apis/common-api.d.ts +111 -0
  4. package/dist/apis/common-api.js +150 -0
  5. package/dist/esm/apis/common-api.d.ts +111 -0
  6. package/dist/esm/apis/common-api.js +150 -0
  7. package/dist/esm/models/center-list-dto.d.ts +37 -0
  8. package/dist/esm/models/center-list-dto.js +14 -0
  9. package/dist/esm/models/dept-relation-dto.d.ts +18 -0
  10. package/dist/esm/models/dept-relation.d.ts +18 -0
  11. package/dist/esm/models/get-user-wx200-response.d.ts +16 -16
  12. package/dist/esm/models/index.d.ts +4 -0
  13. package/dist/esm/models/index.js +4 -0
  14. package/dist/esm/models/ipage-access-vo.d.ts +6 -6
  15. package/dist/esm/models/json-result-list-center-list-dto.d.ts +62 -0
  16. package/dist/esm/models/json-result-list-center-list-dto.js +14 -0
  17. package/dist/esm/models/json-result-list-park-list-dto.d.ts +62 -0
  18. package/dist/esm/models/json-result-list-park-list-dto.js +14 -0
  19. package/dist/esm/models/park-list-dto.d.ts +54 -0
  20. package/dist/esm/models/park-list-dto.js +14 -0
  21. package/dist/models/center-list-dto.d.ts +37 -0
  22. package/dist/models/center-list-dto.js +15 -0
  23. package/dist/models/dept-relation-dto.d.ts +18 -0
  24. package/dist/models/dept-relation.d.ts +18 -0
  25. package/dist/models/get-user-wx200-response.d.ts +16 -16
  26. package/dist/models/index.d.ts +4 -0
  27. package/dist/models/index.js +4 -0
  28. package/dist/models/ipage-access-vo.d.ts +6 -6
  29. package/dist/models/json-result-list-center-list-dto.d.ts +62 -0
  30. package/dist/models/json-result-list-center-list-dto.js +15 -0
  31. package/dist/models/json-result-list-park-list-dto.d.ts +62 -0
  32. package/dist/models/json-result-list-park-list-dto.js +15 -0
  33. package/dist/models/park-list-dto.d.ts +54 -0
  34. package/dist/models/park-list-dto.js +15 -0
  35. package/models/center-list-dto.ts +47 -0
  36. package/models/dept-relation-dto.ts +18 -0
  37. package/models/dept-relation.ts +18 -0
  38. package/models/get-user-wx200-response.ts +16 -16
  39. package/models/index.ts +4 -0
  40. package/models/ipage-access-vo.ts +6 -6
  41. package/models/json-result-list-center-list-dto.ts +72 -0
  42. package/models/json-result-list-park-list-dto.ts +72 -0
  43. package/models/park-list-dto.ts +60 -0
  44. package/package.json +1 -1
@@ -0,0 +1,47 @@
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
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { ParkPlatFormEnum } from './park-plat-form-enum';
19
+
20
+ /**
21
+ * 中心详情
22
+ * @export
23
+ * @interface CenterListDTO
24
+ */
25
+ export interface CenterListDTO {
26
+ /**
27
+ *
28
+ * @type {ParkPlatFormEnum}
29
+ * @memberof CenterListDTO
30
+ */
31
+ 'platForm'?: ParkPlatFormEnum;
32
+ /**
33
+ * 所属中心
34
+ * @type {string}
35
+ * @memberof CenterListDTO
36
+ */
37
+ 'center'?: string;
38
+ /**
39
+ * 中心名称
40
+ * @type {string}
41
+ * @memberof CenterListDTO
42
+ */
43
+ 'centerCode'?: string;
44
+ }
45
+
46
+
47
+
@@ -146,6 +146,24 @@ export interface DeptRelationDTO {
146
146
  * @memberof DeptRelationDTO
147
147
  */
148
148
  'parkRentalArea'?: string;
149
+ /**
150
+ * 中心编码
151
+ * @type {string}
152
+ * @memberof DeptRelationDTO
153
+ */
154
+ 'centerCode'?: string;
155
+ /**
156
+ * 所属园区
157
+ * @type {string}
158
+ * @memberof DeptRelationDTO
159
+ */
160
+ 'srmPark'?: string;
161
+ /**
162
+ * 园区编码
163
+ * @type {string}
164
+ * @memberof DeptRelationDTO
165
+ */
166
+ 'srmParkCode'?: string;
149
167
  }
150
168
 
151
169
 
@@ -92,6 +92,24 @@ export interface DeptRelation {
92
92
  * @memberof DeptRelation
93
93
  */
94
94
  'emptyWarehouseArea': number;
95
+ /**
96
+ * 中心编码
97
+ * @type {string}
98
+ * @memberof DeptRelation
99
+ */
100
+ 'centerCode': string;
101
+ /**
102
+ * 所属园区
103
+ * @type {string}
104
+ * @memberof DeptRelation
105
+ */
106
+ 'srmPark': string;
107
+ /**
108
+ * 园区编码
109
+ * @type {string}
110
+ * @memberof DeptRelation
111
+ */
112
+ 'srmParkCode': string;
95
113
  }
96
114
 
97
115
 
@@ -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 {Array<string>}
32
32
  * @memberof GetUserWx200Response
33
33
  */
34
- 'status'?: number;
34
+ 'headerNames'?: Array<string>;
35
35
  /**
36
36
  *
37
- * @type {Array<string>}
37
+ * @type {number}
38
38
  * @memberof GetUserWx200Response
39
39
  */
40
- 'headerNames'?: Array<string>;
40
+ 'status'?: number;
41
41
  /**
42
42
  *
43
43
  * @type {object}
44
44
  * @memberof GetUserWx200Response
45
45
  */
46
46
  'trailerFields'?: object;
47
+ /**
48
+ *
49
+ * @type {GetUserWx200ResponseLocale}
50
+ * @memberof GetUserWx200Response
51
+ */
52
+ 'locale'?: GetUserWx200ResponseLocale;
47
53
  /**
48
54
  *
49
55
  * @type {string}
@@ -62,24 +68,12 @@ 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}
74
74
  * @memberof GetUserWx200Response
75
75
  */
76
76
  'bufferSize'?: number;
77
- /**
78
- *
79
- * @type {object}
80
- * @memberof GetUserWx200Response
81
- */
82
- 'writer'?: object;
83
77
  /**
84
78
  *
85
79
  * @type {number}
@@ -98,5 +92,11 @@ export interface GetUserWx200Response {
98
92
  * @memberof GetUserWx200Response
99
93
  */
100
94
  'characterEncoding'?: string;
95
+ /**
96
+ *
97
+ * @type {object}
98
+ * @memberof GetUserWx200Response
99
+ */
100
+ 'writer'?: object;
101
101
  }
102
102
 
package/models/index.ts CHANGED
@@ -71,6 +71,7 @@ export * from './call-police-history-dto';
71
71
  export * from './call-police-history-handle';
72
72
  export * from './call-police-type-dto';
73
73
  export * from './call-police-type-enum';
74
+ export * from './center-list-dto';
74
75
  export * from './change-password-dto';
75
76
  export * from './choice-energy-meter-bo';
76
77
  export * from './choice-water-meter-vo';
@@ -394,6 +395,7 @@ export * from './json-result-list-appointment-registration-unloading-area-list-d
394
395
  export * from './json-result-list-area-park-dto';
395
396
  export * from './json-result-list-calendar-entity';
396
397
  export * from './json-result-list-call-police-type-dto';
398
+ export * from './json-result-list-center-list-dto';
397
399
  export * from './json-result-list-cold-store-dashboard-access-series-dto';
398
400
  export * from './json-result-list-cold-store-dashboard-alarm-list-dto';
399
401
  export * from './json-result-list-cold-store-dashboard-device-dto';
@@ -439,6 +441,7 @@ export * from './json-result-list-owner-kanban-work-order-type-statistics-dto';
439
441
  export * from './json-result-list-owner-two-park-operation-work-order-histogram-statistics-dto';
440
442
  export * from './json-result-list-owner-two-park-operation-work-order-response-shi-statistics-dto';
441
443
  export * from './json-result-list-park-drop-down-box-dto';
444
+ export * from './json-result-list-park-list-dto';
442
445
  export * from './json-result-list-plan-calendar-list-vo';
443
446
  export * from './json-result-list-plan-calendar-vo';
444
447
  export * from './json-result-list-renovation-activity-list-vo';
@@ -677,6 +680,7 @@ export * from './park-center-attribute-enum';
677
680
  export * from './park-drop-down-box-dto';
678
681
  export * from './park-info-dto';
679
682
  export * from './park-info-edit-vo';
683
+ export * from './park-list-dto';
680
684
  export * from './park-plat-form-enum';
681
685
  export * from './park-push-settings-add-bo';
682
686
  export * from './park-settings-details-dto';
@@ -37,17 +37,16 @@ export interface IPageAccessVO {
37
37
  'current'?: number;
38
38
  /**
39
39
  *
40
- * @type {boolean}
40
+ * @type {Array<AccessVO>}
41
41
  * @memberof IPageAccessVO
42
- * @deprecated
43
42
  */
44
- 'hitCount'?: boolean;
43
+ 'records'?: Array<AccessVO>;
45
44
  /**
46
45
  *
47
- * @type {Array<AccessVO>}
46
+ * @type {boolean}
48
47
  * @memberof IPageAccessVO
49
48
  */
50
- 'records'?: Array<AccessVO>;
49
+ 'searchCount'?: boolean;
51
50
  /**
52
51
  *
53
52
  * @type {number}
@@ -58,8 +57,9 @@ export interface IPageAccessVO {
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}
@@ -0,0 +1,72 @@
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
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { BaseErrorResult } from './base-error-result';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import type { CenterListDTO } from './center-list-dto';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface JsonResultListCenterListDTO
27
+ */
28
+ export interface JsonResultListCenterListDTO {
29
+ /**
30
+ * 错误码,0:成功,其他:失败
31
+ * @type {number}
32
+ * @memberof JsonResultListCenterListDTO
33
+ */
34
+ 'code'?: number;
35
+ /**
36
+ * 错误消息
37
+ * @type {string}
38
+ * @memberof JsonResultListCenterListDTO
39
+ */
40
+ 'msg'?: string;
41
+ /**
42
+ * 错误堆栈
43
+ * @type {string}
44
+ * @memberof JsonResultListCenterListDTO
45
+ */
46
+ 'stacks'?: string;
47
+ /**
48
+ * 返回数据,可以是任意类型的值
49
+ * @type {Array<CenterListDTO>}
50
+ * @memberof JsonResultListCenterListDTO
51
+ */
52
+ 'data'?: Array<CenterListDTO> | null;
53
+ /**
54
+ *
55
+ * @type {BaseErrorResult}
56
+ * @memberof JsonResultListCenterListDTO
57
+ */
58
+ 'error'?: BaseErrorResult | null;
59
+ /**
60
+ * 日志追踪ID
61
+ * @type {string}
62
+ * @memberof JsonResultListCenterListDTO
63
+ */
64
+ 'traceId'?: string | null;
65
+ /**
66
+ * requestId
67
+ * @type {string}
68
+ * @memberof JsonResultListCenterListDTO
69
+ */
70
+ 'requestId'?: string | null;
71
+ }
72
+
@@ -0,0 +1,72 @@
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
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { BaseErrorResult } from './base-error-result';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import type { ParkListDTO } from './park-list-dto';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface JsonResultListParkListDTO
27
+ */
28
+ export interface JsonResultListParkListDTO {
29
+ /**
30
+ * 错误码,0:成功,其他:失败
31
+ * @type {number}
32
+ * @memberof JsonResultListParkListDTO
33
+ */
34
+ 'code'?: number;
35
+ /**
36
+ * 错误消息
37
+ * @type {string}
38
+ * @memberof JsonResultListParkListDTO
39
+ */
40
+ 'msg'?: string;
41
+ /**
42
+ * 错误堆栈
43
+ * @type {string}
44
+ * @memberof JsonResultListParkListDTO
45
+ */
46
+ 'stacks'?: string;
47
+ /**
48
+ * 返回数据,可以是任意类型的值
49
+ * @type {Array<ParkListDTO>}
50
+ * @memberof JsonResultListParkListDTO
51
+ */
52
+ 'data'?: Array<ParkListDTO> | null;
53
+ /**
54
+ *
55
+ * @type {BaseErrorResult}
56
+ * @memberof JsonResultListParkListDTO
57
+ */
58
+ 'error'?: BaseErrorResult | null;
59
+ /**
60
+ * 日志追踪ID
61
+ * @type {string}
62
+ * @memberof JsonResultListParkListDTO
63
+ */
64
+ 'traceId'?: string | null;
65
+ /**
66
+ * requestId
67
+ * @type {string}
68
+ * @memberof JsonResultListParkListDTO
69
+ */
70
+ 'requestId'?: string | null;
71
+ }
72
+
@@ -0,0 +1,60 @@
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 ParkListDTO
21
+ */
22
+ export interface ParkListDTO {
23
+ /**
24
+ * 园区ID
25
+ * @type {number}
26
+ * @memberof ParkListDTO
27
+ */
28
+ 'parkId'?: number;
29
+ /**
30
+ * 中心名称
31
+ * @type {string}
32
+ * @memberof ParkListDTO
33
+ */
34
+ 'center'?: string;
35
+ /**
36
+ * 中心编码
37
+ * @type {string}
38
+ * @memberof ParkListDTO
39
+ */
40
+ 'centerCode'?: string;
41
+ /**
42
+ * 园区名称
43
+ * @type {string}
44
+ * @memberof ParkListDTO
45
+ */
46
+ 'parkName'?: string;
47
+ /**
48
+ * srm园区名称
49
+ * @type {string}
50
+ * @memberof ParkListDTO
51
+ */
52
+ 'srmPark'?: string;
53
+ /**
54
+ * srm园区编码
55
+ * @type {string}
56
+ * @memberof ParkListDTO
57
+ */
58
+ 'srmParkCode'?: string;
59
+ }
60
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.1.3-alpha.188",
3
+ "version": "4.1.3-alpha.190",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {