@cumulus/types 18.3.4 → 19.0.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/api/async_operations.d.ts +24 -10
- package/package.json +2 -2
|
@@ -1,14 +1,28 @@
|
|
|
1
|
-
export type AsyncOperationStatus =
|
|
1
|
+
export type AsyncOperationStatus =
|
|
2
|
+
| 'RUNNER_FAILED'
|
|
3
|
+
| 'RUNNING'
|
|
4
|
+
| 'SUCCEEDED'
|
|
5
|
+
| 'TASK_FAILED';
|
|
2
6
|
|
|
3
|
-
export type AsyncOperationType =
|
|
7
|
+
export type AsyncOperationType =
|
|
8
|
+
| 'Bulk Execution Delete'
|
|
9
|
+
| 'Bulk Granule Delete'
|
|
10
|
+
| 'Bulk Granule Reingest'
|
|
11
|
+
| 'Bulk Granules'
|
|
12
|
+
| 'Dead-Letter Processing'
|
|
13
|
+
| 'DLA Migration'
|
|
14
|
+
| 'ES Index'
|
|
15
|
+
| 'Kinesis Replay'
|
|
16
|
+
| 'Reconciliation Report'
|
|
17
|
+
| 'SQS Replay';
|
|
4
18
|
|
|
5
19
|
export interface ApiAsyncOperation {
|
|
6
|
-
id: string
|
|
7
|
-
description: string
|
|
8
|
-
operationType: AsyncOperationType
|
|
9
|
-
status: AsyncOperationStatus
|
|
10
|
-
taskArn?: string
|
|
11
|
-
output?: string
|
|
12
|
-
createdAt?: number
|
|
13
|
-
updatedAt?: number
|
|
20
|
+
id: string,
|
|
21
|
+
description: string,
|
|
22
|
+
operationType: AsyncOperationType,
|
|
23
|
+
status: AsyncOperationStatus,
|
|
24
|
+
taskArn?: string,
|
|
25
|
+
output?: string,
|
|
26
|
+
createdAt?: number,
|
|
27
|
+
updatedAt?: number,
|
|
14
28
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cumulus/types",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "19.0.0",
|
|
4
4
|
"description": "TypeScript definitions for working with Cumulus data structures",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"GIBS",
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
},
|
|
23
23
|
"author": "Cumulus Authors",
|
|
24
24
|
"license": "Apache-2.0",
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "3a619db6e6fa20846eb75802e89d5a065fd62fcc"
|
|
26
26
|
}
|