@rivascva/dt-idl 1.1.59 → 1.1.61

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
@@ -1489,6 +1489,8 @@ type StockHistoryTimeframe = MarketServiceSchemas['StockHistoryTimeframe'];
1489
1489
  type StockHistoryEntry = MarketServiceSchemas['StockHistoryEntry'];
1490
1490
  type SortOrder = MarketServiceSchemas['SortOrder'];
1491
1491
  type SortField = MarketServiceSchemas['SortField'];
1492
+ type Index = MarketServiceSchemas['Index'];
1493
+ type GetIndexesQueryParams = operations$3['getIndexes']['parameters']['query'];
1492
1494
  type GetStocksByExchangeQueryParams = operations$3['getStocksByExchange']['parameters']['query'];
1493
1495
  type GetStocksBySymbolsQueryParams = operations$3['getStocksBySymbols']['parameters']['query'];
1494
1496
  type GetSearchStocksQueryParams = operations$3['getSearchStocks']['parameters']['query'];
@@ -1510,4 +1512,4 @@ type UploadImageResponse = AssetServiceSchemas['UploadImageResponse'];
1510
1512
  type DeleteImagePayload = AssetServiceSchemas['DeleteImagePayload'];
1511
1513
  type AssetServiceError = AssetServiceSchemas['Error'];
1512
1514
 
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 };
1515
+ 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivascva/dt-idl",
3
- "version": "1.1.59",
3
+ "version": "1.1.61",
4
4
  "description": "Dream Trade - Interface Definition Language",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
package/ts/types/types.ts CHANGED
@@ -21,6 +21,8 @@ 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 Index = MarketServiceSchemas['Index'];
25
+ export type GetIndexesQueryParams = MarketServiceOperations['getIndexes']['parameters']['query'];
24
26
  export type GetStocksByExchangeQueryParams = MarketServiceOperations['getStocksByExchange']['parameters']['query'];
25
27
  export type GetStocksBySymbolsQueryParams = MarketServiceOperations['getStocksBySymbols']['parameters']['query'];
26
28
  export type GetSearchStocksQueryParams = MarketServiceOperations['getSearchStocks']['parameters']['query'];