@rivascva/dt-idl 1.1.113 → 1.1.114
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
|
@@ -1721,6 +1721,7 @@ type GetSearchStocksQueryParams = operations$3['getSearchStocks']['parameters'][
|
|
|
1721
1721
|
type GetStockHistoryQueryParams = operations$3['getStockHistory']['parameters']['query'];
|
|
1722
1722
|
type Portfolio = TradeServiceSchemas['Portfolio'];
|
|
1723
1723
|
type PortfolioType = TradeServiceSchemas['PortfolioType'];
|
|
1724
|
+
type UpdatePortfolioPayload = TradeServiceSchemas['UpdatePortfolioPayload'];
|
|
1724
1725
|
type AddOrderPayload = TradeServiceSchemas['AddOrderPayload'];
|
|
1725
1726
|
type Order = TradeServiceSchemas['Order'];
|
|
1726
1727
|
type OrderType = TradeServiceSchemas['OrderType'];
|
|
@@ -1736,4 +1737,4 @@ type UploadImageResponse = AssetServiceSchemas['UploadImageResponse'];
|
|
|
1736
1737
|
type DeleteImagePayload = AssetServiceSchemas['DeleteImagePayload'];
|
|
1737
1738
|
type AssetServiceError = AssetServiceSchemas['Error'];
|
|
1738
1739
|
|
|
1739
|
-
export { type AddOrderPayload, type AddUserPayload, type AssetServiceError, type DeleteImagePayload, type FullQuote, type GetIndexesQueryParams, type GetSearchStocksQueryParams, type GetStockHistoryQueryParams, type GetStocksByExchangeQueryParams, type GetStocksBySymbolsQueryParams, type Holding, type ImageType, type Index, type MarketServiceError, type NewsArticle, type Order, type OrderType, type Portfolio, type PortfolioType, type SimpleQuote, type SortField, type SortOrder, type StockHistoryEntry, type StockHistoryTimeframe, type StockNewsArticle, type TradeServiceError, type UpdateUserPayload, type UploadImagePayload, type UploadImageResponse, type User, type UserServiceError, createAssetServiceClient, createMarketServiceClient, createTradeServiceClient, createUserServiceClient, isAssetServiceError, isMarketServiceError, isTradeServiceError, isUserServiceError };
|
|
1740
|
+
export { type AddOrderPayload, type AddUserPayload, type AssetServiceError, type DeleteImagePayload, type FullQuote, type GetIndexesQueryParams, type GetSearchStocksQueryParams, type GetStockHistoryQueryParams, type GetStocksByExchangeQueryParams, type GetStocksBySymbolsQueryParams, type Holding, type ImageType, type Index, type MarketServiceError, type NewsArticle, type Order, type OrderType, type Portfolio, type PortfolioType, type SimpleQuote, type SortField, type SortOrder, type StockHistoryEntry, type StockHistoryTimeframe, type StockNewsArticle, type TradeServiceError, type UpdatePortfolioPayload, type UpdateUserPayload, type UploadImagePayload, type UploadImageResponse, type User, type UserServiceError, createAssetServiceClient, createMarketServiceClient, createTradeServiceClient, createUserServiceClient, isAssetServiceError, isMarketServiceError, isTradeServiceError, isUserServiceError };
|
package/package.json
CHANGED
package/ts/types/types.ts
CHANGED
|
@@ -31,6 +31,7 @@ export type GetStockHistoryQueryParams = MarketServiceOperations['getStockHistor
|
|
|
31
31
|
// Trade Service Types
|
|
32
32
|
export type Portfolio = TradeServiceSchemas['Portfolio'];
|
|
33
33
|
export type PortfolioType = TradeServiceSchemas['PortfolioType'];
|
|
34
|
+
export type UpdatePortfolioPayload = TradeServiceSchemas['UpdatePortfolioPayload'];
|
|
34
35
|
export type AddOrderPayload = TradeServiceSchemas['AddOrderPayload'];
|
|
35
36
|
export type Order = TradeServiceSchemas['Order'];
|
|
36
37
|
export type OrderType = TradeServiceSchemas['OrderType'];
|