@dxos/functions-runtime-cloudflare 0.8.4-main.abd8ff62ef → 0.8.4-main.bc2380dfbc

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.abd8ff62ef",
3
+ "version": "0.8.4-main.bc2380dfbc",
4
4
  "description": "Functions runtime for Cloudflare.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -8,7 +8,7 @@
8
8
  "type": "git",
9
9
  "url": "https://github.com/dxos/dxos"
10
10
  },
11
- "license": "MIT",
11
+ "license": "FSL-1.1-Apache-2.0",
12
12
  "author": "info@dxos.org",
13
13
  "sideEffects": false,
14
14
  "type": "module",
@@ -28,22 +28,22 @@
28
28
  ],
29
29
  "dependencies": {
30
30
  "effect": "3.20.0",
31
- "@dxos/debug": "0.8.4-main.abd8ff62ef",
32
- "@dxos/context": "0.8.4-main.abd8ff62ef",
33
- "@dxos/codec-protobuf": "0.8.4-main.abd8ff62ef",
34
- "@dxos/echo-db": "0.8.4-main.abd8ff62ef",
35
- "@dxos/echo-protocol": "0.8.4-main.abd8ff62ef",
36
- "@dxos/echo": "0.8.4-main.abd8ff62ef",
37
- "@dxos/errors": "0.8.4-main.abd8ff62ef",
38
- "@dxos/invariant": "0.8.4-main.abd8ff62ef",
39
- "@dxos/keys": "0.8.4-main.abd8ff62ef",
40
- "@dxos/protocols": "0.8.4-main.abd8ff62ef",
41
- "@dxos/log": "0.8.4-main.abd8ff62ef",
42
- "@dxos/util": "0.8.4-main.abd8ff62ef"
31
+ "@dxos/codec-protobuf": "0.8.4-main.bc2380dfbc",
32
+ "@dxos/context": "0.8.4-main.bc2380dfbc",
33
+ "@dxos/debug": "0.8.4-main.bc2380dfbc",
34
+ "@dxos/echo-db": "0.8.4-main.bc2380dfbc",
35
+ "@dxos/echo": "0.8.4-main.bc2380dfbc",
36
+ "@dxos/errors": "0.8.4-main.bc2380dfbc",
37
+ "@dxos/invariant": "0.8.4-main.bc2380dfbc",
38
+ "@dxos/log": "0.8.4-main.bc2380dfbc",
39
+ "@dxos/echo-protocol": "0.8.4-main.bc2380dfbc",
40
+ "@dxos/protocols": "0.8.4-main.bc2380dfbc",
41
+ "@dxos/keys": "0.8.4-main.bc2380dfbc",
42
+ "@dxos/util": "0.8.4-main.bc2380dfbc"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@cloudflare/workers-types": "^4.20260302.0",
46
- "@dxos/types": "0.8.4-main.abd8ff62ef"
46
+ "@dxos/types": "0.8.4-main.bc2380dfbc"
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,6 +97,11 @@ export class DataServiceImpl implements DataServiceProto {
97
97
  // TODO(dmaretskyi): Batch.
98
98
  try {
99
99
  for (const update of updates ?? []) {
100
+ // Mutation-less updates (e.g. `requesting: true` transition signals from the worker) carry no
101
+ // bytes to apply; this runtime only forwards real document writes.
102
+ if (!update.mutation) {
103
+ continue;
104
+ }
100
105
  await this._dataService.changeDocument(this._executionContext, sub.spaceId, update.documentId, update.mutation);
101
106
  }
102
107
  } catch (error) {
@@ -131,7 +136,7 @@ export class DataServiceImpl implements DataServiceProto {
131
136
  }
132
137
 
133
138
  async updateIndexes(): Promise<void> {
134
- log.error('updateIndexes is not available in EDGE env.');
139
+ log.verbose('updateIndexes called, but it is a no-op in EDGE env.');
135
140
  // No-op.
136
141
  }
137
142
 
@@ -6,7 +6,7 @@ import { type AnyEntity } from '@dxos/echo/internal';
6
6
  import { type DXN, type SpaceId } from '@dxos/keys';
7
7
  import { type EdgeFunctionEnv, type FeedProtocol } from '@dxos/protocols';
8
8
  import { type QueryService as QueryServiceProto } from '@dxos/protocols/proto/dxos/echo/query';
9
- import type { DataService as DataServiceProto } from '@dxos/protocols/proto/dxos/echo/service';
9
+ import { type DataService as DataServiceProto } from '@dxos/protocols/proto/dxos/echo/service';
10
10
 
11
11
  import { DataServiceImpl } from './data-service-impl';
12
12
  import { QueryServiceImpl } from './query-service-impl';
@@ -58,6 +58,7 @@ export class ServiceContainer {
58
58
  if (!parts) {
59
59
  throw new Error('Invalid queue DXN');
60
60
  }
61
+
61
62
  const { subspaceTag, spaceId, queueId } = parts;
62
63
  const result = await this._queueService.queryQueue(this._executionContext, {
63
64
  query: {
@@ -66,6 +67,7 @@ export class ServiceContainer {
66
67
  queueIds: [queueId],
67
68
  },
68
69
  });
70
+
69
71
  return {
70
72
  objects: structuredClone(result.objects),
71
73
  nextCursor: result.nextCursor ?? null,
@@ -78,6 +80,7 @@ export class ServiceContainer {
78
80
  if (!parts) {
79
81
  throw new Error('Invalid queue DXN');
80
82
  }
83
+
81
84
  const { subspaceTag, spaceId, queueId } = parts;
82
85
  await this._queueService.insertIntoQueue(this._executionContext, {
83
86
  subspaceTag,