Skip to content

Commit

Permalink
Fix minor issue with CredStatus interface (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kolezhniuk authored Mar 20, 2024
1 parent ddca455 commit 44f87ca
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.9.0",
"version": "1.9.1",
"description": "SDK to work with Polygon ID",
"main": "dist/node/cjs/index.js",
"module": "dist/node/esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/verifiable/proof.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ export interface CredentialStatus {
id: string;
type: CredentialStatusType;
revocationNonce?: number;
statusIssuer?: CredentialStatus;
statusIssuer?: { id: string; type: CredentialStatusType; revocationNonce?: number };
}

/**
Expand Down

0 comments on commit 44f87ca

Please sign in to comment.