@rivascva/dt-idl 1.1.144 → 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
@@ -961,7 +961,7 @@ interface components$2 {
961
961
  /** @enum {string} */
962
962
  OrderType: "BUY_MARKET" | "BUY_LIMIT" | "BUY_STOP" | "SELL_MARKET" | "SELL_LIMIT" | "SELL_STOP";
963
963
  /** @enum {string} */
964
- PortfolioHistoryTimeframe: "MIN5" | "MIN15" | "MIN30" | "HOUR1" | "HOUR4" | "DAY1";
964
+ PortfolioHistoryTimeframe: "MIN15" | "MIN30" | "HOUR1" | "HOUR4" | "DAY1";
965
965
  /** @enum {string} */
966
966
  OrderStatus: "PENDING" | "COMPLETED";
967
967
  };
@@ -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.144",
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",
@@ -478,7 +478,6 @@ components:
478
478
  PortfolioHistoryTimeframe:
479
479
  type: string
480
480
  enum:
481
- - MIN5
482
481
  - MIN15
483
482
  - MIN30
484
483
  - HOUR1
@@ -281,7 +281,7 @@ export interface components {
281
281
  /** @enum {string} */
282
282
  OrderType: "BUY_MARKET" | "BUY_LIMIT" | "BUY_STOP" | "SELL_MARKET" | "SELL_LIMIT" | "SELL_STOP";
283
283
  /** @enum {string} */
284
- PortfolioHistoryTimeframe: "MIN5" | "MIN15" | "MIN30" | "HOUR1" | "HOUR4" | "DAY1";
284
+ PortfolioHistoryTimeframe: "MIN15" | "MIN30" | "HOUR1" | "HOUR4" | "DAY1";
285
285
  /** @enum {string} */
286
286
  OrderStatus: "PENDING" | "COMPLETED";
287
287
  };
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'];