Skip to content

Commit

Permalink
bump version to next minor. (#130)
Browse files Browse the repository at this point in the history
* bump version to next minor.

* fix interface for issueCredential according to implementation
  • Loading branch information
vmidyllic authored Sep 5, 2023
1 parent 16f7ba7 commit 77cbb31
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@0xpolygonid/js-sdk",
"version": "1.0.3",
"version": "1.1.0",
"description": "SDK to work with Polygon ID",
"main": "dist/cjs/index.js",
"module": "dist/esm_esbuild/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/identity/identity-wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export interface IIdentityWallet {
* @param {CredentialRequest} req - claim request
* @returns `Promise<W3CCredential>` - returns created W3CCredential
*/
issueCredential(issuerDID: DID, req: CredentialRequest): Promise<W3CCredential>;
issueCredential(issuerDID: DID, req: CredentialRequest, opts?: Options): Promise<W3CCredential>;

/**
* Gets a tree model for given did that includes claims tree, revocation tree, the root of roots tree and calculated state hash
Expand Down

0 comments on commit 77cbb31

Please sign in to comment.