@fedify/fedify 0.11.0-dev.258 → 0.11.0-dev.260
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGES.md +1 -0
- package/README.md +3 -3
- package/esm/codegen/schema.yaml +15 -0
- package/esm/vocab/object.yaml +3 -0
- package/esm/vocab/orderedcollectionpage.yaml +11 -0
- package/esm/vocab/vocab.js +1097 -103
- package/package.json +1 -1
- package/types/codegen/schema.d.ts.map +1 -1
- package/types/vocab/vocab.d.ts +16 -2
- package/types/vocab/vocab.d.ts.map +1 -1
package/CHANGES.md
CHANGED
@@ -183,6 +183,7 @@ To be released.
|
|
183
183
|
[#76]: https://github.com/dahlia/fedify/pull/76
|
184
184
|
[#78]: https://github.com/dahlia/fedify/issues/78
|
185
185
|
[#79]: https://github.com/dahlia/fedify/issues/79
|
186
|
+
[#80]: https://github.com/dahlia/fedify/pull/80
|
186
187
|
|
187
188
|
|
188
189
|
Version 0.10.0
|
package/README.md
CHANGED
@@ -8,7 +8,7 @@ Fedify: an ActivityPub server framework
|
|
8
8
|
[![npm][npm badge]][npm]
|
9
9
|
[![GitHub Actions][GitHub Actions badge]][GitHub Actions]
|
10
10
|
[![Matrix][Matrix badge]][Matrix]
|
11
|
-
[![Follow @
|
11
|
+
[![Follow @fedify@hollo.social][@fedify@hollo.social badge]][@fedify@hollo.social]
|
12
12
|
|
13
13
|
> [!NOTE]
|
14
14
|
> Looking for a quick demo? Here it is: [Fedify Demo] on Deno Playground.
|
@@ -54,8 +54,8 @@ join our [Matrix chat space][Matrix] or [GitHub Discussions]. Or tag
|
|
54
54
|
[GitHub Actions badge]: https://github.com/dahlia/fedify/actions/workflows/build.yaml/badge.svg
|
55
55
|
[Matrix]: https://matrix.to/#/#fedify:matrix.org
|
56
56
|
[Matrix badge]: https://img.shields.io/matrix/fedify%3Amatrix.org
|
57
|
-
[@
|
58
|
-
[@
|
57
|
+
[@fedify@hollo.social badge]: https://fedi-badge.deno.dev/@fedify@hollo.social/followers.svg
|
58
|
+
[@fedify@hollo.social]: https://hollo.social/@fedify
|
59
59
|
[Fedify Demo]: https://dash.deno.com/playground/fedify-demo
|
60
60
|
[ActivityPub]: https://www.w3.org/TR/activitypub/
|
61
61
|
[fediverse]: https://en.wikipedia.org/wiki/Fediverse
|
package/esm/codegen/schema.yaml
CHANGED
@@ -72,6 +72,21 @@ $defs:
|
|
72
72
|
The description of the property. It is used as the doc comment of
|
73
73
|
the generated property accessors.
|
74
74
|
type: string
|
75
|
+
embedContext:
|
76
|
+
description: >-
|
77
|
+
Whether the enclosed object should have its own context when
|
78
|
+
the document is compacted.
|
79
|
+
type: object
|
80
|
+
properties:
|
81
|
+
compactName:
|
82
|
+
description: >-
|
83
|
+
The compact name of the property that contains the context.
|
84
|
+
type: string
|
85
|
+
inherit:
|
86
|
+
description: >-
|
87
|
+
Whether the embedded context should be the same as the context of
|
88
|
+
the enclosing document.
|
89
|
+
const: true
|
75
90
|
required:
|
76
91
|
- singularName
|
77
92
|
- uri
|
package/esm/vocab/object.yaml
CHANGED
@@ -307,6 +307,9 @@ properties:
|
|
307
307
|
singularAccessor: true
|
308
308
|
uri: "https://w3id.org/security#proof"
|
309
309
|
container: graph
|
310
|
+
embedContext:
|
311
|
+
compactName: proof
|
312
|
+
inherit: true
|
310
313
|
description: |
|
311
314
|
A cryptographic proof that can be used to verify the integrity of an object.
|
312
315
|
range:
|
@@ -16,6 +16,17 @@ defaultContext:
|
|
16
16
|
Hashtag: "as:Hashtag"
|
17
17
|
|
18
18
|
properties:
|
19
|
+
- pluralName: items
|
20
|
+
singularName: item
|
21
|
+
uri: "https://www.w3.org/ns/activitystreams#items"
|
22
|
+
container: list
|
23
|
+
description: |
|
24
|
+
Identifies the items contained in a collection. The items might be ordered
|
25
|
+
or unordered.
|
26
|
+
range:
|
27
|
+
- "https://www.w3.org/ns/activitystreams#Object"
|
28
|
+
- "https://www.w3.org/ns/activitystreams#Link"
|
29
|
+
|
19
30
|
- singularName: startIndex
|
20
31
|
functional: true
|
21
32
|
uri: "https://www.w3.org/ns/activitystreams#startIndex"
|