@fedify/debugger 2.1.0-dev.403 → 2.1.0-dev.406

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 (3) hide show
  1. package/dist/mod.d.cts +116 -116
  2. package/dist/mod.d.ts +116 -116
  3. package/package.json +2 -2
package/dist/mod.d.cts CHANGED
@@ -5,18 +5,18 @@ import { Sink } from "@logtape/logtape";
5
5
  //#region src/auth.d.ts
6
6
 
7
7
  /**
8
- * Authentication configuration for the debug dashboard.
9
- *
10
- * The debug dashboard can be protected using one of three authentication modes:
11
- *
12
- * - `"password"` — Shows a password-only login form.
13
- * - `"usernamePassword"` — Shows a username + password login form.
14
- * - `"request"` — Authenticates based on the incoming request (e.g., IP
15
- * address). No login form is shown; unauthenticated requests receive a
16
- * 403 response.
17
- *
18
- * Each mode supports either a static credential check or a callback function.
19
- */
8
+ * Authentication configuration for the debug dashboard.
9
+ *
10
+ * The debug dashboard can be protected using one of three authentication modes:
11
+ *
12
+ * - `"password"` — Shows a password-only login form.
13
+ * - `"usernamePassword"` — Shows a username + password login form.
14
+ * - `"request"` — Authenticates based on the incoming request (e.g., IP
15
+ * address). No login form is shown; unauthenticated requests receive a
16
+ * 403 response.
17
+ *
18
+ * Each mode supports either a static credential check or a callback function.
19
+ */
20
20
  type FederationDebuggerAuth = {
21
21
  readonly type: "password";
22
22
  authenticate(password: string): boolean | Promise<boolean>;
@@ -37,150 +37,150 @@ type FederationDebuggerAuth = {
37
37
  //#endregion
38
38
  //#region src/log-store.d.ts
39
39
  /**
40
- * A serialized log record for the debug dashboard.
41
- */
40
+ * A serialized log record for the debug dashboard.
41
+ */
42
42
  interface SerializedLogRecord {
43
43
  /**
44
- * The logger category.
45
- */
44
+ * The logger category.
45
+ */
46
46
  readonly category: readonly string[];
47
47
  /**
48
- * The log level.
49
- */
48
+ * The log level.
49
+ */
50
50
  readonly level: string;
51
51
  /**
52
- * The rendered log message.
53
- */
52
+ * The rendered log message.
53
+ */
54
54
  readonly message: string;
55
55
  /**
56
- * The timestamp in milliseconds since the Unix epoch.
57
- */
56
+ * The timestamp in milliseconds since the Unix epoch.
57
+ */
58
58
  readonly timestamp: number;
59
59
  /**
60
- * The extra properties of the log record (excluding traceId and spanId).
61
- */
60
+ * The extra properties of the log record (excluding traceId and spanId).
61
+ */
62
62
  readonly properties: Record<string, unknown>;
63
63
  }
64
64
  /**
65
- * Persistent storage for log records grouped by trace ID, backed by a
66
- * {@link KvStore}. When the same `KvStore` is shared across web and worker
67
- * processes the dashboard can display logs produced by background tasks.
68
- */
65
+ * Persistent storage for log records grouped by trace ID, backed by a
66
+ * {@link KvStore}. When the same `KvStore` is shared across web and worker
67
+ * processes the dashboard can display logs produced by background tasks.
68
+ */
69
69
  //#endregion
70
70
  //#region src/mod.d.ts
71
71
  /**
72
- * Resets the internal auto-setup state. This is intended **only for tests**
73
- * that need to exercise the auto-setup code path more than once within the
74
- * same process.
75
- *
76
- * @internal
77
- */
72
+ * Resets the internal auto-setup state. This is intended **only for tests**
73
+ * that need to exercise the auto-setup code path more than once within the
74
+ * same process.
75
+ *
76
+ * @internal
77
+ */
78
78
  declare function resetAutoSetup(): void;
79
79
  /**
80
- * Options for {@link createFederationDebugger} with an explicit exporter.
81
- *
82
- * When `exporter` is provided, the caller is responsible for setting up
83
- * the OpenTelemetry tracer provider and passing it to `createFederation()`.
84
- */
80
+ * Options for {@link createFederationDebugger} with an explicit exporter.
81
+ *
82
+ * When `exporter` is provided, the caller is responsible for setting up
83
+ * the OpenTelemetry tracer provider and passing it to `createFederation()`.
84
+ */
85
85
  interface FederationDebuggerOptions {
86
86
  /**
87
- * The path prefix for the debug dashboard. Defaults to `"/__debug__"`.
88
- */
87
+ * The path prefix for the debug dashboard. Defaults to `"/__debug__"`.
88
+ */
89
89
  path?: string;
90
90
  /**
91
- * The {@link FedifySpanExporter} to query trace data from.
92
- */
91
+ * The {@link FedifySpanExporter} to query trace data from.
92
+ */
93
93
  exporter: FedifySpanExporter;
94
94
  /**
95
- * The {@link KvStore} to persist log records to. This should typically be
96
- * the same `KvStore` instance that was passed to the `FedifySpanExporter`
97
- * so that logs and traces are co-located and accessible from all processes
98
- * (e.g., both web and worker nodes).
99
- */
95
+ * The {@link KvStore} to persist log records to. This should typically be
96
+ * the same `KvStore` instance that was passed to the `FedifySpanExporter`
97
+ * so that logs and traces are co-located and accessible from all processes
98
+ * (e.g., both web and worker nodes).
99
+ */
100
100
  kv: KvStore;
101
101
  /**
102
- * Authentication configuration for the debug dashboard. When omitted,
103
- * the dashboard is accessible without authentication.
104
- */
102
+ * Authentication configuration for the debug dashboard. When omitted,
103
+ * the dashboard is accessible without authentication.
104
+ */
105
105
  auth?: FederationDebuggerAuth;
106
106
  }
107
107
  /**
108
- * Options for {@link createFederationDebugger} without an explicit exporter.
109
- *
110
- * When `exporter` is omitted, the debugger automatically creates a
111
- * {@link MemoryKvStore}, {@link FedifySpanExporter},
112
- * {@link BasicTracerProvider}, and registers it as the global tracer provider
113
- * so that `createFederation()` picks it up automatically.
114
- */
108
+ * Options for {@link createFederationDebugger} without an explicit exporter.
109
+ *
110
+ * When `exporter` is omitted, the debugger automatically creates a
111
+ * {@link MemoryKvStore}, {@link FedifySpanExporter},
112
+ * {@link BasicTracerProvider}, and registers it as the global tracer provider
113
+ * so that `createFederation()` picks it up automatically.
114
+ */
115
115
  interface FederationDebuggerSimpleOptions {
116
116
  /**
117
- * The path prefix for the debug dashboard. Defaults to `"/__debug__"`.
118
- */
117
+ * The path prefix for the debug dashboard. Defaults to `"/__debug__"`.
118
+ */
119
119
  path?: string;
120
120
  /**
121
- * Authentication configuration for the debug dashboard. When omitted,
122
- * the dashboard is accessible without authentication.
123
- */
121
+ * Authentication configuration for the debug dashboard. When omitted,
122
+ * the dashboard is accessible without authentication.
123
+ */
124
124
  auth?: FederationDebuggerAuth;
125
125
  }
126
126
  /**
127
- * Wraps a {@link Federation} object with a debug dashboard.
128
- *
129
- * When called without an `exporter`, the debugger automatically sets up
130
- * OpenTelemetry tracing: it creates a {@link MemoryKvStore},
131
- * {@link FedifySpanExporter}, and {@link BasicTracerProvider}, then registers
132
- * it as the global tracer provider. It also auto-configures LogTape to
133
- * collect logs per trace.
134
- *
135
- * @example Simple usage (recommended)
136
- * ```typescript ignore
137
- * const innerFederation = createFederation({ kv: new MemoryKvStore() });
138
- * const federation = createFederationDebugger(innerFederation);
139
- * ```
140
- *
141
- * @template TContextData The context data type of the federation.
142
- * @param federation The federation object to wrap.
143
- * @param options Optional path configuration.
144
- * @returns A new {@link Federation} object with the debug dashboard attached
145
- * and a `sink` property for LogTape integration.
146
- */
127
+ * Wraps a {@link Federation} object with a debug dashboard.
128
+ *
129
+ * When called without an `exporter`, the debugger automatically sets up
130
+ * OpenTelemetry tracing: it creates a {@link MemoryKvStore},
131
+ * {@link FedifySpanExporter}, and {@link BasicTracerProvider}, then registers
132
+ * it as the global tracer provider. It also auto-configures LogTape to
133
+ * collect logs per trace.
134
+ *
135
+ * @example Simple usage (recommended)
136
+ * ```typescript ignore
137
+ * const innerFederation = createFederation({ kv: new MemoryKvStore() });
138
+ * const federation = createFederationDebugger(innerFederation);
139
+ * ```
140
+ *
141
+ * @template TContextData The context data type of the federation.
142
+ * @param federation The federation object to wrap.
143
+ * @param options Optional path configuration.
144
+ * @returns A new {@link Federation} object with the debug dashboard attached
145
+ * and a `sink` property for LogTape integration.
146
+ */
147
147
  declare function createFederationDebugger<TContextData>(federation: Federation<TContextData>, options?: FederationDebuggerSimpleOptions): Federation<TContextData> & {
148
148
  sink: Sink;
149
149
  };
150
150
  /**
151
- * Wraps a {@link Federation} object with a debug dashboard.
152
- *
153
- * When called with an `exporter`, the caller is responsible for setting up
154
- * the OpenTelemetry tracer provider and passing it to `createFederation()`.
155
- * The returned object includes a `sink` property that should be added to
156
- * the LogTape configuration to collect logs per trace.
157
- *
158
- * @example Advanced usage with explicit exporter
159
- * ```typescript ignore
160
- * const kv = new MemoryKvStore();
161
- * const exporter = new FedifySpanExporter(kv);
162
- * const tracerProvider = new BasicTracerProvider({
163
- * spanProcessors: [new SimpleSpanProcessor(exporter)],
164
- * });
165
- * const innerFederation = createFederation({ kv, tracerProvider });
166
- * const federation = createFederationDebugger(innerFederation, {
167
- * exporter,
168
- * kv,
169
- * });
170
- * await configure({
171
- * sinks: { debugger: federation.sink },
172
- * loggers: [
173
- * { category: "fedify", sinks: ["debugger"] },
174
- * ],
175
- * });
176
- * ```
177
- *
178
- * @template TContextData The context data type of the federation.
179
- * @param federation The federation object to wrap.
180
- * @param options Options including the exporter.
181
- * @returns A new {@link Federation} object with the debug dashboard attached
182
- * and a `sink` property for LogTape integration.
183
- */
151
+ * Wraps a {@link Federation} object with a debug dashboard.
152
+ *
153
+ * When called with an `exporter`, the caller is responsible for setting up
154
+ * the OpenTelemetry tracer provider and passing it to `createFederation()`.
155
+ * The returned object includes a `sink` property that should be added to
156
+ * the LogTape configuration to collect logs per trace.
157
+ *
158
+ * @example Advanced usage with explicit exporter
159
+ * ```typescript ignore
160
+ * const kv = new MemoryKvStore();
161
+ * const exporter = new FedifySpanExporter(kv);
162
+ * const tracerProvider = new BasicTracerProvider({
163
+ * spanProcessors: [new SimpleSpanProcessor(exporter)],
164
+ * });
165
+ * const innerFederation = createFederation({ kv, tracerProvider });
166
+ * const federation = createFederationDebugger(innerFederation, {
167
+ * exporter,
168
+ * kv,
169
+ * });
170
+ * await configure({
171
+ * sinks: { debugger: federation.sink },
172
+ * loggers: [
173
+ * { category: "fedify", sinks: ["debugger"] },
174
+ * ],
175
+ * });
176
+ * ```
177
+ *
178
+ * @template TContextData The context data type of the federation.
179
+ * @param federation The federation object to wrap.
180
+ * @param options Options including the exporter.
181
+ * @returns A new {@link Federation} object with the debug dashboard attached
182
+ * and a `sink` property for LogTape integration.
183
+ */
184
184
  declare function createFederationDebugger<TContextData>(federation: Federation<TContextData>, options: FederationDebuggerOptions): Federation<TContextData> & {
185
185
  sink: Sink;
186
186
  };
package/dist/mod.d.ts CHANGED
@@ -6,18 +6,18 @@ import { Sink } from "@logtape/logtape";
6
6
  //#region src/auth.d.ts
7
7
 
8
8
  /**
9
- * Authentication configuration for the debug dashboard.
10
- *
11
- * The debug dashboard can be protected using one of three authentication modes:
12
- *
13
- * - `"password"` — Shows a password-only login form.
14
- * - `"usernamePassword"` — Shows a username + password login form.
15
- * - `"request"` — Authenticates based on the incoming request (e.g., IP
16
- * address). No login form is shown; unauthenticated requests receive a
17
- * 403 response.
18
- *
19
- * Each mode supports either a static credential check or a callback function.
20
- */
9
+ * Authentication configuration for the debug dashboard.
10
+ *
11
+ * The debug dashboard can be protected using one of three authentication modes:
12
+ *
13
+ * - `"password"` — Shows a password-only login form.
14
+ * - `"usernamePassword"` — Shows a username + password login form.
15
+ * - `"request"` — Authenticates based on the incoming request (e.g., IP
16
+ * address). No login form is shown; unauthenticated requests receive a
17
+ * 403 response.
18
+ *
19
+ * Each mode supports either a static credential check or a callback function.
20
+ */
21
21
  type FederationDebuggerAuth = {
22
22
  readonly type: "password";
23
23
  authenticate(password: string): boolean | Promise<boolean>;
@@ -38,150 +38,150 @@ type FederationDebuggerAuth = {
38
38
  //#endregion
39
39
  //#region src/log-store.d.ts
40
40
  /**
41
- * A serialized log record for the debug dashboard.
42
- */
41
+ * A serialized log record for the debug dashboard.
42
+ */
43
43
  interface SerializedLogRecord {
44
44
  /**
45
- * The logger category.
46
- */
45
+ * The logger category.
46
+ */
47
47
  readonly category: readonly string[];
48
48
  /**
49
- * The log level.
50
- */
49
+ * The log level.
50
+ */
51
51
  readonly level: string;
52
52
  /**
53
- * The rendered log message.
54
- */
53
+ * The rendered log message.
54
+ */
55
55
  readonly message: string;
56
56
  /**
57
- * The timestamp in milliseconds since the Unix epoch.
58
- */
57
+ * The timestamp in milliseconds since the Unix epoch.
58
+ */
59
59
  readonly timestamp: number;
60
60
  /**
61
- * The extra properties of the log record (excluding traceId and spanId).
62
- */
61
+ * The extra properties of the log record (excluding traceId and spanId).
62
+ */
63
63
  readonly properties: Record<string, unknown>;
64
64
  }
65
65
  /**
66
- * Persistent storage for log records grouped by trace ID, backed by a
67
- * {@link KvStore}. When the same `KvStore` is shared across web and worker
68
- * processes the dashboard can display logs produced by background tasks.
69
- */
66
+ * Persistent storage for log records grouped by trace ID, backed by a
67
+ * {@link KvStore}. When the same `KvStore` is shared across web and worker
68
+ * processes the dashboard can display logs produced by background tasks.
69
+ */
70
70
  //#endregion
71
71
  //#region src/mod.d.ts
72
72
  /**
73
- * Resets the internal auto-setup state. This is intended **only for tests**
74
- * that need to exercise the auto-setup code path more than once within the
75
- * same process.
76
- *
77
- * @internal
78
- */
73
+ * Resets the internal auto-setup state. This is intended **only for tests**
74
+ * that need to exercise the auto-setup code path more than once within the
75
+ * same process.
76
+ *
77
+ * @internal
78
+ */
79
79
  declare function resetAutoSetup(): void;
80
80
  /**
81
- * Options for {@link createFederationDebugger} with an explicit exporter.
82
- *
83
- * When `exporter` is provided, the caller is responsible for setting up
84
- * the OpenTelemetry tracer provider and passing it to `createFederation()`.
85
- */
81
+ * Options for {@link createFederationDebugger} with an explicit exporter.
82
+ *
83
+ * When `exporter` is provided, the caller is responsible for setting up
84
+ * the OpenTelemetry tracer provider and passing it to `createFederation()`.
85
+ */
86
86
  interface FederationDebuggerOptions {
87
87
  /**
88
- * The path prefix for the debug dashboard. Defaults to `"/__debug__"`.
89
- */
88
+ * The path prefix for the debug dashboard. Defaults to `"/__debug__"`.
89
+ */
90
90
  path?: string;
91
91
  /**
92
- * The {@link FedifySpanExporter} to query trace data from.
93
- */
92
+ * The {@link FedifySpanExporter} to query trace data from.
93
+ */
94
94
  exporter: FedifySpanExporter;
95
95
  /**
96
- * The {@link KvStore} to persist log records to. This should typically be
97
- * the same `KvStore` instance that was passed to the `FedifySpanExporter`
98
- * so that logs and traces are co-located and accessible from all processes
99
- * (e.g., both web and worker nodes).
100
- */
96
+ * The {@link KvStore} to persist log records to. This should typically be
97
+ * the same `KvStore` instance that was passed to the `FedifySpanExporter`
98
+ * so that logs and traces are co-located and accessible from all processes
99
+ * (e.g., both web and worker nodes).
100
+ */
101
101
  kv: KvStore;
102
102
  /**
103
- * Authentication configuration for the debug dashboard. When omitted,
104
- * the dashboard is accessible without authentication.
105
- */
103
+ * Authentication configuration for the debug dashboard. When omitted,
104
+ * the dashboard is accessible without authentication.
105
+ */
106
106
  auth?: FederationDebuggerAuth;
107
107
  }
108
108
  /**
109
- * Options for {@link createFederationDebugger} without an explicit exporter.
110
- *
111
- * When `exporter` is omitted, the debugger automatically creates a
112
- * {@link MemoryKvStore}, {@link FedifySpanExporter},
113
- * {@link BasicTracerProvider}, and registers it as the global tracer provider
114
- * so that `createFederation()` picks it up automatically.
115
- */
109
+ * Options for {@link createFederationDebugger} without an explicit exporter.
110
+ *
111
+ * When `exporter` is omitted, the debugger automatically creates a
112
+ * {@link MemoryKvStore}, {@link FedifySpanExporter},
113
+ * {@link BasicTracerProvider}, and registers it as the global tracer provider
114
+ * so that `createFederation()` picks it up automatically.
115
+ */
116
116
  interface FederationDebuggerSimpleOptions {
117
117
  /**
118
- * The path prefix for the debug dashboard. Defaults to `"/__debug__"`.
119
- */
118
+ * The path prefix for the debug dashboard. Defaults to `"/__debug__"`.
119
+ */
120
120
  path?: string;
121
121
  /**
122
- * Authentication configuration for the debug dashboard. When omitted,
123
- * the dashboard is accessible without authentication.
124
- */
122
+ * Authentication configuration for the debug dashboard. When omitted,
123
+ * the dashboard is accessible without authentication.
124
+ */
125
125
  auth?: FederationDebuggerAuth;
126
126
  }
127
127
  /**
128
- * Wraps a {@link Federation} object with a debug dashboard.
129
- *
130
- * When called without an `exporter`, the debugger automatically sets up
131
- * OpenTelemetry tracing: it creates a {@link MemoryKvStore},
132
- * {@link FedifySpanExporter}, and {@link BasicTracerProvider}, then registers
133
- * it as the global tracer provider. It also auto-configures LogTape to
134
- * collect logs per trace.
135
- *
136
- * @example Simple usage (recommended)
137
- * ```typescript ignore
138
- * const innerFederation = createFederation({ kv: new MemoryKvStore() });
139
- * const federation = createFederationDebugger(innerFederation);
140
- * ```
141
- *
142
- * @template TContextData The context data type of the federation.
143
- * @param federation The federation object to wrap.
144
- * @param options Optional path configuration.
145
- * @returns A new {@link Federation} object with the debug dashboard attached
146
- * and a `sink` property for LogTape integration.
147
- */
128
+ * Wraps a {@link Federation} object with a debug dashboard.
129
+ *
130
+ * When called without an `exporter`, the debugger automatically sets up
131
+ * OpenTelemetry tracing: it creates a {@link MemoryKvStore},
132
+ * {@link FedifySpanExporter}, and {@link BasicTracerProvider}, then registers
133
+ * it as the global tracer provider. It also auto-configures LogTape to
134
+ * collect logs per trace.
135
+ *
136
+ * @example Simple usage (recommended)
137
+ * ```typescript ignore
138
+ * const innerFederation = createFederation({ kv: new MemoryKvStore() });
139
+ * const federation = createFederationDebugger(innerFederation);
140
+ * ```
141
+ *
142
+ * @template TContextData The context data type of the federation.
143
+ * @param federation The federation object to wrap.
144
+ * @param options Optional path configuration.
145
+ * @returns A new {@link Federation} object with the debug dashboard attached
146
+ * and a `sink` property for LogTape integration.
147
+ */
148
148
  declare function createFederationDebugger<TContextData>(federation: Federation<TContextData>, options?: FederationDebuggerSimpleOptions): Federation<TContextData> & {
149
149
  sink: Sink;
150
150
  };
151
151
  /**
152
- * Wraps a {@link Federation} object with a debug dashboard.
153
- *
154
- * When called with an `exporter`, the caller is responsible for setting up
155
- * the OpenTelemetry tracer provider and passing it to `createFederation()`.
156
- * The returned object includes a `sink` property that should be added to
157
- * the LogTape configuration to collect logs per trace.
158
- *
159
- * @example Advanced usage with explicit exporter
160
- * ```typescript ignore
161
- * const kv = new MemoryKvStore();
162
- * const exporter = new FedifySpanExporter(kv);
163
- * const tracerProvider = new BasicTracerProvider({
164
- * spanProcessors: [new SimpleSpanProcessor(exporter)],
165
- * });
166
- * const innerFederation = createFederation({ kv, tracerProvider });
167
- * const federation = createFederationDebugger(innerFederation, {
168
- * exporter,
169
- * kv,
170
- * });
171
- * await configure({
172
- * sinks: { debugger: federation.sink },
173
- * loggers: [
174
- * { category: "fedify", sinks: ["debugger"] },
175
- * ],
176
- * });
177
- * ```
178
- *
179
- * @template TContextData The context data type of the federation.
180
- * @param federation The federation object to wrap.
181
- * @param options Options including the exporter.
182
- * @returns A new {@link Federation} object with the debug dashboard attached
183
- * and a `sink` property for LogTape integration.
184
- */
152
+ * Wraps a {@link Federation} object with a debug dashboard.
153
+ *
154
+ * When called with an `exporter`, the caller is responsible for setting up
155
+ * the OpenTelemetry tracer provider and passing it to `createFederation()`.
156
+ * The returned object includes a `sink` property that should be added to
157
+ * the LogTape configuration to collect logs per trace.
158
+ *
159
+ * @example Advanced usage with explicit exporter
160
+ * ```typescript ignore
161
+ * const kv = new MemoryKvStore();
162
+ * const exporter = new FedifySpanExporter(kv);
163
+ * const tracerProvider = new BasicTracerProvider({
164
+ * spanProcessors: [new SimpleSpanProcessor(exporter)],
165
+ * });
166
+ * const innerFederation = createFederation({ kv, tracerProvider });
167
+ * const federation = createFederationDebugger(innerFederation, {
168
+ * exporter,
169
+ * kv,
170
+ * });
171
+ * await configure({
172
+ * sinks: { debugger: federation.sink },
173
+ * loggers: [
174
+ * { category: "fedify", sinks: ["debugger"] },
175
+ * ],
176
+ * });
177
+ * ```
178
+ *
179
+ * @template TContextData The context data type of the federation.
180
+ * @param federation The federation object to wrap.
181
+ * @param options Options including the exporter.
182
+ * @returns A new {@link Federation} object with the debug dashboard attached
183
+ * and a `sink` property for LogTape integration.
184
+ */
185
185
  declare function createFederationDebugger<TContextData>(federation: Federation<TContextData>, options: FederationDebuggerOptions): Federation<TContextData> & {
186
186
  sink: Sink;
187
187
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/debugger",
3
- "version": "2.1.0-dev.403+0ce42c7c",
3
+ "version": "2.1.0-dev.406+61a21e4e",
4
4
  "description": "Embedded ActivityPub debug dashboard for Fedify",
5
5
  "type": "module",
6
6
  "main": "./dist/mod.cjs",
@@ -29,7 +29,7 @@
29
29
  "directory": "packages/debugger"
30
30
  },
31
31
  "peerDependencies": {
32
- "@fedify/fedify": "^2.1.0-dev.403+0ce42c7c"
32
+ "@fedify/fedify": "^2.1.0-dev.406+61a21e4e"
33
33
  },
34
34
  "dependencies": {
35
35
  "@js-temporal/polyfill": "^0.5.1",