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

feat!: authorization and registration flows #1059

Merged
merged 26 commits into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
9477a4a
feat!: update space creation logic
Gozala Oct 30, 2023
a9cd7c7
fix: failing tests
Gozala Oct 30, 2023
3e9f772
fix: address remaining issues
Gozala Oct 31, 2023
d66dfda
feat!: capture authorization requests
Gozala Nov 1, 2023
f762f06
stash!: save current changes
Gozala Nov 2, 2023
349b8b5
fix: post rebase issues
Gozala Nov 2, 2023
0194ade
revert changes caused by rebase
Gozala Nov 2, 2023
61e50f3
fix: remaining issues
Gozala Nov 3, 2023
54a105b
Merge remote-tracking branch 'origin/main' into feat/auth
Gozala Nov 3, 2023
7bddc8e
Apply suggestions from code review
Gozala Nov 3, 2023
5147cf9
chore: undo change
Gozala Nov 3, 2023
0b30d42
fix: lockfile
Gozala Nov 3, 2023
e78681c
chore: add ts project ref
Gozala Nov 3, 2023
9080374
fix: eslint issues
Gozala Nov 3, 2023
3cbce67
chore: remove nickname file
Gozala Nov 3, 2023
8517584
Apply suggestions from code review
Gozala Nov 4, 2023
92f12bc
address more review feedback
Gozala Nov 4, 2023
96b22ca
Merge remote-tracking branch 'origin/main' into feat/auth
Gozala Nov 4, 2023
9fa45cd
fix: remove proof validation
Gozala Nov 4, 2023
223929f
fix: adopt same timestamp format as UCANs use.
Gozala Nov 4, 2023
f1130fe
chore: remove high level provision from agent
Gozala Nov 4, 2023
acfc593
chore: add missing doc comments
Gozala Nov 4, 2023
4c30398
fix: lint error
Gozala Nov 4, 2023
8b5c1a0
Apply suggestions from code review
Gozala Nov 6, 2023
6834454
Update packages/access-client/src/access.js
Gozala Nov 6, 2023
11740c3
fix: lint error
Gozala Nov 6, 2023
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
57 changes: 49 additions & 8 deletions packages/access-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,57 @@
"rc": "npm version prerelease --preid rc"
},
"exports": {
".": "./dist/src/index.js",
"./agent": "./dist/src/agent.js",
"./drivers/*": "./dist/src/drivers/*.js",
"./stores/*": "./dist/src/stores/*.js",
"./types": "./dist/src/types.js",
"./encoding": "./dist/src/encoding.js"
".": {
"types": "./dist/src/index.d.ts",
"import": "./src/index.js"
},
"./agent": {
"types": "./dist/src/agent.d.ts",
"import": "./src/agent.js"
},
"./space": {
"types": "./dist/src/space.d.ts",
"import": "./src/space.js"
},
"./provider": {
"types": "./dist/src/provider.d.ts",
"import": "./src/provider.js"
},
"./access": {
"types": "./dist/src/access.d.ts",
"import": "./src/access.js"
},
"./encoding": {
"types": "./dist/src/encoding.d.ts",
"import": "./src/encoding.js"
},
"./types": {
"types": "./dist/src/types.d.ts",
"import": "./src/types.js"
},
"./drivers/*": {
"types": "./dist/src/drivers/*.d.ts",
"import": "./src/drivers/*.js"
},
"./stores/*": {
"types": "./dist/src/stores/*.d.ts",
"import": "./src/stores/*.js"
}
},
"typesVersions": {
"*": {
"agent": [
"dist/src/agent"
],
"space": [
"dist/src/space"
],
"access": [
"dist/src/access"
],
"provider": [
"dist/src/provider"
],
"types": [
"dist/src/types"
],
Expand Down Expand Up @@ -74,7 +113,8 @@
"one-webcrypto": "git://github.com/web3-storage/one-webcrypto",
"p-defer": "^4.0.0",
"type-fest": "^3.3.0",
"uint8arrays": "^4.0.6"
"uint8arrays": "^4.0.6",
"@scure/bip39": "^1.2.1"
},
"devDependencies": {
"@web3-storage/eslint-config-w3up": "workspace:^",
Expand Down Expand Up @@ -106,7 +146,8 @@
"mocha": true
},
"ignorePatterns": [
"dist"
"dist",
"src/types.js"
]
},
"depcheck": {
Expand Down
Loading
Loading