@cumulus/types 20.1.3-alpha.1 → 20.2.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
@@ -12,7 +12,6 @@ export type GranuleTemporalInfo = {
12
12
  export interface MessageGranule {
13
13
  granuleId: string
14
14
  cmrLink?: string
15
- producerGranuleId?: string
16
15
  published?: boolean
17
16
  status?: string
18
17
  sync_granule_duration?: number
@@ -29,12 +28,11 @@ type PartialGranuleTemporalInfo = NullablePartialType<GranuleTemporalInfo>;
29
28
  type PartialGranuleProcessingInfo = NullablePartialType<import('./executions').ExecutionProcessingTimes>;
30
29
 
31
30
  export type ApiGranuleRecord = {
32
- collectionId: string
33
- createdAt: number
34
31
  granuleId: string
35
- producerGranuleId: string
32
+ collectionId: string
36
33
  status: GranuleStatus
37
34
  updatedAt: number
35
+ createdAt: number
38
36
  cmrLink?: string
39
37
  duration?: number
40
38
  error?: Object
@@ -53,7 +51,8 @@ export type ApiGranuleRecord = {
53
51
  export type ApiGranule = {
54
52
  granuleId: string
55
53
  collectionId: string
56
- producerGranuleId: string
54
+ status?: GranuleStatus
55
+ updatedAt?: number | null
57
56
  cmrLink?: string | null
58
57
  createdAt?: number | null
59
58
  duration?: number | null
@@ -61,14 +60,11 @@ export type ApiGranule = {
61
60
  execution?: string | null
62
61
  files?: Omit<import('./files').ApiFile, 'granuleId'>[] | null
63
62
  pdrName?: string | null
64
- producerGranuleId?: string | null
65
63
  productVolume?: string | null
66
64
  provider?: string | null
67
65
  published?: boolean | null
68
66
  queryFields?: unknown | null
69
- status?: GranuleStatus
70
67
  timestamp?: number | null
71
68
  timeToArchive?: number | null
72
69
  timeToPreprocess?: number | null
73
- updatedAt?: number | null
74
70
  } & PartialGranuleTemporalInfo & PartialGranuleProcessingInfo;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cumulus/types",
3
- "version": "20.1.3-alpha.1",
3
+ "version": "20.2.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": "058c1288fc31f6f158c67a40431666fb098d709f"
25
+ "gitHead": "8afcafd2b63778a1ea666163aa268c2dfd7d60ec"
26
26
  }