@fiado/type-kit 1.9.51 → 1.9.52

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.9.51",
3
+ "version": "1.9.52",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -1,3 +1,12 @@
1
+
2
+ /**
3
+ * Enum representing the execution status of a collection order.
4
+ * @enum {string}
5
+ *
6
+ * @property {string} STARTED - The order execution has started.
7
+ * @property {string} COMPLETED - The order execution was successfully completed.
8
+ * @property {string} FAILED - The order execution failed.
9
+ */
1
10
  export enum CollectionOrderExecutionStatus {
2
11
  STARTED = 'STARTED',
3
12
  COMPLETED = 'COMPLETED',