-
Notifications
You must be signed in to change notification settings - Fork 22
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!: upgrade to @ucanto/{interface,principal}
@^4.0.0
#238
Changes from all commits
5911726
c73b355
98f17b3
6e792ac
eedd403
9394b30
750b6d7
56f69d2
158f0da
7558a0d
32b9a87
d1d3d3e
7030238
00db6c2
c28311f
02017b7
4bca15c
2bf043c
f32a6e7
ea4f24a
f3e5ca5
f4fcc4a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -158,4 +158,5 @@ prog | |
console.error(`Run "${NAME} setup" first`) | ||
} | ||
}) | ||
|
||
prog.parse(process.argv) |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -29,9 +29,9 @@ export const Product = URI.uri() | |||||
export const Identity = URI.match({ protocol: 'mailto:' }) | ||||||
|
||||||
/** | ||||||
* Services are identified using did:key identifier. | ||||||
* Services are identified using a decentralized identifier. | ||||||
*/ | ||||||
export const Service = DID.match({ method: 'key' }) | ||||||
export const Service = DID.match({}) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Should the above be ^^ instead ? Also comment need to be updated There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I intended the type to allow any did. specifically I wanted to at least allow both |
||||||
|
||||||
/** | ||||||
* Capability can only be delegated (but not invoked) allowing audience to | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉