@dxos/functions 0.6.2-main.8a232a5 → 0.6.2-main.d41f0d2

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",
3
- "version": "0.6.2-main.8a232a5",
3
+ "version": "0.6.2-main.d41f0d2",
4
4
  "description": "Functions API and runtime.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -49,24 +49,24 @@
49
49
  "express": "^4.19.2",
50
50
  "get-port-please": "^3.1.1",
51
51
  "ws": "^8.14.2",
52
- "@dxos/async": "0.6.2-main.8a232a5",
53
- "@dxos/client": "0.6.2-main.8a232a5",
54
- "@dxos/context": "0.6.2-main.8a232a5",
55
- "@dxos/echo-db": "0.6.2-main.8a232a5",
56
- "@dxos/echo-protocol": "0.6.2-main.8a232a5",
57
- "@dxos/invariant": "0.6.2-main.8a232a5",
58
- "@braneframe/types": "0.6.2-main.8a232a5",
59
- "@dxos/echo-schema": "0.6.2-main.8a232a5",
60
- "@dxos/keys": "0.6.2-main.8a232a5",
61
- "@dxos/log": "0.6.2-main.8a232a5",
62
- "@dxos/node-std": "0.6.2-main.8a232a5",
63
- "@dxos/util": "0.6.2-main.8a232a5",
64
- "@dxos/protocols": "0.6.2-main.8a232a5"
52
+ "@dxos/async": "0.6.2-main.d41f0d2",
53
+ "@dxos/context": "0.6.2-main.d41f0d2",
54
+ "@braneframe/types": "0.6.2-main.d41f0d2",
55
+ "@dxos/client": "0.6.2-main.d41f0d2",
56
+ "@dxos/echo-db": "0.6.2-main.d41f0d2",
57
+ "@dxos/echo-protocol": "0.6.2-main.d41f0d2",
58
+ "@dxos/invariant": "0.6.2-main.d41f0d2",
59
+ "@dxos/keys": "0.6.2-main.d41f0d2",
60
+ "@dxos/log": "0.6.2-main.d41f0d2",
61
+ "@dxos/node-std": "0.6.2-main.d41f0d2",
62
+ "@dxos/echo-schema": "0.6.2-main.d41f0d2",
63
+ "@dxos/util": "0.6.2-main.d41f0d2",
64
+ "@dxos/protocols": "0.6.2-main.d41f0d2"
65
65
  },
66
66
  "devDependencies": {
67
67
  "@types/express": "^4.17.17",
68
68
  "@types/ws": "^7.4.0",
69
- "@dxos/agent": "0.6.2-main.8a232a5"
69
+ "@dxos/agent": "0.6.2-main.d41f0d2"
70
70
  },
71
71
  "publishConfig": {
72
72
  "access": "public"
@@ -196,7 +196,6 @@ describe('trigger registry', () => {
196
196
  test('event fired when all registered are opened', async () => {
197
197
  const [client] = await createInitializedClients(testBuilder);
198
198
  const registry = createRegistry(client);
199
- await client.spaces.default.waitUntilReady();
200
199
  const triggers = createTriggers(client.spaces.default, 3);
201
200
 
202
201
  const triggersRegistered = new Trigger<FunctionTrigger[]>();
@@ -215,7 +214,6 @@ describe('trigger registry', () => {
215
214
  const [client] = await createInitializedClients(testBuilder);
216
215
  const registry = createRegistry(client);
217
216
  const space = await client.spaces.create();
218
- await space.waitUntilReady();
219
217
 
220
218
  const triggerRegistered = new Trigger<FunctionTrigger>();
221
219
  registry.registered.on((fn) => {
@@ -233,7 +231,6 @@ describe('trigger registry', () => {
233
231
  const [client] = await createInitializedClients(testBuilder);
234
232
  const registry = createRegistry(client);
235
233
  const space = await client.spaces.create();
236
- await space.waitUntilReady();
237
234
  const triggers = createTriggers(space, 3);
238
235
 
239
236
  const triggerLoaded = new Trigger();