fireblocks-sdk
Advanced tools
Comparing version 1.2.4 to 1.2.5
@@ -127,2 +127,3 @@ import { VaultAccountResponse, CreateTransactionResponse, TransactionArguments, AssetResponse, ExchangeResponse, TransactionResponse, TransactionFilter, CancelTransactionResponse, WalletContainerResponse, WalletAssetResponse, DepositAddressResponse, GenerateAddressResponse, OperationSuccessResponse, NetworkConnectionResponse, FiatAccountResponse } from "./types"; | ||
* @param filter.limit Limit the amount of returned results. If not specified, a limit of 200 results will be used | ||
* @param filter.orderBy Determines the order of the results | ||
*/ | ||
@@ -129,0 +130,0 @@ getTransactions(filter: TransactionFilter): Promise<TransactionResponse[]>; |
@@ -239,2 +239,3 @@ "use strict"; | ||
* @param filter.limit Limit the amount of returned results. If not specified, a limit of 200 results will be used | ||
* @param filter.orderBy Determines the order of the results | ||
*/ | ||
@@ -241,0 +242,0 @@ getTransactions(filter) { |
@@ -156,4 +156,9 @@ export interface VaultAccountResponse { | ||
status?: TransactionStatus; | ||
orderBy?: TransactionOrder; | ||
limit?: number; | ||
} | ||
export declare enum TransactionOrder { | ||
CREATED_AT = "createdAt", | ||
LAST_UPDATED = "lastUpdated" | ||
} | ||
export declare enum TransactionStatus { | ||
@@ -160,0 +165,0 @@ SUBMITTED = "SUBMITTED", |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var TransactionOrder; | ||
(function (TransactionOrder) { | ||
TransactionOrder["CREATED_AT"] = "createdAt"; | ||
TransactionOrder["LAST_UPDATED"] = "lastUpdated"; | ||
})(TransactionOrder = exports.TransactionOrder || (exports.TransactionOrder = {})); | ||
var TransactionStatus; | ||
@@ -4,0 +9,0 @@ (function (TransactionStatus) { |
{ | ||
"name": "fireblocks-sdk", | ||
"version": "1.2.4", | ||
"version": "1.2.5", | ||
"main": "dist/fireblocks-sdk.js", | ||
@@ -5,0 +5,0 @@ "types": "dist/fireblocks-sdk.d.ts", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
52461
1047