@rivascva/dt-idl 1.1.17 → 1.1.18

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
@@ -814,7 +814,7 @@ interface components {
814
814
  message: string;
815
815
  };
816
816
  /** @enum {string} */
817
- ErrorCode: "ERROR" | "NOT_ENOUGH_CASH" | "NOT_ENOUGH_SHARES" | "REQS_NOT_MET";
817
+ ErrorCode: "ERROR" | "NOT_ENOUGH_CASH" | "NOT_ENOUGH_SHARES";
818
818
  /** @enum {string} */
819
819
  PortfolioType: "PERSONAL" | "COMPETITIVE";
820
820
  /** @enum {string} */
@@ -1025,7 +1025,7 @@ declare const isMarketServiceError: (error: unknown) => error is {
1025
1025
  };
1026
1026
  declare const isTradeServiceError: (error: unknown) => error is {
1027
1027
  status: number;
1028
- code: "ERROR" | "NOT_ENOUGH_CASH" | "NOT_ENOUGH_SHARES" | "REQS_NOT_MET";
1028
+ code: "ERROR" | "NOT_ENOUGH_CASH" | "NOT_ENOUGH_SHARES";
1029
1029
  message: string;
1030
1030
  };
1031
1031
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivascva/dt-idl",
3
- "version": "1.1.17",
3
+ "version": "1.1.18",
4
4
  "description": "Dream Trade - Interface Definition Language",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -355,7 +355,6 @@ components:
355
355
  - ERROR
356
356
  - NOT_ENOUGH_CASH
357
357
  - NOT_ENOUGH_SHARES
358
- - REQS_NOT_MET
359
358
 
360
359
  PortfolioType:
361
360
  type: string
@@ -202,7 +202,7 @@ export interface components {
202
202
  message: string;
203
203
  };
204
204
  /** @enum {string} */
205
- ErrorCode: "ERROR" | "NOT_ENOUGH_CASH" | "NOT_ENOUGH_SHARES" | "REQS_NOT_MET";
205
+ ErrorCode: "ERROR" | "NOT_ENOUGH_CASH" | "NOT_ENOUGH_SHARES";
206
206
  /** @enum {string} */
207
207
  PortfolioType: "PERSONAL" | "COMPETITIVE";
208
208
  /** @enum {string} */