@fedify/fedify 1.1.0-dev.427 → 1.1.0-dev.429

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGES.md CHANGED
@@ -8,6 +8,52 @@ Version 1.1.0
8
8
 
9
9
  To be released.
10
10
 
11
+ - Added `EmojiReact` class to Activity Vocabulary API. [[FEP-c0e0]]
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
+
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
56
+
11
57
 
12
58
  Version 1.0.2
13
59
  -------------
package/FEDERATION.md CHANGED
@@ -29,6 +29,7 @@ Supported FEPs
29
29
  - [FEP-521a][]: Representing actor's public keys
30
30
  - [FEP-5feb][]: Search indexing consent for actors
31
31
  - [FEP-c7d3][]: Ownership
32
+ - [FEP-c0e0][]: Emoji reactions
32
33
 
33
34
  [FEP-67ff]: https://w3id.org/fep/67ff
34
35
  [FEP-8fcf]: https://w3id.org/fep/8fcf
@@ -37,6 +38,7 @@ Supported FEPs
37
38
  [FEP-521a]: https://w3id.org/fep/521a
38
39
  [FEP-5feb]: https://w3id.org/fep/5feb
39
40
  [FEP-c7d3]: https://w3id.org/fep/c7d3
41
+ [FEP-c0e0]: https://w3id.org/fep/c0e0
40
42
 
41
43
 
42
44
  ActivityPub
@@ -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
@@ -1,6 +1,6 @@
1
1
  $schema: ../codegen/schema.yaml
2
2
  name: Arrive
3
- compact: Arrive
3
+ compactName: Arrive
4
4
  uri: "https://www.w3.org/ns/activitystreams#Arrive"
5
5
  extends: "https://www.w3.org/ns/activitystreams#IntransitiveActivity"
6
6
  entity: true
@@ -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
+
@@ -9,4 +9,6 @@ defaultContext:
9
9
  - "https://w3id.org/identity/v1"
10
10
  - "https://www.w3.org/ns/activitystreams"
11
11
  - "https://w3id.org/security/data-integrity/v1"
12
+ - toot: "http://joinmastodon.org/ns#"
13
+ Emoji: "toot:Emoji"
12
14
  properties: []
@@ -0,0 +1,17 @@
1
+ $schema: ../codegen/schema.yaml
2
+ name: EmojiReact
3
+ compactName: EmojiReact
4
+ uri: "http://litepub.social/ns#EmojiReact"
5
+ extends: "https://www.w3.org/ns/activitystreams#Activity"
6
+ entity: true
7
+ description: |
8
+ Represents an emoji reaction. See also [FEP-c0e0](https://w3id.org/fep/c0e0).
9
+ defaultContext:
10
+ - "https://w3id.org/identity/v1"
11
+ - "https://www.w3.org/ns/activitystreams"
12
+ - "https://w3id.org/security/data-integrity/v1"
13
+ - litepub: "http://litepub.social/ns#"
14
+ toot: "http://joinmastodon.org/ns#"
15
+ EmojiReact: "litepub:EmojiReact"
16
+ Emoji: "toot:Emoji"
17
+ properties: []
@@ -0,0 +1,9 @@
1
+ $schema: ../codegen/schema.yaml
2
+ name: Export
3
+ uri: "https://w3id.org/fep/9091#Export"
4
+ extends: "https://www.w3.org/ns/did#Service"
5
+ entity: true
6
+ description: |
7
+ "Export Actor" service.
8
+ defaultContext: "https://www.w3.org/ns/did/v1"
9
+ properties: []
@@ -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
@@ -11,4 +11,6 @@ defaultContext:
11
11
  - "https://w3id.org/identity/v1"
12
12
  - "https://www.w3.org/ns/activitystreams"
13
13
  - "https://w3id.org/security/data-integrity/v1"
14
+ - toot: "http://joinmastodon.org/ns#"
15
+ Emoji: "toot:Emoji"
14
16
  properties: []
@@ -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
@@ -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