generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add from: support to dwn.records.query/.delete and protocols.configur…
…e/.query Signed-off-by: Frank Hinek <[email protected]>
- Loading branch information
1 parent
bfe248c
commit a52ae70
Showing
7 changed files
with
194 additions
and
60 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 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
18 changes: 0 additions & 18 deletions
18
packages/web5/tests/fixtures/protocol-definitions/chat.json
This file was deleted.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
packages/web5/tests/fixtures/protocol-definitions/message.json
This file contains 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,18 @@ | ||
{ | ||
"types": { | ||
"message": { | ||
"schema": "https://protocols.xyz/message/schema/message", | ||
"dataFormats": ["text/plain"] | ||
} | ||
}, | ||
"structure": { | ||
"message": { | ||
"$actions": [ | ||
{ | ||
"who": "anyone", | ||
"can": "write" | ||
} | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.