Skip to content
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

Create a didcomm pickup client javascript client component #7

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
e148ca4
Implement testPickupRequest for side client javascript client component.
Tekum-Emmanuella Oct 22, 2024
0ae3de1
Implement testPickupRequest for side client javascript client component.
Tekum-Emmanuella Oct 22, 2024
f6dec1b
fix: SendPickupRequest for side client javascript client component.
Tekum-Emmanuella Oct 23, 2024
cd7fa36
feat: Implement DIDComm client for sending and receiving messages.
Tekum-Emmanuella Oct 24, 2024
4f498df
Merge remote-tracking branch 'origin/iss-didresolver' into Create-a-d…
Tekum-Emmanuella Oct 29, 2024
25807fc
fix:Modularized message building, request sending, and response handling
Tekum-Emmanuella Nov 1, 2024
0b656a7
fix:Implemented a isValidDID function to validate the format of recip…
Tekum-Emmanuella Nov 4, 2024
b3fd306
fix(): stagging work
Tekum-Emmanuella Nov 7, 2024
be85177
fix():resolve type errors and add null checks in pickup client message.
Tekum-Emmanuella Nov 7, 2024
785c2d8
fix():resolve prettierrc making could to chech the correct formats.
Tekum-Emmanuella Nov 7, 2024
c98e22b
fix():fix test errors.
Tekum-Emmanuella Nov 8, 2024
45ce8a2
chore(): pickup patching
Christiantyemele Nov 9, 2024
7c2b1f7
Merge branch 'main' into Create-a-didcomm-pickup-client-javascript-cl…
Tekum-Emmanuella Nov 11, 2024
1fe62bc
fix():ci.
Tekum-Emmanuella Nov 11, 2024
02c8e8c
fix():reverted changes from eslint file.
Tekum-Emmanuella Nov 11, 2024
5b276e3
fix():added comments.
Tekum-Emmanuella Nov 11, 2024
ba1afe0
fix(): removed the globals.
Tekum-Emmanuella Nov 11, 2024
55d97ed
fix(): Ci.
Tekum-Emmanuella Nov 14, 2024
83240dc
fix(): resoved all changes.
Tekum-Emmanuella Nov 15, 2024
066a088
fix():fix the build test.
Tekum-Emmanuella Nov 15, 2024
24ce8a3
fix(): resolved all conflicts.
Tekum-Emmanuella Nov 15, 2024
e5b7c0b
fix(): ci.
Tekum-Emmanuella Nov 18, 2024
24af53d
fix(): ci.
Tekum-Emmanuella Nov 19, 2024
0016305
fix(): Fixed pickup test.
Tekum-Emmanuella Nov 19, 2024
2645cc0
fix():fixed pickup test.
Tekum-Emmanuella Nov 19, 2024
5b5df4c
fix():fixed dupicated dependencies.
Tekum-Emmanuella Nov 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions libs/did-resolver-lib/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import js from '@eslint/js';
import globals from 'globals';

import tseslint from 'typescript-eslint';

export default tseslint.config(
Expand All @@ -9,7 +9,6 @@ export default tseslint.config(
files: ['**/*.{ts,tsx}'],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
},
);
1 change: 1 addition & 0 deletions libs/message-handler/.gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Logs
logs
*.log
dist
npm-debug.log*
yarn-debug.log*
yarn-error.log*
Expand Down
Loading