@lokiengineering/loki-common-node 1.5.0 → 1.5.1
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 +4 -1
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -308,7 +308,10 @@ declare enum OrderStatus {
|
|
|
308
308
|
ACTIVE = "active",
|
|
309
309
|
OVERDUE = "overdue",
|
|
310
310
|
DISPUTED = "disputed",
|
|
311
|
-
CLOSED = "closed"
|
|
311
|
+
CLOSED = "closed",
|
|
312
|
+
PENDING = "pending",// starting state (was awaiting_payment)
|
|
313
|
+
COMPLETED = "completed",// normal end state (no disputes)
|
|
314
|
+
CANCELLED = "cancelled"
|
|
312
315
|
}
|
|
313
316
|
declare enum AppealStatus {
|
|
314
317
|
PENDING = "appeal_pending",
|
package/dist/index.js
CHANGED
|
@@ -354,6 +354,9 @@ var OrderStatus = /* @__PURE__ */ ((OrderStatus2) => {
|
|
|
354
354
|
OrderStatus2["OVERDUE"] = "overdue";
|
|
355
355
|
OrderStatus2["DISPUTED"] = "disputed";
|
|
356
356
|
OrderStatus2["CLOSED"] = "closed";
|
|
357
|
+
OrderStatus2["PENDING"] = "pending";
|
|
358
|
+
OrderStatus2["COMPLETED"] = "completed";
|
|
359
|
+
OrderStatus2["CANCELLED"] = "cancelled";
|
|
357
360
|
return OrderStatus2;
|
|
358
361
|
})(OrderStatus || {});
|
|
359
362
|
var AppealStatus = /* @__PURE__ */ ((AppealStatus2) => {
|