@rivascva/dt-idl 1.1.5 → 1.1.6
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
CHANGED
|
@@ -695,6 +695,7 @@ type User = components['schemas']['User'];
|
|
|
695
695
|
type Portfolio = components['schemas']['Portfolio'];
|
|
696
696
|
type PortfolioType = components['schemas']['PortfolioType'];
|
|
697
697
|
type Order = components['schemas']['Order'];
|
|
698
|
+
type OrderType = components['schemas']['OrderType'];
|
|
698
699
|
type TradeServiceError = components['schemas']['Error'];
|
|
699
700
|
|
|
700
|
-
export { type FullQuote, type MarketServiceError, type NewsArticle, type Order, type Portfolio, type PortfolioType, type SimpleQuote, type StockNewsArticle, type TradeServiceError, type User, createMarketServiceClient, createTradeServiceClient };
|
|
701
|
+
export { type FullQuote, type MarketServiceError, type NewsArticle, type Order, type OrderType, type Portfolio, type PortfolioType, type SimpleQuote, type StockNewsArticle, type TradeServiceError, type User, createMarketServiceClient, createTradeServiceClient };
|
package/package.json
CHANGED
package/ts/types/types.ts
CHANGED
|
@@ -13,4 +13,5 @@ export type User = TradeServiceComponents['schemas']['User'];
|
|
|
13
13
|
export type Portfolio = TradeServiceComponents['schemas']['Portfolio'];
|
|
14
14
|
export type PortfolioType = TradeServiceComponents['schemas']['PortfolioType'];
|
|
15
15
|
export type Order = TradeServiceComponents['schemas']['Order'];
|
|
16
|
+
export type OrderType = TradeServiceComponents['schemas']['OrderType'];
|
|
16
17
|
export type TradeServiceError = TradeServiceComponents['schemas']['Error'];
|