New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@cumulus/types

Package Overview
Dependencies
Maintainers
12
Versions
119
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cumulus/types - npm Package Compare versions

Comparing version 9.5.0 to 9.6.0

5

api/executions.d.ts
export type ExecutionRecordStatus = 'completed' | 'failed' | 'running' | 'unknown';
export type ExecutionProcessingTimes = {
processingStartDateTime: string
processingEndDateTime: string
} | {};
export interface ExecutionRecord {

@@ -4,0 +9,0 @@ arn: string,

38

api/granules.d.ts
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;

4

package.json
{
"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"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc