@gizone/rrs-client 4.2.0-alpha.289 → 4.2.0-alpha.292
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 +1 -0
- package/apis/access-api.ts +91 -0
- package/apis/open-api-api.ts +92 -0
- package/dist/apis/access-api.d.ts +47 -0
- package/dist/apis/access-api.js +70 -0
- package/dist/apis/open-api-api.d.ts +47 -0
- package/dist/apis/open-api-api.js +71 -0
- package/dist/esm/apis/access-api.d.ts +47 -0
- package/dist/esm/apis/access-api.js +70 -0
- package/dist/esm/apis/open-api-api.d.ts +47 -0
- package/dist/esm/apis/open-api-api.js +71 -0
- package/dist/esm/models/access-company-config-sort-vo.d.ts +30 -0
- package/dist/esm/models/access-company-config-sort-vo.js +14 -0
- package/dist/esm/models/index.d.ts +1 -0
- package/dist/esm/models/index.js +1 -0
- package/dist/esm/models/json-result-json-result-list-space-tree-dto.d.ts +1 -1
- package/dist/esm/models/json-result-list-space-tree-dto.d.ts +1 -1
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/models/access-company-config-sort-vo.d.ts +30 -0
- package/dist/models/access-company-config-sort-vo.js +15 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/json-result-json-result-list-space-tree-dto.d.ts +1 -1
- package/dist/models/json-result-list-space-tree-dto.d.ts +1 -1
- package/dist/models/sys-user.d.ts +4 -4
- package/models/access-company-config-sort-vo.ts +36 -0
- package/models/index.ts +1 -0
- package/models/json-result-json-result-list-space-tree-dto.ts +1 -1
- package/models/json-result-list-space-tree-dto.ts +1 -1
- package/models/sys-user.ts +4 -4
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@ import type { Configuration } from '../configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import type { AccessCompanyConfigAddOrUpdateVo } from '../models';
|
|
16
|
+
import type { AccessCompanyConfigSortVo } from '../models';
|
|
16
17
|
import type { AccessConfigVo } from '../models';
|
|
17
18
|
import type { AccessVisitorPersonTypeConfigVo } from '../models';
|
|
18
19
|
import type { AdmissionTermsRecordAddBO } from '../models';
|
|
@@ -40,6 +41,14 @@ export declare const AccessApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
40
41
|
* @throws {RequiredError}
|
|
41
42
|
*/
|
|
42
43
|
accessCompanyConfigAdd: (accessCompanyConfigAddOrUpdateVo: AccessCompanyConfigAddOrUpdateVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @summary 批量更新出入访问公司排序
|
|
47
|
+
* @param {Array<AccessCompanyConfigSortVo>} accessCompanyConfigSortVo
|
|
48
|
+
* @param {*} [options] Override http request option.
|
|
49
|
+
* @throws {RequiredError}
|
|
50
|
+
*/
|
|
51
|
+
accessCompanyConfigBatchUpdateSort: (accessCompanyConfigSortVo: Array<AccessCompanyConfigSortVo>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43
52
|
/**
|
|
44
53
|
*
|
|
45
54
|
* @summary 删除出入访问公司
|
|
@@ -172,6 +181,14 @@ export declare const AccessApiFp: (configuration?: Configuration) => {
|
|
|
172
181
|
* @throws {RequiredError}
|
|
173
182
|
*/
|
|
174
183
|
accessCompanyConfigAdd(accessCompanyConfigAddOrUpdateVo: AccessCompanyConfigAddOrUpdateVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultBoolean>>;
|
|
184
|
+
/**
|
|
185
|
+
*
|
|
186
|
+
* @summary 批量更新出入访问公司排序
|
|
187
|
+
* @param {Array<AccessCompanyConfigSortVo>} accessCompanyConfigSortVo
|
|
188
|
+
* @param {*} [options] Override http request option.
|
|
189
|
+
* @throws {RequiredError}
|
|
190
|
+
*/
|
|
191
|
+
accessCompanyConfigBatchUpdateSort(accessCompanyConfigSortVo: Array<AccessCompanyConfigSortVo>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
|
|
175
192
|
/**
|
|
176
193
|
*
|
|
177
194
|
* @summary 删除出入访问公司
|
|
@@ -304,6 +321,14 @@ export declare const AccessApiFactory: (configuration?: Configuration, basePath?
|
|
|
304
321
|
* @throws {RequiredError}
|
|
305
322
|
*/
|
|
306
323
|
accessCompanyConfigAdd(requestParameters: AccessApiAccessCompanyConfigAddRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultBoolean>;
|
|
324
|
+
/**
|
|
325
|
+
*
|
|
326
|
+
* @summary 批量更新出入访问公司排序
|
|
327
|
+
* @param {AccessApiAccessCompanyConfigBatchUpdateSortRequest} requestParameters Request parameters.
|
|
328
|
+
* @param {*} [options] Override http request option.
|
|
329
|
+
* @throws {RequiredError}
|
|
330
|
+
*/
|
|
331
|
+
accessCompanyConfigBatchUpdateSort(requestParameters: AccessApiAccessCompanyConfigBatchUpdateSortRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
|
|
307
332
|
/**
|
|
308
333
|
*
|
|
309
334
|
* @summary 删除出入访问公司
|
|
@@ -430,6 +455,19 @@ export interface AccessApiAccessCompanyConfigAddRequest {
|
|
|
430
455
|
*/
|
|
431
456
|
readonly accessCompanyConfigAddOrUpdateVo: AccessCompanyConfigAddOrUpdateVo;
|
|
432
457
|
}
|
|
458
|
+
/**
|
|
459
|
+
* Request parameters for accessCompanyConfigBatchUpdateSort operation in AccessApi.
|
|
460
|
+
* @export
|
|
461
|
+
* @interface AccessApiAccessCompanyConfigBatchUpdateSortRequest
|
|
462
|
+
*/
|
|
463
|
+
export interface AccessApiAccessCompanyConfigBatchUpdateSortRequest {
|
|
464
|
+
/**
|
|
465
|
+
*
|
|
466
|
+
* @type {Array<AccessCompanyConfigSortVo>}
|
|
467
|
+
* @memberof AccessApiAccessCompanyConfigBatchUpdateSort
|
|
468
|
+
*/
|
|
469
|
+
readonly accessCompanyConfigSortVo: Array<AccessCompanyConfigSortVo>;
|
|
470
|
+
}
|
|
433
471
|
/**
|
|
434
472
|
* Request parameters for accessCompanyConfigDelete operation in AccessApi.
|
|
435
473
|
* @export
|
|
@@ -664,6 +702,15 @@ export declare class AccessApi extends BaseAPI {
|
|
|
664
702
|
* @memberof AccessApi
|
|
665
703
|
*/
|
|
666
704
|
accessCompanyConfigAdd(requestParameters: AccessApiAccessCompanyConfigAddRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultBoolean, any>>;
|
|
705
|
+
/**
|
|
706
|
+
*
|
|
707
|
+
* @summary 批量更新出入访问公司排序
|
|
708
|
+
* @param {AccessApiAccessCompanyConfigBatchUpdateSortRequest} requestParameters Request parameters.
|
|
709
|
+
* @param {*} [options] Override http request option.
|
|
710
|
+
* @throws {RequiredError}
|
|
711
|
+
* @memberof AccessApi
|
|
712
|
+
*/
|
|
713
|
+
accessCompanyConfigBatchUpdateSort(requestParameters: AccessApiAccessCompanyConfigBatchUpdateSortRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
|
|
667
714
|
/**
|
|
668
715
|
*
|
|
669
716
|
* @summary 删除出入访问公司
|
|
@@ -65,6 +65,39 @@ export const AccessApiAxiosParamCreator = function (configuration) {
|
|
|
65
65
|
options: localVarRequestOptions,
|
|
66
66
|
};
|
|
67
67
|
}),
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @summary 批量更新出入访问公司排序
|
|
71
|
+
* @param {Array<AccessCompanyConfigSortVo>} accessCompanyConfigSortVo
|
|
72
|
+
* @param {*} [options] Override http request option.
|
|
73
|
+
* @throws {RequiredError}
|
|
74
|
+
*/
|
|
75
|
+
accessCompanyConfigBatchUpdateSort: (accessCompanyConfigSortVo_1, ...args_1) => __awaiter(this, [accessCompanyConfigSortVo_1, ...args_1], void 0, function* (accessCompanyConfigSortVo, options = {}) {
|
|
76
|
+
// verify required parameter 'accessCompanyConfigSortVo' is not null or undefined
|
|
77
|
+
assertParamExists('accessCompanyConfigBatchUpdateSort', 'accessCompanyConfigSortVo', accessCompanyConfigSortVo);
|
|
78
|
+
const localVarPath = `/access/company-config/batch/sort`;
|
|
79
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
80
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
81
|
+
let baseOptions;
|
|
82
|
+
if (configuration) {
|
|
83
|
+
baseOptions = configuration.baseOptions;
|
|
84
|
+
}
|
|
85
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
86
|
+
const localVarHeaderParameter = {};
|
|
87
|
+
const localVarQueryParameter = {};
|
|
88
|
+
// authentication tokenScheme required
|
|
89
|
+
// http bearer authentication required
|
|
90
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
91
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
92
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
93
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
94
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
95
|
+
localVarRequestOptions.data = serializeDataIfNeeded(accessCompanyConfigSortVo, localVarRequestOptions, configuration);
|
|
96
|
+
return {
|
|
97
|
+
url: toPathString(localVarUrlObj),
|
|
98
|
+
options: localVarRequestOptions,
|
|
99
|
+
};
|
|
100
|
+
}),
|
|
68
101
|
/**
|
|
69
102
|
*
|
|
70
103
|
* @summary 删除出入访问公司
|
|
@@ -576,6 +609,22 @@ export const AccessApiFp = function (configuration) {
|
|
|
576
609
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
577
610
|
});
|
|
578
611
|
},
|
|
612
|
+
/**
|
|
613
|
+
*
|
|
614
|
+
* @summary 批量更新出入访问公司排序
|
|
615
|
+
* @param {Array<AccessCompanyConfigSortVo>} accessCompanyConfigSortVo
|
|
616
|
+
* @param {*} [options] Override http request option.
|
|
617
|
+
* @throws {RequiredError}
|
|
618
|
+
*/
|
|
619
|
+
accessCompanyConfigBatchUpdateSort(accessCompanyConfigSortVo, options) {
|
|
620
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
621
|
+
var _a, _b, _c;
|
|
622
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.accessCompanyConfigBatchUpdateSort(accessCompanyConfigSortVo, options);
|
|
623
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
624
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AccessApi.accessCompanyConfigBatchUpdateSort']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
625
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
626
|
+
});
|
|
627
|
+
},
|
|
579
628
|
/**
|
|
580
629
|
*
|
|
581
630
|
* @summary 删除出入访问公司
|
|
@@ -825,6 +874,16 @@ export const AccessApiFactory = function (configuration, basePath, axios) {
|
|
|
825
874
|
accessCompanyConfigAdd(requestParameters, options) {
|
|
826
875
|
return localVarFp.accessCompanyConfigAdd(requestParameters.accessCompanyConfigAddOrUpdateVo, options).then((request) => request(axios, basePath));
|
|
827
876
|
},
|
|
877
|
+
/**
|
|
878
|
+
*
|
|
879
|
+
* @summary 批量更新出入访问公司排序
|
|
880
|
+
* @param {AccessApiAccessCompanyConfigBatchUpdateSortRequest} requestParameters Request parameters.
|
|
881
|
+
* @param {*} [options] Override http request option.
|
|
882
|
+
* @throws {RequiredError}
|
|
883
|
+
*/
|
|
884
|
+
accessCompanyConfigBatchUpdateSort(requestParameters, options) {
|
|
885
|
+
return localVarFp.accessCompanyConfigBatchUpdateSort(requestParameters.accessCompanyConfigSortVo, options).then((request) => request(axios, basePath));
|
|
886
|
+
},
|
|
828
887
|
/**
|
|
829
888
|
*
|
|
830
889
|
* @summary 删除出入访问公司
|
|
@@ -985,6 +1044,17 @@ export class AccessApi extends BaseAPI {
|
|
|
985
1044
|
accessCompanyConfigAdd(requestParameters, options) {
|
|
986
1045
|
return AccessApiFp(this.configuration).accessCompanyConfigAdd(requestParameters.accessCompanyConfigAddOrUpdateVo, options).then((request) => request(this.axios, this.basePath));
|
|
987
1046
|
}
|
|
1047
|
+
/**
|
|
1048
|
+
*
|
|
1049
|
+
* @summary 批量更新出入访问公司排序
|
|
1050
|
+
* @param {AccessApiAccessCompanyConfigBatchUpdateSortRequest} requestParameters Request parameters.
|
|
1051
|
+
* @param {*} [options] Override http request option.
|
|
1052
|
+
* @throws {RequiredError}
|
|
1053
|
+
* @memberof AccessApi
|
|
1054
|
+
*/
|
|
1055
|
+
accessCompanyConfigBatchUpdateSort(requestParameters, options) {
|
|
1056
|
+
return AccessApiFp(this.configuration).accessCompanyConfigBatchUpdateSort(requestParameters.accessCompanyConfigSortVo, options).then((request) => request(this.axios, this.basePath));
|
|
1057
|
+
}
|
|
988
1058
|
/**
|
|
989
1059
|
*
|
|
990
1060
|
* @summary 删除出入访问公司
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
import type { Configuration } from '../configuration';
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import type { JsonResultJsonResultListSpaceTreeDTO } from '../models';
|
|
15
16
|
import type { JsonResultPageDtoSurveillanceDetailsDto } from '../models';
|
|
16
17
|
import type { JsonResultVoid } from '../models';
|
|
17
18
|
import type { SyncEquipmentStatusVo } from '../models';
|
|
@@ -37,6 +38,14 @@ export declare const OpenApiApiAxiosParamCreator: (configuration?: Configuration
|
|
|
37
38
|
* @throws {RequiredError}
|
|
38
39
|
*/
|
|
39
40
|
openApiEquipmentBatchStatusSync: (syncEquipmentStatusVo: SyncEquipmentStatusVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @summary 获取空间列表
|
|
44
|
+
* @param {string} famParkCode 园区编码
|
|
45
|
+
* @param {*} [options] Override http request option.
|
|
46
|
+
* @throws {RequiredError}
|
|
47
|
+
*/
|
|
48
|
+
openApiSpaceList: (famParkCode: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40
49
|
/**
|
|
41
50
|
*
|
|
42
51
|
* @summary 获取监控列表
|
|
@@ -67,6 +76,14 @@ export declare const OpenApiApiFp: (configuration?: Configuration) => {
|
|
|
67
76
|
* @throws {RequiredError}
|
|
68
77
|
*/
|
|
69
78
|
openApiEquipmentBatchStatusSync(syncEquipmentStatusVo: SyncEquipmentStatusVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @summary 获取空间列表
|
|
82
|
+
* @param {string} famParkCode 园区编码
|
|
83
|
+
* @param {*} [options] Override http request option.
|
|
84
|
+
* @throws {RequiredError}
|
|
85
|
+
*/
|
|
86
|
+
openApiSpaceList(famParkCode: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultJsonResultListSpaceTreeDTO>>;
|
|
70
87
|
/**
|
|
71
88
|
*
|
|
72
89
|
* @summary 获取监控列表
|
|
@@ -97,6 +114,14 @@ export declare const OpenApiApiFactory: (configuration?: Configuration, basePath
|
|
|
97
114
|
* @throws {RequiredError}
|
|
98
115
|
*/
|
|
99
116
|
openApiEquipmentBatchStatusSync(requestParameters: OpenApiApiOpenApiEquipmentBatchStatusSyncRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
|
|
117
|
+
/**
|
|
118
|
+
*
|
|
119
|
+
* @summary 获取空间列表
|
|
120
|
+
* @param {OpenApiApiOpenApiSpaceListRequest} requestParameters Request parameters.
|
|
121
|
+
* @param {*} [options] Override http request option.
|
|
122
|
+
* @throws {RequiredError}
|
|
123
|
+
*/
|
|
124
|
+
openApiSpaceList(requestParameters: OpenApiApiOpenApiSpaceListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultJsonResultListSpaceTreeDTO>;
|
|
100
125
|
/**
|
|
101
126
|
*
|
|
102
127
|
* @summary 获取监控列表
|
|
@@ -132,6 +157,19 @@ export interface OpenApiApiOpenApiEquipmentBatchStatusSyncRequest {
|
|
|
132
157
|
*/
|
|
133
158
|
readonly syncEquipmentStatusVo: SyncEquipmentStatusVo;
|
|
134
159
|
}
|
|
160
|
+
/**
|
|
161
|
+
* Request parameters for openApiSpaceList operation in OpenApiApi.
|
|
162
|
+
* @export
|
|
163
|
+
* @interface OpenApiApiOpenApiSpaceListRequest
|
|
164
|
+
*/
|
|
165
|
+
export interface OpenApiApiOpenApiSpaceListRequest {
|
|
166
|
+
/**
|
|
167
|
+
* 园区编码
|
|
168
|
+
* @type {string}
|
|
169
|
+
* @memberof OpenApiApiOpenApiSpaceList
|
|
170
|
+
*/
|
|
171
|
+
readonly famParkCode: string;
|
|
172
|
+
}
|
|
135
173
|
/**
|
|
136
174
|
* Request parameters for openApiSurveillanceList operation in OpenApiApi.
|
|
137
175
|
* @export
|
|
@@ -170,6 +208,15 @@ export declare class OpenApiApi extends BaseAPI {
|
|
|
170
208
|
* @memberof OpenApiApi
|
|
171
209
|
*/
|
|
172
210
|
openApiEquipmentBatchStatusSync(requestParameters: OpenApiApiOpenApiEquipmentBatchStatusSyncRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
|
|
211
|
+
/**
|
|
212
|
+
*
|
|
213
|
+
* @summary 获取空间列表
|
|
214
|
+
* @param {OpenApiApiOpenApiSpaceListRequest} requestParameters Request parameters.
|
|
215
|
+
* @param {*} [options] Override http request option.
|
|
216
|
+
* @throws {RequiredError}
|
|
217
|
+
* @memberof OpenApiApi
|
|
218
|
+
*/
|
|
219
|
+
openApiSpaceList(requestParameters: OpenApiApiOpenApiSpaceListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultJsonResultListSpaceTreeDTO, any>>;
|
|
173
220
|
/**
|
|
174
221
|
*
|
|
175
222
|
* @summary 获取监控列表
|
|
@@ -98,6 +98,40 @@ export const OpenApiApiAxiosParamCreator = function (configuration) {
|
|
|
98
98
|
options: localVarRequestOptions,
|
|
99
99
|
};
|
|
100
100
|
}),
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @summary 获取空间列表
|
|
104
|
+
* @param {string} famParkCode 园区编码
|
|
105
|
+
* @param {*} [options] Override http request option.
|
|
106
|
+
* @throws {RequiredError}
|
|
107
|
+
*/
|
|
108
|
+
openApiSpaceList: (famParkCode_1, ...args_1) => __awaiter(this, [famParkCode_1, ...args_1], void 0, function* (famParkCode, options = {}) {
|
|
109
|
+
// verify required parameter 'famParkCode' is not null or undefined
|
|
110
|
+
assertParamExists('openApiSpaceList', 'famParkCode', famParkCode);
|
|
111
|
+
const localVarPath = `/openapi/v1/main/parks/space`;
|
|
112
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
113
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
114
|
+
let baseOptions;
|
|
115
|
+
if (configuration) {
|
|
116
|
+
baseOptions = configuration.baseOptions;
|
|
117
|
+
}
|
|
118
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
119
|
+
const localVarHeaderParameter = {};
|
|
120
|
+
const localVarQueryParameter = {};
|
|
121
|
+
// authentication tokenScheme required
|
|
122
|
+
// http bearer authentication required
|
|
123
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
124
|
+
if (famParkCode !== undefined) {
|
|
125
|
+
localVarQueryParameter['famParkCode'] = famParkCode;
|
|
126
|
+
}
|
|
127
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
128
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
129
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
130
|
+
return {
|
|
131
|
+
url: toPathString(localVarUrlObj),
|
|
132
|
+
options: localVarRequestOptions,
|
|
133
|
+
};
|
|
134
|
+
}),
|
|
101
135
|
/**
|
|
102
136
|
*
|
|
103
137
|
* @summary 获取监控列表
|
|
@@ -173,6 +207,22 @@ export const OpenApiApiFp = function (configuration) {
|
|
|
173
207
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
174
208
|
});
|
|
175
209
|
},
|
|
210
|
+
/**
|
|
211
|
+
*
|
|
212
|
+
* @summary 获取空间列表
|
|
213
|
+
* @param {string} famParkCode 园区编码
|
|
214
|
+
* @param {*} [options] Override http request option.
|
|
215
|
+
* @throws {RequiredError}
|
|
216
|
+
*/
|
|
217
|
+
openApiSpaceList(famParkCode, options) {
|
|
218
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
219
|
+
var _a, _b, _c;
|
|
220
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiSpaceList(famParkCode, options);
|
|
221
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
222
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['OpenApiApi.openApiSpaceList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
223
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
224
|
+
});
|
|
225
|
+
},
|
|
176
226
|
/**
|
|
177
227
|
*
|
|
178
228
|
* @summary 获取监控列表
|
|
@@ -218,6 +268,16 @@ export const OpenApiApiFactory = function (configuration, basePath, axios) {
|
|
|
218
268
|
openApiEquipmentBatchStatusSync(requestParameters, options) {
|
|
219
269
|
return localVarFp.openApiEquipmentBatchStatusSync(requestParameters.syncEquipmentStatusVo, options).then((request) => request(axios, basePath));
|
|
220
270
|
},
|
|
271
|
+
/**
|
|
272
|
+
*
|
|
273
|
+
* @summary 获取空间列表
|
|
274
|
+
* @param {OpenApiApiOpenApiSpaceListRequest} requestParameters Request parameters.
|
|
275
|
+
* @param {*} [options] Override http request option.
|
|
276
|
+
* @throws {RequiredError}
|
|
277
|
+
*/
|
|
278
|
+
openApiSpaceList(requestParameters, options) {
|
|
279
|
+
return localVarFp.openApiSpaceList(requestParameters.famParkCode, options).then((request) => request(axios, basePath));
|
|
280
|
+
},
|
|
221
281
|
/**
|
|
222
282
|
*
|
|
223
283
|
* @summary 获取监控列表
|
|
@@ -259,6 +319,17 @@ export class OpenApiApi extends BaseAPI {
|
|
|
259
319
|
openApiEquipmentBatchStatusSync(requestParameters, options) {
|
|
260
320
|
return OpenApiApiFp(this.configuration).openApiEquipmentBatchStatusSync(requestParameters.syncEquipmentStatusVo, options).then((request) => request(this.axios, this.basePath));
|
|
261
321
|
}
|
|
322
|
+
/**
|
|
323
|
+
*
|
|
324
|
+
* @summary 获取空间列表
|
|
325
|
+
* @param {OpenApiApiOpenApiSpaceListRequest} requestParameters Request parameters.
|
|
326
|
+
* @param {*} [options] Override http request option.
|
|
327
|
+
* @throws {RequiredError}
|
|
328
|
+
* @memberof OpenApiApi
|
|
329
|
+
*/
|
|
330
|
+
openApiSpaceList(requestParameters, options) {
|
|
331
|
+
return OpenApiApiFp(this.configuration).openApiSpaceList(requestParameters.famParkCode, options).then((request) => request(this.axios, this.basePath));
|
|
332
|
+
}
|
|
262
333
|
/**
|
|
263
334
|
*
|
|
264
335
|
* @summary 获取监控列表
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
* 公司配置排序Vo
|
|
14
|
+
* @export
|
|
15
|
+
* @interface AccessCompanyConfigSortVo
|
|
16
|
+
*/
|
|
17
|
+
export interface AccessCompanyConfigSortVo {
|
|
18
|
+
/**
|
|
19
|
+
* 公司配置ID
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof AccessCompanyConfigSortVo
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* 排序 数字越小越靠前
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof AccessCompanyConfigSortVo
|
|
28
|
+
*/
|
|
29
|
+
'sort'?: number;
|
|
30
|
+
}
|
|
@@ -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 {};
|
|
@@ -3,6 +3,7 @@ export * from './access-approval-config-vo';
|
|
|
3
3
|
export * from './access-approval-config-vo-reminder';
|
|
4
4
|
export * from './access-company-config-add-or-update-vo';
|
|
5
5
|
export * from './access-company-config-entity';
|
|
6
|
+
export * from './access-company-config-sort-vo';
|
|
6
7
|
export * from './access-config-entity';
|
|
7
8
|
export * from './access-config-vo';
|
|
8
9
|
export * from './access-visitor-person-type-config-vo';
|
package/dist/esm/models/index.js
CHANGED
|
@@ -3,6 +3,7 @@ export * from './access-approval-config-vo';
|
|
|
3
3
|
export * from './access-approval-config-vo-reminder';
|
|
4
4
|
export * from './access-company-config-add-or-update-vo';
|
|
5
5
|
export * from './access-company-config-entity';
|
|
6
|
+
export * from './access-company-config-sort-vo';
|
|
6
7
|
export * from './access-config-entity';
|
|
7
8
|
export * from './access-config-vo';
|
|
8
9
|
export * from './access-visitor-person-type-config-vo';
|
|
@@ -40,7 +40,7 @@ export interface JsonResultJsonResultListSpaceTreeDTO {
|
|
|
40
40
|
* @type {JsonResultListSpaceTreeDTO}
|
|
41
41
|
* @memberof JsonResultJsonResultListSpaceTreeDTO
|
|
42
42
|
*/
|
|
43
|
-
'data'?: JsonResultListSpaceTreeDTO;
|
|
43
|
+
'data'?: JsonResultListSpaceTreeDTO | null;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
46
|
* @type {BaseErrorResult}
|
|
@@ -370,14 +370,14 @@ export interface SysUser {
|
|
|
370
370
|
'userAttachments'?: Array<SysUserAttachmentInfo>;
|
|
371
371
|
/**
|
|
372
372
|
*
|
|
373
|
-
* @type {
|
|
373
|
+
* @type {string}
|
|
374
374
|
* @memberof SysUser
|
|
375
375
|
*/
|
|
376
|
-
'
|
|
376
|
+
'cid'?: string;
|
|
377
377
|
/**
|
|
378
378
|
*
|
|
379
|
-
* @type {
|
|
379
|
+
* @type {number}
|
|
380
380
|
* @memberof SysUser
|
|
381
381
|
*/
|
|
382
|
-
'
|
|
382
|
+
'cuserId'?: number;
|
|
383
383
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
* 公司配置排序Vo
|
|
14
|
+
* @export
|
|
15
|
+
* @interface AccessCompanyConfigSortVo
|
|
16
|
+
*/
|
|
17
|
+
export interface AccessCompanyConfigSortVo {
|
|
18
|
+
/**
|
|
19
|
+
* 公司配置ID
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof AccessCompanyConfigSortVo
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* 排序 数字越小越靠前
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof AccessCompanyConfigSortVo
|
|
28
|
+
*/
|
|
29
|
+
'sort'?: number;
|
|
30
|
+
}
|
|
@@ -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 });
|
package/dist/models/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export * from './access-approval-config-vo';
|
|
|
3
3
|
export * from './access-approval-config-vo-reminder';
|
|
4
4
|
export * from './access-company-config-add-or-update-vo';
|
|
5
5
|
export * from './access-company-config-entity';
|
|
6
|
+
export * from './access-company-config-sort-vo';
|
|
6
7
|
export * from './access-config-entity';
|
|
7
8
|
export * from './access-config-vo';
|
|
8
9
|
export * from './access-visitor-person-type-config-vo';
|
package/dist/models/index.js
CHANGED
|
@@ -19,6 +19,7 @@ __exportStar(require("./access-approval-config-vo"), exports);
|
|
|
19
19
|
__exportStar(require("./access-approval-config-vo-reminder"), exports);
|
|
20
20
|
__exportStar(require("./access-company-config-add-or-update-vo"), exports);
|
|
21
21
|
__exportStar(require("./access-company-config-entity"), exports);
|
|
22
|
+
__exportStar(require("./access-company-config-sort-vo"), exports);
|
|
22
23
|
__exportStar(require("./access-config-entity"), exports);
|
|
23
24
|
__exportStar(require("./access-config-vo"), exports);
|
|
24
25
|
__exportStar(require("./access-visitor-person-type-config-vo"), exports);
|
|
@@ -40,7 +40,7 @@ export interface JsonResultJsonResultListSpaceTreeDTO {
|
|
|
40
40
|
* @type {JsonResultListSpaceTreeDTO}
|
|
41
41
|
* @memberof JsonResultJsonResultListSpaceTreeDTO
|
|
42
42
|
*/
|
|
43
|
-
'data'?: JsonResultListSpaceTreeDTO;
|
|
43
|
+
'data'?: JsonResultListSpaceTreeDTO | null;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
46
|
* @type {BaseErrorResult}
|
|
@@ -370,14 +370,14 @@ export interface SysUser {
|
|
|
370
370
|
'userAttachments'?: Array<SysUserAttachmentInfo>;
|
|
371
371
|
/**
|
|
372
372
|
*
|
|
373
|
-
* @type {
|
|
373
|
+
* @type {string}
|
|
374
374
|
* @memberof SysUser
|
|
375
375
|
*/
|
|
376
|
-
'
|
|
376
|
+
'cid'?: string;
|
|
377
377
|
/**
|
|
378
378
|
*
|
|
379
|
-
* @type {
|
|
379
|
+
* @type {number}
|
|
380
380
|
* @memberof SysUser
|
|
381
381
|
*/
|
|
382
|
-
'
|
|
382
|
+
'cuserId'?: number;
|
|
383
383
|
}
|
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
* 公司配置排序Vo
|
|
19
|
+
* @export
|
|
20
|
+
* @interface AccessCompanyConfigSortVo
|
|
21
|
+
*/
|
|
22
|
+
export interface AccessCompanyConfigSortVo {
|
|
23
|
+
/**
|
|
24
|
+
* 公司配置ID
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof AccessCompanyConfigSortVo
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* 排序 数字越小越靠前
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof AccessCompanyConfigSortVo
|
|
33
|
+
*/
|
|
34
|
+
'sort'?: number;
|
|
35
|
+
}
|
|
36
|
+
|
package/models/index.ts
CHANGED
|
@@ -3,6 +3,7 @@ export * from './access-approval-config-vo';
|
|
|
3
3
|
export * from './access-approval-config-vo-reminder';
|
|
4
4
|
export * from './access-company-config-add-or-update-vo';
|
|
5
5
|
export * from './access-company-config-entity';
|
|
6
|
+
export * from './access-company-config-sort-vo';
|
|
6
7
|
export * from './access-config-entity';
|
|
7
8
|
export * from './access-config-vo';
|
|
8
9
|
export * from './access-visitor-person-type-config-vo';
|
|
@@ -49,7 +49,7 @@ export interface JsonResultJsonResultListSpaceTreeDTO {
|
|
|
49
49
|
* @type {JsonResultListSpaceTreeDTO}
|
|
50
50
|
* @memberof JsonResultJsonResultListSpaceTreeDTO
|
|
51
51
|
*/
|
|
52
|
-
'data'?: JsonResultListSpaceTreeDTO;
|
|
52
|
+
'data'?: JsonResultListSpaceTreeDTO | null;
|
|
53
53
|
/**
|
|
54
54
|
*
|
|
55
55
|
* @type {BaseErrorResult}
|