@rivascva/dt-idl 1.1.2 → 1.1.3

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 CHANGED
@@ -686,11 +686,11 @@ declare const createTradeServiceClient: (options: ClientOptions) => {
686
686
  eject(...middleware: openapi_fetch.Middleware[]): void;
687
687
  };
688
688
 
689
- type SimpleQuotes = components$1['schemas']['SimpleQuote'];
690
- type FullQuotes = components$1['schemas']['FullQuote'];
689
+ type SimpleQuote = components$1['schemas']['SimpleQuote'];
690
+ type FullQuote = components$1['schemas']['FullQuote'];
691
691
  type MarketServiceError = components$1['schemas']['Error'];
692
692
  type User = components['schemas']['User'];
693
693
  type Order = components['schemas']['Order'];
694
694
  type TradeSErviceError = components['schemas']['Error'];
695
695
 
696
- export { type FullQuotes, type MarketServiceError, type Order, type SimpleQuotes, type TradeSErviceError, type User, createMarketServiceClient, createTradeServiceClient };
696
+ export { type FullQuote, type MarketServiceError, type Order, type SimpleQuote, type TradeSErviceError, type User, createMarketServiceClient, createTradeServiceClient };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivascva/dt-idl",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "Dream Trade - Interface Definition Language",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
package/ts/types/types.ts CHANGED
@@ -2,8 +2,8 @@ import { components as MarketServiceComponents } from '@ts/services/dt-market-se
2
2
  import { components as TradeServiceComponents } from '@ts/services/dt-trade-service';
3
3
 
4
4
  // Market Service Types
5
- export type SimpleQuotes = MarketServiceComponents['schemas']['SimpleQuote'];
6
- export type FullQuotes = MarketServiceComponents['schemas']['FullQuote'];
5
+ export type SimpleQuote = MarketServiceComponents['schemas']['SimpleQuote'];
6
+ export type FullQuote = MarketServiceComponents['schemas']['FullQuote'];
7
7
  export type MarketServiceError = MarketServiceComponents['schemas']['Error'];
8
8
 
9
9
  // Trade Service Types