@fedify/fedify 0.11.0-dev.259 → 0.11.0-dev.260
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/README.md +3 -3
- package/esm/codegen/schema.yaml +15 -0
- package/esm/vocab/object.yaml +3 -0
- package/esm/vocab/vocab.js +902 -103
- package/package.json +1 -1
- package/types/codegen/schema.d.ts.map +1 -1
- package/types/vocab/vocab.d.ts.map +1 -1
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:
|