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