@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
|
@@ -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} */
|