Skip to content

Commit

Permalink
removing todos waiting on a merged PR
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyoontbd committed Jan 24, 2024
1 parent 1858bdb commit 7210a71
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
1 change: 0 additions & 1 deletion packages/http-client/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import {
MissingServiceEndpointError,
RequestTokenMissingClaimsError,
RequestTokenAudienceMismatchError,
RequestTokenExpiredError,
RequestTokenSigningError,
RequestTokenVerificationError
} from './errors/index.js'
Expand Down
13 changes: 0 additions & 13 deletions packages/http-client/src/errors/request-token-error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,6 @@ export class RequestTokenVerificationError extends RequestTokenError {
}
}

// TODO: remove once PR is pulled into Web5 Credentials pkg: https://github.com/TBD54566975/web5-js/pull/366
/**
* Error thrown when a request token is expired
* @beta
*/
export class RequestTokenExpiredError extends RequestTokenError {
constructor(params: RequestTokenErrorParams) {
super(params)

Object.setPrototypeOf(this, RequestTokenExpiredError.prototype)
}
}

/**
* Error thrown when a request token is missing required claims
* @beta
Expand Down

0 comments on commit 7210a71

Please sign in to comment.