@finverse/sdk-typescript 0.0.56 → 0.0.57

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 CHANGED
@@ -560,14 +560,14 @@ export interface CreateMandateSender {
560
560
  */
561
561
  sender_reference_id?: string;
562
562
  /**
563
- * Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are PERSONAL, BUSINESS
563
+ * Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are INDIVIDUAL, BUSINESS
564
564
  * @type {string}
565
565
  * @memberof CreateMandateSender
566
566
  */
567
567
  sender_type?: CreateMandateSenderSenderTypeEnum;
568
568
  }
569
569
  export declare const CreateMandateSenderSenderTypeEnum: {
570
- readonly Personal: "PERSONAL";
570
+ readonly Individual: "INDIVIDUAL";
571
571
  readonly Business: "BUSINESS";
572
572
  };
573
573
  export declare type CreateMandateSenderSenderTypeEnum = typeof CreateMandateSenderSenderTypeEnum[keyof typeof CreateMandateSenderSenderTypeEnum];
@@ -1070,7 +1070,7 @@ export interface GetMandateAuthResponse {
1070
1070
  */
1071
1071
  institution_id: string;
1072
1072
  /**
1073
- * Type of account held by the Sender at the Institution. Possible values are PERSONAL, BUSINESS
1073
+ * Type of account held by the Sender at the Institution. Possible values are INDIVIDUAL, BUSINESS
1074
1074
  * @type {string}
1075
1075
  * @memberof GetMandateAuthResponse
1076
1076
  */
@@ -1102,7 +1102,7 @@ export declare const GetMandateAuthResponseMandateStatusEnum: {
1102
1102
  };
1103
1103
  export declare type GetMandateAuthResponseMandateStatusEnum = typeof GetMandateAuthResponseMandateStatusEnum[keyof typeof GetMandateAuthResponseMandateStatusEnum];
1104
1104
  export declare const GetMandateAuthResponseSenderTypeEnum: {
1105
- readonly Personal: "PERSONAL";
1105
+ readonly Individual: "INDIVIDUAL";
1106
1106
  readonly Business: "BUSINESS";
1107
1107
  };
1108
1108
  export declare type GetMandateAuthResponseSenderTypeEnum = typeof GetMandateAuthResponseSenderTypeEnum[keyof typeof GetMandateAuthResponseSenderTypeEnum];
@@ -1187,14 +1187,14 @@ export interface GetMandateSender {
1187
1187
  */
1188
1188
  sender_account: PaymentAccount;
1189
1189
  /**
1190
- * Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are PERSONAL, BUSINESS
1190
+ * Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are INDIVIDUAL, BUSINESS
1191
1191
  * @type {string}
1192
1192
  * @memberof GetMandateSender
1193
1193
  */
1194
1194
  sender_type?: GetMandateSenderSenderTypeEnum;
1195
1195
  }
1196
1196
  export declare const GetMandateSenderSenderTypeEnum: {
1197
- readonly Personal: "PERSONAL";
1197
+ readonly Individual: "INDIVIDUAL";
1198
1198
  readonly Business: "BUSINESS";
1199
1199
  };
1200
1200
  export declare type GetMandateSenderSenderTypeEnum = typeof GetMandateSenderSenderTypeEnum[keyof typeof GetMandateSenderSenderTypeEnum];
@@ -3217,7 +3217,7 @@ export interface SubmitAuthChecklistRequest {
3217
3217
  */
3218
3218
  institution_id: string;
3219
3219
  /**
3220
- * Type of account held by the Sender at the Institution. Possible values are PERSONAL, BUSINESS
3220
+ * Type of account held by the Sender at the Institution. Possible values are INDIVIDUAL, BUSINESS
3221
3221
  * @type {string}
3222
3222
  * @memberof SubmitAuthChecklistRequest
3223
3223
  */
@@ -3248,7 +3248,7 @@ export interface SubmitAuthChecklistRequest {
3248
3248
  ciphertext: string;
3249
3249
  }
3250
3250
  export declare const SubmitAuthChecklistRequestSenderTypeEnum: {
3251
- readonly Personal: "PERSONAL";
3251
+ readonly Individual: "INDIVIDUAL";
3252
3252
  readonly Business: "BUSINESS";
3253
3253
  };
3254
3254
  export declare type SubmitAuthChecklistRequestSenderTypeEnum = typeof SubmitAuthChecklistRequestSenderTypeEnum[keyof typeof SubmitAuthChecklistRequestSenderTypeEnum];
@@ -3554,11 +3554,11 @@ export declare const CustomerApiAxiosParamCreator: (configuration?: Configuratio
3554
3554
  /**
3555
3555
  * Get Mandate Authorization by mandate id
3556
3556
  * @param {string} institutionId Finverse Institution ID
3557
- * @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
3557
+ * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are INDIVIDUAL, BUSINESS
3558
3558
  * @param {*} [options] Override http request option.
3559
3559
  * @throws {RequiredError}
3560
3560
  */
3561
- getMandateAuth: (institutionId: string, senderType?: 'PERSONAL' | 'BUSINESS', options?: AxiosRequestConfig) => Promise<RequestArgs>;
3561
+ getMandateAuth: (institutionId: string, senderType?: 'INDIVIDUAL' | 'BUSINESS', options?: AxiosRequestConfig) => Promise<RequestArgs>;
3562
3562
  /**
3563
3563
  * Get link to launch FV Link UI in mandate authorization mode
3564
3564
  * @param {GetMandateAuthLinkRequest} getMandateAuthLinkRequest request body for mandate authorization link
@@ -3671,11 +3671,11 @@ export declare const CustomerApiFp: (configuration?: Configuration) => {
3671
3671
  /**
3672
3672
  * Get Mandate Authorization by mandate id
3673
3673
  * @param {string} institutionId Finverse Institution ID
3674
- * @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
3674
+ * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are INDIVIDUAL, BUSINESS
3675
3675
  * @param {*} [options] Override http request option.
3676
3676
  * @throws {RequiredError}
3677
3677
  */
3678
- getMandateAuth(institutionId: string, senderType?: 'PERSONAL' | 'BUSINESS', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetMandateAuthResponse>>;
3678
+ getMandateAuth(institutionId: string, senderType?: 'INDIVIDUAL' | 'BUSINESS', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetMandateAuthResponse>>;
3679
3679
  /**
3680
3680
  * Get link to launch FV Link UI in mandate authorization mode
3681
3681
  * @param {GetMandateAuthLinkRequest} getMandateAuthLinkRequest request body for mandate authorization link
@@ -3788,11 +3788,11 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
3788
3788
  /**
3789
3789
  * Get Mandate Authorization by mandate id
3790
3790
  * @param {string} institutionId Finverse Institution ID
3791
- * @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
3791
+ * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are INDIVIDUAL, BUSINESS
3792
3792
  * @param {*} [options] Override http request option.
3793
3793
  * @throws {RequiredError}
3794
3794
  */
3795
- getMandateAuth(institutionId: string, senderType?: 'PERSONAL' | 'BUSINESS', options?: any): AxiosPromise<GetMandateAuthResponse>;
3795
+ getMandateAuth(institutionId: string, senderType?: 'INDIVIDUAL' | 'BUSINESS', options?: any): AxiosPromise<GetMandateAuthResponse>;
3796
3796
  /**
3797
3797
  * Get link to launch FV Link UI in mandate authorization mode
3798
3798
  * @param {GetMandateAuthLinkRequest} getMandateAuthLinkRequest request body for mandate authorization link
@@ -3914,12 +3914,12 @@ export interface CustomerApiInterface {
3914
3914
  /**
3915
3915
  * Get Mandate Authorization by mandate id
3916
3916
  * @param {string} institutionId Finverse Institution ID
3917
- * @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
3917
+ * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are INDIVIDUAL, BUSINESS
3918
3918
  * @param {*} [options] Override http request option.
3919
3919
  * @throws {RequiredError}
3920
3920
  * @memberof CustomerApiInterface
3921
3921
  */
3922
- getMandateAuth(institutionId: string, senderType?: 'PERSONAL' | 'BUSINESS', options?: AxiosRequestConfig): AxiosPromise<GetMandateAuthResponse>;
3922
+ getMandateAuth(institutionId: string, senderType?: 'INDIVIDUAL' | 'BUSINESS', options?: AxiosRequestConfig): AxiosPromise<GetMandateAuthResponse>;
3923
3923
  /**
3924
3924
  * Get link to launch FV Link UI in mandate authorization mode
3925
3925
  * @param {GetMandateAuthLinkRequest} getMandateAuthLinkRequest request body for mandate authorization link
@@ -4048,12 +4048,12 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
4048
4048
  /**
4049
4049
  * Get Mandate Authorization by mandate id
4050
4050
  * @param {string} institutionId Finverse Institution ID
4051
- * @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
4051
+ * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are INDIVIDUAL, BUSINESS
4052
4052
  * @param {*} [options] Override http request option.
4053
4053
  * @throws {RequiredError}
4054
4054
  * @memberof CustomerApi
4055
4055
  */
4056
- getMandateAuth(institutionId: string, senderType?: 'PERSONAL' | 'BUSINESS', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateAuthResponse>>;
4056
+ getMandateAuth(institutionId: string, senderType?: 'INDIVIDUAL' | 'BUSINESS', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateAuthResponse>>;
4057
4057
  /**
4058
4058
  * Get link to launch FV Link UI in mandate authorization mode
4059
4059
  * @param {GetMandateAuthLinkRequest} getMandateAuthLinkRequest request body for mandate authorization link
package/dist/api.js CHANGED
@@ -49,7 +49,7 @@ exports.AuthChecklistOptionsSubmittedByEnum = {
49
49
  FinverseLink: 'FINVERSE_LINK',
50
50
  };
51
51
  exports.CreateMandateSenderSenderTypeEnum = {
52
- Personal: 'PERSONAL',
52
+ Individual: 'INDIVIDUAL',
53
53
  Business: 'BUSINESS',
54
54
  };
55
55
  exports.CreatePaymentRequestTypeEnum = {
@@ -69,7 +69,7 @@ exports.GetMandateAuthResponseMandateStatusEnum = {
69
69
  Error: 'ERROR',
70
70
  };
71
71
  exports.GetMandateAuthResponseSenderTypeEnum = {
72
- Personal: 'PERSONAL',
72
+ Individual: 'INDIVIDUAL',
73
73
  Business: 'BUSINESS',
74
74
  };
75
75
  exports.GetMandateResponseMandateStatusEnum = {
@@ -79,7 +79,7 @@ exports.GetMandateResponseMandateStatusEnum = {
79
79
  Error: 'ERROR',
80
80
  };
81
81
  exports.GetMandateSenderSenderTypeEnum = {
82
- Personal: 'PERSONAL',
82
+ Individual: 'INDIVIDUAL',
83
83
  Business: 'BUSINESS',
84
84
  };
85
85
  exports.GetPaymentResponseTypeEnum = {
@@ -123,7 +123,7 @@ exports.PaymentScheduleFrequencyEnum = {
123
123
  Yearly: 'YEARLY',
124
124
  };
125
125
  exports.SubmitAuthChecklistRequestSenderTypeEnum = {
126
- Personal: 'PERSONAL',
126
+ Individual: 'INDIVIDUAL',
127
127
  Business: 'BUSINESS',
128
128
  };
129
129
  exports.SubmitAuthChecklistResponseMandateStatusEnum = {
@@ -404,7 +404,7 @@ exports.CustomerApiAxiosParamCreator = function (configuration) {
404
404
  /**
405
405
  * Get Mandate Authorization by mandate id
406
406
  * @param {string} institutionId Finverse Institution ID
407
- * @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
407
+ * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are INDIVIDUAL, BUSINESS
408
408
  * @param {*} [options] Override http request option.
409
409
  * @throws {RequiredError}
410
410
  */
@@ -747,7 +747,7 @@ exports.CustomerApiFp = function (configuration) {
747
747
  /**
748
748
  * Get Mandate Authorization by mandate id
749
749
  * @param {string} institutionId Finverse Institution ID
750
- * @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
750
+ * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are INDIVIDUAL, BUSINESS
751
751
  * @param {*} [options] Override http request option.
752
752
  * @throws {RequiredError}
753
753
  */
@@ -924,7 +924,7 @@ exports.CustomerApiFactory = function (configuration, basePath, axios) {
924
924
  /**
925
925
  * Get Mandate Authorization by mandate id
926
926
  * @param {string} institutionId Finverse Institution ID
927
- * @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
927
+ * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are INDIVIDUAL, BUSINESS
928
928
  * @param {*} [options] Override http request option.
929
929
  * @throws {RequiredError}
930
930
  */
@@ -1106,7 +1106,7 @@ class CustomerApi extends base_1.BaseAPI {
1106
1106
  /**
1107
1107
  * Get Mandate Authorization by mandate id
1108
1108
  * @param {string} institutionId Finverse Institution ID
1109
- * @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
1109
+ * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are INDIVIDUAL, BUSINESS
1110
1110
  * @param {*} [options] Override http request option.
1111
1111
  * @throws {RequiredError}
1112
1112
  * @memberof CustomerApi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.56",
3
+ "version": "0.0.57",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [