@gizone/rrs-client 3.11.13-alpha.62 → 3.11.13-alpha.64
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/apis/inspection-standard-api.ts +5 -18
- package/dist/apis/inspection-standard-api.d.ts +2 -10
- package/dist/apis/inspection-standard-api.js +5 -10
- package/dist/esm/apis/inspection-standard-api.d.ts +2 -10
- package/dist/esm/apis/inspection-standard-api.js +5 -10
- package/dist/esm/models/get-user-wx200-response.d.ts +10 -10
- package/dist/models/get-user-wx200-response.d.ts +10 -10
- package/models/get-user-wx200-response.ts +10 -10
- package/package.json +1 -1
|
@@ -423,11 +423,10 @@ export const InspectionStandardApiAxiosParamCreator = function (configuration?:
|
|
|
423
423
|
* @param {string} [searchValue] 内容
|
|
424
424
|
* @param {InspectionCategoryEnum} [category] 巡检分类
|
|
425
425
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
426
|
-
* @param {number} [equipmentSystemId] 设备系统ID
|
|
427
426
|
* @param {*} [options] Override http request option.
|
|
428
427
|
* @throws {RequiredError}
|
|
429
428
|
*/
|
|
430
|
-
listInspectionStandard: async (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum,
|
|
429
|
+
listInspectionStandard: async (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
431
430
|
// verify required parameter 'parkId' is not null or undefined
|
|
432
431
|
assertParamExists('listInspectionStandard', 'parkId', parkId)
|
|
433
432
|
// verify required parameter 'pageSize' is not null or undefined
|
|
@@ -474,10 +473,6 @@ export const InspectionStandardApiAxiosParamCreator = function (configuration?:
|
|
|
474
473
|
localVarQueryParameter['repeats'] = repeats;
|
|
475
474
|
}
|
|
476
475
|
|
|
477
|
-
if (equipmentSystemId !== undefined) {
|
|
478
|
-
localVarQueryParameter['equipmentSystemId'] = equipmentSystemId;
|
|
479
|
-
}
|
|
480
|
-
|
|
481
476
|
|
|
482
477
|
|
|
483
478
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -801,12 +796,11 @@ export const InspectionStandardApiFp = function(configuration?: Configuration) {
|
|
|
801
796
|
* @param {string} [searchValue] 内容
|
|
802
797
|
* @param {InspectionCategoryEnum} [category] 巡检分类
|
|
803
798
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
804
|
-
* @param {number} [equipmentSystemId] 设备系统ID
|
|
805
799
|
* @param {*} [options] Override http request option.
|
|
806
800
|
* @throws {RequiredError}
|
|
807
801
|
*/
|
|
808
|
-
async listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum,
|
|
809
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats,
|
|
802
|
+
async listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoInspectionStandardDTO>> {
|
|
803
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, options);
|
|
810
804
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
811
805
|
const localVarOperationServerBasePath = operationServerMap['InspectionStandardApi.listInspectionStandard']?.[localVarOperationServerIndex]?.url;
|
|
812
806
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -970,7 +964,7 @@ export const InspectionStandardApiFactory = function (configuration?: Configurat
|
|
|
970
964
|
* @throws {RequiredError}
|
|
971
965
|
*/
|
|
972
966
|
listInspectionStandard(requestParameters: InspectionStandardApiListInspectionStandardRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultPageDtoInspectionStandardDTO> {
|
|
973
|
-
return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats,
|
|
967
|
+
return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, options).then((request) => request(axios, basePath));
|
|
974
968
|
},
|
|
975
969
|
/**
|
|
976
970
|
*
|
|
@@ -1181,13 +1175,6 @@ export interface InspectionStandardApiListInspectionStandardRequest {
|
|
|
1181
1175
|
* @memberof InspectionStandardApiListInspectionStandard
|
|
1182
1176
|
*/
|
|
1183
1177
|
readonly repeats?: WorkOrderPlanRepeatsEnum
|
|
1184
|
-
|
|
1185
|
-
/**
|
|
1186
|
-
* 设备系统ID
|
|
1187
|
-
* @type {number}
|
|
1188
|
-
* @memberof InspectionStandardApiListInspectionStandard
|
|
1189
|
-
*/
|
|
1190
|
-
readonly equipmentSystemId?: number
|
|
1191
1178
|
}
|
|
1192
1179
|
|
|
1193
1180
|
/**
|
|
@@ -1381,7 +1368,7 @@ export class InspectionStandardApi extends BaseAPI {
|
|
|
1381
1368
|
* @memberof InspectionStandardApi
|
|
1382
1369
|
*/
|
|
1383
1370
|
public listInspectionStandard(requestParameters: InspectionStandardApiListInspectionStandardRequest, options?: RawAxiosRequestConfig) {
|
|
1384
|
-
return InspectionStandardApiFp(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats,
|
|
1371
|
+
return InspectionStandardApiFp(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, options).then((request) => request(this.axios, this.basePath));
|
|
1385
1372
|
}
|
|
1386
1373
|
|
|
1387
1374
|
/**
|
|
@@ -108,11 +108,10 @@ export declare const InspectionStandardApiAxiosParamCreator: (configuration?: Co
|
|
|
108
108
|
* @param {string} [searchValue] 内容
|
|
109
109
|
* @param {InspectionCategoryEnum} [category] 巡检分类
|
|
110
110
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
111
|
-
* @param {number} [equipmentSystemId] 设备系统ID
|
|
112
111
|
* @param {*} [options] Override http request option.
|
|
113
112
|
* @throws {RequiredError}
|
|
114
113
|
*/
|
|
115
|
-
listInspectionStandard: (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum,
|
|
114
|
+
listInspectionStandard: (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
116
115
|
/**
|
|
117
116
|
*
|
|
118
117
|
* @summary 根据设备id查询维保标准
|
|
@@ -236,11 +235,10 @@ export declare const InspectionStandardApiFp: (configuration?: Configuration) =>
|
|
|
236
235
|
* @param {string} [searchValue] 内容
|
|
237
236
|
* @param {InspectionCategoryEnum} [category] 巡检分类
|
|
238
237
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
239
|
-
* @param {number} [equipmentSystemId] 设备系统ID
|
|
240
238
|
* @param {*} [options] Override http request option.
|
|
241
239
|
* @throws {RequiredError}
|
|
242
240
|
*/
|
|
243
|
-
listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum,
|
|
241
|
+
listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoInspectionStandardDTO>>;
|
|
244
242
|
/**
|
|
245
243
|
*
|
|
246
244
|
* @summary 根据设备id查询维保标准
|
|
@@ -541,12 +539,6 @@ export interface InspectionStandardApiListInspectionStandardRequest {
|
|
|
541
539
|
* @memberof InspectionStandardApiListInspectionStandard
|
|
542
540
|
*/
|
|
543
541
|
readonly repeats?: WorkOrderPlanRepeatsEnum;
|
|
544
|
-
/**
|
|
545
|
-
* 设备系统ID
|
|
546
|
-
* @type {number}
|
|
547
|
-
* @memberof InspectionStandardApiListInspectionStandard
|
|
548
|
-
*/
|
|
549
|
-
readonly equipmentSystemId?: number;
|
|
550
542
|
}
|
|
551
543
|
/**
|
|
552
544
|
* Request parameters for listInspectionStandardByEquipmentId operation in InspectionStandardApi.
|
|
@@ -351,11 +351,10 @@ const InspectionStandardApiAxiosParamCreator = function (configuration) {
|
|
|
351
351
|
* @param {string} [searchValue] 内容
|
|
352
352
|
* @param {InspectionCategoryEnum} [category] 巡检分类
|
|
353
353
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
354
|
-
* @param {number} [equipmentSystemId] 设备系统ID
|
|
355
354
|
* @param {*} [options] Override http request option.
|
|
356
355
|
* @throws {RequiredError}
|
|
357
356
|
*/
|
|
358
|
-
listInspectionStandard: (parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1,
|
|
357
|
+
listInspectionStandard: (parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, ...args_1], void 0, function* (parkId, pageSize, page, searchValue, category, repeats, options = {}) {
|
|
359
358
|
// verify required parameter 'parkId' is not null or undefined
|
|
360
359
|
(0, common_1.assertParamExists)('listInspectionStandard', 'parkId', parkId);
|
|
361
360
|
// verify required parameter 'pageSize' is not null or undefined
|
|
@@ -393,9 +392,6 @@ const InspectionStandardApiAxiosParamCreator = function (configuration) {
|
|
|
393
392
|
if (repeats !== undefined) {
|
|
394
393
|
localVarQueryParameter['repeats'] = repeats;
|
|
395
394
|
}
|
|
396
|
-
if (equipmentSystemId !== undefined) {
|
|
397
|
-
localVarQueryParameter['equipmentSystemId'] = equipmentSystemId;
|
|
398
|
-
}
|
|
399
395
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
400
396
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
401
397
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -714,14 +710,13 @@ const InspectionStandardApiFp = function (configuration) {
|
|
|
714
710
|
* @param {string} [searchValue] 内容
|
|
715
711
|
* @param {InspectionCategoryEnum} [category] 巡检分类
|
|
716
712
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
717
|
-
* @param {number} [equipmentSystemId] 设备系统ID
|
|
718
713
|
* @param {*} [options] Override http request option.
|
|
719
714
|
* @throws {RequiredError}
|
|
720
715
|
*/
|
|
721
|
-
listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats,
|
|
716
|
+
listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, options) {
|
|
722
717
|
return __awaiter(this, void 0, void 0, function* () {
|
|
723
718
|
var _a, _b, _c;
|
|
724
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats,
|
|
719
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, options);
|
|
725
720
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
726
721
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['InspectionStandardApi.listInspectionStandard']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
727
722
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -898,7 +893,7 @@ const InspectionStandardApiFactory = function (configuration, basePath, axios) {
|
|
|
898
893
|
* @throws {RequiredError}
|
|
899
894
|
*/
|
|
900
895
|
listInspectionStandard(requestParameters, options) {
|
|
901
|
-
return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats,
|
|
896
|
+
return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, options).then((request) => request(axios, basePath));
|
|
902
897
|
},
|
|
903
898
|
/**
|
|
904
899
|
*
|
|
@@ -1055,7 +1050,7 @@ class InspectionStandardApi extends base_1.BaseAPI {
|
|
|
1055
1050
|
* @memberof InspectionStandardApi
|
|
1056
1051
|
*/
|
|
1057
1052
|
listInspectionStandard(requestParameters, options) {
|
|
1058
|
-
return (0, exports.InspectionStandardApiFp)(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats,
|
|
1053
|
+
return (0, exports.InspectionStandardApiFp)(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, options).then((request) => request(this.axios, this.basePath));
|
|
1059
1054
|
}
|
|
1060
1055
|
/**
|
|
1061
1056
|
*
|
|
@@ -108,11 +108,10 @@ export declare const InspectionStandardApiAxiosParamCreator: (configuration?: Co
|
|
|
108
108
|
* @param {string} [searchValue] 内容
|
|
109
109
|
* @param {InspectionCategoryEnum} [category] 巡检分类
|
|
110
110
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
111
|
-
* @param {number} [equipmentSystemId] 设备系统ID
|
|
112
111
|
* @param {*} [options] Override http request option.
|
|
113
112
|
* @throws {RequiredError}
|
|
114
113
|
*/
|
|
115
|
-
listInspectionStandard: (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum,
|
|
114
|
+
listInspectionStandard: (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
116
115
|
/**
|
|
117
116
|
*
|
|
118
117
|
* @summary 根据设备id查询维保标准
|
|
@@ -236,11 +235,10 @@ export declare const InspectionStandardApiFp: (configuration?: Configuration) =>
|
|
|
236
235
|
* @param {string} [searchValue] 内容
|
|
237
236
|
* @param {InspectionCategoryEnum} [category] 巡检分类
|
|
238
237
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
239
|
-
* @param {number} [equipmentSystemId] 设备系统ID
|
|
240
238
|
* @param {*} [options] Override http request option.
|
|
241
239
|
* @throws {RequiredError}
|
|
242
240
|
*/
|
|
243
|
-
listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum,
|
|
241
|
+
listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoInspectionStandardDTO>>;
|
|
244
242
|
/**
|
|
245
243
|
*
|
|
246
244
|
* @summary 根据设备id查询维保标准
|
|
@@ -541,12 +539,6 @@ export interface InspectionStandardApiListInspectionStandardRequest {
|
|
|
541
539
|
* @memberof InspectionStandardApiListInspectionStandard
|
|
542
540
|
*/
|
|
543
541
|
readonly repeats?: WorkOrderPlanRepeatsEnum;
|
|
544
|
-
/**
|
|
545
|
-
* 设备系统ID
|
|
546
|
-
* @type {number}
|
|
547
|
-
* @memberof InspectionStandardApiListInspectionStandard
|
|
548
|
-
*/
|
|
549
|
-
readonly equipmentSystemId?: number;
|
|
550
542
|
}
|
|
551
543
|
/**
|
|
552
544
|
* Request parameters for listInspectionStandardByEquipmentId operation in InspectionStandardApi.
|
|
@@ -348,11 +348,10 @@ export const InspectionStandardApiAxiosParamCreator = function (configuration) {
|
|
|
348
348
|
* @param {string} [searchValue] 内容
|
|
349
349
|
* @param {InspectionCategoryEnum} [category] 巡检分类
|
|
350
350
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
351
|
-
* @param {number} [equipmentSystemId] 设备系统ID
|
|
352
351
|
* @param {*} [options] Override http request option.
|
|
353
352
|
* @throws {RequiredError}
|
|
354
353
|
*/
|
|
355
|
-
listInspectionStandard: (parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1,
|
|
354
|
+
listInspectionStandard: (parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, ...args_1], void 0, function* (parkId, pageSize, page, searchValue, category, repeats, options = {}) {
|
|
356
355
|
// verify required parameter 'parkId' is not null or undefined
|
|
357
356
|
assertParamExists('listInspectionStandard', 'parkId', parkId);
|
|
358
357
|
// verify required parameter 'pageSize' is not null or undefined
|
|
@@ -390,9 +389,6 @@ export const InspectionStandardApiAxiosParamCreator = function (configuration) {
|
|
|
390
389
|
if (repeats !== undefined) {
|
|
391
390
|
localVarQueryParameter['repeats'] = repeats;
|
|
392
391
|
}
|
|
393
|
-
if (equipmentSystemId !== undefined) {
|
|
394
|
-
localVarQueryParameter['equipmentSystemId'] = equipmentSystemId;
|
|
395
|
-
}
|
|
396
392
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
397
393
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
398
394
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -710,14 +706,13 @@ export const InspectionStandardApiFp = function (configuration) {
|
|
|
710
706
|
* @param {string} [searchValue] 内容
|
|
711
707
|
* @param {InspectionCategoryEnum} [category] 巡检分类
|
|
712
708
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
713
|
-
* @param {number} [equipmentSystemId] 设备系统ID
|
|
714
709
|
* @param {*} [options] Override http request option.
|
|
715
710
|
* @throws {RequiredError}
|
|
716
711
|
*/
|
|
717
|
-
listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats,
|
|
712
|
+
listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, options) {
|
|
718
713
|
return __awaiter(this, void 0, void 0, function* () {
|
|
719
714
|
var _a, _b, _c;
|
|
720
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats,
|
|
715
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, options);
|
|
721
716
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
722
717
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['InspectionStandardApi.listInspectionStandard']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
723
718
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -893,7 +888,7 @@ export const InspectionStandardApiFactory = function (configuration, basePath, a
|
|
|
893
888
|
* @throws {RequiredError}
|
|
894
889
|
*/
|
|
895
890
|
listInspectionStandard(requestParameters, options) {
|
|
896
|
-
return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats,
|
|
891
|
+
return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, options).then((request) => request(axios, basePath));
|
|
897
892
|
},
|
|
898
893
|
/**
|
|
899
894
|
*
|
|
@@ -1049,7 +1044,7 @@ export class InspectionStandardApi extends BaseAPI {
|
|
|
1049
1044
|
* @memberof InspectionStandardApi
|
|
1050
1045
|
*/
|
|
1051
1046
|
listInspectionStandard(requestParameters, options) {
|
|
1052
|
-
return InspectionStandardApiFp(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats,
|
|
1047
|
+
return InspectionStandardApiFp(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, options).then((request) => request(this.axios, this.basePath));
|
|
1053
1048
|
}
|
|
1054
1049
|
/**
|
|
1055
1050
|
*
|
|
@@ -19,22 +19,22 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
20
|
/**
|
|
21
21
|
*
|
|
22
|
-
* @type {
|
|
22
|
+
* @type {object}
|
|
23
23
|
* @memberof GetUserWx200Response
|
|
24
24
|
*/
|
|
25
|
-
'
|
|
25
|
+
'trailerFields'?: object;
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
|
-
* @type {
|
|
28
|
+
* @type {number}
|
|
29
29
|
* @memberof GetUserWx200Response
|
|
30
30
|
*/
|
|
31
|
-
'
|
|
31
|
+
'status'?: number;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
|
-
* @type {
|
|
34
|
+
* @type {Array<string>}
|
|
35
35
|
* @memberof GetUserWx200Response
|
|
36
36
|
*/
|
|
37
|
-
'
|
|
37
|
+
'headerNames'?: Array<string>;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
40
|
* @type {string}
|
|
@@ -67,16 +67,16 @@ export interface GetUserWx200Response {
|
|
|
67
67
|
'bufferSize'?: number;
|
|
68
68
|
/**
|
|
69
69
|
*
|
|
70
|
-
* @type {
|
|
70
|
+
* @type {string}
|
|
71
71
|
* @memberof GetUserWx200Response
|
|
72
72
|
*/
|
|
73
|
-
'
|
|
73
|
+
'characterEncoding'?: string;
|
|
74
74
|
/**
|
|
75
75
|
*
|
|
76
|
-
* @type {
|
|
76
|
+
* @type {number}
|
|
77
77
|
* @memberof GetUserWx200Response
|
|
78
78
|
*/
|
|
79
|
-
'
|
|
79
|
+
'contentLengthLong'?: number;
|
|
80
80
|
/**
|
|
81
81
|
*
|
|
82
82
|
* @type {boolean}
|
|
@@ -19,22 +19,22 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
20
|
/**
|
|
21
21
|
*
|
|
22
|
-
* @type {
|
|
22
|
+
* @type {object}
|
|
23
23
|
* @memberof GetUserWx200Response
|
|
24
24
|
*/
|
|
25
|
-
'
|
|
25
|
+
'trailerFields'?: object;
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
|
-
* @type {
|
|
28
|
+
* @type {number}
|
|
29
29
|
* @memberof GetUserWx200Response
|
|
30
30
|
*/
|
|
31
|
-
'
|
|
31
|
+
'status'?: number;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
|
-
* @type {
|
|
34
|
+
* @type {Array<string>}
|
|
35
35
|
* @memberof GetUserWx200Response
|
|
36
36
|
*/
|
|
37
|
-
'
|
|
37
|
+
'headerNames'?: Array<string>;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
40
|
* @type {string}
|
|
@@ -67,16 +67,16 @@ export interface GetUserWx200Response {
|
|
|
67
67
|
'bufferSize'?: number;
|
|
68
68
|
/**
|
|
69
69
|
*
|
|
70
|
-
* @type {
|
|
70
|
+
* @type {string}
|
|
71
71
|
* @memberof GetUserWx200Response
|
|
72
72
|
*/
|
|
73
|
-
'
|
|
73
|
+
'characterEncoding'?: string;
|
|
74
74
|
/**
|
|
75
75
|
*
|
|
76
|
-
* @type {
|
|
76
|
+
* @type {number}
|
|
77
77
|
* @memberof GetUserWx200Response
|
|
78
78
|
*/
|
|
79
|
-
'
|
|
79
|
+
'contentLengthLong'?: number;
|
|
80
80
|
/**
|
|
81
81
|
*
|
|
82
82
|
* @type {boolean}
|
|
@@ -28,22 +28,22 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
28
28
|
export interface GetUserWx200Response {
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
|
-
* @type {
|
|
31
|
+
* @type {object}
|
|
32
32
|
* @memberof GetUserWx200Response
|
|
33
33
|
*/
|
|
34
|
-
'
|
|
34
|
+
'trailerFields'?: object;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
|
-
* @type {
|
|
37
|
+
* @type {number}
|
|
38
38
|
* @memberof GetUserWx200Response
|
|
39
39
|
*/
|
|
40
|
-
'
|
|
40
|
+
'status'?: number;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
|
-
* @type {
|
|
43
|
+
* @type {Array<string>}
|
|
44
44
|
* @memberof GetUserWx200Response
|
|
45
45
|
*/
|
|
46
|
-
'
|
|
46
|
+
'headerNames'?: Array<string>;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
49
|
* @type {string}
|
|
@@ -76,16 +76,16 @@ export interface GetUserWx200Response {
|
|
|
76
76
|
'bufferSize'?: number;
|
|
77
77
|
/**
|
|
78
78
|
*
|
|
79
|
-
* @type {
|
|
79
|
+
* @type {string}
|
|
80
80
|
* @memberof GetUserWx200Response
|
|
81
81
|
*/
|
|
82
|
-
'
|
|
82
|
+
'characterEncoding'?: string;
|
|
83
83
|
/**
|
|
84
84
|
*
|
|
85
|
-
* @type {
|
|
85
|
+
* @type {number}
|
|
86
86
|
* @memberof GetUserWx200Response
|
|
87
87
|
*/
|
|
88
|
-
'
|
|
88
|
+
'contentLengthLong'?: number;
|
|
89
89
|
/**
|
|
90
90
|
*
|
|
91
91
|
* @type {boolean}
|