@lokiengineering/loki-common-node 1.0.0 → 1.1.0
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 +2 -1
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -226,7 +226,8 @@ declare enum BusinessLogicErrorEnum {
|
|
|
226
226
|
CANNOT_DELETE_PRIMARY_ADDRESS = "CANNOT_DELETE_PRIMARY_ADDRESS",
|
|
227
227
|
MAX_DEPOSIT_EXCEEDED = "MAX_DEPOSIT_EXCEEDED",
|
|
228
228
|
EDITION_HAS_ACTIVE_COPIES = "EDITION_HAS_ACTIVE_COPIES",
|
|
229
|
-
INVALID_ORDER_TRANSITION_CONFIG = "INVALID_ORDER_TRANSITION_CONFIG"
|
|
229
|
+
INVALID_ORDER_TRANSITION_CONFIG = "INVALID_ORDER_TRANSITION_CONFIG",
|
|
230
|
+
MISMATCH_LATE_INPUT = "MISMATCH_LATE_INPUT"
|
|
230
231
|
}
|
|
231
232
|
declare enum GeneralErrorEnum {
|
|
232
233
|
ROUTE_NOT_FOUND = "ROUTE_NOT_FOUND",
|
package/dist/index.js
CHANGED
|
@@ -262,6 +262,7 @@ var BusinessLogicErrorEnum = /* @__PURE__ */ ((BusinessLogicErrorEnum2) => {
|
|
|
262
262
|
BusinessLogicErrorEnum2["MAX_DEPOSIT_EXCEEDED"] = "MAX_DEPOSIT_EXCEEDED";
|
|
263
263
|
BusinessLogicErrorEnum2["EDITION_HAS_ACTIVE_COPIES"] = "EDITION_HAS_ACTIVE_COPIES";
|
|
264
264
|
BusinessLogicErrorEnum2["INVALID_ORDER_TRANSITION_CONFIG"] = "INVALID_ORDER_TRANSITION_CONFIG";
|
|
265
|
+
BusinessLogicErrorEnum2["MISMATCH_LATE_INPUT"] = "MISMATCH_LATE_INPUT";
|
|
265
266
|
return BusinessLogicErrorEnum2;
|
|
266
267
|
})(BusinessLogicErrorEnum || {});
|
|
267
268
|
var GeneralErrorEnum = /* @__PURE__ */ ((GeneralErrorEnum2) => {
|