@rivascva/dt-idl 1.1.59 → 1.1.60
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
|
@@ -1489,6 +1489,7 @@ type StockHistoryTimeframe = MarketServiceSchemas['StockHistoryTimeframe'];
|
|
|
1489
1489
|
type StockHistoryEntry = MarketServiceSchemas['StockHistoryEntry'];
|
|
1490
1490
|
type SortOrder = MarketServiceSchemas['SortOrder'];
|
|
1491
1491
|
type SortField = MarketServiceSchemas['SortField'];
|
|
1492
|
+
type GetIndexesQueryParams = operations$3['getIndexes']['parameters']['query'];
|
|
1492
1493
|
type GetStocksByExchangeQueryParams = operations$3['getStocksByExchange']['parameters']['query'];
|
|
1493
1494
|
type GetStocksBySymbolsQueryParams = operations$3['getStocksBySymbols']['parameters']['query'];
|
|
1494
1495
|
type GetSearchStocksQueryParams = operations$3['getSearchStocks']['parameters']['query'];
|
|
@@ -1510,4 +1511,4 @@ type UploadImageResponse = AssetServiceSchemas['UploadImageResponse'];
|
|
|
1510
1511
|
type DeleteImagePayload = AssetServiceSchemas['DeleteImagePayload'];
|
|
1511
1512
|
type AssetServiceError = AssetServiceSchemas['Error'];
|
|
1512
1513
|
|
|
1513
|
-
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 };
|
|
1514
|
+
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 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
|
@@ -21,6 +21,7 @@ export type StockHistoryTimeframe = MarketServiceSchemas['StockHistoryTimeframe'
|
|
|
21
21
|
export type StockHistoryEntry = MarketServiceSchemas['StockHistoryEntry'];
|
|
22
22
|
export type SortOrder = MarketServiceSchemas['SortOrder'];
|
|
23
23
|
export type SortField = MarketServiceSchemas['SortField'];
|
|
24
|
+
export type GetIndexesQueryParams = MarketServiceOperations['getIndexes']['parameters']['query'];
|
|
24
25
|
export type GetStocksByExchangeQueryParams = MarketServiceOperations['getStocksByExchange']['parameters']['query'];
|
|
25
26
|
export type GetStocksBySymbolsQueryParams = MarketServiceOperations['getStocksBySymbols']['parameters']['query'];
|
|
26
27
|
export type GetSearchStocksQueryParams = MarketServiceOperations['getSearchStocks']['parameters']['query'];
|