@rivascva/dt-idl 1.1.6 → 1.1.7
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
|
@@ -694,8 +694,9 @@ type MarketServiceError = components$1['schemas']['Error'];
|
|
|
694
694
|
type User = components['schemas']['User'];
|
|
695
695
|
type Portfolio = components['schemas']['Portfolio'];
|
|
696
696
|
type PortfolioType = components['schemas']['PortfolioType'];
|
|
697
|
+
type OrderPayload = components['schemas']['OrderPayload'];
|
|
697
698
|
type Order = components['schemas']['Order'];
|
|
698
699
|
type OrderType = components['schemas']['OrderType'];
|
|
699
700
|
type TradeServiceError = components['schemas']['Error'];
|
|
700
701
|
|
|
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 };
|
|
702
|
+
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 };
|
package/package.json
CHANGED
package/ts/types/types.ts
CHANGED
|
@@ -12,6 +12,7 @@ export type MarketServiceError = MarketServiceComponents['schemas']['Error'];
|
|
|
12
12
|
export type User = TradeServiceComponents['schemas']['User'];
|
|
13
13
|
export type Portfolio = TradeServiceComponents['schemas']['Portfolio'];
|
|
14
14
|
export type PortfolioType = TradeServiceComponents['schemas']['PortfolioType'];
|
|
15
|
+
export type OrderPayload = TradeServiceComponents['schemas']['OrderPayload'];
|
|
15
16
|
export type Order = TradeServiceComponents['schemas']['Order'];
|
|
16
17
|
export type OrderType = TradeServiceComponents['schemas']['OrderType'];
|
|
17
18
|
export type TradeServiceError = TradeServiceComponents['schemas']['Error'];
|