@rivascva/dt-idl 1.1.13 → 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
CHANGED
|
@@ -555,7 +555,6 @@ interface operations$1 {
|
|
|
555
555
|
"application/json": components$1["schemas"]["SimpleQuote"][];
|
|
556
556
|
};
|
|
557
557
|
};
|
|
558
|
-
404: components$1["responses"]["NotFound"];
|
|
559
558
|
500: components$1["responses"]["InternalServerError"];
|
|
560
559
|
};
|
|
561
560
|
};
|
|
@@ -1040,6 +1039,7 @@ type PortfolioType = TradeServiceSchemas['PortfolioType'];
|
|
|
1040
1039
|
type OrderPayload = TradeServiceSchemas['OrderPayload'];
|
|
1041
1040
|
type Order = TradeServiceSchemas['Order'];
|
|
1042
1041
|
type OrderType = TradeServiceSchemas['OrderType'];
|
|
1042
|
+
type Holding = TradeServiceSchemas['Holding'];
|
|
1043
1043
|
type TradeServiceError = TradeServiceSchemas['Error'];
|
|
1044
1044
|
|
|
1045
|
-
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'];
|