@dxos/migrations 0.7.2 → 0.7.3-main.2dd075e

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/migrations",
3
- "version": "0.7.2",
3
+ "version": "0.7.3-main.2dd075e",
4
4
  "description": "",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -23,15 +23,15 @@
23
23
  "src"
24
24
  ],
25
25
  "dependencies": {
26
- "@dxos/automerge": "0.7.2",
27
- "@dxos/echo-db": "0.7.2",
28
- "@dxos/client": "0.7.2",
29
- "@dxos/echo-protocol": "0.7.2",
30
- "@dxos/invariant": "0.7.2",
31
- "@dxos/echo-schema": "0.7.2",
32
- "@dxos/log": "0.7.2",
33
- "@dxos/protocols": "0.7.2",
34
- "@dxos/util": "0.7.2"
26
+ "@dxos/automerge": "0.7.3-main.2dd075e",
27
+ "@dxos/client": "0.7.3-main.2dd075e",
28
+ "@dxos/echo-db": "0.7.3-main.2dd075e",
29
+ "@dxos/echo-protocol": "0.7.3-main.2dd075e",
30
+ "@dxos/echo-schema": "0.7.3-main.2dd075e",
31
+ "@dxos/invariant": "0.7.3-main.2dd075e",
32
+ "@dxos/log": "0.7.3-main.2dd075e",
33
+ "@dxos/protocols": "0.7.3-main.2dd075e",
34
+ "@dxos/util": "0.7.3-main.2dd075e"
35
35
  },
36
36
  "devDependencies": {},
37
37
  "publishConfig": {
@@ -2,12 +2,12 @@
2
2
  // Copyright 2023 DXOS.org
3
3
  //
4
4
 
5
- import { afterAll, beforeEach, beforeAll, describe, expect, test } from 'vitest';
5
+ import { afterAll, beforeAll, beforeEach, describe, expect, test } from 'vitest';
6
6
 
7
7
  import { Client } from '@dxos/client';
8
- import { Filter, type Space } from '@dxos/client/echo';
8
+ import { create, Filter, type Space } from '@dxos/client/echo';
9
9
  import { TestBuilder } from '@dxos/client/testing';
10
- import { Expando, create } from '@dxos/echo-schema';
10
+ import { Expando } from '@dxos/echo-schema';
11
11
 
12
12
  import { Migrations } from './migrations';
13
13