@rivascva/dt-idl 1.1.14 → 1.1.15
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 +2 -1
- package/package.json +1 -1
- package/ts/types/types.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -1039,6 +1039,7 @@ type PortfolioType = TradeServiceSchemas['PortfolioType'];
|
|
|
1039
1039
|
type OrderPayload = TradeServiceSchemas['OrderPayload'];
|
|
1040
1040
|
type Order = TradeServiceSchemas['Order'];
|
|
1041
1041
|
type OrderType = TradeServiceSchemas['OrderType'];
|
|
1042
|
+
type Holding = TradeServiceSchemas['Holding'];
|
|
1042
1043
|
type TradeServiceError = TradeServiceSchemas['Error'];
|
|
1043
1044
|
|
|
1044
|
-
export { type FullQuote, type MarketServiceError, type NewsArticle, type Order, type OrderPayload, type OrderType, type Portfolio, type PortfolioType, type SimpleQuote, type StockNewsArticle, type TradeServiceError, type User, createMarketServiceClient, createTradeServiceClient, isMarketServiceError, isTradeServiceError };
|
|
1045
|
+
export { type FullQuote, type Holding, type MarketServiceError, type NewsArticle, type Order, type OrderPayload, 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
|
@@ -18,4 +18,5 @@ export type PortfolioType = TradeServiceSchemas['PortfolioType'];
|
|
|
18
18
|
export type OrderPayload = TradeServiceSchemas['OrderPayload'];
|
|
19
19
|
export type Order = TradeServiceSchemas['Order'];
|
|
20
20
|
export type OrderType = TradeServiceSchemas['OrderType'];
|
|
21
|
+
export type Holding = TradeServiceSchemas['Holding'];
|
|
21
22
|
export type TradeServiceError = TradeServiceSchemas['Error'];
|