@cumulus/types
Advanced tools
Comparing version 9.5.0 to 9.6.0
export type ExecutionRecordStatus = 'completed' | 'failed' | 'running' | 'unknown'; | ||
export type ExecutionProcessingTimes = { | ||
processingStartDateTime: string | ||
processingEndDateTime: string | ||
} | {}; | ||
export interface ExecutionRecord { | ||
@@ -4,0 +9,0 @@ arn: string, |
export type GranuleId = string; | ||
export type GranuleStatus = 'completed' | 'failed' | 'running'; | ||
export type GranuleStatus = 'completed' | 'failed' | 'running' | 'queued'; | ||
export interface ApiGranule { | ||
export type GranuleTemporalInfo = { | ||
beginningDateTime: string | ||
endingDateTime: string | ||
productionDateTime: string | ||
lastUpdateDateTime: string | ||
} | {}; | ||
export interface MessageGranule { | ||
granuleId: string | ||
cmrLink?: string | ||
published?: boolean | ||
status?: string | ||
sync_granule_duration?: number | ||
post_to_cmr_duration?: number | ||
files?: import('./files').ApiFile[] | ||
} | ||
export type ApiGranule = { | ||
granuleId: string | ||
collectionId: string | ||
status: GranuleStatus | ||
execution: string | ||
cmrLink?: string | ||
published?: boolean | ||
pdrName?: string | ||
provider?: string | ||
error?: Object | ||
createdAt: string | ||
timestamp?: string | ||
updatedAt: string | ||
duration?: number | ||
productVolume?: number | ||
timeToPreprocess?: number | ||
timeToArchive?: number | ||
files?: import('./files').ApiFile[] | ||
} | ||
} & GranuleTemporalInfo & import('./executions').ExecutionProcessingTimes; |
{ | ||
"name": "@cumulus/types", | ||
"version": "9.5.0", | ||
"version": "9.6.0", | ||
"description": "TypeScript definitions for working with Cumulus data structures", | ||
@@ -25,3 +25,3 @@ "keywords": [ | ||
"license": "Apache-2.0", | ||
"gitHead": "60c0ab29043ad484df8b12b6b1f70d652b8f0275" | ||
"gitHead": "484f939c802b1ff7c82c08234e7d1ed10eb568cf" | ||
} |
19108
318