investors-exchange.api
Advanced tools
Comparing version 0.1.3 to 0.1.4
@@ -9,3 +9,3 @@ import stock from './stock'; | ||
next_day_ex_date: (date?: string | undefined) => Promise<import("./lib/types").ExDate[]>; | ||
symbols: (format?: string) => Promise<import("./lib/types").Symbol[]>; | ||
symbols: (format?: "json" | "csv" | undefined) => Promise<import("./lib/types").Symbol[]>; | ||
symbol_directory: (date?: string | undefined) => Promise<import("./lib/types").IEXListedSecurity[]>; | ||
@@ -12,0 +12,0 @@ }; |
import { CorporateAction, ExDate, IEXDividend, IEXListedSecurity, Symbol } from '../lib/types'; | ||
declare type Format = 'json' | 'csv' | undefined; | ||
declare const reference: { | ||
@@ -6,5 +7,5 @@ corporate_actions: (date?: string | undefined) => Promise<CorporateAction[]>; | ||
next_day_ex_date: (date?: string | undefined) => Promise<ExDate[]>; | ||
symbols: (format?: string) => Promise<Symbol[]>; | ||
symbols: (format?: Format) => Promise<Symbol[]>; | ||
symbol_directory: (date?: string | undefined) => Promise<IEXListedSecurity[]>; | ||
}; | ||
export default reference; |
{ | ||
"name": "investors-exchange.api", | ||
"version": "0.1.3", | ||
"version": "0.1.4", | ||
"description": "Unofficial Browser / NodeJS API for https://iextrading.com", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
38712
202