@cumulus/types 20.1.1 → 20.1.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,5 +1,4 @@
1
- // eslint-disable-next-line import/extensions
2
- import { DuplicateHandling } from '../duplicateHandling';
1
+ export type DuplicateHandling = 'error' | 'replace' | 'skip' | 'version';
3
2
 
4
3
  export type CollectionId = string;
5
4
 
package/api/rules.d.ts CHANGED
@@ -44,3 +44,7 @@ export interface RuleRecord extends NewRuleRecord {
44
44
  createdAt: number,
45
45
  updatedAt: number
46
46
  }
47
+
48
+ export interface PayloadRuleRecord extends PartialRuleRecord {
49
+ cumulus_meta?: Object,
50
+ }
package/index.d.ts CHANGED
@@ -1,5 +1,3 @@
1
- export { DuplicateHandling } from './duplicateHandling';
2
-
3
1
  export * as Message from './message';
4
2
  export * from './api/files';
5
3
  export * from './api/granules';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cumulus/types",
3
- "version": "20.1.1",
3
+ "version": "20.1.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": "dde772911627dd96b944a8eca65fdff388848ec6"
25
+ "gitHead": "051ef1428ac21105fd55370d15e26009f4b49f57"
26
26
  }