@fedify/fedify 1.6.1-pr.242.865 → 1.6.1-pr.242.867
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/compat/transformers.test.js +4 -4
- package/dist/deno.js +1 -1
- package/dist/federation/builder.js +1 -1
- package/dist/federation/builder.test.js +3 -3
- package/dist/federation/collection.test.js +1 -1
- package/dist/federation/handler.js +2 -2
- package/dist/federation/handler.test.js +3 -3
- package/dist/federation/inbox.js +1 -1
- package/dist/federation/inbox.test.js +1 -1
- package/dist/federation/keycache.test.js +3 -3
- package/dist/federation/kv.test.js +1 -1
- package/dist/federation/middleware.js +10 -10
- package/dist/federation/middleware.test.js +7 -7
- package/dist/federation/mq.test.js +1 -1
- package/dist/federation/retry.test.js +1 -1
- package/dist/federation/router.test.js +1 -1
- package/dist/federation/send.test.js +2 -2
- package/dist/node_modules/.pnpm/fetch-mock@12.5.2/node_modules/fetch-mock/dist/esm/FetchMock.js +1 -1
- package/dist/node_modules/.pnpm/fetch-mock@12.5.2/node_modules/fetch-mock/dist/esm/Router.js +1 -1
- package/dist/nodeinfo/client.test.js +1 -1
- package/dist/nodeinfo/handler.test.js +1 -1
- package/dist/nodeinfo/semver.test.js +1 -1
- package/dist/nodeinfo/types.test.js +1 -1
- package/dist/runtime/authdocloader.test.js +1 -1
- package/dist/runtime/docloader.test.js +2 -2
- package/dist/runtime/key.js +2 -2
- package/dist/runtime/key.test.js +1 -1
- package/dist/runtime/langstr.test.js +1 -1
- package/dist/runtime/multibase/multibase.test.js +1 -1
- package/dist/runtime/url.test.js +1 -1
- package/dist/sig/http.js +1 -1
- package/dist/sig/http.test.js +2 -2
- package/dist/sig/key.test.js +1 -1
- package/dist/sig/ld.js +2 -2
- package/dist/sig/ld.test.js +2 -2
- package/dist/sig/owner.test.js +2 -2
- package/dist/sig/proof.js +1 -1
- package/dist/sig/proof.test.js +2 -2
- package/dist/vocab/actor.js +1 -1
- package/dist/vocab/actor.test.js +2 -2
- package/dist/vocab/constants.js +1 -2
- package/dist/vocab/lookup.js +1 -1
- package/dist/vocab/lookup.test.js +2 -2
- package/dist/vocab/mod.js +1 -4
- package/dist/vocab/type.test.js +2 -2
- package/dist/vocab/vocab.js +177 -177
- package/dist/vocab/vocab.test.js +2 -2
- package/dist/webfinger/handler.test.js +2 -2
- package/dist/webfinger/lookup.test.js +1 -1
- package/package.json +1 -1
package/dist/vocab/vocab.test.js
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
import { Temporal } from "@js-temporal/polyfill";
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
4
4
|
|
5
|
+
import { assertEquals } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_equals.js";
|
6
|
+
import { assertInstanceOf } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_instance_of.js";
|
5
7
|
import { decode } from "../runtime/multibase/index.js";
|
6
8
|
import { LanguageString } from "../runtime/langstr.js";
|
7
9
|
import { Activity, Announce, Create, CryptographicKey, Follow, Hashtag, Note, Object as Object$1, OrderedCollectionPage, Person, Place, Source, vocab_exports } from "./vocab.js";
|
8
|
-
import { assertEquals } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_equals.js";
|
9
|
-
import { assertInstanceOf } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_instance_of.js";
|
10
10
|
import { test } from "../testing/mod.js";
|
11
11
|
import { assertFalse } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_false.js";
|
12
12
|
import { assertNotEquals } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_not_equals.js";
|
@@ -2,11 +2,11 @@
|
|
2
2
|
import { Temporal } from "@js-temporal/polyfill";
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
4
4
|
|
5
|
-
import {
|
5
|
+
import { assertEquals } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_equals.js";
|
6
6
|
import { MemoryKvStore } from "../federation/kv.js";
|
7
|
+
import { Image, Link, Person } from "../vocab/vocab.js";
|
7
8
|
import { handleWebFinger } from "./handler.js";
|
8
9
|
import { createFederation } from "../federation/middleware.js";
|
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
11
|
import { createRequestContext } from "../testing/context.js";
|
12
12
|
|
@@ -2,8 +2,8 @@
|
|
2
2
|
import { Temporal } from "@js-temporal/polyfill";
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
4
4
|
|
5
|
-
import { lookupWebFinger } from "./lookup.js";
|
6
5
|
import { assertEquals } from "../node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_equals.js";
|
6
|
+
import { lookupWebFinger } from "./lookup.js";
|
7
7
|
import { test } from "../testing/mod.js";
|
8
8
|
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";
|
9
9
|
import { withTimeout } from "@es-toolkit/es-toolkit";
|