-
Notifications
You must be signed in to change notification settings - Fork 16
fix:resolved sd-jwt issuance related issues #341
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
shitrerohit
wants to merge
38
commits into
feat/oidc-main-sync
Choose a base branch
from
fix/oid4vc-issuance-changes
base: feat/oidc-main-sync
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
303c9cf
fix: changes for types
GHkrishna 534d7ea
fix: version update and types update
GHkrishna d36b26a
fix: for now we'll delete all the patch and apply as required
GHkrishna d42dae4
fix!: controller types (credo version updates) (#335)
GHkrishna 18c8ad1
fix: agent initialization
GHkrishna 148aa9c
fix: remove unwanted agent backup config
GHkrishna a6d2181
fix: oob invitation
GHkrishna 78f6065
fix: some package version update
GHkrishna 925a147
fix: some type changes
GHkrishna ee543c9
fix: comment controller for agent to start
GHkrishna 32e1ab0
fix: oidc4vc agent changes for building agent
GHkrishna b47de32
fix: auto generated file changes
GHkrishna 6a53e4b
fix: cliagent issues
GHkrishna a5e1a31
fix: x509 controller (#338)
GHkrishna b6e3043
WIP: bug fixing from issuer and verifier session
shitrerohit 9573fca
fix:changes on cli agent file
shitrerohit 232943b
WIP:changes in create issuer work flow
shitrerohit 0816425
WIP:Resolving the issues from issue credential workflow.
shitrerohit 768ba54
fix:sd-jwt store credential
shitrerohit bbf02c6
WIP: store mDoc credential
shitrerohit 6c572c8
fix:sonar cloud issue
shitrerohit 21f66e0
fix:completed flow changes for mdoc
shitrerohit 57f71c5
fix:resolved code rabit related issues
shitrerohit 586ba2c
fix:removed commented code
shitrerohit 5851bd6
fix: resolved PR comments
shitrerohit 44b1c6a
feat/oidv4vc issuance and verification changes
shitrerohit 368bf50
fix: resolved code rabbit ai issues
shitrerohit 20ca52e
fix: resolved code rabbit issues
shitrerohit fe5cfa2
fix: added comment for image check in verification session
shitrerohit ea7f3b2
fix/removed commented code
shitrerohit 34cab32
fix:resolved sd-jwt issuance related issues
shitrerohit 9e0c531
fix:Removed commented code
shitrerohit 1786598
fix:changes in create proof request
shitrerohit f194bb3
feat:API for delete credential
shitrerohit 34d8586
node verison changes
shitrerohit 00b8680
update node version
shitrerohit ca9a16b
sample x5c certificate added
shitrerohit 3861761
fix: resolved PR comments
shitrerohit File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
272 changes: 0 additions & 272 deletions
272
...+0.6.0-alpha-20250325224513+001+fix: extensible model conflict in AnonCreds and DID.patch
This file was deleted.
Oops, something went wrong.
21 changes: 21 additions & 0 deletions
21
patches/@credo-ts+core+0.6.0+001+fix: change version string type.patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| diff --git a/node_modules/@credo-ts/core/build/utils/version.d.mts b/node_modules/@credo-ts/core/build/utils/version.d.mts | ||
| index a71659d..8ed88e2 100644 | ||
| --- a/node_modules/@credo-ts/core/build/utils/version.d.mts | ||
| +++ b/node_modules/@credo-ts/core/build/utils/version.d.mts | ||
| @@ -1,5 +1,5 @@ | ||
| //#region src/utils/version.d.ts | ||
| -type VersionString = `${number}.${number}` | `${number}.${number}.${number}`; | ||
| +type VersionString = string; | ||
| //#endregion | ||
| export { VersionString }; | ||
| //# sourceMappingURL=version.d.mts.map | ||
| \ No newline at end of file | ||
| diff --git a/node_modules/@credo-ts/core/build/utils/version.mjs.map b/node_modules/@credo-ts/core/build/utils/version.mjs.map | ||
| index 19457ed..5fb595f 100644 | ||
| --- a/node_modules/@credo-ts/core/build/utils/version.mjs.map | ||
| +++ b/node_modules/@credo-ts/core/build/utils/version.mjs.map | ||
| @@ -1 +1 @@ | ||
| -{"version":3,"file":"version.mjs","names":[],"sources":["../../src/utils/version.ts"],"sourcesContent":["export function parseVersionString(version: VersionString): Version {\n const [major, minor, patch] = version.split('.')\n\n return [Number(major), Number(minor), Number(patch ?? '0')]\n}\n\nexport function isFirstVersionHigherThanSecond(first: Version, second: Version) {\n return (\n first[0] > second[0] ||\n (first[0] === second[0] && first[1] > second[1]) ||\n (first[0] === second[0] && first[1] === second[1] && first[2] > second[2])\n )\n}\n\nexport function isFirstVersionEqualToSecond(first: Version, second: Version) {\n return first[0] === second[0] && first[1] === second[1] && first[2] === second[2]\n}\n\nexport type VersionString = `${number}.${number}` | `${number}.${number}.${number}`\nexport type MajorVersion = number\nexport type MinorVersion = number\nexport type PatchVersion = number\nexport type Version = [MajorVersion, MinorVersion, PatchVersion]\n"],"mappings":";;;AAAA,SAAgB,mBAAmB,SAAiC;CAClE,MAAM,CAAC,OAAO,OAAO,SAAS,QAAQ,MAAM,IAAI;AAEhD,QAAO;EAAC,OAAO,MAAM;EAAE,OAAO,MAAM;EAAE,OAAO,SAAS,IAAI;EAAC;;AAG7D,SAAgB,+BAA+B,OAAgB,QAAiB;AAC9E,QACE,MAAM,KAAK,OAAO,MACjB,MAAM,OAAO,OAAO,MAAM,MAAM,KAAK,OAAO,MAC5C,MAAM,OAAO,OAAO,MAAM,MAAM,OAAO,OAAO,MAAM,MAAM,KAAK,OAAO;;AAI3E,SAAgB,4BAA4B,OAAgB,QAAiB;AAC3E,QAAO,MAAM,OAAO,OAAO,MAAM,MAAM,OAAO,OAAO,MAAM,MAAM,OAAO,OAAO"} | ||
| \ No newline at end of file | ||
| +{"version":3,"file":"version.mjs","names":[],"sources":["../../src/utils/version.ts"],"sourcesContent":["export function parseVersionString(version: VersionString): Version {\n const [major, minor, patch] = version.split('.')\n\n return [Number(major), Number(minor), Number(patch ?? '0')]\n}\n\nexport function isFirstVersionHigherThanSecond(first: Version, second: Version) {\n return (\n first[0] > second[0] ||\n (first[0] === second[0] && first[1] > second[1]) ||\n (first[0] === second[0] && first[1] === second[1] && first[2] > second[2])\n )\n}\n\nexport function isFirstVersionEqualToSecond(first: Version, second: Version) {\n return first[0] === second[0] && first[1] === second[1] && first[2] === second[2]\n}\n\nexport type VersionString = string\nexport type MajorVersion = number\nexport type MinorVersion = number\nexport type PatchVersion = number\nexport type Version = [MajorVersion, MinorVersion, PatchVersion]\n"],"mappings":";;;AAAA,SAAgB,mBAAmB,SAAiC;CAClE,MAAM,CAAC,OAAO,OAAO,SAAS,QAAQ,MAAM,IAAI;AAEhD,QAAO;EAAC,OAAO,MAAM;EAAE,OAAO,MAAM;EAAE,OAAO,SAAS,IAAI;EAAC;;AAG7D,SAAgB,+BAA+B,OAAgB,QAAiB;AAC9E,QACE,MAAM,KAAK,OAAO,MACjB,MAAM,OAAO,OAAO,MAAM,MAAM,KAAK,OAAO,MAC5C,MAAM,OAAO,OAAO,MAAM,MAAM,OAAO,OAAO,MAAM,MAAM,KAAK,OAAO;;AAI3E,SAAgB,4BAA4B,OAAgB,QAAiB;AAC3E,QAAO,MAAM,OAAO,OAAO,MAAM,MAAM,OAAO,OAAO,MAAM,MAAM,OAAO,OAAO"} | ||
| \ No newline at end of file |
12 changes: 0 additions & 12 deletions
12
patches/@credo-ts+core+0.6.0-alpha-20250325224513+001+fix: message type for message.patch
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
patches/@credo-ts+core+0.6.0-alpha-20250325224513+002+fix: change version string type.patch
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
patches/@credo-ts+core+0.6.0-alpha-20250325224513+003+sdjwt-presentation.patch
This file was deleted.
Oops, something went wrong.
31 changes: 0 additions & 31 deletions
31
patches/@credo-ts+didcomm+0.6.0-alpha-20250325224513+001+fix: message type for message.patch
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
...comm+0.6.0-alpha-20250325224513+002+fix: added-prettyVc-in-JsonCredential-interface.patch
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
...-20250325224513+003+fix: commenting validationPresentation to avoid abandoned issue.patch
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.