@rivascva/dt-idl 1.1.13 → 1.1.15

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
@@ -555,7 +555,6 @@ interface operations$1 {
555
555
  "application/json": components$1["schemas"]["SimpleQuote"][];
556
556
  };
557
557
  };
558
- 404: components$1["responses"]["NotFound"];
559
558
  500: components$1["responses"]["InternalServerError"];
560
559
  };
561
560
  };
@@ -1040,6 +1039,7 @@ type PortfolioType = TradeServiceSchemas['PortfolioType'];
1040
1039
  type OrderPayload = TradeServiceSchemas['OrderPayload'];
1041
1040
  type Order = TradeServiceSchemas['Order'];
1042
1041
  type OrderType = TradeServiceSchemas['OrderType'];
1042
+ type Holding = TradeServiceSchemas['Holding'];
1043
1043
  type TradeServiceError = TradeServiceSchemas['Error'];
1044
1044
 
1045
- export { type FullQuote, type MarketServiceError, type NewsArticle, type Order, type OrderPayload, type OrderType, type Portfolio, type PortfolioType, type SimpleQuote, type StockNewsArticle, type TradeServiceError, type User, createMarketServiceClient, createTradeServiceClient, isMarketServiceError, isTradeServiceError };
1045
+ export { type FullQuote, type Holding, type MarketServiceError, type NewsArticle, type Order, type OrderPayload, type OrderType, type Portfolio, type PortfolioType, type SimpleQuote, type StockNewsArticle, type TradeServiceError, type User, createMarketServiceClient, createTradeServiceClient, isMarketServiceError, isTradeServiceError };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivascva/dt-idl",
3
- "version": "1.1.13",
3
+ "version": "1.1.15",
4
4
  "description": "Dream Trade - Interface Definition Language",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -227,8 +227,6 @@ paths:
227
227
  type: array
228
228
  items:
229
229
  $ref: '#/components/schemas/SimpleQuote'
230
- 404:
231
- $ref: '#/components/responses/NotFound'
232
230
  500:
233
231
  $ref: '#/components/responses/InternalServerError'
234
232
 
@@ -555,7 +555,6 @@ export interface operations {
555
555
  "application/json": components["schemas"]["SimpleQuote"][];
556
556
  };
557
557
  };
558
- 404: components["responses"]["NotFound"];
559
558
  500: components["responses"]["InternalServerError"];
560
559
  };
561
560
  };
package/ts/types/types.ts CHANGED
@@ -18,4 +18,5 @@ export type PortfolioType = TradeServiceSchemas['PortfolioType'];
18
18
  export type OrderPayload = TradeServiceSchemas['OrderPayload'];
19
19
  export type Order = TradeServiceSchemas['Order'];
20
20
  export type OrderType = TradeServiceSchemas['OrderType'];
21
+ export type Holding = TradeServiceSchemas['Holding'];
21
22
  export type TradeServiceError = TradeServiceSchemas['Error'];