@rivascva/dt-idl 1.1.25 → 1.1.26

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
@@ -823,7 +823,7 @@ interface components {
823
823
  message: string;
824
824
  };
825
825
  /** @enum {string} */
826
- ErrorCode: "ERROR" | "NOT_ENOUGH_CASH" | "NOT_ENOUGH_SHARES";
826
+ ErrorCode: "ERROR" | "NOT_ENOUGH_CASH" | "NOT_ENOUGH_SHARES" | "UNDELETABLE";
827
827
  /** @enum {string} */
828
828
  PortfolioType: "PERSONAL" | "COMPETITIVE";
829
829
  /** @enum {string} */
@@ -1064,7 +1064,7 @@ declare const isMarketServiceError: (error: unknown) => error is {
1064
1064
  };
1065
1065
  declare const isTradeServiceError: (error: unknown) => error is {
1066
1066
  status: number;
1067
- code: "ERROR" | "NOT_ENOUGH_CASH" | "NOT_ENOUGH_SHARES";
1067
+ code: "ERROR" | "NOT_ENOUGH_CASH" | "NOT_ENOUGH_SHARES" | "UNDELETABLE";
1068
1068
  message: string;
1069
1069
  };
1070
1070
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivascva/dt-idl",
3
- "version": "1.1.25",
3
+ "version": "1.1.26",
4
4
  "description": "Dream Trade - Interface Definition Language",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -390,6 +390,7 @@ components:
390
390
  - ERROR
391
391
  - NOT_ENOUGH_CASH
392
392
  - NOT_ENOUGH_SHARES
393
+ - UNDELETABLE
393
394
 
394
395
  PortfolioType:
395
396
  type: string
@@ -211,7 +211,7 @@ export interface components {
211
211
  message: string;
212
212
  };
213
213
  /** @enum {string} */
214
- ErrorCode: "ERROR" | "NOT_ENOUGH_CASH" | "NOT_ENOUGH_SHARES";
214
+ ErrorCode: "ERROR" | "NOT_ENOUGH_CASH" | "NOT_ENOUGH_SHARES" | "UNDELETABLE";
215
215
  /** @enum {string} */
216
216
  PortfolioType: "PERSONAL" | "COMPETITIVE";
217
217
  /** @enum {string} */