@gizone/rrs-client 4.1.2-alpha.173 → 4.1.2-alpha.175

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.
@@ -805,12 +805,12 @@ models/space-detail-dto.ts
805
805
  models/space-edit-vo.ts
806
806
  models/space-image-detail-dto.ts
807
807
  models/space-industry-attribute-enum.ts
808
+ models/space-level-enum.ts
808
809
  models/space-point-dto.ts
809
810
  models/space-point-vo.ts
810
811
  models/space-qr-code-dto.ts
811
812
  models/space-qr-code.ts
812
813
  models/space-tree-dto.ts
813
- models/space-type-enum.ts
814
814
  models/space-url-add-vo.ts
815
815
  models/space-url-dto.ts
816
816
  models/space-url-edit-vo.ts
@@ -19,16 +19,16 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
19
19
  export interface GetUserWx200Response {
20
20
  /**
21
21
  *
22
- * @type {number}
22
+ * @type {Array<string>}
23
23
  * @memberof GetUserWx200Response
24
24
  */
25
- 'status'?: number;
25
+ 'headerNames'?: Array<string>;
26
26
  /**
27
27
  *
28
- * @type {Array<string>}
28
+ * @type {number}
29
29
  * @memberof GetUserWx200Response
30
30
  */
31
- 'headerNames'?: Array<string>;
31
+ 'status'?: number;
32
32
  /**
33
33
  *
34
34
  * @type {object}
@@ -55,16 +55,16 @@ export interface GetUserWx200Response {
55
55
  'outputStream'?: GetUserWx200ResponseOutputStream;
56
56
  /**
57
57
  *
58
- * @type {number}
58
+ * @type {GetUserWx200ResponseLocale}
59
59
  * @memberof GetUserWx200Response
60
60
  */
61
- 'bufferSize'?: number;
61
+ 'locale'?: GetUserWx200ResponseLocale;
62
62
  /**
63
63
  *
64
- * @type {GetUserWx200ResponseLocale}
64
+ * @type {number}
65
65
  * @memberof GetUserWx200Response
66
66
  */
67
- 'locale'?: GetUserWx200ResponseLocale;
67
+ 'bufferSize'?: number;
68
68
  /**
69
69
  *
70
70
  * @type {string}
@@ -741,12 +741,12 @@ export * from './space-detail-dto';
741
741
  export * from './space-edit-vo';
742
742
  export * from './space-image-detail-dto';
743
743
  export * from './space-industry-attribute-enum';
744
+ export * from './space-level-enum';
744
745
  export * from './space-point-dto';
745
746
  export * from './space-point-vo';
746
747
  export * from './space-qr-code';
747
748
  export * from './space-qr-code-dto';
748
749
  export * from './space-tree-dto';
749
- export * from './space-type-enum';
750
750
  export * from './space-url-add-vo';
751
751
  export * from './space-url-dto';
752
752
  export * from './space-url-edit-vo';
@@ -741,12 +741,12 @@ export * from './space-detail-dto';
741
741
  export * from './space-edit-vo';
742
742
  export * from './space-image-detail-dto';
743
743
  export * from './space-industry-attribute-enum';
744
+ export * from './space-level-enum';
744
745
  export * from './space-point-dto';
745
746
  export * from './space-point-vo';
746
747
  export * from './space-qr-code';
747
748
  export * from './space-qr-code-dto';
748
749
  export * from './space-tree-dto';
749
- export * from './space-type-enum';
750
750
  export * from './space-url-add-vo';
751
751
  export * from './space-url-dto';
752
752
  export * from './space-url-edit-vo';
@@ -26,7 +26,7 @@ export interface SpaceAddExcelDTO {
26
26
  * @type {string}
27
27
  * @memberof SpaceAddExcelDTO
28
28
  */
29
- 'spaceType'?: string;
29
+ 'spaceLevel'?: string;
30
30
  /**
31
31
  * 空间编码
32
32
  * @type {string}
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { SpaceIndustryAttributeEnum } from './space-industry-attribute-enum';
13
- import type { SpaceTypeEnum } from './space-type-enum';
13
+ import type { SpaceLevelEnum } from './space-level-enum';
14
14
  /**
15
15
  * 新增空间参数
16
16
  * @export
@@ -115,10 +115,10 @@ export interface SpaceAddVO {
115
115
  'industryAttributes'?: Array<SpaceIndustryAttributeEnum>;
116
116
  /**
117
117
  *
118
- * @type {SpaceTypeEnum}
118
+ * @type {SpaceLevelEnum}
119
119
  * @memberof SpaceAddVO
120
120
  */
121
- 'spaceType': SpaceTypeEnum;
121
+ 'spaceLevel': SpaceLevelEnum;
122
122
  /**
123
123
  * 空间编码
124
124
  * @type {string}
@@ -11,8 +11,8 @@
11
11
  */
12
12
  import type { PlanImageList } from './plan-image-list';
13
13
  import type { SpaceIndustryAttributeEnum } from './space-industry-attribute-enum';
14
+ import type { SpaceLevelEnum } from './space-level-enum';
14
15
  import type { SpacePointDTO } from './space-point-dto';
15
- import type { SpaceTypeEnum } from './space-type-enum';
16
16
  /**
17
17
  * 空间详情出参
18
18
  * @export
@@ -177,10 +177,10 @@ export interface SpaceDetailDTO {
177
177
  'industryAttributes'?: Array<SpaceIndustryAttributeEnum>;
178
178
  /**
179
179
  *
180
- * @type {SpaceTypeEnum}
180
+ * @type {SpaceLevelEnum}
181
181
  * @memberof SpaceDetailDTO
182
182
  */
183
- 'spaceType'?: SpaceTypeEnum;
183
+ 'spaceLevel'?: SpaceLevelEnum;
184
184
  /**
185
185
  * 空间编码
186
186
  * @type {string}
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { SpaceIndustryAttributeEnum } from './space-industry-attribute-enum';
13
- import type { SpaceTypeEnum } from './space-type-enum';
13
+ import type { SpaceLevelEnum } from './space-level-enum';
14
14
  /**
15
15
  * 修改空间名称
16
16
  * @export
@@ -133,10 +133,10 @@ export interface SpaceEditVO {
133
133
  'industryAttributes'?: Array<SpaceIndustryAttributeEnum>;
134
134
  /**
135
135
  *
136
- * @type {SpaceTypeEnum}
136
+ * @type {SpaceLevelEnum}
137
137
  * @memberof SpaceEditVO
138
138
  */
139
- 'spaceType': SpaceTypeEnum;
139
+ 'spaceLevel': SpaceLevelEnum;
140
140
  /**
141
141
  * 空间编码
142
142
  * @type {string}
@@ -10,14 +10,14 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * 空间类型
13
+ * 空间级别
14
14
  * @export
15
15
  * @enum {string}
16
16
  */
17
- export declare const SpaceTypeEnum: {
17
+ export declare const SpaceLevelEnum: {
18
18
  readonly Park: "PARK";
19
19
  readonly Building: "BUILDING";
20
20
  readonly Warehouse: "WAREHOUSE";
21
21
  readonly Other: "OTHER";
22
22
  };
23
- export type SpaceTypeEnum = typeof SpaceTypeEnum[keyof typeof SpaceTypeEnum];
23
+ export type SpaceLevelEnum = typeof SpaceLevelEnum[keyof typeof SpaceLevelEnum];
@@ -12,11 +12,11 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
  /**
15
- * 空间类型
15
+ * 空间级别
16
16
  * @export
17
17
  * @enum {string}
18
18
  */
19
- export const SpaceTypeEnum = {
19
+ export const SpaceLevelEnum = {
20
20
  Park: 'PARK',
21
21
  Building: 'BUILDING',
22
22
  Warehouse: 'WAREHOUSE',
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { SpaceIndustryAttributeEnum } from './space-industry-attribute-enum';
13
- import type { SpaceTypeEnum } from './space-type-enum';
13
+ import type { SpaceLevelEnum } from './space-level-enum';
14
14
  import type { Surveillance } from './surveillance';
15
15
  /**
16
16
  * 返回数据,可以是任意类型的值
@@ -134,10 +134,10 @@ export interface SpaceTreeDTO {
134
134
  'surveillances'?: Array<Surveillance>;
135
135
  /**
136
136
  *
137
- * @type {SpaceTypeEnum}
137
+ * @type {SpaceLevelEnum}
138
138
  * @memberof SpaceTreeDTO
139
139
  */
140
- 'spaceType'?: SpaceTypeEnum;
140
+ 'spaceLevel'?: SpaceLevelEnum;
141
141
  /**
142
142
  * 空间编码
143
143
  * @type {string}
@@ -19,16 +19,16 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
19
19
  export interface GetUserWx200Response {
20
20
  /**
21
21
  *
22
- * @type {number}
22
+ * @type {Array<string>}
23
23
  * @memberof GetUserWx200Response
24
24
  */
25
- 'status'?: number;
25
+ 'headerNames'?: Array<string>;
26
26
  /**
27
27
  *
28
- * @type {Array<string>}
28
+ * @type {number}
29
29
  * @memberof GetUserWx200Response
30
30
  */
31
- 'headerNames'?: Array<string>;
31
+ 'status'?: number;
32
32
  /**
33
33
  *
34
34
  * @type {object}
@@ -55,16 +55,16 @@ export interface GetUserWx200Response {
55
55
  'outputStream'?: GetUserWx200ResponseOutputStream;
56
56
  /**
57
57
  *
58
- * @type {number}
58
+ * @type {GetUserWx200ResponseLocale}
59
59
  * @memberof GetUserWx200Response
60
60
  */
61
- 'bufferSize'?: number;
61
+ 'locale'?: GetUserWx200ResponseLocale;
62
62
  /**
63
63
  *
64
- * @type {GetUserWx200ResponseLocale}
64
+ * @type {number}
65
65
  * @memberof GetUserWx200Response
66
66
  */
67
- 'locale'?: GetUserWx200ResponseLocale;
67
+ 'bufferSize'?: number;
68
68
  /**
69
69
  *
70
70
  * @type {string}
@@ -741,12 +741,12 @@ export * from './space-detail-dto';
741
741
  export * from './space-edit-vo';
742
742
  export * from './space-image-detail-dto';
743
743
  export * from './space-industry-attribute-enum';
744
+ export * from './space-level-enum';
744
745
  export * from './space-point-dto';
745
746
  export * from './space-point-vo';
746
747
  export * from './space-qr-code';
747
748
  export * from './space-qr-code-dto';
748
749
  export * from './space-tree-dto';
749
- export * from './space-type-enum';
750
750
  export * from './space-url-add-vo';
751
751
  export * from './space-url-dto';
752
752
  export * from './space-url-edit-vo';
@@ -757,12 +757,12 @@ __exportStar(require("./space-detail-dto"), exports);
757
757
  __exportStar(require("./space-edit-vo"), exports);
758
758
  __exportStar(require("./space-image-detail-dto"), exports);
759
759
  __exportStar(require("./space-industry-attribute-enum"), exports);
760
+ __exportStar(require("./space-level-enum"), exports);
760
761
  __exportStar(require("./space-point-dto"), exports);
761
762
  __exportStar(require("./space-point-vo"), exports);
762
763
  __exportStar(require("./space-qr-code"), exports);
763
764
  __exportStar(require("./space-qr-code-dto"), exports);
764
765
  __exportStar(require("./space-tree-dto"), exports);
765
- __exportStar(require("./space-type-enum"), exports);
766
766
  __exportStar(require("./space-url-add-vo"), exports);
767
767
  __exportStar(require("./space-url-dto"), exports);
768
768
  __exportStar(require("./space-url-edit-vo"), exports);
@@ -26,7 +26,7 @@ export interface SpaceAddExcelDTO {
26
26
  * @type {string}
27
27
  * @memberof SpaceAddExcelDTO
28
28
  */
29
- 'spaceType'?: string;
29
+ 'spaceLevel'?: string;
30
30
  /**
31
31
  * 空间编码
32
32
  * @type {string}
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { SpaceIndustryAttributeEnum } from './space-industry-attribute-enum';
13
- import type { SpaceTypeEnum } from './space-type-enum';
13
+ import type { SpaceLevelEnum } from './space-level-enum';
14
14
  /**
15
15
  * 新增空间参数
16
16
  * @export
@@ -115,10 +115,10 @@ export interface SpaceAddVO {
115
115
  'industryAttributes'?: Array<SpaceIndustryAttributeEnum>;
116
116
  /**
117
117
  *
118
- * @type {SpaceTypeEnum}
118
+ * @type {SpaceLevelEnum}
119
119
  * @memberof SpaceAddVO
120
120
  */
121
- 'spaceType': SpaceTypeEnum;
121
+ 'spaceLevel': SpaceLevelEnum;
122
122
  /**
123
123
  * 空间编码
124
124
  * @type {string}
@@ -11,8 +11,8 @@
11
11
  */
12
12
  import type { PlanImageList } from './plan-image-list';
13
13
  import type { SpaceIndustryAttributeEnum } from './space-industry-attribute-enum';
14
+ import type { SpaceLevelEnum } from './space-level-enum';
14
15
  import type { SpacePointDTO } from './space-point-dto';
15
- import type { SpaceTypeEnum } from './space-type-enum';
16
16
  /**
17
17
  * 空间详情出参
18
18
  * @export
@@ -177,10 +177,10 @@ export interface SpaceDetailDTO {
177
177
  'industryAttributes'?: Array<SpaceIndustryAttributeEnum>;
178
178
  /**
179
179
  *
180
- * @type {SpaceTypeEnum}
180
+ * @type {SpaceLevelEnum}
181
181
  * @memberof SpaceDetailDTO
182
182
  */
183
- 'spaceType'?: SpaceTypeEnum;
183
+ 'spaceLevel'?: SpaceLevelEnum;
184
184
  /**
185
185
  * 空间编码
186
186
  * @type {string}
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { SpaceIndustryAttributeEnum } from './space-industry-attribute-enum';
13
- import type { SpaceTypeEnum } from './space-type-enum';
13
+ import type { SpaceLevelEnum } from './space-level-enum';
14
14
  /**
15
15
  * 修改空间名称
16
16
  * @export
@@ -133,10 +133,10 @@ export interface SpaceEditVO {
133
133
  'industryAttributes'?: Array<SpaceIndustryAttributeEnum>;
134
134
  /**
135
135
  *
136
- * @type {SpaceTypeEnum}
136
+ * @type {SpaceLevelEnum}
137
137
  * @memberof SpaceEditVO
138
138
  */
139
- 'spaceType': SpaceTypeEnum;
139
+ 'spaceLevel': SpaceLevelEnum;
140
140
  /**
141
141
  * 空间编码
142
142
  * @type {string}
@@ -10,14 +10,14 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * 空间类型
13
+ * 空间级别
14
14
  * @export
15
15
  * @enum {string}
16
16
  */
17
- export declare const SpaceTypeEnum: {
17
+ export declare const SpaceLevelEnum: {
18
18
  readonly Park: "PARK";
19
19
  readonly Building: "BUILDING";
20
20
  readonly Warehouse: "WAREHOUSE";
21
21
  readonly Other: "OTHER";
22
22
  };
23
- export type SpaceTypeEnum = typeof SpaceTypeEnum[keyof typeof SpaceTypeEnum];
23
+ export type SpaceLevelEnum = typeof SpaceLevelEnum[keyof typeof SpaceLevelEnum];
@@ -13,13 +13,13 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.SpaceTypeEnum = void 0;
16
+ exports.SpaceLevelEnum = void 0;
17
17
  /**
18
- * 空间类型
18
+ * 空间级别
19
19
  * @export
20
20
  * @enum {string}
21
21
  */
22
- exports.SpaceTypeEnum = {
22
+ exports.SpaceLevelEnum = {
23
23
  Park: 'PARK',
24
24
  Building: 'BUILDING',
25
25
  Warehouse: 'WAREHOUSE',
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { SpaceIndustryAttributeEnum } from './space-industry-attribute-enum';
13
- import type { SpaceTypeEnum } from './space-type-enum';
13
+ import type { SpaceLevelEnum } from './space-level-enum';
14
14
  import type { Surveillance } from './surveillance';
15
15
  /**
16
16
  * 返回数据,可以是任意类型的值
@@ -134,10 +134,10 @@ export interface SpaceTreeDTO {
134
134
  'surveillances'?: Array<Surveillance>;
135
135
  /**
136
136
  *
137
- * @type {SpaceTypeEnum}
137
+ * @type {SpaceLevelEnum}
138
138
  * @memberof SpaceTreeDTO
139
139
  */
140
- 'spaceType'?: SpaceTypeEnum;
140
+ 'spaceLevel'?: SpaceLevelEnum;
141
141
  /**
142
142
  * 空间编码
143
143
  * @type {string}
@@ -28,16 +28,16 @@ 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}
@@ -64,16 +64,16 @@ export interface GetUserWx200Response {
64
64
  'outputStream'?: GetUserWx200ResponseOutputStream;
65
65
  /**
66
66
  *
67
- * @type {number}
67
+ * @type {GetUserWx200ResponseLocale}
68
68
  * @memberof GetUserWx200Response
69
69
  */
70
- 'bufferSize'?: number;
70
+ 'locale'?: GetUserWx200ResponseLocale;
71
71
  /**
72
72
  *
73
- * @type {GetUserWx200ResponseLocale}
73
+ * @type {number}
74
74
  * @memberof GetUserWx200Response
75
75
  */
76
- 'locale'?: GetUserWx200ResponseLocale;
76
+ 'bufferSize'?: number;
77
77
  /**
78
78
  *
79
79
  * @type {string}
package/models/index.ts CHANGED
@@ -741,12 +741,12 @@ export * from './space-detail-dto';
741
741
  export * from './space-edit-vo';
742
742
  export * from './space-image-detail-dto';
743
743
  export * from './space-industry-attribute-enum';
744
+ export * from './space-level-enum';
744
745
  export * from './space-point-dto';
745
746
  export * from './space-point-vo';
746
747
  export * from './space-qr-code';
747
748
  export * from './space-qr-code-dto';
748
749
  export * from './space-tree-dto';
749
- export * from './space-type-enum';
750
750
  export * from './space-url-add-vo';
751
751
  export * from './space-url-dto';
752
752
  export * from './space-url-edit-vo';
@@ -31,7 +31,7 @@ export interface SpaceAddExcelDTO {
31
31
  * @type {string}
32
32
  * @memberof SpaceAddExcelDTO
33
33
  */
34
- 'spaceType'?: string;
34
+ 'spaceLevel'?: string;
35
35
  /**
36
36
  * 空间编码
37
37
  * @type {string}
@@ -18,7 +18,7 @@
18
18
  import type { SpaceIndustryAttributeEnum } from './space-industry-attribute-enum';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
- import type { SpaceTypeEnum } from './space-type-enum';
21
+ import type { SpaceLevelEnum } from './space-level-enum';
22
22
 
23
23
  /**
24
24
  * 新增空间参数
@@ -124,10 +124,10 @@ export interface SpaceAddVO {
124
124
  'industryAttributes'?: Array<SpaceIndustryAttributeEnum>;
125
125
  /**
126
126
  *
127
- * @type {SpaceTypeEnum}
127
+ * @type {SpaceLevelEnum}
128
128
  * @memberof SpaceAddVO
129
129
  */
130
- 'spaceType': SpaceTypeEnum;
130
+ 'spaceLevel': SpaceLevelEnum;
131
131
  /**
132
132
  * 空间编码
133
133
  * @type {string}
@@ -21,10 +21,10 @@ import type { PlanImageList } from './plan-image-list';
21
21
  import type { SpaceIndustryAttributeEnum } from './space-industry-attribute-enum';
22
22
  // May contain unused imports in some cases
23
23
  // @ts-ignore
24
- import type { SpacePointDTO } from './space-point-dto';
24
+ import type { SpaceLevelEnum } from './space-level-enum';
25
25
  // May contain unused imports in some cases
26
26
  // @ts-ignore
27
- import type { SpaceTypeEnum } from './space-type-enum';
27
+ import type { SpacePointDTO } from './space-point-dto';
28
28
 
29
29
  /**
30
30
  * 空间详情出参
@@ -190,10 +190,10 @@ export interface SpaceDetailDTO {
190
190
  'industryAttributes'?: Array<SpaceIndustryAttributeEnum>;
191
191
  /**
192
192
  *
193
- * @type {SpaceTypeEnum}
193
+ * @type {SpaceLevelEnum}
194
194
  * @memberof SpaceDetailDTO
195
195
  */
196
- 'spaceType'?: SpaceTypeEnum;
196
+ 'spaceLevel'?: SpaceLevelEnum;
197
197
  /**
198
198
  * 空间编码
199
199
  * @type {string}
@@ -18,7 +18,7 @@
18
18
  import type { SpaceIndustryAttributeEnum } from './space-industry-attribute-enum';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
- import type { SpaceTypeEnum } from './space-type-enum';
21
+ import type { SpaceLevelEnum } from './space-level-enum';
22
22
 
23
23
  /**
24
24
  * 修改空间名称
@@ -142,10 +142,10 @@ export interface SpaceEditVO {
142
142
  'industryAttributes'?: Array<SpaceIndustryAttributeEnum>;
143
143
  /**
144
144
  *
145
- * @type {SpaceTypeEnum}
145
+ * @type {SpaceLevelEnum}
146
146
  * @memberof SpaceEditVO
147
147
  */
148
- 'spaceType': SpaceTypeEnum;
148
+ 'spaceLevel': SpaceLevelEnum;
149
149
  /**
150
150
  * 空间编码
151
151
  * @type {string}
@@ -15,19 +15,19 @@
15
15
 
16
16
 
17
17
  /**
18
- * 空间类型
18
+ * 空间级别
19
19
  * @export
20
20
  * @enum {string}
21
21
  */
22
22
 
23
- export const SpaceTypeEnum = {
23
+ export const SpaceLevelEnum = {
24
24
  Park: 'PARK',
25
25
  Building: 'BUILDING',
26
26
  Warehouse: 'WAREHOUSE',
27
27
  Other: 'OTHER'
28
28
  } as const;
29
29
 
30
- export type SpaceTypeEnum = typeof SpaceTypeEnum[keyof typeof SpaceTypeEnum];
30
+ export type SpaceLevelEnum = typeof SpaceLevelEnum[keyof typeof SpaceLevelEnum];
31
31
 
32
32
 
33
33
 
@@ -18,7 +18,7 @@
18
18
  import type { SpaceIndustryAttributeEnum } from './space-industry-attribute-enum';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
- import type { SpaceTypeEnum } from './space-type-enum';
21
+ import type { SpaceLevelEnum } from './space-level-enum';
22
22
  // May contain unused imports in some cases
23
23
  // @ts-ignore
24
24
  import type { Surveillance } from './surveillance';
@@ -145,10 +145,10 @@ export interface SpaceTreeDTO {
145
145
  'surveillances'?: Array<Surveillance>;
146
146
  /**
147
147
  *
148
- * @type {SpaceTypeEnum}
148
+ * @type {SpaceLevelEnum}
149
149
  * @memberof SpaceTreeDTO
150
150
  */
151
- 'spaceType'?: SpaceTypeEnum;
151
+ 'spaceLevel'?: SpaceLevelEnum;
152
152
  /**
153
153
  * 空间编码
154
154
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.1.2-alpha.173",
3
+ "version": "4.1.2-alpha.175",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {