@gizone/rrs-client 3.11.12-alpha.48 → 3.11.12-alpha.49
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/access-api.ts +30 -30
- package/apis/cost-api.ts +15 -15
- package/apis/energy-api.ts +15 -15
- package/apis/privacy-api.ts +78 -76
- package/apis/sys-api.ts +47 -47
- package/apis/user-api.ts +15 -15
- package/dist/apis/access-api.d.ts +20 -20
- package/dist/apis/access-api.js +22 -22
- package/dist/apis/cost-api.d.ts +10 -10
- package/dist/apis/cost-api.js +11 -11
- package/dist/apis/energy-api.d.ts +10 -10
- package/dist/apis/energy-api.js +11 -11
- package/dist/apis/privacy-api.d.ts +49 -48
- package/dist/apis/privacy-api.js +60 -60
- package/dist/apis/sys-api.d.ts +31 -31
- package/dist/apis/sys-api.js +34 -34
- package/dist/apis/user-api.d.ts +10 -10
- package/dist/apis/user-api.js +11 -11
- package/dist/esm/apis/access-api.d.ts +20 -20
- package/dist/esm/apis/access-api.js +22 -22
- package/dist/esm/apis/cost-api.d.ts +10 -10
- package/dist/esm/apis/cost-api.js +11 -11
- package/dist/esm/apis/energy-api.d.ts +10 -10
- package/dist/esm/apis/energy-api.js +11 -11
- package/dist/esm/apis/privacy-api.d.ts +49 -48
- package/dist/esm/apis/privacy-api.js +60 -60
- package/dist/esm/apis/sys-api.d.ts +31 -31
- package/dist/esm/apis/sys-api.js +34 -34
- package/dist/esm/apis/user-api.d.ts +10 -10
- package/dist/esm/apis/user-api.js +11 -11
- package/dist/esm/models/get-user-wx200-response.d.ts +10 -10
- package/dist/esm/models/ipage-access-vo.d.ts +8 -8
- package/dist/models/get-user-wx200-response.d.ts +10 -10
- package/dist/models/ipage-access-vo.d.ts +8 -8
- package/models/get-user-wx200-response.ts +10 -10
- package/models/ipage-access-vo.ts +8 -8
- package/package.json +1 -1
package/apis/access-api.ts
CHANGED
|
@@ -1765,9 +1765,9 @@ export const AccessApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
1765
1765
|
* @param {*} [options] Override http request option.
|
|
1766
1766
|
* @throws {RequiredError}
|
|
1767
1767
|
*/
|
|
1768
|
-
|
|
1768
|
+
detail: async (id: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1769
1769
|
// verify required parameter 'id' is not null or undefined
|
|
1770
|
-
assertParamExists('
|
|
1770
|
+
assertParamExists('detail', 'id', id)
|
|
1771
1771
|
const localVarPath = `/gizone/gate/detail`;
|
|
1772
1772
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1773
1773
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1806,9 +1806,9 @@ export const AccessApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
1806
1806
|
* @param {*} [options] Override http request option.
|
|
1807
1807
|
* @throws {RequiredError}
|
|
1808
1808
|
*/
|
|
1809
|
-
|
|
1809
|
+
detail1: async (id: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1810
1810
|
// verify required parameter 'id' is not null or undefined
|
|
1811
|
-
assertParamExists('
|
|
1811
|
+
assertParamExists('detail1', 'id', id)
|
|
1812
1812
|
const localVarPath = `/access/detail`;
|
|
1813
1813
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1814
1814
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -5224,10 +5224,10 @@ export const AccessApiFp = function(configuration?: Configuration) {
|
|
|
5224
5224
|
* @param {*} [options] Override http request option.
|
|
5225
5225
|
* @throws {RequiredError}
|
|
5226
5226
|
*/
|
|
5227
|
-
async
|
|
5228
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
5227
|
+
async detail(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>> {
|
|
5228
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.detail(id, options);
|
|
5229
5229
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5230
|
-
const localVarOperationServerBasePath = operationServerMap['AccessApi.
|
|
5230
|
+
const localVarOperationServerBasePath = operationServerMap['AccessApi.detail']?.[localVarOperationServerIndex]?.url;
|
|
5231
5231
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5232
5232
|
},
|
|
5233
5233
|
/**
|
|
@@ -5237,10 +5237,10 @@ export const AccessApiFp = function(configuration?: Configuration) {
|
|
|
5237
5237
|
* @param {*} [options] Override http request option.
|
|
5238
5238
|
* @throws {RequiredError}
|
|
5239
5239
|
*/
|
|
5240
|
-
async
|
|
5241
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
5240
|
+
async detail1(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>> {
|
|
5241
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.detail1(id, options);
|
|
5242
5242
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5243
|
-
const localVarOperationServerBasePath = operationServerMap['AccessApi.
|
|
5243
|
+
const localVarOperationServerBasePath = operationServerMap['AccessApi.detail1']?.[localVarOperationServerIndex]?.url;
|
|
5244
5244
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5245
5245
|
},
|
|
5246
5246
|
/**
|
|
@@ -6554,22 +6554,22 @@ export const AccessApiFactory = function (configuration?: Configuration, basePat
|
|
|
6554
6554
|
/**
|
|
6555
6555
|
*
|
|
6556
6556
|
* @summary 出入口详情
|
|
6557
|
-
* @param {
|
|
6557
|
+
* @param {AccessApiDetailRequest} requestParameters Request parameters.
|
|
6558
6558
|
* @param {*} [options] Override http request option.
|
|
6559
6559
|
* @throws {RequiredError}
|
|
6560
6560
|
*/
|
|
6561
|
-
|
|
6562
|
-
return localVarFp.
|
|
6561
|
+
detail(requestParameters: AccessApiDetailRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult> {
|
|
6562
|
+
return localVarFp.detail(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
6563
6563
|
},
|
|
6564
6564
|
/**
|
|
6565
6565
|
*
|
|
6566
6566
|
* @summary 详情
|
|
6567
|
-
* @param {
|
|
6567
|
+
* @param {AccessApiDetail1Request} requestParameters Request parameters.
|
|
6568
6568
|
* @param {*} [options] Override http request option.
|
|
6569
6569
|
* @throws {RequiredError}
|
|
6570
6570
|
*/
|
|
6571
|
-
|
|
6572
|
-
return localVarFp.
|
|
6571
|
+
detail1(requestParameters: AccessApiDetail1Request, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult> {
|
|
6572
|
+
return localVarFp.detail1(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
6573
6573
|
},
|
|
6574
6574
|
/**
|
|
6575
6575
|
*
|
|
@@ -7770,29 +7770,29 @@ export interface AccessApiDemo1Request {
|
|
|
7770
7770
|
}
|
|
7771
7771
|
|
|
7772
7772
|
/**
|
|
7773
|
-
* Request parameters for
|
|
7773
|
+
* Request parameters for detail operation in AccessApi.
|
|
7774
7774
|
* @export
|
|
7775
|
-
* @interface
|
|
7775
|
+
* @interface AccessApiDetailRequest
|
|
7776
7776
|
*/
|
|
7777
|
-
export interface
|
|
7777
|
+
export interface AccessApiDetailRequest {
|
|
7778
7778
|
/**
|
|
7779
7779
|
*
|
|
7780
7780
|
* @type {number}
|
|
7781
|
-
* @memberof
|
|
7781
|
+
* @memberof AccessApiDetail
|
|
7782
7782
|
*/
|
|
7783
7783
|
readonly id: number
|
|
7784
7784
|
}
|
|
7785
7785
|
|
|
7786
7786
|
/**
|
|
7787
|
-
* Request parameters for
|
|
7787
|
+
* Request parameters for detail1 operation in AccessApi.
|
|
7788
7788
|
* @export
|
|
7789
|
-
* @interface
|
|
7789
|
+
* @interface AccessApiDetail1Request
|
|
7790
7790
|
*/
|
|
7791
|
-
export interface
|
|
7791
|
+
export interface AccessApiDetail1Request {
|
|
7792
7792
|
/**
|
|
7793
7793
|
*
|
|
7794
7794
|
* @type {number}
|
|
7795
|
-
* @memberof
|
|
7795
|
+
* @memberof AccessApiDetail1
|
|
7796
7796
|
*/
|
|
7797
7797
|
readonly id: number
|
|
7798
7798
|
}
|
|
@@ -9305,25 +9305,25 @@ export class AccessApi extends BaseAPI {
|
|
|
9305
9305
|
/**
|
|
9306
9306
|
*
|
|
9307
9307
|
* @summary 出入口详情
|
|
9308
|
-
* @param {
|
|
9308
|
+
* @param {AccessApiDetailRequest} requestParameters Request parameters.
|
|
9309
9309
|
* @param {*} [options] Override http request option.
|
|
9310
9310
|
* @throws {RequiredError}
|
|
9311
9311
|
* @memberof AccessApi
|
|
9312
9312
|
*/
|
|
9313
|
-
public
|
|
9314
|
-
return AccessApiFp(this.configuration).
|
|
9313
|
+
public detail(requestParameters: AccessApiDetailRequest, options?: RawAxiosRequestConfig) {
|
|
9314
|
+
return AccessApiFp(this.configuration).detail(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
9315
9315
|
}
|
|
9316
9316
|
|
|
9317
9317
|
/**
|
|
9318
9318
|
*
|
|
9319
9319
|
* @summary 详情
|
|
9320
|
-
* @param {
|
|
9320
|
+
* @param {AccessApiDetail1Request} requestParameters Request parameters.
|
|
9321
9321
|
* @param {*} [options] Override http request option.
|
|
9322
9322
|
* @throws {RequiredError}
|
|
9323
9323
|
* @memberof AccessApi
|
|
9324
9324
|
*/
|
|
9325
|
-
public
|
|
9326
|
-
return AccessApiFp(this.configuration).
|
|
9325
|
+
public detail1(requestParameters: AccessApiDetail1Request, options?: RawAxiosRequestConfig) {
|
|
9326
|
+
return AccessApiFp(this.configuration).detail1(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
9327
9327
|
}
|
|
9328
9328
|
|
|
9329
9329
|
/**
|
package/apis/cost-api.ts
CHANGED
|
@@ -314,9 +314,9 @@ export const CostApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
314
314
|
* @param {*} [options] Override http request option.
|
|
315
315
|
* @throws {RequiredError}
|
|
316
316
|
*/
|
|
317
|
-
|
|
317
|
+
getById1: async (billId: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
318
318
|
// verify required parameter 'billId' is not null or undefined
|
|
319
|
-
assertParamExists('
|
|
319
|
+
assertParamExists('getById1', 'billId', billId)
|
|
320
320
|
const localVarPath = `/gizone/cost/tenantRentBill/getById`;
|
|
321
321
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
322
322
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1917,10 +1917,10 @@ export const CostApiFp = function(configuration?: Configuration) {
|
|
|
1917
1917
|
* @param {*} [options] Override http request option.
|
|
1918
1918
|
* @throws {RequiredError}
|
|
1919
1919
|
*/
|
|
1920
|
-
async
|
|
1921
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1920
|
+
async getById1(billId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>> {
|
|
1921
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getById1(billId, options);
|
|
1922
1922
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1923
|
-
const localVarOperationServerBasePath = operationServerMap['CostApi.
|
|
1923
|
+
const localVarOperationServerBasePath = operationServerMap['CostApi.getById1']?.[localVarOperationServerIndex]?.url;
|
|
1924
1924
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1925
1925
|
},
|
|
1926
1926
|
/**
|
|
@@ -2465,12 +2465,12 @@ export const CostApiFactory = function (configuration?: Configuration, basePath?
|
|
|
2465
2465
|
/**
|
|
2466
2466
|
*
|
|
2467
2467
|
* @summary 通过账单id 查询账单信息
|
|
2468
|
-
* @param {
|
|
2468
|
+
* @param {CostApiGetById1Request} requestParameters Request parameters.
|
|
2469
2469
|
* @param {*} [options] Override http request option.
|
|
2470
2470
|
* @throws {RequiredError}
|
|
2471
2471
|
*/
|
|
2472
|
-
|
|
2473
|
-
return localVarFp.
|
|
2472
|
+
getById1(requestParameters: CostApiGetById1Request, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult> {
|
|
2473
|
+
return localVarFp.getById1(requestParameters.billId, options).then((request) => request(axios, basePath));
|
|
2474
2474
|
},
|
|
2475
2475
|
/**
|
|
2476
2476
|
*
|
|
@@ -2925,15 +2925,15 @@ export interface CostApiEnergyBillPushSapRequest {
|
|
|
2925
2925
|
}
|
|
2926
2926
|
|
|
2927
2927
|
/**
|
|
2928
|
-
* Request parameters for
|
|
2928
|
+
* Request parameters for getById1 operation in CostApi.
|
|
2929
2929
|
* @export
|
|
2930
|
-
* @interface
|
|
2930
|
+
* @interface CostApiGetById1Request
|
|
2931
2931
|
*/
|
|
2932
|
-
export interface
|
|
2932
|
+
export interface CostApiGetById1Request {
|
|
2933
2933
|
/**
|
|
2934
2934
|
*
|
|
2935
2935
|
* @type {number}
|
|
2936
|
-
* @memberof
|
|
2936
|
+
* @memberof CostApiGetById1
|
|
2937
2937
|
*/
|
|
2938
2938
|
readonly billId: number
|
|
2939
2939
|
}
|
|
@@ -3517,13 +3517,13 @@ export class CostApi extends BaseAPI {
|
|
|
3517
3517
|
/**
|
|
3518
3518
|
*
|
|
3519
3519
|
* @summary 通过账单id 查询账单信息
|
|
3520
|
-
* @param {
|
|
3520
|
+
* @param {CostApiGetById1Request} requestParameters Request parameters.
|
|
3521
3521
|
* @param {*} [options] Override http request option.
|
|
3522
3522
|
* @throws {RequiredError}
|
|
3523
3523
|
* @memberof CostApi
|
|
3524
3524
|
*/
|
|
3525
|
-
public
|
|
3526
|
-
return CostApiFp(this.configuration).
|
|
3525
|
+
public getById1(requestParameters: CostApiGetById1Request, options?: RawAxiosRequestConfig) {
|
|
3526
|
+
return CostApiFp(this.configuration).getById1(requestParameters.billId, options).then((request) => request(this.axios, this.basePath));
|
|
3527
3527
|
}
|
|
3528
3528
|
|
|
3529
3529
|
/**
|
package/apis/energy-api.ts
CHANGED
|
@@ -2144,9 +2144,9 @@ export const EnergyApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
2144
2144
|
* @param {*} [options] Override http request option.
|
|
2145
2145
|
* @throws {RequiredError}
|
|
2146
2146
|
*/
|
|
2147
|
-
|
|
2147
|
+
list: async (energyConsumptionSearchVO: EnergyConsumptionSearchVO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2148
2148
|
// verify required parameter 'energyConsumptionSearchVO' is not null or undefined
|
|
2149
|
-
assertParamExists('
|
|
2149
|
+
assertParamExists('list', 'energyConsumptionSearchVO', energyConsumptionSearchVO)
|
|
2150
2150
|
const localVarPath = `/gizone/energy/consumption/list`;
|
|
2151
2151
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2152
2152
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -5368,10 +5368,10 @@ export const EnergyApiFp = function(configuration?: Configuration) {
|
|
|
5368
5368
|
* @param {*} [options] Override http request option.
|
|
5369
5369
|
* @throws {RequiredError}
|
|
5370
5370
|
*/
|
|
5371
|
-
async
|
|
5372
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
5371
|
+
async list(energyConsumptionSearchVO: EnergyConsumptionSearchVO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoEnergyConsumptionDetailsDTO>> {
|
|
5372
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.list(energyConsumptionSearchVO, options);
|
|
5373
5373
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5374
|
-
const localVarOperationServerBasePath = operationServerMap['EnergyApi.
|
|
5374
|
+
const localVarOperationServerBasePath = operationServerMap['EnergyApi.list']?.[localVarOperationServerIndex]?.url;
|
|
5375
5375
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5376
5376
|
},
|
|
5377
5377
|
/**
|
|
@@ -6633,12 +6633,12 @@ export const EnergyApiFactory = function (configuration?: Configuration, basePat
|
|
|
6633
6633
|
/**
|
|
6634
6634
|
*
|
|
6635
6635
|
* @summary 能源列表
|
|
6636
|
-
* @param {
|
|
6636
|
+
* @param {EnergyApiListRequest} requestParameters Request parameters.
|
|
6637
6637
|
* @param {*} [options] Override http request option.
|
|
6638
6638
|
* @throws {RequiredError}
|
|
6639
6639
|
*/
|
|
6640
|
-
|
|
6641
|
-
return localVarFp.
|
|
6640
|
+
list(requestParameters: EnergyApiListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultPageDtoEnergyConsumptionDetailsDTO> {
|
|
6641
|
+
return localVarFp.list(requestParameters.energyConsumptionSearchVO, options).then((request) => request(axios, basePath));
|
|
6642
6642
|
},
|
|
6643
6643
|
/**
|
|
6644
6644
|
*
|
|
@@ -7945,15 +7945,15 @@ export interface EnergyApiInternetMeterDetailsAddRequest {
|
|
|
7945
7945
|
}
|
|
7946
7946
|
|
|
7947
7947
|
/**
|
|
7948
|
-
* Request parameters for
|
|
7948
|
+
* Request parameters for list operation in EnergyApi.
|
|
7949
7949
|
* @export
|
|
7950
|
-
* @interface
|
|
7950
|
+
* @interface EnergyApiListRequest
|
|
7951
7951
|
*/
|
|
7952
|
-
export interface
|
|
7952
|
+
export interface EnergyApiListRequest {
|
|
7953
7953
|
/**
|
|
7954
7954
|
*
|
|
7955
7955
|
* @type {EnergyConsumptionSearchVO}
|
|
7956
|
-
* @memberof
|
|
7956
|
+
* @memberof EnergyApiList
|
|
7957
7957
|
*/
|
|
7958
7958
|
readonly energyConsumptionSearchVO: EnergyConsumptionSearchVO
|
|
7959
7959
|
}
|
|
@@ -9635,13 +9635,13 @@ export class EnergyApi extends BaseAPI {
|
|
|
9635
9635
|
/**
|
|
9636
9636
|
*
|
|
9637
9637
|
* @summary 能源列表
|
|
9638
|
-
* @param {
|
|
9638
|
+
* @param {EnergyApiListRequest} requestParameters Request parameters.
|
|
9639
9639
|
* @param {*} [options] Override http request option.
|
|
9640
9640
|
* @throws {RequiredError}
|
|
9641
9641
|
* @memberof EnergyApi
|
|
9642
9642
|
*/
|
|
9643
|
-
public
|
|
9644
|
-
return EnergyApiFp(this.configuration).
|
|
9643
|
+
public list(requestParameters: EnergyApiListRequest, options?: RawAxiosRequestConfig) {
|
|
9644
|
+
return EnergyApiFp(this.configuration).list(requestParameters.energyConsumptionSearchVO, options).then((request) => request(this.axios, this.basePath));
|
|
9645
9645
|
}
|
|
9646
9646
|
|
|
9647
9647
|
/**
|