@finverse/sdk-typescript 0.0.52 → 0.0.55
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/dist/api.d.ts +24 -22
- package/dist/api.js +16 -30
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -305,13 +305,13 @@ export interface AuthChecklistOptions {
|
|
|
305
305
|
* @type {string}
|
|
306
306
|
* @memberof AuthChecklistOptions
|
|
307
307
|
*/
|
|
308
|
-
submitted_at
|
|
308
|
+
submitted_at?: string | null;
|
|
309
309
|
/**
|
|
310
310
|
* Indicates who submitted the authorization factor to Finverse. Possible values are CUSTOMER_APP, FINVERSE_LINK
|
|
311
311
|
* @type {string}
|
|
312
312
|
* @memberof AuthChecklistOptions
|
|
313
313
|
*/
|
|
314
|
-
submitted_by
|
|
314
|
+
submitted_by?: AuthChecklistOptionsSubmittedByEnum;
|
|
315
315
|
}
|
|
316
316
|
export declare const AuthChecklistOptionsNameEnum: {
|
|
317
317
|
readonly CredentialsLogin: "INSTITUTION_CREDENTIALS_LOGIN";
|
|
@@ -1471,6 +1471,12 @@ export interface IdentityDateOfBirth {
|
|
|
1471
1471
|
* @memberof IdentityDateOfBirth
|
|
1472
1472
|
*/
|
|
1473
1473
|
date_of_birth?: string;
|
|
1474
|
+
/**
|
|
1475
|
+
*
|
|
1476
|
+
* @type {string}
|
|
1477
|
+
* @memberof IdentityDateOfBirth
|
|
1478
|
+
*/
|
|
1479
|
+
masked_date_of_birth?: string;
|
|
1474
1480
|
/**
|
|
1475
1481
|
*
|
|
1476
1482
|
* @type {string}
|
|
@@ -2985,6 +2991,12 @@ export interface Principal {
|
|
|
2985
2991
|
* @memberof Principal
|
|
2986
2992
|
*/
|
|
2987
2993
|
customization_id?: string;
|
|
2994
|
+
/**
|
|
2995
|
+
*
|
|
2996
|
+
* @type {string}
|
|
2997
|
+
* @memberof Principal
|
|
2998
|
+
*/
|
|
2999
|
+
mandate_id?: string;
|
|
2988
3000
|
/**
|
|
2989
3001
|
*
|
|
2990
3002
|
* @type {number}
|
|
@@ -3530,13 +3542,12 @@ export declare const CustomerApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
3530
3542
|
getMandate: (mandateId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3531
3543
|
/**
|
|
3532
3544
|
* Get Mandate Authorization by mandate id
|
|
3533
|
-
* @param {string} mandateId Finverse Mandate ID
|
|
3534
3545
|
* @param {string} institutionId Finverse Institution ID
|
|
3535
3546
|
* @param {'PERSONAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are PERSONAL, BUSINESS
|
|
3536
3547
|
* @param {*} [options] Override http request option.
|
|
3537
3548
|
* @throws {RequiredError}
|
|
3538
3549
|
*/
|
|
3539
|
-
getMandateAuth: (
|
|
3550
|
+
getMandateAuth: (institutionId: string, senderType?: 'PERSONAL' | 'BUSINESS', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3540
3551
|
/**
|
|
3541
3552
|
* Get link to launch FV Link UI in mandate authorization mode
|
|
3542
3553
|
* @param {GetMandateAuthLinkRequest} getMandateAuthLinkRequest request body for mandate authorization link
|
|
@@ -3577,12 +3588,11 @@ export declare const CustomerApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
3577
3588
|
refreshToken: (refreshRequest: RefreshRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3578
3589
|
/**
|
|
3579
3590
|
* Submit authorization checklist items
|
|
3580
|
-
* @param {string} mandateId mandate id
|
|
3581
3591
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
3582
3592
|
* @param {*} [options] Override http request option.
|
|
3583
3593
|
* @throws {RequiredError}
|
|
3584
3594
|
*/
|
|
3585
|
-
submitAuthChecklist: (
|
|
3595
|
+
submitAuthChecklist: (submitAuthChecklistRequest: SubmitAuthChecklistRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3586
3596
|
};
|
|
3587
3597
|
/**
|
|
3588
3598
|
* CustomerApi - functional programming interface
|
|
@@ -3649,13 +3659,12 @@ export declare const CustomerApiFp: (configuration?: Configuration) => {
|
|
|
3649
3659
|
getMandate(mandateId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetMandateResponse>>;
|
|
3650
3660
|
/**
|
|
3651
3661
|
* Get Mandate Authorization by mandate id
|
|
3652
|
-
* @param {string} mandateId Finverse Mandate ID
|
|
3653
3662
|
* @param {string} institutionId Finverse Institution ID
|
|
3654
3663
|
* @param {'PERSONAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are PERSONAL, BUSINESS
|
|
3655
3664
|
* @param {*} [options] Override http request option.
|
|
3656
3665
|
* @throws {RequiredError}
|
|
3657
3666
|
*/
|
|
3658
|
-
getMandateAuth(
|
|
3667
|
+
getMandateAuth(institutionId: string, senderType?: 'PERSONAL' | 'BUSINESS', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetMandateAuthResponse>>;
|
|
3659
3668
|
/**
|
|
3660
3669
|
* Get link to launch FV Link UI in mandate authorization mode
|
|
3661
3670
|
* @param {GetMandateAuthLinkRequest} getMandateAuthLinkRequest request body for mandate authorization link
|
|
@@ -3696,12 +3705,11 @@ export declare const CustomerApiFp: (configuration?: Configuration) => {
|
|
|
3696
3705
|
refreshToken(refreshRequest: RefreshRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessTokenResponse>>;
|
|
3697
3706
|
/**
|
|
3698
3707
|
* Submit authorization checklist items
|
|
3699
|
-
* @param {string} mandateId mandate id
|
|
3700
3708
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
3701
3709
|
* @param {*} [options] Override http request option.
|
|
3702
3710
|
* @throws {RequiredError}
|
|
3703
3711
|
*/
|
|
3704
|
-
submitAuthChecklist(
|
|
3712
|
+
submitAuthChecklist(submitAuthChecklistRequest: SubmitAuthChecklistRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SubmitAuthChecklistResponse>>;
|
|
3705
3713
|
};
|
|
3706
3714
|
/**
|
|
3707
3715
|
* CustomerApi - factory interface
|
|
@@ -3768,13 +3776,12 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
|
|
|
3768
3776
|
getMandate(mandateId: string, options?: any): AxiosPromise<GetMandateResponse>;
|
|
3769
3777
|
/**
|
|
3770
3778
|
* Get Mandate Authorization by mandate id
|
|
3771
|
-
* @param {string} mandateId Finverse Mandate ID
|
|
3772
3779
|
* @param {string} institutionId Finverse Institution ID
|
|
3773
3780
|
* @param {'PERSONAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are PERSONAL, BUSINESS
|
|
3774
3781
|
* @param {*} [options] Override http request option.
|
|
3775
3782
|
* @throws {RequiredError}
|
|
3776
3783
|
*/
|
|
3777
|
-
getMandateAuth(
|
|
3784
|
+
getMandateAuth(institutionId: string, senderType?: 'PERSONAL' | 'BUSINESS', options?: any): AxiosPromise<GetMandateAuthResponse>;
|
|
3778
3785
|
/**
|
|
3779
3786
|
* Get link to launch FV Link UI in mandate authorization mode
|
|
3780
3787
|
* @param {GetMandateAuthLinkRequest} getMandateAuthLinkRequest request body for mandate authorization link
|
|
@@ -3815,12 +3822,11 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
|
|
|
3815
3822
|
refreshToken(refreshRequest: RefreshRequest, options?: any): AxiosPromise<AccessTokenResponse>;
|
|
3816
3823
|
/**
|
|
3817
3824
|
* Submit authorization checklist items
|
|
3818
|
-
* @param {string} mandateId mandate id
|
|
3819
3825
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
3820
3826
|
* @param {*} [options] Override http request option.
|
|
3821
3827
|
* @throws {RequiredError}
|
|
3822
3828
|
*/
|
|
3823
|
-
submitAuthChecklist(
|
|
3829
|
+
submitAuthChecklist(submitAuthChecklistRequest: SubmitAuthChecklistRequest, options?: any): AxiosPromise<SubmitAuthChecklistResponse>;
|
|
3824
3830
|
};
|
|
3825
3831
|
/**
|
|
3826
3832
|
* CustomerApi - interface
|
|
@@ -3896,14 +3902,13 @@ export interface CustomerApiInterface {
|
|
|
3896
3902
|
getMandate(mandateId: string, options?: AxiosRequestConfig): AxiosPromise<GetMandateResponse>;
|
|
3897
3903
|
/**
|
|
3898
3904
|
* Get Mandate Authorization by mandate id
|
|
3899
|
-
* @param {string} mandateId Finverse Mandate ID
|
|
3900
3905
|
* @param {string} institutionId Finverse Institution ID
|
|
3901
3906
|
* @param {'PERSONAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are PERSONAL, BUSINESS
|
|
3902
3907
|
* @param {*} [options] Override http request option.
|
|
3903
3908
|
* @throws {RequiredError}
|
|
3904
3909
|
* @memberof CustomerApiInterface
|
|
3905
3910
|
*/
|
|
3906
|
-
getMandateAuth(
|
|
3911
|
+
getMandateAuth(institutionId: string, senderType?: 'PERSONAL' | 'BUSINESS', options?: AxiosRequestConfig): AxiosPromise<GetMandateAuthResponse>;
|
|
3907
3912
|
/**
|
|
3908
3913
|
* Get link to launch FV Link UI in mandate authorization mode
|
|
3909
3914
|
* @param {GetMandateAuthLinkRequest} getMandateAuthLinkRequest request body for mandate authorization link
|
|
@@ -3949,13 +3954,12 @@ export interface CustomerApiInterface {
|
|
|
3949
3954
|
refreshToken(refreshRequest: RefreshRequest, options?: AxiosRequestConfig): AxiosPromise<AccessTokenResponse>;
|
|
3950
3955
|
/**
|
|
3951
3956
|
* Submit authorization checklist items
|
|
3952
|
-
* @param {string} mandateId mandate id
|
|
3953
3957
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
3954
3958
|
* @param {*} [options] Override http request option.
|
|
3955
3959
|
* @throws {RequiredError}
|
|
3956
3960
|
* @memberof CustomerApiInterface
|
|
3957
3961
|
*/
|
|
3958
|
-
submitAuthChecklist(
|
|
3962
|
+
submitAuthChecklist(submitAuthChecklistRequest: SubmitAuthChecklistRequest, options?: AxiosRequestConfig): AxiosPromise<SubmitAuthChecklistResponse>;
|
|
3959
3963
|
}
|
|
3960
3964
|
/**
|
|
3961
3965
|
* CustomerApi - object-oriented interface
|
|
@@ -4032,14 +4036,13 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
|
|
|
4032
4036
|
getMandate(mandateId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateResponse>>;
|
|
4033
4037
|
/**
|
|
4034
4038
|
* Get Mandate Authorization by mandate id
|
|
4035
|
-
* @param {string} mandateId Finverse Mandate ID
|
|
4036
4039
|
* @param {string} institutionId Finverse Institution ID
|
|
4037
4040
|
* @param {'PERSONAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are PERSONAL, BUSINESS
|
|
4038
4041
|
* @param {*} [options] Override http request option.
|
|
4039
4042
|
* @throws {RequiredError}
|
|
4040
4043
|
* @memberof CustomerApi
|
|
4041
4044
|
*/
|
|
4042
|
-
getMandateAuth(
|
|
4045
|
+
getMandateAuth(institutionId: string, senderType?: 'PERSONAL' | 'BUSINESS', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateAuthResponse>>;
|
|
4043
4046
|
/**
|
|
4044
4047
|
* Get link to launch FV Link UI in mandate authorization mode
|
|
4045
4048
|
* @param {GetMandateAuthLinkRequest} getMandateAuthLinkRequest request body for mandate authorization link
|
|
@@ -4085,13 +4088,12 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
|
|
|
4085
4088
|
refreshToken(refreshRequest: RefreshRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessTokenResponse>>;
|
|
4086
4089
|
/**
|
|
4087
4090
|
* Submit authorization checklist items
|
|
4088
|
-
* @param {string} mandateId mandate id
|
|
4089
4091
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
4090
4092
|
* @param {*} [options] Override http request option.
|
|
4091
4093
|
* @throws {RequiredError}
|
|
4092
4094
|
* @memberof CustomerApi
|
|
4093
4095
|
*/
|
|
4094
|
-
submitAuthChecklist(
|
|
4096
|
+
submitAuthChecklist(submitAuthChecklistRequest: SubmitAuthChecklistRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SubmitAuthChecklistResponse>>;
|
|
4095
4097
|
}
|
|
4096
4098
|
/**
|
|
4097
4099
|
* LinkApi - axios parameter creator
|
package/dist/api.js
CHANGED
|
@@ -399,18 +399,15 @@ exports.CustomerApiAxiosParamCreator = function (configuration) {
|
|
|
399
399
|
}),
|
|
400
400
|
/**
|
|
401
401
|
* Get Mandate Authorization by mandate id
|
|
402
|
-
* @param {string} mandateId Finverse Mandate ID
|
|
403
402
|
* @param {string} institutionId Finverse Institution ID
|
|
404
403
|
* @param {'PERSONAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are PERSONAL, BUSINESS
|
|
405
404
|
* @param {*} [options] Override http request option.
|
|
406
405
|
* @throws {RequiredError}
|
|
407
406
|
*/
|
|
408
|
-
getMandateAuth: (
|
|
409
|
-
// verify required parameter 'mandateId' is not null or undefined
|
|
410
|
-
common_1.assertParamExists('getMandateAuth', 'mandateId', mandateId);
|
|
407
|
+
getMandateAuth: (institutionId, senderType, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
411
408
|
// verify required parameter 'institutionId' is not null or undefined
|
|
412
409
|
common_1.assertParamExists('getMandateAuth', 'institutionId', institutionId);
|
|
413
|
-
const localVarPath = `/mandates/
|
|
410
|
+
const localVarPath = `/mandates/auth`;
|
|
414
411
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
415
412
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
416
413
|
let baseOptions;
|
|
@@ -606,17 +603,14 @@ exports.CustomerApiAxiosParamCreator = function (configuration) {
|
|
|
606
603
|
}),
|
|
607
604
|
/**
|
|
608
605
|
* Submit authorization checklist items
|
|
609
|
-
* @param {string} mandateId mandate id
|
|
610
606
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
611
607
|
* @param {*} [options] Override http request option.
|
|
612
608
|
* @throws {RequiredError}
|
|
613
609
|
*/
|
|
614
|
-
submitAuthChecklist: (
|
|
615
|
-
// verify required parameter 'mandateId' is not null or undefined
|
|
616
|
-
common_1.assertParamExists('submitAuthChecklist', 'mandateId', mandateId);
|
|
610
|
+
submitAuthChecklist: (submitAuthChecklistRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
617
611
|
// verify required parameter 'submitAuthChecklistRequest' is not null or undefined
|
|
618
612
|
common_1.assertParamExists('submitAuthChecklist', 'submitAuthChecklistRequest', submitAuthChecklistRequest);
|
|
619
|
-
const localVarPath = `/mandates/
|
|
613
|
+
const localVarPath = `/mandates/auth`;
|
|
620
614
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
621
615
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
622
616
|
let baseOptions;
|
|
@@ -748,15 +742,14 @@ exports.CustomerApiFp = function (configuration) {
|
|
|
748
742
|
},
|
|
749
743
|
/**
|
|
750
744
|
* Get Mandate Authorization by mandate id
|
|
751
|
-
* @param {string} mandateId Finverse Mandate ID
|
|
752
745
|
* @param {string} institutionId Finverse Institution ID
|
|
753
746
|
* @param {'PERSONAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are PERSONAL, BUSINESS
|
|
754
747
|
* @param {*} [options] Override http request option.
|
|
755
748
|
* @throws {RequiredError}
|
|
756
749
|
*/
|
|
757
|
-
getMandateAuth(
|
|
750
|
+
getMandateAuth(institutionId, senderType, options) {
|
|
758
751
|
return __awaiter(this, void 0, void 0, function* () {
|
|
759
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getMandateAuth(
|
|
752
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getMandateAuth(institutionId, senderType, options);
|
|
760
753
|
return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
761
754
|
});
|
|
762
755
|
},
|
|
@@ -825,14 +818,13 @@ exports.CustomerApiFp = function (configuration) {
|
|
|
825
818
|
},
|
|
826
819
|
/**
|
|
827
820
|
* Submit authorization checklist items
|
|
828
|
-
* @param {string} mandateId mandate id
|
|
829
821
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
830
822
|
* @param {*} [options] Override http request option.
|
|
831
823
|
* @throws {RequiredError}
|
|
832
824
|
*/
|
|
833
|
-
submitAuthChecklist(
|
|
825
|
+
submitAuthChecklist(submitAuthChecklistRequest, options) {
|
|
834
826
|
return __awaiter(this, void 0, void 0, function* () {
|
|
835
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.submitAuthChecklist(
|
|
827
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.submitAuthChecklist(submitAuthChecklistRequest, options);
|
|
836
828
|
return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
837
829
|
});
|
|
838
830
|
},
|
|
@@ -927,16 +919,13 @@ exports.CustomerApiFactory = function (configuration, basePath, axios) {
|
|
|
927
919
|
},
|
|
928
920
|
/**
|
|
929
921
|
* Get Mandate Authorization by mandate id
|
|
930
|
-
* @param {string} mandateId Finverse Mandate ID
|
|
931
922
|
* @param {string} institutionId Finverse Institution ID
|
|
932
923
|
* @param {'PERSONAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are PERSONAL, BUSINESS
|
|
933
924
|
* @param {*} [options] Override http request option.
|
|
934
925
|
* @throws {RequiredError}
|
|
935
926
|
*/
|
|
936
|
-
getMandateAuth(
|
|
937
|
-
return localVarFp
|
|
938
|
-
.getMandateAuth(mandateId, institutionId, senderType, options)
|
|
939
|
-
.then((request) => request(axios, basePath));
|
|
927
|
+
getMandateAuth(institutionId, senderType, options) {
|
|
928
|
+
return localVarFp.getMandateAuth(institutionId, senderType, options).then((request) => request(axios, basePath));
|
|
940
929
|
},
|
|
941
930
|
/**
|
|
942
931
|
* Get link to launch FV Link UI in mandate authorization mode
|
|
@@ -994,14 +983,13 @@ exports.CustomerApiFactory = function (configuration, basePath, axios) {
|
|
|
994
983
|
},
|
|
995
984
|
/**
|
|
996
985
|
* Submit authorization checklist items
|
|
997
|
-
* @param {string} mandateId mandate id
|
|
998
986
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
999
987
|
* @param {*} [options] Override http request option.
|
|
1000
988
|
* @throws {RequiredError}
|
|
1001
989
|
*/
|
|
1002
|
-
submitAuthChecklist(
|
|
990
|
+
submitAuthChecklist(submitAuthChecklistRequest, options) {
|
|
1003
991
|
return localVarFp
|
|
1004
|
-
.submitAuthChecklist(
|
|
992
|
+
.submitAuthChecklist(submitAuthChecklistRequest, options)
|
|
1005
993
|
.then((request) => request(axios, basePath));
|
|
1006
994
|
},
|
|
1007
995
|
};
|
|
@@ -1113,16 +1101,15 @@ class CustomerApi extends base_1.BaseAPI {
|
|
|
1113
1101
|
}
|
|
1114
1102
|
/**
|
|
1115
1103
|
* Get Mandate Authorization by mandate id
|
|
1116
|
-
* @param {string} mandateId Finverse Mandate ID
|
|
1117
1104
|
* @param {string} institutionId Finverse Institution ID
|
|
1118
1105
|
* @param {'PERSONAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are PERSONAL, BUSINESS
|
|
1119
1106
|
* @param {*} [options] Override http request option.
|
|
1120
1107
|
* @throws {RequiredError}
|
|
1121
1108
|
* @memberof CustomerApi
|
|
1122
1109
|
*/
|
|
1123
|
-
getMandateAuth(
|
|
1110
|
+
getMandateAuth(institutionId, senderType, options) {
|
|
1124
1111
|
return exports.CustomerApiFp(this.configuration)
|
|
1125
|
-
.getMandateAuth(
|
|
1112
|
+
.getMandateAuth(institutionId, senderType, options)
|
|
1126
1113
|
.then((request) => request(this.axios, this.basePath));
|
|
1127
1114
|
}
|
|
1128
1115
|
/**
|
|
@@ -1190,15 +1177,14 @@ class CustomerApi extends base_1.BaseAPI {
|
|
|
1190
1177
|
}
|
|
1191
1178
|
/**
|
|
1192
1179
|
* Submit authorization checklist items
|
|
1193
|
-
* @param {string} mandateId mandate id
|
|
1194
1180
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
1195
1181
|
* @param {*} [options] Override http request option.
|
|
1196
1182
|
* @throws {RequiredError}
|
|
1197
1183
|
* @memberof CustomerApi
|
|
1198
1184
|
*/
|
|
1199
|
-
submitAuthChecklist(
|
|
1185
|
+
submitAuthChecklist(submitAuthChecklistRequest, options) {
|
|
1200
1186
|
return exports.CustomerApiFp(this.configuration)
|
|
1201
|
-
.submitAuthChecklist(
|
|
1187
|
+
.submitAuthChecklist(submitAuthChecklistRequest, options)
|
|
1202
1188
|
.then((request) => request(this.axios, this.basePath));
|
|
1203
1189
|
}
|
|
1204
1190
|
}
|