@rivetkit/cloudflare-workers 2.0.18 → 2.0.19
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/mod.d.cts +5 -0
- package/dist/mod.d.ts +5 -0
- package/package.json +2 -2
package/dist/mod.d.cts
CHANGED
|
@@ -128,7 +128,9 @@ declare const ConfigSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
128
128
|
requestLifespan: z.ZodOptional<z.ZodNumber>;
|
|
129
129
|
runnersMargin: z.ZodOptional<z.ZodNumber>;
|
|
130
130
|
slotsPerRunner: z.ZodOptional<z.ZodNumber>;
|
|
131
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
131
132
|
}, "strip", z.ZodTypeAny, {
|
|
133
|
+
metadata?: Record<string, unknown> | undefined;
|
|
132
134
|
headers?: Record<string, string> | undefined;
|
|
133
135
|
url?: string | undefined;
|
|
134
136
|
maxRunners?: number | undefined;
|
|
@@ -137,6 +139,7 @@ declare const ConfigSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
137
139
|
runnersMargin?: number | undefined;
|
|
138
140
|
slotsPerRunner?: number | undefined;
|
|
139
141
|
}, {
|
|
142
|
+
metadata?: Record<string, unknown> | undefined;
|
|
140
143
|
headers?: Record<string, string> | undefined;
|
|
141
144
|
url?: string | undefined;
|
|
142
145
|
maxRunners?: number | undefined;
|
|
@@ -214,6 +217,7 @@ declare const ConfigSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
214
217
|
} | undefined;
|
|
215
218
|
overrideServerAddress?: string | undefined;
|
|
216
219
|
autoConfigureServerless?: boolean | {
|
|
220
|
+
metadata?: Record<string, unknown> | undefined;
|
|
217
221
|
headers?: Record<string, string> | undefined;
|
|
218
222
|
url?: string | undefined;
|
|
219
223
|
maxRunners?: number | undefined;
|
|
@@ -267,6 +271,7 @@ declare const ConfigSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
267
271
|
baseLogger?: rivetkit_log.Logger | undefined;
|
|
268
272
|
} | undefined;
|
|
269
273
|
autoConfigureServerless?: boolean | {
|
|
274
|
+
metadata?: Record<string, unknown> | undefined;
|
|
270
275
|
headers?: Record<string, string> | undefined;
|
|
271
276
|
url?: string | undefined;
|
|
272
277
|
maxRunners?: number | undefined;
|
package/dist/mod.d.ts
CHANGED
|
@@ -128,7 +128,9 @@ declare const ConfigSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
128
128
|
requestLifespan: z.ZodOptional<z.ZodNumber>;
|
|
129
129
|
runnersMargin: z.ZodOptional<z.ZodNumber>;
|
|
130
130
|
slotsPerRunner: z.ZodOptional<z.ZodNumber>;
|
|
131
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
131
132
|
}, "strip", z.ZodTypeAny, {
|
|
133
|
+
metadata?: Record<string, unknown> | undefined;
|
|
132
134
|
headers?: Record<string, string> | undefined;
|
|
133
135
|
url?: string | undefined;
|
|
134
136
|
maxRunners?: number | undefined;
|
|
@@ -137,6 +139,7 @@ declare const ConfigSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
137
139
|
runnersMargin?: number | undefined;
|
|
138
140
|
slotsPerRunner?: number | undefined;
|
|
139
141
|
}, {
|
|
142
|
+
metadata?: Record<string, unknown> | undefined;
|
|
140
143
|
headers?: Record<string, string> | undefined;
|
|
141
144
|
url?: string | undefined;
|
|
142
145
|
maxRunners?: number | undefined;
|
|
@@ -214,6 +217,7 @@ declare const ConfigSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
214
217
|
} | undefined;
|
|
215
218
|
overrideServerAddress?: string | undefined;
|
|
216
219
|
autoConfigureServerless?: boolean | {
|
|
220
|
+
metadata?: Record<string, unknown> | undefined;
|
|
217
221
|
headers?: Record<string, string> | undefined;
|
|
218
222
|
url?: string | undefined;
|
|
219
223
|
maxRunners?: number | undefined;
|
|
@@ -267,6 +271,7 @@ declare const ConfigSchema: z.ZodDefault<z.ZodObject<Omit<{
|
|
|
267
271
|
baseLogger?: rivetkit_log.Logger | undefined;
|
|
268
272
|
} | undefined;
|
|
269
273
|
autoConfigureServerless?: boolean | {
|
|
274
|
+
metadata?: Record<string, unknown> | undefined;
|
|
270
275
|
headers?: Record<string, string> | undefined;
|
|
271
276
|
url?: string | undefined;
|
|
272
277
|
maxRunners?: number | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rivetkit/cloudflare-workers",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.19",
|
|
4
4
|
"description": "Cloudflare Workers adapter for RivetKit actors",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"rivetkit",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"invariant": "^2.2.4",
|
|
47
47
|
"zod": "^3.25.76",
|
|
48
48
|
"hono": "4.8.3",
|
|
49
|
-
"rivetkit": "2.0.
|
|
49
|
+
"rivetkit": "2.0.19"
|
|
50
50
|
},
|
|
51
51
|
"stableVersion": "0.8.0",
|
|
52
52
|
"scripts": {
|