@fedify/fedify 0.14.0-dev.327 → 0.14.0-dev.331
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @fedify/fedify might be problematic. Click here for more details.
- package/CHANGES.md +12 -0
- package/esm/codegen/schema.yaml +10 -0
- package/esm/federation/send.js +4 -1
- package/esm/sig/proof.js +1 -0
- package/esm/vocab/accept.yaml +1 -0
- package/esm/vocab/activity.yaml +7 -0
- package/esm/vocab/add.yaml +1 -0
- package/esm/vocab/announce.yaml +1 -0
- package/esm/vocab/application.yaml +18 -0
- package/esm/vocab/arrive.yaml +1 -0
- package/esm/vocab/article.yaml +1 -0
- package/esm/vocab/audio.yaml +1 -0
- package/esm/vocab/block.yaml +1 -0
- package/esm/vocab/chatmessage.yaml +1 -0
- package/esm/vocab/collection.yaml +6 -0
- package/esm/vocab/collectionpage.yaml +4 -0
- package/esm/vocab/create.yaml +1 -0
- package/esm/vocab/delete.yaml +1 -0
- package/esm/vocab/dislike.yaml +1 -0
- package/esm/vocab/document.yaml +3 -0
- package/esm/vocab/emoji.yaml +1 -0
- package/esm/vocab/endpoints.yaml +7 -0
- package/esm/vocab/event.yaml +1 -0
- package/esm/vocab/flag.yaml +1 -0
- package/esm/vocab/follow.yaml +1 -0
- package/esm/vocab/group.yaml +18 -0
- package/esm/vocab/hashtag.yaml +1 -0
- package/esm/vocab/ignore.yaml +1 -0
- package/esm/vocab/image.yaml +1 -0
- package/esm/vocab/intransitiveactivity.yaml +1 -0
- package/esm/vocab/invite.yaml +1 -0
- package/esm/vocab/join.yaml +1 -0
- package/esm/vocab/key.yaml +3 -0
- package/esm/vocab/leave.yaml +1 -0
- package/esm/vocab/like.yaml +1 -0
- package/esm/vocab/link.yaml +9 -0
- package/esm/vocab/listen.yaml +1 -0
- package/esm/vocab/mention.yaml +1 -0
- package/esm/vocab/move.yaml +1 -0
- package/esm/vocab/multikey.yaml +3 -0
- package/esm/vocab/note.yaml +1 -0
- package/esm/vocab/object.yaml +29 -0
- package/esm/vocab/offer.yaml +1 -0
- package/esm/vocab/orderedcollection.yaml +2 -0
- package/esm/vocab/orderedcollectionpage.yaml +3 -0
- package/esm/vocab/organization.yaml +18 -0
- package/esm/vocab/page.yaml +1 -0
- package/esm/vocab/person.yaml +18 -0
- package/esm/vocab/place.yaml +7 -0
- package/esm/vocab/profile.yaml +2 -0
- package/esm/vocab/propertyvalue.yaml +3 -0
- package/esm/vocab/question.yaml +5 -0
- package/esm/vocab/read.yaml +1 -0
- package/esm/vocab/reject.yaml +1 -0
- package/esm/vocab/relationship.yaml +4 -0
- package/esm/vocab/remove.yaml +1 -0
- package/esm/vocab/service.yaml +18 -0
- package/esm/vocab/tentativeaccept.yaml +1 -0
- package/esm/vocab/tentativereject.yaml +1 -0
- package/esm/vocab/tombstone.yaml +2 -0
- package/esm/vocab/travel.yaml +1 -0
- package/esm/vocab/undo.yaml +1 -0
- package/esm/vocab/update.yaml +1 -0
- package/esm/vocab/video.yaml +1 -0
- package/esm/vocab/view.yaml +1 -0
- package/esm/vocab/vocab.js +5993 -240
- package/package.json +1 -1
- package/types/federation/send.d.ts.map +1 -1
- package/types/sig/proof.d.ts.map +1 -1
- package/types/vocab/vocab.d.ts +473 -0
- package/types/vocab/vocab.d.ts.map +1 -1
    
        package/esm/vocab/ignore.yaml
    CHANGED
    
    
    
        package/esm/vocab/image.yaml
    CHANGED
    
    
    
        package/esm/vocab/invite.yaml
    CHANGED
    
    
    
        package/esm/vocab/join.yaml
    CHANGED
    
    
    
        package/esm/vocab/key.yaml
    CHANGED
    
    | @@ -1,5 +1,6 @@ | |
| 1 1 | 
             
            $schema: ../codegen/schema.yaml
         | 
| 2 2 | 
             
            name: CryptographicKey
         | 
| 3 | 
            +
            compactName: CryptographicKey
         | 
| 3 4 | 
             
            uri: "https://w3id.org/security#Key"
         | 
| 4 5 | 
             
            entity: true
         | 
| 5 6 | 
             
            description: A key owned by an actor.
         | 
| @@ -8,6 +9,7 @@ defaultContext: "https://w3id.org/security/v1" | |
| 8 9 | 
             
            properties:
         | 
| 9 10 | 
             
            - singularName: owner
         | 
| 10 11 | 
             
              functional: true
         | 
| 12 | 
            +
              compactName: owner
         | 
| 11 13 | 
             
              uri: "https://w3id.org/security#owner"
         | 
| 12 14 | 
             
              description: An actor who owns this key.
         | 
| 13 15 | 
             
              range:
         | 
| @@ -19,6 +21,7 @@ properties: | |
| 19 21 |  | 
| 20 22 | 
             
            - singularName: publicKey
         | 
| 21 23 | 
             
              functional: true
         | 
| 24 | 
            +
              compactName: publicKeyPem
         | 
| 22 25 | 
             
              uri: "https://w3id.org/security#publicKeyPem"
         | 
| 23 26 | 
             
              description: A PEM-encoded public key.
         | 
| 24 27 | 
             
              range:
         | 
    
        package/esm/vocab/leave.yaml
    CHANGED
    
    
    
        package/esm/vocab/like.yaml
    CHANGED
    
    
    
        package/esm/vocab/link.yaml
    CHANGED
    
    | @@ -1,5 +1,6 @@ | |
| 1 1 | 
             
            $schema: ../codegen/schema.yaml
         | 
| 2 2 | 
             
            name: Link
         | 
| 3 | 
            +
            compactName: Link
         | 
| 3 4 | 
             
            uri: "https://www.w3.org/ns/activitystreams#Link"
         | 
| 4 5 | 
             
            entity: false
         | 
| 5 6 | 
             
            description: |
         | 
| @@ -16,6 +17,7 @@ defaultContext: "https://www.w3.org/ns/activitystreams" | |
| 16 17 | 
             
            properties:
         | 
| 17 18 | 
             
            - singularName: href
         | 
| 18 19 | 
             
              functional: true
         | 
| 20 | 
            +
              compactName: href
         | 
| 19 21 | 
             
              uri: "https://www.w3.org/ns/activitystreams#href"
         | 
| 20 22 | 
             
              description: "The target resource pointed to by a {@link Link}."
         | 
| 21 23 | 
             
              range:
         | 
| @@ -24,6 +26,7 @@ properties: | |
| 24 26 | 
             
            - pluralName: rels
         | 
| 25 27 | 
             
              singularName: rel
         | 
| 26 28 | 
             
              singularAccessor: true
         | 
| 29 | 
            +
              compactName: rel
         | 
| 27 30 | 
             
              uri: "https://www.w3.org/ns/activitystreams#rel"
         | 
| 28 31 | 
             
              description: |
         | 
| 29 32 | 
             
                A link relation associated with a {@link Link}. The value MUST conform to
         | 
| @@ -37,6 +40,7 @@ properties: | |
| 37 40 |  | 
| 38 41 | 
             
            - singularName: mediaType
         | 
| 39 42 | 
             
              functional: true
         | 
| 43 | 
            +
              compactName: mediaType
         | 
| 40 44 | 
             
              uri: "https://www.w3.org/ns/activitystreams#mediaType"
         | 
| 41 45 | 
             
              description: |
         | 
| 42 46 | 
             
                When used on a {@link Link}, identifies the MIME media type of the
         | 
| @@ -47,6 +51,7 @@ properties: | |
| 47 51 | 
             
            - pluralName: names
         | 
| 48 52 | 
             
              singularName: name
         | 
| 49 53 | 
             
              singularAccessor: true
         | 
| 54 | 
            +
              compactName: name
         | 
| 50 55 | 
             
              uri: "https://www.w3.org/ns/activitystreams#name"
         | 
| 51 56 | 
             
              description: |
         | 
| 52 57 | 
             
                A simple, human-readable, plain-text name for the object. HTML markup MUST
         | 
| @@ -58,6 +63,7 @@ properties: | |
| 58 63 |  | 
| 59 64 | 
             
            - singularName: language
         | 
| 60 65 | 
             
              functional: true
         | 
| 66 | 
            +
              compactName: hreflang
         | 
| 61 67 | 
             
              uri: "https://www.w3.org/ns/activitystreams#hreflang"
         | 
| 62 68 | 
             
              description: |
         | 
| 63 69 | 
             
                Hints as to the language used by the target resource.
         | 
| @@ -67,6 +73,7 @@ properties: | |
| 67 73 |  | 
| 68 74 | 
             
            - singularName: height
         | 
| 69 75 | 
             
              functional: true
         | 
| 76 | 
            +
              compactName: height
         | 
| 70 77 | 
             
              uri: "https://www.w3.org/ns/activitystreams#height"
         | 
| 71 78 | 
             
              description: |
         | 
| 72 79 | 
             
                On a {@link Link}, specifies a hint as to the rendering height in
         | 
| @@ -76,6 +83,7 @@ properties: | |
| 76 83 |  | 
| 77 84 | 
             
            - singularName: width
         | 
| 78 85 | 
             
              functional: true
         | 
| 86 | 
            +
              compactName: width
         | 
| 79 87 | 
             
              uri: "https://www.w3.org/ns/activitystreams#width"
         | 
| 80 88 | 
             
              description: |
         | 
| 81 89 | 
             
                On a {@link Link}, specifies a hint as to the rendering width in
         | 
| @@ -85,6 +93,7 @@ properties: | |
| 85 93 |  | 
| 86 94 | 
             
            - pluralName: previews
         | 
| 87 95 | 
             
              singularName: preview
         | 
| 96 | 
            +
              compactName: preview
         | 
| 88 97 | 
             
              uri: "https://www.w3.org/ns/activitystreams#preview"
         | 
| 89 98 | 
             
              description: "Identifies an entity that provides a preview of this object."
         | 
| 90 99 | 
             
              range:
         | 
    
        package/esm/vocab/listen.yaml
    CHANGED
    
    
    
        package/esm/vocab/mention.yaml
    CHANGED
    
    
    
        package/esm/vocab/move.yaml
    CHANGED
    
    
    
        package/esm/vocab/multikey.yaml
    CHANGED
    
    | @@ -1,5 +1,6 @@ | |
| 1 1 | 
             
            $schema: ../codegen/schema.yaml
         | 
| 2 2 | 
             
            name: Multikey
         | 
| 3 | 
            +
            compactName: Multikey
         | 
| 3 4 | 
             
            uri: "https://w3id.org/security#Multikey"
         | 
| 4 5 | 
             
            entity: true
         | 
| 5 6 | 
             
            description: |
         | 
| @@ -12,6 +13,7 @@ defaultContext: "https://w3id.org/security/multikey/v1" | |
| 12 13 | 
             
            properties:
         | 
| 13 14 | 
             
            - singularName: controller
         | 
| 14 15 | 
             
              functional: true
         | 
| 16 | 
            +
              compactName: controller
         | 
| 15 17 | 
             
              uri: "https://w3id.org/security#controller"
         | 
| 16 18 | 
             
              description: An actor who owns this key.
         | 
| 17 19 | 
             
              range:
         | 
| @@ -23,6 +25,7 @@ properties: | |
| 23 25 |  | 
| 24 26 | 
             
            - singularName: publicKey
         | 
| 25 27 | 
             
              functional: true
         | 
| 28 | 
            +
              compactName: publicKeyMultibase
         | 
| 26 29 | 
             
              uri: "https://w3id.org/security#publicKeyMultibase"
         | 
| 27 30 | 
             
              description: |
         | 
| 28 31 | 
             
                A [Multibase]-encoded value of a [Multicodec] prefix and the key.
         | 
    
        package/esm/vocab/note.yaml
    CHANGED
    
    
    
        package/esm/vocab/object.yaml
    CHANGED
    
    | @@ -1,5 +1,6 @@ | |
| 1 1 | 
             
            $schema: ../codegen/schema.yaml
         | 
| 2 2 | 
             
            name: Object
         | 
| 3 | 
            +
            compactName: Object
         | 
| 3 4 | 
             
            uri: "https://www.w3.org/ns/activitystreams#Object"
         | 
| 4 5 | 
             
            entity: true
         | 
| 5 6 | 
             
            description: |
         | 
| @@ -16,6 +17,7 @@ defaultContext: | |
| 16 17 | 
             
            properties:
         | 
| 17 18 | 
             
            - pluralName: attachments
         | 
| 18 19 | 
             
              singularName: attachment
         | 
| 20 | 
            +
              compactName: attachment
         | 
| 19 21 | 
             
              uri: "https://www.w3.org/ns/activitystreams#attachment"
         | 
| 20 22 | 
             
              description: |
         | 
| 21 23 | 
             
                Identifies a resource attached or related to an object that potentially
         | 
| @@ -29,6 +31,7 @@ properties: | |
| 29 31 | 
             
            - pluralName: attributions
         | 
| 30 32 | 
             
              singularName: attribution
         | 
| 31 33 | 
             
              singularAccessor: true
         | 
| 34 | 
            +
              compactName: attributedTo
         | 
| 32 35 | 
             
              uri: "https://www.w3.org/ns/activitystreams#attributedTo"
         | 
| 33 36 | 
             
              description: |
         | 
| 34 37 | 
             
                Identifies one or more entities to which this object is attributed.
         | 
| @@ -44,6 +47,7 @@ properties: | |
| 44 47 | 
             
            - pluralName: audiences
         | 
| 45 48 | 
             
              singularName: audience
         | 
| 46 49 | 
             
              singularAccessor: true
         | 
| 50 | 
            +
              compactName: audience
         | 
| 47 51 | 
             
              uri: "https://www.w3.org/ns/activitystreams#audience"
         | 
| 48 52 | 
             
              description: |
         | 
| 49 53 | 
             
                Identifies one or more entities that represent the total population of
         | 
| @@ -54,6 +58,7 @@ properties: | |
| 54 58 | 
             
            - pluralName: contents
         | 
| 55 59 | 
             
              singularName: content
         | 
| 56 60 | 
             
              singularAccessor: true
         | 
| 61 | 
            +
              compactName: content
         | 
| 57 62 | 
             
              uri: "https://www.w3.org/ns/activitystreams#content"
         | 
| 58 63 | 
             
              description: |
         | 
| 59 64 | 
             
                The content or textual representation of the Object encoded as a JSON
         | 
| @@ -68,6 +73,7 @@ properties: | |
| 68 73 | 
             
            - pluralName: contexts
         | 
| 69 74 | 
             
              singularName: context
         | 
| 70 75 | 
             
              uri: "https://www.w3.org/ns/activitystreams#context"
         | 
| 76 | 
            +
              compactName: context
         | 
| 71 77 | 
             
              description: |
         | 
| 72 78 | 
             
                Identifies the context within which the object exists or an activity was
         | 
| 73 79 | 
             
                performed.
         | 
| @@ -83,6 +89,7 @@ properties: | |
| 83 89 | 
             
            - pluralName: names
         | 
| 84 90 | 
             
              singularName: name
         | 
| 85 91 | 
             
              singularAccessor: true
         | 
| 92 | 
            +
              compactName: name
         | 
| 86 93 | 
             
              uri: "https://www.w3.org/ns/activitystreams#name"
         | 
| 87 94 | 
             
              description: |
         | 
| 88 95 | 
             
                A simple, human-readable, plain-text name for the object. HTML markup MUST
         | 
| @@ -94,6 +101,7 @@ properties: | |
| 94 101 |  | 
| 95 102 | 
             
            - singularName: endTime
         | 
| 96 103 | 
             
              functional: true
         | 
| 104 | 
            +
              compactName: endTime
         | 
| 97 105 | 
             
              uri: "https://www.w3.org/ns/activitystreams#endTime"
         | 
| 98 106 | 
             
              description: |
         | 
| 99 107 | 
             
                The date and time describing the actual or expected ending time of
         | 
| @@ -105,6 +113,7 @@ properties: | |
| 105 113 |  | 
| 106 114 | 
             
            - pluralName: generators
         | 
| 107 115 | 
             
              singularName: generator
         | 
| 116 | 
            +
              compactName: generator
         | 
| 108 117 | 
             
              uri: "https://www.w3.org/ns/activitystreams#generator"
         | 
| 109 118 | 
             
              description: |
         | 
| 110 119 | 
             
                Identifies the entity (e.g. an application) that generated the object.
         | 
| @@ -115,6 +124,7 @@ properties: | |
| 115 124 | 
             
            - pluralName: icons
         | 
| 116 125 | 
             
              singularName: icon
         | 
| 117 126 | 
             
              singularAccessor: true
         | 
| 127 | 
            +
              compactName: icon
         | 
| 118 128 | 
             
              uri: "https://www.w3.org/ns/activitystreams#icon"
         | 
| 119 129 | 
             
              description: |
         | 
| 120 130 | 
             
                Indicates an entity that describes an icon for this object.
         | 
| @@ -126,6 +136,7 @@ properties: | |
| 126 136 | 
             
            - pluralName: images
         | 
| 127 137 | 
             
              singularName: image
         | 
| 128 138 | 
             
              singularAccessor: true
         | 
| 139 | 
            +
              compactName: image
         | 
| 129 140 | 
             
              uri: "https://www.w3.org/ns/activitystreams#image"
         | 
| 130 141 | 
             
              description: |
         | 
| 131 142 | 
             
                Indicates an entity that describes an image for this object.
         | 
| @@ -137,6 +148,7 @@ properties: | |
| 137 148 | 
             
            - pluralName: replyTargets
         | 
| 138 149 | 
             
              singularName: replyTarget
         | 
| 139 150 | 
             
              singularAccessor: true
         | 
| 151 | 
            +
              compactName: inReplyTo
         | 
| 140 152 | 
             
              uri: "https://www.w3.org/ns/activitystreams#inReplyTo"
         | 
| 141 153 | 
             
              description: |
         | 
| 142 154 | 
             
                Indicates one or more entities for which this object is considered
         | 
| @@ -148,6 +160,7 @@ properties: | |
| 148 160 | 
             
            - pluralName: locations
         | 
| 149 161 | 
             
              singularName: location
         | 
| 150 162 | 
             
              singularAccessor: true
         | 
| 163 | 
            +
              compactName: location
         | 
| 151 164 | 
             
              uri: "https://www.w3.org/ns/activitystreams#location"
         | 
| 152 165 | 
             
              description: |
         | 
| 153 166 | 
             
               	Indicates one or more physical or logical locations associated with
         | 
| @@ -159,6 +172,7 @@ properties: | |
| 159 172 | 
             
            - pluralName: previews
         | 
| 160 173 | 
             
              singularName: preview
         | 
| 161 174 | 
             
              singularAccessor: true
         | 
| 175 | 
            +
              compactName: preview
         | 
| 162 176 | 
             
              uri: "https://www.w3.org/ns/activitystreams#preview"
         | 
| 163 177 | 
             
              description: |
         | 
| 164 178 | 
             
                Identifies an entity that provides a preview of this object.
         | 
| @@ -168,6 +182,7 @@ properties: | |
| 168 182 |  | 
| 169 183 | 
             
            - singularName: published
         | 
| 170 184 | 
             
              functional: true
         | 
| 185 | 
            +
              compactName: published
         | 
| 171 186 | 
             
              uri: "https://www.w3.org/ns/activitystreams#published"
         | 
| 172 187 | 
             
              description: The date and time at which the object was published.
         | 
| 173 188 | 
             
              range:
         | 
| @@ -175,6 +190,7 @@ properties: | |
| 175 190 |  | 
| 176 191 | 
             
            - singularName: replies
         | 
| 177 192 | 
             
              functional: true
         | 
| 193 | 
            +
              compactName: replies
         | 
| 178 194 | 
             
              uri: "https://www.w3.org/ns/activitystreams#replies"
         | 
| 179 195 | 
             
              description: |
         | 
| 180 196 | 
             
                Identifies a {@link Collection} containing objects considered to be
         | 
| @@ -184,6 +200,7 @@ properties: | |
| 184 200 |  | 
| 185 201 | 
             
            - singularName: startTime
         | 
| 186 202 | 
             
              functional: true
         | 
| 203 | 
            +
              compactName: startTime
         | 
| 187 204 | 
             
              uri: "https://www.w3.org/ns/activitystreams#startTime"
         | 
| 188 205 | 
             
              description: |
         | 
| 189 206 | 
             
                The date and time describing the actual or expected starting time of
         | 
| @@ -196,6 +213,7 @@ properties: | |
| 196 213 | 
             
            - pluralName: summaries
         | 
| 197 214 | 
             
              singularName: summary
         | 
| 198 215 | 
             
              singularAccessor: true
         | 
| 216 | 
            +
              compactName: summary
         | 
| 199 217 | 
             
              uri: "https://www.w3.org/ns/activitystreams#summary"
         | 
| 200 218 | 
             
              description: |
         | 
| 201 219 | 
             
                A natural language summarization of the object encoded as HTML.
         | 
| @@ -206,6 +224,7 @@ properties: | |
| 206 224 |  | 
| 207 225 | 
             
            - pluralName: tags
         | 
| 208 226 | 
             
              singularName: tag
         | 
| 227 | 
            +
              compactName: tag
         | 
| 209 228 | 
             
              uri: "https://www.w3.org/ns/activitystreams#tag"
         | 
| 210 229 | 
             
              description: |
         | 
| 211 230 | 
             
                One or more "tags" that have been associated with an objects.
         | 
| @@ -218,6 +237,7 @@ properties: | |
| 218 237 |  | 
| 219 238 | 
             
            - singularName: updated
         | 
| 220 239 | 
             
              functional: true
         | 
| 240 | 
            +
              compactName: updated
         | 
| 221 241 | 
             
              uri: "https://www.w3.org/ns/activitystreams#updated"
         | 
| 222 242 | 
             
              description: The date and time at which the object was updated.
         | 
| 223 243 | 
             
              range:
         | 
| @@ -226,6 +246,7 @@ properties: | |
| 226 246 | 
             
            - pluralName: urls
         | 
| 227 247 | 
             
              singularName: url
         | 
| 228 248 | 
             
              singularAccessor: true
         | 
| 249 | 
            +
              compactName: url
         | 
| 229 250 | 
             
              uri: "https://www.w3.org/ns/activitystreams#url"
         | 
| 230 251 | 
             
              description: |
         | 
| 231 252 | 
             
                Identifies one or more links to representations of the object.
         | 
| @@ -236,6 +257,7 @@ properties: | |
| 236 257 | 
             
            - pluralName: tos
         | 
| 237 258 | 
             
              singularName: to
         | 
| 238 259 | 
             
              singularAccessor: true
         | 
| 260 | 
            +
              compactName: to
         | 
| 239 261 | 
             
              uri: "https://www.w3.org/ns/activitystreams#to"
         | 
| 240 262 | 
             
              description: |
         | 
| 241 263 | 
             
                Identifies an entity considered to be part of the public primary audience
         | 
| @@ -246,6 +268,7 @@ properties: | |
| 246 268 | 
             
            - pluralName: btos
         | 
| 247 269 | 
             
              singularName: bto
         | 
| 248 270 | 
             
              singularAccessor: true
         | 
| 271 | 
            +
              compactName: bto
         | 
| 249 272 | 
             
              uri: "https://www.w3.org/ns/activitystreams#bto"
         | 
| 250 273 | 
             
              description: |
         | 
| 251 274 | 
             
                Identifies an Object that is part of the private primary audience of
         | 
| @@ -256,6 +279,7 @@ properties: | |
| 256 279 | 
             
            - pluralName: ccs
         | 
| 257 280 | 
             
              singularName: cc
         | 
| 258 281 | 
             
              singularAccessor: true
         | 
| 282 | 
            +
              compactName: cc
         | 
| 259 283 | 
             
              uri: "https://www.w3.org/ns/activitystreams#cc"
         | 
| 260 284 | 
             
              description: |
         | 
| 261 285 | 
             
                Identifies an Object that is part of the public secondary audience of
         | 
| @@ -266,6 +290,7 @@ properties: | |
| 266 290 | 
             
            - pluralName: bccs
         | 
| 267 291 | 
             
              singularName: bcc
         | 
| 268 292 | 
             
              singularAccessor: true
         | 
| 293 | 
            +
              compactName: bcc
         | 
| 269 294 | 
             
              uri: "https://www.w3.org/ns/activitystreams#bcc"
         | 
| 270 295 | 
             
              description: |
         | 
| 271 296 | 
             
                Identifies one or more Objects that are part of the private secondary
         | 
| @@ -275,6 +300,7 @@ properties: | |
| 275 300 |  | 
| 276 301 | 
             
            - singularName: mediaType
         | 
| 277 302 | 
             
              functional: true
         | 
| 303 | 
            +
              compactName: mediaType
         | 
| 278 304 | 
             
              uri: "https://www.w3.org/ns/activitystreams#mediaType"
         | 
| 279 305 | 
             
              description: |
         | 
| 280 306 | 
             
                When used on an {@link Object}, identifies the MIME media type of the value
         | 
| @@ -285,6 +311,7 @@ properties: | |
| 285 311 |  | 
| 286 312 | 
             
            - singularName: duration
         | 
| 287 313 | 
             
              functional: true
         | 
| 314 | 
            +
              compactName: duration
         | 
| 288 315 | 
             
              uri: "https://www.w3.org/ns/activitystreams#duration"
         | 
| 289 316 | 
             
              description: |
         | 
| 290 317 | 
             
                When the object describes a time-bound resource, such as an audio or video,
         | 
| @@ -297,6 +324,7 @@ properties: | |
| 297 324 |  | 
| 298 325 | 
             
            - singularName: sensitive
         | 
| 299 326 | 
             
              functional: true
         | 
| 327 | 
            +
              compactName: sensitive
         | 
| 300 328 | 
             
              uri: "https://www.w3.org/ns/activitystreams#sensitive"
         | 
| 301 329 | 
             
              description: Whether it contains any sensitive contents.
         | 
| 302 330 | 
             
              range:
         | 
| @@ -305,6 +333,7 @@ properties: | |
| 305 333 | 
             
            - singularName: proof
         | 
| 306 334 | 
             
              pluralName: proofs
         | 
| 307 335 | 
             
              singularAccessor: true
         | 
| 336 | 
            +
              compactName: proof
         | 
| 308 337 | 
             
              uri: "https://w3id.org/security#proof"
         | 
| 309 338 | 
             
              container: graph
         | 
| 310 339 | 
             
              embedContext:
         | 
    
        package/esm/vocab/offer.yaml
    CHANGED
    
    
| @@ -1,5 +1,6 @@ | |
| 1 1 | 
             
            $schema: ../codegen/schema.yaml
         | 
| 2 2 | 
             
            name: OrderedCollection
         | 
| 3 | 
            +
            compactName: OrderedCollection
         | 
| 3 4 | 
             
            uri: "https://www.w3.org/ns/activitystreams#OrderedCollection"
         | 
| 4 5 | 
             
            extends: "https://www.w3.org/ns/activitystreams#Collection"
         | 
| 5 6 | 
             
            entity: true
         | 
| @@ -17,6 +18,7 @@ defaultContext: | |
| 17 18 | 
             
            properties:
         | 
| 18 19 | 
             
            - pluralName: items
         | 
| 19 20 | 
             
              singularName: item
         | 
| 21 | 
            +
              compactName: orderedItems
         | 
| 20 22 | 
             
              uri: "https://www.w3.org/ns/activitystreams#items"
         | 
| 21 23 | 
             
              container: list
         | 
| 22 24 | 
             
              description: |
         | 
| @@ -1,5 +1,6 @@ | |
| 1 1 | 
             
            $schema: ../codegen/schema.yaml
         | 
| 2 2 | 
             
            name: OrderedCollectionPage
         | 
| 3 | 
            +
            compactName: OrderedCollectionPage
         | 
| 3 4 | 
             
            uri: "https://www.w3.org/ns/activitystreams#OrderedCollectionPage"
         | 
| 4 5 | 
             
            extends: "https://www.w3.org/ns/activitystreams#CollectionPage"
         | 
| 5 6 | 
             
            entity: true
         | 
| @@ -18,6 +19,7 @@ defaultContext: | |
| 18 19 | 
             
            properties:
         | 
| 19 20 | 
             
            - pluralName: items
         | 
| 20 21 | 
             
              singularName: item
         | 
| 22 | 
            +
              compactName: orderedItems
         | 
| 21 23 | 
             
              uri: "https://www.w3.org/ns/activitystreams#items"
         | 
| 22 24 | 
             
              container: list
         | 
| 23 25 | 
             
              description: |
         | 
| @@ -29,6 +31,7 @@ properties: | |
| 29 31 |  | 
| 30 32 | 
             
            - singularName: startIndex
         | 
| 31 33 | 
             
              functional: true
         | 
| 34 | 
            +
              compactName: startIndex
         | 
| 32 35 | 
             
              uri: "https://www.w3.org/ns/activitystreams#startIndex"
         | 
| 33 36 | 
             
              description: |
         | 
| 34 37 | 
             
                A non-negative integer value identifying the relative position within
         | 
| @@ -1,5 +1,6 @@ | |
| 1 1 | 
             
            $schema: ../codegen/schema.yaml
         | 
| 2 2 | 
             
            name: Organization
         | 
| 3 | 
            +
            compactName: Organization
         | 
| 3 4 | 
             
            uri: "https://www.w3.org/ns/activitystreams#Organization"
         | 
| 4 5 | 
             
            extends: "https://www.w3.org/ns/activitystreams#Object"
         | 
| 5 6 | 
             
            entity: true
         | 
| @@ -30,6 +31,7 @@ properties: | |
| 30 31 | 
             
            - pluralName: preferredUsernames
         | 
| 31 32 | 
             
              singularName: preferredUsername
         | 
| 32 33 | 
             
              singularAccessor: true
         | 
| 34 | 
            +
              compactName: preferredUsername
         | 
| 33 35 | 
             
              uri: "https://www.w3.org/ns/activitystreams#preferredUsername"
         | 
| 34 36 | 
             
              description: |
         | 
| 35 37 | 
             
                A short username which may be used to refer to the actor,
         | 
| @@ -41,6 +43,7 @@ properties: | |
| 41 43 | 
             
            - pluralName: publicKeys
         | 
| 42 44 | 
             
              singularName: publicKey
         | 
| 43 45 | 
             
              singularAccessor: true
         | 
| 46 | 
            +
              compactName: publicKey
         | 
| 44 47 | 
             
              uri: "https://w3id.org/security#publicKey"
         | 
| 45 48 | 
             
              description: A public part of the key pair owned by this actor.
         | 
| 46 49 | 
             
              untyped: true
         | 
| @@ -50,6 +53,7 @@ properties: | |
| 50 53 | 
             
            - pluralName: assertionMethods
         | 
| 51 54 | 
             
              singularName: assertionMethod
         | 
| 52 55 | 
             
              singularAccessor: true
         | 
| 56 | 
            +
              compactName: assertionMethod
         | 
| 53 57 | 
             
              uri: "https://w3id.org/security#assertionMethod"
         | 
| 54 58 | 
             
              description: |
         | 
| 55 59 | 
             
                Represents this actor's public keys.  It serves as equivalent to
         | 
| @@ -61,6 +65,7 @@ properties: | |
| 61 65 |  | 
| 62 66 | 
             
            - singularName: manuallyApprovesFollowers
         | 
| 63 67 | 
             
              functional: true
         | 
| 68 | 
            +
              compactName: manuallyApprovesFollowers
         | 
| 64 69 | 
             
              uri: "https://www.w3.org/ns/activitystreams#manuallyApprovesFollowers"
         | 
| 65 70 | 
             
              description: |
         | 
| 66 71 | 
             
                When `true`, conveys that for this actor, follow requests are not usually
         | 
| @@ -74,6 +79,7 @@ properties: | |
| 74 79 |  | 
| 75 80 | 
             
            - singularName: inbox
         | 
| 76 81 | 
             
              functional: true
         | 
| 82 | 
            +
              compactName: inbox
         | 
| 77 83 | 
             
              uri: "http://www.w3.org/ns/ldp#inbox"
         | 
| 78 84 | 
             
              description: |
         | 
| 79 85 | 
             
                The inbox stream contains all activities received by the actor.  The server
         | 
| @@ -94,6 +100,7 @@ properties: | |
| 94 100 |  | 
| 95 101 | 
             
            - singularName: outbox
         | 
| 96 102 | 
             
              functional: true
         | 
| 103 | 
            +
              compactName: outbox
         | 
| 97 104 | 
             
              uri: "https://www.w3.org/ns/activitystreams#outbox"
         | 
| 98 105 | 
             
              description: |
         | 
| 99 106 | 
             
                The outbox stream contains activities the user has published,
         | 
| @@ -111,6 +118,7 @@ properties: | |
| 111 118 |  | 
| 112 119 | 
             
            - singularName: following
         | 
| 113 120 | 
             
              functional: true
         | 
| 121 | 
            +
              compactName: following
         | 
| 114 122 | 
             
              uri: "https://www.w3.org/ns/activitystreams#following"
         | 
| 115 123 | 
             
              description: |
         | 
| 116 124 | 
             
                This is a list of everybody that the actor has followed, added as a
         | 
| @@ -123,6 +131,7 @@ properties: | |
| 123 131 |  | 
| 124 132 | 
             
            - singularName: followers
         | 
| 125 133 | 
             
              functional: true
         | 
| 134 | 
            +
              compactName: followers
         | 
| 126 135 | 
             
              uri: "https://www.w3.org/ns/activitystreams#followers"
         | 
| 127 136 | 
             
              description: |
         | 
| 128 137 | 
             
                This is a list of everyone who has sent a {@link Follow} activity
         | 
| @@ -138,6 +147,7 @@ properties: | |
| 138 147 |  | 
| 139 148 | 
             
            - singularName: liked
         | 
| 140 149 | 
             
              functional: true
         | 
| 150 | 
            +
              compactName: liked
         | 
| 141 151 | 
             
              uri: "https://www.w3.org/ns/activitystreams#liked"
         | 
| 142 152 | 
             
              description: |
         | 
| 143 153 | 
             
                This is a list of every object from all of the actor's {@link Like}
         | 
| @@ -151,6 +161,7 @@ properties: | |
| 151 161 |  | 
| 152 162 | 
             
            - singularName: featured
         | 
| 153 163 | 
             
              functional: true
         | 
| 164 | 
            +
              compactName: featured
         | 
| 154 165 | 
             
              uri: "http://joinmastodon.org/ns#featured"
         | 
| 155 166 | 
             
              description: |
         | 
| 156 167 | 
             
                What is known in Mastodon as "pinned statuses", or statuses that are always
         | 
| @@ -162,6 +173,7 @@ properties: | |
| 162 173 |  | 
| 163 174 | 
             
            - singularName: featuredTags
         | 
| 164 175 | 
             
              functional: true
         | 
| 176 | 
            +
              compactName: featuredTags
         | 
| 165 177 | 
             
              uri: "http://joinmastodon.org/ns#featuredTags"
         | 
| 166 178 | 
             
              description: |
         | 
| 167 179 | 
             
                What is known in Mastodon as "featured hashtags", hashtags that are featured
         | 
| @@ -174,6 +186,7 @@ properties: | |
| 174 186 | 
             
            - pluralName: streams
         | 
| 175 187 | 
             
              singularName: stream
         | 
| 176 188 | 
             
              singularAccessor: false
         | 
| 189 | 
            +
              compactName: streams
         | 
| 177 190 | 
             
              uri: "https://www.w3.org/ns/activitystreams#streams"
         | 
| 178 191 | 
             
              description: |
         | 
| 179 192 | 
             
                A list of supplementary Collections which may be of interest.
         | 
| @@ -182,6 +195,7 @@ properties: | |
| 182 195 |  | 
| 183 196 | 
             
            - singularName: endpoints
         | 
| 184 197 | 
             
              functional: true
         | 
| 198 | 
            +
              compactName: endpoints
         | 
| 185 199 | 
             
              uri: "https://www.w3.org/ns/activitystreams#endpoints"
         | 
| 186 200 | 
             
              description: |
         | 
| 187 201 | 
             
                A JSON object which maps additional (typically server/domain-wide) endpoints
         | 
| @@ -193,6 +207,7 @@ properties: | |
| 193 207 |  | 
| 194 208 | 
             
            - singularName: discoverable
         | 
| 195 209 | 
             
              functional: true
         | 
| 210 | 
            +
              compactName: discoverable
         | 
| 196 211 | 
             
              uri: "http://joinmastodon.org/ns#discoverable"
         | 
| 197 212 | 
             
              description: |
         | 
| 198 213 | 
             
                Allows users to opt-in or opt-out of discoverability features like
         | 
| @@ -204,6 +219,7 @@ properties: | |
| 204 219 |  | 
| 205 220 | 
             
            - singularName: suspended
         | 
| 206 221 | 
             
              functional: true
         | 
| 222 | 
            +
              compactName: suspended
         | 
| 207 223 | 
             
              uri: "http://joinmastodon.org/ns#suspended"
         | 
| 208 224 | 
             
              description: |
         | 
| 209 225 | 
             
                Reports whether a user was locally suspended, for better handling of
         | 
| @@ -213,6 +229,7 @@ properties: | |
| 213 229 |  | 
| 214 230 | 
             
            - singularName: memorial
         | 
| 215 231 | 
             
              functional: true
         | 
| 232 | 
            +
              compactName: memorial
         | 
| 216 233 | 
             
              uri: "http://joinmastodon.org/ns#memorial"
         | 
| 217 234 | 
             
              description: Whether the actor is in-memorial state.
         | 
| 218 235 | 
             
              range:
         | 
| @@ -220,6 +237,7 @@ properties: | |
| 220 237 |  | 
| 221 238 | 
             
            - singularName: indexable
         | 
| 222 239 | 
             
              functional: true
         | 
| 240 | 
            +
              compactName: indexable
         | 
| 223 241 | 
             
              uri: "http://joinmastodon.org/ns#indexable"
         | 
| 224 242 | 
             
              description: Whether the actor allows to be indexed.
         | 
| 225 243 | 
             
              range:
         |