@rivascva/dt-idl 1.1.42 → 1.1.43
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 +4 -2
- package/package.json +1 -1
- package/ts/types/types.ts +3 -1
package/dist/index.d.ts
CHANGED
|
@@ -1432,7 +1432,9 @@ type User = UserServiceSchemas['User'];
|
|
|
1432
1432
|
type AddUserPayload = UserServiceSchemas['AddUserPayload'];
|
|
1433
1433
|
type UpdateUserPayload = UserServiceSchemas['UpdateUserPayload'];
|
|
1434
1434
|
type UserServiceError = UserServiceSchemas['Error'];
|
|
1435
|
-
type AssetServiceError = AssetServiceSchemas['Error'];
|
|
1436
1435
|
type ImageType = AssetServiceSchemas['ImageType'];
|
|
1436
|
+
type UploadImagePayload = AssetServiceSchemas['UploadImagePayload'];
|
|
1437
|
+
type DeleteImagePayload = AssetServiceSchemas['DeleteImagePayload'];
|
|
1438
|
+
type AssetServiceError = AssetServiceSchemas['Error'];
|
|
1437
1439
|
|
|
1438
|
-
export { type AddOrderPayload, type AddUserPayload, type AssetServiceError, 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 User, type UserServiceError, createAssetServiceClient, createMarketServiceClient, createTradeServiceClient, createUserServiceClient, isAssetServiceError, isMarketServiceError, isTradeServiceError, isUserServiceError };
|
|
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 };
|
package/package.json
CHANGED
package/ts/types/types.ts
CHANGED
|
@@ -33,5 +33,7 @@ export type UpdateUserPayload = UserServiceSchemas['UpdateUserPayload'];
|
|
|
33
33
|
export type UserServiceError = UserServiceSchemas['Error'];
|
|
34
34
|
|
|
35
35
|
// Asset Service Types
|
|
36
|
-
export type AssetServiceError = AssetServiceSchemas['Error'];
|
|
37
36
|
export type ImageType = AssetServiceSchemas['ImageType'];
|
|
37
|
+
export type UploadImagePayload = AssetServiceSchemas['UploadImagePayload'];
|
|
38
|
+
export type DeleteImagePayload = AssetServiceSchemas['DeleteImagePayload'];
|
|
39
|
+
export type AssetServiceError = AssetServiceSchemas['Error'];
|