@gizone/rrs-client 4.2.9-alpha.856 → 4.2.9-alpha.858
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/reimbursement-bill-api.ts +9 -7
- package/dist/apis/reimbursement-bill-api.d.ts +7 -7
- package/dist/apis/reimbursement-bill-api.js +6 -4
- package/dist/esm/apis/reimbursement-bill-api.d.ts +7 -7
- package/dist/esm/apis/reimbursement-bill-api.js +6 -4
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +3 -3
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +3 -3
- package/models/ipage-energy-cost-record-info-vo.ts +3 -3
- package/ossutil.log +1221 -1221
- package/package.json +1 -1
|
@@ -752,11 +752,13 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration?: C
|
|
|
752
752
|
/**
|
|
753
753
|
*
|
|
754
754
|
* @summary MDM-获取法人公司银行信息
|
|
755
|
-
* @param {string}
|
|
755
|
+
* @param {string} companyCode
|
|
756
756
|
* @param {*} [options] Override http request option.
|
|
757
757
|
* @throws {RequiredError}
|
|
758
758
|
*/
|
|
759
|
-
thirdMdmLegalEntityBankAccounts: async (companyCode
|
|
759
|
+
thirdMdmLegalEntityBankAccounts: async (companyCode: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
760
|
+
// verify required parameter 'companyCode' is not null or undefined
|
|
761
|
+
assertParamExists('thirdMdmLegalEntityBankAccounts', 'companyCode', companyCode)
|
|
760
762
|
const localVarPath = `/gizone/reimbursement-bill/third/legal-entity/bank-accounts`;
|
|
761
763
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
762
764
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1160,11 +1162,11 @@ export const ReimbursementBillApiFp = function(configuration?: Configuration) {
|
|
|
1160
1162
|
/**
|
|
1161
1163
|
*
|
|
1162
1164
|
* @summary MDM-获取法人公司银行信息
|
|
1163
|
-
* @param {string}
|
|
1165
|
+
* @param {string} companyCode
|
|
1164
1166
|
* @param {*} [options] Override http request option.
|
|
1165
1167
|
* @throws {RequiredError}
|
|
1166
1168
|
*/
|
|
1167
|
-
async thirdMdmLegalEntityBankAccounts(companyCode
|
|
1169
|
+
async thirdMdmLegalEntityBankAccounts(companyCode: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListMdmLegalEntityBankAccountsVo>> {
|
|
1168
1170
|
const localVarAxiosArgs = await localVarAxiosParamCreator.thirdMdmLegalEntityBankAccounts(companyCode, options);
|
|
1169
1171
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1170
1172
|
const localVarOperationServerBasePath = operationServerMap['ReimbursementBillApi.thirdMdmLegalEntityBankAccounts']?.[localVarOperationServerIndex]?.url;
|
|
@@ -1379,7 +1381,7 @@ export const ReimbursementBillApiFactory = function (configuration?: Configurati
|
|
|
1379
1381
|
* @param {*} [options] Override http request option.
|
|
1380
1382
|
* @throws {RequiredError}
|
|
1381
1383
|
*/
|
|
1382
|
-
thirdMdmLegalEntityBankAccounts(requestParameters: ReimbursementBillApiThirdMdmLegalEntityBankAccountsRequest
|
|
1384
|
+
thirdMdmLegalEntityBankAccounts(requestParameters: ReimbursementBillApiThirdMdmLegalEntityBankAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListMdmLegalEntityBankAccountsVo> {
|
|
1383
1385
|
return localVarFp.thirdMdmLegalEntityBankAccounts(requestParameters.companyCode, options).then((request) => request(axios, basePath));
|
|
1384
1386
|
},
|
|
1385
1387
|
/**
|
|
@@ -1778,7 +1780,7 @@ export interface ReimbursementBillApiThirdMdmLegalEntityBankAccountsRequest {
|
|
|
1778
1780
|
* @type {string}
|
|
1779
1781
|
* @memberof ReimbursementBillApiThirdMdmLegalEntityBankAccounts
|
|
1780
1782
|
*/
|
|
1781
|
-
readonly companyCode
|
|
1783
|
+
readonly companyCode: string
|
|
1782
1784
|
}
|
|
1783
1785
|
|
|
1784
1786
|
/**
|
|
@@ -2013,7 +2015,7 @@ export class ReimbursementBillApi extends BaseAPI {
|
|
|
2013
2015
|
* @throws {RequiredError}
|
|
2014
2016
|
* @memberof ReimbursementBillApi
|
|
2015
2017
|
*/
|
|
2016
|
-
public thirdMdmLegalEntityBankAccounts(requestParameters: ReimbursementBillApiThirdMdmLegalEntityBankAccountsRequest
|
|
2018
|
+
public thirdMdmLegalEntityBankAccounts(requestParameters: ReimbursementBillApiThirdMdmLegalEntityBankAccountsRequest, options?: RawAxiosRequestConfig) {
|
|
2017
2019
|
return ReimbursementBillApiFp(this.configuration).thirdMdmLegalEntityBankAccounts(requestParameters.companyCode, options).then((request) => request(this.axios, this.basePath));
|
|
2018
2020
|
}
|
|
2019
2021
|
|
|
@@ -174,11 +174,11 @@ export declare const ReimbursementBillApiAxiosParamCreator: (configuration?: Con
|
|
|
174
174
|
/**
|
|
175
175
|
*
|
|
176
176
|
* @summary MDM-获取法人公司银行信息
|
|
177
|
-
* @param {string}
|
|
177
|
+
* @param {string} companyCode
|
|
178
178
|
* @param {*} [options] Override http request option.
|
|
179
179
|
* @throws {RequiredError}
|
|
180
180
|
*/
|
|
181
|
-
thirdMdmLegalEntityBankAccounts: (companyCode
|
|
181
|
+
thirdMdmLegalEntityBankAccounts: (companyCode: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
182
182
|
/**
|
|
183
183
|
*
|
|
184
184
|
* @summary MDM-获取供应商信息
|
|
@@ -353,11 +353,11 @@ export declare const ReimbursementBillApiFp: (configuration?: Configuration) =>
|
|
|
353
353
|
/**
|
|
354
354
|
*
|
|
355
355
|
* @summary MDM-获取法人公司银行信息
|
|
356
|
-
* @param {string}
|
|
356
|
+
* @param {string} companyCode
|
|
357
357
|
* @param {*} [options] Override http request option.
|
|
358
358
|
* @throws {RequiredError}
|
|
359
359
|
*/
|
|
360
|
-
thirdMdmLegalEntityBankAccounts(companyCode
|
|
360
|
+
thirdMdmLegalEntityBankAccounts(companyCode: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListMdmLegalEntityBankAccountsVo>>;
|
|
361
361
|
/**
|
|
362
362
|
*
|
|
363
363
|
* @summary MDM-获取供应商信息
|
|
@@ -515,7 +515,7 @@ export declare const ReimbursementBillApiFactory: (configuration?: Configuration
|
|
|
515
515
|
* @param {*} [options] Override http request option.
|
|
516
516
|
* @throws {RequiredError}
|
|
517
517
|
*/
|
|
518
|
-
thirdMdmLegalEntityBankAccounts(requestParameters
|
|
518
|
+
thirdMdmLegalEntityBankAccounts(requestParameters: ReimbursementBillApiThirdMdmLegalEntityBankAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListMdmLegalEntityBankAccountsVo>;
|
|
519
519
|
/**
|
|
520
520
|
*
|
|
521
521
|
* @summary MDM-获取供应商信息
|
|
@@ -867,7 +867,7 @@ export interface ReimbursementBillApiThirdMdmLegalEntityBankAccountsRequest {
|
|
|
867
867
|
* @type {string}
|
|
868
868
|
* @memberof ReimbursementBillApiThirdMdmLegalEntityBankAccounts
|
|
869
869
|
*/
|
|
870
|
-
readonly companyCode
|
|
870
|
+
readonly companyCode: string;
|
|
871
871
|
}
|
|
872
872
|
/**
|
|
873
873
|
* Request parameters for thirdMdmVendors operation in ReimbursementBillApi.
|
|
@@ -1055,7 +1055,7 @@ export declare class ReimbursementBillApi extends BaseAPI {
|
|
|
1055
1055
|
* @throws {RequiredError}
|
|
1056
1056
|
* @memberof ReimbursementBillApi
|
|
1057
1057
|
*/
|
|
1058
|
-
thirdMdmLegalEntityBankAccounts(requestParameters
|
|
1058
|
+
thirdMdmLegalEntityBankAccounts(requestParameters: ReimbursementBillApiThirdMdmLegalEntityBankAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListMdmLegalEntityBankAccountsVo, any, {}>>;
|
|
1059
1059
|
/**
|
|
1060
1060
|
*
|
|
1061
1061
|
* @summary MDM-获取供应商信息
|
|
@@ -602,11 +602,13 @@ const ReimbursementBillApiAxiosParamCreator = function (configuration) {
|
|
|
602
602
|
/**
|
|
603
603
|
*
|
|
604
604
|
* @summary MDM-获取法人公司银行信息
|
|
605
|
-
* @param {string}
|
|
605
|
+
* @param {string} companyCode
|
|
606
606
|
* @param {*} [options] Override http request option.
|
|
607
607
|
* @throws {RequiredError}
|
|
608
608
|
*/
|
|
609
609
|
thirdMdmLegalEntityBankAccounts: (companyCode_1, ...args_1) => __awaiter(this, [companyCode_1, ...args_1], void 0, function* (companyCode, options = {}) {
|
|
610
|
+
// verify required parameter 'companyCode' is not null or undefined
|
|
611
|
+
(0, common_1.assertParamExists)('thirdMdmLegalEntityBankAccounts', 'companyCode', companyCode);
|
|
610
612
|
const localVarPath = `/gizone/reimbursement-bill/third/legal-entity/bank-accounts`;
|
|
611
613
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
612
614
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -1018,7 +1020,7 @@ const ReimbursementBillApiFp = function (configuration) {
|
|
|
1018
1020
|
/**
|
|
1019
1021
|
*
|
|
1020
1022
|
* @summary MDM-获取法人公司银行信息
|
|
1021
|
-
* @param {string}
|
|
1023
|
+
* @param {string} companyCode
|
|
1022
1024
|
* @param {*} [options] Override http request option.
|
|
1023
1025
|
* @throws {RequiredError}
|
|
1024
1026
|
*/
|
|
@@ -1252,7 +1254,7 @@ const ReimbursementBillApiFactory = function (configuration, basePath, axios) {
|
|
|
1252
1254
|
* @param {*} [options] Override http request option.
|
|
1253
1255
|
* @throws {RequiredError}
|
|
1254
1256
|
*/
|
|
1255
|
-
thirdMdmLegalEntityBankAccounts(requestParameters
|
|
1257
|
+
thirdMdmLegalEntityBankAccounts(requestParameters, options) {
|
|
1256
1258
|
return localVarFp.thirdMdmLegalEntityBankAccounts(requestParameters.companyCode, options).then((request) => request(axios, basePath));
|
|
1257
1259
|
},
|
|
1258
1260
|
/**
|
|
@@ -1466,7 +1468,7 @@ class ReimbursementBillApi extends base_1.BaseAPI {
|
|
|
1466
1468
|
* @throws {RequiredError}
|
|
1467
1469
|
* @memberof ReimbursementBillApi
|
|
1468
1470
|
*/
|
|
1469
|
-
thirdMdmLegalEntityBankAccounts(requestParameters
|
|
1471
|
+
thirdMdmLegalEntityBankAccounts(requestParameters, options) {
|
|
1470
1472
|
return (0, exports.ReimbursementBillApiFp)(this.configuration).thirdMdmLegalEntityBankAccounts(requestParameters.companyCode, options).then((request) => request(this.axios, this.basePath));
|
|
1471
1473
|
}
|
|
1472
1474
|
/**
|
|
@@ -174,11 +174,11 @@ export declare const ReimbursementBillApiAxiosParamCreator: (configuration?: Con
|
|
|
174
174
|
/**
|
|
175
175
|
*
|
|
176
176
|
* @summary MDM-获取法人公司银行信息
|
|
177
|
-
* @param {string}
|
|
177
|
+
* @param {string} companyCode
|
|
178
178
|
* @param {*} [options] Override http request option.
|
|
179
179
|
* @throws {RequiredError}
|
|
180
180
|
*/
|
|
181
|
-
thirdMdmLegalEntityBankAccounts: (companyCode
|
|
181
|
+
thirdMdmLegalEntityBankAccounts: (companyCode: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
182
182
|
/**
|
|
183
183
|
*
|
|
184
184
|
* @summary MDM-获取供应商信息
|
|
@@ -353,11 +353,11 @@ export declare const ReimbursementBillApiFp: (configuration?: Configuration) =>
|
|
|
353
353
|
/**
|
|
354
354
|
*
|
|
355
355
|
* @summary MDM-获取法人公司银行信息
|
|
356
|
-
* @param {string}
|
|
356
|
+
* @param {string} companyCode
|
|
357
357
|
* @param {*} [options] Override http request option.
|
|
358
358
|
* @throws {RequiredError}
|
|
359
359
|
*/
|
|
360
|
-
thirdMdmLegalEntityBankAccounts(companyCode
|
|
360
|
+
thirdMdmLegalEntityBankAccounts(companyCode: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListMdmLegalEntityBankAccountsVo>>;
|
|
361
361
|
/**
|
|
362
362
|
*
|
|
363
363
|
* @summary MDM-获取供应商信息
|
|
@@ -515,7 +515,7 @@ export declare const ReimbursementBillApiFactory: (configuration?: Configuration
|
|
|
515
515
|
* @param {*} [options] Override http request option.
|
|
516
516
|
* @throws {RequiredError}
|
|
517
517
|
*/
|
|
518
|
-
thirdMdmLegalEntityBankAccounts(requestParameters
|
|
518
|
+
thirdMdmLegalEntityBankAccounts(requestParameters: ReimbursementBillApiThirdMdmLegalEntityBankAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListMdmLegalEntityBankAccountsVo>;
|
|
519
519
|
/**
|
|
520
520
|
*
|
|
521
521
|
* @summary MDM-获取供应商信息
|
|
@@ -867,7 +867,7 @@ export interface ReimbursementBillApiThirdMdmLegalEntityBankAccountsRequest {
|
|
|
867
867
|
* @type {string}
|
|
868
868
|
* @memberof ReimbursementBillApiThirdMdmLegalEntityBankAccounts
|
|
869
869
|
*/
|
|
870
|
-
readonly companyCode
|
|
870
|
+
readonly companyCode: string;
|
|
871
871
|
}
|
|
872
872
|
/**
|
|
873
873
|
* Request parameters for thirdMdmVendors operation in ReimbursementBillApi.
|
|
@@ -1055,7 +1055,7 @@ export declare class ReimbursementBillApi extends BaseAPI {
|
|
|
1055
1055
|
* @throws {RequiredError}
|
|
1056
1056
|
* @memberof ReimbursementBillApi
|
|
1057
1057
|
*/
|
|
1058
|
-
thirdMdmLegalEntityBankAccounts(requestParameters
|
|
1058
|
+
thirdMdmLegalEntityBankAccounts(requestParameters: ReimbursementBillApiThirdMdmLegalEntityBankAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListMdmLegalEntityBankAccountsVo, any, {}>>;
|
|
1059
1059
|
/**
|
|
1060
1060
|
*
|
|
1061
1061
|
* @summary MDM-获取供应商信息
|
|
@@ -599,11 +599,13 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration) {
|
|
|
599
599
|
/**
|
|
600
600
|
*
|
|
601
601
|
* @summary MDM-获取法人公司银行信息
|
|
602
|
-
* @param {string}
|
|
602
|
+
* @param {string} companyCode
|
|
603
603
|
* @param {*} [options] Override http request option.
|
|
604
604
|
* @throws {RequiredError}
|
|
605
605
|
*/
|
|
606
606
|
thirdMdmLegalEntityBankAccounts: (companyCode_1, ...args_1) => __awaiter(this, [companyCode_1, ...args_1], void 0, function* (companyCode, options = {}) {
|
|
607
|
+
// verify required parameter 'companyCode' is not null or undefined
|
|
608
|
+
assertParamExists('thirdMdmLegalEntityBankAccounts', 'companyCode', companyCode);
|
|
607
609
|
const localVarPath = `/gizone/reimbursement-bill/third/legal-entity/bank-accounts`;
|
|
608
610
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
609
611
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1014,7 +1016,7 @@ export const ReimbursementBillApiFp = function (configuration) {
|
|
|
1014
1016
|
/**
|
|
1015
1017
|
*
|
|
1016
1018
|
* @summary MDM-获取法人公司银行信息
|
|
1017
|
-
* @param {string}
|
|
1019
|
+
* @param {string} companyCode
|
|
1018
1020
|
* @param {*} [options] Override http request option.
|
|
1019
1021
|
* @throws {RequiredError}
|
|
1020
1022
|
*/
|
|
@@ -1247,7 +1249,7 @@ export const ReimbursementBillApiFactory = function (configuration, basePath, ax
|
|
|
1247
1249
|
* @param {*} [options] Override http request option.
|
|
1248
1250
|
* @throws {RequiredError}
|
|
1249
1251
|
*/
|
|
1250
|
-
thirdMdmLegalEntityBankAccounts(requestParameters
|
|
1252
|
+
thirdMdmLegalEntityBankAccounts(requestParameters, options) {
|
|
1251
1253
|
return localVarFp.thirdMdmLegalEntityBankAccounts(requestParameters.companyCode, options).then((request) => request(axios, basePath));
|
|
1252
1254
|
},
|
|
1253
1255
|
/**
|
|
@@ -1460,7 +1462,7 @@ export class ReimbursementBillApi extends BaseAPI {
|
|
|
1460
1462
|
* @throws {RequiredError}
|
|
1461
1463
|
* @memberof ReimbursementBillApi
|
|
1462
1464
|
*/
|
|
1463
|
-
thirdMdmLegalEntityBankAccounts(requestParameters
|
|
1465
|
+
thirdMdmLegalEntityBankAccounts(requestParameters, options) {
|
|
1464
1466
|
return ReimbursementBillApiFp(this.configuration).thirdMdmLegalEntityBankAccounts(requestParameters.companyCode, options).then((request) => request(this.axios, this.basePath));
|
|
1465
1467
|
}
|
|
1466
1468
|
/**
|
|
@@ -20,15 +20,15 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
20
20
|
*
|
|
21
21
|
* @type {number}
|
|
22
22
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
23
|
+
* @deprecated
|
|
23
24
|
*/
|
|
24
|
-
'
|
|
25
|
+
'pages'?: number;
|
|
25
26
|
/**
|
|
26
27
|
*
|
|
27
28
|
* @type {number}
|
|
28
29
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
29
|
-
* @deprecated
|
|
30
30
|
*/
|
|
31
|
-
'
|
|
31
|
+
'current'?: number;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
34
|
* @type {Array<EnergyCostRecordInfoVO>}
|
|
@@ -20,15 +20,15 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
20
20
|
*
|
|
21
21
|
* @type {number}
|
|
22
22
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
23
|
+
* @deprecated
|
|
23
24
|
*/
|
|
24
|
-
'
|
|
25
|
+
'pages'?: number;
|
|
25
26
|
/**
|
|
26
27
|
*
|
|
27
28
|
* @type {number}
|
|
28
29
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
29
|
-
* @deprecated
|
|
30
30
|
*/
|
|
31
|
-
'
|
|
31
|
+
'current'?: number;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
34
|
* @type {Array<EnergyCostRecordInfoVO>}
|
|
@@ -27,15 +27,15 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
27
27
|
*
|
|
28
28
|
* @type {number}
|
|
29
29
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
30
|
+
* @deprecated
|
|
30
31
|
*/
|
|
31
|
-
'
|
|
32
|
+
'pages'?: number;
|
|
32
33
|
/**
|
|
33
34
|
*
|
|
34
35
|
* @type {number}
|
|
35
36
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
36
|
-
* @deprecated
|
|
37
37
|
*/
|
|
38
|
-
'
|
|
38
|
+
'current'?: number;
|
|
39
39
|
/**
|
|
40
40
|
*
|
|
41
41
|
* @type {Array<EnergyCostRecordInfoVO>}
|