From 1842a2d71a07eaadc851f73656f89fc898e5a34b Mon Sep 17 00:00:00 2001 From: chang-ning Date: Thu, 1 Apr 2021 00:04:34 +0800 Subject: [PATCH 1/5] fix Funding ticker does not include frrAmountAvailable Signed-off-by: chang-ning --- lib/funding_ticker.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/funding_ticker.js b/lib/funding_ticker.js index 1176183..013b59d 100644 --- a/lib/funding_ticker.js +++ b/lib/funding_ticker.js @@ -20,7 +20,8 @@ const fields = { lastPrice: 10, volume: 11, high: 12, - low: 13 + low: 13, + frrAmountAvailable: 16 } /** @@ -43,6 +44,7 @@ class FundingTicker extends Model { * @param {number} data.volume - total volume in last 24h period * @param {number} data.high - highest rate in last 24h period * @param {number} data.low - lowest rate in last 24h period + * @param {number} data.frrAmountAvailable - current FRR total amount */ constructor (data = {}) { super({ data, fields }) @@ -98,7 +100,8 @@ class FundingTicker extends Model { lastPrice: priceValidator, volume: numberValidator, high: priceValidator, - low: priceValidator + low: priceValidator, + frrAmountAvailable: numberValidator } }) } From 54cb4b858d4b6b880a2c4e7a86d11960bb75fbf9 Mon Sep 17 00:00:00 2001 From: chang-ning Date: Thu, 1 Apr 2021 00:34:01 +0800 Subject: [PATCH 2/5] fix FundingTicker Model test failed Signed-off-by: chang-ning --- test/lib/models/funding_ticker.js | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/test/lib/models/funding_ticker.js b/test/lib/models/funding_ticker.js index b95340b..2dcff8d 100644 --- a/test/lib/models/funding_ticker.js +++ b/test/lib/models/funding_ticker.js @@ -23,7 +23,10 @@ const DATA = [ 0.00009041, 255643282.81674618, 0.000163, - 2.7e-7 + 2.7e-7, + null, + null, + 122688757.18729109 ] describe('FundingTicker model', () => { @@ -32,7 +35,7 @@ describe('FundingTicker model', () => { orderedFields: [ 'symbol', 'frr', 'bid', 'bidSize', 'bidPeriod', 'ask', 'askSize', 'askPeriod', 'dailyChange', 'dailyChangePerc', 'lastPrice', 'volume', - 'high', 'low' + 'high', 'low', null, null, 'frrAmountAvailable' ] }) @@ -52,7 +55,8 @@ describe('FundingTicker model', () => { volume: new Array(...(new Array(5))).map(() => Math.random()), high: new Array(...(new Array(5))).map(() => Math.random()), low: new Array(...(new Array(5))).map(() => Math.random()), - frr: new Array(...(new Array(5))).map(() => Math.random() > 0.5) + frr: new Array(...(new Array(5))).map(() => Math.random() > 0.5), + frrAmountAvailable: new Array(...(new Array(5))).map(() => Math.random()) } }) @@ -72,6 +76,7 @@ describe('FundingTicker model', () => { assert.strictEqual(ticker.volume, 255643282.81674618) assert.strictEqual(ticker.high, 0.000163) assert.strictEqual(ticker.low, 2.7e-7) + assert.strictEqual(ticker.frrAmountAvailable, 122688757.18729109) }) it('serializes correctly', () => { @@ -97,6 +102,7 @@ describe('FundingTicker model', () => { assert.strictEqual(obj.volume, 255643282.81674618) assert.strictEqual(obj.high, 0.000163) assert.strictEqual(obj.low, 2.7e-7) + assert.strictEqual(obj.frrAmountAvailable, 122688757.18729109) }) it('unserializes live data correctly', async () => { @@ -118,6 +124,7 @@ describe('FundingTicker model', () => { assert.strictEqual(obj.volume, arr[11]) assert.strictEqual(obj.high, arr[12]) assert.strictEqual(obj.low, arr[13]) + assert.strictEqual(obj.frrAmountAvailable, arr[16]) }).timeout(60000) describe('quote', () => { From 95e2ebe91e2d88644d4bb92efaf201a3eaab11ca Mon Sep 17 00:00:00 2001 From: chang-ning Date: Thu, 1 Apr 2021 01:01:39 +0800 Subject: [PATCH 3/5] (bump) v1.3.4 Signed-off-by: chang-ning --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e5e019a..ee3be8b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bfx-api-node-models", - "version": "1.3.3", + "version": "1.3.4", "description": "Object models for usage with the Bitfinex node API", "engines": { "node": ">=8.3.0" From 4f44778c148bb21f7603fdc047ac739f676b29da Mon Sep 17 00:00:00 2001 From: chang-ning Date: Thu, 1 Apr 2021 01:03:03 +0800 Subject: [PATCH 4/5] update changelog Signed-off-by: chang-ning --- CHANGELOG | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index a0fa95d..f9b67c6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +# 1.3.4 +- feature: add frrAmountAvailable to FundingTicker + # 1.3.3 - feature: add extra keys to account summary model From 8af944893a19193d77cb08a9205ad90ac78684bc Mon Sep 17 00:00:00 2001 From: chang-ning Date: Thu, 1 Apr 2021 01:05:31 +0800 Subject: [PATCH 5/5] Update Docs Signed-off-by: chang-ning --- docs/AccountSummary.html | 4 +-- docs/Alert.html | 4 +-- docs/AuthPermission.html | 4 +-- docs/BalanceInfo.html | 4 +-- docs/Candle.html | 4 +-- docs/ChangeLog.html | 4 +-- docs/Currency.html | 4 +-- docs/FundingCredit.html | 4 +-- docs/FundingInfo.html | 4 +-- docs/FundingLoan.html | 4 +-- docs/FundingOffer.html | 4 +-- docs/FundingTicker.html | 35 +++++++++++++++---- docs/FundingTickerHist.html | 4 +-- docs/FundingTrade.html | 4 +-- docs/Invoice.html | 4 +-- docs/LedgerEntry.html | 4 +-- docs/Liquidations.html | 4 +-- docs/Login.html | 4 +-- docs/MarginInfo.html | 4 +-- docs/Model.html | 4 +-- docs/Movement.html | 4 +-- docs/Notification.html | 4 +-- docs/Order.html | 4 +-- docs/OrderBook.html | 4 +-- docs/Position.html | 4 +-- docs/PublicPulseProfile.html | 4 +-- docs/PublicTrade.html | 4 +-- docs/PulseMessage.html | 4 +-- docs/StatusMessagesDeriv.html | 4 +-- docs/SymbolDetails.html | 4 +-- docs/Trade.html | 4 +-- docs/TradingTicker.html | 4 +-- docs/TradingTickerHist.html | 4 +-- docs/TransactionFee.html | 4 +-- docs/UserInfo.html | 4 +-- docs/Wallet.html | 4 +-- docs/WalletHist.html | 4 +-- docs/account_summary.js.html | 2 +- docs/alert.js.html | 2 +- docs/auth_permission.js.html | 2 +- docs/balance_info.js.html | 2 +- docs/candle.js.html | 2 +- docs/change_log.js.html | 2 +- docs/currency.js.html | 2 +- docs/funding_credit.js.html | 2 +- docs/funding_info.js.html | 2 +- docs/funding_loan.js.html | 2 +- docs/funding_offer.js.html | 2 +- docs/funding_ticker.js.html | 9 +++-- docs/funding_ticker_hist.js.html | 2 +- docs/funding_trade.js.html | 2 +- docs/global.html | 2 +- docs/index.html | 2 +- docs/invoice.js.html | 2 +- docs/ledger_entry.js.html | 2 +- docs/liquidations.js.html | 2 +- docs/login.js.html | 2 +- docs/margin_info.js.html | 2 +- docs/model.js.html | 2 +- docs/movement.js.html | 2 +- docs/notification.js.html | 2 +- docs/order.js.html | 2 +- docs/order_book.js.html | 2 +- docs/position.js.html | 2 +- docs/public_pulse_profile.js.html | 2 +- docs/public_trade.js.html | 2 +- docs/pulse_message.js.html | 2 +- docs/status_messages_deriv.js.html | 2 +- docs/symbol_details.js.html | 2 +- docs/trade.js.html | 2 +- docs/trading_ticker.js.html | 2 +- docs/trading_ticker_hist.js.html | 2 +- docs/transaction_fee.js.html | 2 +- docs/user_info.js.html | 2 +- ...assign_from_collection_or_instance.js.html | 2 +- docs/util_is_collection.js.html | 2 +- docs/validators_amount.js.html | 2 +- docs/validators_array.js.html | 2 +- docs/validators_bool.js.html | 2 +- docs/validators_currency.js.html | 2 +- docs/validators_date.js.html | 2 +- docs/validators_number.js.html | 2 +- docs/validators_object.js.html | 2 +- docs/validators_price.js.html | 2 +- docs/validators_string.js.html | 2 +- docs/validators_symbol.js.html | 2 +- docs/wallet.js.html | 2 +- docs/wallet_hist.js.html | 2 +- 88 files changed, 157 insertions(+), 131 deletions(-) diff --git a/docs/AccountSummary.html b/docs/AccountSummary.html index 7f10c7f..69f200e 100644 --- a/docs/AccountSummary.html +++ b/docs/AccountSummary.html @@ -77,7 +77,7 @@

new Acc
Source:
@@ -894,7 +894,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/Alert.html b/docs/Alert.html index ca440f3..7cba709 100644 --- a/docs/Alert.html +++ b/docs/Alert.html @@ -77,7 +77,7 @@

new AlertSource:
@@ -688,7 +688,7 @@
Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/AuthPermission.html b/docs/AuthPermission.html index c618fe0..b2d4acc 100644 --- a/docs/AuthPermission.html +++ b/docs/AuthPermission.html @@ -77,7 +77,7 @@

new Aut
Source:
@@ -664,7 +664,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/BalanceInfo.html b/docs/BalanceInfo.html index dda98b6..62f0d19 100644 --- a/docs/BalanceInfo.html +++ b/docs/BalanceInfo.html @@ -77,7 +77,7 @@

new Balanc
Source:
@@ -642,7 +642,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/Candle.html b/docs/Candle.html index 9e81427..3d6b72d 100644 --- a/docs/Candle.html +++ b/docs/Candle.html @@ -77,7 +77,7 @@

new CandleSource:
@@ -733,7 +733,7 @@
Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/ChangeLog.html b/docs/ChangeLog.html index 55d8514..5da7fb3 100644 --- a/docs/ChangeLog.html +++ b/docs/ChangeLog.html @@ -77,7 +77,7 @@

new ChangeLo
Source:
@@ -687,7 +687,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/Currency.html b/docs/Currency.html index 89e161a..20d3ee1 100644 --- a/docs/Currency.html +++ b/docs/Currency.html @@ -77,7 +77,7 @@

new Currency<
Source:
@@ -710,7 +710,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/FundingCredit.html b/docs/FundingCredit.html index faf0fae..82fd295 100644 --- a/docs/FundingCredit.html +++ b/docs/FundingCredit.html @@ -77,7 +77,7 @@

new Fund
Source:
@@ -1021,7 +1021,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/FundingInfo.html b/docs/FundingInfo.html index 403dc2b..320224d 100644 --- a/docs/FundingInfo.html +++ b/docs/FundingInfo.html @@ -77,7 +77,7 @@

new Fundin
Source:
@@ -693,7 +693,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/FundingLoan.html b/docs/FundingLoan.html index 2074044..161c0ca 100644 --- a/docs/FundingLoan.html +++ b/docs/FundingLoan.html @@ -77,7 +77,7 @@

new Fundin
Source:
@@ -998,7 +998,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/FundingOffer.html b/docs/FundingOffer.html index 554101a..9407ec9 100644 --- a/docs/FundingOffer.html +++ b/docs/FundingOffer.html @@ -77,7 +77,7 @@

new Fundi
Source:
@@ -1686,7 +1686,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/FundingTicker.html b/docs/FundingTicker.html index 55f6dd5..bb8898c 100644 --- a/docs/FundingTicker.html +++ b/docs/FundingTicker.html @@ -77,7 +77,7 @@

new Fund
Source:
@@ -518,6 +518,29 @@

Properties
+ + + + frrAmountAvailable + + + + + +number + + + + + + + + + +

current FRR total amount

+ + + @@ -584,7 +607,7 @@

(static)
Source:
@@ -747,7 +770,7 @@

(static) val
Source:
@@ -917,7 +940,7 @@

baseSource:
@@ -1026,7 +1049,7 @@

quoteSource:
@@ -1138,7 +1161,7 @@
Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/FundingTickerHist.html b/docs/FundingTickerHist.html index ebf616f..eadb79a 100644 --- a/docs/FundingTickerHist.html +++ b/docs/FundingTickerHist.html @@ -77,7 +77,7 @@

new
Source:
@@ -928,7 +928,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/FundingTrade.html b/docs/FundingTrade.html index d83ba90..eca17aa 100644 --- a/docs/FundingTrade.html +++ b/docs/FundingTrade.html @@ -77,7 +77,7 @@

new Fundi
Source:
@@ -892,7 +892,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/Invoice.html b/docs/Invoice.html index 4c01698..f4b2f2e 100644 --- a/docs/Invoice.html +++ b/docs/Invoice.html @@ -77,7 +77,7 @@

new InvoiceSource:
@@ -769,7 +769,7 @@
Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/LedgerEntry.html b/docs/LedgerEntry.html index c3a8f40..0956ad5 100644 --- a/docs/LedgerEntry.html +++ b/docs/LedgerEntry.html @@ -78,7 +78,7 @@

new Ledger
Source:
@@ -734,7 +734,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/Liquidations.html b/docs/Liquidations.html index 5a12242..4337954 100644 --- a/docs/Liquidations.html +++ b/docs/Liquidations.html @@ -77,7 +77,7 @@

new Liqui
Source:
@@ -867,7 +867,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/Login.html b/docs/Login.html index 5da25f2..f97c9ed 100644 --- a/docs/Login.html +++ b/docs/Login.html @@ -77,7 +77,7 @@

new LoginSource:
@@ -687,7 +687,7 @@
Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/MarginInfo.html b/docs/MarginInfo.html index 78f9b22..c6a5364 100644 --- a/docs/MarginInfo.html +++ b/docs/MarginInfo.html @@ -77,7 +77,7 @@

new MarginI
Source:
@@ -693,7 +693,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/Model.html b/docs/Model.html index c67f1c9..97e5676 100644 --- a/docs/Model.html +++ b/docs/Model.html @@ -77,7 +77,7 @@

new ModelSource:
@@ -1195,7 +1195,7 @@
Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/Movement.html b/docs/Movement.html index baf31b6..f11b99b 100644 --- a/docs/Movement.html +++ b/docs/Movement.html @@ -77,7 +77,7 @@

new Movement<
Source:
@@ -848,7 +848,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/Notification.html b/docs/Notification.html index 13edaad..9958960 100644 --- a/docs/Notification.html +++ b/docs/Notification.html @@ -77,7 +77,7 @@

new Notif
Source:
@@ -756,7 +756,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/Order.html b/docs/Order.html index c43ac5d..f8c51da 100644 --- a/docs/Order.html +++ b/docs/Order.html @@ -78,7 +78,7 @@

new OrderSource:
@@ -5701,7 +5701,7 @@
Throws:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/OrderBook.html b/docs/OrderBook.html index 8975852..d1385f3 100644 --- a/docs/OrderBook.html +++ b/docs/OrderBook.html @@ -77,7 +77,7 @@

new OrderBoo
Source:
@@ -2506,7 +2506,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/Position.html b/docs/Position.html index be363b7..76372e4 100644 --- a/docs/Position.html +++ b/docs/Position.html @@ -77,7 +77,7 @@

new Position<
Source:
@@ -1655,7 +1655,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/PublicPulseProfile.html b/docs/PublicPulseProfile.html index 272eff3..b96463a 100644 --- a/docs/PublicPulseProfile.html +++ b/docs/PublicPulseProfile.html @@ -77,7 +77,7 @@

new
Source:
@@ -838,7 +838,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/PublicTrade.html b/docs/PublicTrade.html index bbaf027..a2d9910 100644 --- a/docs/PublicTrade.html +++ b/docs/PublicTrade.html @@ -77,7 +77,7 @@

new Public
Source:
@@ -674,7 +674,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/PulseMessage.html b/docs/PulseMessage.html index 9e27aae..c1f78c9 100644 --- a/docs/PulseMessage.html +++ b/docs/PulseMessage.html @@ -77,7 +77,7 @@

new Pulse
Source:
@@ -1108,7 +1108,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/StatusMessagesDeriv.html b/docs/StatusMessagesDeriv.html index 2c72f9c..555cb6d 100644 --- a/docs/StatusMessagesDeriv.html +++ b/docs/StatusMessagesDeriv.html @@ -77,7 +77,7 @@

ne
Source:
@@ -802,7 +802,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/SymbolDetails.html b/docs/SymbolDetails.html index 9092827..393c222 100644 --- a/docs/SymbolDetails.html +++ b/docs/SymbolDetails.html @@ -77,7 +77,7 @@

new Symb
Source:
@@ -733,7 +733,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/Trade.html b/docs/Trade.html index d247dc1..6b59bca 100644 --- a/docs/Trade.html +++ b/docs/Trade.html @@ -77,7 +77,7 @@

new TradeSource:
@@ -956,7 +956,7 @@
Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/TradingTicker.html b/docs/TradingTicker.html index 01d27ed..7ce7f4f 100644 --- a/docs/TradingTicker.html +++ b/docs/TradingTicker.html @@ -77,7 +77,7 @@

new Trad
Source:
@@ -1066,7 +1066,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/TradingTickerHist.html b/docs/TradingTickerHist.html index 5d94acf..0b95e21 100644 --- a/docs/TradingTickerHist.html +++ b/docs/TradingTickerHist.html @@ -77,7 +77,7 @@

new
Source:
@@ -905,7 +905,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/TransactionFee.html b/docs/TransactionFee.html index 367d4bb..1445ccb 100644 --- a/docs/TransactionFee.html +++ b/docs/TransactionFee.html @@ -77,7 +77,7 @@

new Tra
Source:
@@ -641,7 +641,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/UserInfo.html b/docs/UserInfo.html index 60b314c..5496063 100644 --- a/docs/UserInfo.html +++ b/docs/UserInfo.html @@ -77,7 +77,7 @@

new UserInfo<
Source:
@@ -687,7 +687,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/Wallet.html b/docs/Wallet.html index b1e6277..1513039 100644 --- a/docs/Wallet.html +++ b/docs/Wallet.html @@ -77,7 +77,7 @@

new WalletSource:
@@ -710,7 +710,7 @@
Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/WalletHist.html b/docs/WalletHist.html index f381b3e..3fe4580 100644 --- a/docs/WalletHist.html +++ b/docs/WalletHist.html @@ -77,7 +77,7 @@

new WalletH
Source:
@@ -733,7 +733,7 @@

Returns:

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/account_summary.js.html b/docs/account_summary.js.html index ab18479..80f9ae6 100644 --- a/docs/account_summary.js.html +++ b/docs/account_summary.js.html @@ -152,7 +152,7 @@

account_summary.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/alert.js.html b/docs/alert.js.html index f1f9d49..d2c295d 100644 --- a/docs/alert.js.html +++ b/docs/alert.js.html @@ -114,7 +114,7 @@

alert.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/auth_permission.js.html b/docs/auth_permission.js.html index b871f5f..e470d0d 100644 --- a/docs/auth_permission.js.html +++ b/docs/auth_permission.js.html @@ -112,7 +112,7 @@

auth_permission.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/balance_info.js.html b/docs/balance_info.js.html index c686736..16f723e 100644 --- a/docs/balance_info.js.html +++ b/docs/balance_info.js.html @@ -108,7 +108,7 @@

balance_info.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/candle.js.html b/docs/candle.js.html index 8bf6162..45b24d8 100644 --- a/docs/candle.js.html +++ b/docs/candle.js.html @@ -120,7 +120,7 @@

candle.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/change_log.js.html b/docs/change_log.js.html index 55b29b0..1bcf668 100644 --- a/docs/change_log.js.html +++ b/docs/change_log.js.html @@ -116,7 +116,7 @@

change_log.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/currency.js.html b/docs/currency.js.html index 926dd33..9b9f773 100644 --- a/docs/currency.js.html +++ b/docs/currency.js.html @@ -123,7 +123,7 @@

currency.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/funding_credit.js.html b/docs/funding_credit.js.html index 68a1a5c..edf9aed 100644 --- a/docs/funding_credit.js.html +++ b/docs/funding_credit.js.html @@ -165,7 +165,7 @@

funding_credit.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/funding_info.js.html b/docs/funding_info.js.html index e83cfd1..f1070ab 100644 --- a/docs/funding_info.js.html +++ b/docs/funding_info.js.html @@ -146,7 +146,7 @@

funding_info.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/funding_loan.js.html b/docs/funding_loan.js.html index 29d8963..dfc4cfe 100644 --- a/docs/funding_loan.js.html +++ b/docs/funding_loan.js.html @@ -168,7 +168,7 @@

funding_loan.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/funding_offer.js.html b/docs/funding_offer.js.html index dfbaae0..1e11688 100644 --- a/docs/funding_offer.js.html +++ b/docs/funding_offer.js.html @@ -269,7 +269,7 @@

funding_offer.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/funding_ticker.js.html b/docs/funding_ticker.js.html index 47d4965..952d618 100644 --- a/docs/funding_ticker.js.html +++ b/docs/funding_ticker.js.html @@ -66,7 +66,8 @@

funding_ticker.js

lastPrice: 10, volume: 11, high: 12, - low: 13 + low: 13, + frrAmountAvailable: 16 } /** @@ -89,6 +90,7 @@

funding_ticker.js

* @param {number} data.volume - total volume in last 24h period * @param {number} data.high - highest rate in last 24h period * @param {number} data.low - lowest rate in last 24h period + * @param {number} data.frrAmountAvailable - current FRR total amount */ constructor (data = {}) { super({ data, fields }) @@ -144,7 +146,8 @@

funding_ticker.js

lastPrice: priceValidator, volume: numberValidator, high: priceValidator, - low: priceValidator + low: priceValidator, + frrAmountAvailable: numberValidator } }) } @@ -165,7 +168,7 @@

funding_ticker.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/funding_ticker_hist.js.html b/docs/funding_ticker_hist.js.html index 7d1ae68..2a2bf37 100644 --- a/docs/funding_ticker_hist.js.html +++ b/docs/funding_ticker_hist.js.html @@ -137,7 +137,7 @@

funding_ticker_hist.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/funding_trade.js.html b/docs/funding_trade.js.html index db4bcad..92a4a37 100644 --- a/docs/funding_trade.js.html +++ b/docs/funding_trade.js.html @@ -154,7 +154,7 @@

funding_trade.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/global.html b/docs/global.html index ca1e673..4f7b287 100644 --- a/docs/global.html +++ b/docs/global.html @@ -444,7 +444,7 @@
Properties

- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/index.html b/docs/index.html index 462ac24..b59b97e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -201,7 +201,7 @@

Examples


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/invoice.js.html b/docs/invoice.js.html index 2427a19..7a0cfa6 100644 --- a/docs/invoice.js.html +++ b/docs/invoice.js.html @@ -126,7 +126,7 @@

invoice.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/ledger_entry.js.html b/docs/ledger_entry.js.html index 881bda5..7fd190d 100644 --- a/docs/ledger_entry.js.html +++ b/docs/ledger_entry.js.html @@ -135,7 +135,7 @@

ledger_entry.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/liquidations.js.html b/docs/liquidations.js.html index 2196e79..8e09059 100644 --- a/docs/liquidations.js.html +++ b/docs/liquidations.js.html @@ -146,7 +146,7 @@

liquidations.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/login.js.html b/docs/login.js.html index c0426f4..8cec936 100644 --- a/docs/login.js.html +++ b/docs/login.js.html @@ -114,7 +114,7 @@

login.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/margin_info.js.html b/docs/margin_info.js.html index 1b10aa1..a13f236 100644 --- a/docs/margin_info.js.html +++ b/docs/margin_info.js.html @@ -180,7 +180,7 @@

margin_info.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/model.js.html b/docs/model.js.html index b49c6c5..e49775a 100644 --- a/docs/model.js.html +++ b/docs/model.js.html @@ -242,7 +242,7 @@

model.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/movement.js.html b/docs/movement.js.html index 2733088..e0f1966 100644 --- a/docs/movement.js.html +++ b/docs/movement.js.html @@ -138,7 +138,7 @@

movement.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/notification.js.html b/docs/notification.js.html index 75cc2ea..ca4172d 100644 --- a/docs/notification.js.html +++ b/docs/notification.js.html @@ -123,7 +123,7 @@

notification.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/order.js.html b/docs/order.js.html index 82d252f..75e235a 100644 --- a/docs/order.js.html +++ b/docs/order.js.html @@ -800,7 +800,7 @@

order.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/order_book.js.html b/docs/order_book.js.html index 42b9be0..353eea1 100644 --- a/docs/order_book.js.html +++ b/docs/order_book.js.html @@ -609,7 +609,7 @@

order_book.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/position.js.html b/docs/position.js.html index 051ecdb..f9ac881 100644 --- a/docs/position.js.html +++ b/docs/position.js.html @@ -251,7 +251,7 @@

position.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/public_pulse_profile.js.html b/docs/public_pulse_profile.js.html index ab78a28..504e6ee 100644 --- a/docs/public_pulse_profile.js.html +++ b/docs/public_pulse_profile.js.html @@ -144,7 +144,7 @@

public_pulse_profile.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/public_trade.js.html b/docs/public_trade.js.html index 35faf76..f8d3302 100644 --- a/docs/public_trade.js.html +++ b/docs/public_trade.js.html @@ -167,7 +167,7 @@

public_trade.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/pulse_message.js.html b/docs/pulse_message.js.html index 68f1f27..ba2ad0e 100644 --- a/docs/pulse_message.js.html +++ b/docs/pulse_message.js.html @@ -209,7 +209,7 @@

pulse_message.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/status_messages_deriv.js.html b/docs/status_messages_deriv.js.html index 407d047..b568dfd 100644 --- a/docs/status_messages_deriv.js.html +++ b/docs/status_messages_deriv.js.html @@ -130,7 +130,7 @@

status_messages_deriv.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/symbol_details.js.html b/docs/symbol_details.js.html index b2adb34..81206dd 100644 --- a/docs/symbol_details.js.html +++ b/docs/symbol_details.js.html @@ -122,7 +122,7 @@

symbol_details.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/trade.js.html b/docs/trade.js.html index 70edeab..677daff 100644 --- a/docs/trade.js.html +++ b/docs/trade.js.html @@ -167,7 +167,7 @@

trade.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/trading_ticker.js.html b/docs/trading_ticker.js.html index 7d9b677..5350a88 100644 --- a/docs/trading_ticker.js.html +++ b/docs/trading_ticker.js.html @@ -155,7 +155,7 @@

trading_ticker.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/trading_ticker_hist.js.html b/docs/trading_ticker_hist.js.html index 5fc977a..eeacc8c 100644 --- a/docs/trading_ticker_hist.js.html +++ b/docs/trading_ticker_hist.js.html @@ -133,7 +133,7 @@

trading_ticker_hist.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/transaction_fee.js.html b/docs/transaction_fee.js.html index ccc4560..5bd4e21 100644 --- a/docs/transaction_fee.js.html +++ b/docs/transaction_fee.js.html @@ -110,7 +110,7 @@

transaction_fee.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/user_info.js.html b/docs/user_info.js.html index c6d8354..c12778d 100644 --- a/docs/user_info.js.html +++ b/docs/user_info.js.html @@ -114,7 +114,7 @@

user_info.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/util_assign_from_collection_or_instance.js.html b/docs/util_assign_from_collection_or_instance.js.html index a20f9a6..4fb612b 100644 --- a/docs/util_assign_from_collection_or_instance.js.html +++ b/docs/util_assign_from_collection_or_instance.js.html @@ -113,7 +113,7 @@

util/assign_from_collection_or_instance.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/util_is_collection.js.html b/docs/util_is_collection.js.html index 0660803..2750ca6 100644 --- a/docs/util_is_collection.js.html +++ b/docs/util_is_collection.js.html @@ -72,7 +72,7 @@

util/is_collection.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/validators_amount.js.html b/docs/validators_amount.js.html index 99994d6..792def9 100644 --- a/docs/validators_amount.js.html +++ b/docs/validators_amount.js.html @@ -69,7 +69,7 @@

validators/amount.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/validators_array.js.html b/docs/validators_array.js.html index b1f690d..ecb2333 100644 --- a/docs/validators_array.js.html +++ b/docs/validators_array.js.html @@ -70,7 +70,7 @@

validators/array.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/validators_bool.js.html b/docs/validators_bool.js.html index 26c5f47..1e33d9e 100644 --- a/docs/validators_bool.js.html +++ b/docs/validators_bool.js.html @@ -72,7 +72,7 @@

validators/bool.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/validators_currency.js.html b/docs/validators_currency.js.html index 0059ab8..f31a7da 100644 --- a/docs/validators_currency.js.html +++ b/docs/validators_currency.js.html @@ -74,7 +74,7 @@

validators/currency.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/validators_date.js.html b/docs/validators_date.js.html index ac5ccfd..c556ec9 100644 --- a/docs/validators_date.js.html +++ b/docs/validators_date.js.html @@ -72,7 +72,7 @@

validators/date.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/validators_number.js.html b/docs/validators_number.js.html index 5d8820a..31ffe4e 100644 --- a/docs/validators_number.js.html +++ b/docs/validators_number.js.html @@ -72,7 +72,7 @@

validators/number.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/validators_object.js.html b/docs/validators_object.js.html index 3584ff0..e8af975 100644 --- a/docs/validators_object.js.html +++ b/docs/validators_object.js.html @@ -72,7 +72,7 @@

validators/object.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/validators_price.js.html b/docs/validators_price.js.html index 7c9750d..b0db0c0 100644 --- a/docs/validators_price.js.html +++ b/docs/validators_price.js.html @@ -72,7 +72,7 @@

validators/price.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/validators_string.js.html b/docs/validators_string.js.html index 9588c19..c647ddc 100644 --- a/docs/validators_string.js.html +++ b/docs/validators_string.js.html @@ -75,7 +75,7 @@

validators/string.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/validators_symbol.js.html b/docs/validators_symbol.js.html index 525da5a..2606370 100644 --- a/docs/validators_symbol.js.html +++ b/docs/validators_symbol.js.html @@ -74,7 +74,7 @@

validators/symbol.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/wallet.js.html b/docs/wallet.js.html index 2809c26..40f0054 100644 --- a/docs/wallet.js.html +++ b/docs/wallet.js.html @@ -125,7 +125,7 @@

wallet.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.
diff --git a/docs/wallet_hist.js.html b/docs/wallet_hist.js.html index 2593c21..f2c4270 100644 --- a/docs/wallet_hist.js.html +++ b/docs/wallet_hist.js.html @@ -130,7 +130,7 @@

wallet_hist.js


- Documentation generated by JSDoc 3.6.3 on Mon Mar 01 2021 20:33:03 GMT+1100 (Australian Eastern Daylight Time) using the docdash theme. + Documentation generated by JSDoc 3.6.6 on Thu Apr 01 2021 01:04:16 GMT+0800 (Taipei Standard Time) using the docdash theme.