@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"
|
|
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"
|
|
1028
|
+
code: "ERROR" | "NOT_ENOUGH_CASH" | "NOT_ENOUGH_SHARES";
|
|
1029
1029
|
message: string;
|
|
1030
1030
|
};
|
|
1031
1031
|
|
package/package.json
CHANGED
|
@@ -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"
|
|
205
|
+
ErrorCode: "ERROR" | "NOT_ENOUGH_CASH" | "NOT_ENOUGH_SHARES";
|
|
206
206
|
/** @enum {string} */
|
|
207
207
|
PortfolioType: "PERSONAL" | "COMPETITIVE";
|
|
208
208
|
/** @enum {string} */
|