@fedify/fedify 0.12.0-dev.273 → 0.12.0-dev.276
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGES.md +16 -0
- package/FEDERATION.md +6 -0
- package/esm/vocab/move.yaml +13 -0
- package/esm/vocab/read.yaml +11 -0
- package/esm/vocab/tentativeaccept.yaml +12 -0
- package/esm/vocab/tentativereject.yaml +12 -0
- package/esm/vocab/travel.yaml +14 -0
- package/esm/vocab/view.yaml +11 -0
- package/esm/vocab/vocab.js +1033 -144
- package/package.json +1 -1
- package/types/vocab/vocab.d.ts +1095 -110
- package/types/vocab/vocab.d.ts.map +1 -1
package/CHANGES.md
CHANGED
@@ -40,6 +40,21 @@ To be released.
|
|
40
40
|
|
41
41
|
- Added `ChatMessage` class to Activity Vocabulary API. [[#85]]
|
42
42
|
|
43
|
+
- Added `Move` class to Activity Vocabulary API. [[#65], [#92] by Lee Dogeon]
|
44
|
+
|
45
|
+
- Added `Read` class to Activity Vocabulary API. [[#65], [#92] by Lee Dogeon]
|
46
|
+
|
47
|
+
- Added `Travel` class to Activity Vocabulary API.
|
48
|
+
[[#65], [#92] by Lee Dogeon]
|
49
|
+
|
50
|
+
- Added `View` class to Activity Vocabulary API. [[#65], [#92] by Lee Dogeon]
|
51
|
+
|
52
|
+
- Added `TentativeAccept` class to Activity Vocabulary API.
|
53
|
+
[[#65], [#92] by Lee Dogeon]
|
54
|
+
|
55
|
+
- Added `TentativeReject` class to Activity Vocabulary API.
|
56
|
+
[[#65], [#92] by Lee Dogeon]
|
57
|
+
|
43
58
|
- Improved multitenancy (virtual hosting) support. [[#66]]
|
44
59
|
|
45
60
|
- Added `Context.hostname` property.
|
@@ -72,6 +87,7 @@ To be released.
|
|
72
87
|
[#66]: https://github.com/dahlia/fedify/issues/66
|
73
88
|
[#70]: https://github.com/dahlia/fedify/issues/70
|
74
89
|
[#85]: https://github.com/dahlia/fedify/issues/85
|
90
|
+
[#92]: https://github.com/dahlia/fedify/pull/92
|
75
91
|
|
76
92
|
|
77
93
|
Version 0.11.1
|
package/FEDERATION.md
CHANGED
@@ -61,9 +61,15 @@ lists the activity types that Fedify provides:
|
|
61
61
|
- [`Leave`](https://jsr.io/@fedify/fedify/doc/vocab/~/Leave)
|
62
62
|
- [`Like`](https://jsr.io/@fedify/fedify/doc/vocab/~/Like)
|
63
63
|
- [`Listen`](https://jsr.io/@fedify/fedify/doc/vocab/~/Listen)
|
64
|
+
- [`Move`](https://jsr.io/@fedify/fedify/doc/vocab/~/Move)
|
64
65
|
- [`Offer`](https://jsr.io/@fedify/fedify/doc/vocab/~/Offer)
|
65
66
|
- [`Question`](https://jsr.io/@fedify/fedify/doc/vocab/~/Question)
|
67
|
+
- [`Read`](https://jsr.io/@fedify/fedify/doc/vocab/~/Read)
|
66
68
|
- [`Reject`](https://jsr.io/@fedify/fedify/doc/vocab/~/Reject)
|
67
69
|
- [`Remove`](https://jsr.io/@fedify/fedify/doc/vocab/~/Remove)
|
70
|
+
- [`TentativeAccept`](https://jsr.io/@fedify/fedify/doc/vocab/~/TentativeAccept)
|
71
|
+
- [`TentativeReject`](https://jsr.io/@fedify/fedify/doc/vocab/~/TentativeReject)
|
72
|
+
- [`Travel`](https://jsr.io/@fedify/fedify/doc/vocab/~/Travel)
|
68
73
|
- [`Undo`](https://jsr.io/@fedify/fedify/doc/vocab/~/Undo)
|
69
74
|
- [`Update`](https://jsr.io/@fedify/fedify/doc/vocab/~/Update)
|
75
|
+
- [`View`](https://jsr.io/@fedify/fedify/doc/vocab/~/View)
|
@@ -0,0 +1,13 @@
|
|
1
|
+
$schema: ../codegen/schema.yaml
|
2
|
+
name: Move
|
3
|
+
uri: "https://www.w3.org/ns/activitystreams#Move"
|
4
|
+
extends: "https://www.w3.org/ns/activitystreams#Activity"
|
5
|
+
entity: true
|
6
|
+
description: |
|
7
|
+
Indicates that the `actor` has moved `object` from `origin` to `target`.
|
8
|
+
If the `origin` or `target` are not specified,
|
9
|
+
either can be determined by context.
|
10
|
+
defaultContext:
|
11
|
+
- "https://www.w3.org/ns/activitystreams"
|
12
|
+
- "https://w3id.org/security/data-integrity/v1"
|
13
|
+
properties: []
|
@@ -0,0 +1,11 @@
|
|
1
|
+
$schema: ../codegen/schema.yaml
|
2
|
+
name: Read
|
3
|
+
uri: "https://www.w3.org/ns/activitystreams#Read"
|
4
|
+
extends: "https://www.w3.org/ns/activitystreams#Activity"
|
5
|
+
entity: true
|
6
|
+
description: |
|
7
|
+
Indicates that the `actor` has read the `object`.
|
8
|
+
defaultContext:
|
9
|
+
- "https://www.w3.org/ns/activitystreams"
|
10
|
+
- "https://w3id.org/security/data-integrity/v1"
|
11
|
+
properties: []
|
@@ -0,0 +1,12 @@
|
|
1
|
+
$schema: ../codegen/schema.yaml
|
2
|
+
name: TentativeAccept
|
3
|
+
uri: "https://www.w3.org/ns/activitystreams#TentativeAccept"
|
4
|
+
extends: "https://www.w3.org/ns/activitystreams#Accept"
|
5
|
+
entity: true
|
6
|
+
description: |
|
7
|
+
A specialization of {@link Accept} indicating that
|
8
|
+
the acceptance is tentative.
|
9
|
+
defaultContext:
|
10
|
+
- "https://www.w3.org/ns/activitystreams"
|
11
|
+
- "https://w3id.org/security/data-integrity/v1"
|
12
|
+
properties: []
|
@@ -0,0 +1,12 @@
|
|
1
|
+
$schema: ../codegen/schema.yaml
|
2
|
+
name: TentativeReject
|
3
|
+
uri: "https://www.w3.org/ns/activitystreams#TentativeReject"
|
4
|
+
extends: "https://www.w3.org/ns/activitystreams#Reject"
|
5
|
+
entity: true
|
6
|
+
description: |
|
7
|
+
A specialization of {@link Reject} in which
|
8
|
+
the rejection is considered tentative.
|
9
|
+
defaultContext:
|
10
|
+
- "https://www.w3.org/ns/activitystreams"
|
11
|
+
- "https://w3id.org/security/data-integrity/v1"
|
12
|
+
properties: []
|
@@ -0,0 +1,14 @@
|
|
1
|
+
$schema: ../codegen/schema.yaml
|
2
|
+
name: Travel
|
3
|
+
uri: "https://www.w3.org/ns/activitystreams#Travel"
|
4
|
+
extends: "https://www.w3.org/ns/activitystreams#IntransitiveActivity"
|
5
|
+
entity: true
|
6
|
+
description: |
|
7
|
+
Indicates that the `actor` is traveling to `target` from `origin`.
|
8
|
+
`Travel` is an `IntransitiveObject` whose `actor` specifies the direct object.
|
9
|
+
If the `target` or `origin` are not specified,
|
10
|
+
either can be determined by context.
|
11
|
+
defaultContext:
|
12
|
+
- "https://www.w3.org/ns/activitystreams"
|
13
|
+
- "https://w3id.org/security/data-integrity/v1"
|
14
|
+
properties: []
|
@@ -0,0 +1,11 @@
|
|
1
|
+
$schema: ../codegen/schema.yaml
|
2
|
+
name: View
|
3
|
+
uri: "https://www.w3.org/ns/activitystreams#View"
|
4
|
+
extends: "https://www.w3.org/ns/activitystreams#Activity"
|
5
|
+
entity: true
|
6
|
+
description: |
|
7
|
+
Indicates that the `actor` has viewed the object.
|
8
|
+
defaultContext:
|
9
|
+
- "https://www.w3.org/ns/activitystreams"
|
10
|
+
- "https://w3id.org/security/data-integrity/v1"
|
11
|
+
properties: []
|