@stoqey/ib 1.2.17 → 1.2.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -162,7 +162,7 @@ ib.reqIds();
162
162
  While IBApi uses a request function / event callback design where subscriptions are managed by the user, IBApiNext does use RxJS 7 to manage subscriptions.\
163
163
  In general, there are two types of functions on IBApiNext:
164
164
 
165
- - On-shot functions, returning a Promise, such as `IBApiNext.getCurrentTime` or `IBApiNext.getContractDetails`. Such functions will send a request to TWS and return the result (or error) on the Promise.
165
+ - One-shot functions, returning a Promise, such as `IBApiNext.getCurrentTime` or `IBApiNext.getContractDetails`. Such functions will send a request to TWS and return the result (or error) on the Promise.
166
166
 
167
167
  - Endless stream subscriptions, returning an Observable, such as `IBApiNext.getAccountSummary` or `IBApiNext.getMarketData`.
168
168
  Such functions will deliver an endless stream of update events. The `complete` callback will NEVER be invoked (do not try to convert to a Promise - it will never resolve!)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stoqey/ib",
3
3
  "private": false,
4
- "version": "1.2.17",
4
+ "version": "1.2.18",
5
5
  "description": "Interactive Brokers TWS/IB Gateway API client library for Node.js (TS)",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",