Skip to content

Commit

Permalink
fix: extend queue add errors (#890)
Browse files Browse the repository at this point in the history
  • Loading branch information
vasco-santos authored Aug 31, 2023
1 parent 7426de1 commit 0ecd4bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/filecoin-api/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ export interface DealerRecord {

// Errors

export type QueueAddError = QueueOperationError | EncodeRecordFailed
export type StorePutError = StoreOperationError | EncodeRecordFailed
export type StoreGetError =
| StoreOperationError
| EncodeRecordFailed
| StoreNotFound
export type QueueAddError = QueueOperationError | EncodeRecordFailed | StorePutError

export interface QueueOperationError extends Error {
name: 'QueueOperationFailed'
Expand Down

0 comments on commit 0ecd4bb

Please sign in to comment.