@gizone/rrs-client 3.11.16-alpha.82 → 3.11.16-alpha.83

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.
@@ -763,6 +763,7 @@ models/source-feedback-dto.ts
763
763
  models/source-work-order-inspection-dto.ts
764
764
  models/space-add-excel-dto.ts
765
765
  models/space-add-plan-vo.ts
766
+ models/space-add-point-vo.ts
766
767
  models/space-add-redis-list-dto.ts
767
768
  models/space-add-vo.ts
768
769
  models/space-detail-dto.ts
package/apis/space-api.ts CHANGED
@@ -40,6 +40,8 @@ import type { JsonResultSpaceImageDetailDTO } from '../models';
40
40
  // @ts-ignore
41
41
  import type { SpaceAddPlanVo } from '../models';
42
42
  // @ts-ignore
43
+ import type { SpaceAddPointVO } from '../models';
44
+ // @ts-ignore
43
45
  import type { SpaceAddVO } from '../models';
44
46
  // @ts-ignore
45
47
  import type { SpaceEditVO } from '../models';
@@ -717,18 +719,14 @@ export const SpaceApiAxiosParamCreator = function (configuration?: Configuration
717
719
  /**
718
720
  *
719
721
  * @summary 空间标点
720
- * @param {number} id
721
- * @param {Array<Array<number>>} requestBody
722
+ * @param {SpaceAddPointVO} spaceAddPointVO
722
723
  * @param {*} [options] Override http request option.
723
724
  * @throws {RequiredError}
724
725
  */
725
- spacePunctuation: async (id: number, requestBody: Array<Array<number>>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
726
- // verify required parameter 'id' is not null or undefined
727
- assertParamExists('spacePunctuation', 'id', id)
728
- // verify required parameter 'requestBody' is not null or undefined
729
- assertParamExists('spacePunctuation', 'requestBody', requestBody)
730
- const localVarPath = `/gizone/space/point/{id}`
731
- .replace(`{${"id"}}`, encodeURIComponent(String(id)));
726
+ spacePunctuation: async (spaceAddPointVO: SpaceAddPointVO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
727
+ // verify required parameter 'spaceAddPointVO' is not null or undefined
728
+ assertParamExists('spacePunctuation', 'spaceAddPointVO', spaceAddPointVO)
729
+ const localVarPath = `/gizone/space/punctuation`;
732
730
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
733
731
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
734
732
  let baseOptions;
@@ -751,7 +749,7 @@ export const SpaceApiAxiosParamCreator = function (configuration?: Configuration
751
749
  setSearchParams(localVarUrlObj, localVarQueryParameter);
752
750
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
753
751
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
754
- localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
752
+ localVarRequestOptions.data = serializeDataIfNeeded(spaceAddPointVO, localVarRequestOptions, configuration)
755
753
 
756
754
  return {
757
755
  url: toPathString(localVarUrlObj),
@@ -1137,13 +1135,12 @@ export const SpaceApiFp = function(configuration?: Configuration) {
1137
1135
  /**
1138
1136
  *
1139
1137
  * @summary 空间标点
1140
- * @param {number} id
1141
- * @param {Array<Array<number>>} requestBody
1138
+ * @param {SpaceAddPointVO} spaceAddPointVO
1142
1139
  * @param {*} [options] Override http request option.
1143
1140
  * @throws {RequiredError}
1144
1141
  */
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);
1142
+ async spacePunctuation(spaceAddPointVO: SpaceAddPointVO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>> {
1143
+ const localVarAxiosArgs = await localVarAxiosParamCreator.spacePunctuation(spaceAddPointVO, options);
1147
1144
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1148
1145
  const localVarOperationServerBasePath = operationServerMap['SpaceApi.spacePunctuation']?.[localVarOperationServerIndex]?.url;
1149
1146
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1377,7 +1374,7 @@ export const SpaceApiFactory = function (configuration?: Configuration, basePath
1377
1374
  * @throws {RequiredError}
1378
1375
  */
1379
1376
  spacePunctuation(requestParameters: SpaceApiSpacePunctuationRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult> {
1380
- return localVarFp.spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(axios, basePath));
1377
+ return localVarFp.spacePunctuation(requestParameters.spaceAddPointVO, options).then((request) => request(axios, basePath));
1381
1378
  },
1382
1379
  /**
1383
1380
  *
@@ -1661,17 +1658,10 @@ export interface SpaceApiSpacePlanUrlListRequest {
1661
1658
  export interface SpaceApiSpacePunctuationRequest {
1662
1659
  /**
1663
1660
  *
1664
- * @type {number}
1665
- * @memberof SpaceApiSpacePunctuation
1666
- */
1667
- readonly id: number
1668
-
1669
- /**
1670
- *
1671
- * @type {Array<Array<number>>}
1661
+ * @type {SpaceAddPointVO}
1672
1662
  * @memberof SpaceApiSpacePunctuation
1673
1663
  */
1674
- readonly requestBody: Array<Array<number>>
1664
+ readonly spaceAddPointVO: SpaceAddPointVO
1675
1665
  }
1676
1666
 
1677
1667
  /**
@@ -1937,7 +1927,7 @@ export class SpaceApi extends BaseAPI {
1937
1927
  * @memberof SpaceApi
1938
1928
  */
1939
1929
  public spacePunctuation(requestParameters: SpaceApiSpacePunctuationRequest, options?: RawAxiosRequestConfig) {
1940
- return SpaceApiFp(this.configuration).spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(this.axios, this.basePath));
1930
+ return SpaceApiFp(this.configuration).spacePunctuation(requestParameters.spaceAddPointVO, options).then((request) => request(this.axios, this.basePath));
1941
1931
  }
1942
1932
 
1943
1933
  /**
@@ -21,6 +21,7 @@ import type { JsonResultListSpaceUrlDTO } from '../models';
21
21
  import type { JsonResultSpaceAddRedisListDTO } from '../models';
22
22
  import type { JsonResultSpaceImageDetailDTO } from '../models';
23
23
  import type { SpaceAddPlanVo } from '../models';
24
+ import type { SpaceAddPointVO } from '../models';
24
25
  import type { SpaceAddVO } from '../models';
25
26
  import type { SpaceEditVO } from '../models';
26
27
  import type { SpaceQrCode } from '../models';
@@ -164,12 +165,11 @@ export declare const SpaceApiAxiosParamCreator: (configuration?: Configuration)
164
165
  /**
165
166
  *
166
167
  * @summary 空间标点
167
- * @param {number} id
168
- * @param {Array<Array<number>>} requestBody
168
+ * @param {SpaceAddPointVO} spaceAddPointVO
169
169
  * @param {*} [options] Override http request option.
170
170
  * @throws {RequiredError}
171
171
  */
172
- spacePunctuation: (id: number, requestBody: Array<Array<number>>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
172
+ spacePunctuation: (spaceAddPointVO: SpaceAddPointVO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
173
173
  /**
174
174
  *
175
175
  * @summary 批量生成二维码
@@ -341,12 +341,11 @@ export declare const SpaceApiFp: (configuration?: Configuration) => {
341
341
  /**
342
342
  *
343
343
  * @summary 空间标点
344
- * @param {number} id
345
- * @param {Array<Array<number>>} requestBody
344
+ * @param {SpaceAddPointVO} spaceAddPointVO
346
345
  * @param {*} [options] Override http request option.
347
346
  * @throws {RequiredError}
348
347
  */
349
- spacePunctuation(id: number, requestBody: Array<Array<number>>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
348
+ spacePunctuation(spaceAddPointVO: SpaceAddPointVO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
350
349
  /**
351
350
  *
352
351
  * @summary 批量生成二维码
@@ -774,16 +773,10 @@ export interface SpaceApiSpacePlanUrlListRequest {
774
773
  export interface SpaceApiSpacePunctuationRequest {
775
774
  /**
776
775
  *
777
- * @type {number}
778
- * @memberof SpaceApiSpacePunctuation
779
- */
780
- readonly id: number;
781
- /**
782
- *
783
- * @type {Array<Array<number>>}
776
+ * @type {SpaceAddPointVO}
784
777
  * @memberof SpaceApiSpacePunctuation
785
778
  */
786
- readonly requestBody: Array<Array<number>>;
779
+ readonly spaceAddPointVO: SpaceAddPointVO;
787
780
  }
788
781
  /**
789
782
  * Request parameters for spaceQrCode operation in SpaceApi.
@@ -582,18 +582,14 @@ const SpaceApiAxiosParamCreator = function (configuration) {
582
582
  /**
583
583
  *
584
584
  * @summary 空间标点
585
- * @param {number} id
586
- * @param {Array<Array<number>>} requestBody
585
+ * @param {SpaceAddPointVO} spaceAddPointVO
587
586
  * @param {*} [options] Override http request option.
588
587
  * @throws {RequiredError}
589
588
  */
590
- spacePunctuation: (id_1, requestBody_1, ...args_1) => __awaiter(this, [id_1, requestBody_1, ...args_1], void 0, function* (id, requestBody, options = {}) {
591
- // verify required parameter 'id' is not null or undefined
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);
595
- const localVarPath = `/gizone/space/point/{id}`
596
- .replace(`{${"id"}}`, encodeURIComponent(String(id)));
589
+ spacePunctuation: (spaceAddPointVO_1, ...args_1) => __awaiter(this, [spaceAddPointVO_1, ...args_1], void 0, function* (spaceAddPointVO, options = {}) {
590
+ // verify required parameter 'spaceAddPointVO' is not null or undefined
591
+ (0, common_1.assertParamExists)('spacePunctuation', 'spaceAddPointVO', spaceAddPointVO);
592
+ const localVarPath = `/gizone/space/punctuation`;
597
593
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
598
594
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
599
595
  let baseOptions;
@@ -610,7 +606,7 @@ const SpaceApiAxiosParamCreator = function (configuration) {
610
606
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
611
607
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
612
608
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
613
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(requestBody, localVarRequestOptions, configuration);
609
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(spaceAddPointVO, localVarRequestOptions, configuration);
614
610
  return {
615
611
  url: (0, common_1.toPathString)(localVarUrlObj),
616
612
  options: localVarRequestOptions,
@@ -1017,15 +1013,14 @@ const SpaceApiFp = function (configuration) {
1017
1013
  /**
1018
1014
  *
1019
1015
  * @summary 空间标点
1020
- * @param {number} id
1021
- * @param {Array<Array<number>>} requestBody
1016
+ * @param {SpaceAddPointVO} spaceAddPointVO
1022
1017
  * @param {*} [options] Override http request option.
1023
1018
  * @throws {RequiredError}
1024
1019
  */
1025
- spacePunctuation(id, requestBody, options) {
1020
+ spacePunctuation(spaceAddPointVO, options) {
1026
1021
  return __awaiter(this, void 0, void 0, function* () {
1027
1022
  var _a, _b, _c;
1028
- const localVarAxiosArgs = yield localVarAxiosParamCreator.spacePunctuation(id, requestBody, options);
1023
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.spacePunctuation(spaceAddPointVO, options);
1029
1024
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1030
1025
  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
1026
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1272,7 +1267,7 @@ const SpaceApiFactory = function (configuration, basePath, axios) {
1272
1267
  * @throws {RequiredError}
1273
1268
  */
1274
1269
  spacePunctuation(requestParameters, options) {
1275
- return localVarFp.spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(axios, basePath));
1270
+ return localVarFp.spacePunctuation(requestParameters.spaceAddPointVO, options).then((request) => request(axios, basePath));
1276
1271
  },
1277
1272
  /**
1278
1273
  *
@@ -1508,7 +1503,7 @@ class SpaceApi extends base_1.BaseAPI {
1508
1503
  * @memberof SpaceApi
1509
1504
  */
1510
1505
  spacePunctuation(requestParameters, options) {
1511
- return (0, exports.SpaceApiFp)(this.configuration).spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(this.axios, this.basePath));
1506
+ return (0, exports.SpaceApiFp)(this.configuration).spacePunctuation(requestParameters.spaceAddPointVO, options).then((request) => request(this.axios, this.basePath));
1512
1507
  }
1513
1508
  /**
1514
1509
  *
@@ -21,6 +21,7 @@ import type { JsonResultListSpaceUrlDTO } from '../models';
21
21
  import type { JsonResultSpaceAddRedisListDTO } from '../models';
22
22
  import type { JsonResultSpaceImageDetailDTO } from '../models';
23
23
  import type { SpaceAddPlanVo } from '../models';
24
+ import type { SpaceAddPointVO } from '../models';
24
25
  import type { SpaceAddVO } from '../models';
25
26
  import type { SpaceEditVO } from '../models';
26
27
  import type { SpaceQrCode } from '../models';
@@ -164,12 +165,11 @@ export declare const SpaceApiAxiosParamCreator: (configuration?: Configuration)
164
165
  /**
165
166
  *
166
167
  * @summary 空间标点
167
- * @param {number} id
168
- * @param {Array<Array<number>>} requestBody
168
+ * @param {SpaceAddPointVO} spaceAddPointVO
169
169
  * @param {*} [options] Override http request option.
170
170
  * @throws {RequiredError}
171
171
  */
172
- spacePunctuation: (id: number, requestBody: Array<Array<number>>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
172
+ spacePunctuation: (spaceAddPointVO: SpaceAddPointVO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
173
173
  /**
174
174
  *
175
175
  * @summary 批量生成二维码
@@ -341,12 +341,11 @@ export declare const SpaceApiFp: (configuration?: Configuration) => {
341
341
  /**
342
342
  *
343
343
  * @summary 空间标点
344
- * @param {number} id
345
- * @param {Array<Array<number>>} requestBody
344
+ * @param {SpaceAddPointVO} spaceAddPointVO
346
345
  * @param {*} [options] Override http request option.
347
346
  * @throws {RequiredError}
348
347
  */
349
- spacePunctuation(id: number, requestBody: Array<Array<number>>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
348
+ spacePunctuation(spaceAddPointVO: SpaceAddPointVO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
350
349
  /**
351
350
  *
352
351
  * @summary 批量生成二维码
@@ -774,16 +773,10 @@ export interface SpaceApiSpacePlanUrlListRequest {
774
773
  export interface SpaceApiSpacePunctuationRequest {
775
774
  /**
776
775
  *
777
- * @type {number}
778
- * @memberof SpaceApiSpacePunctuation
779
- */
780
- readonly id: number;
781
- /**
782
- *
783
- * @type {Array<Array<number>>}
776
+ * @type {SpaceAddPointVO}
784
777
  * @memberof SpaceApiSpacePunctuation
785
778
  */
786
- readonly requestBody: Array<Array<number>>;
779
+ readonly spaceAddPointVO: SpaceAddPointVO;
787
780
  }
788
781
  /**
789
782
  * Request parameters for spaceQrCode operation in SpaceApi.
@@ -579,18 +579,14 @@ export const SpaceApiAxiosParamCreator = function (configuration) {
579
579
  /**
580
580
  *
581
581
  * @summary 空间标点
582
- * @param {number} id
583
- * @param {Array<Array<number>>} requestBody
582
+ * @param {SpaceAddPointVO} spaceAddPointVO
584
583
  * @param {*} [options] Override http request option.
585
584
  * @throws {RequiredError}
586
585
  */
587
- spacePunctuation: (id_1, requestBody_1, ...args_1) => __awaiter(this, [id_1, requestBody_1, ...args_1], void 0, function* (id, requestBody, options = {}) {
588
- // verify required parameter 'id' is not null or undefined
589
- assertParamExists('spacePunctuation', 'id', id);
590
- // verify required parameter 'requestBody' is not null or undefined
591
- assertParamExists('spacePunctuation', 'requestBody', requestBody);
592
- const localVarPath = `/gizone/space/point/{id}`
593
- .replace(`{${"id"}}`, encodeURIComponent(String(id)));
586
+ spacePunctuation: (spaceAddPointVO_1, ...args_1) => __awaiter(this, [spaceAddPointVO_1, ...args_1], void 0, function* (spaceAddPointVO, options = {}) {
587
+ // verify required parameter 'spaceAddPointVO' is not null or undefined
588
+ assertParamExists('spacePunctuation', 'spaceAddPointVO', spaceAddPointVO);
589
+ const localVarPath = `/gizone/space/punctuation`;
594
590
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
595
591
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
596
592
  let baseOptions;
@@ -607,7 +603,7 @@ export const SpaceApiAxiosParamCreator = function (configuration) {
607
603
  setSearchParams(localVarUrlObj, localVarQueryParameter);
608
604
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
609
605
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
610
- localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration);
606
+ localVarRequestOptions.data = serializeDataIfNeeded(spaceAddPointVO, localVarRequestOptions, configuration);
611
607
  return {
612
608
  url: toPathString(localVarUrlObj),
613
609
  options: localVarRequestOptions,
@@ -1013,15 +1009,14 @@ export const SpaceApiFp = function (configuration) {
1013
1009
  /**
1014
1010
  *
1015
1011
  * @summary 空间标点
1016
- * @param {number} id
1017
- * @param {Array<Array<number>>} requestBody
1012
+ * @param {SpaceAddPointVO} spaceAddPointVO
1018
1013
  * @param {*} [options] Override http request option.
1019
1014
  * @throws {RequiredError}
1020
1015
  */
1021
- spacePunctuation(id, requestBody, options) {
1016
+ spacePunctuation(spaceAddPointVO, options) {
1022
1017
  return __awaiter(this, void 0, void 0, function* () {
1023
1018
  var _a, _b, _c;
1024
- const localVarAxiosArgs = yield localVarAxiosParamCreator.spacePunctuation(id, requestBody, options);
1019
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.spacePunctuation(spaceAddPointVO, options);
1025
1020
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1026
1021
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SpaceApi.spacePunctuation']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1027
1022
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1267,7 +1262,7 @@ export const SpaceApiFactory = function (configuration, basePath, axios) {
1267
1262
  * @throws {RequiredError}
1268
1263
  */
1269
1264
  spacePunctuation(requestParameters, options) {
1270
- return localVarFp.spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(axios, basePath));
1265
+ return localVarFp.spacePunctuation(requestParameters.spaceAddPointVO, options).then((request) => request(axios, basePath));
1271
1266
  },
1272
1267
  /**
1273
1268
  *
@@ -1502,7 +1497,7 @@ export class SpaceApi extends BaseAPI {
1502
1497
  * @memberof SpaceApi
1503
1498
  */
1504
1499
  spacePunctuation(requestParameters, options) {
1505
- return SpaceApiFp(this.configuration).spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(this.axios, this.basePath));
1500
+ return SpaceApiFp(this.configuration).spacePunctuation(requestParameters.spaceAddPointVO, options).then((request) => request(this.axios, this.basePath));
1506
1501
  }
1507
1502
  /**
1508
1503
  *
@@ -35,12 +35,6 @@ export interface GetUserWx200Response {
35
35
  * @memberof GetUserWx200Response
36
36
  */
37
37
  'trailerFields'?: object;
38
- /**
39
- *
40
- * @type {GetUserWx200ResponseLocale}
41
- * @memberof GetUserWx200Response
42
- */
43
- 'locale'?: GetUserWx200ResponseLocale;
44
38
  /**
45
39
  *
46
40
  * @type {string}
@@ -59,6 +53,12 @@ export interface GetUserWx200Response {
59
53
  * @memberof GetUserWx200Response
60
54
  */
61
55
  'outputStream'?: GetUserWx200ResponseOutputStream;
56
+ /**
57
+ *
58
+ * @type {GetUserWx200ResponseLocale}
59
+ * @memberof GetUserWx200Response
60
+ */
61
+ 'locale'?: GetUserWx200ResponseLocale;
62
62
  /**
63
63
  *
64
64
  * @type {number}
@@ -703,6 +703,7 @@ export * from './source-feedback-dto';
703
703
  export * from './source-work-order-inspection-dto';
704
704
  export * from './space-add-excel-dto';
705
705
  export * from './space-add-plan-vo';
706
+ export * from './space-add-point-vo';
706
707
  export * from './space-add-redis-list-dto';
707
708
  export * from './space-add-vo';
708
709
  export * from './space-detail-dto';
@@ -703,6 +703,7 @@ export * from './source-feedback-dto';
703
703
  export * from './source-work-order-inspection-dto';
704
704
  export * from './space-add-excel-dto';
705
705
  export * from './space-add-plan-vo';
706
+ export * from './space-add-point-vo';
706
707
  export * from './space-add-redis-list-dto';
707
708
  export * from './space-add-vo';
708
709
  export * from './space-detail-dto';
@@ -36,16 +36,16 @@ export interface IPageAccessVO {
36
36
  'records'?: Array<AccessVO>;
37
37
  /**
38
38
  *
39
- * @type {boolean}
39
+ * @type {number}
40
40
  * @memberof IPageAccessVO
41
41
  */
42
- 'searchCount'?: boolean;
42
+ 'pages'?: number;
43
43
  /**
44
44
  *
45
- * @type {number}
45
+ * @type {boolean}
46
46
  * @memberof IPageAccessVO
47
47
  */
48
- 'pages'?: number;
48
+ 'searchCount'?: boolean;
49
49
  /**
50
50
  *
51
51
  * @type {boolean}
@@ -0,0 +1,31 @@
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
+ import type { SpacePointDTO } from './space-point-dto';
13
+ /**
14
+ * 空间标点参数
15
+ * @export
16
+ * @interface SpaceAddPointVO
17
+ */
18
+ export interface SpaceAddPointVO {
19
+ /**
20
+ * 空间id
21
+ * @type {number}
22
+ * @memberof SpaceAddPointVO
23
+ */
24
+ 'spaceId'?: number;
25
+ /**
26
+ *
27
+ * @type {SpacePointDTO}
28
+ * @memberof SpaceAddPointVO
29
+ */
30
+ 'spacePointDTO'?: SpacePointDTO;
31
+ }
@@ -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 {};
@@ -79,10 +79,10 @@ export interface SpaceDetailDTO {
79
79
  'imageUrl'?: Array<string>;
80
80
  /**
81
81
  * 空间点位
82
- * @type {Array<Array<number>>}
82
+ * @type {string}
83
83
  * @memberof SpaceDetailDTO
84
84
  */
85
- 'spacePoint'?: Array<Array<number>>;
85
+ 'spacePoint'?: string;
86
86
  /**
87
87
  *
88
88
  * @type {SpacePointDTO}
@@ -16,11 +16,29 @@
16
16
  */
17
17
  export interface SpacePointDTO {
18
18
  /**
19
- * 空间id
20
- * @type {Array<Array<number>>}
19
+ *
20
+ * @type {Array<string>}
21
+ * @memberof SpacePointDTO
22
+ */
23
+ 'arrSlice'?: Array<string>;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof SpacePointDTO
28
+ */
29
+ 'origin'?: string;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof SpacePointDTO
34
+ */
35
+ 'containerWidth'?: number;
36
+ /**
37
+ *
38
+ * @type {number}
21
39
  * @memberof SpacePointDTO
22
40
  */
23
- 'spacePoint'?: Array<Array<number>>;
41
+ 'containerHeight'?: number;
24
42
  /**
25
43
  * 空间id
26
44
  * @type {number}
@@ -357,14 +357,14 @@ export interface SysUser {
357
357
  'supplierId'?: number;
358
358
  /**
359
359
  *
360
- * @type {number}
360
+ * @type {string}
361
361
  * @memberof SysUser
362
362
  */
363
- 'cuserId'?: number;
363
+ 'cid'?: string;
364
364
  /**
365
365
  *
366
- * @type {string}
366
+ * @type {number}
367
367
  * @memberof SysUser
368
368
  */
369
- 'cid'?: string;
369
+ 'cuserId'?: number;
370
370
  }
@@ -35,12 +35,6 @@ export interface GetUserWx200Response {
35
35
  * @memberof GetUserWx200Response
36
36
  */
37
37
  'trailerFields'?: object;
38
- /**
39
- *
40
- * @type {GetUserWx200ResponseLocale}
41
- * @memberof GetUserWx200Response
42
- */
43
- 'locale'?: GetUserWx200ResponseLocale;
44
38
  /**
45
39
  *
46
40
  * @type {string}
@@ -59,6 +53,12 @@ export interface GetUserWx200Response {
59
53
  * @memberof GetUserWx200Response
60
54
  */
61
55
  'outputStream'?: GetUserWx200ResponseOutputStream;
56
+ /**
57
+ *
58
+ * @type {GetUserWx200ResponseLocale}
59
+ * @memberof GetUserWx200Response
60
+ */
61
+ 'locale'?: GetUserWx200ResponseLocale;
62
62
  /**
63
63
  *
64
64
  * @type {number}
@@ -703,6 +703,7 @@ export * from './source-feedback-dto';
703
703
  export * from './source-work-order-inspection-dto';
704
704
  export * from './space-add-excel-dto';
705
705
  export * from './space-add-plan-vo';
706
+ export * from './space-add-point-vo';
706
707
  export * from './space-add-redis-list-dto';
707
708
  export * from './space-add-vo';
708
709
  export * from './space-detail-dto';
@@ -719,6 +719,7 @@ __exportStar(require("./source-feedback-dto"), exports);
719
719
  __exportStar(require("./source-work-order-inspection-dto"), exports);
720
720
  __exportStar(require("./space-add-excel-dto"), exports);
721
721
  __exportStar(require("./space-add-plan-vo"), exports);
722
+ __exportStar(require("./space-add-point-vo"), exports);
722
723
  __exportStar(require("./space-add-redis-list-dto"), exports);
723
724
  __exportStar(require("./space-add-vo"), exports);
724
725
  __exportStar(require("./space-detail-dto"), exports);
@@ -36,16 +36,16 @@ export interface IPageAccessVO {
36
36
  'records'?: Array<AccessVO>;
37
37
  /**
38
38
  *
39
- * @type {boolean}
39
+ * @type {number}
40
40
  * @memberof IPageAccessVO
41
41
  */
42
- 'searchCount'?: boolean;
42
+ 'pages'?: number;
43
43
  /**
44
44
  *
45
- * @type {number}
45
+ * @type {boolean}
46
46
  * @memberof IPageAccessVO
47
47
  */
48
- 'pages'?: number;
48
+ 'searchCount'?: boolean;
49
49
  /**
50
50
  *
51
51
  * @type {boolean}
@@ -0,0 +1,31 @@
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
+ import type { SpacePointDTO } from './space-point-dto';
13
+ /**
14
+ * 空间标点参数
15
+ * @export
16
+ * @interface SpaceAddPointVO
17
+ */
18
+ export interface SpaceAddPointVO {
19
+ /**
20
+ * 空间id
21
+ * @type {number}
22
+ * @memberof SpaceAddPointVO
23
+ */
24
+ 'spaceId'?: number;
25
+ /**
26
+ *
27
+ * @type {SpacePointDTO}
28
+ * @memberof SpaceAddPointVO
29
+ */
30
+ 'spacePointDTO'?: SpacePointDTO;
31
+ }
@@ -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 });
@@ -79,10 +79,10 @@ export interface SpaceDetailDTO {
79
79
  'imageUrl'?: Array<string>;
80
80
  /**
81
81
  * 空间点位
82
- * @type {Array<Array<number>>}
82
+ * @type {string}
83
83
  * @memberof SpaceDetailDTO
84
84
  */
85
- 'spacePoint'?: Array<Array<number>>;
85
+ 'spacePoint'?: string;
86
86
  /**
87
87
  *
88
88
  * @type {SpacePointDTO}
@@ -16,11 +16,29 @@
16
16
  */
17
17
  export interface SpacePointDTO {
18
18
  /**
19
- * 空间id
20
- * @type {Array<Array<number>>}
19
+ *
20
+ * @type {Array<string>}
21
+ * @memberof SpacePointDTO
22
+ */
23
+ 'arrSlice'?: Array<string>;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof SpacePointDTO
28
+ */
29
+ 'origin'?: string;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof SpacePointDTO
34
+ */
35
+ 'containerWidth'?: number;
36
+ /**
37
+ *
38
+ * @type {number}
21
39
  * @memberof SpacePointDTO
22
40
  */
23
- 'spacePoint'?: Array<Array<number>>;
41
+ 'containerHeight'?: number;
24
42
  /**
25
43
  * 空间id
26
44
  * @type {number}
@@ -357,14 +357,14 @@ export interface SysUser {
357
357
  'supplierId'?: number;
358
358
  /**
359
359
  *
360
- * @type {number}
360
+ * @type {string}
361
361
  * @memberof SysUser
362
362
  */
363
- 'cuserId'?: number;
363
+ 'cid'?: string;
364
364
  /**
365
365
  *
366
- * @type {string}
366
+ * @type {number}
367
367
  * @memberof SysUser
368
368
  */
369
- 'cid'?: string;
369
+ 'cuserId'?: number;
370
370
  }
@@ -44,12 +44,6 @@ export interface GetUserWx200Response {
44
44
  * @memberof GetUserWx200Response
45
45
  */
46
46
  'trailerFields'?: object;
47
- /**
48
- *
49
- * @type {GetUserWx200ResponseLocale}
50
- * @memberof GetUserWx200Response
51
- */
52
- 'locale'?: GetUserWx200ResponseLocale;
53
47
  /**
54
48
  *
55
49
  * @type {string}
@@ -68,6 +62,12 @@ export interface GetUserWx200Response {
68
62
  * @memberof GetUserWx200Response
69
63
  */
70
64
  'outputStream'?: GetUserWx200ResponseOutputStream;
65
+ /**
66
+ *
67
+ * @type {GetUserWx200ResponseLocale}
68
+ * @memberof GetUserWx200Response
69
+ */
70
+ 'locale'?: GetUserWx200ResponseLocale;
71
71
  /**
72
72
  *
73
73
  * @type {number}
package/models/index.ts CHANGED
@@ -703,6 +703,7 @@ export * from './source-feedback-dto';
703
703
  export * from './source-work-order-inspection-dto';
704
704
  export * from './space-add-excel-dto';
705
705
  export * from './space-add-plan-vo';
706
+ export * from './space-add-point-vo';
706
707
  export * from './space-add-redis-list-dto';
707
708
  export * from './space-add-vo';
708
709
  export * from './space-detail-dto';
@@ -43,16 +43,16 @@ export interface IPageAccessVO {
43
43
  'records'?: Array<AccessVO>;
44
44
  /**
45
45
  *
46
- * @type {boolean}
46
+ * @type {number}
47
47
  * @memberof IPageAccessVO
48
48
  */
49
- 'searchCount'?: boolean;
49
+ 'pages'?: number;
50
50
  /**
51
51
  *
52
- * @type {number}
52
+ * @type {boolean}
53
53
  * @memberof IPageAccessVO
54
54
  */
55
- 'pages'?: number;
55
+ 'searchCount'?: boolean;
56
56
  /**
57
57
  *
58
58
  * @type {boolean}
@@ -0,0 +1,39 @@
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 { SpacePointDTO } from './space-point-dto';
19
+
20
+ /**
21
+ * 空间标点参数
22
+ * @export
23
+ * @interface SpaceAddPointVO
24
+ */
25
+ export interface SpaceAddPointVO {
26
+ /**
27
+ * 空间id
28
+ * @type {number}
29
+ * @memberof SpaceAddPointVO
30
+ */
31
+ 'spaceId'?: number;
32
+ /**
33
+ *
34
+ * @type {SpacePointDTO}
35
+ * @memberof SpaceAddPointVO
36
+ */
37
+ 'spacePointDTO'?: SpacePointDTO;
38
+ }
39
+
@@ -88,10 +88,10 @@ export interface SpaceDetailDTO {
88
88
  'imageUrl'?: Array<string>;
89
89
  /**
90
90
  * 空间点位
91
- * @type {Array<Array<number>>}
91
+ * @type {string}
92
92
  * @memberof SpaceDetailDTO
93
93
  */
94
- 'spacePoint'?: Array<Array<number>>;
94
+ 'spacePoint'?: string;
95
95
  /**
96
96
  *
97
97
  * @type {SpacePointDTO}
@@ -21,11 +21,29 @@
21
21
  */
22
22
  export interface SpacePointDTO {
23
23
  /**
24
- * 空间id
25
- * @type {Array<Array<number>>}
24
+ *
25
+ * @type {Array<string>}
26
+ * @memberof SpacePointDTO
27
+ */
28
+ 'arrSlice'?: Array<string>;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof SpacePointDTO
33
+ */
34
+ 'origin'?: string;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof SpacePointDTO
39
+ */
40
+ 'containerWidth'?: number;
41
+ /**
42
+ *
43
+ * @type {number}
26
44
  * @memberof SpacePointDTO
27
45
  */
28
- 'spacePoint'?: Array<Array<number>>;
46
+ 'containerHeight'?: number;
29
47
  /**
30
48
  * 空间id
31
49
  * @type {number}
@@ -364,15 +364,15 @@ export interface SysUser {
364
364
  'supplierId'?: number;
365
365
  /**
366
366
  *
367
- * @type {number}
367
+ * @type {string}
368
368
  * @memberof SysUser
369
369
  */
370
- 'cuserId'?: number;
370
+ 'cid'?: string;
371
371
  /**
372
372
  *
373
- * @type {string}
373
+ * @type {number}
374
374
  * @memberof SysUser
375
375
  */
376
- 'cid'?: string;
376
+ 'cuserId'?: number;
377
377
  }
378
378
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "3.11.16-alpha.82",
3
+ "version": "3.11.16-alpha.83",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {