@rivascva/dt-idl 1.0.8 → 1.0.9
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
|
@@ -685,6 +685,7 @@ type SimpleQuotes = components$1['schemas']['SimpleQuote'];
|
|
|
685
685
|
type FullQuotes = components$1['schemas']['FullQuote'];
|
|
686
686
|
type MarketServiceError = components$1['schemas']['Error'];
|
|
687
687
|
type User = components['schemas']['User'];
|
|
688
|
+
type Order = components['schemas']['Order'];
|
|
688
689
|
type TradeSErviceError = components['schemas']['Error'];
|
|
689
690
|
|
|
690
|
-
export { type FullQuotes, type MarketServiceError, type SimpleQuotes, type TradeSErviceError, type User, createMarketServiceClient, createTradeServiceClient };
|
|
691
|
+
export { type FullQuotes, type MarketServiceError, type Order, type SimpleQuotes, type TradeSErviceError, type User, createMarketServiceClient, createTradeServiceClient };
|
package/package.json
CHANGED
package/ts/types/types.ts
CHANGED
|
@@ -8,4 +8,5 @@ export type MarketServiceError = MarketServiceComponents['schemas']['Error'];
|
|
|
8
8
|
|
|
9
9
|
// Trade Service Types
|
|
10
10
|
export type User = TradeServiceComponents['schemas']['User'];
|
|
11
|
+
export type Order = TradeServiceComponents['schemas']['Order'];
|
|
11
12
|
export type TradeSErviceError = TradeServiceComponents['schemas']['Error'];
|