@master-chief/alpaca
Advanced tools
Comparing version 3.3.2 to 3.3.3
{ | ||
"name": "@master-chief/alpaca", | ||
"version": "3.3.2", | ||
"version": "3.3.3", | ||
"description": "a TypeScript Node.js library for the https://alpaca.markets REST API and WebSocket streams", | ||
@@ -5,0 +5,0 @@ "author": "master-chief", |
import qs from 'qs' | ||
import fetch from 'node-fetch' | ||
import urls from './urls.js' | ||
import limiter from 'limiter' | ||
import { RateLimiter } from 'limiter' | ||
import { Parser } from './parser.js' | ||
@@ -55,3 +55,3 @@ | ||
export class AlpacaClient { | ||
private limiter = new RateLimiter(200, 'minute') | ||
private limiter = new limiter.RateLimiter(200, 'minute') | ||
private parser = new Parser() | ||
@@ -58,0 +58,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
157429