@rivascva/dt-idl 1.1.145 → 1.1.146

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
@@ -1859,6 +1859,9 @@ type OrderType = TradeServiceSchemas['OrderType'];
1859
1859
  type Holding = TradeServiceSchemas['Holding'];
1860
1860
  type TradeServiceError = TradeServiceSchemas['Error'];
1861
1861
  type GetOrdersByPortfolioParams = operations$2['getOrdersByPortfolio']['parameters']['query'];
1862
+ type PortfolioHistoryValue = TradeServiceSchemas['PortfolioHistoryValue'];
1863
+ type PortfolioHistoryTimeframe = TradeServiceSchemas['PortfolioHistoryTimeframe'];
1864
+ type GetPortfolioHistoryParams = operations$2['getPortfolioHistory']['parameters']['query'];
1862
1865
  type LoginWithFirebasePayload = UserServiceSchemas['LoginWithFirebasePayload'];
1863
1866
  type SignupWithFirebasePayload = UserServiceSchemas['SignupWithFirebasePayload'];
1864
1867
  type RefreshAccessTokenPayload = UserServiceSchemas['RefreshAccessTokenPayload'];
@@ -1873,4 +1876,4 @@ type UploadImageResponse = AssetServiceSchemas['UploadImageResponse'];
1873
1876
  type DeleteImagePayload = AssetServiceSchemas['DeleteImagePayload'];
1874
1877
  type AssetServiceError = AssetServiceSchemas['Error'];
1875
1878
 
1876
- export { type AddOrderPayload, type AddUserPayload, type AssetServiceError, type DeleteImagePayload, type FullQuote, type GetIndexesQueryParams, type GetOrdersByPortfolioParams, type GetSearchStocksQueryParams, type GetStockHistoryQueryParams, type GetStocksByExchangeQueryParams, type GetStocksBySymbolsQueryParams, type Holding, type ImageType, type Index, type LoginWithFirebasePayload, type LogoutPayload, type MarketServiceError, type NewsArticle, type Order, type OrderType, type Portfolio, type PortfolioType, type RefreshAccessTokenPayload, type SignupWithFirebasePayload, 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 };
1879
+ export { type AddOrderPayload, type AddUserPayload, type AssetServiceError, type DeleteImagePayload, type FullQuote, type GetIndexesQueryParams, type GetOrdersByPortfolioParams, type GetPortfolioHistoryParams, type GetSearchStocksQueryParams, type GetStockHistoryQueryParams, type GetStocksByExchangeQueryParams, type GetStocksBySymbolsQueryParams, type Holding, type ImageType, type Index, type LoginWithFirebasePayload, type LogoutPayload, type MarketServiceError, type NewsArticle, type Order, type OrderType, type Portfolio, type PortfolioHistoryTimeframe, type PortfolioHistoryValue, type PortfolioType, type RefreshAccessTokenPayload, type SignupWithFirebasePayload, 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivascva/dt-idl",
3
- "version": "1.1.145",
3
+ "version": "1.1.146",
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
@@ -41,6 +41,9 @@ export type OrderType = TradeServiceSchemas['OrderType'];
41
41
  export type Holding = TradeServiceSchemas['Holding'];
42
42
  export type TradeServiceError = TradeServiceSchemas['Error'];
43
43
  export type GetOrdersByPortfolioParams = TradeServiceOperations['getOrdersByPortfolio']['parameters']['query'];
44
+ export type PortfolioHistoryValue = TradeServiceSchemas['PortfolioHistoryValue'];
45
+ export type PortfolioHistoryTimeframe = TradeServiceSchemas['PortfolioHistoryTimeframe'];
46
+ export type GetPortfolioHistoryParams = TradeServiceOperations['getPortfolioHistory']['parameters']['query'];
44
47
 
45
48
  // User Service Types
46
49
  export type LoginWithFirebasePayload = UserServiceSchemas['LoginWithFirebasePayload'];