@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
package/.openapi-generator/FILES
CHANGED
|
@@ -46,6 +46,7 @@ models/access-approval-config-vo-reminder.ts
|
|
|
46
46
|
models/access-approval-config-vo.ts
|
|
47
47
|
models/access-company-config-add-or-update-vo.ts
|
|
48
48
|
models/access-company-config-entity.ts
|
|
49
|
+
models/access-company-config-sort-vo.ts
|
|
49
50
|
models/access-config-entity.ts
|
|
50
51
|
models/access-config-vo.ts
|
|
51
52
|
models/access-visitor-person-type-config-vo.ts
|
package/apis/access-api.ts
CHANGED
|
@@ -24,6 +24,8 @@ import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError
|
|
|
24
24
|
// @ts-ignore
|
|
25
25
|
import type { AccessCompanyConfigAddOrUpdateVo } from '../models';
|
|
26
26
|
// @ts-ignore
|
|
27
|
+
import type { AccessCompanyConfigSortVo } from '../models';
|
|
28
|
+
// @ts-ignore
|
|
27
29
|
import type { AccessConfigVo } from '../models';
|
|
28
30
|
// @ts-ignore
|
|
29
31
|
import type { AccessVisitorPersonTypeConfigVo } from '../models';
|
|
@@ -97,6 +99,46 @@ export const AccessApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
97
99
|
options: localVarRequestOptions,
|
|
98
100
|
};
|
|
99
101
|
},
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @summary 批量更新出入访问公司排序
|
|
105
|
+
* @param {Array<AccessCompanyConfigSortVo>} accessCompanyConfigSortVo
|
|
106
|
+
* @param {*} [options] Override http request option.
|
|
107
|
+
* @throws {RequiredError}
|
|
108
|
+
*/
|
|
109
|
+
accessCompanyConfigBatchUpdateSort: async (accessCompanyConfigSortVo: Array<AccessCompanyConfigSortVo>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
110
|
+
// verify required parameter 'accessCompanyConfigSortVo' is not null or undefined
|
|
111
|
+
assertParamExists('accessCompanyConfigBatchUpdateSort', 'accessCompanyConfigSortVo', accessCompanyConfigSortVo)
|
|
112
|
+
const localVarPath = `/access/company-config/batch/sort`;
|
|
113
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
114
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
115
|
+
let baseOptions;
|
|
116
|
+
if (configuration) {
|
|
117
|
+
baseOptions = configuration.baseOptions;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
121
|
+
const localVarHeaderParameter = {} as any;
|
|
122
|
+
const localVarQueryParameter = {} as any;
|
|
123
|
+
|
|
124
|
+
// authentication tokenScheme required
|
|
125
|
+
// http bearer authentication required
|
|
126
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
131
|
+
|
|
132
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
133
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
134
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
135
|
+
localVarRequestOptions.data = serializeDataIfNeeded(accessCompanyConfigSortVo, localVarRequestOptions, configuration)
|
|
136
|
+
|
|
137
|
+
return {
|
|
138
|
+
url: toPathString(localVarUrlObj),
|
|
139
|
+
options: localVarRequestOptions,
|
|
140
|
+
};
|
|
141
|
+
},
|
|
100
142
|
/**
|
|
101
143
|
*
|
|
102
144
|
* @summary 删除出入访问公司
|
|
@@ -700,6 +742,19 @@ export const AccessApiFp = function(configuration?: Configuration) {
|
|
|
700
742
|
const localVarOperationServerBasePath = operationServerMap['AccessApi.accessCompanyConfigAdd']?.[localVarOperationServerIndex]?.url;
|
|
701
743
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
702
744
|
},
|
|
745
|
+
/**
|
|
746
|
+
*
|
|
747
|
+
* @summary 批量更新出入访问公司排序
|
|
748
|
+
* @param {Array<AccessCompanyConfigSortVo>} accessCompanyConfigSortVo
|
|
749
|
+
* @param {*} [options] Override http request option.
|
|
750
|
+
* @throws {RequiredError}
|
|
751
|
+
*/
|
|
752
|
+
async accessCompanyConfigBatchUpdateSort(accessCompanyConfigSortVo: Array<AccessCompanyConfigSortVo>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>> {
|
|
753
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.accessCompanyConfigBatchUpdateSort(accessCompanyConfigSortVo, options);
|
|
754
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
755
|
+
const localVarOperationServerBasePath = operationServerMap['AccessApi.accessCompanyConfigBatchUpdateSort']?.[localVarOperationServerIndex]?.url;
|
|
756
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
757
|
+
},
|
|
703
758
|
/**
|
|
704
759
|
*
|
|
705
760
|
* @summary 删除出入访问公司
|
|
@@ -908,6 +963,16 @@ export const AccessApiFactory = function (configuration?: Configuration, basePat
|
|
|
908
963
|
accessCompanyConfigAdd(requestParameters: AccessApiAccessCompanyConfigAddRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultBoolean> {
|
|
909
964
|
return localVarFp.accessCompanyConfigAdd(requestParameters.accessCompanyConfigAddOrUpdateVo, options).then((request) => request(axios, basePath));
|
|
910
965
|
},
|
|
966
|
+
/**
|
|
967
|
+
*
|
|
968
|
+
* @summary 批量更新出入访问公司排序
|
|
969
|
+
* @param {AccessApiAccessCompanyConfigBatchUpdateSortRequest} requestParameters Request parameters.
|
|
970
|
+
* @param {*} [options] Override http request option.
|
|
971
|
+
* @throws {RequiredError}
|
|
972
|
+
*/
|
|
973
|
+
accessCompanyConfigBatchUpdateSort(requestParameters: AccessApiAccessCompanyConfigBatchUpdateSortRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid> {
|
|
974
|
+
return localVarFp.accessCompanyConfigBatchUpdateSort(requestParameters.accessCompanyConfigSortVo, options).then((request) => request(axios, basePath));
|
|
975
|
+
},
|
|
911
976
|
/**
|
|
912
977
|
*
|
|
913
978
|
* @summary 删除出入访问公司
|
|
@@ -1065,6 +1130,20 @@ export interface AccessApiAccessCompanyConfigAddRequest {
|
|
|
1065
1130
|
readonly accessCompanyConfigAddOrUpdateVo: AccessCompanyConfigAddOrUpdateVo
|
|
1066
1131
|
}
|
|
1067
1132
|
|
|
1133
|
+
/**
|
|
1134
|
+
* Request parameters for accessCompanyConfigBatchUpdateSort operation in AccessApi.
|
|
1135
|
+
* @export
|
|
1136
|
+
* @interface AccessApiAccessCompanyConfigBatchUpdateSortRequest
|
|
1137
|
+
*/
|
|
1138
|
+
export interface AccessApiAccessCompanyConfigBatchUpdateSortRequest {
|
|
1139
|
+
/**
|
|
1140
|
+
*
|
|
1141
|
+
* @type {Array<AccessCompanyConfigSortVo>}
|
|
1142
|
+
* @memberof AccessApiAccessCompanyConfigBatchUpdateSort
|
|
1143
|
+
*/
|
|
1144
|
+
readonly accessCompanyConfigSortVo: Array<AccessCompanyConfigSortVo>
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1068
1147
|
/**
|
|
1069
1148
|
* Request parameters for accessCompanyConfigDelete operation in AccessApi.
|
|
1070
1149
|
* @export
|
|
@@ -1322,6 +1401,18 @@ export class AccessApi extends BaseAPI {
|
|
|
1322
1401
|
return AccessApiFp(this.configuration).accessCompanyConfigAdd(requestParameters.accessCompanyConfigAddOrUpdateVo, options).then((request) => request(this.axios, this.basePath));
|
|
1323
1402
|
}
|
|
1324
1403
|
|
|
1404
|
+
/**
|
|
1405
|
+
*
|
|
1406
|
+
* @summary 批量更新出入访问公司排序
|
|
1407
|
+
* @param {AccessApiAccessCompanyConfigBatchUpdateSortRequest} requestParameters Request parameters.
|
|
1408
|
+
* @param {*} [options] Override http request option.
|
|
1409
|
+
* @throws {RequiredError}
|
|
1410
|
+
* @memberof AccessApi
|
|
1411
|
+
*/
|
|
1412
|
+
public accessCompanyConfigBatchUpdateSort(requestParameters: AccessApiAccessCompanyConfigBatchUpdateSortRequest, options?: RawAxiosRequestConfig) {
|
|
1413
|
+
return AccessApiFp(this.configuration).accessCompanyConfigBatchUpdateSort(requestParameters.accessCompanyConfigSortVo, options).then((request) => request(this.axios, this.basePath));
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1325
1416
|
/**
|
|
1326
1417
|
*
|
|
1327
1418
|
* @summary 删除出入访问公司
|
package/apis/open-api-api.ts
CHANGED
|
@@ -22,6 +22,8 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
|
|
|
22
22
|
// @ts-ignore
|
|
23
23
|
import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base';
|
|
24
24
|
// @ts-ignore
|
|
25
|
+
import type { JsonResultJsonResultListSpaceTreeDTO } from '../models';
|
|
26
|
+
// @ts-ignore
|
|
25
27
|
import type { JsonResultPageDtoSurveillanceDetailsDto } from '../models';
|
|
26
28
|
// @ts-ignore
|
|
27
29
|
import type { JsonResultVoid } from '../models';
|
|
@@ -115,6 +117,47 @@ export const OpenApiApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
115
117
|
options: localVarRequestOptions,
|
|
116
118
|
};
|
|
117
119
|
},
|
|
120
|
+
/**
|
|
121
|
+
*
|
|
122
|
+
* @summary 获取空间列表
|
|
123
|
+
* @param {string} famParkCode 园区编码
|
|
124
|
+
* @param {*} [options] Override http request option.
|
|
125
|
+
* @throws {RequiredError}
|
|
126
|
+
*/
|
|
127
|
+
openApiSpaceList: async (famParkCode: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
128
|
+
// verify required parameter 'famParkCode' is not null or undefined
|
|
129
|
+
assertParamExists('openApiSpaceList', 'famParkCode', famParkCode)
|
|
130
|
+
const localVarPath = `/openapi/v1/main/parks/space`;
|
|
131
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
132
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
133
|
+
let baseOptions;
|
|
134
|
+
if (configuration) {
|
|
135
|
+
baseOptions = configuration.baseOptions;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
139
|
+
const localVarHeaderParameter = {} as any;
|
|
140
|
+
const localVarQueryParameter = {} as any;
|
|
141
|
+
|
|
142
|
+
// authentication tokenScheme required
|
|
143
|
+
// http bearer authentication required
|
|
144
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
145
|
+
|
|
146
|
+
if (famParkCode !== undefined) {
|
|
147
|
+
localVarQueryParameter['famParkCode'] = famParkCode;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
153
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
154
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
155
|
+
|
|
156
|
+
return {
|
|
157
|
+
url: toPathString(localVarUrlObj),
|
|
158
|
+
options: localVarRequestOptions,
|
|
159
|
+
};
|
|
160
|
+
},
|
|
118
161
|
/**
|
|
119
162
|
*
|
|
120
163
|
* @summary 获取监控列表
|
|
@@ -192,6 +235,19 @@ export const OpenApiApiFp = function(configuration?: Configuration) {
|
|
|
192
235
|
const localVarOperationServerBasePath = operationServerMap['OpenApiApi.openApiEquipmentBatchStatusSync']?.[localVarOperationServerIndex]?.url;
|
|
193
236
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
194
237
|
},
|
|
238
|
+
/**
|
|
239
|
+
*
|
|
240
|
+
* @summary 获取空间列表
|
|
241
|
+
* @param {string} famParkCode 园区编码
|
|
242
|
+
* @param {*} [options] Override http request option.
|
|
243
|
+
* @throws {RequiredError}
|
|
244
|
+
*/
|
|
245
|
+
async openApiSpaceList(famParkCode: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultJsonResultListSpaceTreeDTO>> {
|
|
246
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.openApiSpaceList(famParkCode, options);
|
|
247
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
248
|
+
const localVarOperationServerBasePath = operationServerMap['OpenApiApi.openApiSpaceList']?.[localVarOperationServerIndex]?.url;
|
|
249
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
250
|
+
},
|
|
195
251
|
/**
|
|
196
252
|
*
|
|
197
253
|
* @summary 获取监控列表
|
|
@@ -235,6 +291,16 @@ export const OpenApiApiFactory = function (configuration?: Configuration, basePa
|
|
|
235
291
|
openApiEquipmentBatchStatusSync(requestParameters: OpenApiApiOpenApiEquipmentBatchStatusSyncRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid> {
|
|
236
292
|
return localVarFp.openApiEquipmentBatchStatusSync(requestParameters.syncEquipmentStatusVo, options).then((request) => request(axios, basePath));
|
|
237
293
|
},
|
|
294
|
+
/**
|
|
295
|
+
*
|
|
296
|
+
* @summary 获取空间列表
|
|
297
|
+
* @param {OpenApiApiOpenApiSpaceListRequest} requestParameters Request parameters.
|
|
298
|
+
* @param {*} [options] Override http request option.
|
|
299
|
+
* @throws {RequiredError}
|
|
300
|
+
*/
|
|
301
|
+
openApiSpaceList(requestParameters: OpenApiApiOpenApiSpaceListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultJsonResultListSpaceTreeDTO> {
|
|
302
|
+
return localVarFp.openApiSpaceList(requestParameters.famParkCode, options).then((request) => request(axios, basePath));
|
|
303
|
+
},
|
|
238
304
|
/**
|
|
239
305
|
*
|
|
240
306
|
* @summary 获取监控列表
|
|
@@ -276,6 +342,20 @@ export interface OpenApiApiOpenApiEquipmentBatchStatusSyncRequest {
|
|
|
276
342
|
readonly syncEquipmentStatusVo: SyncEquipmentStatusVo
|
|
277
343
|
}
|
|
278
344
|
|
|
345
|
+
/**
|
|
346
|
+
* Request parameters for openApiSpaceList operation in OpenApiApi.
|
|
347
|
+
* @export
|
|
348
|
+
* @interface OpenApiApiOpenApiSpaceListRequest
|
|
349
|
+
*/
|
|
350
|
+
export interface OpenApiApiOpenApiSpaceListRequest {
|
|
351
|
+
/**
|
|
352
|
+
* 园区编码
|
|
353
|
+
* @type {string}
|
|
354
|
+
* @memberof OpenApiApiOpenApiSpaceList
|
|
355
|
+
*/
|
|
356
|
+
readonly famParkCode: string
|
|
357
|
+
}
|
|
358
|
+
|
|
279
359
|
/**
|
|
280
360
|
* Request parameters for openApiSurveillanceList operation in OpenApiApi.
|
|
281
361
|
* @export
|
|
@@ -321,6 +401,18 @@ export class OpenApiApi extends BaseAPI {
|
|
|
321
401
|
return OpenApiApiFp(this.configuration).openApiEquipmentBatchStatusSync(requestParameters.syncEquipmentStatusVo, options).then((request) => request(this.axios, this.basePath));
|
|
322
402
|
}
|
|
323
403
|
|
|
404
|
+
/**
|
|
405
|
+
*
|
|
406
|
+
* @summary 获取空间列表
|
|
407
|
+
* @param {OpenApiApiOpenApiSpaceListRequest} requestParameters Request parameters.
|
|
408
|
+
* @param {*} [options] Override http request option.
|
|
409
|
+
* @throws {RequiredError}
|
|
410
|
+
* @memberof OpenApiApi
|
|
411
|
+
*/
|
|
412
|
+
public openApiSpaceList(requestParameters: OpenApiApiOpenApiSpaceListRequest, options?: RawAxiosRequestConfig) {
|
|
413
|
+
return OpenApiApiFp(this.configuration).openApiSpaceList(requestParameters.famParkCode, options).then((request) => request(this.axios, this.basePath));
|
|
414
|
+
}
|
|
415
|
+
|
|
324
416
|
/**
|
|
325
417
|
*
|
|
326
418
|
* @summary 获取监控列表
|
|
@@ -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 删除出入访问公司
|
package/dist/apis/access-api.js
CHANGED
|
@@ -68,6 +68,39 @@ const AccessApiAxiosParamCreator = function (configuration) {
|
|
|
68
68
|
options: localVarRequestOptions,
|
|
69
69
|
};
|
|
70
70
|
}),
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @summary 批量更新出入访问公司排序
|
|
74
|
+
* @param {Array<AccessCompanyConfigSortVo>} accessCompanyConfigSortVo
|
|
75
|
+
* @param {*} [options] Override http request option.
|
|
76
|
+
* @throws {RequiredError}
|
|
77
|
+
*/
|
|
78
|
+
accessCompanyConfigBatchUpdateSort: (accessCompanyConfigSortVo_1, ...args_1) => __awaiter(this, [accessCompanyConfigSortVo_1, ...args_1], void 0, function* (accessCompanyConfigSortVo, options = {}) {
|
|
79
|
+
// verify required parameter 'accessCompanyConfigSortVo' is not null or undefined
|
|
80
|
+
(0, common_1.assertParamExists)('accessCompanyConfigBatchUpdateSort', 'accessCompanyConfigSortVo', accessCompanyConfigSortVo);
|
|
81
|
+
const localVarPath = `/access/company-config/batch/sort`;
|
|
82
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
83
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
84
|
+
let baseOptions;
|
|
85
|
+
if (configuration) {
|
|
86
|
+
baseOptions = configuration.baseOptions;
|
|
87
|
+
}
|
|
88
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
89
|
+
const localVarHeaderParameter = {};
|
|
90
|
+
const localVarQueryParameter = {};
|
|
91
|
+
// authentication tokenScheme required
|
|
92
|
+
// http bearer authentication required
|
|
93
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
94
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
95
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
96
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
97
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
98
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(accessCompanyConfigSortVo, localVarRequestOptions, configuration);
|
|
99
|
+
return {
|
|
100
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
101
|
+
options: localVarRequestOptions,
|
|
102
|
+
};
|
|
103
|
+
}),
|
|
71
104
|
/**
|
|
72
105
|
*
|
|
73
106
|
* @summary 删除出入访问公司
|
|
@@ -580,6 +613,22 @@ const AccessApiFp = function (configuration) {
|
|
|
580
613
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
581
614
|
});
|
|
582
615
|
},
|
|
616
|
+
/**
|
|
617
|
+
*
|
|
618
|
+
* @summary 批量更新出入访问公司排序
|
|
619
|
+
* @param {Array<AccessCompanyConfigSortVo>} accessCompanyConfigSortVo
|
|
620
|
+
* @param {*} [options] Override http request option.
|
|
621
|
+
* @throws {RequiredError}
|
|
622
|
+
*/
|
|
623
|
+
accessCompanyConfigBatchUpdateSort(accessCompanyConfigSortVo, options) {
|
|
624
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
625
|
+
var _a, _b, _c;
|
|
626
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.accessCompanyConfigBatchUpdateSort(accessCompanyConfigSortVo, options);
|
|
627
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
628
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['AccessApi.accessCompanyConfigBatchUpdateSort']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
629
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
630
|
+
});
|
|
631
|
+
},
|
|
583
632
|
/**
|
|
584
633
|
*
|
|
585
634
|
* @summary 删除出入访问公司
|
|
@@ -830,6 +879,16 @@ const AccessApiFactory = function (configuration, basePath, axios) {
|
|
|
830
879
|
accessCompanyConfigAdd(requestParameters, options) {
|
|
831
880
|
return localVarFp.accessCompanyConfigAdd(requestParameters.accessCompanyConfigAddOrUpdateVo, options).then((request) => request(axios, basePath));
|
|
832
881
|
},
|
|
882
|
+
/**
|
|
883
|
+
*
|
|
884
|
+
* @summary 批量更新出入访问公司排序
|
|
885
|
+
* @param {AccessApiAccessCompanyConfigBatchUpdateSortRequest} requestParameters Request parameters.
|
|
886
|
+
* @param {*} [options] Override http request option.
|
|
887
|
+
* @throws {RequiredError}
|
|
888
|
+
*/
|
|
889
|
+
accessCompanyConfigBatchUpdateSort(requestParameters, options) {
|
|
890
|
+
return localVarFp.accessCompanyConfigBatchUpdateSort(requestParameters.accessCompanyConfigSortVo, options).then((request) => request(axios, basePath));
|
|
891
|
+
},
|
|
833
892
|
/**
|
|
834
893
|
*
|
|
835
894
|
* @summary 删除出入访问公司
|
|
@@ -991,6 +1050,17 @@ class AccessApi extends base_1.BaseAPI {
|
|
|
991
1050
|
accessCompanyConfigAdd(requestParameters, options) {
|
|
992
1051
|
return (0, exports.AccessApiFp)(this.configuration).accessCompanyConfigAdd(requestParameters.accessCompanyConfigAddOrUpdateVo, options).then((request) => request(this.axios, this.basePath));
|
|
993
1052
|
}
|
|
1053
|
+
/**
|
|
1054
|
+
*
|
|
1055
|
+
* @summary 批量更新出入访问公司排序
|
|
1056
|
+
* @param {AccessApiAccessCompanyConfigBatchUpdateSortRequest} requestParameters Request parameters.
|
|
1057
|
+
* @param {*} [options] Override http request option.
|
|
1058
|
+
* @throws {RequiredError}
|
|
1059
|
+
* @memberof AccessApi
|
|
1060
|
+
*/
|
|
1061
|
+
accessCompanyConfigBatchUpdateSort(requestParameters, options) {
|
|
1062
|
+
return (0, exports.AccessApiFp)(this.configuration).accessCompanyConfigBatchUpdateSort(requestParameters.accessCompanyConfigSortVo, options).then((request) => request(this.axios, this.basePath));
|
|
1063
|
+
}
|
|
994
1064
|
/**
|
|
995
1065
|
*
|
|
996
1066
|
* @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 获取监控列表
|
|
@@ -101,6 +101,40 @@ const OpenApiApiAxiosParamCreator = function (configuration) {
|
|
|
101
101
|
options: localVarRequestOptions,
|
|
102
102
|
};
|
|
103
103
|
}),
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @summary 获取空间列表
|
|
107
|
+
* @param {string} famParkCode 园区编码
|
|
108
|
+
* @param {*} [options] Override http request option.
|
|
109
|
+
* @throws {RequiredError}
|
|
110
|
+
*/
|
|
111
|
+
openApiSpaceList: (famParkCode_1, ...args_1) => __awaiter(this, [famParkCode_1, ...args_1], void 0, function* (famParkCode, options = {}) {
|
|
112
|
+
// verify required parameter 'famParkCode' is not null or undefined
|
|
113
|
+
(0, common_1.assertParamExists)('openApiSpaceList', 'famParkCode', famParkCode);
|
|
114
|
+
const localVarPath = `/openapi/v1/main/parks/space`;
|
|
115
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
116
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
117
|
+
let baseOptions;
|
|
118
|
+
if (configuration) {
|
|
119
|
+
baseOptions = configuration.baseOptions;
|
|
120
|
+
}
|
|
121
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
122
|
+
const localVarHeaderParameter = {};
|
|
123
|
+
const localVarQueryParameter = {};
|
|
124
|
+
// authentication tokenScheme required
|
|
125
|
+
// http bearer authentication required
|
|
126
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
127
|
+
if (famParkCode !== undefined) {
|
|
128
|
+
localVarQueryParameter['famParkCode'] = famParkCode;
|
|
129
|
+
}
|
|
130
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
131
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
132
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
133
|
+
return {
|
|
134
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
135
|
+
options: localVarRequestOptions,
|
|
136
|
+
};
|
|
137
|
+
}),
|
|
104
138
|
/**
|
|
105
139
|
*
|
|
106
140
|
* @summary 获取监控列表
|
|
@@ -177,6 +211,22 @@ const OpenApiApiFp = function (configuration) {
|
|
|
177
211
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
178
212
|
});
|
|
179
213
|
},
|
|
214
|
+
/**
|
|
215
|
+
*
|
|
216
|
+
* @summary 获取空间列表
|
|
217
|
+
* @param {string} famParkCode 园区编码
|
|
218
|
+
* @param {*} [options] Override http request option.
|
|
219
|
+
* @throws {RequiredError}
|
|
220
|
+
*/
|
|
221
|
+
openApiSpaceList(famParkCode, options) {
|
|
222
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
223
|
+
var _a, _b, _c;
|
|
224
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiSpaceList(famParkCode, options);
|
|
225
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
226
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['OpenApiApi.openApiSpaceList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
227
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
228
|
+
});
|
|
229
|
+
},
|
|
180
230
|
/**
|
|
181
231
|
*
|
|
182
232
|
* @summary 获取监控列表
|
|
@@ -223,6 +273,16 @@ const OpenApiApiFactory = function (configuration, basePath, axios) {
|
|
|
223
273
|
openApiEquipmentBatchStatusSync(requestParameters, options) {
|
|
224
274
|
return localVarFp.openApiEquipmentBatchStatusSync(requestParameters.syncEquipmentStatusVo, options).then((request) => request(axios, basePath));
|
|
225
275
|
},
|
|
276
|
+
/**
|
|
277
|
+
*
|
|
278
|
+
* @summary 获取空间列表
|
|
279
|
+
* @param {OpenApiApiOpenApiSpaceListRequest} requestParameters Request parameters.
|
|
280
|
+
* @param {*} [options] Override http request option.
|
|
281
|
+
* @throws {RequiredError}
|
|
282
|
+
*/
|
|
283
|
+
openApiSpaceList(requestParameters, options) {
|
|
284
|
+
return localVarFp.openApiSpaceList(requestParameters.famParkCode, options).then((request) => request(axios, basePath));
|
|
285
|
+
},
|
|
226
286
|
/**
|
|
227
287
|
*
|
|
228
288
|
* @summary 获取监控列表
|
|
@@ -265,6 +325,17 @@ class OpenApiApi extends base_1.BaseAPI {
|
|
|
265
325
|
openApiEquipmentBatchStatusSync(requestParameters, options) {
|
|
266
326
|
return (0, exports.OpenApiApiFp)(this.configuration).openApiEquipmentBatchStatusSync(requestParameters.syncEquipmentStatusVo, options).then((request) => request(this.axios, this.basePath));
|
|
267
327
|
}
|
|
328
|
+
/**
|
|
329
|
+
*
|
|
330
|
+
* @summary 获取空间列表
|
|
331
|
+
* @param {OpenApiApiOpenApiSpaceListRequest} requestParameters Request parameters.
|
|
332
|
+
* @param {*} [options] Override http request option.
|
|
333
|
+
* @throws {RequiredError}
|
|
334
|
+
* @memberof OpenApiApi
|
|
335
|
+
*/
|
|
336
|
+
openApiSpaceList(requestParameters, options) {
|
|
337
|
+
return (0, exports.OpenApiApiFp)(this.configuration).openApiSpaceList(requestParameters.famParkCode, options).then((request) => request(this.axios, this.basePath));
|
|
338
|
+
}
|
|
268
339
|
/**
|
|
269
340
|
*
|
|
270
341
|
* @summary 获取监控列表
|