@finverse/sdk-typescript 0.0.311 → 0.0.313

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
@@ -1500,10 +1500,10 @@ export interface CreatePaymentLinkRequest {
1500
1500
  unique_reference_id: string;
1501
1501
  /**
1502
1502
  *
1503
- * @type {PaymentSetupOptions}
1503
+ * @type {PaymentSetupOptionsRequest}
1504
1504
  * @memberof CreatePaymentLinkRequest
1505
1505
  */
1506
- payment_setup_options?: PaymentSetupOptions;
1506
+ payment_setup_options?: PaymentSetupOptionsRequest;
1507
1507
  /**
1508
1508
  *
1509
1509
  * @type {{ [key: string]: string; }}
@@ -1965,7 +1965,7 @@ export interface DisputeResponse {
1965
1965
  * @type {boolean}
1966
1966
  * @memberof DisputeResponse
1967
1967
  */
1968
- is_defendable?: boolean;
1968
+ is_defendable?: boolean | null;
1969
1969
  /**
1970
1970
  * The status of the dispute
1971
1971
  * @type {string}
@@ -1983,13 +1983,13 @@ export interface DisputeResponse {
1983
1983
  * @type {boolean}
1984
1984
  * @memberof DisputeResponse
1985
1985
  */
1986
- is_auto_defended?: boolean;
1986
+ is_auto_defended?: boolean | null;
1987
1987
  /**
1988
1988
  * Timestamp in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
1989
1989
  * @type {string}
1990
1990
  * @memberof DisputeResponse
1991
1991
  */
1992
- defense_period_deadline?: string;
1992
+ defense_period_deadline?: string | null;
1993
1993
  /**
1994
1994
  *
1995
1995
  * @type {{ [key: string]: string; }}
@@ -4867,10 +4867,10 @@ export interface MandateDetailsForPaymentLink {
4867
4867
  end_date?: string | null;
4868
4868
  /**
4869
4869
  *
4870
- * @type {TransactionLimits}
4870
+ * @type {TransactionLimitsResponse}
4871
4871
  * @memberof MandateDetailsForPaymentLink
4872
4872
  */
4873
- transaction_limits?: TransactionLimits;
4873
+ transaction_limits?: TransactionLimitsResponse;
4874
4874
  /**
4875
4875
  * End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
4876
4876
  * @type {string}
@@ -4878,6 +4878,37 @@ export interface MandateDetailsForPaymentLink {
4878
4878
  */
4879
4879
  description?: string;
4880
4880
  }
4881
+ /**
4882
+ *
4883
+ * @export
4884
+ * @interface MandateDetailsForPaymentLinkRequest
4885
+ */
4886
+ export interface MandateDetailsForPaymentLinkRequest {
4887
+ /**
4888
+ * YYYY-MM-DD, must be later than or the same as the date of creation. If unspecified, default to the date of creation.
4889
+ * @type {string}
4890
+ * @memberof MandateDetailsForPaymentLinkRequest
4891
+ */
4892
+ start_date?: string | null;
4893
+ /**
4894
+ * YYYY-MM-DD, must be later than the date of creation.
4895
+ * @type {string}
4896
+ * @memberof MandateDetailsForPaymentLinkRequest
4897
+ */
4898
+ end_date?: string | null;
4899
+ /**
4900
+ *
4901
+ * @type {TransactionLimitsRequest}
4902
+ * @memberof MandateDetailsForPaymentLinkRequest
4903
+ */
4904
+ transaction_limits?: TransactionLimitsRequest;
4905
+ /**
4906
+ * End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
4907
+ * @type {string}
4908
+ * @memberof MandateDetailsForPaymentLinkRequest
4909
+ */
4910
+ description?: string;
4911
+ }
4881
4912
  /**
4882
4913
  *
4883
4914
  * @export
@@ -4910,10 +4941,10 @@ export interface MandateDetailsRequest {
4910
4941
  payment_schedule?: PaymentSchedule;
4911
4942
  /**
4912
4943
  *
4913
- * @type {TransactionLimits}
4944
+ * @type {TransactionLimitsRequest}
4914
4945
  * @memberof MandateDetailsRequest
4915
4946
  */
4916
- transaction_limits?: TransactionLimits;
4947
+ transaction_limits?: TransactionLimitsRequest;
4917
4948
  /**
4918
4949
  * End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
4919
4950
  * @type {string}
@@ -4959,10 +4990,10 @@ export interface MandateDetailsRequestWithDdaReference {
4959
4990
  end_date?: string | null;
4960
4991
  /**
4961
4992
  *
4962
- * @type {TransactionLimits}
4993
+ * @type {TransactionLimitsRequest}
4963
4994
  * @memberof MandateDetailsRequestWithDdaReference
4964
4995
  */
4965
- transaction_limits?: TransactionLimits;
4996
+ transaction_limits?: TransactionLimitsRequest;
4966
4997
  /**
4967
4998
  * End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
4968
4999
  * @type {string}
@@ -5008,10 +5039,10 @@ export interface MandateDetailsResponse {
5008
5039
  payment_schedule?: PaymentSchedule;
5009
5040
  /**
5010
5041
  *
5011
- * @type {TransactionLimits}
5042
+ * @type {TransactionLimitsResponse}
5012
5043
  * @memberof MandateDetailsResponse
5013
5044
  */
5014
- transaction_limits?: TransactionLimits;
5045
+ transaction_limits?: TransactionLimitsResponse;
5015
5046
  /**
5016
5047
  * End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
5017
5048
  * @type {string}
@@ -6737,6 +6768,12 @@ export interface PaymentSetupOptions {
6737
6768
  * @memberof PaymentSetupOptions
6738
6769
  */
6739
6770
  autopay_enrollment_configuration?: AutopayEnrollmentConfiguration;
6771
+ /**
6772
+ * The recurring payment mode
6773
+ * @type {string}
6774
+ * @memberof PaymentSetupOptions
6775
+ */
6776
+ recurring_payment_mode?: string;
6740
6777
  }
6741
6778
  export declare const PaymentSetupOptionsFuturePaymentsEnum: {
6742
6779
  readonly Autopay: "AUTOPAY";
@@ -6750,6 +6787,61 @@ export declare const PaymentSetupOptionsPaymentMethodTypesEnum: {
6750
6787
  readonly Manual: "MANUAL";
6751
6788
  };
6752
6789
  export type PaymentSetupOptionsPaymentMethodTypesEnum = (typeof PaymentSetupOptionsPaymentMethodTypesEnum)[keyof typeof PaymentSetupOptionsPaymentMethodTypesEnum];
6790
+ /**
6791
+ *
6792
+ * @export
6793
+ * @interface PaymentSetupOptionsRequest
6794
+ */
6795
+ export interface PaymentSetupOptionsRequest {
6796
+ /**
6797
+ * The type of future_payments that customer want to use. Possible values: AUTOPAY or CLICK_TO_PAY
6798
+ * @type {string}
6799
+ * @memberof PaymentSetupOptionsRequest
6800
+ */
6801
+ future_payments?: PaymentSetupOptionsRequestFuturePaymentsEnum;
6802
+ /**
6803
+ *
6804
+ * @type {MandateDetailsForPaymentLinkRequest}
6805
+ * @memberof PaymentSetupOptionsRequest
6806
+ */
6807
+ mandate_details?: MandateDetailsForPaymentLinkRequest;
6808
+ /**
6809
+ *
6810
+ * @type {Array<string>}
6811
+ * @memberof PaymentSetupOptionsRequest
6812
+ */
6813
+ payment_method_types?: Array<PaymentSetupOptionsRequestPaymentMethodTypesEnum>;
6814
+ /**
6815
+ *
6816
+ * @type {RecipientAccountFilters}
6817
+ * @memberof PaymentSetupOptionsRequest
6818
+ */
6819
+ recipient_account_filters?: RecipientAccountFilters;
6820
+ /**
6821
+ *
6822
+ * @type {AutopayEnrollmentConfiguration}
6823
+ * @memberof PaymentSetupOptionsRequest
6824
+ */
6825
+ autopay_enrollment_configuration?: AutopayEnrollmentConfiguration;
6826
+ /**
6827
+ * The recurring payment mode
6828
+ * @type {string}
6829
+ * @memberof PaymentSetupOptionsRequest
6830
+ */
6831
+ recurring_payment_mode?: string;
6832
+ }
6833
+ export declare const PaymentSetupOptionsRequestFuturePaymentsEnum: {
6834
+ readonly Autopay: "AUTOPAY";
6835
+ readonly ClickToPay: "CLICK_TO_PAY";
6836
+ };
6837
+ export type PaymentSetupOptionsRequestFuturePaymentsEnum = (typeof PaymentSetupOptionsRequestFuturePaymentsEnum)[keyof typeof PaymentSetupOptionsRequestFuturePaymentsEnum];
6838
+ export declare const PaymentSetupOptionsRequestPaymentMethodTypesEnum: {
6839
+ readonly Mandate: "MANDATE";
6840
+ readonly Single: "SINGLE";
6841
+ readonly Card: "CARD";
6842
+ readonly Manual: "MANUAL";
6843
+ };
6844
+ export type PaymentSetupOptionsRequestPaymentMethodTypesEnum = (typeof PaymentSetupOptionsRequestPaymentMethodTypesEnum)[keyof typeof PaymentSetupOptionsRequestPaymentMethodTypesEnum];
6753
6845
  /**
6754
6846
  *
6755
6847
  * @export
@@ -6973,6 +7065,38 @@ export interface PayoutDetails {
6973
7065
  */
6974
7066
  scheduled_date: string;
6975
7067
  }
7068
+ /**
7069
+ *
7070
+ * @export
7071
+ * @interface PayoutProcessorDetails
7072
+ */
7073
+ export interface PayoutProcessorDetails {
7074
+ /**
7075
+ *
7076
+ * @type {string}
7077
+ * @memberof PayoutProcessorDetails
7078
+ */
7079
+ processor_id?: string;
7080
+ /**
7081
+ *
7082
+ * @type {string}
7083
+ * @memberof PayoutProcessorDetails
7084
+ */
7085
+ processor_reference?: string;
7086
+ }
7087
+ /**
7088
+ *
7089
+ * @export
7090
+ * @interface PayoutReferences
7091
+ */
7092
+ export interface PayoutReferences {
7093
+ /**
7094
+ *
7095
+ * @type {string}
7096
+ * @memberof PayoutReferences
7097
+ */
7098
+ recipient_reference?: string;
7099
+ }
6976
7100
  /**
6977
7101
  *
6978
7102
  * @export
@@ -7003,6 +7127,24 @@ export interface PayoutSnapshotDetails {
7003
7127
  * @memberof PayoutSnapshotDetails
7004
7128
  */
7005
7129
  scheduled_date?: string;
7130
+ /**
7131
+ *
7132
+ * @type {string}
7133
+ * @memberof PayoutSnapshotDetails
7134
+ */
7135
+ estimated_arrival_time?: string | null;
7136
+ /**
7137
+ *
7138
+ * @type {PayoutProcessorDetails}
7139
+ * @memberof PayoutSnapshotDetails
7140
+ */
7141
+ processor_details?: PayoutProcessorDetails;
7142
+ /**
7143
+ *
7144
+ * @type {PayoutReferences}
7145
+ * @memberof PayoutSnapshotDetails
7146
+ */
7147
+ references?: PayoutReferences;
7006
7148
  }
7007
7149
  /**
7008
7150
  *
@@ -7046,6 +7188,12 @@ export interface PayoutSnapshotResponse {
7046
7188
  * @memberof PayoutSnapshotResponse
7047
7189
  */
7048
7190
  transaction_date?: string;
7191
+ /**
7192
+ *
7193
+ * @type {string}
7194
+ * @memberof PayoutSnapshotResponse
7195
+ */
7196
+ transaction_time?: string | null;
7049
7197
  /**
7050
7198
  *
7051
7199
  * @type {PayoutSnapshotDetails}
@@ -7129,6 +7277,7 @@ export type PayoutSnapshotResponseStatusEnum = (typeof PayoutSnapshotResponseSta
7129
7277
  export declare const PayoutSnapshotResponseTypeEnum: {
7130
7278
  readonly Manual: "MANUAL";
7131
7279
  readonly Scheduled: "SCHEDULED";
7280
+ readonly Settlement: "SETTLEMENT";
7132
7281
  };
7133
7282
  export type PayoutSnapshotResponseTypeEnum = (typeof PayoutSnapshotResponseTypeEnum)[keyof typeof PayoutSnapshotResponseTypeEnum];
7134
7283
  /**
@@ -7343,6 +7492,12 @@ export interface RapidstorMetadataRequest {
7343
7492
  * @memberof RapidstorMetadataRequest
7344
7493
  */
7345
7494
  account_token: string;
7495
+ /**
7496
+ *
7497
+ * @type {string}
7498
+ * @memberof RapidstorMetadataRequest
7499
+ */
7500
+ unit_type_id?: string;
7346
7501
  }
7347
7502
  /**
7348
7503
  *
@@ -7386,6 +7541,12 @@ export interface RapidstorMetadataResponse {
7386
7541
  * @memberof RapidstorMetadataResponse
7387
7542
  */
7388
7543
  account_token?: string;
7544
+ /**
7545
+ *
7546
+ * @type {string}
7547
+ * @memberof RapidstorMetadataResponse
7548
+ */
7549
+ unit_type_id?: string;
7389
7550
  }
7390
7551
  /**
7391
7552
  *
@@ -8142,42 +8303,87 @@ export interface Transaction {
8142
8303
  /**
8143
8304
  *
8144
8305
  * @export
8145
- * @interface TransactionLimits
8306
+ * @interface TransactionLimitsRequest
8146
8307
  */
8147
- export interface TransactionLimits {
8308
+ export interface TransactionLimitsRequest {
8148
8309
  /**
8149
8310
  * Maximum amount of money that can be paid during the reference period (across any number of transactions). Expressed in currency\'s smallest unit or “minor unit”, as defined in ISO 4217.
8150
8311
  * @type {number}
8151
- * @memberof TransactionLimits
8312
+ * @memberof TransactionLimitsRequest
8152
8313
  */
8153
8314
  max_period_amount?: number;
8154
8315
  /**
8155
8316
  * Maximum number of transactions (of any amount) that can be executed during the reference period.
8156
8317
  * @type {number}
8157
- * @memberof TransactionLimits
8318
+ * @memberof TransactionLimitsRequest
8158
8319
  */
8159
8320
  max_period_count?: number;
8160
8321
  /**
8161
8322
  * The maximum amount of money that can be transferred in a single transaction under this mandate. Expressed in currency\'s smallest unit or “minor unit”, as defined in ISO 4217.
8162
8323
  * @type {number}
8163
- * @memberof TransactionLimits
8324
+ * @memberof TransactionLimitsRequest
8164
8325
  */
8165
8326
  max_transaction_amount: number;
8166
8327
  /**
8167
8328
  * Reference calendar periods for the payment limits. Possible values (DAILY, WEEKLY, MONTHLY, QUARTERLY, YEARLY)
8168
8329
  * @type {string}
8169
- * @memberof TransactionLimits
8330
+ * @memberof TransactionLimitsRequest
8331
+ */
8332
+ period?: TransactionLimitsRequestPeriodEnum | null;
8333
+ }
8334
+ export declare const TransactionLimitsRequestPeriodEnum: {
8335
+ readonly Daily: "DAILY";
8336
+ readonly Weekly: "WEEKLY";
8337
+ readonly Monthly: "MONTHLY";
8338
+ readonly Quarterly: "QUARTERLY";
8339
+ readonly Yearly: "YEARLY";
8340
+ };
8341
+ export type TransactionLimitsRequestPeriodEnum = (typeof TransactionLimitsRequestPeriodEnum)[keyof typeof TransactionLimitsRequestPeriodEnum];
8342
+ /**
8343
+ *
8344
+ * @export
8345
+ * @interface TransactionLimitsResponse
8346
+ */
8347
+ export interface TransactionLimitsResponse {
8348
+ /**
8349
+ * Maximum amount of money that can be paid during the reference period (across any number of transactions). Expressed in currency\'s smallest unit or “minor unit”, as defined in ISO 4217.
8350
+ * @type {number}
8351
+ * @memberof TransactionLimitsResponse
8352
+ */
8353
+ max_period_amount?: number;
8354
+ /**
8355
+ * Maximum number of transactions (of any amount) that can be executed during the reference period.
8356
+ * @type {number}
8357
+ * @memberof TransactionLimitsResponse
8358
+ */
8359
+ max_period_count?: number;
8360
+ /**
8361
+ * The maximum amount of money that can be transferred in a single transaction under this mandate. Expressed in currency\'s smallest unit or “minor unit”, as defined in ISO 4217.
8362
+ * @type {number}
8363
+ * @memberof TransactionLimitsResponse
8364
+ */
8365
+ max_transaction_amount: number;
8366
+ /**
8367
+ * The maximum amount of money that can be transferred in a single transaction under this mandate set by the payer. Expressed in currency\'s smallest unit or “minor unit”, as defined in ISO 4217.
8368
+ * @type {number}
8369
+ * @memberof TransactionLimitsResponse
8370
+ */
8371
+ max_transaction_amount_set_by_payer_initial?: number | null;
8372
+ /**
8373
+ * Reference calendar periods for the payment limits. Possible values (DAILY, WEEKLY, MONTHLY, QUARTERLY, YEARLY)
8374
+ * @type {string}
8375
+ * @memberof TransactionLimitsResponse
8170
8376
  */
8171
- period?: TransactionLimitsPeriodEnum | null;
8377
+ period?: TransactionLimitsResponsePeriodEnum | null;
8172
8378
  }
8173
- export declare const TransactionLimitsPeriodEnum: {
8379
+ export declare const TransactionLimitsResponsePeriodEnum: {
8174
8380
  readonly Daily: "DAILY";
8175
8381
  readonly Weekly: "WEEKLY";
8176
8382
  readonly Monthly: "MONTHLY";
8177
8383
  readonly Quarterly: "QUARTERLY";
8178
8384
  readonly Yearly: "YEARLY";
8179
8385
  };
8180
- export type TransactionLimitsPeriodEnum = (typeof TransactionLimitsPeriodEnum)[keyof typeof TransactionLimitsPeriodEnum];
8386
+ export type TransactionLimitsResponsePeriodEnum = (typeof TransactionLimitsResponsePeriodEnum)[keyof typeof TransactionLimitsResponsePeriodEnum];
8181
8387
  /**
8182
8388
  *
8183
8389
  * @export
@@ -10922,6 +11128,7 @@ export type ListPayoutsStatusesEnum = (typeof ListPayoutsStatusesEnum)[keyof typ
10922
11128
  export declare const ListPayoutsPayoutTypesEnum: {
10923
11129
  readonly Manual: "MANUAL";
10924
11130
  readonly Scheduled: "SCHEDULED";
11131
+ readonly Settlement: "SETTLEMENT";
10925
11132
  };
10926
11133
  export type ListPayoutsPayoutTypesEnum = (typeof ListPayoutsPayoutTypesEnum)[keyof typeof ListPayoutsPayoutTypesEnum];
10927
11134
  /**
package/dist/api.js CHANGED
@@ -23,8 +23,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
23
23
  };
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
25
  exports.ManualPaymentConfirmationResponseStatusEnum = exports.MandateSenderAccountAccountTypeEnum = exports.MandateRecipientAccountAccountTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.MandateAuthLinkCustomizationsLanguageEnum = exports.LoginMethodStatusEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestLanguageEnum = exports.LinkTokenRequestUiModeEnum = exports.LineItemItemTypeEnum = exports.IntegrationMetadataResponseIntegrationIdEnum = exports.IntegrationMetadataRequestIntegrationIdEnum = exports.InstitutionStatusEnum = exports.InstitutionUserTypeEnum = exports.InstitutionProductsSupportedEnum = exports.InstitutionInstitutionTypeEnum = exports.InstitutionTagsEnum = exports.GetMandateSenderUserTypeEnum = exports.GetMandateResponseStatusEnum = exports.GetMandateAuthResponseSenderTypeEnum = exports.GetMandateAuthResponseMandateStatusEnum = exports.GetMandateAuthLinkResponseTokenTypeEnum = exports.GetBalanceHistoryResponseSourceEnum = exports.FvErrorModelV2TypeEnum = exports.FvErrorModelTypeEnum = exports.FvEmbeddedErrorModelTypeEnum = exports.FeePaidByEnum = exports.FVCardDetailsFundingEnum = exports.FVCardStatusEnum = exports.DisputeResponseDisputeStatusEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreateRecipientAccountAccountTypeEnum = exports.CreatePaymentUserRequestUserTypeEnum = exports.CreatePaymentMethodRequestPaymentMethodTypeEnum = exports.CreatePaymentLinkRequestModeEnum = exports.CreatePaymentLinkMandateRequestSenderTypeEnum = exports.CreatePaymentAccountRequestAccountTypeEnum = exports.CreateMandateSenderUserTypeEnum = exports.CreateMandateResponseStatusEnum = exports.CreateMandateRequestWithDdaReferenceStatusEnum = exports.CreateCardRequestStatusEnum = exports.CardFvLinkResponseStatusEnum = exports.BadRequestModelV2ErrorTypeEnum = exports.AutopayEnrollmentConfigurationEnrollmentPrefillValueEnum = exports.AuthChecklistOptionsSubmittedByEnum = exports.AuthChecklistOptionsNameEnum = exports.AuthChecklistFactorRequiredEnum = exports.AuthChecklistFactorTypeEnum = exports.AccountTypeSubtypeEnum = exports.AccountTypeTypeEnum = void 0;
26
- exports.ListPaymentsPaymentTypesEnum = exports.ListPaymentsPaymentTypeEnum = exports.ListPaymentsSenderTypeEnum = exports.ListPaymentsStatusesEnum = exports.ListMandatesSenderTypeEnum = exports.ListMandatesStatusesEnum = exports.ListDisputesStatusesEnum = exports.ListDetokenizedMandatesSenderTypeEnum = exports.ListDetokenizedMandatesStatusesEnum = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.ListPaymentAccountsWithEnrichedDataAccountTypeEnum = exports.ListInstitutionsInstitutionTypeEnum = exports.GetLineItemsForDisplayPaymentTypeEnum = exports.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.UpdateTestPaymentStatusRequestStatusEnum = exports.UpdatePaymentUserRequestUserTypeEnum = exports.TransactionLimitsPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.RefreshLoginIdentityLinkCustomizationsUiModeEnum = exports.RefreshLoginIdentityLinkCustomizationsLanguageEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PayoutSnapshotResponseTypeEnum = exports.PayoutSnapshotResponseStatusEnum = exports.PaymentUserWithoutEmailUserTypeEnum = exports.PaymentUserUserTypeEnum = exports.PaymentSetupOptionsPaymentMethodTypesEnum = exports.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentMethodIntegrationMetadataIntegrationIdEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = exports.PaymentLinkResponseSessionStatusEnum = exports.PaymentLinkResponseStatusEnum = exports.PaymentLinkResponseModeEnum = exports.PaymentLinkCustomizationsUiModeEnum = exports.PaymentLinkCustomizationsLanguageEnum = exports.PaymentInstructionTypeEnum = exports.PaymentInfoPaymentsSupportedEnum = exports.PaymentFvLinkResponseStatusEnum = exports.PaymentAccountDetailsWithEnrichedDataAccountTypeEnum = exports.PaymentAccountDetailsAccountTypeEnum = void 0;
27
- exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.GetBalanceHistorySourceEnum = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.TokenGrantTypeEnum = exports.LinkApi = exports.LinkApiFactory = exports.LinkApiFp = exports.LinkApiAxiosParamCreator = exports.ListPayoutsPayoutTypesEnum = exports.ListPayoutsStatusesEnum = void 0;
26
+ exports.ListPaymentsStatusesEnum = exports.ListMandatesSenderTypeEnum = exports.ListMandatesStatusesEnum = exports.ListDisputesStatusesEnum = exports.ListDetokenizedMandatesSenderTypeEnum = exports.ListDetokenizedMandatesStatusesEnum = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.ListPaymentAccountsWithEnrichedDataAccountTypeEnum = exports.ListInstitutionsInstitutionTypeEnum = exports.GetLineItemsForDisplayPaymentTypeEnum = exports.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.UpdateTestPaymentStatusRequestStatusEnum = exports.UpdatePaymentUserRequestUserTypeEnum = exports.TransactionLimitsResponsePeriodEnum = exports.TransactionLimitsRequestPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.RefreshLoginIdentityLinkCustomizationsUiModeEnum = exports.RefreshLoginIdentityLinkCustomizationsLanguageEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PayoutSnapshotResponseTypeEnum = exports.PayoutSnapshotResponseStatusEnum = exports.PaymentUserWithoutEmailUserTypeEnum = exports.PaymentUserUserTypeEnum = exports.PaymentSetupOptionsRequestPaymentMethodTypesEnum = exports.PaymentSetupOptionsRequestFuturePaymentsEnum = exports.PaymentSetupOptionsPaymentMethodTypesEnum = exports.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentMethodIntegrationMetadataIntegrationIdEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = exports.PaymentLinkResponseSessionStatusEnum = exports.PaymentLinkResponseStatusEnum = exports.PaymentLinkResponseModeEnum = exports.PaymentLinkCustomizationsUiModeEnum = exports.PaymentLinkCustomizationsLanguageEnum = exports.PaymentInstructionTypeEnum = exports.PaymentInfoPaymentsSupportedEnum = exports.PaymentFvLinkResponseStatusEnum = exports.PaymentAccountDetailsWithEnrichedDataAccountTypeEnum = exports.PaymentAccountDetailsAccountTypeEnum = void 0;
27
+ exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.GetBalanceHistorySourceEnum = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.TokenGrantTypeEnum = exports.LinkApi = exports.LinkApiFactory = exports.LinkApiFp = exports.LinkApiAxiosParamCreator = exports.ListPayoutsPayoutTypesEnum = exports.ListPayoutsStatusesEnum = exports.ListPaymentsPaymentTypesEnum = exports.ListPaymentsPaymentTypeEnum = exports.ListPaymentsSenderTypeEnum = void 0;
28
28
  const axios_1 = require("axios");
29
29
  // Some imports not used depending on template conditions
30
30
  // @ts-ignore
@@ -383,6 +383,16 @@ exports.PaymentSetupOptionsPaymentMethodTypesEnum = {
383
383
  Card: 'CARD',
384
384
  Manual: 'MANUAL',
385
385
  };
386
+ exports.PaymentSetupOptionsRequestFuturePaymentsEnum = {
387
+ Autopay: 'AUTOPAY',
388
+ ClickToPay: 'CLICK_TO_PAY',
389
+ };
390
+ exports.PaymentSetupOptionsRequestPaymentMethodTypesEnum = {
391
+ Mandate: 'MANDATE',
392
+ Single: 'SINGLE',
393
+ Card: 'CARD',
394
+ Manual: 'MANUAL',
395
+ };
386
396
  exports.PaymentUserUserTypeEnum = {
387
397
  Individual: 'INDIVIDUAL',
388
398
  Business: 'BUSINESS',
@@ -404,6 +414,7 @@ exports.PayoutSnapshotResponseStatusEnum = {
404
414
  exports.PayoutSnapshotResponseTypeEnum = {
405
415
  Manual: 'MANUAL',
406
416
  Scheduled: 'SCHEDULED',
417
+ Settlement: 'SETTLEMENT',
407
418
  };
408
419
  exports.RecipientAccountNumberTypeEnum = {
409
420
  Local: 'LOCAL',
@@ -436,7 +447,14 @@ exports.SubmitAuthChecklistResponseMandateStatusEnum = {
436
447
  Submitted: 'SUBMITTED',
437
448
  Error: 'ERROR',
438
449
  };
439
- exports.TransactionLimitsPeriodEnum = {
450
+ exports.TransactionLimitsRequestPeriodEnum = {
451
+ Daily: 'DAILY',
452
+ Weekly: 'WEEKLY',
453
+ Monthly: 'MONTHLY',
454
+ Quarterly: 'QUARTERLY',
455
+ Yearly: 'YEARLY',
456
+ };
457
+ exports.TransactionLimitsResponsePeriodEnum = {
440
458
  Daily: 'DAILY',
441
459
  Weekly: 'WEEKLY',
442
460
  Monthly: 'MONTHLY',
@@ -4873,6 +4891,7 @@ exports.ListPayoutsStatusesEnum = {
4873
4891
  exports.ListPayoutsPayoutTypesEnum = {
4874
4892
  Manual: 'MANUAL',
4875
4893
  Scheduled: 'SCHEDULED',
4894
+ Settlement: 'SETTLEMENT',
4876
4895
  };
4877
4896
  /**
4878
4897
  * LinkApi - axios parameter creator
package/dist/base.js CHANGED
@@ -15,7 +15,7 @@
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.operationServerMap = exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0;
17
17
  const axios_1 = require("axios");
18
- exports.BASE_PATH = 'https://api.sandbox.finverse.net'.replace(/\/+$/, '');
18
+ exports.BASE_PATH = 'https://api.prod.finverse.net'.replace(/\/+$/, '');
19
19
  /**
20
20
  *
21
21
  * @export
@@ -19,5 +19,5 @@ function getStatements() {
19
19
  };
20
20
  }
21
21
  function getStatementAsBuffer() {
22
- return new TextEncoder().encode("this is statement");
22
+ return new TextEncoder().encode("this is statement").buffer;
23
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.311",
3
+ "version": "0.0.313",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -31,8 +31,8 @@
31
31
  "@types/mocha": "^10.0.10",
32
32
  "@types/node": "12.11.5 - 12.20.42",
33
33
  "axios-mock-adapter": "^1.21.2",
34
- "chai": "^5.2.1",
35
- "mocha": "^11.7.1",
34
+ "chai": "^6.0.1",
35
+ "mocha": "^11.7.2",
36
36
  "ts-node": "^10.9.2",
37
37
  "typescript": "^4.0 || ^5.0"
38
38
  },