@fedify/fedify 1.1.0-dev.428 → 1.1.0-dev.429
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 +42 -0
- package/esm/vocab/application.yaml +13 -0
- package/esm/vocab/arrive.yaml +1 -1
- package/esm/vocab/didservice.yaml +22 -0
- package/esm/vocab/export.yaml +9 -0
- package/esm/vocab/group.yaml +13 -0
- package/esm/vocab/organization.yaml +13 -0
- package/esm/vocab/person.yaml +13 -0
- package/esm/vocab/service.yaml +13 -0
- package/esm/vocab/vocab.js +1443 -4
- package/package.json +1 -1
- package/types/vocab/vocab.d.ts +320 -0
- package/types/vocab/vocab.d.ts.map +1 -1
package/CHANGES.md
CHANGED
@@ -10,7 +10,49 @@ To be released.
|
|
10
10
|
|
11
11
|
- Added `EmojiReact` class to Activity Vocabulary API. [[FEP-c0e0]]
|
12
12
|
|
13
|
+
- Added `DidService` class to Activity Vocabulary API.
|
14
|
+
[[FEP-9091], [#146]]
|
15
|
+
|
16
|
+
- Added `Export` class to Activity Vocabulary API.
|
17
|
+
[[FEP-9091], [#146]]
|
18
|
+
|
19
|
+
- Added `service` property to the `Actor` types in the Activity
|
20
|
+
Vocabulary API. [[FEP-9091], [#146]]
|
21
|
+
|
22
|
+
- Added `Application.getService()` method.
|
23
|
+
- Added `Application.getServices()` method.
|
24
|
+
- `new Application()` constructor now accepts `service` option.
|
25
|
+
- `new Application()` constructor now accepts `services` option.
|
26
|
+
- `Application.clone()` method now accepts `service` option.
|
27
|
+
- `Application.clone()` method now accepts `services` option.
|
28
|
+
- Added `Group.getService()` method.
|
29
|
+
- Added `Group.getServices()` method.
|
30
|
+
- `new Group()` constructor now accepts `service` option.
|
31
|
+
- `new Group()` constructor now accepts `services` option.
|
32
|
+
- `Group.clone()` method now accepts `service` option.
|
33
|
+
- `Group.clone()` method now accepts `services` option.
|
34
|
+
- Added `Organization.getService()` method.
|
35
|
+
- Added `Organization.getServices()` method.
|
36
|
+
- `new Organization()` constructor now accepts `service` option.
|
37
|
+
- `new Organization()` constructor now accepts `services` option.
|
38
|
+
- `Organization.clone()` method now accepts `service` option.
|
39
|
+
- `Organization.clone()` method now accepts `services` option.
|
40
|
+
- Added `Person.getService()` method.
|
41
|
+
- Added `Person.getServices()` method.
|
42
|
+
- `new Person()` constructor now accepts `service` option.
|
43
|
+
- `new Person()` constructor now accepts `services` option.
|
44
|
+
- `Person.clone()` method now accepts `service` option.
|
45
|
+
- `Person.clone()` method now accepts `services` option.
|
46
|
+
- Added `Service.getService()` method.
|
47
|
+
- Added `Service.getServices()` method.
|
48
|
+
- `new Service()` constructor now accepts `service` option.
|
49
|
+
- `new Service()` constructor now accepts `services` option.
|
50
|
+
- `Service.clone()` method now accepts `service` option.
|
51
|
+
- `Service.clone()` method now accepts `services` option.
|
52
|
+
|
13
53
|
[FEP-c0e0]: https://w3id.org/fep/c0e0
|
54
|
+
[FEP-9091]: https://w3id.org/fep/9091
|
55
|
+
[#146]: https://github.com/dahlia/fedify/issues/146
|
14
56
|
|
15
57
|
|
16
58
|
Version 1.0.2
|
@@ -262,6 +262,19 @@ properties:
|
|
262
262
|
- "https://www.w3.org/ns/activitystreams#Person"
|
263
263
|
- "https://www.w3.org/ns/activitystreams#Service"
|
264
264
|
|
265
|
+
- pluralName: services
|
266
|
+
singularName: service
|
267
|
+
singularAccessor: true
|
268
|
+
compactName: service
|
269
|
+
uri: "https://www.w3.org/ns/did#service"
|
270
|
+
description: |
|
271
|
+
Means of communicating or interacting with the DID subject or associated
|
272
|
+
entities via one or more service endpoints. Examples include discovery
|
273
|
+
services, agent services, social networking services, file storage services,
|
274
|
+
and verifiable credential repository services.
|
275
|
+
range:
|
276
|
+
- "https://www.w3.org/ns/did#Service"
|
277
|
+
|
265
278
|
- singularName: cat
|
266
279
|
functional: true
|
267
280
|
compactName: isCat
|
package/esm/vocab/arrive.yaml
CHANGED
@@ -0,0 +1,22 @@
|
|
1
|
+
$schema: ../codegen/schema.yaml
|
2
|
+
name: DidService
|
3
|
+
uri: "https://www.w3.org/ns/did#Service"
|
4
|
+
entity: true
|
5
|
+
description: |
|
6
|
+
Means of communicating or interacting with the DID subject or associated
|
7
|
+
entities via one or more service endpoints. Examples include discovery
|
8
|
+
services, agent services, social networking services, file storage services,
|
9
|
+
and verifiable credential repository services.
|
10
|
+
defaultContext: "https://www.w3.org/ns/did/v1"
|
11
|
+
|
12
|
+
properties:
|
13
|
+
- pluralName: endpoints
|
14
|
+
singularName: endpoint
|
15
|
+
singularAccessor: true
|
16
|
+
uri: "https://www.w3.org/ns/did#serviceEndpoint"
|
17
|
+
description: |
|
18
|
+
A network address, such as an HTTP URL, at which services operate on behalf
|
19
|
+
of a DID subject.
|
20
|
+
range:
|
21
|
+
- "http://www.w3.org/2001/XMLSchema#anyURI"
|
22
|
+
|
package/esm/vocab/group.yaml
CHANGED
@@ -262,6 +262,19 @@ properties:
|
|
262
262
|
- "https://www.w3.org/ns/activitystreams#Person"
|
263
263
|
- "https://www.w3.org/ns/activitystreams#Service"
|
264
264
|
|
265
|
+
- pluralName: services
|
266
|
+
singularName: service
|
267
|
+
singularAccessor: true
|
268
|
+
compactName: service
|
269
|
+
uri: "https://www.w3.org/ns/did#service"
|
270
|
+
description: |
|
271
|
+
Means of communicating or interacting with the DID subject or associated
|
272
|
+
entities via one or more service endpoints. Examples include discovery
|
273
|
+
services, agent services, social networking services, file storage services,
|
274
|
+
and verifiable credential repository services.
|
275
|
+
range:
|
276
|
+
- "https://www.w3.org/ns/did#Service"
|
277
|
+
|
265
278
|
- singularName: cat
|
266
279
|
functional: true
|
267
280
|
compactName: isCat
|
@@ -262,6 +262,19 @@ properties:
|
|
262
262
|
- "https://www.w3.org/ns/activitystreams#Person"
|
263
263
|
- "https://www.w3.org/ns/activitystreams#Service"
|
264
264
|
|
265
|
+
- pluralName: services
|
266
|
+
singularName: service
|
267
|
+
singularAccessor: true
|
268
|
+
compactName: service
|
269
|
+
uri: "https://www.w3.org/ns/did#service"
|
270
|
+
description: |
|
271
|
+
Means of communicating or interacting with the DID subject or associated
|
272
|
+
entities via one or more service endpoints. Examples include discovery
|
273
|
+
services, agent services, social networking services, file storage services,
|
274
|
+
and verifiable credential repository services.
|
275
|
+
range:
|
276
|
+
- "https://www.w3.org/ns/did#Service"
|
277
|
+
|
265
278
|
- singularName: cat
|
266
279
|
functional: true
|
267
280
|
compactName: isCat
|
package/esm/vocab/person.yaml
CHANGED
@@ -262,6 +262,19 @@ properties:
|
|
262
262
|
- "https://www.w3.org/ns/activitystreams#Person"
|
263
263
|
- "https://www.w3.org/ns/activitystreams#Service"
|
264
264
|
|
265
|
+
- pluralName: services
|
266
|
+
singularName: service
|
267
|
+
singularAccessor: true
|
268
|
+
compactName: service
|
269
|
+
uri: "https://www.w3.org/ns/did#service"
|
270
|
+
description: |
|
271
|
+
Means of communicating or interacting with the DID subject or associated
|
272
|
+
entities via one or more service endpoints. Examples include discovery
|
273
|
+
services, agent services, social networking services, file storage services,
|
274
|
+
and verifiable credential repository services.
|
275
|
+
range:
|
276
|
+
- "https://www.w3.org/ns/did#Service"
|
277
|
+
|
265
278
|
- singularName: cat
|
266
279
|
functional: true
|
267
280
|
compactName: isCat
|
package/esm/vocab/service.yaml
CHANGED
@@ -262,6 +262,19 @@ properties:
|
|
262
262
|
- "https://www.w3.org/ns/activitystreams#Person"
|
263
263
|
- "https://www.w3.org/ns/activitystreams#Service"
|
264
264
|
|
265
|
+
- pluralName: services
|
266
|
+
singularName: service
|
267
|
+
singularAccessor: true
|
268
|
+
compactName: service
|
269
|
+
uri: "https://www.w3.org/ns/did#service"
|
270
|
+
description: |
|
271
|
+
Means of communicating or interacting with the DID subject or associated
|
272
|
+
entities via one or more service endpoints. Examples include discovery
|
273
|
+
services, agent services, social networking services, file storage services,
|
274
|
+
and verifiable credential repository services.
|
275
|
+
range:
|
276
|
+
- "https://www.w3.org/ns/did#Service"
|
277
|
+
|
265
278
|
- singularName: cat
|
266
279
|
functional: true
|
267
280
|
compactName: isCat
|