@rivascva/dt-idl 1.1.113 → 1.1.115
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 +6 -1
- package/package.json +1 -1
- package/ts/types/types.ts +5 -0
package/dist/index.d.ts
CHANGED
|
@@ -1721,11 +1721,16 @@ type GetSearchStocksQueryParams = operations$3['getSearchStocks']['parameters'][
|
|
|
1721
1721
|
type GetStockHistoryQueryParams = operations$3['getStockHistory']['parameters']['query'];
|
|
1722
1722
|
type Portfolio = TradeServiceSchemas['Portfolio'];
|
|
1723
1723
|
type PortfolioType = TradeServiceSchemas['PortfolioType'];
|
|
1724
|
+
type UpdatePortfolioPayload = TradeServiceSchemas['UpdatePortfolioPayload'];
|
|
1724
1725
|
type AddOrderPayload = TradeServiceSchemas['AddOrderPayload'];
|
|
1725
1726
|
type Order = TradeServiceSchemas['Order'];
|
|
1726
1727
|
type OrderType = TradeServiceSchemas['OrderType'];
|
|
1727
1728
|
type Holding = TradeServiceSchemas['Holding'];
|
|
1728
1729
|
type TradeServiceError = TradeServiceSchemas['Error'];
|
|
1730
|
+
type LoginPayload = UserServiceSchemas['LoginPayload'];
|
|
1731
|
+
type LoginByProviderPayload = UserServiceSchemas['LoginByProviderPayload'];
|
|
1732
|
+
type RefreshAccessTokenPayload = UserServiceSchemas['RefreshAccessTokenPayload'];
|
|
1733
|
+
type LogoutPayload = UserServiceSchemas['LogoutPayload'];
|
|
1729
1734
|
type User = UserServiceSchemas['User'];
|
|
1730
1735
|
type AddUserPayload = UserServiceSchemas['AddUserPayload'];
|
|
1731
1736
|
type UpdateUserPayload = UserServiceSchemas['UpdateUserPayload'];
|
|
@@ -1736,4 +1741,4 @@ type UploadImageResponse = AssetServiceSchemas['UploadImageResponse'];
|
|
|
1736
1741
|
type DeleteImagePayload = AssetServiceSchemas['DeleteImagePayload'];
|
|
1737
1742
|
type AssetServiceError = AssetServiceSchemas['Error'];
|
|
1738
1743
|
|
|
1739
|
-
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 };
|
|
1744
|
+
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 LoginByProviderPayload, type LoginPayload, type LogoutPayload, type MarketServiceError, type NewsArticle, type Order, type OrderType, type Portfolio, type PortfolioType, type RefreshAccessTokenPayload, 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
package/ts/types/types.ts
CHANGED
|
@@ -31,6 +31,7 @@ export type GetStockHistoryQueryParams = MarketServiceOperations['getStockHistor
|
|
|
31
31
|
// Trade Service Types
|
|
32
32
|
export type Portfolio = TradeServiceSchemas['Portfolio'];
|
|
33
33
|
export type PortfolioType = TradeServiceSchemas['PortfolioType'];
|
|
34
|
+
export type UpdatePortfolioPayload = TradeServiceSchemas['UpdatePortfolioPayload'];
|
|
34
35
|
export type AddOrderPayload = TradeServiceSchemas['AddOrderPayload'];
|
|
35
36
|
export type Order = TradeServiceSchemas['Order'];
|
|
36
37
|
export type OrderType = TradeServiceSchemas['OrderType'];
|
|
@@ -38,6 +39,10 @@ export type Holding = TradeServiceSchemas['Holding'];
|
|
|
38
39
|
export type TradeServiceError = TradeServiceSchemas['Error'];
|
|
39
40
|
|
|
40
41
|
// User Service Types
|
|
42
|
+
export type LoginPayload = UserServiceSchemas['LoginPayload'];
|
|
43
|
+
export type LoginByProviderPayload = UserServiceSchemas['LoginByProviderPayload'];
|
|
44
|
+
export type RefreshAccessTokenPayload = UserServiceSchemas['RefreshAccessTokenPayload'];
|
|
45
|
+
export type LogoutPayload = UserServiceSchemas['LogoutPayload'];
|
|
41
46
|
export type User = UserServiceSchemas['User'];
|
|
42
47
|
export type AddUserPayload = UserServiceSchemas['AddUserPayload'];
|
|
43
48
|
export type UpdateUserPayload = UserServiceSchemas['UpdateUserPayload'];
|