@dxos/echo-generator 0.8.4-main.c85a9c8dae → 0.8.4-main.d05673bc65
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/echo-generator",
|
|
3
|
-
"version": "0.8.4-main.
|
|
3
|
+
"version": "0.8.4-main.d05673bc65",
|
|
4
4
|
"description": "ECHO data generator for testing.",
|
|
5
5
|
"homepage": "https://dxos.org",
|
|
6
6
|
"bugs": "https://github.com/dxos/dxos/issues",
|
|
@@ -30,20 +30,20 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@automerge/automerge": "3.2.3",
|
|
32
32
|
"effect": "3.19.16",
|
|
33
|
-
"@dxos/client": "0.8.4-main.
|
|
34
|
-
"@dxos/echo
|
|
35
|
-
"@dxos/invariant": "0.8.4-main.
|
|
36
|
-
"@dxos/echo": "0.8.4-main.
|
|
37
|
-
"@dxos/
|
|
38
|
-
"@dxos/
|
|
39
|
-
"@dxos/node-std": "0.8.4-main.
|
|
33
|
+
"@dxos/client": "0.8.4-main.d05673bc65",
|
|
34
|
+
"@dxos/echo": "0.8.4-main.d05673bc65",
|
|
35
|
+
"@dxos/invariant": "0.8.4-main.d05673bc65",
|
|
36
|
+
"@dxos/echo-db": "0.8.4-main.d05673bc65",
|
|
37
|
+
"@dxos/util": "0.8.4-main.d05673bc65",
|
|
38
|
+
"@dxos/log": "0.8.4-main.d05673bc65",
|
|
39
|
+
"@dxos/node-std": "0.8.4-main.d05673bc65"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@dxos/random": "0.8.4-main.
|
|
42
|
+
"@dxos/random": "0.8.4-main.d05673bc65"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"effect": "3.19.16",
|
|
46
|
-
"@dxos/random": "0.8.4-main.
|
|
46
|
+
"@dxos/random": "0.8.4-main.d05673bc65"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
package/src/data.ts
CHANGED
|
@@ -25,10 +25,10 @@ export const Priority = [1, 2, 3, 4, 5];
|
|
|
25
25
|
* @deprecated
|
|
26
26
|
*/
|
|
27
27
|
export enum TestSchemaType {
|
|
28
|
-
document = 'example.
|
|
29
|
-
organization = 'example.
|
|
30
|
-
contact = 'example.
|
|
31
|
-
project = 'example.
|
|
28
|
+
document = 'com.example.type.document',
|
|
29
|
+
organization = 'com.example.type.organization',
|
|
30
|
+
contact = 'com.example.type.person',
|
|
31
|
+
project = 'com.example.type.project',
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
/**
|
package/src/generator.test.ts
CHANGED
|
@@ -96,13 +96,13 @@ describe('TestObjectGenerator', () => {
|
|
|
96
96
|
name: Schema.optional(Schema.String),
|
|
97
97
|
}).pipe(
|
|
98
98
|
Type.object({
|
|
99
|
-
typename: 'example.
|
|
99
|
+
typename: 'com.example.type.task',
|
|
100
100
|
version: '0.1.0',
|
|
101
101
|
}),
|
|
102
102
|
);
|
|
103
103
|
|
|
104
104
|
enum Types {
|
|
105
|
-
task = 'example.
|
|
105
|
+
task = 'com.example.type.task',
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
const { space } = await setupTest();
|