@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.
Files changed (50) hide show
  1. package/dist/compat/transformers.test.js +4 -4
  2. package/dist/deno.js +1 -1
  3. package/dist/federation/builder.js +1 -1
  4. package/dist/federation/builder.test.js +3 -3
  5. package/dist/federation/collection.test.js +1 -1
  6. package/dist/federation/handler.js +2 -2
  7. package/dist/federation/handler.test.js +3 -3
  8. package/dist/federation/inbox.js +1 -1
  9. package/dist/federation/inbox.test.js +1 -1
  10. package/dist/federation/keycache.test.js +3 -3
  11. package/dist/federation/kv.test.js +1 -1
  12. package/dist/federation/middleware.js +10 -10
  13. package/dist/federation/middleware.test.js +7 -7
  14. package/dist/federation/mq.test.js +1 -1
  15. package/dist/federation/retry.test.js +1 -1
  16. package/dist/federation/router.test.js +1 -1
  17. package/dist/federation/send.test.js +2 -2
  18. package/dist/node_modules/.pnpm/fetch-mock@12.5.2/node_modules/fetch-mock/dist/esm/FetchMock.js +1 -1
  19. package/dist/node_modules/.pnpm/fetch-mock@12.5.2/node_modules/fetch-mock/dist/esm/Router.js +1 -1
  20. package/dist/nodeinfo/client.test.js +1 -1
  21. package/dist/nodeinfo/handler.test.js +1 -1
  22. package/dist/nodeinfo/semver.test.js +1 -1
  23. package/dist/nodeinfo/types.test.js +1 -1
  24. package/dist/runtime/authdocloader.test.js +1 -1
  25. package/dist/runtime/docloader.test.js +2 -2
  26. package/dist/runtime/key.js +2 -2
  27. package/dist/runtime/key.test.js +1 -1
  28. package/dist/runtime/langstr.test.js +1 -1
  29. package/dist/runtime/multibase/multibase.test.js +1 -1
  30. package/dist/runtime/url.test.js +1 -1
  31. package/dist/sig/http.js +1 -1
  32. package/dist/sig/http.test.js +2 -2
  33. package/dist/sig/key.test.js +1 -1
  34. package/dist/sig/ld.js +2 -2
  35. package/dist/sig/ld.test.js +2 -2
  36. package/dist/sig/owner.test.js +2 -2
  37. package/dist/sig/proof.js +1 -1
  38. package/dist/sig/proof.test.js +2 -2
  39. package/dist/vocab/actor.js +1 -1
  40. package/dist/vocab/actor.test.js +2 -2
  41. package/dist/vocab/constants.js +1 -2
  42. package/dist/vocab/lookup.js +1 -1
  43. package/dist/vocab/lookup.test.js +2 -2
  44. package/dist/vocab/mod.js +1 -4
  45. package/dist/vocab/type.test.js +2 -2
  46. package/dist/vocab/vocab.js +177 -177
  47. package/dist/vocab/vocab.test.js +2 -2
  48. package/dist/webfinger/handler.test.js +2 -2
  49. package/dist/webfinger/lookup.test.js +1 -1
  50. package/package.json +1 -1
@@ -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 { Image, Link, Person } from "../vocab/vocab.js";
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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/fedify",
3
- "version": "1.6.1-pr.242.865+48613a87",
3
+ "version": "1.6.1-pr.242.867+1c6f8293",
4
4
  "description": "An ActivityPub server framework",
5
5
  "keywords": [
6
6
  "ActivityPub",