Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
update dependency versions and copy propogateSdkVersions.js from deve…
Browse files Browse the repository at this point in the history
…loper.tbd.website
  • Loading branch information
finn-block committed Jul 10, 2024
1 parent df41a22 commit 5d99005
Show file tree
Hide file tree
Showing 17 changed files with 764 additions and 100 deletions.
4 changes: 2 additions & 2 deletions javascript/book-reviews/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@web5/api": "^0.9.4"
"@web5/api": "0.9.4"
},
"type": "module"
}
}
2 changes: 1 addition & 1 deletion javascript/dinger-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
"@playwright/test": "^1.44.1",
"start-server-and-test": "^2.0.4"
}
}
}
2 changes: 1 addition & 1 deletion javascript/dinger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
"@playwright/test": "^1.44.1",
"start-server-and-test": "^2.0.4"
}
}
}
8 changes: 4 additions & 4 deletions javascript/fan-club-credential/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@web5/api": "^0.9.4",
"@web5/credentials": "^1.0.3",
"@web5/dids": "^1.1.1",
"@web5/api": "0.9.4",
"@web5/credentials": "1.0.3",
"@web5/dids": "1.1.1",
"@web5/user-agent": "^0.3.8"
}
}
}
6 changes: 3 additions & 3 deletions javascript/kcc-prototype-exemplar/issuer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@web5/credentials": "^1.0.0",
"@web5/dids": "^1.0.0",
"@web5/credentials": "1.0.3",
"@web5/dids": "1.1.1",
"express": "^4.19.2"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,8 @@ if (resolution.didResolutionMetadata.error) {
}

const idvService = resolution.didDocument.service.find(x => x.type === "IDV")
console.log(idvService.serviceEndpoint)
var serviceEndpoint = idvService.serviceEndpoint;
if (idvService.serviceEndpoint instanceof Array) {
serviceEndpoint = idvService.serviceEndpoint[0];
}
console.log(serviceEndpoint);
6 changes: 3 additions & 3 deletions javascript/kcc-prototype-exemplar/wallet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@web5/credentials": "^1.0.0",
"@web5/dids": "^1.0.0"
"@web5/credentials": "1.0.3",
"@web5/dids": "1.1.1"
}
}
}
6 changes: 3 additions & 3 deletions javascript/pfi-aud-usd-tbdex/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"version": "1.0.0",
"dependencies": {
"@tbdex/http-server": "1.0.2",
"@web5/credentials": "1.0.0",
"@web5/dids": "1.0.0",
"@web5/credentials": "1.0.3",
"@web5/dids": "1.1.1",
"ajv": "8.12.0",
"cborg": "^3.0.0",
"dotenv": "16.3.1",
Expand Down Expand Up @@ -54,4 +54,4 @@
"test": "rimraf dist/tests && npm run compile && node --test",
"test:e2e": "node src/test_end2end.cjs"
}
}
}
2 changes: 1 addition & 1 deletion javascript/shared-todo-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
"vue": "3.3.4",
"vue-router": "4.2.5"
}
}
}
2 changes: 1 addition & 1 deletion javascript/shared-todo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@
"vue": "3.3.4",
"vue-router": "4.2.5"
}
}
}
7 changes: 3 additions & 4 deletions javascript/tbdex-pfi-exemplar/.tbd-example.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
"chmod +x dbmate-linux-amd64",
"sudo mv dbmate-linux-amd64 /usr/bin/dbmate",
"./db/scripts/start-pg",
"./db/scripts/migrate",
"npm run server &",
"until curl -sf http://localhost:9000 > /dev/null; do echo waiting for server to start; sleep 1; done"
]
"./db/scripts/migrate"
],
"commands": ["npm run ci"]
}
}
Loading

0 comments on commit 5d99005

Please sign in to comment.