@rivascva/dt-idl 1.1.173 → 1.1.175
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/go/models/constants.go +3 -3
- package/package.json +1 -1
- package/ts/types/types.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -2008,6 +2008,7 @@ type GetStocksBySymbolsQueryParams = operations$3['getStocksBySymbols']['paramet
|
|
|
2008
2008
|
type GetSearchStocksQueryParams = operations$3['getSearchStocks']['parameters']['query'];
|
|
2009
2009
|
type GetStockHistoryQueryParams = operations$3['getStockHistory']['parameters']['query'];
|
|
2010
2010
|
type MarketMetadata = MarketServiceSchemas['MarketMetadata'];
|
|
2011
|
+
type MarketHours = MarketServiceSchemas['MarketHours'];
|
|
2011
2012
|
type Portfolio = TradeServiceSchemas['Portfolio'];
|
|
2012
2013
|
type PortfolioType = TradeServiceSchemas['PortfolioType'];
|
|
2013
2014
|
type UpdatePortfolioPayload = TradeServiceSchemas['UpdatePortfolioPayload'];
|
|
@@ -2036,4 +2037,4 @@ type UploadImageResponse = AssetServiceSchemas['UploadImageResponse'];
|
|
|
2036
2037
|
type DeleteImagePayload = AssetServiceSchemas['DeleteImagePayload'];
|
|
2037
2038
|
type AssetServiceError = AssetServiceSchemas['Error'];
|
|
2038
2039
|
|
|
2039
|
-
export { type AddOrderPayload, type AddUserPayload, type AssetServiceError, type DeleteImagePayload, type FullQuote, type GetIndexesQueryParams, type GetOrdersByPortfolioParams, type GetPortfolioHistoryParams, type GetSearchStocksQueryParams, type GetStockHistoryQueryParams, type GetStocksBySymbolsQueryParams, type Holding, type ImageType, type Index, type LoginWithFirebasePayload, type LogoutPayload, type MarketMetadata, type MarketServiceError, type NewsArticle, type Order, type OrderType, type Portfolio, type PortfolioHistoryTimeframe, type PortfolioHistoryValue, type PortfolioType, type RefreshAccessTokenPayload, type SendPushNotificationPayload, type SignupWithFirebasePayload, type SimpleQuote, type SortField, type SortOrder, type StockHistoryEntry, type StockHistoryTimeframe, type StockNewsArticle, type TradeServiceError, type UpdatePortfolioPayload, type UpdateUserDevicePayload, type UpdateUserPayload, type UploadImagePayload, type UploadImageResponse, type User, type UserServiceError, createAssetServiceClient, createMarketServiceClient, createTradeServiceClient, createUserServiceClient, isAssetServiceError, isMarketServiceError, isTradeServiceError, isUserServiceError };
|
|
2040
|
+
export { type AddOrderPayload, type AddUserPayload, type AssetServiceError, type DeleteImagePayload, type FullQuote, type GetIndexesQueryParams, type GetOrdersByPortfolioParams, type GetPortfolioHistoryParams, type GetSearchStocksQueryParams, type GetStockHistoryQueryParams, type GetStocksBySymbolsQueryParams, type Holding, type ImageType, type Index, type LoginWithFirebasePayload, type LogoutPayload, type MarketHours, type MarketMetadata, type MarketServiceError, type NewsArticle, type Order, type OrderType, type Portfolio, type PortfolioHistoryTimeframe, type PortfolioHistoryValue, type PortfolioType, type RefreshAccessTokenPayload, type SendPushNotificationPayload, type SignupWithFirebasePayload, type SimpleQuote, type SortField, type SortOrder, type StockHistoryEntry, type StockHistoryTimeframe, type StockNewsArticle, type TradeServiceError, type UpdatePortfolioPayload, type UpdateUserDevicePayload, type UpdateUserPayload, type UploadImagePayload, type UploadImageResponse, type User, type UserServiceError, createAssetServiceClient, createMarketServiceClient, createTradeServiceClient, createUserServiceClient, isAssetServiceError, isMarketServiceError, isTradeServiceError, isUserServiceError };
|
package/go/models/constants.go
CHANGED
|
@@ -28,10 +28,10 @@ const (
|
|
|
28
28
|
const (
|
|
29
29
|
// MarketTimezone is the timezone of the market operating hours.
|
|
30
30
|
MarketTimezone = "America/New_York"
|
|
31
|
-
// MarketOpenTime is the opening time of the market in a 24-hour format.
|
|
31
|
+
// MarketOpenTime is the opening time of the market in a 24-hour format (HH:mm).
|
|
32
32
|
// Based on the timezone specified in MarketTimezone.
|
|
33
|
-
MarketOpenTime = "
|
|
34
|
-
// MarketCloseTime is the closing time of the market in a 24-hour format.
|
|
33
|
+
MarketOpenTime = "09:30"
|
|
34
|
+
// MarketCloseTime is the closing time of the market in a 24-hour format (HH:mm).
|
|
35
35
|
// Based on the timezone specified in MarketTimezone.
|
|
36
36
|
MarketCloseTime = "16:00"
|
|
37
37
|
)
|
package/package.json
CHANGED
package/ts/types/types.ts
CHANGED
|
@@ -30,6 +30,7 @@ export type GetStocksBySymbolsQueryParams = MarketServiceOperations['getStocksBy
|
|
|
30
30
|
export type GetSearchStocksQueryParams = MarketServiceOperations['getSearchStocks']['parameters']['query'];
|
|
31
31
|
export type GetStockHistoryQueryParams = MarketServiceOperations['getStockHistory']['parameters']['query'];
|
|
32
32
|
export type MarketMetadata = MarketServiceSchemas['MarketMetadata'];
|
|
33
|
+
export type MarketHours = MarketServiceSchemas['MarketHours'];
|
|
33
34
|
|
|
34
35
|
// Trade Service Types
|
|
35
36
|
export type Portfolio = TradeServiceSchemas['Portfolio'];
|