Socket
Socket
Sign inDemoInstall

@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.2 to 0.0.3

19

dist/api.d.ts

@@ -27,3 +27,7 @@ import type { Configuration } from './configuration';

}
export type CashRequestReceived = DepositCashRequestReceived | RedemptionCashRequestReceived;
export type CashRequestReceived = {
type: 'DepositCashRequestReceived';
} & DepositCashRequestReceived | {
type: 'RedemptionCashRequestReceived';
} & RedemptionCashRequestReceived;
export interface CashRequestResponse {

@@ -43,2 +47,3 @@ 'transactionReference': string;

'receivedAt': string;
'type': string;
}

@@ -51,2 +56,3 @@ export interface DepositCashRequestReceived {

'receivedAt': string;
'type': string;
}

@@ -62,2 +68,3 @@ export interface DepositRequest {

'receivedAt': string;
'type': string;
}

@@ -75,2 +82,3 @@ export interface Rates {

'receivedAt': string;
'type': string;
}

@@ -83,2 +91,3 @@ export interface RedemptionCashRequestReceived {

'receivedAt': string;
'type': string;
}

@@ -92,3 +101,9 @@ export interface RedemptionInfo {

}
export type Transaction = Deposit | Interest | Redemption;
export type Transaction = {
type: 'Deposit';
} & Deposit | {
type: 'Interest';
} & Interest | {
type: 'Redemption';
} & Redemption;
export interface Transactions {

@@ -95,0 +110,0 @@ 'transactions'?: Array<Transaction>;

2

package.json
{
"name": "@triviumcapital/trivium-ts-sdk",
"version": "0.0.2",
"version": "0.0.3",
"description": "Typescript Axios Client SDK for trivium APIs",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

# Typescript Axios Client SDK for trivium
[Development Documentation](./DEVELOPMENT.md)
[SDK Development Documentation](./DEVELOPMENT.md)

@@ -5,0 +5,0 @@ To use SDK:

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