@fedify/fedify 0.14.0-dev.338 → 0.14.0-dev.339
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGES.md +33 -0
- package/esm/vocab/application.yaml +17 -0
- package/esm/vocab/group.yaml +17 -0
- package/esm/vocab/organization.yaml +17 -0
- package/esm/vocab/person.yaml +17 -0
- package/esm/vocab/service.yaml +17 -0
- package/esm/vocab/vocab.js +1528 -23
- package/package.json +1 -1
- package/types/vocab/vocab.d.ts +180 -0
- package/types/vocab/vocab.d.ts.map +1 -1
package/CHANGES.md
CHANGED
@@ -34,6 +34,39 @@ To be released.
|
|
34
34
|
|
35
35
|
- Added `Source` class to Activity Vocabulary API. [[#114]]
|
36
36
|
|
37
|
+
- Added `aliases` property to `Actor` type in Activity Vocabulary API.
|
38
|
+
|
39
|
+
- Added `Application.getAliases()` method.
|
40
|
+
- Added `Application.getAlias()` method.
|
41
|
+
- `new Application()` constructor now accepts `alias` option.
|
42
|
+
- `new Application()` constructor now accepts `aliases` option.
|
43
|
+
- `Application.clone()` method now accepts `alias` option.
|
44
|
+
- `Application.clone()` method now accepts `aliases` option.
|
45
|
+
- Added `Group.getAliases()` method.
|
46
|
+
- Added `Group.getAlias()` method.
|
47
|
+
- `new Group()` constructor now accepts `alias` option.
|
48
|
+
- `new Group()` constructor now accepts `aliases` option.
|
49
|
+
- `Group.clone()` method now accepts `alias` option.
|
50
|
+
- `Group.clone()` method now accepts `aliases` option.
|
51
|
+
- Added `Organization.getAliases()` method.
|
52
|
+
- Added `Organization.getAlias()` method.
|
53
|
+
- `new Organization()` constructor now accepts `alias` option.
|
54
|
+
- `new Organization()` constructor now accepts `aliases` option.
|
55
|
+
- `Organization.clone()` method now accepts `alias` option.
|
56
|
+
- `Organization.clone()` method now accepts `aliases` option.
|
57
|
+
- Added `Person.getAliases()` method.
|
58
|
+
- Added `Person.getAlias()` method.
|
59
|
+
- `new Person()` constructor now accepts `alias` option.
|
60
|
+
- `new Person()` constructor now accepts `aliases` option.
|
61
|
+
- `Person.clone()` method now accepts `alias` option.
|
62
|
+
- `Person.clone()` method now accepts `aliases` option.
|
63
|
+
- Added `Service.getAliases()` method.
|
64
|
+
- Added `Service.getAlias()` method.
|
65
|
+
- `new Service()` constructor now accepts `alias` option.
|
66
|
+
- `new Service()` constructor now accepts `aliases` option.
|
67
|
+
- `Service.clone()` method now accepts `alias` option.
|
68
|
+
- `Service.clone()` method now accepts `aliases` option.
|
69
|
+
|
37
70
|
- Improved the performance of `Object.toJsonLd()` method.
|
38
71
|
|
39
72
|
- `Object.toJsonLd()` method no longer guarantees that the returned
|
@@ -242,3 +242,20 @@ properties:
|
|
242
242
|
description: Whether the actor allows to be indexed.
|
243
243
|
range:
|
244
244
|
- "http://www.w3.org/2001/XMLSchema#boolean"
|
245
|
+
|
246
|
+
- pluralName: aliases
|
247
|
+
singularName: alias
|
248
|
+
singularAccessor: true
|
249
|
+
compactName: alsoKnownAs
|
250
|
+
uri: "https://www.w3.org/ns/activitystreams#alsoKnownAs"
|
251
|
+
description: |
|
252
|
+
The `aliases` (`alsoKnownAs`) property is used to specify alternative names
|
253
|
+
or aliases for an entity. It can be used to provide additional identifiers
|
254
|
+
or labels for an entity, which can be useful in scenarios where an entity
|
255
|
+
may have multiple names or aliases.
|
256
|
+
range:
|
257
|
+
- "https://www.w3.org/ns/activitystreams#Application"
|
258
|
+
- "https://www.w3.org/ns/activitystreams#Group"
|
259
|
+
- "https://www.w3.org/ns/activitystreams#Organization"
|
260
|
+
- "https://www.w3.org/ns/activitystreams#Person"
|
261
|
+
- "https://www.w3.org/ns/activitystreams#Service"
|
package/esm/vocab/group.yaml
CHANGED
@@ -242,3 +242,20 @@ properties:
|
|
242
242
|
description: Whether the actor allows to be indexed.
|
243
243
|
range:
|
244
244
|
- "http://www.w3.org/2001/XMLSchema#boolean"
|
245
|
+
|
246
|
+
- pluralName: aliases
|
247
|
+
singularName: alias
|
248
|
+
singularAccessor: true
|
249
|
+
compactName: alsoKnownAs
|
250
|
+
uri: "https://www.w3.org/ns/activitystreams#alsoKnownAs"
|
251
|
+
description: |
|
252
|
+
The `aliases` (`alsoKnownAs`) property is used to specify alternative names
|
253
|
+
or aliases for an entity. It can be used to provide additional identifiers
|
254
|
+
or labels for an entity, which can be useful in scenarios where an entity
|
255
|
+
may have multiple names or aliases.
|
256
|
+
range:
|
257
|
+
- "https://www.w3.org/ns/activitystreams#Application"
|
258
|
+
- "https://www.w3.org/ns/activitystreams#Group"
|
259
|
+
- "https://www.w3.org/ns/activitystreams#Organization"
|
260
|
+
- "https://www.w3.org/ns/activitystreams#Person"
|
261
|
+
- "https://www.w3.org/ns/activitystreams#Service"
|
@@ -242,3 +242,20 @@ properties:
|
|
242
242
|
description: Whether the actor allows to be indexed.
|
243
243
|
range:
|
244
244
|
- "http://www.w3.org/2001/XMLSchema#boolean"
|
245
|
+
|
246
|
+
- pluralName: aliases
|
247
|
+
singularName: alias
|
248
|
+
singularAccessor: true
|
249
|
+
compactName: alsoKnownAs
|
250
|
+
uri: "https://www.w3.org/ns/activitystreams#alsoKnownAs"
|
251
|
+
description: |
|
252
|
+
The `aliases` (`alsoKnownAs`) property is used to specify alternative names
|
253
|
+
or aliases for an entity. It can be used to provide additional identifiers
|
254
|
+
or labels for an entity, which can be useful in scenarios where an entity
|
255
|
+
may have multiple names or aliases.
|
256
|
+
range:
|
257
|
+
- "https://www.w3.org/ns/activitystreams#Application"
|
258
|
+
- "https://www.w3.org/ns/activitystreams#Group"
|
259
|
+
- "https://www.w3.org/ns/activitystreams#Organization"
|
260
|
+
- "https://www.w3.org/ns/activitystreams#Person"
|
261
|
+
- "https://www.w3.org/ns/activitystreams#Service"
|
package/esm/vocab/person.yaml
CHANGED
@@ -242,3 +242,20 @@ properties:
|
|
242
242
|
description: Whether the actor allows to be indexed.
|
243
243
|
range:
|
244
244
|
- "http://www.w3.org/2001/XMLSchema#boolean"
|
245
|
+
|
246
|
+
- pluralName: aliases
|
247
|
+
singularName: alias
|
248
|
+
singularAccessor: true
|
249
|
+
compactName: alsoKnownAs
|
250
|
+
uri: "https://www.w3.org/ns/activitystreams#alsoKnownAs"
|
251
|
+
description: |
|
252
|
+
The `aliases` (`alsoKnownAs`) property is used to specify alternative names
|
253
|
+
or aliases for an entity. It can be used to provide additional identifiers
|
254
|
+
or labels for an entity, which can be useful in scenarios where an entity
|
255
|
+
may have multiple names or aliases.
|
256
|
+
range:
|
257
|
+
- "https://www.w3.org/ns/activitystreams#Application"
|
258
|
+
- "https://www.w3.org/ns/activitystreams#Group"
|
259
|
+
- "https://www.w3.org/ns/activitystreams#Organization"
|
260
|
+
- "https://www.w3.org/ns/activitystreams#Person"
|
261
|
+
- "https://www.w3.org/ns/activitystreams#Service"
|
package/esm/vocab/service.yaml
CHANGED
@@ -242,3 +242,20 @@ properties:
|
|
242
242
|
description: Whether the actor allows to be indexed.
|
243
243
|
range:
|
244
244
|
- "http://www.w3.org/2001/XMLSchema#boolean"
|
245
|
+
|
246
|
+
- pluralName: aliases
|
247
|
+
singularName: alias
|
248
|
+
singularAccessor: true
|
249
|
+
compactName: alsoKnownAs
|
250
|
+
uri: "https://www.w3.org/ns/activitystreams#alsoKnownAs"
|
251
|
+
description: |
|
252
|
+
The `aliases` (`alsoKnownAs`) property is used to specify alternative names
|
253
|
+
or aliases for an entity. It can be used to provide additional identifiers
|
254
|
+
or labels for an entity, which can be useful in scenarios where an entity
|
255
|
+
may have multiple names or aliases.
|
256
|
+
range:
|
257
|
+
- "https://www.w3.org/ns/activitystreams#Application"
|
258
|
+
- "https://www.w3.org/ns/activitystreams#Group"
|
259
|
+
- "https://www.w3.org/ns/activitystreams#Organization"
|
260
|
+
- "https://www.w3.org/ns/activitystreams#Person"
|
261
|
+
- "https://www.w3.org/ns/activitystreams#Service"
|