@cumulus/types 9.3.0 → 9.4.2

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.
@@ -1,6 +1,6 @@
1
1
  export type AsyncOperationStatus = 'RUNNING' | 'SUCCEEDED' | 'RUNNER_FAILED' | 'TASK_FAILED';
2
2
 
3
- export type AsyncOperationType = 'Migration Count Report' | 'Dead-Letter Processing' | 'ES Index' | 'Bulk Granules' | 'Bulk Granule Reingest' | 'Bulk Granule Delete' | 'Kinesis Replay' | 'Reconciliation Report';
3
+ export type AsyncOperationType = 'Migration Count Report' | 'Dead-Letter Processing' | 'ES Index' | 'Bulk Granules' | 'Bulk Granule Reingest' | 'Bulk Granule Delete' | 'Kinesis Replay' | 'Reconciliation Report' | 'SQS Replay';
4
4
 
5
5
  export interface ApiAsyncOperation {
6
6
  id: string
@@ -12,4 +12,5 @@ export interface ApiProvider {
12
12
  privateKey?: string,
13
13
  cmKeyId?: string,
14
14
  certificateUri?: string
15
+ allowedRedirects?: string[]
15
16
  }
@@ -0,0 +1,3 @@
1
+ export interface ReplaySqsMessagesPayload {
2
+ queueName: string,
3
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cumulus/types",
3
- "version": "9.3.0",
3
+ "version": "9.4.2",
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": "1e0ecaff0e7107e3c5a83f0479972bca0f223842"
25
+ "gitHead": "93ac169ad2ef47ea3ba207e686d9aa870c5d8bcc"
26
26
  }