Skip to content
Merged
Changes from all commits
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
6 changes: 3 additions & 3 deletions src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,14 +131,13 @@ export interface Files {
qlogs: string[]
}

export type AthenaOfflineQueueResponse = AthenaOfflineQueueItem[]
export type AthenaOfflineQueueResponse = AthenaOfflineQueueItem<unknown>[]

export interface AthenaOfflineQueueItemParams {
files_data: [string, string, Record<string, string>][]
}

export interface AthenaOfflineQueueItem extends ApiResponseBase, AthenaCallRequest<UploadFilesToUrlsRequest> {
method: 'uploadFilesToUrls'
export interface AthenaOfflineQueueItem<T> extends ApiResponseBase, AthenaCallRequest<T> {
expiry: number
}

Expand Down Expand Up @@ -170,6 +169,7 @@ export interface DataFile {
allow_cellular: boolean
fn: string
headers: Record<string, string>
priority: number
url: string
}

Expand Down
Loading