@rivascva/dt-idl 1.1.54 → 1.1.55
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
|
@@ -1440,6 +1440,7 @@ type SortField = MarketServiceSchemas['SortField'];
|
|
|
1440
1440
|
type GetStocksByExchangeQueryParams = operations$3['getStocksByExchange']['parameters']['query'];
|
|
1441
1441
|
type GetStocksBySymbolsQueryParams = operations$3['getStocksBySymbols']['parameters']['query'];
|
|
1442
1442
|
type GetSearchStocksQueryParams = operations$3['getSearchStocks']['parameters']['query'];
|
|
1443
|
+
type GetStockHistoryQueryParams = operations$3['getStockHistory']['parameters']['query'];
|
|
1443
1444
|
type Portfolio = TradeServiceSchemas['Portfolio'];
|
|
1444
1445
|
type PortfolioType = TradeServiceSchemas['PortfolioType'];
|
|
1445
1446
|
type AddOrderPayload = TradeServiceSchemas['AddOrderPayload'];
|
|
@@ -1457,4 +1458,4 @@ type UploadImageResponse = AssetServiceSchemas['UploadImageResponse'];
|
|
|
1457
1458
|
type DeleteImagePayload = AssetServiceSchemas['DeleteImagePayload'];
|
|
1458
1459
|
type AssetServiceError = AssetServiceSchemas['Error'];
|
|
1459
1460
|
|
|
1460
|
-
export { type AddOrderPayload, type AddUserPayload, type AssetServiceError, type DeleteImagePayload, type FullQuote, type GetSearchStocksQueryParams, type GetStocksByExchangeQueryParams, type GetStocksBySymbolsQueryParams, type Holding, type ImageType, 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 };
|
|
1461
|
+
export { type AddOrderPayload, type AddUserPayload, type AssetServiceError, type DeleteImagePayload, type FullQuote, type GetSearchStocksQueryParams, type GetStockHistoryQueryParams, type GetStocksByExchangeQueryParams, type GetStocksBySymbolsQueryParams, type Holding, type ImageType, 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 };
|
package/package.json
CHANGED
package/ts/types/types.ts
CHANGED
|
@@ -24,6 +24,7 @@ export type SortField = MarketServiceSchemas['SortField'];
|
|
|
24
24
|
export type GetStocksByExchangeQueryParams = MarketServiceOperations['getStocksByExchange']['parameters']['query'];
|
|
25
25
|
export type GetStocksBySymbolsQueryParams = MarketServiceOperations['getStocksBySymbols']['parameters']['query'];
|
|
26
26
|
export type GetSearchStocksQueryParams = MarketServiceOperations['getSearchStocks']['parameters']['query'];
|
|
27
|
+
export type GetStockHistoryQueryParams = MarketServiceOperations['getStockHistory']['parameters']['query'];
|
|
27
28
|
|
|
28
29
|
// Trade Service Types
|
|
29
30
|
export type Portfolio = TradeServiceSchemas['Portfolio'];
|