@databolsa/sdk 1.0.3 → 1.0.4
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.
- package/README.md +1 -1
- package/dist/client.d.ts +84 -1
- package/dist/http-client.d.ts +61 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +107 -0
- package/dist/schema.d.ts +1051 -11
- package/dist/types.d.ts +24 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -47,6 +47,18 @@ export type BdrQuote = Schemas["BdrQuote"];
|
|
|
47
47
|
export type IngestSourceStatus = Schemas["IngestSourceHealth"]["status"];
|
|
48
48
|
export type IngestSourceHealth = Schemas["IngestSourceHealth"];
|
|
49
49
|
export type IngestRunSummary = Schemas["IngestRunSummary"];
|
|
50
|
+
export type EtfProfile = Schemas["EtfProfile"];
|
|
51
|
+
export type FundProfile = Schemas["FundProfile"];
|
|
52
|
+
export type FundQuote = Schemas["FundQuote"];
|
|
53
|
+
export type FundHolding = Schemas["FundHolding"];
|
|
54
|
+
export type FundOwnershipSummary = Schemas["FundOwnershipSummary"];
|
|
55
|
+
export type FundScreenerItem = Schemas["FundScreenerItem"];
|
|
56
|
+
export type TradeStat = Schemas["TradeStat"];
|
|
57
|
+
export type InvestorFlow = Schemas["InvestorFlow"];
|
|
58
|
+
export type InvestorFlowMonthly = Schemas["InvestorFlowMonthly"];
|
|
59
|
+
export type PublicOffering = Schemas["PublicOffering"];
|
|
60
|
+
export type LiveQuote = Schemas["LiveQuote"];
|
|
61
|
+
export type IntradayPoint = Schemas["IntradayPoint"];
|
|
50
62
|
export type HealthResponse = Ok<"getHealth">;
|
|
51
63
|
export type IngestHealthResponse = Ok<"getIngestHealth">;
|
|
52
64
|
export type ScreenStocksResponse = Ok<"screenStocks">;
|
|
@@ -75,6 +87,18 @@ export type OptionExpiriesResponse = Ok<"listOptionExpiries">;
|
|
|
75
87
|
export type OptionsQuotesResponse = Ok<"listOptionQuotes">;
|
|
76
88
|
export type BdrListResponse = Ok<"listBdrs">;
|
|
77
89
|
export type BdrQuotesResponse = Ok<"listBdrQuotes">;
|
|
90
|
+
export type EtfListResponse = Ok<"listEtfs">;
|
|
91
|
+
export type FundListResponse = Ok<"listFunds">;
|
|
92
|
+
export type FundQuotesResponse = Ok<"listFundQuotes">;
|
|
93
|
+
export type FundHoldingsResponse = Ok<"listFundHoldings">;
|
|
94
|
+
export type FundHoldersResponse = Ok<"listFundHolders">;
|
|
95
|
+
export type FundScreenerResponse = Ok<"screenFunds">;
|
|
96
|
+
export type TradeStatsResponse = Ok<"listTradeStats">;
|
|
97
|
+
export type InvestorFlowResponse = Ok<"listInvestorFlow">;
|
|
98
|
+
export type InvestorFlowMonthlyResponse = Ok<"listInvestorFlowMonthly">;
|
|
99
|
+
export type OfferingsResponse = Ok<"listOfferings">;
|
|
100
|
+
export type LiveQuotesResponse = Ok<"getLiveQuotes">;
|
|
101
|
+
export type IntradaySeriesResponse = Ok<"getStockIntraday">;
|
|
78
102
|
/**
|
|
79
103
|
* Agrupamento client-side de `from`/`to` (datas ISO) — não é um schema do
|
|
80
104
|
* contrato; os endpoints os recebem como query params soltos. Único tipo
|
package/package.json
CHANGED