@dxos/functions-runtime-cloudflare 0.8.4-main.422d1c7879 → 0.8.4-main.4f23b4e393

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/functions-runtime-cloudflare",
3
- "version": "0.8.4-main.422d1c7879",
3
+ "version": "0.8.4-main.4f23b4e393",
4
4
  "description": "Functions runtime for Cloudflare.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -28,22 +28,22 @@
28
28
  ],
29
29
  "dependencies": {
30
30
  "effect": "3.20.0",
31
- "@dxos/codec-protobuf": "0.8.4-main.422d1c7879",
32
- "@dxos/debug": "0.8.4-main.422d1c7879",
33
- "@dxos/context": "0.8.4-main.422d1c7879",
34
- "@dxos/echo-protocol": "0.8.4-main.422d1c7879",
35
- "@dxos/echo-db": "0.8.4-main.422d1c7879",
36
- "@dxos/echo": "0.8.4-main.422d1c7879",
37
- "@dxos/errors": "0.8.4-main.422d1c7879",
38
- "@dxos/invariant": "0.8.4-main.422d1c7879",
39
- "@dxos/keys": "0.8.4-main.422d1c7879",
40
- "@dxos/log": "0.8.4-main.422d1c7879",
41
- "@dxos/protocols": "0.8.4-main.422d1c7879",
42
- "@dxos/util": "0.8.4-main.422d1c7879"
31
+ "@dxos/codec-protobuf": "0.8.4-main.4f23b4e393",
32
+ "@dxos/context": "0.8.4-main.4f23b4e393",
33
+ "@dxos/debug": "0.8.4-main.4f23b4e393",
34
+ "@dxos/echo": "0.8.4-main.4f23b4e393",
35
+ "@dxos/errors": "0.8.4-main.4f23b4e393",
36
+ "@dxos/echo-protocol": "0.8.4-main.4f23b4e393",
37
+ "@dxos/echo-db": "0.8.4-main.4f23b4e393",
38
+ "@dxos/invariant": "0.8.4-main.4f23b4e393",
39
+ "@dxos/keys": "0.8.4-main.4f23b4e393",
40
+ "@dxos/util": "0.8.4-main.4f23b4e393",
41
+ "@dxos/log": "0.8.4-main.4f23b4e393",
42
+ "@dxos/protocols": "0.8.4-main.4f23b4e393"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@cloudflare/workers-types": "^4.20260302.0",
46
- "@dxos/types": "0.8.4-main.422d1c7879"
46
+ "@dxos/types": "0.8.4-main.4f23b4e393"
47
47
  },
48
48
  "publishConfig": {
49
49
  "access": "public"
@@ -80,9 +80,3 @@ export const createClientFromEnv = async (env: any): Promise<FunctionsClient> =>
80
80
  await client.open();
81
81
  return client;
82
82
  };
83
-
84
- /**
85
- - Provides data access capabilities for user functions.
86
- - No real-time replication or reactive queries -- function receives a snapshot.
87
- - Function event contains the metadata but doesn't need to include the data.
88
- */
@@ -97,7 +97,7 @@ const handleFunctionMetaCall = (functionDefinition: FunctionProtocol.Func, reque
97
97
  });
98
98
  };
99
99
 
100
- const createFunctionContext = async ({
100
+ export const createFunctionContext = async ({
101
101
  serviceContainer,
102
102
  contextSpaceId,
103
103
  }: {