@gizone/rrs-client 4.1.1-alpha.154 → 4.1.1-alpha.160

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 (33) hide show
  1. package/.openapi-generator/FILES +2 -0
  2. package/apis/space-api.ts +14 -12
  3. package/apis/surveillance-api.ts +14 -12
  4. package/dist/apis/space-api.d.ts +7 -6
  5. package/dist/apis/space-api.js +10 -10
  6. package/dist/apis/surveillance-api.d.ts +7 -6
  7. package/dist/apis/surveillance-api.js +10 -10
  8. package/dist/esm/apis/space-api.d.ts +7 -6
  9. package/dist/esm/apis/space-api.js +10 -10
  10. package/dist/esm/apis/surveillance-api.d.ts +7 -6
  11. package/dist/esm/apis/surveillance-api.js +10 -10
  12. package/dist/esm/models/get-user-wx200-response.d.ts +14 -14
  13. package/dist/esm/models/index.d.ts +2 -0
  14. package/dist/esm/models/index.js +2 -0
  15. package/dist/esm/models/space-point-vo.d.ts +24 -0
  16. package/dist/esm/models/space-point-vo.js +14 -0
  17. package/dist/esm/models/surveillance-point-vo.d.ts +24 -0
  18. package/dist/esm/models/surveillance-point-vo.js +14 -0
  19. package/dist/esm/models/sync-device-unit-vo.d.ts +0 -12
  20. package/dist/models/get-user-wx200-response.d.ts +14 -14
  21. package/dist/models/index.d.ts +2 -0
  22. package/dist/models/index.js +2 -0
  23. package/dist/models/space-point-vo.d.ts +24 -0
  24. package/dist/models/space-point-vo.js +15 -0
  25. package/dist/models/surveillance-point-vo.d.ts +24 -0
  26. package/dist/models/surveillance-point-vo.js +15 -0
  27. package/dist/models/sync-device-unit-vo.d.ts +0 -12
  28. package/models/get-user-wx200-response.ts +14 -14
  29. package/models/index.ts +2 -0
  30. package/models/space-point-vo.ts +30 -0
  31. package/models/surveillance-point-vo.ts +30 -0
  32. package/models/sync-device-unit-vo.ts +0 -12
  33. package/package.json +1 -1
@@ -802,6 +802,7 @@ models/space-edit-vo.ts
802
802
  models/space-image-detail-dto.ts
803
803
  models/space-industry-attribute.ts
804
804
  models/space-point-dto.ts
805
+ models/space-point-vo.ts
805
806
  models/space-qr-code-dto.ts
806
807
  models/space-qr-code.ts
807
808
  models/space-tree-dto.ts
@@ -839,6 +840,7 @@ models/supplier-search-vo.ts
839
840
  models/supplier-select-dto.ts
840
841
  models/surveillance-details-dto.ts
841
842
  models/surveillance-live-dto.ts
843
+ models/surveillance-point-vo.ts
842
844
  models/surveillance-roi-entity.ts
843
845
  models/surveillance-roi-list-vo.ts
844
846
  models/surveillance-settings-details-dto.ts
package/apis/space-api.ts CHANGED
@@ -44,6 +44,8 @@ import type { SpaceAddVO } from '../models';
44
44
  // @ts-ignore
45
45
  import type { SpaceEditVO } from '../models';
46
46
  // @ts-ignore
47
+ import type { SpacePointVo } from '../models';
48
+ // @ts-ignore
47
49
  import type { SpaceQrCode } from '../models';
48
50
  // @ts-ignore
49
51
  import type { SpaceUrlAddVO } from '../models';
@@ -718,15 +720,15 @@ export const SpaceApiAxiosParamCreator = function (configuration?: Configuration
718
720
  *
719
721
  * @summary 空间标点
720
722
  * @param {number} id
721
- * @param {Array<Array<number>>} requestBody
723
+ * @param {SpacePointVo} spacePointVo
722
724
  * @param {*} [options] Override http request option.
723
725
  * @throws {RequiredError}
724
726
  */
725
- spacePunctuation: async (id: number, requestBody: Array<Array<number>>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
727
+ spacePunctuation: async (id: number, spacePointVo: SpacePointVo, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
726
728
  // verify required parameter 'id' is not null or undefined
727
729
  assertParamExists('spacePunctuation', 'id', id)
728
- // verify required parameter 'requestBody' is not null or undefined
729
- assertParamExists('spacePunctuation', 'requestBody', requestBody)
730
+ // verify required parameter 'spacePointVo' is not null or undefined
731
+ assertParamExists('spacePunctuation', 'spacePointVo', spacePointVo)
730
732
  const localVarPath = `/gizone/space/point/{id}`
731
733
  .replace(`{${"id"}}`, encodeURIComponent(String(id)));
732
734
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -751,7 +753,7 @@ export const SpaceApiAxiosParamCreator = function (configuration?: Configuration
751
753
  setSearchParams(localVarUrlObj, localVarQueryParameter);
752
754
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
753
755
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
754
- localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
756
+ localVarRequestOptions.data = serializeDataIfNeeded(spacePointVo, localVarRequestOptions, configuration)
755
757
 
756
758
  return {
757
759
  url: toPathString(localVarUrlObj),
@@ -1138,12 +1140,12 @@ export const SpaceApiFp = function(configuration?: Configuration) {
1138
1140
  *
1139
1141
  * @summary 空间标点
1140
1142
  * @param {number} id
1141
- * @param {Array<Array<number>>} requestBody
1143
+ * @param {SpacePointVo} spacePointVo
1142
1144
  * @param {*} [options] Override http request option.
1143
1145
  * @throws {RequiredError}
1144
1146
  */
1145
- async spacePunctuation(id: number, requestBody: Array<Array<number>>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>> {
1146
- const localVarAxiosArgs = await localVarAxiosParamCreator.spacePunctuation(id, requestBody, options);
1147
+ async spacePunctuation(id: number, spacePointVo: SpacePointVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>> {
1148
+ const localVarAxiosArgs = await localVarAxiosParamCreator.spacePunctuation(id, spacePointVo, options);
1147
1149
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1148
1150
  const localVarOperationServerBasePath = operationServerMap['SpaceApi.spacePunctuation']?.[localVarOperationServerIndex]?.url;
1149
1151
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1377,7 +1379,7 @@ export const SpaceApiFactory = function (configuration?: Configuration, basePath
1377
1379
  * @throws {RequiredError}
1378
1380
  */
1379
1381
  spacePunctuation(requestParameters: SpaceApiSpacePunctuationRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult> {
1380
- return localVarFp.spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(axios, basePath));
1382
+ return localVarFp.spacePunctuation(requestParameters.id, requestParameters.spacePointVo, options).then((request) => request(axios, basePath));
1381
1383
  },
1382
1384
  /**
1383
1385
  *
@@ -1668,10 +1670,10 @@ export interface SpaceApiSpacePunctuationRequest {
1668
1670
 
1669
1671
  /**
1670
1672
  *
1671
- * @type {Array<Array<number>>}
1673
+ * @type {SpacePointVo}
1672
1674
  * @memberof SpaceApiSpacePunctuation
1673
1675
  */
1674
- readonly requestBody: Array<Array<number>>
1676
+ readonly spacePointVo: SpacePointVo
1675
1677
  }
1676
1678
 
1677
1679
  /**
@@ -1937,7 +1939,7 @@ export class SpaceApi extends BaseAPI {
1937
1939
  * @memberof SpaceApi
1938
1940
  */
1939
1941
  public spacePunctuation(requestParameters: SpaceApiSpacePunctuationRequest, options?: RawAxiosRequestConfig) {
1940
- return SpaceApiFp(this.configuration).spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(this.axios, this.basePath));
1942
+ return SpaceApiFp(this.configuration).spacePunctuation(requestParameters.id, requestParameters.spacePointVo, options).then((request) => request(this.axios, this.basePath));
1941
1943
  }
1942
1944
 
1943
1945
  /**
@@ -38,6 +38,8 @@ import type { JsonResultSurveillanceLiveDto } from '../models';
38
38
  // @ts-ignore
39
39
  import type { JsonResultVoid } from '../models';
40
40
  // @ts-ignore
41
+ import type { SurveillancePointVo } from '../models';
42
+ // @ts-ignore
41
43
  import type { SurveillanceUpdateVo } from '../models';
42
44
  /**
43
45
  * SurveillanceApi - axios parameter creator
@@ -501,15 +503,15 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
501
503
  * 更新监控点位信息
502
504
  * @summary 更新监控点位
503
505
  * @param {number} id
504
- * @param {Array<number>} requestBody
506
+ * @param {SurveillancePointVo} surveillancePointVo
505
507
  * @param {*} [options] Override http request option.
506
508
  * @throws {RequiredError}
507
509
  */
508
- surveillanceUpdatePoint: async (id: number, requestBody: Array<number>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
510
+ surveillanceUpdatePoint: async (id: number, surveillancePointVo: SurveillancePointVo, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
509
511
  // verify required parameter 'id' is not null or undefined
510
512
  assertParamExists('surveillanceUpdatePoint', 'id', id)
511
- // verify required parameter 'requestBody' is not null or undefined
512
- assertParamExists('surveillanceUpdatePoint', 'requestBody', requestBody)
513
+ // verify required parameter 'surveillancePointVo' is not null or undefined
514
+ assertParamExists('surveillanceUpdatePoint', 'surveillancePointVo', surveillancePointVo)
513
515
  const localVarPath = `/gizone/surveillance/point/{id}`
514
516
  .replace(`{${"id"}}`, encodeURIComponent(String(id)));
515
517
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -534,7 +536,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
534
536
  setSearchParams(localVarUrlObj, localVarQueryParameter);
535
537
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
536
538
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
537
- localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
539
+ localVarRequestOptions.data = serializeDataIfNeeded(surveillancePointVo, localVarRequestOptions, configuration)
538
540
 
539
541
  return {
540
542
  url: toPathString(localVarUrlObj),
@@ -691,12 +693,12 @@ export const SurveillanceApiFp = function(configuration?: Configuration) {
691
693
  * 更新监控点位信息
692
694
  * @summary 更新监控点位
693
695
  * @param {number} id
694
- * @param {Array<number>} requestBody
696
+ * @param {SurveillancePointVo} surveillancePointVo
695
697
  * @param {*} [options] Override http request option.
696
698
  * @throws {RequiredError}
697
699
  */
698
- async surveillanceUpdatePoint(id: number, requestBody: Array<number>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultBoolean>> {
699
- const localVarAxiosArgs = await localVarAxiosParamCreator.surveillanceUpdatePoint(id, requestBody, options);
700
+ async surveillanceUpdatePoint(id: number, surveillancePointVo: SurveillancePointVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultBoolean>> {
701
+ const localVarAxiosArgs = await localVarAxiosParamCreator.surveillanceUpdatePoint(id, surveillancePointVo, options);
700
702
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
701
703
  const localVarOperationServerBasePath = operationServerMap['SurveillanceApi.surveillanceUpdatePoint']?.[localVarOperationServerIndex]?.url;
702
704
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -809,7 +811,7 @@ export const SurveillanceApiFactory = function (configuration?: Configuration, b
809
811
  * @throws {RequiredError}
810
812
  */
811
813
  surveillanceUpdatePoint(requestParameters: SurveillanceApiSurveillanceUpdatePointRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultBoolean> {
812
- return localVarFp.surveillanceUpdatePoint(requestParameters.id, requestParameters.requestBody, options).then((request) => request(axios, basePath));
814
+ return localVarFp.surveillanceUpdatePoint(requestParameters.id, requestParameters.surveillancePointVo, options).then((request) => request(axios, basePath));
813
815
  },
814
816
  };
815
817
  };
@@ -1088,10 +1090,10 @@ export interface SurveillanceApiSurveillanceUpdatePointRequest {
1088
1090
 
1089
1091
  /**
1090
1092
  *
1091
- * @type {Array<number>}
1093
+ * @type {SurveillancePointVo}
1092
1094
  * @memberof SurveillanceApiSurveillanceUpdatePoint
1093
1095
  */
1094
- readonly requestBody: Array<number>
1096
+ readonly surveillancePointVo: SurveillancePointVo
1095
1097
  }
1096
1098
 
1097
1099
  /**
@@ -1218,7 +1220,7 @@ export class SurveillanceApi extends BaseAPI {
1218
1220
  * @memberof SurveillanceApi
1219
1221
  */
1220
1222
  public surveillanceUpdatePoint(requestParameters: SurveillanceApiSurveillanceUpdatePointRequest, options?: RawAxiosRequestConfig) {
1221
- return SurveillanceApiFp(this.configuration).surveillanceUpdatePoint(requestParameters.id, requestParameters.requestBody, options).then((request) => request(this.axios, this.basePath));
1223
+ return SurveillanceApiFp(this.configuration).surveillanceUpdatePoint(requestParameters.id, requestParameters.surveillancePointVo, options).then((request) => request(this.axios, this.basePath));
1222
1224
  }
1223
1225
  }
1224
1226
 
@@ -23,6 +23,7 @@ import type { JsonResultSpaceImageDetailDTO } from '../models';
23
23
  import type { SpaceAddPlanVo } from '../models';
24
24
  import type { SpaceAddVO } from '../models';
25
25
  import type { SpaceEditVO } from '../models';
26
+ import type { SpacePointVo } from '../models';
26
27
  import type { SpaceQrCode } from '../models';
27
28
  import type { SpaceUrlAddVO } from '../models';
28
29
  import type { SpaceUrlEditVO } from '../models';
@@ -165,11 +166,11 @@ export declare const SpaceApiAxiosParamCreator: (configuration?: Configuration)
165
166
  *
166
167
  * @summary 空间标点
167
168
  * @param {number} id
168
- * @param {Array<Array<number>>} requestBody
169
+ * @param {SpacePointVo} spacePointVo
169
170
  * @param {*} [options] Override http request option.
170
171
  * @throws {RequiredError}
171
172
  */
172
- spacePunctuation: (id: number, requestBody: Array<Array<number>>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
173
+ spacePunctuation: (id: number, spacePointVo: SpacePointVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
173
174
  /**
174
175
  *
175
176
  * @summary 批量生成二维码
@@ -342,11 +343,11 @@ export declare const SpaceApiFp: (configuration?: Configuration) => {
342
343
  *
343
344
  * @summary 空间标点
344
345
  * @param {number} id
345
- * @param {Array<Array<number>>} requestBody
346
+ * @param {SpacePointVo} spacePointVo
346
347
  * @param {*} [options] Override http request option.
347
348
  * @throws {RequiredError}
348
349
  */
349
- spacePunctuation(id: number, requestBody: Array<Array<number>>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
350
+ spacePunctuation(id: number, spacePointVo: SpacePointVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
350
351
  /**
351
352
  *
352
353
  * @summary 批量生成二维码
@@ -780,10 +781,10 @@ export interface SpaceApiSpacePunctuationRequest {
780
781
  readonly id: number;
781
782
  /**
782
783
  *
783
- * @type {Array<Array<number>>}
784
+ * @type {SpacePointVo}
784
785
  * @memberof SpaceApiSpacePunctuation
785
786
  */
786
- readonly requestBody: Array<Array<number>>;
787
+ readonly spacePointVo: SpacePointVo;
787
788
  }
788
789
  /**
789
790
  * Request parameters for spaceQrCode operation in SpaceApi.
@@ -583,15 +583,15 @@ const SpaceApiAxiosParamCreator = function (configuration) {
583
583
  *
584
584
  * @summary 空间标点
585
585
  * @param {number} id
586
- * @param {Array<Array<number>>} requestBody
586
+ * @param {SpacePointVo} spacePointVo
587
587
  * @param {*} [options] Override http request option.
588
588
  * @throws {RequiredError}
589
589
  */
590
- spacePunctuation: (id_1, requestBody_1, ...args_1) => __awaiter(this, [id_1, requestBody_1, ...args_1], void 0, function* (id, requestBody, options = {}) {
590
+ spacePunctuation: (id_1, spacePointVo_1, ...args_1) => __awaiter(this, [id_1, spacePointVo_1, ...args_1], void 0, function* (id, spacePointVo, options = {}) {
591
591
  // verify required parameter 'id' is not null or undefined
592
592
  (0, common_1.assertParamExists)('spacePunctuation', 'id', id);
593
- // verify required parameter 'requestBody' is not null or undefined
594
- (0, common_1.assertParamExists)('spacePunctuation', 'requestBody', requestBody);
593
+ // verify required parameter 'spacePointVo' is not null or undefined
594
+ (0, common_1.assertParamExists)('spacePunctuation', 'spacePointVo', spacePointVo);
595
595
  const localVarPath = `/gizone/space/point/{id}`
596
596
  .replace(`{${"id"}}`, encodeURIComponent(String(id)));
597
597
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -610,7 +610,7 @@ const SpaceApiAxiosParamCreator = function (configuration) {
610
610
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
611
611
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
612
612
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
613
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(requestBody, localVarRequestOptions, configuration);
613
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(spacePointVo, localVarRequestOptions, configuration);
614
614
  return {
615
615
  url: (0, common_1.toPathString)(localVarUrlObj),
616
616
  options: localVarRequestOptions,
@@ -1018,14 +1018,14 @@ const SpaceApiFp = function (configuration) {
1018
1018
  *
1019
1019
  * @summary 空间标点
1020
1020
  * @param {number} id
1021
- * @param {Array<Array<number>>} requestBody
1021
+ * @param {SpacePointVo} spacePointVo
1022
1022
  * @param {*} [options] Override http request option.
1023
1023
  * @throws {RequiredError}
1024
1024
  */
1025
- spacePunctuation(id, requestBody, options) {
1025
+ spacePunctuation(id, spacePointVo, options) {
1026
1026
  return __awaiter(this, void 0, void 0, function* () {
1027
1027
  var _a, _b, _c;
1028
- const localVarAxiosArgs = yield localVarAxiosParamCreator.spacePunctuation(id, requestBody, options);
1028
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.spacePunctuation(id, spacePointVo, options);
1029
1029
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1030
1030
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SpaceApi.spacePunctuation']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1031
1031
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1272,7 +1272,7 @@ const SpaceApiFactory = function (configuration, basePath, axios) {
1272
1272
  * @throws {RequiredError}
1273
1273
  */
1274
1274
  spacePunctuation(requestParameters, options) {
1275
- return localVarFp.spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(axios, basePath));
1275
+ return localVarFp.spacePunctuation(requestParameters.id, requestParameters.spacePointVo, options).then((request) => request(axios, basePath));
1276
1276
  },
1277
1277
  /**
1278
1278
  *
@@ -1508,7 +1508,7 @@ class SpaceApi extends base_1.BaseAPI {
1508
1508
  * @memberof SpaceApi
1509
1509
  */
1510
1510
  spacePunctuation(requestParameters, options) {
1511
- return (0, exports.SpaceApiFp)(this.configuration).spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(this.axios, this.basePath));
1511
+ return (0, exports.SpaceApiFp)(this.configuration).spacePunctuation(requestParameters.id, requestParameters.spacePointVo, options).then((request) => request(this.axios, this.basePath));
1512
1512
  }
1513
1513
  /**
1514
1514
  *
@@ -20,6 +20,7 @@ import type { JsonResultPageDtoSurveillanceDetailsDto } from '../models';
20
20
  import type { JsonResultSurveillanceDetailsDto } from '../models';
21
21
  import type { JsonResultSurveillanceLiveDto } from '../models';
22
22
  import type { JsonResultVoid } from '../models';
23
+ import type { SurveillancePointVo } from '../models';
23
24
  import type { SurveillanceUpdateVo } from '../models';
24
25
  /**
25
26
  * SurveillanceApi - axios parameter creator
@@ -121,11 +122,11 @@ export declare const SurveillanceApiAxiosParamCreator: (configuration?: Configur
121
122
  * 更新监控点位信息
122
123
  * @summary 更新监控点位
123
124
  * @param {number} id
124
- * @param {Array<number>} requestBody
125
+ * @param {SurveillancePointVo} surveillancePointVo
125
126
  * @param {*} [options] Override http request option.
126
127
  * @throws {RequiredError}
127
128
  */
128
- surveillanceUpdatePoint: (id: number, requestBody: Array<number>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
129
+ surveillanceUpdatePoint: (id: number, surveillancePointVo: SurveillancePointVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
129
130
  };
130
131
  /**
131
132
  * SurveillanceApi - functional programming interface
@@ -227,11 +228,11 @@ export declare const SurveillanceApiFp: (configuration?: Configuration) => {
227
228
  * 更新监控点位信息
228
229
  * @summary 更新监控点位
229
230
  * @param {number} id
230
- * @param {Array<number>} requestBody
231
+ * @param {SurveillancePointVo} surveillancePointVo
231
232
  * @param {*} [options] Override http request option.
232
233
  * @throws {RequiredError}
233
234
  */
234
- surveillanceUpdatePoint(id: number, requestBody: Array<number>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultBoolean>>;
235
+ surveillanceUpdatePoint(id: number, surveillancePointVo: SurveillancePointVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultBoolean>>;
235
236
  };
236
237
  /**
237
238
  * SurveillanceApi - factory interface
@@ -564,10 +565,10 @@ export interface SurveillanceApiSurveillanceUpdatePointRequest {
564
565
  readonly id: number;
565
566
  /**
566
567
  *
567
- * @type {Array<number>}
568
+ * @type {SurveillancePointVo}
568
569
  * @memberof SurveillanceApiSurveillanceUpdatePoint
569
570
  */
570
- readonly requestBody: Array<number>;
571
+ readonly surveillancePointVo: SurveillancePointVo;
571
572
  }
572
573
  /**
573
574
  * SurveillanceApi - object-oriented interface
@@ -416,15 +416,15 @@ const SurveillanceApiAxiosParamCreator = function (configuration) {
416
416
  * 更新监控点位信息
417
417
  * @summary 更新监控点位
418
418
  * @param {number} id
419
- * @param {Array<number>} requestBody
419
+ * @param {SurveillancePointVo} surveillancePointVo
420
420
  * @param {*} [options] Override http request option.
421
421
  * @throws {RequiredError}
422
422
  */
423
- surveillanceUpdatePoint: (id_1, requestBody_1, ...args_1) => __awaiter(this, [id_1, requestBody_1, ...args_1], void 0, function* (id, requestBody, options = {}) {
423
+ surveillanceUpdatePoint: (id_1, surveillancePointVo_1, ...args_1) => __awaiter(this, [id_1, surveillancePointVo_1, ...args_1], void 0, function* (id, surveillancePointVo, options = {}) {
424
424
  // verify required parameter 'id' is not null or undefined
425
425
  (0, common_1.assertParamExists)('surveillanceUpdatePoint', 'id', id);
426
- // verify required parameter 'requestBody' is not null or undefined
427
- (0, common_1.assertParamExists)('surveillanceUpdatePoint', 'requestBody', requestBody);
426
+ // verify required parameter 'surveillancePointVo' is not null or undefined
427
+ (0, common_1.assertParamExists)('surveillanceUpdatePoint', 'surveillancePointVo', surveillancePointVo);
428
428
  const localVarPath = `/gizone/surveillance/point/{id}`
429
429
  .replace(`{${"id"}}`, encodeURIComponent(String(id)));
430
430
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -443,7 +443,7 @@ const SurveillanceApiAxiosParamCreator = function (configuration) {
443
443
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
444
444
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
445
445
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
446
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(requestBody, localVarRequestOptions, configuration);
446
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(surveillancePointVo, localVarRequestOptions, configuration);
447
447
  return {
448
448
  url: (0, common_1.toPathString)(localVarUrlObj),
449
449
  options: localVarRequestOptions,
@@ -626,14 +626,14 @@ const SurveillanceApiFp = function (configuration) {
626
626
  * 更新监控点位信息
627
627
  * @summary 更新监控点位
628
628
  * @param {number} id
629
- * @param {Array<number>} requestBody
629
+ * @param {SurveillancePointVo} surveillancePointVo
630
630
  * @param {*} [options] Override http request option.
631
631
  * @throws {RequiredError}
632
632
  */
633
- surveillanceUpdatePoint(id, requestBody, options) {
633
+ surveillanceUpdatePoint(id, surveillancePointVo, options) {
634
634
  return __awaiter(this, void 0, void 0, function* () {
635
635
  var _a, _b, _c;
636
- const localVarAxiosArgs = yield localVarAxiosParamCreator.surveillanceUpdatePoint(id, requestBody, options);
636
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.surveillanceUpdatePoint(id, surveillancePointVo, options);
637
637
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
638
638
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SurveillanceApi.surveillanceUpdatePoint']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
639
639
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -747,7 +747,7 @@ const SurveillanceApiFactory = function (configuration, basePath, axios) {
747
747
  * @throws {RequiredError}
748
748
  */
749
749
  surveillanceUpdatePoint(requestParameters, options) {
750
- return localVarFp.surveillanceUpdatePoint(requestParameters.id, requestParameters.requestBody, options).then((request) => request(axios, basePath));
750
+ return localVarFp.surveillanceUpdatePoint(requestParameters.id, requestParameters.surveillancePointVo, options).then((request) => request(axios, basePath));
751
751
  },
752
752
  };
753
753
  };
@@ -867,7 +867,7 @@ class SurveillanceApi extends base_1.BaseAPI {
867
867
  * @memberof SurveillanceApi
868
868
  */
869
869
  surveillanceUpdatePoint(requestParameters, options) {
870
- return (0, exports.SurveillanceApiFp)(this.configuration).surveillanceUpdatePoint(requestParameters.id, requestParameters.requestBody, options).then((request) => request(this.axios, this.basePath));
870
+ return (0, exports.SurveillanceApiFp)(this.configuration).surveillanceUpdatePoint(requestParameters.id, requestParameters.surveillancePointVo, options).then((request) => request(this.axios, this.basePath));
871
871
  }
872
872
  }
873
873
  exports.SurveillanceApi = SurveillanceApi;
@@ -23,6 +23,7 @@ import type { JsonResultSpaceImageDetailDTO } from '../models';
23
23
  import type { SpaceAddPlanVo } from '../models';
24
24
  import type { SpaceAddVO } from '../models';
25
25
  import type { SpaceEditVO } from '../models';
26
+ import type { SpacePointVo } from '../models';
26
27
  import type { SpaceQrCode } from '../models';
27
28
  import type { SpaceUrlAddVO } from '../models';
28
29
  import type { SpaceUrlEditVO } from '../models';
@@ -165,11 +166,11 @@ export declare const SpaceApiAxiosParamCreator: (configuration?: Configuration)
165
166
  *
166
167
  * @summary 空间标点
167
168
  * @param {number} id
168
- * @param {Array<Array<number>>} requestBody
169
+ * @param {SpacePointVo} spacePointVo
169
170
  * @param {*} [options] Override http request option.
170
171
  * @throws {RequiredError}
171
172
  */
172
- spacePunctuation: (id: number, requestBody: Array<Array<number>>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
173
+ spacePunctuation: (id: number, spacePointVo: SpacePointVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
173
174
  /**
174
175
  *
175
176
  * @summary 批量生成二维码
@@ -342,11 +343,11 @@ export declare const SpaceApiFp: (configuration?: Configuration) => {
342
343
  *
343
344
  * @summary 空间标点
344
345
  * @param {number} id
345
- * @param {Array<Array<number>>} requestBody
346
+ * @param {SpacePointVo} spacePointVo
346
347
  * @param {*} [options] Override http request option.
347
348
  * @throws {RequiredError}
348
349
  */
349
- spacePunctuation(id: number, requestBody: Array<Array<number>>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
350
+ spacePunctuation(id: number, spacePointVo: SpacePointVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
350
351
  /**
351
352
  *
352
353
  * @summary 批量生成二维码
@@ -780,10 +781,10 @@ export interface SpaceApiSpacePunctuationRequest {
780
781
  readonly id: number;
781
782
  /**
782
783
  *
783
- * @type {Array<Array<number>>}
784
+ * @type {SpacePointVo}
784
785
  * @memberof SpaceApiSpacePunctuation
785
786
  */
786
- readonly requestBody: Array<Array<number>>;
787
+ readonly spacePointVo: SpacePointVo;
787
788
  }
788
789
  /**
789
790
  * Request parameters for spaceQrCode operation in SpaceApi.
@@ -580,15 +580,15 @@ export const SpaceApiAxiosParamCreator = function (configuration) {
580
580
  *
581
581
  * @summary 空间标点
582
582
  * @param {number} id
583
- * @param {Array<Array<number>>} requestBody
583
+ * @param {SpacePointVo} spacePointVo
584
584
  * @param {*} [options] Override http request option.
585
585
  * @throws {RequiredError}
586
586
  */
587
- spacePunctuation: (id_1, requestBody_1, ...args_1) => __awaiter(this, [id_1, requestBody_1, ...args_1], void 0, function* (id, requestBody, options = {}) {
587
+ spacePunctuation: (id_1, spacePointVo_1, ...args_1) => __awaiter(this, [id_1, spacePointVo_1, ...args_1], void 0, function* (id, spacePointVo, options = {}) {
588
588
  // verify required parameter 'id' is not null or undefined
589
589
  assertParamExists('spacePunctuation', 'id', id);
590
- // verify required parameter 'requestBody' is not null or undefined
591
- assertParamExists('spacePunctuation', 'requestBody', requestBody);
590
+ // verify required parameter 'spacePointVo' is not null or undefined
591
+ assertParamExists('spacePunctuation', 'spacePointVo', spacePointVo);
592
592
  const localVarPath = `/gizone/space/point/{id}`
593
593
  .replace(`{${"id"}}`, encodeURIComponent(String(id)));
594
594
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -607,7 +607,7 @@ export const SpaceApiAxiosParamCreator = function (configuration) {
607
607
  setSearchParams(localVarUrlObj, localVarQueryParameter);
608
608
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
609
609
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
610
- localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration);
610
+ localVarRequestOptions.data = serializeDataIfNeeded(spacePointVo, localVarRequestOptions, configuration);
611
611
  return {
612
612
  url: toPathString(localVarUrlObj),
613
613
  options: localVarRequestOptions,
@@ -1014,14 +1014,14 @@ export const SpaceApiFp = function (configuration) {
1014
1014
  *
1015
1015
  * @summary 空间标点
1016
1016
  * @param {number} id
1017
- * @param {Array<Array<number>>} requestBody
1017
+ * @param {SpacePointVo} spacePointVo
1018
1018
  * @param {*} [options] Override http request option.
1019
1019
  * @throws {RequiredError}
1020
1020
  */
1021
- spacePunctuation(id, requestBody, options) {
1021
+ spacePunctuation(id, spacePointVo, options) {
1022
1022
  return __awaiter(this, void 0, void 0, function* () {
1023
1023
  var _a, _b, _c;
1024
- const localVarAxiosArgs = yield localVarAxiosParamCreator.spacePunctuation(id, requestBody, options);
1024
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.spacePunctuation(id, spacePointVo, options);
1025
1025
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1026
1026
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SpaceApi.spacePunctuation']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1027
1027
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1267,7 +1267,7 @@ export const SpaceApiFactory = function (configuration, basePath, axios) {
1267
1267
  * @throws {RequiredError}
1268
1268
  */
1269
1269
  spacePunctuation(requestParameters, options) {
1270
- return localVarFp.spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(axios, basePath));
1270
+ return localVarFp.spacePunctuation(requestParameters.id, requestParameters.spacePointVo, options).then((request) => request(axios, basePath));
1271
1271
  },
1272
1272
  /**
1273
1273
  *
@@ -1502,7 +1502,7 @@ export class SpaceApi extends BaseAPI {
1502
1502
  * @memberof SpaceApi
1503
1503
  */
1504
1504
  spacePunctuation(requestParameters, options) {
1505
- return SpaceApiFp(this.configuration).spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(this.axios, this.basePath));
1505
+ return SpaceApiFp(this.configuration).spacePunctuation(requestParameters.id, requestParameters.spacePointVo, options).then((request) => request(this.axios, this.basePath));
1506
1506
  }
1507
1507
  /**
1508
1508
  *
@@ -20,6 +20,7 @@ import type { JsonResultPageDtoSurveillanceDetailsDto } from '../models';
20
20
  import type { JsonResultSurveillanceDetailsDto } from '../models';
21
21
  import type { JsonResultSurveillanceLiveDto } from '../models';
22
22
  import type { JsonResultVoid } from '../models';
23
+ import type { SurveillancePointVo } from '../models';
23
24
  import type { SurveillanceUpdateVo } from '../models';
24
25
  /**
25
26
  * SurveillanceApi - axios parameter creator
@@ -121,11 +122,11 @@ export declare const SurveillanceApiAxiosParamCreator: (configuration?: Configur
121
122
  * 更新监控点位信息
122
123
  * @summary 更新监控点位
123
124
  * @param {number} id
124
- * @param {Array<number>} requestBody
125
+ * @param {SurveillancePointVo} surveillancePointVo
125
126
  * @param {*} [options] Override http request option.
126
127
  * @throws {RequiredError}
127
128
  */
128
- surveillanceUpdatePoint: (id: number, requestBody: Array<number>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
129
+ surveillanceUpdatePoint: (id: number, surveillancePointVo: SurveillancePointVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
129
130
  };
130
131
  /**
131
132
  * SurveillanceApi - functional programming interface
@@ -227,11 +228,11 @@ export declare const SurveillanceApiFp: (configuration?: Configuration) => {
227
228
  * 更新监控点位信息
228
229
  * @summary 更新监控点位
229
230
  * @param {number} id
230
- * @param {Array<number>} requestBody
231
+ * @param {SurveillancePointVo} surveillancePointVo
231
232
  * @param {*} [options] Override http request option.
232
233
  * @throws {RequiredError}
233
234
  */
234
- surveillanceUpdatePoint(id: number, requestBody: Array<number>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultBoolean>>;
235
+ surveillanceUpdatePoint(id: number, surveillancePointVo: SurveillancePointVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultBoolean>>;
235
236
  };
236
237
  /**
237
238
  * SurveillanceApi - factory interface
@@ -564,10 +565,10 @@ export interface SurveillanceApiSurveillanceUpdatePointRequest {
564
565
  readonly id: number;
565
566
  /**
566
567
  *
567
- * @type {Array<number>}
568
+ * @type {SurveillancePointVo}
568
569
  * @memberof SurveillanceApiSurveillanceUpdatePoint
569
570
  */
570
- readonly requestBody: Array<number>;
571
+ readonly surveillancePointVo: SurveillancePointVo;
571
572
  }
572
573
  /**
573
574
  * SurveillanceApi - object-oriented interface
@@ -413,15 +413,15 @@ export const SurveillanceApiAxiosParamCreator = function (configuration) {
413
413
  * 更新监控点位信息
414
414
  * @summary 更新监控点位
415
415
  * @param {number} id
416
- * @param {Array<number>} requestBody
416
+ * @param {SurveillancePointVo} surveillancePointVo
417
417
  * @param {*} [options] Override http request option.
418
418
  * @throws {RequiredError}
419
419
  */
420
- surveillanceUpdatePoint: (id_1, requestBody_1, ...args_1) => __awaiter(this, [id_1, requestBody_1, ...args_1], void 0, function* (id, requestBody, options = {}) {
420
+ surveillanceUpdatePoint: (id_1, surveillancePointVo_1, ...args_1) => __awaiter(this, [id_1, surveillancePointVo_1, ...args_1], void 0, function* (id, surveillancePointVo, options = {}) {
421
421
  // verify required parameter 'id' is not null or undefined
422
422
  assertParamExists('surveillanceUpdatePoint', 'id', id);
423
- // verify required parameter 'requestBody' is not null or undefined
424
- assertParamExists('surveillanceUpdatePoint', 'requestBody', requestBody);
423
+ // verify required parameter 'surveillancePointVo' is not null or undefined
424
+ assertParamExists('surveillanceUpdatePoint', 'surveillancePointVo', surveillancePointVo);
425
425
  const localVarPath = `/gizone/surveillance/point/{id}`
426
426
  .replace(`{${"id"}}`, encodeURIComponent(String(id)));
427
427
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -440,7 +440,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration) {
440
440
  setSearchParams(localVarUrlObj, localVarQueryParameter);
441
441
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
442
442
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
443
- localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration);
443
+ localVarRequestOptions.data = serializeDataIfNeeded(surveillancePointVo, localVarRequestOptions, configuration);
444
444
  return {
445
445
  url: toPathString(localVarUrlObj),
446
446
  options: localVarRequestOptions,
@@ -622,14 +622,14 @@ export const SurveillanceApiFp = function (configuration) {
622
622
  * 更新监控点位信息
623
623
  * @summary 更新监控点位
624
624
  * @param {number} id
625
- * @param {Array<number>} requestBody
625
+ * @param {SurveillancePointVo} surveillancePointVo
626
626
  * @param {*} [options] Override http request option.
627
627
  * @throws {RequiredError}
628
628
  */
629
- surveillanceUpdatePoint(id, requestBody, options) {
629
+ surveillanceUpdatePoint(id, surveillancePointVo, options) {
630
630
  return __awaiter(this, void 0, void 0, function* () {
631
631
  var _a, _b, _c;
632
- const localVarAxiosArgs = yield localVarAxiosParamCreator.surveillanceUpdatePoint(id, requestBody, options);
632
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.surveillanceUpdatePoint(id, surveillancePointVo, options);
633
633
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
634
634
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SurveillanceApi.surveillanceUpdatePoint']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
635
635
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -742,7 +742,7 @@ export const SurveillanceApiFactory = function (configuration, basePath, axios)
742
742
  * @throws {RequiredError}
743
743
  */
744
744
  surveillanceUpdatePoint(requestParameters, options) {
745
- return localVarFp.surveillanceUpdatePoint(requestParameters.id, requestParameters.requestBody, options).then((request) => request(axios, basePath));
745
+ return localVarFp.surveillanceUpdatePoint(requestParameters.id, requestParameters.surveillancePointVo, options).then((request) => request(axios, basePath));
746
746
  },
747
747
  };
748
748
  };
@@ -861,7 +861,7 @@ export class SurveillanceApi extends BaseAPI {
861
861
  * @memberof SurveillanceApi
862
862
  */
863
863
  surveillanceUpdatePoint(requestParameters, options) {
864
- return SurveillanceApiFp(this.configuration).surveillanceUpdatePoint(requestParameters.id, requestParameters.requestBody, options).then((request) => request(this.axios, this.basePath));
864
+ return SurveillanceApiFp(this.configuration).surveillanceUpdatePoint(requestParameters.id, requestParameters.surveillancePointVo, options).then((request) => request(this.axios, this.basePath));
865
865
  }
866
866
  }
867
867
  /**
@@ -41,12 +41,6 @@ export interface GetUserWx200Response {
41
41
  * @memberof GetUserWx200Response
42
42
  */
43
43
  'locale'?: GetUserWx200ResponseLocale;
44
- /**
45
- *
46
- * @type {number}
47
- * @memberof GetUserWx200Response
48
- */
49
- 'bufferSize'?: number;
50
44
  /**
51
45
  *
52
46
  * @type {string}
@@ -67,16 +61,10 @@ export interface GetUserWx200Response {
67
61
  'outputStream'?: GetUserWx200ResponseOutputStream;
68
62
  /**
69
63
  *
70
- * @type {object}
71
- * @memberof GetUserWx200Response
72
- */
73
- 'writer'?: object;
74
- /**
75
- *
76
- * @type {string}
64
+ * @type {number}
77
65
  * @memberof GetUserWx200Response
78
66
  */
79
- 'characterEncoding'?: string;
67
+ 'bufferSize'?: number;
80
68
  /**
81
69
  *
82
70
  * @type {number}
@@ -89,4 +77,16 @@ export interface GetUserWx200Response {
89
77
  * @memberof GetUserWx200Response
90
78
  */
91
79
  'committed'?: boolean;
80
+ /**
81
+ *
82
+ * @type {object}
83
+ * @memberof GetUserWx200Response
84
+ */
85
+ 'writer'?: object;
86
+ /**
87
+ *
88
+ * @type {string}
89
+ * @memberof GetUserWx200Response
90
+ */
91
+ 'characterEncoding'?: string;
92
92
  }
@@ -738,6 +738,7 @@ export * from './space-edit-vo';
738
738
  export * from './space-image-detail-dto';
739
739
  export * from './space-industry-attribute';
740
740
  export * from './space-point-dto';
741
+ export * from './space-point-vo';
741
742
  export * from './space-qr-code';
742
743
  export * from './space-qr-code-dto';
743
744
  export * from './space-tree-dto';
@@ -775,6 +776,7 @@ export * from './supplier-select-dto';
775
776
  export * from './surveillance';
776
777
  export * from './surveillance-details-dto';
777
778
  export * from './surveillance-live-dto';
779
+ export * from './surveillance-point-vo';
778
780
  export * from './surveillance-roi-entity';
779
781
  export * from './surveillance-roi-list-vo';
780
782
  export * from './surveillance-settings-details-dto';
@@ -738,6 +738,7 @@ export * from './space-edit-vo';
738
738
  export * from './space-image-detail-dto';
739
739
  export * from './space-industry-attribute';
740
740
  export * from './space-point-dto';
741
+ export * from './space-point-vo';
741
742
  export * from './space-qr-code';
742
743
  export * from './space-qr-code-dto';
743
744
  export * from './space-tree-dto';
@@ -775,6 +776,7 @@ export * from './supplier-select-dto';
775
776
  export * from './surveillance';
776
777
  export * from './surveillance-details-dto';
777
778
  export * from './surveillance-live-dto';
779
+ export * from './surveillance-point-vo';
778
780
  export * from './surveillance-roi-entity';
779
781
  export * from './surveillance-roi-list-vo';
780
782
  export * from './surveillance-settings-details-dto';
@@ -0,0 +1,24 @@
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 SpacePointVo
16
+ */
17
+ export interface SpacePointVo {
18
+ /**
19
+ * 空间点位
20
+ * @type {Array<Array<number>>}
21
+ * @memberof SpacePointVo
22
+ */
23
+ 'spacePoint'?: Array<Array<number>>;
24
+ }
@@ -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 {};
@@ -0,0 +1,24 @@
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 SurveillancePointVo
16
+ */
17
+ export interface SurveillancePointVo {
18
+ /**
19
+ * 监控点位
20
+ * @type {Array<number>}
21
+ * @memberof SurveillancePointVo
22
+ */
23
+ 'surveillancePoint'?: Array<number>;
24
+ }
@@ -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 {};
@@ -141,18 +141,6 @@ export interface SyncDeviceUnitVo {
141
141
  * @memberof SyncDeviceUnitVo
142
142
  */
143
143
  'location'?: string;
144
- /**
145
- * 心跳时间
146
- * @type {string}
147
- * @memberof SyncDeviceUnitVo
148
- */
149
- 'heartBeatAt'?: string;
150
- /**
151
- * 下次心跳时间
152
- * @type {string}
153
- * @memberof SyncDeviceUnitVo
154
- */
155
- 'heartBeatExpiresAt'?: string;
156
144
  /**
157
145
  * 倍率
158
146
  * @type {number}
@@ -41,12 +41,6 @@ export interface GetUserWx200Response {
41
41
  * @memberof GetUserWx200Response
42
42
  */
43
43
  'locale'?: GetUserWx200ResponseLocale;
44
- /**
45
- *
46
- * @type {number}
47
- * @memberof GetUserWx200Response
48
- */
49
- 'bufferSize'?: number;
50
44
  /**
51
45
  *
52
46
  * @type {string}
@@ -67,16 +61,10 @@ export interface GetUserWx200Response {
67
61
  'outputStream'?: GetUserWx200ResponseOutputStream;
68
62
  /**
69
63
  *
70
- * @type {object}
71
- * @memberof GetUserWx200Response
72
- */
73
- 'writer'?: object;
74
- /**
75
- *
76
- * @type {string}
64
+ * @type {number}
77
65
  * @memberof GetUserWx200Response
78
66
  */
79
- 'characterEncoding'?: string;
67
+ 'bufferSize'?: number;
80
68
  /**
81
69
  *
82
70
  * @type {number}
@@ -89,4 +77,16 @@ export interface GetUserWx200Response {
89
77
  * @memberof GetUserWx200Response
90
78
  */
91
79
  'committed'?: boolean;
80
+ /**
81
+ *
82
+ * @type {object}
83
+ * @memberof GetUserWx200Response
84
+ */
85
+ 'writer'?: object;
86
+ /**
87
+ *
88
+ * @type {string}
89
+ * @memberof GetUserWx200Response
90
+ */
91
+ 'characterEncoding'?: string;
92
92
  }
@@ -738,6 +738,7 @@ export * from './space-edit-vo';
738
738
  export * from './space-image-detail-dto';
739
739
  export * from './space-industry-attribute';
740
740
  export * from './space-point-dto';
741
+ export * from './space-point-vo';
741
742
  export * from './space-qr-code';
742
743
  export * from './space-qr-code-dto';
743
744
  export * from './space-tree-dto';
@@ -775,6 +776,7 @@ export * from './supplier-select-dto';
775
776
  export * from './surveillance';
776
777
  export * from './surveillance-details-dto';
777
778
  export * from './surveillance-live-dto';
779
+ export * from './surveillance-point-vo';
778
780
  export * from './surveillance-roi-entity';
779
781
  export * from './surveillance-roi-list-vo';
780
782
  export * from './surveillance-settings-details-dto';
@@ -754,6 +754,7 @@ __exportStar(require("./space-edit-vo"), exports);
754
754
  __exportStar(require("./space-image-detail-dto"), exports);
755
755
  __exportStar(require("./space-industry-attribute"), exports);
756
756
  __exportStar(require("./space-point-dto"), exports);
757
+ __exportStar(require("./space-point-vo"), exports);
757
758
  __exportStar(require("./space-qr-code"), exports);
758
759
  __exportStar(require("./space-qr-code-dto"), exports);
759
760
  __exportStar(require("./space-tree-dto"), exports);
@@ -791,6 +792,7 @@ __exportStar(require("./supplier-select-dto"), exports);
791
792
  __exportStar(require("./surveillance"), exports);
792
793
  __exportStar(require("./surveillance-details-dto"), exports);
793
794
  __exportStar(require("./surveillance-live-dto"), exports);
795
+ __exportStar(require("./surveillance-point-vo"), exports);
794
796
  __exportStar(require("./surveillance-roi-entity"), exports);
795
797
  __exportStar(require("./surveillance-roi-list-vo"), exports);
796
798
  __exportStar(require("./surveillance-settings-details-dto"), exports);
@@ -0,0 +1,24 @@
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 SpacePointVo
16
+ */
17
+ export interface SpacePointVo {
18
+ /**
19
+ * 空间点位
20
+ * @type {Array<Array<number>>}
21
+ * @memberof SpacePointVo
22
+ */
23
+ 'spacePoint'?: Array<Array<number>>;
24
+ }
@@ -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 });
@@ -0,0 +1,24 @@
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 SurveillancePointVo
16
+ */
17
+ export interface SurveillancePointVo {
18
+ /**
19
+ * 监控点位
20
+ * @type {Array<number>}
21
+ * @memberof SurveillancePointVo
22
+ */
23
+ 'surveillancePoint'?: Array<number>;
24
+ }
@@ -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 });
@@ -141,18 +141,6 @@ export interface SyncDeviceUnitVo {
141
141
  * @memberof SyncDeviceUnitVo
142
142
  */
143
143
  'location'?: string;
144
- /**
145
- * 心跳时间
146
- * @type {string}
147
- * @memberof SyncDeviceUnitVo
148
- */
149
- 'heartBeatAt'?: string;
150
- /**
151
- * 下次心跳时间
152
- * @type {string}
153
- * @memberof SyncDeviceUnitVo
154
- */
155
- 'heartBeatExpiresAt'?: string;
156
144
  /**
157
145
  * 倍率
158
146
  * @type {number}
@@ -50,12 +50,6 @@ export interface GetUserWx200Response {
50
50
  * @memberof GetUserWx200Response
51
51
  */
52
52
  'locale'?: GetUserWx200ResponseLocale;
53
- /**
54
- *
55
- * @type {number}
56
- * @memberof GetUserWx200Response
57
- */
58
- 'bufferSize'?: number;
59
53
  /**
60
54
  *
61
55
  * @type {string}
@@ -76,16 +70,10 @@ export interface GetUserWx200Response {
76
70
  'outputStream'?: GetUserWx200ResponseOutputStream;
77
71
  /**
78
72
  *
79
- * @type {object}
80
- * @memberof GetUserWx200Response
81
- */
82
- 'writer'?: object;
83
- /**
84
- *
85
- * @type {string}
73
+ * @type {number}
86
74
  * @memberof GetUserWx200Response
87
75
  */
88
- 'characterEncoding'?: string;
76
+ 'bufferSize'?: number;
89
77
  /**
90
78
  *
91
79
  * @type {number}
@@ -98,5 +86,17 @@ export interface GetUserWx200Response {
98
86
  * @memberof GetUserWx200Response
99
87
  */
100
88
  'committed'?: boolean;
89
+ /**
90
+ *
91
+ * @type {object}
92
+ * @memberof GetUserWx200Response
93
+ */
94
+ 'writer'?: object;
95
+ /**
96
+ *
97
+ * @type {string}
98
+ * @memberof GetUserWx200Response
99
+ */
100
+ 'characterEncoding'?: string;
101
101
  }
102
102
 
package/models/index.ts CHANGED
@@ -738,6 +738,7 @@ export * from './space-edit-vo';
738
738
  export * from './space-image-detail-dto';
739
739
  export * from './space-industry-attribute';
740
740
  export * from './space-point-dto';
741
+ export * from './space-point-vo';
741
742
  export * from './space-qr-code';
742
743
  export * from './space-qr-code-dto';
743
744
  export * from './space-tree-dto';
@@ -775,6 +776,7 @@ export * from './supplier-select-dto';
775
776
  export * from './surveillance';
776
777
  export * from './surveillance-details-dto';
777
778
  export * from './surveillance-live-dto';
779
+ export * from './surveillance-point-vo';
778
780
  export * from './surveillance-roi-entity';
779
781
  export * from './surveillance-roi-list-vo';
780
782
  export * from './surveillance-settings-details-dto';
@@ -0,0 +1,30 @@
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 SpacePointVo
21
+ */
22
+ export interface SpacePointVo {
23
+ /**
24
+ * 空间点位
25
+ * @type {Array<Array<number>>}
26
+ * @memberof SpacePointVo
27
+ */
28
+ 'spacePoint'?: Array<Array<number>>;
29
+ }
30
+
@@ -0,0 +1,30 @@
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 SurveillancePointVo
21
+ */
22
+ export interface SurveillancePointVo {
23
+ /**
24
+ * 监控点位
25
+ * @type {Array<number>}
26
+ * @memberof SurveillancePointVo
27
+ */
28
+ 'surveillancePoint'?: Array<number>;
29
+ }
30
+
@@ -146,18 +146,6 @@ export interface SyncDeviceUnitVo {
146
146
  * @memberof SyncDeviceUnitVo
147
147
  */
148
148
  'location'?: string;
149
- /**
150
- * 心跳时间
151
- * @type {string}
152
- * @memberof SyncDeviceUnitVo
153
- */
154
- 'heartBeatAt'?: string;
155
- /**
156
- * 下次心跳时间
157
- * @type {string}
158
- * @memberof SyncDeviceUnitVo
159
- */
160
- 'heartBeatExpiresAt'?: string;
161
149
  /**
162
150
  * 倍率
163
151
  * @type {number}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.1.1-alpha.154",
3
+ "version": "4.1.1-alpha.160",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {