@triviumcapital/trivium-ts-sdk
Advanced tools
Comparing version 0.0.21 to 0.0.22
@@ -13,3 +13,4 @@ import type { Configuration } from './configuration'; | ||
'earningsToDate': EarningsToDate; | ||
'localDepositInstructions'?: Fast; | ||
'localDepositInstructions'?: LocalTransfer; | ||
'depositInstructions': DepositInstructions; | ||
} | ||
@@ -73,2 +74,6 @@ export declare const AccountStatus: { | ||
} | ||
export interface DepositInstructions { | ||
'local'?: Array<LocalTransfer>; | ||
'global'?: Array<InternationalTransfer>; | ||
} | ||
export interface DepositRequest { | ||
@@ -88,8 +93,2 @@ 'quantity': number; | ||
'reference'?: string; | ||
} | ||
export interface Fast1 { | ||
'accountNumber': string; | ||
'recipientName': string; | ||
'bank': FastParticipant; | ||
'reference'?: string; | ||
'type': string; | ||
@@ -111,5 +110,6 @@ } | ||
'term': string; | ||
'localDepositInstructions': Fast; | ||
'localDepositInstructions'?: LocalTransfer; | ||
'redemptionDate'?: string; | ||
'returnAtMaturity'?: number; | ||
'depositInstructions': DepositInstructions; | ||
} | ||
@@ -141,2 +141,8 @@ export declare const FixedDepositPlacementStatus: { | ||
} | ||
export type InternationalTransfer = { | ||
type: 'Swift'; | ||
} & Swift; | ||
export type LocalTransfer = { | ||
type: 'Fast'; | ||
} & Fast; | ||
export interface PaginationResultUserTransaction { | ||
@@ -179,2 +185,12 @@ 'results'?: Array<UserTransaction>; | ||
} | ||
export interface Swift { | ||
'accountNumber': string; | ||
'accountHolderName': string; | ||
'accountHolderAddress'?: string; | ||
'bankName': string; | ||
'bankAddress'?: string; | ||
'swiftCode': string; | ||
'reference'?: string; | ||
'type': string; | ||
} | ||
export type Transaction = { | ||
@@ -201,3 +217,5 @@ type: 'Deposit'; | ||
type: 'Fast'; | ||
} & Fast1; | ||
} & Fast | { | ||
type: 'Swift'; | ||
} & Swift; | ||
export interface User { | ||
@@ -204,0 +222,0 @@ 'userId': string; |
{ | ||
"name": "@triviumcapital/trivium-ts-sdk", | ||
"version": "0.0.21", | ||
"version": "0.0.22", | ||
"description": "Typescript Axios Client SDK for trivium APIs", | ||
@@ -5,0 +5,0 @@ "scripts": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
81064
1280