@fiado/type-kit 1.9.57 → 1.9.58
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/package.json
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* @property {string} PARTIAL - The order was executed, but only a portion of the amount was collected.
|
|
10
10
|
* @property {string} FORFEIT - The order was marked as uncollectible (backoffice only).
|
|
11
11
|
* @property {string} CANCELLED - The order was manually cancelled (backoffice only).
|
|
12
|
+
* @property {string} ERROR - An error occurred during the collection process.
|
|
12
13
|
*/
|
|
13
14
|
export enum CollectorOrderStatus {
|
|
14
15
|
PENDING = 'PENDING',
|
|
@@ -17,4 +18,5 @@ export enum CollectorOrderStatus {
|
|
|
17
18
|
PARTIAL = 'PARTIAL',
|
|
18
19
|
FORFEIT = 'FORFEIT',
|
|
19
20
|
CANCELLED = 'CANCELLED',
|
|
21
|
+
ERROR = 'ERROR',
|
|
20
22
|
}
|