@finverse/sdk-typescript 0.0.99 → 0.0.101

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.
Files changed (2) hide show
  1. package/dist/api.d.ts +72 -52
  2. package/package.json +1 -1
package/dist/api.d.ts CHANGED
@@ -821,18 +821,6 @@ export declare type CreatePaymentRequestTypeEnum = typeof CreatePaymentRequestTy
821
821
  * @interface CreatePayoutInstructionRequest
822
822
  */
823
823
  export interface CreatePayoutInstructionRequest {
824
- /**
825
- * The mandate used to execute payments for this payout instruction. Currency for the mandate must be supported by the recipient account
826
- * @type {string}
827
- * @memberof CreatePayoutInstructionRequest
828
- */
829
- mandate_id: string;
830
- /**
831
- * The recipient account to receive the payment
832
- * @type {string}
833
- * @memberof CreatePayoutInstructionRequest
834
- */
835
- recipient_account_id: string;
836
824
  /**
837
825
  * Amount to be paid, in currency\'s smallest unit or “minor unit”, as defined in ISO 4217. For example, HKD 100.01 is represented as amount = 10001 (minor unit = cents). For currencies without minor units (e.g. VND, JPY), the amount is represented as is, without modification. For example, VND 15101 is represented as amount = 15101.
838
826
  * @type {number}
@@ -840,23 +828,23 @@ export interface CreatePayoutInstructionRequest {
840
828
  */
841
829
  amount: number;
842
830
  /**
843
- * YYYY-MM-DD, date (in UTC) to execute the payment, must be 1 day later than current date
831
+ * The currency code as defined in ISO 4217.
844
832
  * @type {string}
845
833
  * @memberof CreatePayoutInstructionRequest
846
834
  */
847
- date: string;
835
+ currency: string;
848
836
  /**
849
- * A description for the payment (that will appear as the transaction description on bank statements)
850
- * @type {string}
837
+ *
838
+ * @type {PayoutDetails}
851
839
  * @memberof CreatePayoutInstructionRequest
852
840
  */
853
- description?: string;
841
+ payment_details: PayoutDetails;
854
842
  /**
855
- * The currency code as defined in ISO 4217.
856
- * @type {string}
843
+ *
844
+ * @type {MandateRecipientRequest}
857
845
  * @memberof CreatePayoutInstructionRequest
858
846
  */
859
- currency: string;
847
+ recipient: MandateRecipientRequest;
860
848
  }
861
849
  /**
862
850
  *
@@ -968,12 +956,6 @@ export interface CreateSenderAccountRequest {
968
956
  * @memberof CreateSenderAccountRequest
969
957
  */
970
958
  sender_id: string;
971
- /**
972
- * Customer App\'s internal ID for the recipient
973
- * @type {string}
974
- * @memberof CreateSenderAccountRequest
975
- */
976
- user_id: string;
977
959
  }
978
960
  export declare const CreateSenderAccountRequestAccountTypeEnum: {
979
961
  readonly ExternalAccount: "EXTERNAL_ACCOUNT";
@@ -3862,6 +3844,31 @@ export declare const PaymentScheduleFrequencyEnum: {
3862
3844
  readonly Yearly: "YEARLY";
3863
3845
  };
3864
3846
  export declare type PaymentScheduleFrequencyEnum = typeof PaymentScheduleFrequencyEnum[keyof typeof PaymentScheduleFrequencyEnum];
3847
+ /**
3848
+ *
3849
+ * @export
3850
+ * @interface PayoutDetails
3851
+ */
3852
+ export interface PayoutDetails {
3853
+ /**
3854
+ * The mandate used to execute payments for this payout instruction. Currency for the mandate must be supported by the recipient account
3855
+ * @type {string}
3856
+ * @memberof PayoutDetails
3857
+ */
3858
+ mandate_id: string;
3859
+ /**
3860
+ * A description for the payment (that will appear as the transaction description on bank statements)
3861
+ * @type {string}
3862
+ * @memberof PayoutDetails
3863
+ */
3864
+ description?: string;
3865
+ /**
3866
+ * YYYY-MM-DD, date (in UTC) to execute the payment, must be 1 day later than current date
3867
+ * @type {string}
3868
+ * @memberof PayoutDetails
3869
+ */
3870
+ scheduled_date: string;
3871
+ }
3865
3872
  /**
3866
3873
  *
3867
3874
  * @export
@@ -3869,53 +3876,59 @@ export declare type PaymentScheduleFrequencyEnum = typeof PaymentScheduleFrequen
3869
3876
  */
3870
3877
  export interface PayoutInstructionResponse {
3871
3878
  /**
3872
- * Finverse Payout Instruction ID
3873
- * @type {string}
3879
+ * Amount to be paid, in currency\'s smallest unit or “minor unit”, as defined in ISO 4217. For example, HKD 100.01 is represented as amount = 10001 (minor unit = cents). For currencies without minor units (e.g. VND, JPY), the amount is represented as is, without modification. For example, VND 15101 is represented as amount = 15101.
3880
+ * @type {number}
3874
3881
  * @memberof PayoutInstructionResponse
3875
3882
  */
3876
- payout_instruction_id: string;
3883
+ amount?: number;
3877
3884
  /**
3878
- * Possible values - CREATED, PROCESSING, EXECUTED, CANCELLED, FAILED.
3885
+ * The currency code as defined in ISO 4217.
3879
3886
  * @type {string}
3880
3887
  * @memberof PayoutInstructionResponse
3881
3888
  */
3882
- status: PayoutInstructionResponseStatusEnum;
3889
+ currency?: string;
3883
3890
  /**
3884
- * The mandate used to execute payments for this payout instruction. Currency for the mandate must be supported by the recipient account
3885
- * @type {string}
3891
+ *
3892
+ * @type {PayoutDetails}
3886
3893
  * @memberof PayoutInstructionResponse
3887
3894
  */
3888
- mandate_id?: string;
3895
+ payment_details?: PayoutDetails;
3889
3896
  /**
3890
- * The recipient account to receive the payment
3891
- * @type {string}
3897
+ *
3898
+ * @type {MandateRecipient}
3892
3899
  * @memberof PayoutInstructionResponse
3893
3900
  */
3894
- recipient_account_id?: string;
3901
+ recipient?: MandateRecipient;
3895
3902
  /**
3896
- * Amount to be paid, in currency\'s smallest unit or “minor unit”, as defined in ISO 4217. For example, HKD 100.01 is represented as amount = 10001 (minor unit = cents). For currencies without minor units (e.g. VND, JPY), the amount is represented as is, without modification. For example, VND 15101 is represented as amount = 15101.
3897
- * @type {number}
3903
+ *
3904
+ * @type {PayoutSender}
3898
3905
  * @memberof PayoutInstructionResponse
3899
3906
  */
3900
- amount?: number;
3907
+ sender?: PayoutSender;
3901
3908
  /**
3902
- * YYYY-MM-DD, date (in UTC) to execute the payment, must be 1 day later than current date
3909
+ * Finverse Payout Instruction ID
3903
3910
  * @type {string}
3904
3911
  * @memberof PayoutInstructionResponse
3905
3912
  */
3906
- date?: string;
3913
+ payout_instruction_id: string;
3907
3914
  /**
3908
- * A description for the payment (that will appear as the transaction description on bank statements)
3915
+ * Possible values - CREATED, PROCESSING, EXECUTED, CANCELLED, FAILED.
3909
3916
  * @type {string}
3910
3917
  * @memberof PayoutInstructionResponse
3911
3918
  */
3912
- description?: string;
3919
+ status: PayoutInstructionResponseStatusEnum;
3913
3920
  /**
3914
- * The currency code as defined in ISO 4217.
3921
+ * Timestamp of when the recipient was created in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
3915
3922
  * @type {string}
3916
3923
  * @memberof PayoutInstructionResponse
3917
3924
  */
3918
- currency?: string;
3925
+ created_at?: string;
3926
+ /**
3927
+ * Timestamp of when the recipient was last updated in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
3928
+ * @type {string}
3929
+ * @memberof PayoutInstructionResponse
3930
+ */
3931
+ updated_at?: string;
3919
3932
  /**
3920
3933
  *
3921
3934
  * @type {FvErrorModelV2}
@@ -3931,6 +3944,19 @@ export declare const PayoutInstructionResponseStatusEnum: {
3931
3944
  readonly Failed: "FAILED";
3932
3945
  };
3933
3946
  export declare type PayoutInstructionResponseStatusEnum = typeof PayoutInstructionResponseStatusEnum[keyof typeof PayoutInstructionResponseStatusEnum];
3947
+ /**
3948
+ *
3949
+ * @export
3950
+ * @interface PayoutSender
3951
+ */
3952
+ export interface PayoutSender {
3953
+ /**
3954
+ *
3955
+ * @type {string}
3956
+ * @memberof PayoutSender
3957
+ */
3958
+ name?: string;
3959
+ }
3934
3960
  /**
3935
3961
  *
3936
3962
  * @export
@@ -4250,12 +4276,6 @@ export interface SenderAccountResponse {
4250
4276
  * @memberof SenderAccountResponse
4251
4277
  */
4252
4278
  sender_id?: string;
4253
- /**
4254
- * Customer App\'s internal ID for the recipient
4255
- * @type {string}
4256
- * @memberof SenderAccountResponse
4257
- */
4258
- user_id?: string;
4259
4279
  /**
4260
4280
  * Timestamp of when the sender was created in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
4261
4281
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.99",
3
+ "version": "0.0.101",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [