@gizone/rrs-client 3.11.12-alpha.5 → 3.11.12-alpha.6
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/app-auth-api.ts +13 -13
- package/apis/auth-api.ts +13 -13
- package/apis/work-order-api.ts +8 -10
- package/dist/apis/app-auth-api.d.ts +6 -6
- package/dist/apis/app-auth-api.js +11 -11
- package/dist/apis/auth-api.d.ts +6 -6
- package/dist/apis/auth-api.js +11 -11
- package/dist/apis/work-order-api.d.ts +6 -7
- package/dist/apis/work-order-api.js +4 -4
- package/dist/esm/apis/app-auth-api.d.ts +6 -6
- package/dist/esm/apis/app-auth-api.js +11 -11
- package/dist/esm/apis/auth-api.d.ts +6 -6
- package/dist/esm/apis/auth-api.js +11 -11
- package/dist/esm/apis/work-order-api.d.ts +6 -7
- package/dist/esm/apis/work-order-api.js +4 -4
- package/dist/esm/models/get-user-wx200-response.d.ts +17 -17
- package/dist/esm/models/inspection-item-bo.d.ts +4 -10
- package/dist/esm/models/inspection-point-item.d.ts +6 -6
- package/dist/esm/models/ipage-access-vo.d.ts +6 -6
- package/dist/esm/models/work-order-inspection-detail-dto.d.ts +1 -13
- package/dist/esm/models/work-order-inspection-item-req.d.ts +3 -3
- package/dist/models/get-user-wx200-response.d.ts +17 -17
- package/dist/models/inspection-item-bo.d.ts +4 -10
- package/dist/models/inspection-point-item.d.ts +6 -6
- package/dist/models/ipage-access-vo.d.ts +6 -6
- package/dist/models/work-order-inspection-detail-dto.d.ts +1 -13
- package/dist/models/work-order-inspection-item-req.d.ts +3 -3
- package/models/get-user-wx200-response.ts +17 -17
- package/models/inspection-item-bo.ts +4 -10
- package/models/inspection-point-item.ts +6 -6
- package/models/ipage-access-vo.ts +6 -6
- package/models/work-order-inspection-detail-dto.ts +1 -13
- package/models/work-order-inspection-item-req.ts +3 -3
- package/package.json +1 -1
package/apis/app-auth-api.ts
CHANGED
|
@@ -483,17 +483,17 @@ export const AppAuthApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
483
483
|
*
|
|
484
484
|
* @summary 获取园区数据
|
|
485
485
|
* @param {string} uuid
|
|
486
|
-
* @param {
|
|
486
|
+
* @param {string} userType
|
|
487
487
|
* @param {number} parkId
|
|
488
488
|
* @param {string} appId
|
|
489
489
|
* @param {*} [options] Override http request option.
|
|
490
490
|
* @throws {RequiredError}
|
|
491
491
|
*/
|
|
492
|
-
getParkMiniApp: async (uuid: string,
|
|
492
|
+
getParkMiniApp: async (uuid: string, userType: string, parkId: number, appId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
493
493
|
// verify required parameter 'uuid' is not null or undefined
|
|
494
494
|
assertParamExists('getParkMiniApp', 'uuid', uuid)
|
|
495
|
-
// verify required parameter '
|
|
496
|
-
assertParamExists('getParkMiniApp', '
|
|
495
|
+
// verify required parameter 'userType' is not null or undefined
|
|
496
|
+
assertParamExists('getParkMiniApp', 'userType', userType)
|
|
497
497
|
// verify required parameter 'parkId' is not null or undefined
|
|
498
498
|
assertParamExists('getParkMiniApp', 'parkId', parkId)
|
|
499
499
|
// verify required parameter 'appId' is not null or undefined
|
|
@@ -518,8 +518,8 @@ export const AppAuthApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
518
518
|
localVarQueryParameter['uuid'] = uuid;
|
|
519
519
|
}
|
|
520
520
|
|
|
521
|
-
if (
|
|
522
|
-
localVarQueryParameter['
|
|
521
|
+
if (userType !== undefined) {
|
|
522
|
+
localVarQueryParameter['userType'] = userType;
|
|
523
523
|
}
|
|
524
524
|
|
|
525
525
|
if (parkId !== undefined) {
|
|
@@ -964,14 +964,14 @@ export const AppAuthApiFp = function(configuration?: Configuration) {
|
|
|
964
964
|
*
|
|
965
965
|
* @summary 获取园区数据
|
|
966
966
|
* @param {string} uuid
|
|
967
|
-
* @param {
|
|
967
|
+
* @param {string} userType
|
|
968
968
|
* @param {number} parkId
|
|
969
969
|
* @param {string} appId
|
|
970
970
|
* @param {*} [options] Override http request option.
|
|
971
971
|
* @throws {RequiredError}
|
|
972
972
|
*/
|
|
973
|
-
async getParkMiniApp(uuid: string,
|
|
974
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getParkMiniApp(uuid,
|
|
973
|
+
async getParkMiniApp(uuid: string, userType: string, parkId: number, appId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>> {
|
|
974
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getParkMiniApp(uuid, userType, parkId, appId, options);
|
|
975
975
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
976
976
|
const localVarOperationServerBasePath = operationServerMap['AppAuthApi.getParkMiniApp']?.[localVarOperationServerIndex]?.url;
|
|
977
977
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1185,7 +1185,7 @@ export const AppAuthApiFactory = function (configuration?: Configuration, basePa
|
|
|
1185
1185
|
* @throws {RequiredError}
|
|
1186
1186
|
*/
|
|
1187
1187
|
getParkMiniApp(requestParameters: AppAuthApiGetParkMiniAppRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult> {
|
|
1188
|
-
return localVarFp.getParkMiniApp(requestParameters.uuid, requestParameters.
|
|
1188
|
+
return localVarFp.getParkMiniApp(requestParameters.uuid, requestParameters.userType, requestParameters.parkId, requestParameters.appId, options).then((request) => request(axios, basePath));
|
|
1189
1189
|
},
|
|
1190
1190
|
/**
|
|
1191
1191
|
*
|
|
@@ -1396,10 +1396,10 @@ export interface AppAuthApiGetParkMiniAppRequest {
|
|
|
1396
1396
|
|
|
1397
1397
|
/**
|
|
1398
1398
|
*
|
|
1399
|
-
* @type {
|
|
1399
|
+
* @type {string}
|
|
1400
1400
|
* @memberof AppAuthApiGetParkMiniApp
|
|
1401
1401
|
*/
|
|
1402
|
-
readonly
|
|
1402
|
+
readonly userType: string
|
|
1403
1403
|
|
|
1404
1404
|
/**
|
|
1405
1405
|
*
|
|
@@ -1635,7 +1635,7 @@ export class AppAuthApi extends BaseAPI {
|
|
|
1635
1635
|
* @memberof AppAuthApi
|
|
1636
1636
|
*/
|
|
1637
1637
|
public getParkMiniApp(requestParameters: AppAuthApiGetParkMiniAppRequest, options?: RawAxiosRequestConfig) {
|
|
1638
|
-
return AppAuthApiFp(this.configuration).getParkMiniApp(requestParameters.uuid, requestParameters.
|
|
1638
|
+
return AppAuthApiFp(this.configuration).getParkMiniApp(requestParameters.uuid, requestParameters.userType, requestParameters.parkId, requestParameters.appId, options).then((request) => request(this.axios, this.basePath));
|
|
1639
1639
|
}
|
|
1640
1640
|
|
|
1641
1641
|
/**
|
package/apis/auth-api.ts
CHANGED
|
@@ -773,17 +773,17 @@ export const AuthApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
773
773
|
*
|
|
774
774
|
* @summary 获取园区数据
|
|
775
775
|
* @param {string} uuid
|
|
776
|
-
* @param {
|
|
776
|
+
* @param {string} userType
|
|
777
777
|
* @param {number} parkId
|
|
778
778
|
* @param {string} appId
|
|
779
779
|
* @param {*} [options] Override http request option.
|
|
780
780
|
* @throws {RequiredError}
|
|
781
781
|
*/
|
|
782
|
-
getParkMiniApp: async (uuid: string,
|
|
782
|
+
getParkMiniApp: async (uuid: string, userType: string, parkId: number, appId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
783
783
|
// verify required parameter 'uuid' is not null or undefined
|
|
784
784
|
assertParamExists('getParkMiniApp', 'uuid', uuid)
|
|
785
|
-
// verify required parameter '
|
|
786
|
-
assertParamExists('getParkMiniApp', '
|
|
785
|
+
// verify required parameter 'userType' is not null or undefined
|
|
786
|
+
assertParamExists('getParkMiniApp', 'userType', userType)
|
|
787
787
|
// verify required parameter 'parkId' is not null or undefined
|
|
788
788
|
assertParamExists('getParkMiniApp', 'parkId', parkId)
|
|
789
789
|
// verify required parameter 'appId' is not null or undefined
|
|
@@ -808,8 +808,8 @@ export const AuthApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
808
808
|
localVarQueryParameter['uuid'] = uuid;
|
|
809
809
|
}
|
|
810
810
|
|
|
811
|
-
if (
|
|
812
|
-
localVarQueryParameter['
|
|
811
|
+
if (userType !== undefined) {
|
|
812
|
+
localVarQueryParameter['userType'] = userType;
|
|
813
813
|
}
|
|
814
814
|
|
|
815
815
|
if (parkId !== undefined) {
|
|
@@ -1888,14 +1888,14 @@ export const AuthApiFp = function(configuration?: Configuration) {
|
|
|
1888
1888
|
*
|
|
1889
1889
|
* @summary 获取园区数据
|
|
1890
1890
|
* @param {string} uuid
|
|
1891
|
-
* @param {
|
|
1891
|
+
* @param {string} userType
|
|
1892
1892
|
* @param {number} parkId
|
|
1893
1893
|
* @param {string} appId
|
|
1894
1894
|
* @param {*} [options] Override http request option.
|
|
1895
1895
|
* @throws {RequiredError}
|
|
1896
1896
|
*/
|
|
1897
|
-
async getParkMiniApp(uuid: string,
|
|
1898
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getParkMiniApp(uuid,
|
|
1897
|
+
async getParkMiniApp(uuid: string, userType: string, parkId: number, appId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>> {
|
|
1898
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getParkMiniApp(uuid, userType, parkId, appId, options);
|
|
1899
1899
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1900
1900
|
const localVarOperationServerBasePath = operationServerMap['AuthApi.getParkMiniApp']?.[localVarOperationServerIndex]?.url;
|
|
1901
1901
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2346,7 +2346,7 @@ export const AuthApiFactory = function (configuration?: Configuration, basePath?
|
|
|
2346
2346
|
* @throws {RequiredError}
|
|
2347
2347
|
*/
|
|
2348
2348
|
getParkMiniApp(requestParameters: AuthApiGetParkMiniAppRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult> {
|
|
2349
|
-
return localVarFp.getParkMiniApp(requestParameters.uuid, requestParameters.
|
|
2349
|
+
return localVarFp.getParkMiniApp(requestParameters.uuid, requestParameters.userType, requestParameters.parkId, requestParameters.appId, options).then((request) => request(axios, basePath));
|
|
2350
2350
|
},
|
|
2351
2351
|
/**
|
|
2352
2352
|
*
|
|
@@ -2703,10 +2703,10 @@ export interface AuthApiGetParkMiniAppRequest {
|
|
|
2703
2703
|
|
|
2704
2704
|
/**
|
|
2705
2705
|
*
|
|
2706
|
-
* @type {
|
|
2706
|
+
* @type {string}
|
|
2707
2707
|
* @memberof AuthApiGetParkMiniApp
|
|
2708
2708
|
*/
|
|
2709
|
-
readonly
|
|
2709
|
+
readonly userType: string
|
|
2710
2710
|
|
|
2711
2711
|
/**
|
|
2712
2712
|
*
|
|
@@ -3172,7 +3172,7 @@ export class AuthApi extends BaseAPI {
|
|
|
3172
3172
|
* @memberof AuthApi
|
|
3173
3173
|
*/
|
|
3174
3174
|
public getParkMiniApp(requestParameters: AuthApiGetParkMiniAppRequest, options?: RawAxiosRequestConfig) {
|
|
3175
|
-
return AuthApiFp(this.configuration).getParkMiniApp(requestParameters.uuid, requestParameters.
|
|
3175
|
+
return AuthApiFp(this.configuration).getParkMiniApp(requestParameters.uuid, requestParameters.userType, requestParameters.parkId, requestParameters.appId, options).then((request) => request(this.axios, this.basePath));
|
|
3176
3176
|
}
|
|
3177
3177
|
|
|
3178
3178
|
/**
|
package/apis/work-order-api.ts
CHANGED
|
@@ -48,8 +48,6 @@ import type { JsonResultListWorkOrderStepByStepPushDTO } from '../models';
|
|
|
48
48
|
// @ts-ignore
|
|
49
49
|
import type { JsonResultListWorkOrderStepByStepPushUserDetailsDTO } from '../models';
|
|
50
50
|
// @ts-ignore
|
|
51
|
-
import type { JsonResultObject } from '../models';
|
|
52
|
-
// @ts-ignore
|
|
53
51
|
import type { JsonResultPageDtoPlanSearchDTO } from '../models';
|
|
54
52
|
// @ts-ignore
|
|
55
53
|
import type { JsonResultPageDtoWorkOrderSearchDTO } from '../models';
|
|
@@ -732,7 +730,7 @@ export const WorkOrderApiAxiosParamCreator = function (configuration?: Configura
|
|
|
732
730
|
handle: async (inspectionHandleReq: InspectionHandleReq, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
733
731
|
// verify required parameter 'inspectionHandleReq' is not null or undefined
|
|
734
732
|
assertParamExists('handle', 'inspectionHandleReq', inspectionHandleReq)
|
|
735
|
-
const localVarPath = `/gizone/
|
|
733
|
+
const localVarPath = `/gizone/workOrder/period/handle/inspection`;
|
|
736
734
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
737
735
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
738
736
|
let baseOptions;
|
|
@@ -772,7 +770,7 @@ export const WorkOrderApiAxiosParamCreator = function (configuration?: Configura
|
|
|
772
770
|
handleBatch: async (inspectionHandleReq: Array<InspectionHandleReq>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
773
771
|
// verify required parameter 'inspectionHandleReq' is not null or undefined
|
|
774
772
|
assertParamExists('handleBatch', 'inspectionHandleReq', inspectionHandleReq)
|
|
775
|
-
const localVarPath = `/gizone/
|
|
773
|
+
const localVarPath = `/gizone/workOrder/period/handle/inspection/batch`;
|
|
776
774
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
777
775
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
778
776
|
let baseOptions;
|
|
@@ -1102,7 +1100,7 @@ export const WorkOrderApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1102
1100
|
saveDetail: async (savePeriodWorkOrderDetailReq: SavePeriodWorkOrderDetailReq, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1103
1101
|
// verify required parameter 'savePeriodWorkOrderDetailReq' is not null or undefined
|
|
1104
1102
|
assertParamExists('saveDetail', 'savePeriodWorkOrderDetailReq', savePeriodWorkOrderDetailReq)
|
|
1105
|
-
const localVarPath = `/gizone/
|
|
1103
|
+
const localVarPath = `/gizone/workOrder/period/saveDetail`;
|
|
1106
1104
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1107
1105
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1108
1106
|
let baseOptions;
|
|
@@ -1519,7 +1517,7 @@ export const WorkOrderApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1519
1517
|
workOrderPeriodDetail: async (workOrderId: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1520
1518
|
// verify required parameter 'workOrderId' is not null or undefined
|
|
1521
1519
|
assertParamExists('workOrderPeriodDetail', 'workOrderId', workOrderId)
|
|
1522
|
-
const localVarPath = `/gizone/
|
|
1520
|
+
const localVarPath = `/gizone/workOrder/period/{workOrderId}`
|
|
1523
1521
|
.replace(`{${"workOrderId"}}`, encodeURIComponent(String(workOrderId)));
|
|
1524
1522
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1525
1523
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1955,7 +1953,7 @@ export const WorkOrderApiFp = function(configuration?: Configuration) {
|
|
|
1955
1953
|
* @param {*} [options] Override http request option.
|
|
1956
1954
|
* @throws {RequiredError}
|
|
1957
1955
|
*/
|
|
1958
|
-
async handle(inspectionHandleReq: InspectionHandleReq, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1956
|
+
async handle(inspectionHandleReq: InspectionHandleReq, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>> {
|
|
1959
1957
|
const localVarAxiosArgs = await localVarAxiosParamCreator.handle(inspectionHandleReq, options);
|
|
1960
1958
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1961
1959
|
const localVarOperationServerBasePath = operationServerMap['WorkOrderApi.handle']?.[localVarOperationServerIndex]?.url;
|
|
@@ -2068,7 +2066,7 @@ export const WorkOrderApiFp = function(configuration?: Configuration) {
|
|
|
2068
2066
|
* @param {*} [options] Override http request option.
|
|
2069
2067
|
* @throws {RequiredError}
|
|
2070
2068
|
*/
|
|
2071
|
-
async saveDetail(savePeriodWorkOrderDetailReq: SavePeriodWorkOrderDetailReq, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2069
|
+
async saveDetail(savePeriodWorkOrderDetailReq: SavePeriodWorkOrderDetailReq, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>> {
|
|
2072
2070
|
const localVarAxiosArgs = await localVarAxiosParamCreator.saveDetail(savePeriodWorkOrderDetailReq, options);
|
|
2073
2071
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2074
2072
|
const localVarOperationServerBasePath = operationServerMap['WorkOrderApi.saveDetail']?.[localVarOperationServerIndex]?.url;
|
|
@@ -2424,7 +2422,7 @@ export const WorkOrderApiFactory = function (configuration?: Configuration, base
|
|
|
2424
2422
|
* @param {*} [options] Override http request option.
|
|
2425
2423
|
* @throws {RequiredError}
|
|
2426
2424
|
*/
|
|
2427
|
-
handle(requestParameters: WorkOrderApiHandleRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2425
|
+
handle(requestParameters: WorkOrderApiHandleRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid> {
|
|
2428
2426
|
return localVarFp.handle(requestParameters.inspectionHandleReq, options).then((request) => request(axios, basePath));
|
|
2429
2427
|
},
|
|
2430
2428
|
/**
|
|
@@ -2504,7 +2502,7 @@ export const WorkOrderApiFactory = function (configuration?: Configuration, base
|
|
|
2504
2502
|
* @param {*} [options] Override http request option.
|
|
2505
2503
|
* @throws {RequiredError}
|
|
2506
2504
|
*/
|
|
2507
|
-
saveDetail(requestParameters: WorkOrderApiSaveDetailRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2505
|
+
saveDetail(requestParameters: WorkOrderApiSaveDetailRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid> {
|
|
2508
2506
|
return localVarFp.saveDetail(requestParameters.savePeriodWorkOrderDetailReq, options).then((request) => request(axios, basePath));
|
|
2509
2507
|
},
|
|
2510
2508
|
/**
|
|
@@ -116,13 +116,13 @@ export declare const AppAuthApiAxiosParamCreator: (configuration?: Configuration
|
|
|
116
116
|
*
|
|
117
117
|
* @summary 获取园区数据
|
|
118
118
|
* @param {string} uuid
|
|
119
|
-
* @param {
|
|
119
|
+
* @param {string} userType
|
|
120
120
|
* @param {number} parkId
|
|
121
121
|
* @param {string} appId
|
|
122
122
|
* @param {*} [options] Override http request option.
|
|
123
123
|
* @throws {RequiredError}
|
|
124
124
|
*/
|
|
125
|
-
getParkMiniApp: (uuid: string,
|
|
125
|
+
getParkMiniApp: (uuid: string, userType: string, parkId: number, appId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
126
126
|
/**
|
|
127
127
|
*
|
|
128
128
|
* @param {*} [options] Override http request option.
|
|
@@ -269,13 +269,13 @@ export declare const AppAuthApiFp: (configuration?: Configuration) => {
|
|
|
269
269
|
*
|
|
270
270
|
* @summary 获取园区数据
|
|
271
271
|
* @param {string} uuid
|
|
272
|
-
* @param {
|
|
272
|
+
* @param {string} userType
|
|
273
273
|
* @param {number} parkId
|
|
274
274
|
* @param {string} appId
|
|
275
275
|
* @param {*} [options] Override http request option.
|
|
276
276
|
* @throws {RequiredError}
|
|
277
277
|
*/
|
|
278
|
-
getParkMiniApp(uuid: string,
|
|
278
|
+
getParkMiniApp(uuid: string, userType: string, parkId: number, appId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
|
|
279
279
|
/**
|
|
280
280
|
*
|
|
281
281
|
* @param {*} [options] Override http request option.
|
|
@@ -618,10 +618,10 @@ export interface AppAuthApiGetParkMiniAppRequest {
|
|
|
618
618
|
readonly uuid: string;
|
|
619
619
|
/**
|
|
620
620
|
*
|
|
621
|
-
* @type {
|
|
621
|
+
* @type {string}
|
|
622
622
|
* @memberof AppAuthApiGetParkMiniApp
|
|
623
623
|
*/
|
|
624
|
-
readonly
|
|
624
|
+
readonly userType: string;
|
|
625
625
|
/**
|
|
626
626
|
*
|
|
627
627
|
* @type {number}
|
|
@@ -395,17 +395,17 @@ const AppAuthApiAxiosParamCreator = function (configuration) {
|
|
|
395
395
|
*
|
|
396
396
|
* @summary 获取园区数据
|
|
397
397
|
* @param {string} uuid
|
|
398
|
-
* @param {
|
|
398
|
+
* @param {string} userType
|
|
399
399
|
* @param {number} parkId
|
|
400
400
|
* @param {string} appId
|
|
401
401
|
* @param {*} [options] Override http request option.
|
|
402
402
|
* @throws {RequiredError}
|
|
403
403
|
*/
|
|
404
|
-
getParkMiniApp: (uuid_1,
|
|
404
|
+
getParkMiniApp: (uuid_1, userType_1, parkId_1, appId_1, ...args_1) => __awaiter(this, [uuid_1, userType_1, parkId_1, appId_1, ...args_1], void 0, function* (uuid, userType, parkId, appId, options = {}) {
|
|
405
405
|
// verify required parameter 'uuid' is not null or undefined
|
|
406
406
|
(0, common_1.assertParamExists)('getParkMiniApp', 'uuid', uuid);
|
|
407
|
-
// verify required parameter '
|
|
408
|
-
(0, common_1.assertParamExists)('getParkMiniApp', '
|
|
407
|
+
// verify required parameter 'userType' is not null or undefined
|
|
408
|
+
(0, common_1.assertParamExists)('getParkMiniApp', 'userType', userType);
|
|
409
409
|
// verify required parameter 'parkId' is not null or undefined
|
|
410
410
|
(0, common_1.assertParamExists)('getParkMiniApp', 'parkId', parkId);
|
|
411
411
|
// verify required parameter 'appId' is not null or undefined
|
|
@@ -426,8 +426,8 @@ const AppAuthApiAxiosParamCreator = function (configuration) {
|
|
|
426
426
|
if (uuid !== undefined) {
|
|
427
427
|
localVarQueryParameter['uuid'] = uuid;
|
|
428
428
|
}
|
|
429
|
-
if (
|
|
430
|
-
localVarQueryParameter['
|
|
429
|
+
if (userType !== undefined) {
|
|
430
|
+
localVarQueryParameter['userType'] = userType;
|
|
431
431
|
}
|
|
432
432
|
if (parkId !== undefined) {
|
|
433
433
|
localVarQueryParameter['parkId'] = parkId;
|
|
@@ -852,16 +852,16 @@ const AppAuthApiFp = function (configuration) {
|
|
|
852
852
|
*
|
|
853
853
|
* @summary 获取园区数据
|
|
854
854
|
* @param {string} uuid
|
|
855
|
-
* @param {
|
|
855
|
+
* @param {string} userType
|
|
856
856
|
* @param {number} parkId
|
|
857
857
|
* @param {string} appId
|
|
858
858
|
* @param {*} [options] Override http request option.
|
|
859
859
|
* @throws {RequiredError}
|
|
860
860
|
*/
|
|
861
|
-
getParkMiniApp(uuid,
|
|
861
|
+
getParkMiniApp(uuid, userType, parkId, appId, options) {
|
|
862
862
|
return __awaiter(this, void 0, void 0, function* () {
|
|
863
863
|
var _a, _b, _c;
|
|
864
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getParkMiniApp(uuid,
|
|
864
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getParkMiniApp(uuid, userType, parkId, appId, options);
|
|
865
865
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
866
866
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['AppAuthApi.getParkMiniApp']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
867
867
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1097,7 +1097,7 @@ const AppAuthApiFactory = function (configuration, basePath, axios) {
|
|
|
1097
1097
|
* @throws {RequiredError}
|
|
1098
1098
|
*/
|
|
1099
1099
|
getParkMiniApp(requestParameters, options) {
|
|
1100
|
-
return localVarFp.getParkMiniApp(requestParameters.uuid, requestParameters.
|
|
1100
|
+
return localVarFp.getParkMiniApp(requestParameters.uuid, requestParameters.userType, requestParameters.parkId, requestParameters.appId, options).then((request) => request(axios, basePath));
|
|
1101
1101
|
},
|
|
1102
1102
|
/**
|
|
1103
1103
|
*
|
|
@@ -1298,7 +1298,7 @@ class AppAuthApi extends base_1.BaseAPI {
|
|
|
1298
1298
|
* @memberof AppAuthApi
|
|
1299
1299
|
*/
|
|
1300
1300
|
getParkMiniApp(requestParameters, options) {
|
|
1301
|
-
return (0, exports.AppAuthApiFp)(this.configuration).getParkMiniApp(requestParameters.uuid, requestParameters.
|
|
1301
|
+
return (0, exports.AppAuthApiFp)(this.configuration).getParkMiniApp(requestParameters.uuid, requestParameters.userType, requestParameters.parkId, requestParameters.appId, options).then((request) => request(this.axios, this.basePath));
|
|
1302
1302
|
}
|
|
1303
1303
|
/**
|
|
1304
1304
|
*
|
package/dist/apis/auth-api.d.ts
CHANGED
|
@@ -173,13 +173,13 @@ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
173
173
|
*
|
|
174
174
|
* @summary 获取园区数据
|
|
175
175
|
* @param {string} uuid
|
|
176
|
-
* @param {
|
|
176
|
+
* @param {string} userType
|
|
177
177
|
* @param {number} parkId
|
|
178
178
|
* @param {string} appId
|
|
179
179
|
* @param {*} [options] Override http request option.
|
|
180
180
|
* @throws {RequiredError}
|
|
181
181
|
*/
|
|
182
|
-
getParkMiniApp: (uuid: string,
|
|
182
|
+
getParkMiniApp: (uuid: string, userType: string, parkId: number, appId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
183
183
|
/**
|
|
184
184
|
*
|
|
185
185
|
* @param {number} parkId
|
|
@@ -482,13 +482,13 @@ export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
|
482
482
|
*
|
|
483
483
|
* @summary 获取园区数据
|
|
484
484
|
* @param {string} uuid
|
|
485
|
-
* @param {
|
|
485
|
+
* @param {string} userType
|
|
486
486
|
* @param {number} parkId
|
|
487
487
|
* @param {string} appId
|
|
488
488
|
* @param {*} [options] Override http request option.
|
|
489
489
|
* @throws {RequiredError}
|
|
490
490
|
*/
|
|
491
|
-
getParkMiniApp(uuid: string,
|
|
491
|
+
getParkMiniApp(uuid: string, userType: string, parkId: number, appId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
|
|
492
492
|
/**
|
|
493
493
|
*
|
|
494
494
|
* @param {number} parkId
|
|
@@ -1126,10 +1126,10 @@ export interface AuthApiGetParkMiniAppRequest {
|
|
|
1126
1126
|
readonly uuid: string;
|
|
1127
1127
|
/**
|
|
1128
1128
|
*
|
|
1129
|
-
* @type {
|
|
1129
|
+
* @type {string}
|
|
1130
1130
|
* @memberof AuthApiGetParkMiniApp
|
|
1131
1131
|
*/
|
|
1132
|
-
readonly
|
|
1132
|
+
readonly userType: string;
|
|
1133
1133
|
/**
|
|
1134
1134
|
*
|
|
1135
1135
|
* @type {number}
|
package/dist/apis/auth-api.js
CHANGED
|
@@ -625,17 +625,17 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
625
625
|
*
|
|
626
626
|
* @summary 获取园区数据
|
|
627
627
|
* @param {string} uuid
|
|
628
|
-
* @param {
|
|
628
|
+
* @param {string} userType
|
|
629
629
|
* @param {number} parkId
|
|
630
630
|
* @param {string} appId
|
|
631
631
|
* @param {*} [options] Override http request option.
|
|
632
632
|
* @throws {RequiredError}
|
|
633
633
|
*/
|
|
634
|
-
getParkMiniApp: (uuid_1,
|
|
634
|
+
getParkMiniApp: (uuid_1, userType_1, parkId_1, appId_1, ...args_1) => __awaiter(this, [uuid_1, userType_1, parkId_1, appId_1, ...args_1], void 0, function* (uuid, userType, parkId, appId, options = {}) {
|
|
635
635
|
// verify required parameter 'uuid' is not null or undefined
|
|
636
636
|
(0, common_1.assertParamExists)('getParkMiniApp', 'uuid', uuid);
|
|
637
|
-
// verify required parameter '
|
|
638
|
-
(0, common_1.assertParamExists)('getParkMiniApp', '
|
|
637
|
+
// verify required parameter 'userType' is not null or undefined
|
|
638
|
+
(0, common_1.assertParamExists)('getParkMiniApp', 'userType', userType);
|
|
639
639
|
// verify required parameter 'parkId' is not null or undefined
|
|
640
640
|
(0, common_1.assertParamExists)('getParkMiniApp', 'parkId', parkId);
|
|
641
641
|
// verify required parameter 'appId' is not null or undefined
|
|
@@ -656,8 +656,8 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
656
656
|
if (uuid !== undefined) {
|
|
657
657
|
localVarQueryParameter['uuid'] = uuid;
|
|
658
658
|
}
|
|
659
|
-
if (
|
|
660
|
-
localVarQueryParameter['
|
|
659
|
+
if (userType !== undefined) {
|
|
660
|
+
localVarQueryParameter['userType'] = userType;
|
|
661
661
|
}
|
|
662
662
|
if (parkId !== undefined) {
|
|
663
663
|
localVarQueryParameter['parkId'] = parkId;
|
|
@@ -1645,16 +1645,16 @@ const AuthApiFp = function (configuration) {
|
|
|
1645
1645
|
*
|
|
1646
1646
|
* @summary 获取园区数据
|
|
1647
1647
|
* @param {string} uuid
|
|
1648
|
-
* @param {
|
|
1648
|
+
* @param {string} userType
|
|
1649
1649
|
* @param {number} parkId
|
|
1650
1650
|
* @param {string} appId
|
|
1651
1651
|
* @param {*} [options] Override http request option.
|
|
1652
1652
|
* @throws {RequiredError}
|
|
1653
1653
|
*/
|
|
1654
|
-
getParkMiniApp(uuid,
|
|
1654
|
+
getParkMiniApp(uuid, userType, parkId, appId, options) {
|
|
1655
1655
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1656
1656
|
var _a, _b, _c;
|
|
1657
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getParkMiniApp(uuid,
|
|
1657
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getParkMiniApp(uuid, userType, parkId, appId, options);
|
|
1658
1658
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1659
1659
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.getParkMiniApp']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1660
1660
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2169,7 +2169,7 @@ const AuthApiFactory = function (configuration, basePath, axios) {
|
|
|
2169
2169
|
* @throws {RequiredError}
|
|
2170
2170
|
*/
|
|
2171
2171
|
getParkMiniApp(requestParameters, options) {
|
|
2172
|
-
return localVarFp.getParkMiniApp(requestParameters.uuid, requestParameters.
|
|
2172
|
+
return localVarFp.getParkMiniApp(requestParameters.uuid, requestParameters.userType, requestParameters.parkId, requestParameters.appId, options).then((request) => request(axios, basePath));
|
|
2173
2173
|
},
|
|
2174
2174
|
/**
|
|
2175
2175
|
*
|
|
@@ -2570,7 +2570,7 @@ class AuthApi extends base_1.BaseAPI {
|
|
|
2570
2570
|
* @memberof AuthApi
|
|
2571
2571
|
*/
|
|
2572
2572
|
getParkMiniApp(requestParameters, options) {
|
|
2573
|
-
return (0, exports.AuthApiFp)(this.configuration).getParkMiniApp(requestParameters.uuid, requestParameters.
|
|
2573
|
+
return (0, exports.AuthApiFp)(this.configuration).getParkMiniApp(requestParameters.uuid, requestParameters.userType, requestParameters.parkId, requestParameters.appId, options).then((request) => request(this.axios, this.basePath));
|
|
2574
2574
|
}
|
|
2575
2575
|
/**
|
|
2576
2576
|
*
|
|
@@ -25,7 +25,6 @@ import type { JsonResultListWorkOrderInspectionDetailDTO } from '../models';
|
|
|
25
25
|
import type { JsonResultListWorkOrderPushSettingsEntity } from '../models';
|
|
26
26
|
import type { JsonResultListWorkOrderStepByStepPushDTO } from '../models';
|
|
27
27
|
import type { JsonResultListWorkOrderStepByStepPushUserDetailsDTO } from '../models';
|
|
28
|
-
import type { JsonResultObject } from '../models';
|
|
29
28
|
import type { JsonResultPageDtoPlanSearchDTO } from '../models';
|
|
30
29
|
import type { JsonResultPageDtoWorkOrderSearchDTO } from '../models';
|
|
31
30
|
import type { JsonResultPeriodDetailResp } from '../models';
|
|
@@ -518,7 +517,7 @@ export declare const WorkOrderApiFp: (configuration?: Configuration) => {
|
|
|
518
517
|
* @param {*} [options] Override http request option.
|
|
519
518
|
* @throws {RequiredError}
|
|
520
519
|
*/
|
|
521
|
-
handle(inspectionHandleReq: InspectionHandleReq, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
520
|
+
handle(inspectionHandleReq: InspectionHandleReq, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
|
|
522
521
|
/**
|
|
523
522
|
*
|
|
524
523
|
* @summary 批量处理状态
|
|
@@ -591,7 +590,7 @@ export declare const WorkOrderApiFp: (configuration?: Configuration) => {
|
|
|
591
590
|
* @param {*} [options] Override http request option.
|
|
592
591
|
* @throws {RequiredError}
|
|
593
592
|
*/
|
|
594
|
-
saveDetail(savePeriodWorkOrderDetailReq: SavePeriodWorkOrderDetailReq, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
593
|
+
saveDetail(savePeriodWorkOrderDetailReq: SavePeriodWorkOrderDetailReq, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
|
|
595
594
|
/**
|
|
596
595
|
*
|
|
597
596
|
* @summary 查询工单逐级推送
|
|
@@ -840,7 +839,7 @@ export declare const WorkOrderApiFactory: (configuration?: Configuration, basePa
|
|
|
840
839
|
* @param {*} [options] Override http request option.
|
|
841
840
|
* @throws {RequiredError}
|
|
842
841
|
*/
|
|
843
|
-
handle(requestParameters: WorkOrderApiHandleRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
842
|
+
handle(requestParameters: WorkOrderApiHandleRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
|
|
844
843
|
/**
|
|
845
844
|
*
|
|
846
845
|
* @summary 批量处理状态
|
|
@@ -904,7 +903,7 @@ export declare const WorkOrderApiFactory: (configuration?: Configuration, basePa
|
|
|
904
903
|
* @param {*} [options] Override http request option.
|
|
905
904
|
* @throws {RequiredError}
|
|
906
905
|
*/
|
|
907
|
-
saveDetail(requestParameters: WorkOrderApiSaveDetailRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
906
|
+
saveDetail(requestParameters: WorkOrderApiSaveDetailRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
|
|
908
907
|
/**
|
|
909
908
|
*
|
|
910
909
|
* @summary 查询工单逐级推送
|
|
@@ -1832,7 +1831,7 @@ export declare class WorkOrderApi extends BaseAPI {
|
|
|
1832
1831
|
* @throws {RequiredError}
|
|
1833
1832
|
* @memberof WorkOrderApi
|
|
1834
1833
|
*/
|
|
1835
|
-
handle(requestParameters: WorkOrderApiHandleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
1834
|
+
handle(requestParameters: WorkOrderApiHandleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
|
|
1836
1835
|
/**
|
|
1837
1836
|
*
|
|
1838
1837
|
* @summary 批量处理状态
|
|
@@ -1904,7 +1903,7 @@ export declare class WorkOrderApi extends BaseAPI {
|
|
|
1904
1903
|
* @throws {RequiredError}
|
|
1905
1904
|
* @memberof WorkOrderApi
|
|
1906
1905
|
*/
|
|
1907
|
-
saveDetail(requestParameters: WorkOrderApiSaveDetailRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
1906
|
+
saveDetail(requestParameters: WorkOrderApiSaveDetailRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
|
|
1908
1907
|
/**
|
|
1909
1908
|
*
|
|
1910
1909
|
* @summary 查询工单逐级推送
|
|
@@ -561,7 +561,7 @@ const WorkOrderApiAxiosParamCreator = function (configuration) {
|
|
|
561
561
|
handle: (inspectionHandleReq_1, ...args_1) => __awaiter(this, [inspectionHandleReq_1, ...args_1], void 0, function* (inspectionHandleReq, options = {}) {
|
|
562
562
|
// verify required parameter 'inspectionHandleReq' is not null or undefined
|
|
563
563
|
(0, common_1.assertParamExists)('handle', 'inspectionHandleReq', inspectionHandleReq);
|
|
564
|
-
const localVarPath = `/gizone/
|
|
564
|
+
const localVarPath = `/gizone/workOrder/period/handle/inspection`;
|
|
565
565
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
566
566
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
567
567
|
let baseOptions;
|
|
@@ -594,7 +594,7 @@ const WorkOrderApiAxiosParamCreator = function (configuration) {
|
|
|
594
594
|
handleBatch: (inspectionHandleReq_1, ...args_1) => __awaiter(this, [inspectionHandleReq_1, ...args_1], void 0, function* (inspectionHandleReq, options = {}) {
|
|
595
595
|
// verify required parameter 'inspectionHandleReq' is not null or undefined
|
|
596
596
|
(0, common_1.assertParamExists)('handleBatch', 'inspectionHandleReq', inspectionHandleReq);
|
|
597
|
-
const localVarPath = `/gizone/
|
|
597
|
+
const localVarPath = `/gizone/workOrder/period/handle/inspection/batch`;
|
|
598
598
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
599
599
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
600
600
|
let baseOptions;
|
|
@@ -868,7 +868,7 @@ const WorkOrderApiAxiosParamCreator = function (configuration) {
|
|
|
868
868
|
saveDetail: (savePeriodWorkOrderDetailReq_1, ...args_1) => __awaiter(this, [savePeriodWorkOrderDetailReq_1, ...args_1], void 0, function* (savePeriodWorkOrderDetailReq, options = {}) {
|
|
869
869
|
// verify required parameter 'savePeriodWorkOrderDetailReq' is not null or undefined
|
|
870
870
|
(0, common_1.assertParamExists)('saveDetail', 'savePeriodWorkOrderDetailReq', savePeriodWorkOrderDetailReq);
|
|
871
|
-
const localVarPath = `/gizone/
|
|
871
|
+
const localVarPath = `/gizone/workOrder/period/saveDetail`;
|
|
872
872
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
873
873
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
874
874
|
let baseOptions;
|
|
@@ -1211,7 +1211,7 @@ const WorkOrderApiAxiosParamCreator = function (configuration) {
|
|
|
1211
1211
|
workOrderPeriodDetail: (workOrderId_1, ...args_1) => __awaiter(this, [workOrderId_1, ...args_1], void 0, function* (workOrderId, options = {}) {
|
|
1212
1212
|
// verify required parameter 'workOrderId' is not null or undefined
|
|
1213
1213
|
(0, common_1.assertParamExists)('workOrderPeriodDetail', 'workOrderId', workOrderId);
|
|
1214
|
-
const localVarPath = `/gizone/
|
|
1214
|
+
const localVarPath = `/gizone/workOrder/period/{workOrderId}`
|
|
1215
1215
|
.replace(`{${"workOrderId"}}`, encodeURIComponent(String(workOrderId)));
|
|
1216
1216
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1217
1217
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -116,13 +116,13 @@ export declare const AppAuthApiAxiosParamCreator: (configuration?: Configuration
|
|
|
116
116
|
*
|
|
117
117
|
* @summary 获取园区数据
|
|
118
118
|
* @param {string} uuid
|
|
119
|
-
* @param {
|
|
119
|
+
* @param {string} userType
|
|
120
120
|
* @param {number} parkId
|
|
121
121
|
* @param {string} appId
|
|
122
122
|
* @param {*} [options] Override http request option.
|
|
123
123
|
* @throws {RequiredError}
|
|
124
124
|
*/
|
|
125
|
-
getParkMiniApp: (uuid: string,
|
|
125
|
+
getParkMiniApp: (uuid: string, userType: string, parkId: number, appId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
126
126
|
/**
|
|
127
127
|
*
|
|
128
128
|
* @param {*} [options] Override http request option.
|
|
@@ -269,13 +269,13 @@ export declare const AppAuthApiFp: (configuration?: Configuration) => {
|
|
|
269
269
|
*
|
|
270
270
|
* @summary 获取园区数据
|
|
271
271
|
* @param {string} uuid
|
|
272
|
-
* @param {
|
|
272
|
+
* @param {string} userType
|
|
273
273
|
* @param {number} parkId
|
|
274
274
|
* @param {string} appId
|
|
275
275
|
* @param {*} [options] Override http request option.
|
|
276
276
|
* @throws {RequiredError}
|
|
277
277
|
*/
|
|
278
|
-
getParkMiniApp(uuid: string,
|
|
278
|
+
getParkMiniApp(uuid: string, userType: string, parkId: number, appId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
|
|
279
279
|
/**
|
|
280
280
|
*
|
|
281
281
|
* @param {*} [options] Override http request option.
|
|
@@ -618,10 +618,10 @@ export interface AppAuthApiGetParkMiniAppRequest {
|
|
|
618
618
|
readonly uuid: string;
|
|
619
619
|
/**
|
|
620
620
|
*
|
|
621
|
-
* @type {
|
|
621
|
+
* @type {string}
|
|
622
622
|
* @memberof AppAuthApiGetParkMiniApp
|
|
623
623
|
*/
|
|
624
|
-
readonly
|
|
624
|
+
readonly userType: string;
|
|
625
625
|
/**
|
|
626
626
|
*
|
|
627
627
|
* @type {number}
|