Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@triviumcapital/trivium-ts-sdk

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@triviumcapital/trivium-ts-sdk - npm Package Compare versions

Comparing version 0.0.21 to 0.0.22

36

dist/api.d.ts

@@ -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": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc