@rivascva/dt-idl 1.1.3 → 1.1.5
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 +6 -2
- package/package.json +1 -1
- package/ts/types/types.ts +5 -1
package/dist/index.d.ts
CHANGED
|
@@ -688,9 +688,13 @@ declare const createTradeServiceClient: (options: ClientOptions) => {
|
|
|
688
688
|
|
|
689
689
|
type SimpleQuote = components$1['schemas']['SimpleQuote'];
|
|
690
690
|
type FullQuote = components$1['schemas']['FullQuote'];
|
|
691
|
+
type NewsArticle = components$1['schemas']['NewsArticle'];
|
|
692
|
+
type StockNewsArticle = components$1['schemas']['StockNewsArticle'];
|
|
691
693
|
type MarketServiceError = components$1['schemas']['Error'];
|
|
692
694
|
type User = components['schemas']['User'];
|
|
695
|
+
type Portfolio = components['schemas']['Portfolio'];
|
|
696
|
+
type PortfolioType = components['schemas']['PortfolioType'];
|
|
693
697
|
type Order = components['schemas']['Order'];
|
|
694
|
-
type
|
|
698
|
+
type TradeServiceError = components['schemas']['Error'];
|
|
695
699
|
|
|
696
|
-
export { type FullQuote, type MarketServiceError, type Order, type SimpleQuote, type
|
|
700
|
+
export { type FullQuote, type MarketServiceError, type NewsArticle, type Order, type Portfolio, type PortfolioType, type SimpleQuote, type StockNewsArticle, type TradeServiceError, type User, createMarketServiceClient, createTradeServiceClient };
|
package/package.json
CHANGED
package/ts/types/types.ts
CHANGED
|
@@ -4,9 +4,13 @@ import { components as TradeServiceComponents } from '@ts/services/dt-trade-serv
|
|
|
4
4
|
// Market Service Types
|
|
5
5
|
export type SimpleQuote = MarketServiceComponents['schemas']['SimpleQuote'];
|
|
6
6
|
export type FullQuote = MarketServiceComponents['schemas']['FullQuote'];
|
|
7
|
+
export type NewsArticle = MarketServiceComponents['schemas']['NewsArticle'];
|
|
8
|
+
export type StockNewsArticle = MarketServiceComponents['schemas']['StockNewsArticle'];
|
|
7
9
|
export type MarketServiceError = MarketServiceComponents['schemas']['Error'];
|
|
8
10
|
|
|
9
11
|
// Trade Service Types
|
|
10
12
|
export type User = TradeServiceComponents['schemas']['User'];
|
|
13
|
+
export type Portfolio = TradeServiceComponents['schemas']['Portfolio'];
|
|
14
|
+
export type PortfolioType = TradeServiceComponents['schemas']['PortfolioType'];
|
|
11
15
|
export type Order = TradeServiceComponents['schemas']['Order'];
|
|
12
|
-
export type
|
|
16
|
+
export type TradeServiceError = TradeServiceComponents['schemas']['Error'];
|