@rivascva/dt-idl 1.1.27 → 1.1.28
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/dist/index.d.ts +3 -1
- package/package.json +1 -1
- package/ts/types/types.ts +2 -0
package/dist/index.d.ts
CHANGED
|
@@ -1079,6 +1079,8 @@ type FullQuote = MarketServiceSchemas['FullQuote'];
|
|
|
1079
1079
|
type NewsArticle = MarketServiceSchemas['NewsArticle'];
|
|
1080
1080
|
type StockNewsArticle = MarketServiceSchemas['StockNewsArticle'];
|
|
1081
1081
|
type MarketServiceError = MarketServiceSchemas['Error'];
|
|
1082
|
+
type HistoryTimeframe = MarketServiceSchemas['HistoryTimeframe'];
|
|
1083
|
+
type HistoryChartEntry = MarketServiceSchemas['HistoryChartEntry'];
|
|
1082
1084
|
type User = TradeServiceSchemas['User'];
|
|
1083
1085
|
type Portfolio = TradeServiceSchemas['Portfolio'];
|
|
1084
1086
|
type PortfolioType = TradeServiceSchemas['PortfolioType'];
|
|
@@ -1089,4 +1091,4 @@ type OrderType = TradeServiceSchemas['OrderType'];
|
|
|
1089
1091
|
type Holding = TradeServiceSchemas['Holding'];
|
|
1090
1092
|
type TradeServiceError = TradeServiceSchemas['Error'];
|
|
1091
1093
|
|
|
1092
|
-
export { type AddOrderPayload, type DeleteOrderPayload, type FullQuote, type Holding, type MarketServiceError, type NewsArticle, type Order, type OrderType, type Portfolio, type PortfolioType, type SimpleQuote, type StockNewsArticle, type TradeServiceError, type User, createMarketServiceClient, createTradeServiceClient, isMarketServiceError, isTradeServiceError };
|
|
1094
|
+
export { type AddOrderPayload, type DeleteOrderPayload, type FullQuote, type HistoryChartEntry, type HistoryTimeframe, type Holding, type MarketServiceError, type NewsArticle, type Order, type OrderType, type Portfolio, type PortfolioType, type SimpleQuote, type StockNewsArticle, type TradeServiceError, type User, createMarketServiceClient, createTradeServiceClient, isMarketServiceError, isTradeServiceError };
|
package/package.json
CHANGED
package/ts/types/types.ts
CHANGED
|
@@ -10,6 +10,8 @@ export type FullQuote = MarketServiceSchemas['FullQuote'];
|
|
|
10
10
|
export type NewsArticle = MarketServiceSchemas['NewsArticle'];
|
|
11
11
|
export type StockNewsArticle = MarketServiceSchemas['StockNewsArticle'];
|
|
12
12
|
export type MarketServiceError = MarketServiceSchemas['Error'];
|
|
13
|
+
export type HistoryTimeframe = MarketServiceSchemas['HistoryTimeframe'];
|
|
14
|
+
export type HistoryChartEntry = MarketServiceSchemas['HistoryChartEntry'];
|
|
13
15
|
|
|
14
16
|
// Trade Service Types
|
|
15
17
|
export type User = TradeServiceSchemas['User'];
|