1
0
Fork 0
forked from alemi/upub
upub/apb/src
alemi 65aee2a27e
feat(apb): Node::Array is an array of nodes
this better represents AP arrays, because they could be mixed, and now
links are properly represented as links rather than "objects that are a
string"
2024-05-19 21:18:04 +02:00
..
types fix: oops remove special code for endpoints 2024-05-16 10:12:58 +02:00
key.rs fix(apb): dont panic if missing pubkey, return "" 2024-05-02 13:16:37 +02:00
lib.rs feat(apb): actor endpoints type (extends Object) 2024-05-15 17:17:02 +02:00
macros.rs feat(apb): Node::Array is an array of nodes 2024-05-19 21:18:04 +02:00
node.rs feat(apb): Node::Array is an array of nodes 2024-05-19 21:18:04 +02:00
README.md feat: separated apb types into crate, reworked 2024-04-06 16:56:13 +02:00
server.rs feat(apb): added all outbox routes, authed inbox 2024-04-22 22:42:45 +02:00
target.rs fix(apb): don't require Object for Addressed 2024-05-02 02:58:19 +02:00

activitystream

here live all ActivityStreams types

structure

├── Link
│   └── Mention
├── Object
│   ├── Activity
│   │   ├── Accept
│   │   │   └── TentativeAccept
│   │   ├── Add
│   │   ├── Announce
│   │   ├── Create
│   │   ├── Delete
│   │   ├── Dislike
│   │   ├── Flag
│   │   ├── Follow
│   │   ├── IntransitiveActivity
│   │   │   ├── Arrive
│   │   │   ├── Question
│   │   │   └── Travel
│   │   ├── Ignore
│   │   │   └── Block
│   │   ├── Join
│   │   ├── Leave
│   │   ├── Like
│   │   ├── Listen
│   │   ├── Move
│   │   ├── Offer
│   │   │   └── Invite
│   │   ├── Read
│   │   ├── Reject
│   │   │   └── TentativeReject
│   │   ├── Remove
│   │   ├── Undo
│   │   ├── Update
│   │   └── View
│   ├── Actor (not technically)
│   │   ├── Application
│   │   ├── Group
│   │   ├── Organization
│   │   └── Person
│   ├── Article
│   ├── Collection
│   │   ├── CollectionPage
│   │   └── OrderedCollection
│   │       └── OrderedCollectionPage
│   ├── Document
│   │   ├── Audio
│   │   ├── Image
│   │   ├── Page
│   │   └── Video
│   ├── Event
│   ├── Note
│   ├── Place
│   ├── Profile
│   ├── Relationship
│   └── Tombstone
└── PublicKey (not in spec)