@fedify/fedify 1.6.1-pr.239.855 → 1.6.1-pr.242.857
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/deno.js +3 -1
- package/dist/federation/mod.d.ts +1 -1
- package/dist/federation/router.d.ts +1 -1
- package/dist/mod.d.ts +1 -1
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/dirname.js +1 -1
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/from_file_url.js +1 -1
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/normalize.js +1 -1
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/dirname.js +1 -1
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/from_file_url.js +1 -1
- 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/from_file_url.js +1 -1
- 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/vocab/vocab.js +176 -176
- package/dist/x/cfworkers.d.ts +28 -0
- package/dist/x/cfworkers.js +35 -0
- package/package.json +6 -1
package/dist/deno.js
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
//#region deno.json
|
6
6
|
var name = "@fedify/fedify";
|
7
|
-
var version = "1.6.1-pr.
|
7
|
+
var version = "1.6.1-pr.242.857+3b03b99a";
|
8
8
|
var license = "MIT";
|
9
9
|
var exports = {
|
10
10
|
".": "./mod.ts",
|
@@ -15,6 +15,7 @@ var exports = {
|
|
15
15
|
"./sig": "./sig/mod.ts",
|
16
16
|
"./vocab": "./vocab/mod.ts",
|
17
17
|
"./webfinger": "./webfinger/mod.ts",
|
18
|
+
"./x/cfworkers": "./x/cfworkers.ts",
|
18
19
|
"./x/denokv": "./x/denokv.ts",
|
19
20
|
"./x/fresh": "./x/fresh.ts",
|
20
21
|
"./x/hono": "./x/hono.ts",
|
@@ -22,6 +23,7 @@ var exports = {
|
|
22
23
|
};
|
23
24
|
var imports = {
|
24
25
|
"@cfworker/json-schema": "npm:@cfworker/json-schema@^4.1.1",
|
26
|
+
"@cloudflare/workers-types": "npm:@cloudflare/workers-types@^4.20250529.0",
|
25
27
|
"@es-toolkit/es-toolkit": "jsr:@es-toolkit/es-toolkit@^1.38.0",
|
26
28
|
"@hongminhee/deno-mock-fetch": "jsr:@hongminhee/deno-mock-fetch@^0.3.2",
|
27
29
|
"@hugoalh/http-header-link": "jsr:@hugoalh/http-header-link@^1.0.2",
|
package/dist/federation/mod.d.ts
CHANGED
@@ -6,7 +6,7 @@ import { SenderKeyPair } from "./send.js";
|
|
6
6
|
import { ActorAliasMapper, ActorDispatcher, ActorHandleMapper, ActorKeyPairsDispatcher, AuthorizePredicate, CollectionCounter, CollectionCursor, CollectionDispatcher, InboxErrorHandler, InboxListener, NodeInfoDispatcher, ObjectAuthorizePredicate, ObjectDispatcher, OutboxErrorHandler, SharedInboxKeyDispatcher } from "./callback.js";
|
7
7
|
import { InProcessMessageQueue$1 as InProcessMessageQueue, InProcessMessageQueueOptions, MessageQueue, MessageQueueEnqueueOptions, MessageQueueListenOptions, ParallelMessageQueue$1 as ParallelMessageQueue } from "./mq.js";
|
8
8
|
import { RespondWithObjectOptions, respondWithObject$1 as respondWithObject, respondWithObjectIfAcceptable$1 as respondWithObjectIfAcceptable } from "./handler.js";
|
9
|
-
import { Router$
|
9
|
+
import { Router$1 as Router, RouterError$1 as RouterError, RouterOptions, RouterRouteResult } from "./router.js";
|
10
10
|
import { createFederationBuilder$1 as createFederationBuilder } from "./builder.js";
|
11
11
|
import { CreateExponentialBackoffPolicyOptions, RetryContext, RetryPolicy, createExponentialBackoffPolicy$1 as createExponentialBackoffPolicy } from "./retry.js";
|
12
12
|
import { CreateFederationOptions, FederationKvPrefixes, FederationOrigin, FederationQueueOptions, createFederation$1 as createFederation } from "./middleware.js";
|
@@ -88,4 +88,4 @@ declare class RouterError extends Error {
|
|
88
88
|
*/
|
89
89
|
constructor(message: string);
|
90
90
|
} //#endregion
|
91
|
-
export { Router as Router$
|
91
|
+
export { Router as Router$1, RouterError as RouterError$1, RouterOptions, RouterRouteResult };
|
package/dist/mod.d.ts
CHANGED
@@ -22,7 +22,7 @@ import { SenderKeyPair } from "./federation/send.js";
|
|
22
22
|
import { ActorAliasMapper, ActorDispatcher, ActorHandleMapper, ActorKeyPairsDispatcher, AuthorizePredicate, CollectionCounter, CollectionCursor, CollectionDispatcher, InboxErrorHandler, InboxListener, NodeInfoDispatcher, ObjectAuthorizePredicate, ObjectDispatcher, OutboxErrorHandler, SharedInboxKeyDispatcher } from "./federation/callback.js";
|
23
23
|
import { InProcessMessageQueue$1 as InProcessMessageQueue, InProcessMessageQueueOptions, MessageQueue, MessageQueueEnqueueOptions, MessageQueueListenOptions, ParallelMessageQueue$1 as ParallelMessageQueue } from "./federation/mq.js";
|
24
24
|
import { RespondWithObjectOptions, respondWithObject$1 as respondWithObject, respondWithObjectIfAcceptable$1 as respondWithObjectIfAcceptable } from "./federation/handler.js";
|
25
|
-
import { Router$
|
25
|
+
import { Router$1 as Router, RouterError$1 as RouterError, RouterOptions, RouterRouteResult } from "./federation/router.js";
|
26
26
|
import { createFederationBuilder$1 as createFederationBuilder } from "./federation/builder.js";
|
27
27
|
import { CreateExponentialBackoffPolicyOptions, RetryContext, RetryPolicy, createExponentialBackoffPolicy$1 as createExponentialBackoffPolicy } from "./federation/retry.js";
|
28
28
|
import { CreateFederationOptions, FederationKvPrefixes, FederationOrigin, FederationQueueOptions, createFederation$1 as createFederation } from "./federation/middleware.js";
|
package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/dirname.js
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
import { stripTrailingSeparators } from "../_common/strip_trailing_separators.js";
|
6
6
|
import { isPosixPathSeparator } from "./_util.js";
|
7
|
-
import { assertArg } from "../_common/dirname.js";
|
7
|
+
import { assertArg$2 as 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
|
10
10
|
/**
|
@@ -2,7 +2,7 @@
|
|
2
2
|
import { Temporal } from "@js-temporal/polyfill";
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
4
4
|
|
5
|
-
import { assertArg
|
5
|
+
import { assertArg } from "../_common/from_file_url.js";
|
6
6
|
|
7
7
|
//#region node_modules/.pnpm/@jsr+std__path@1.0.9/node_modules/@jsr/std__path/posix/from_file_url.js
|
8
8
|
/**
|
package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/normalize.js
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
4
4
|
|
5
5
|
import { isPosixPathSeparator } from "./_util.js";
|
6
|
-
import { assertArg$
|
6
|
+
import { assertArg$1 as assertArg } from "../_common/normalize.js";
|
7
7
|
import { normalizeString } from "../_common/normalize_string.js";
|
8
8
|
|
9
9
|
//#region node_modules/.pnpm/@jsr+std__path@1.0.9/node_modules/@jsr/std__path/posix/normalize.js
|
@@ -2,7 +2,7 @@
|
|
2
2
|
import { Temporal } from "@js-temporal/polyfill";
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
4
4
|
|
5
|
-
import { assertArg
|
5
|
+
import { assertArg } from "../_common/from_file_url.js";
|
6
6
|
|
7
7
|
//#region node_modules/.pnpm/@jsr+std__path@1.0.9/node_modules/@jsr/std__path/windows/from_file_url.js
|
8
8
|
/**
|
package/dist/node_modules/.pnpm/fetch-mock@12.5.2/node_modules/fetch-mock/dist/esm/FetchMock.js
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
import { createCallLogFromRequest, createCallLogFromUrlAndOptions } from "./RequestUtils.js";
|
6
6
|
import { Route_default } from "./Route.js";
|
7
|
-
import { Router$
|
7
|
+
import { Router$2 as Router } from "./Router.js";
|
8
8
|
import { CallHistory_default } from "./CallHistory.js";
|
9
9
|
|
10
10
|
//#region node_modules/.pnpm/fetch-mock@12.5.2/node_modules/fetch-mock/dist/esm/FetchMock.js
|