@fedify/fedify 0.14.0-dev.328 → 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.
- package/CHANGES.md +4 -1
- package/esm/codegen/schema.yaml +10 -0
- package/esm/federation/send.js +4 -1
- 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 +3759 -203
- package/package.json +1 -1
- package/types/federation/send.d.ts.map +1 -1
- package/types/vocab/vocab.d.ts.map +1 -1
package/esm/vocab/person.yaml
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
$schema: ../codegen/schema.yaml
|
2
2
|
name: Person
|
3
|
+
compactName: Person
|
3
4
|
uri: "https://www.w3.org/ns/activitystreams#Person"
|
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:
|
package/esm/vocab/place.yaml
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
$schema: ../codegen/schema.yaml
|
2
2
|
name: Place
|
3
|
+
compactName: Place
|
3
4
|
uri: "https://www.w3.org/ns/activitystreams#Place"
|
4
5
|
extends: "https://www.w3.org/ns/activitystreams#Object"
|
5
6
|
entity: true
|
@@ -14,6 +15,7 @@ defaultContext:
|
|
14
15
|
properties:
|
15
16
|
- singularName: accuracy
|
16
17
|
functional: true
|
18
|
+
compactName: accuracy
|
17
19
|
uri: "https://www.w3.org/ns/activitystreams#accuracy"
|
18
20
|
description: |
|
19
21
|
Indicates the accuracy of position coordinates on a {@link Place} objects.
|
@@ -23,6 +25,7 @@ properties:
|
|
23
25
|
|
24
26
|
- singularName: altitude
|
25
27
|
functional: true
|
28
|
+
compactName: altitude
|
26
29
|
uri: "https://www.w3.org/ns/activitystreams#altitude"
|
27
30
|
description: |
|
28
31
|
Indicates the altitude of a place. The measurement units is indicated
|
@@ -33,6 +36,7 @@ properties:
|
|
33
36
|
|
34
37
|
- singularName: latitude
|
35
38
|
functional: true
|
39
|
+
compactName: latitude
|
36
40
|
uri: "https://www.w3.org/ns/activitystreams#latitude"
|
37
41
|
description: The latitude of a place.
|
38
42
|
range:
|
@@ -40,6 +44,7 @@ properties:
|
|
40
44
|
|
41
45
|
- singularName: longitude
|
42
46
|
functional: true
|
47
|
+
compactName: longitude
|
43
48
|
uri: "https://www.w3.org/ns/activitystreams#longitude"
|
44
49
|
description: The longitude of a place.
|
45
50
|
range:
|
@@ -47,6 +52,7 @@ properties:
|
|
47
52
|
|
48
53
|
- singularName: radius
|
49
54
|
functional: true
|
55
|
+
compactName: radius
|
50
56
|
uri: "https://www.w3.org/ns/activitystreams#radius"
|
51
57
|
description: |
|
52
58
|
The radius from the given latitude and longitude for a {@link Place}.
|
@@ -58,6 +64,7 @@ properties:
|
|
58
64
|
|
59
65
|
- singularName: units
|
60
66
|
functional: true
|
67
|
+
compactName: units
|
61
68
|
uri: "https://www.w3.org/ns/activitystreams#units"
|
62
69
|
description: |
|
63
70
|
Specifies the measurement units for the {@link Place.radius} and
|
package/esm/vocab/profile.yaml
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
$schema: ../codegen/schema.yaml
|
2
2
|
name: Profile
|
3
|
+
compactName: Profile
|
3
4
|
uri: "https://www.w3.org/ns/activitystreams#Profile"
|
4
5
|
extends: "https://www.w3.org/ns/activitystreams#Object"
|
5
6
|
entity: true
|
@@ -16,6 +17,7 @@ defaultContext:
|
|
16
17
|
properties:
|
17
18
|
- singularName: describes
|
18
19
|
functional: true
|
20
|
+
compactName: describes
|
19
21
|
uri: "https://www.w3.org/ns/activitystreams#describes"
|
20
22
|
description: |
|
21
23
|
On a {@link Profile} object, the {@link Profile.describes} property
|
@@ -1,5 +1,6 @@
|
|
1
1
|
$schema: ../codegen/schema.yaml
|
2
2
|
name: PropertyValue
|
3
|
+
compactName: PropertyValue
|
3
4
|
# The below URI intentionally lacks a path slash due to Mastodon's mistake:
|
4
5
|
# See also: https://docs.joinmastodon.org/spec/activitypub/#PropertyValue
|
5
6
|
uri: "http://schema.org#PropertyValue"
|
@@ -14,6 +15,7 @@ defaultContext:
|
|
14
15
|
properties:
|
15
16
|
- singularName: name
|
16
17
|
functional: true
|
18
|
+
compactName: name
|
17
19
|
uri: "https://www.w3.org/ns/activitystreams#name"
|
18
20
|
description: The name of a property.
|
19
21
|
range:
|
@@ -22,6 +24,7 @@ properties:
|
|
22
24
|
|
23
25
|
- singularName: value
|
24
26
|
functional: true
|
27
|
+
compactName: value
|
25
28
|
uri: "http://schema.org#value"
|
26
29
|
description: The value of a property.
|
27
30
|
range:
|
package/esm/vocab/question.yaml
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
$schema: ../codegen/schema.yaml
|
2
2
|
name: Question
|
3
|
+
compactName: Question
|
3
4
|
uri: "https://www.w3.org/ns/activitystreams#Question"
|
4
5
|
extends: "https://www.w3.org/ns/activitystreams#IntransitiveActivity"
|
5
6
|
entity: true
|
@@ -25,6 +26,7 @@ properties:
|
|
25
26
|
- pluralName: exclusiveOptions
|
26
27
|
singularName: exclusiveOption
|
27
28
|
singularAccessor: false
|
29
|
+
compactName: oneOf
|
28
30
|
uri: "https://www.w3.org/ns/activitystreams#oneOf"
|
29
31
|
description: |
|
30
32
|
Identifies an exclusive option for a Question. Use of `exclusiveOptions`
|
@@ -36,6 +38,7 @@ properties:
|
|
36
38
|
- pluralName: inclusiveOptions
|
37
39
|
singularName: inclusiveOption
|
38
40
|
singularAccessor: false
|
41
|
+
compactName: anyOf
|
39
42
|
uri: "https://www.w3.org/ns/activitystreams#anyOf"
|
40
43
|
description: |
|
41
44
|
Identifies an inclusive option for a Question. Use of `inclusiveOptions`
|
@@ -46,6 +49,7 @@ properties:
|
|
46
49
|
|
47
50
|
- singularName: closed
|
48
51
|
functional: true
|
52
|
+
compactName: closed
|
49
53
|
uri: "https://www.w3.org/ns/activitystreams#closed"
|
50
54
|
description: |
|
51
55
|
Indicates that a question has been closed, and answers are no longer
|
@@ -56,6 +60,7 @@ properties:
|
|
56
60
|
|
57
61
|
- singularName: voters
|
58
62
|
functional: true
|
63
|
+
compactName: votersCount
|
59
64
|
uri: "http://joinmastodon.org/ns#votersCount"
|
60
65
|
description: |
|
61
66
|
How many people have voted in the poll. Distinct from how many votes have
|
package/esm/vocab/read.yaml
CHANGED
package/esm/vocab/reject.yaml
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
$schema: ../codegen/schema.yaml
|
2
2
|
name: Relationship
|
3
|
+
compactName: Relationship
|
3
4
|
uri: "https://www.w3.org/ns/activitystreams#Relationship"
|
4
5
|
extends: "https://www.w3.org/ns/activitystreams#Object"
|
5
6
|
entity: true
|
@@ -18,6 +19,7 @@ defaultContext:
|
|
18
19
|
properties:
|
19
20
|
- singularName: subject
|
20
21
|
functional: true
|
22
|
+
compactName: subject
|
21
23
|
uri: "https://www.w3.org/ns/activitystreams#subject"
|
22
24
|
description: |
|
23
25
|
On a {@link Relationship} object, the {@link Relationship.subject} property
|
@@ -30,6 +32,7 @@ properties:
|
|
30
32
|
- singularName: object
|
31
33
|
pluralName: objects
|
32
34
|
singularAccessor: true
|
35
|
+
compactName: object
|
33
36
|
uri: "https://www.w3.org/ns/activitystreams#object"
|
34
37
|
description: |
|
35
38
|
Describes the entity to which the {@link Relationship.subject} is related.
|
@@ -39,6 +42,7 @@ properties:
|
|
39
42
|
- singularName: relationship
|
40
43
|
pluralName: relationships
|
41
44
|
singularAccessor: true
|
45
|
+
compactName: relationship
|
42
46
|
uri: "https://www.w3.org/ns/activitystreams#relationship"
|
43
47
|
description: |
|
44
48
|
On a {@link Relationship} object, the {@link Relationship.relationship}
|
package/esm/vocab/remove.yaml
CHANGED
package/esm/vocab/service.yaml
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
$schema: ../codegen/schema.yaml
|
2
2
|
name: Service
|
3
|
+
compactName: Service
|
3
4
|
uri: "https://www.w3.org/ns/activitystreams#Service"
|
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:
|
package/esm/vocab/tombstone.yaml
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
$schema: ../codegen/schema.yaml
|
2
2
|
name: Tombstone
|
3
|
+
compactName: Tombstone
|
3
4
|
uri: "https://www.w3.org/ns/activitystreams#Tombstone"
|
4
5
|
extends: "https://www.w3.org/ns/activitystreams#Object"
|
5
6
|
entity: true
|
@@ -14,6 +15,7 @@ defaultContext:
|
|
14
15
|
properties:
|
15
16
|
- singularName: deleted
|
16
17
|
functional: true
|
18
|
+
compactName: deleted
|
17
19
|
uri: "https://www.w3.org/ns/activitystreams#deleted"
|
18
20
|
description: |
|
19
21
|
On a `Tombstone` object, the `deleted` property is a timestamp for when
|
package/esm/vocab/travel.yaml
CHANGED
package/esm/vocab/undo.yaml
CHANGED
package/esm/vocab/update.yaml
CHANGED
package/esm/vocab/video.yaml
CHANGED