@cumulus/types 20.0.0 → 20.1.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/granules.d.ts CHANGED
@@ -25,7 +25,7 @@ export type NullablePartialType<T> = {
25
25
  };
26
26
 
27
27
  type PartialGranuleTemporalInfo = NullablePartialType<GranuleTemporalInfo>;
28
- type ParitalGranuleProcessingInfo = NullablePartialType<import('./executions').ExecutionProcessingTimes>;
28
+ type PartialGranuleProcessingInfo = NullablePartialType<import('./executions').ExecutionProcessingTimes>;
29
29
 
30
30
  export type ApiGranuleRecord = {
31
31
  granuleId: string
@@ -46,7 +46,7 @@ export type ApiGranuleRecord = {
46
46
  timestamp?: number
47
47
  timeToArchive?: number
48
48
  timeToPreprocess?: number
49
- } & PartialGranuleTemporalInfo & ParitalGranuleProcessingInfo;
49
+ } & PartialGranuleTemporalInfo & PartialGranuleProcessingInfo;
50
50
 
51
51
  export type ApiGranule = {
52
52
  granuleId: string
@@ -67,4 +67,4 @@ export type ApiGranule = {
67
67
  timestamp?: number | null
68
68
  timeToArchive?: number | null
69
69
  timeToPreprocess?: number | null
70
- } & PartialGranuleTemporalInfo & ParitalGranuleProcessingInfo;
70
+ } & PartialGranuleTemporalInfo & PartialGranuleProcessingInfo;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cumulus/types",
3
- "version": "20.0.0",
3
+ "version": "20.1.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": "d43b620da63c0dc7076b9e619ea6d9b92204fcaa"
25
+ "gitHead": "c2ecf1ce2ae86a16639848c7d42b579a7380c2f3"
26
26
  }