@rivascva/dt-idl 1.1.51 → 1.1.52
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/package.json +1 -1
- package/ts/types/types.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -1434,7 +1434,8 @@ type UpdateUserPayload = UserServiceSchemas['UpdateUserPayload'];
|
|
|
1434
1434
|
type UserServiceError = UserServiceSchemas['Error'];
|
|
1435
1435
|
type ImageType = AssetServiceSchemas['ImageType'];
|
|
1436
1436
|
type UploadImagePayload = AssetServiceSchemas['UploadImagePayload'];
|
|
1437
|
+
type UploadImageResponse = AssetServiceSchemas['UploadImageResponse'];
|
|
1437
1438
|
type DeleteImagePayload = AssetServiceSchemas['DeleteImagePayload'];
|
|
1438
1439
|
type AssetServiceError = AssetServiceSchemas['Error'];
|
|
1439
1440
|
|
|
1440
|
-
export { type AddOrderPayload, type AddUserPayload, type AssetServiceError, type DeleteImagePayload, type FullQuote, type Holding, type ImageType, type MarketServiceError, type NewsArticle, type Order, type OrderType, type Portfolio, type PortfolioType, type SimpleQuote, type StockHistoryEntry, type StockHistoryTimeframe, type StockNewsArticle, type TradeServiceError, type UpdateUserPayload, type UploadImagePayload, type User, type UserServiceError, createAssetServiceClient, createMarketServiceClient, createTradeServiceClient, createUserServiceClient, isAssetServiceError, isMarketServiceError, isTradeServiceError, isUserServiceError };
|
|
1441
|
+
export { type AddOrderPayload, type AddUserPayload, type AssetServiceError, type DeleteImagePayload, type FullQuote, type Holding, type ImageType, type MarketServiceError, type NewsArticle, type Order, type OrderType, type Portfolio, type PortfolioType, type SimpleQuote, 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
package/ts/types/types.ts
CHANGED
|
@@ -35,5 +35,6 @@ export type UserServiceError = UserServiceSchemas['Error'];
|
|
|
35
35
|
// Asset Service Types
|
|
36
36
|
export type ImageType = AssetServiceSchemas['ImageType'];
|
|
37
37
|
export type UploadImagePayload = AssetServiceSchemas['UploadImagePayload'];
|
|
38
|
+
export type UploadImageResponse = AssetServiceSchemas['UploadImageResponse'];
|
|
38
39
|
export type DeleteImagePayload = AssetServiceSchemas['DeleteImagePayload'];
|
|
39
40
|
export type AssetServiceError = AssetServiceSchemas['Error'];
|