Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/@types/Compute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,10 @@
agreementId?: string
expireTimestamp: number
metadata?: ComputeJobMetadata
terminationDetails?: {
exitCode?: number
OOMKilled?: boolean
}
}

export interface ComputeOutput {
Expand All @@ -141,14 +145,14 @@
}

export enum FileObjectType {
URL = 'url',

Check warning on line 148 in src/@types/Compute.ts

View workflow job for this annotation

GitHub Actions / lint

'URL' is defined but never used
IPFS = 'ipfs',

Check warning on line 149 in src/@types/Compute.ts

View workflow job for this annotation

GitHub Actions / lint

'IPFS' is defined but never used
ARWEAVE = 'arweave'

Check warning on line 150 in src/@types/Compute.ts

View workflow job for this annotation

GitHub Actions / lint

'ARWEAVE' is defined but never used
}

export enum EncryptMethod {
AES = 'AES',

Check warning on line 154 in src/@types/Compute.ts

View workflow job for this annotation

GitHub Actions / lint

'AES' is defined but never used
ECIES = 'ECIES'

Check warning on line 155 in src/@types/Compute.ts

View workflow job for this annotation

GitHub Actions / lint

'ECIES' is defined but never used
}

export interface HeadersObject {
Expand Down Expand Up @@ -203,6 +207,7 @@
transferTxId?: string
algocustomdata?: { [key: string]: any }
userdata?: { [key: string]: any }
envs?: { [key: string]: string }
}

export interface ComputePayment {
Expand Down
Loading