sec-data-fetcher
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -1,2 +0,8 @@ | ||
interface Filing { | ||
export interface CompanyTicker { | ||
cik: number; | ||
name: string; | ||
ticker: string; | ||
exchange: string; | ||
} | ||
export interface Filing { | ||
form: string; | ||
@@ -12,6 +18,6 @@ cik: string; | ||
} | ||
interface FilingObject { | ||
export interface FilingObject { | ||
[key: string]: any; | ||
} | ||
interface SECClientOptions { | ||
export interface SECClientOptions { | ||
userAgent: string; | ||
@@ -67,2 +73,1 @@ maxRequestsPerSecond?: number; | ||
} | ||
export {}; |
{ | ||
"name": "sec-data-fetcher", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "An npm library to fetch SEC data from all supported endpoints with rate limiting.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -8,5 +8,3 @@ // src/secAPI.ts | ||
// Interfaces | ||
interface CompanyTicker { | ||
export interface CompanyTicker { | ||
cik: number; | ||
@@ -18,3 +16,3 @@ name: string; | ||
interface Filing { | ||
export interface Filing { | ||
form: string; | ||
@@ -31,7 +29,7 @@ cik: string; | ||
interface FilingObject { | ||
export interface FilingObject { | ||
[key: string]: any; | ||
} | ||
interface SECClientOptions { | ||
export interface SECClientOptions { | ||
userAgent: string; | ||
@@ -38,0 +36,0 @@ maxRequestsPerSecond?: number; |
Sorry, the diff of this file is not supported yet
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
35310
651