@fedify/fedify 1.6.1-dev.828 → 1.6.1-dev.829
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/dist/codegen/schema.js +1 -1
- package/dist/deno.js +1 -1
- package/dist/federation/middleware.test.js +1 -1
- package/dist/federation/send.test.js +1 -1
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/dirname.js +2 -2
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/_util.js +1 -1
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/dirname.js +2 -2
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/normalize.js +1 -1
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/_util.js +1 -1
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/dirname.js +2 -2
- package/dist/node_modules/.pnpm/@jsr_std__url@1.0.0-rc.3/node_modules/@jsr/std__url/dirname.js +2 -2
- package/dist/runtime/authdocloader.test.js +1 -1
- package/dist/runtime/docloader.test.js +1 -1
- package/dist/sig/http.test.js +1 -1
- package/dist/vocab/actor.test.js +1 -1
- package/dist/vocab/lookup.test.js +1 -1
- package/dist/vocab/vocab.js +176 -176
- package/package.json +1 -1
package/dist/codegen/schema.js
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
4
4
|
|
5
5
|
import { fromFileUrl } from "../node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/from_file_url.js";
|
6
|
-
import { dirname$
|
6
|
+
import { dirname$3 as dirname } from "../node_modules/.pnpm/@jsr_std__url@1.0.0-rc.3/node_modules/@jsr/std__url/dirname.js";
|
7
7
|
import { join$3 as join } from "../node_modules/.pnpm/@jsr_std__url@1.0.0-rc.3/node_modules/@jsr/std__url/join.js";
|
8
8
|
import { parse } from "../node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/parse.js";
|
9
9
|
import { readDirRecursive } from "./fs.js";
|
package/dist/deno.js
CHANGED
@@ -18,7 +18,6 @@ import { assert } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modu
|
|
18
18
|
import { assertEquals } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_equals.js";
|
19
19
|
import { assertInstanceOf } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_instance_of.js";
|
20
20
|
import { test } from "../testing/mod.js";
|
21
|
-
import { install, mock, uninstall } from "../node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js";
|
22
21
|
import { assertFalse } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_false.js";
|
23
22
|
import { assertNotEquals } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_not_equals.js";
|
24
23
|
import { assertRejects } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_rejects.js";
|
@@ -28,6 +27,7 @@ import { dirname } from "../node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules
|
|
28
27
|
import { join } from "../node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/join.js";
|
29
28
|
import { mockDocumentLoader } from "../testing/docloader.js";
|
30
29
|
import { ed25519Multikey, ed25519PrivateKey, ed25519PublicKey, rsaPrivateKey2, rsaPrivateKey3, rsaPublicKey2, rsaPublicKey3 } from "../testing/keys.js";
|
30
|
+
import { install, mock, uninstall } from "../node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js";
|
31
31
|
import { readFile } from "node:fs/promises";
|
32
32
|
|
33
33
|
//#region federation/middleware.test.ts
|
@@ -9,12 +9,12 @@ import { extractInboxes, sendActivity } from "./send.js";
|
|
9
9
|
import { assert } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert.js";
|
10
10
|
import { assertEquals } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_equals.js";
|
11
11
|
import { test } from "../testing/mod.js";
|
12
|
-
import { install, mock, uninstall } from "../node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js";
|
13
12
|
import { assertFalse } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_false.js";
|
14
13
|
import { assertNotEquals } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_not_equals.js";
|
15
14
|
import { assertRejects } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_rejects.js";
|
16
15
|
import { mockDocumentLoader } from "../testing/docloader.js";
|
17
16
|
import { ed25519Multikey, ed25519PrivateKey, rsaPrivateKey2, rsaPublicKey2 } from "../testing/keys.js";
|
17
|
+
import { install, mock, uninstall } from "../node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js";
|
18
18
|
|
19
19
|
//#region federation/send.test.ts
|
20
20
|
test("extractInboxes()", () => {
|
@@ -3,8 +3,8 @@
|
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
4
4
|
|
5
5
|
import { isWindows } from "./_os.js";
|
6
|
-
import { dirname$
|
7
|
-
import { dirname$
|
6
|
+
import { dirname$1 as dirname } from "./posix/dirname.js";
|
7
|
+
import { dirname$2 as dirname$1 } from "./windows/dirname.js";
|
8
8
|
|
9
9
|
//#region node_modules/.pnpm/@jsr+std__path@1.0.9/node_modules/@jsr/std__path/dirname.js
|
10
10
|
/**
|
package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/dirname.js
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
4
4
|
|
5
5
|
import { stripTrailingSeparators } from "../_common/strip_trailing_separators.js";
|
6
|
-
import { isPosixPathSeparator
|
6
|
+
import { isPosixPathSeparator } from "./_util.js";
|
7
7
|
import { assertArg } from "../_common/dirname.js";
|
8
8
|
|
9
9
|
//#region node_modules/.pnpm/@jsr+std__path@1.0.9/node_modules/@jsr/std__path/posix/dirname.js
|
@@ -51,4 +51,4 @@ import { assertArg } from "../_common/dirname.js";
|
|
51
51
|
}
|
52
52
|
|
53
53
|
//#endregion
|
54
|
-
export { dirname as dirname$
|
54
|
+
export { dirname as dirname$1 };
|
package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/normalize.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
import { Temporal } from "@js-temporal/polyfill";
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
4
4
|
|
5
|
-
import { isPosixPathSeparator
|
5
|
+
import { isPosixPathSeparator } from "./_util.js";
|
6
6
|
import { assertArg$2 as assertArg } from "../_common/normalize.js";
|
7
7
|
import { normalizeString } from "../_common/normalize_string.js";
|
8
8
|
|
package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/dirname.js
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
import { stripTrailingSeparators } from "../_common/strip_trailing_separators.js";
|
6
6
|
import { CHAR_COLON } from "../_common/constants.js";
|
7
|
-
import { isPathSeparator, isPosixPathSeparator, isWindowsDeviceRoot } from "./_util.js";
|
7
|
+
import { isPathSeparator, isPosixPathSeparator$1 as isPosixPathSeparator, isWindowsDeviceRoot } from "./_util.js";
|
8
8
|
import { assertArg } from "../_common/dirname.js";
|
9
9
|
|
10
10
|
//#region node_modules/.pnpm/@jsr+std__path@1.0.9/node_modules/@jsr/std__path/windows/dirname.js
|
@@ -72,4 +72,4 @@ import { assertArg } from "../_common/dirname.js";
|
|
72
72
|
}
|
73
73
|
|
74
74
|
//#endregion
|
75
|
-
export { dirname as dirname$
|
75
|
+
export { dirname as dirname$2 };
|
package/dist/node_modules/.pnpm/@jsr_std__url@1.0.0-rc.3/node_modules/@jsr/std__url/dirname.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
import { Temporal } from "@js-temporal/polyfill";
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
4
4
|
|
5
|
-
import { dirname$
|
5
|
+
import { dirname$1 as dirname } from "../../../../@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/dirname.js";
|
6
6
|
import { strip } from "./_strip.js";
|
7
7
|
|
8
8
|
//#region node_modules/.pnpm/@jsr+std__url@1.0.0-rc.3/node_modules/@jsr/std__url/dirname.js
|
@@ -35,4 +35,4 @@ import { strip } from "./_strip.js";
|
|
35
35
|
}
|
36
36
|
|
37
37
|
//#endregion
|
38
|
-
export { dirname$1 };
|
38
|
+
export { dirname$1 as dirname$3 };
|
@@ -7,10 +7,10 @@ import { verifyRequest } from "../sig/http.js";
|
|
7
7
|
import { getAuthenticatedDocumentLoader } from "./authdocloader.js";
|
8
8
|
import { assertEquals } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_equals.js";
|
9
9
|
import { test } from "../testing/mod.js";
|
10
|
-
import { install, mock, uninstall } from "../node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js";
|
11
10
|
import { assertRejects } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_rejects.js";
|
12
11
|
import { mockDocumentLoader } from "../testing/docloader.js";
|
13
12
|
import { rsaPrivateKey2 } from "../testing/keys.js";
|
13
|
+
import { install, mock, uninstall } from "../node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js";
|
14
14
|
|
15
15
|
//#region runtime/authdocloader.test.ts
|
16
16
|
test("getAuthenticatedDocumentLoader()", async (t) => {
|
@@ -9,10 +9,10 @@ import { FetchError, getDocumentLoader, getUserAgent, kvCache } from "./docloade
|
|
9
9
|
import { MemoryKvStore } from "../federation/kv.js";
|
10
10
|
import { assertEquals } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_equals.js";
|
11
11
|
import { test } from "../testing/mod.js";
|
12
|
-
import { install, mock, uninstall } from "../node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js";
|
13
12
|
import { assertRejects } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_rejects.js";
|
14
13
|
import { assertThrows } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_throws.js";
|
15
14
|
import { mockDocumentLoader } from "../testing/docloader.js";
|
15
|
+
import { install, mock, uninstall } from "../node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js";
|
16
16
|
import process from "node:process";
|
17
17
|
|
18
18
|
//#region runtime/docloader.test.ts
|
package/dist/sig/http.test.js
CHANGED
@@ -8,12 +8,12 @@ import { createRfc9421SignatureBase, doubleKnock, formatRfc9421Signature, format
|
|
8
8
|
import { assert } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert.js";
|
9
9
|
import { assertEquals } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_equals.js";
|
10
10
|
import { test } from "../testing/mod.js";
|
11
|
-
import { install, mock, uninstall } from "../node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js";
|
12
11
|
import { assertExists } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_exists.js";
|
13
12
|
import { assertFalse } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_false.js";
|
14
13
|
import { assertStringIncludes } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_string_includes.js";
|
15
14
|
import { mockDocumentLoader } from "../testing/docloader.js";
|
16
15
|
import { rsaPrivateKey2, rsaPublicKey1, rsaPublicKey2, rsaPublicKey5 } from "../testing/keys.js";
|
16
|
+
import { install, mock, uninstall } from "../node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js";
|
17
17
|
import { encodeBase64 } from "byte-encodings/base64";
|
18
18
|
|
19
19
|
//#region sig/http.test.ts
|
package/dist/vocab/actor.test.js
CHANGED
@@ -7,11 +7,11 @@ import { getActorClassByTypeName, getActorHandle, getActorTypeName, isActor, nor
|
|
7
7
|
import { assert } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert.js";
|
8
8
|
import { assertEquals } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_equals.js";
|
9
9
|
import { test } from "../testing/mod.js";
|
10
|
-
import { install, mock, uninstall } from "../node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js";
|
11
10
|
import { assertFalse } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_false.js";
|
12
11
|
import { assertRejects } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_rejects.js";
|
13
12
|
import { assertStrictEquals } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_strict_equals.js";
|
14
13
|
import { assertThrows } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_throws.js";
|
14
|
+
import { install, mock, uninstall } from "../node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js";
|
15
15
|
import { property } from "../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/Property.js";
|
16
16
|
import { assert$1 } from "../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/Runner.js";
|
17
17
|
import { constantFrom } from "../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/constantFrom.js";
|
@@ -7,8 +7,8 @@ import { lookupObject, traverseCollection } from "./lookup.js";
|
|
7
7
|
import { assertEquals } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_equals.js";
|
8
8
|
import { assertInstanceOf } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_instance_of.js";
|
9
9
|
import { test } from "../testing/mod.js";
|
10
|
-
import { install, mock, uninstall } from "../node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js";
|
11
10
|
import { mockDocumentLoader } from "../testing/docloader.js";
|
11
|
+
import { install, mock, uninstall } from "../node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js";
|
12
12
|
|
13
13
|
//#region vocab/lookup.test.ts
|
14
14
|
test("lookupObject()", async (t) => {
|