@dxos/echo-generator 0.8.4-main.f9ba587 → 0.8.4-main.fcfe5033a5

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.
@@ -2,20 +2,24 @@ import "@dxos/node-std/globals";
2
2
 
3
3
  // src/data.ts
4
4
  import { next as A } from "@automerge/automerge";
5
- import { Schema } from "effect";
6
- import { createDocAccessor } from "@dxos/client/echo";
7
- import { EchoObject, Ref } from "@dxos/echo-schema";
8
- import { faker as faker2 } from "@dxos/random";
5
+ import * as Schema from "effect/Schema";
6
+ import { Ref, Type } from "@dxos/echo";
7
+ import { createDocAccessor } from "@dxos/echo-db";
8
+ import { random as random2 } from "@dxos/random";
9
9
 
10
10
  // src/generator.ts
11
11
  import { Filter } from "@dxos/client/echo";
12
- import { getTypeAnnotation, EchoSchema, getSchema } from "@dxos/echo-schema";
12
+ import { Obj } from "@dxos/echo";
13
+ import { EchoSchema, getTypeAnnotation } from "@dxos/echo/internal";
14
+ import { isProxy } from "@dxos/echo/internal";
13
15
  import { invariant } from "@dxos/invariant";
14
- import { live, isLiveObject } from "@dxos/live-object";
15
- import { faker } from "@dxos/random";
16
+ import { random } from "@dxos/random";
16
17
  import { entries, range } from "@dxos/util";
17
18
  var __dxlog_file = "/__w/dxos/dxos/packages/core/echo/echo-generator/src/generator.ts";
18
19
  var TestObjectGenerator = class {
20
+ _schemas;
21
+ _generators;
22
+ _provider;
19
23
  // prettier-ignore
20
24
  constructor(_schemas, _generators, _provider) {
21
25
  this._schemas = _schemas;
@@ -32,13 +36,22 @@ var TestObjectGenerator = class {
32
36
  this._schemas[type] = schema;
33
37
  }
34
38
  async createObject({ types } = {}) {
35
- const type = faker.helpers.arrayElement(types ?? Object.keys(this._schemas));
39
+ const type = random.helpers.arrayElement(types ?? Object.keys(this._schemas));
36
40
  const data = await this._generators[type](this._provider);
37
- if (isLiveObject(data)) {
41
+ if (isProxy(data)) {
38
42
  return data;
39
43
  }
40
44
  const schema = this.getSchema(type);
41
- return schema ? live(schema, data) : live(data);
45
+ invariant(schema, `Schema is required for type: ${type}. Register a schema for this type.`, {
46
+ F: __dxlog_file,
47
+ L: 54,
48
+ S: this,
49
+ A: [
50
+ "schema",
51
+ "`Schema is required for type: ${type}. Register a schema for this type.`"
52
+ ]
53
+ });
54
+ return Obj.make(schema, data);
42
55
  }
43
56
  // TODO(burdon): Based on dependencies (e.g., organization before contact).
44
57
  async createObjects(map) {
@@ -61,10 +74,12 @@ var TestObjectGenerator = class {
61
74
  }
62
75
  };
63
76
  var SpaceObjectGenerator = class extends TestObjectGenerator {
77
+ _space;
78
+ _mutations;
64
79
  constructor(_space, schemaMap, generators, _mutations) {
65
80
  super(schemaMap, generators, async (type) => {
66
81
  const schema = this.getSchema(type);
67
- const { objects } = await this._space.db.query(schema ? Filter.type(schema) : Filter.nothing()).run();
82
+ const objects = await this._space.db.query(schema ? Filter.type(schema) : Filter.nothing()).run();
68
83
  return objects;
69
84
  }), this._space = _space, this._mutations = _mutations;
70
85
  }
@@ -84,20 +99,20 @@ var SpaceObjectGenerator = class extends TestObjectGenerator {
84
99
  }
85
100
  async _maybeRegisterSchema(typename, schema) {
86
101
  if (schema instanceof EchoSchema) {
87
- const existingSchema = this._space.db.schemaRegistry.getSchema(typename);
102
+ const existingSchema = this._space.internal.db.schemaRegistry.getSchema(typename);
88
103
  if (existingSchema != null) {
89
104
  return existingSchema;
90
105
  }
91
- const [registeredSchema] = await this._space.db.schemaRegistry.register([
106
+ const [registeredSchema] = await this._space.internal.db.schemaRegistry.register([
92
107
  schema
93
108
  ]);
94
109
  return registeredSchema;
95
110
  } else {
96
- const existingSchema = this._space.db.graph.schemaRegistry.getSchema(typename);
111
+ const existingSchema = this._space.internal.db.graph.schemaRegistry.getSchema(typename);
97
112
  if (existingSchema != null) {
98
113
  return existingSchema;
99
114
  }
100
- this._space.db.graph.schemaRegistry.addSchema([
115
+ await this._space.internal.db.graph.schemaRegistry.register([
101
116
  schema
102
117
  ]);
103
118
  return schema;
@@ -113,7 +128,7 @@ var SpaceObjectGenerator = class extends TestObjectGenerator {
113
128
  "'Mutations not defined.'"
114
129
  ]
115
130
  });
116
- const type = getTypeAnnotation(getSchema(object)).typename;
131
+ const type = getTypeAnnotation(Obj.getSchema(object)).typename;
117
132
  invariant(type && this._mutations?.[type], "Invalid object type.", {
118
133
  F: __dxlog_file,
119
134
  L: 132,
@@ -156,21 +171,21 @@ var Priority = [
156
171
  4,
157
172
  5
158
173
  ];
159
- var TestSchemaType = /* @__PURE__ */ function(TestSchemaType2) {
160
- TestSchemaType2["document"] = "example.com/type/Document";
161
- TestSchemaType2["organization"] = "example.com/type/Organization";
162
- TestSchemaType2["contact"] = "example.com/type/Contact";
163
- TestSchemaType2["project"] = "example.com/type/Project";
174
+ var TestSchemaType = /* @__PURE__ */ (function(TestSchemaType2) {
175
+ TestSchemaType2["document"] = "com.example.type.document";
176
+ TestSchemaType2["organization"] = "com.example.type.organization";
177
+ TestSchemaType2["contact"] = "com.example.type.person";
178
+ TestSchemaType2["project"] = "com.example.type.project";
164
179
  return TestSchemaType2;
165
- }({});
180
+ })({});
166
181
  var testSchemas = () => {
167
182
  const document = Schema.Struct({
168
183
  title: Schema.String.annotations({
169
184
  description: "title of the document"
170
185
  }),
171
186
  content: Schema.String
172
- }).pipe(EchoObject({
173
- typename: "example.com/type/Document",
187
+ }).pipe(Type.object({
188
+ typename: "com.example.type.document",
174
189
  version: "0.1.0"
175
190
  }));
176
191
  const organization = Schema.Struct({
@@ -183,8 +198,8 @@ var testSchemas = () => {
183
198
  description: Schema.String.annotations({
184
199
  description: "short summary of the company"
185
200
  })
186
- }).pipe(EchoObject({
187
- typename: "example.com/type/Organization",
201
+ }).pipe(Type.object({
202
+ typename: "com.example.type.organization",
188
203
  version: "0.1.0"
189
204
  }));
190
205
  const contact = Schema.Struct({
@@ -192,11 +207,11 @@ var testSchemas = () => {
192
207
  description: "name of the person"
193
208
  }),
194
209
  email: Schema.optional(Schema.String),
195
- org: Schema.optional(Ref(organization)),
210
+ org: Schema.optional(Ref.Ref(organization)),
196
211
  lat: Schema.optional(Schema.Number),
197
212
  lng: Schema.optional(Schema.Number)
198
- }).pipe(EchoObject({
199
- typename: "example.com/type/Contact",
213
+ }).pipe(Type.object({
214
+ typename: "com.example.type.person",
200
215
  version: "0.1.0"
201
216
  }));
202
217
  const project = Schema.Struct({
@@ -209,62 +224,62 @@ var testSchemas = () => {
209
224
  status: Schema.String,
210
225
  priority: Schema.Number,
211
226
  active: Schema.Boolean,
212
- org: Schema.optional(Ref(organization))
213
- }).pipe(EchoObject({
214
- typename: "example.com/type/Project",
227
+ org: Schema.optional(Ref.Ref(organization))
228
+ }).pipe(Type.object({
229
+ typename: "com.example.type.project",
215
230
  version: "0.1.0"
216
231
  }));
217
232
  return {
218
- ["example.com/type/Document"]: document,
219
- ["example.com/type/Organization"]: organization,
220
- ["example.com/type/Contact"]: contact,
221
- ["example.com/type/Project"]: project
233
+ ["com.example.type.document"]: document,
234
+ ["com.example.type.organization"]: organization,
235
+ ["com.example.type.person"]: contact,
236
+ ["com.example.type.project"]: project
222
237
  };
223
238
  };
224
239
  var testObjectGenerators = {
225
- ["example.com/type/Document"]: async () => ({
226
- title: faker2.lorem.sentence(3),
227
- content: faker2.lorem.sentences({
240
+ ["com.example.type.document"]: async () => ({
241
+ title: random2.lorem.sentence(3),
242
+ content: random2.lorem.sentences({
228
243
  min: 1,
229
- max: faker2.number.int({
244
+ max: random2.number.int({
230
245
  min: 1,
231
246
  max: 3
232
247
  })
233
248
  })
234
249
  }),
235
- ["example.com/type/Organization"]: async () => ({
236
- name: faker2.company.name(),
237
- website: faker2.datatype.boolean({
250
+ ["com.example.type.organization"]: async () => ({
251
+ name: random2.company.name(),
252
+ website: random2.datatype.boolean({
238
253
  probability: 0.3
239
- }) ? faker2.internet.url() : void 0,
240
- description: faker2.lorem.sentences()
254
+ }) ? random2.internet.url() : void 0,
255
+ description: random2.lorem.sentences()
241
256
  }),
242
- ["example.com/type/Contact"]: async (provider) => {
243
- const organizations = await provider?.("example.com/type/Organization");
244
- const location = faker2.datatype.boolean() ? faker2.geo.airport() : {};
257
+ ["com.example.type.person"]: async (provider) => {
258
+ const organizations = await provider?.("com.example.type.organization");
259
+ const location = random2.datatype.boolean() ? random2.geo.airport() : {};
245
260
  return {
246
- name: faker2.person.fullName(),
247
- email: faker2.datatype.boolean({
261
+ name: random2.person.fullName(),
262
+ email: random2.datatype.boolean({
248
263
  probability: 0.5
249
- }) ? faker2.internet.email() : void 0,
250
- org: organizations?.length && faker2.datatype.boolean({
264
+ }) ? random2.internet.email() : void 0,
265
+ org: organizations?.length && random2.datatype.boolean({
251
266
  probability: 0.8
252
- }) ? Ref.make(faker2.helpers.arrayElement(organizations)) : void 0,
267
+ }) ? Ref.make(random2.helpers.arrayElement(organizations)) : void 0,
253
268
  ...location
254
269
  };
255
270
  },
256
- ["example.com/type/Project"]: async () => ({
257
- name: faker2.commerce.productName(),
258
- repo: faker2.internet.url(),
259
- status: faker2.helpers.arrayElement(Status),
260
- description: faker2.lorem.sentences(),
261
- website: faker2.internet.url(),
262
- priority: faker2.helpers.arrayElement(Priority),
263
- active: faker2.datatype.boolean()
271
+ ["com.example.type.project"]: async () => ({
272
+ name: random2.commerce.productName(),
273
+ repo: random2.internet.url(),
274
+ status: random2.helpers.arrayElement(Status),
275
+ description: random2.lorem.sentences(),
276
+ website: random2.internet.url(),
277
+ priority: random2.helpers.arrayElement(Priority),
278
+ active: random2.datatype.boolean()
264
279
  })
265
280
  };
266
281
  var testObjectMutators = {
267
- ["example.com/type/Document"]: async (object, params) => {
282
+ ["com.example.type.document"]: async (object, params) => {
268
283
  const accessor = createDocAccessor(object, [
269
284
  "content"
270
285
  ]);
@@ -275,13 +290,13 @@ var testObjectMutators = {
275
290
  });
276
291
  }
277
292
  },
278
- ["example.com/type/Organization"]: async () => {
293
+ ["com.example.type.organization"]: async () => {
279
294
  throw new Error("Method not implemented.");
280
295
  },
281
- ["example.com/type/Contact"]: async () => {
296
+ ["com.example.type.person"]: async () => {
282
297
  throw new Error("Method not implemented.");
283
298
  },
284
- ["example.com/type/Project"]: async () => {
299
+ ["com.example.type.project"]: async () => {
285
300
  throw new Error("Method not implemented.");
286
301
  }
287
302
  };
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/data.ts", "../../../src/generator.ts", "../../../src/util.ts"],
4
+ "sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { next as A } from '@automerge/automerge';\nimport * as Schema from 'effect/Schema';\n\nimport { type Space } from '@dxos/client/echo';\nimport { Ref, Type } from '@dxos/echo';\nimport { createDocAccessor } from '@dxos/echo-db';\nimport { random } from '@dxos/random';\n\nimport { SpaceObjectGenerator, TestObjectGenerator } from './generator';\nimport { type TestGeneratorMap, type TestMutationsMap, type TestSchemaMap } from './types';\nimport { randomText } from './util';\n\n// TODO(burdon): Reconcile with @dxos/plugin-debug, @dxos/aurora/testing.\n// TODO(burdon): Bug when adding stale objects to space (e.g., static objects already added in previous story invocation).\n\n// TODO(burdon): Handle restricted values.\nexport const Status = ['pending', 'active', 'done'];\nexport const Priority = [1, 2, 3, 4, 5];\n\n/**\n * @deprecated\n */\nexport enum TestSchemaType {\n document = 'com.example.type.document',\n organization = 'com.example.type.organization',\n contact = 'com.example.type.person',\n project = 'com.example.type.project',\n}\n\n/**\n * @deprecated\n */\nconst testSchemas = (): TestSchemaMap<TestSchemaType> => {\n const document = Schema.Struct({\n title: Schema.String.annotations({ description: 'title of the document' }),\n content: Schema.String,\n }).pipe(Type.object({ typename: TestSchemaType.document, version: '0.1.0' }));\n\n const organization = Schema.Struct({\n name: Schema.String.annotations({ description: 'name of the company or organization' }),\n website: Schema.optional(Schema.String.annotations({ description: 'public website URL' })),\n description: Schema.String.annotations({ description: 'short summary of the company' }),\n }).pipe(Type.object({ typename: TestSchemaType.organization, version: '0.1.0' }));\n\n const contact = Schema.Struct({\n name: Schema.String.annotations({ description: 'name of the person' }),\n email: Schema.optional(Schema.String),\n org: Schema.optional(Ref.Ref(organization)),\n lat: Schema.optional(Schema.Number),\n lng: Schema.optional(Schema.Number),\n }).pipe(Type.object({ typename: TestSchemaType.contact, version: '0.1.0' }));\n\n const project = Schema.Struct({\n name: Schema.String.annotations({ description: 'name of the project' }),\n description: Schema.String,\n website: Schema.String,\n repo: Schema.String,\n status: Schema.String,\n priority: Schema.Number,\n active: Schema.Boolean,\n org: Schema.optional(Ref.Ref(organization)),\n }).pipe(Type.object({ typename: TestSchemaType.project, version: '0.1.0' }));\n\n return {\n [TestSchemaType.document]: document,\n [TestSchemaType.organization]: organization,\n [TestSchemaType.contact]: contact,\n [TestSchemaType.project]: project,\n };\n};\n\nconst testObjectGenerators: TestGeneratorMap<TestSchemaType> = {\n [TestSchemaType.document]: async () => ({\n title: random.lorem.sentence(3),\n content: random.lorem.sentences({ min: 1, max: random.number.int({ min: 1, max: 3 }) }),\n }),\n\n [TestSchemaType.organization]: async () => ({\n name: random.company.name(),\n website: random.datatype.boolean({ probability: 0.3 }) ? random.internet.url() : undefined,\n description: random.lorem.sentences(),\n }),\n\n [TestSchemaType.contact]: async (provider) => {\n const organizations = await provider?.(TestSchemaType.organization);\n const location = random.datatype.boolean() ? random.geo.airport() : {};\n\n return {\n name: random.person.fullName(),\n email: random.datatype.boolean({ probability: 0.5 }) ? random.internet.email() : undefined,\n org:\n organizations?.length && random.datatype.boolean({ probability: 0.8 })\n ? Ref.make(random.helpers.arrayElement(organizations))\n : undefined,\n ...location,\n };\n },\n\n [TestSchemaType.project]: async () => ({\n name: random.commerce.productName(),\n repo: random.internet.url(),\n status: random.helpers.arrayElement(Status),\n description: random.lorem.sentences(),\n website: random.internet.url(),\n priority: random.helpers.arrayElement(Priority),\n active: random.datatype.boolean(),\n }),\n};\n\nconst testObjectMutators: TestMutationsMap<TestSchemaType> = {\n [TestSchemaType.document]: async (object, params) => {\n const accessor = createDocAccessor(object, ['content']);\n for (let i = 0; i < params.count; i++) {\n const length = object.content?.content?.length ?? 0;\n accessor.handle.change((doc) => {\n A.splice(\n doc,\n accessor.path.slice(),\n 0,\n params.maxContentLength >= length ? 0 : params.mutationSize,\n randomText(params.mutationSize),\n );\n });\n }\n },\n [TestSchemaType.organization]: async () => {\n throw new Error('Method not implemented.');\n },\n [TestSchemaType.contact]: async () => {\n throw new Error('Method not implemented.');\n },\n [TestSchemaType.project]: async () => {\n throw new Error('Method not implemented.');\n },\n};\n\n/**\n * @deprecated Use generators in schema package.\n */\nexport const createTestObjectGenerator = () => new TestObjectGenerator(testSchemas(), testObjectGenerators);\n\n/**\n * @deprecated Use generators in schema package.\n */\nexport const createSpaceObjectGenerator = (space: Space) =>\n new SpaceObjectGenerator(space, testSchemas(), testObjectGenerators, testObjectMutators);\n", "//\n// Copyright 2023 DXOS.org\n//\n\nimport { Filter, type Space } from '@dxos/client/echo';\nimport { Obj, type Type } from '@dxos/echo';\nimport { EchoSchema, getTypeAnnotation } from '@dxos/echo/internal';\nimport { isProxy } from '@dxos/echo/internal';\nimport { invariant } from '@dxos/invariant';\nimport { random } from '@dxos/random';\nimport { entries, range } from '@dxos/util';\n\nimport { type TestSchemaType } from './data';\nimport {\n type MutationsProviderProps,\n type TestGeneratorMap,\n type TestMutationsMap,\n type TestObjectProvider,\n type TestSchemaMap,\n} from './types';\n\n/**\n * Typed object generator.\n * @deprecated\n */\nexport class TestObjectGenerator<T extends string = TestSchemaType> {\n // prettier-ignore\n constructor(\n\t\tprotected readonly _schemas: TestSchemaMap<T>,\n\t\tprivate readonly _generators: TestGeneratorMap<T>,\n\t\tprivate readonly _provider?: TestObjectProvider<T>,\n\t) {}\n\n get schemas(): Type.AnyObj[] {\n return Object.values(this._schemas);\n }\n\n getSchema(type: T): Type.AnyObj | undefined {\n return this.schemas.find((schema) => getTypeAnnotation(schema)!.typename === type);\n }\n\n protected setSchema(type: T, schema: Type.AnyObj): void {\n this._schemas[type] = schema;\n }\n\n async createObject({ types }: { types?: T[] } = {}): Promise<any> {\n const type = random.helpers.arrayElement(types ?? (Object.keys(this._schemas) as T[]));\n const data = await this._generators[type](this._provider);\n if (isProxy(data)) {\n return data;\n }\n\n const schema = this.getSchema(type);\n invariant(schema, `Schema is required for type: ${type}. Register a schema for this type.`);\n return Obj.make(schema, data);\n }\n\n // TODO(burdon): Based on dependencies (e.g., organization before contact).\n async createObjects(map: Partial<Record<T, number>>) {\n const results: any[] = [];\n for (const [type, count] of entries(map)) {\n results.push(...(await Promise.all(range(count ?? 0, () => this.createObject({ types: [type as T] })))));\n }\n\n const tasks = Object.entries<number>(map as any)\n .map(([type, count]) => {\n return range(count, () => this.createObject({ types: [type as T] }));\n })\n .flatMap((t) => t);\n\n return Promise.all(tasks);\n }\n}\n\n/**\n * Typed object generator for a space.\n */\nexport class SpaceObjectGenerator<T extends string> extends TestObjectGenerator<T> {\n constructor(\n private readonly _space: Space,\n schemaMap: TestSchemaMap<T>,\n generators: TestGeneratorMap<T>,\n private readonly _mutations?: TestMutationsMap<T>,\n ) {\n super(schemaMap, generators, async (type: T) => {\n const schema = this.getSchema(type);\n const objects = await this._space.db.query(schema ? Filter.type(schema) : Filter.nothing()).run();\n return objects;\n });\n }\n\n async addSchemas() {\n const result: Type.AnyObj[] = [];\n for (const [typename, schema] of Object.entries(this._schemas)) {\n const echoSchema = await this._maybeRegisterSchema(typename, schema as Type.AnyObj);\n this.setSchema(typename as T, echoSchema);\n result.push(echoSchema);\n }\n\n return result;\n }\n\n override async createObject({\n types,\n }: {\n types?: T[];\n } = {}): Promise<Obj.Any> {\n return this._space.db.add(await super.createObject({ types }));\n }\n\n private async _maybeRegisterSchema(typename: string, schema: Type.AnyObj): Promise<Type.AnyObj> {\n if (schema instanceof EchoSchema) {\n const existingSchema = this._space.internal.db.schemaRegistry.getSchema(typename);\n if (existingSchema != null) {\n return existingSchema;\n }\n const [registeredSchema] = await this._space.internal.db.schemaRegistry.register([schema]);\n return registeredSchema;\n } else {\n const existingSchema = this._space.internal.db.graph.schemaRegistry.getSchema(typename);\n if (existingSchema != null) {\n return existingSchema;\n }\n await this._space.internal.db.graph.schemaRegistry.register([schema]);\n return schema;\n }\n }\n\n async mutateObject(object: Obj.Any, params: MutationsProviderProps): Promise<void> {\n invariant(this._mutations, 'Mutations not defined.');\n const type = getTypeAnnotation(Obj.getSchema(object)!)!.typename as T;\n invariant(type && this._mutations?.[type], 'Invalid object type.');\n\n await this._mutations![type](object, params);\n }\n\n async mutateObjects(objects: Obj.Any[], params: MutationsProviderProps): Promise<void> {\n for (const object of objects) {\n await this.mutateObject(object, params);\n }\n }\n}\n", "//\n// Copyright 2023 DXOS.org\n//\n\nexport const randomText = (length: number) => {\n let result = '';\n const characters = 'abcdefghijklmnopqrstuvwxyz';\n const charactersLength = characters.length;\n for (let index = 0; index < length; index++) {\n result += characters.charAt(Math.floor(Math.random() * charactersLength));\n }\n\n return result;\n};\n"],
5
+ "mappings": "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",
6
+ "names": ["next", "A", "Schema", "Ref", "Type", "createDocAccessor", "random", "Filter", "Obj", "EchoSchema", "getTypeAnnotation", "isProxy", "invariant", "random", "entries", "range", "TestObjectGenerator", "_schemas", "_generators", "_provider", "schemas", "Object", "values", "getSchema", "type", "find", "schema", "typename", "setSchema", "createObject", "types", "helpers", "arrayElement", "keys", "data", "make", "createObjects", "map", "results", "count", "push", "Promise", "all", "tasks", "flatMap", "t", "SpaceObjectGenerator", "_space", "schemaMap", "generators", "_mutations", "objects", "db", "query", "nothing", "run", "addSchemas", "result", "echoSchema", "_maybeRegisterSchema", "add", "existingSchema", "internal", "schemaRegistry", "registeredSchema", "register", "graph", "mutateObject", "object", "params", "mutateObjects", "randomText", "length", "result", "characters", "charactersLength", "index", "charAt", "Math", "floor", "random", "Status", "Priority", "TestSchemaType", "testSchemas", "document", "Struct", "title", "String", "annotations", "description", "content", "pipe", "Type", "object", "typename", "version", "organization", "name", "website", "optional", "contact", "email", "org", "Ref", "lat", "Number", "lng", "project", "repo", "status", "priority", "active", "Boolean", "testObjectGenerators", "random", "lorem", "sentence", "sentences", "min", "max", "number", "int", "company", "datatype", "boolean", "probability", "internet", "url", "undefined", "provider", "organizations", "location", "geo", "airport", "person", "fullName", "length", "make", "helpers", "arrayElement", "commerce", "productName", "testObjectMutators", "params", "accessor", "createDocAccessor", "i", "count", "handle", "change", "doc", "A", "splice", "path", "slice", "maxContentLength", "mutationSize", "randomText", "Error", "createTestObjectGenerator", "TestObjectGenerator", "createSpaceObjectGenerator", "space", "SpaceObjectGenerator"]
7
+ }
@@ -0,0 +1 @@
1
+ {"inputs":{"src/generator.ts":{"bytes":16826,"imports":[{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/random","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/util.ts":{"bytes":1567,"imports":[],"format":"esm"},"src/data.ts":{"bytes":19647,"imports":[{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/echo-db","kind":"import-statement","external":true},{"path":"@dxos/random","kind":"import-statement","external":true},{"path":"src/generator.ts","kind":"import-statement","original":"./generator"},{"path":"src/util.ts","kind":"import-statement","original":"./util"}],"format":"esm"},"src/index.ts":{"bytes":661,"imports":[{"path":"src/data.ts","kind":"import-statement","original":"./data"},{"path":"src/generator.ts","kind":"import-statement","original":"./generator"},{"path":"src/util.ts","kind":"import-statement","original":"./util"}],"format":"esm"}},"outputs":{"dist/lib/neutral/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":18729},"dist/lib/neutral/index.mjs":{"imports":[{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/echo-db","kind":"import-statement","external":true},{"path":"@dxos/random","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/random","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"exports":["Priority","SpaceObjectGenerator","Status","TestObjectGenerator","TestSchemaType","createSpaceObjectGenerator","createTestObjectGenerator","randomText"],"entryPoint":"src/index.ts","inputs":{"src/data.ts":{"bytesInOutput":4834},"src/generator.ts":{"bytesInOutput":4324},"src/util.ts":{"bytesInOutput":299},"src/index.ts":{"bytesInOutput":0}},"bytes":9765}}}
@@ -6,10 +6,10 @@ export declare const Priority: number[];
6
6
  * @deprecated
7
7
  */
8
8
  export declare enum TestSchemaType {
9
- document = "example.com/type/Document",
10
- organization = "example.com/type/Organization",
11
- contact = "example.com/type/Contact",
12
- project = "example.com/type/Project"
9
+ document = "com.example.type.document",
10
+ organization = "com.example.type.organization",
11
+ contact = "com.example.type.person",
12
+ project = "com.example.type.project"
13
13
  }
14
14
  /**
15
15
  * @deprecated Use generators in schema package.
@@ -1 +1 @@
1
- {"version":3,"file":"data.d.ts","sourceRoot":"","sources":["../../../src/data.ts"],"names":[],"mappings":"AAOA,OAAO,EAAqB,KAAK,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAIlE,OAAO,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAQxE,eAAO,MAAM,MAAM,UAAgC,CAAC;AACpD,eAAO,MAAM,QAAQ,UAAkB,CAAC;AAExC;;GAEG;AACH,oBAAY,cAAc;IACxB,QAAQ,8BAA8B;IACtC,YAAY,kCAAkC;IAC9C,OAAO,6BAA6B;IACpC,OAAO,6BAA6B;CACrC;AA6GD;;GAEG;AACH,eAAO,MAAM,yBAAyB,2CAAqE,CAAC;AAE5G;;GAEG;AACH,eAAO,MAAM,0BAA0B,GAAI,OAAO,KAAK,yCACmC,CAAC"}
1
+ {"version":3,"file":"data.d.ts","sourceRoot":"","sources":["../../../src/data.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,KAAK,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAK/C,OAAO,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAQxE,eAAO,MAAM,MAAM,UAAgC,CAAC;AACpD,eAAO,MAAM,QAAQ,UAAkB,CAAC;AAExC;;GAEG;AACH,oBAAY,cAAc;IACxB,QAAQ,8BAA8B;IACtC,YAAY,kCAAkC;IAC9C,OAAO,4BAA4B;IACnC,OAAO,6BAA6B;CACrC;AA6GD;;GAEG;AACH,eAAO,MAAM,yBAAyB,2CAAqE,CAAC;AAE5G;;GAEG;AACH,eAAO,MAAM,0BAA0B,GAAI,OAAO,KAAK,yCACmC,CAAC"}
@@ -1,10 +1,7 @@
1
- import { type Schema } from 'effect';
2
1
  import { type Space } from '@dxos/client/echo';
3
- import { type AnyLiveObject } from '@dxos/echo-db';
4
- import { EchoSchema } from '@dxos/echo-schema';
5
- import { type Live } from '@dxos/live-object';
2
+ import { Obj, type Type } from '@dxos/echo';
6
3
  import { type TestSchemaType } from './data';
7
- import { type MutationsProviderParams, type TestGeneratorMap, type TestMutationsMap, type TestObjectProvider, type TestSchemaMap } from './types';
4
+ import { type MutationsProviderProps, type TestGeneratorMap, type TestMutationsMap, type TestObjectProvider, type TestSchemaMap } from './types';
8
5
  /**
9
6
  * Typed object generator.
10
7
  * @deprecated
@@ -14,12 +11,12 @@ export declare class TestObjectGenerator<T extends string = TestSchemaType> {
14
11
  private readonly _generators;
15
12
  private readonly _provider?;
16
13
  constructor(_schemas: TestSchemaMap<T>, _generators: TestGeneratorMap<T>, _provider?: TestObjectProvider<T> | undefined);
17
- get schemas(): (EchoSchema | Schema.Schema.AnyNoContext)[];
18
- getSchema(type: T): EchoSchema | Schema.Schema.AnyNoContext | undefined;
19
- protected setSchema(type: T, schema: EchoSchema | Schema.Schema.AnyNoContext): void;
14
+ get schemas(): Type.AnyObj[];
15
+ getSchema(type: T): Type.AnyObj | undefined;
16
+ protected setSchema(type: T, schema: Type.AnyObj): void;
20
17
  createObject({ types }?: {
21
18
  types?: T[];
22
- }): Promise<Live<any>>;
19
+ }): Promise<any>;
23
20
  createObjects(map: Partial<Record<T, number>>): Promise<any[]>;
24
21
  }
25
22
  /**
@@ -29,12 +26,15 @@ export declare class SpaceObjectGenerator<T extends string> extends TestObjectGe
29
26
  private readonly _space;
30
27
  private readonly _mutations?;
31
28
  constructor(_space: Space, schemaMap: TestSchemaMap<T>, generators: TestGeneratorMap<T>, _mutations?: TestMutationsMap<T> | undefined);
32
- addSchemas(): Promise<(Schema.Schema.AnyNoContext | EchoSchema<any, any>)[]>;
33
- createObject({ types }?: {
29
+ addSchemas(): Promise<(import("effect/Schema").Schema.AnyNoContext & {
30
+ readonly typename: string;
31
+ readonly version: string;
32
+ })[]>;
33
+ createObject({ types, }?: {
34
34
  types?: T[];
35
- }): Promise<AnyLiveObject<any>>;
35
+ }): Promise<Obj.Any>;
36
36
  private _maybeRegisterSchema;
37
- mutateObject(object: AnyLiveObject<any>, params: MutationsProviderParams): Promise<void>;
38
- mutateObjects(objects: AnyLiveObject<any>[], params: MutationsProviderParams): Promise<void>;
37
+ mutateObject(object: Obj.Any, params: MutationsProviderProps): Promise<void>;
38
+ mutateObjects(objects: Obj.Any[], params: MutationsProviderProps): Promise<void>;
39
39
  }
40
40
  //# sourceMappingURL=generator.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"generator.d.ts","sourceRoot":"","sources":["../../../src/generator.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,MAAM,EAAE,MAAM,QAAQ,CAAC;AAErC,OAAO,EAAU,KAAK,KAAK,EAAE,MAAM,mBAAmB,CAAC;AACvD,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,eAAe,CAAC;AACnD,OAAO,EAAqB,UAAU,EAAa,MAAM,mBAAmB,CAAC;AAE7E,OAAO,EAAsB,KAAK,IAAI,EAAE,MAAM,mBAAmB,CAAC;AAIlE,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,QAAQ,CAAC;AAC7C,OAAO,EACL,KAAK,uBAAuB,EAC5B,KAAK,gBAAgB,EACrB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,aAAa,EACnB,MAAM,SAAS,CAAC;AAEjB;;;GAGG;AACH,qBAAa,mBAAmB,CAAC,CAAC,SAAS,MAAM,GAAG,cAAc;IAG9D,SAAS,CAAC,QAAQ,CAAC,QAAQ,EAAE,aAAa,CAAC,CAAC,CAAC;IAC7C,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAC;gBAFR,QAAQ,EAAE,aAAa,CAAC,CAAC,CAAC,EAC5B,WAAW,EAAE,gBAAgB,CAAC,CAAC,CAAC,EAChC,SAAS,CAAC,EAAE,kBAAkB,CAAC,CAAC,CAAC,YAAA;IAGpD,IAAI,OAAO,IAAI,CAAC,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC,YAAY,CAAC,EAAE,CAEzD;IAED,SAAS,CAAC,IAAI,EAAE,CAAC,GAAG,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC,YAAY,GAAG,SAAS;IAIvE,SAAS,CAAC,SAAS,CAAC,IAAI,EAAE,CAAC,EAAE,MAAM,EAAE,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC,YAAY,GAAG,IAAI;IAI7E,YAAY,CAAC,EAAE,KAAK,EAAE,GAAE;QAAE,KAAK,CAAC,EAAE,CAAC,EAAE,CAAA;KAAO,GAAG,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;IAYjE,aAAa,CAAC,GAAG,EAAE,OAAO,CAAC,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC;CAcpD;AAED;;GAEG;AACH,qBAAa,oBAAoB,CAAC,CAAC,SAAS,MAAM,CAAE,SAAQ,mBAAmB,CAAC,CAAC,CAAC;IAE9E,OAAO,CAAC,QAAQ,CAAC,MAAM;IAGvB,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAC;gBAHX,MAAM,EAAE,KAAK,EAC9B,SAAS,EAAE,aAAa,CAAC,CAAC,CAAC,EAC3B,UAAU,EAAE,gBAAgB,CAAC,CAAC,CAAC,EACd,UAAU,CAAC,EAAE,gBAAgB,CAAC,CAAC,CAAC,YAAA;IAS7C,UAAU;IAWD,YAAY,CAAC,EAAE,KAAK,EAAE,GAAE;QAAE,KAAK,CAAC,EAAE,CAAC,EAAE,CAAA;KAAO,GAAG,OAAO,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;YAI3E,oBAAoB;IAqB5B,YAAY,CAAC,MAAM,EAAE,aAAa,CAAC,GAAG,CAAC,EAAE,MAAM,EAAE,uBAAuB,GAAG,OAAO,CAAC,IAAI,CAAC;IAQxF,aAAa,CAAC,OAAO,EAAE,aAAa,CAAC,GAAG,CAAC,EAAE,EAAE,MAAM,EAAE,uBAAuB,GAAG,OAAO,CAAC,IAAI,CAAC;CAKnG"}
1
+ {"version":3,"file":"generator.d.ts","sourceRoot":"","sources":["../../../src/generator.ts"],"names":[],"mappings":"AAIA,OAAO,EAAU,KAAK,KAAK,EAAE,MAAM,mBAAmB,CAAC;AACvD,OAAO,EAAE,GAAG,EAAE,KAAK,IAAI,EAAE,MAAM,YAAY,CAAC;AAO5C,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,QAAQ,CAAC;AAC7C,OAAO,EACL,KAAK,sBAAsB,EAC3B,KAAK,gBAAgB,EACrB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,aAAa,EACnB,MAAM,SAAS,CAAC;AAEjB;;;GAGG;AACH,qBAAa,mBAAmB,CAAC,CAAC,SAAS,MAAM,GAAG,cAAc;IAGhE,SAAS,CAAC,QAAQ,CAAC,QAAQ,EAAE,aAAa,CAAC,CAAC,CAAC;IAC7C,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAC;gBAFR,QAAQ,EAAE,aAAa,CAAC,CAAC,CAAC,EAC5B,WAAW,EAAE,gBAAgB,CAAC,CAAC,CAAC,EAChC,SAAS,CAAC,EAAE,kBAAkB,CAAC,CAAC,CAAC,YAAA;IAGlD,IAAI,OAAO,IAAI,IAAI,CAAC,MAAM,EAAE,CAE3B;IAED,SAAS,CAAC,IAAI,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,GAAG,SAAS;IAI3C,SAAS,CAAC,SAAS,CAAC,IAAI,EAAE,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,GAAG,IAAI;IAIjD,YAAY,CAAC,EAAE,KAAK,EAAE,GAAE;QAAE,KAAK,CAAC,EAAE,CAAC,EAAE,CAAA;KAAO,GAAG,OAAO,CAAC,GAAG,CAAC;IAa3D,aAAa,CAAC,GAAG,EAAE,OAAO,CAAC,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC;CAcpD;AAED;;GAEG;AACH,qBAAa,oBAAoB,CAAC,CAAC,SAAS,MAAM,CAAE,SAAQ,mBAAmB,CAAC,CAAC,CAAC;IAE9E,OAAO,CAAC,QAAQ,CAAC,MAAM;IAGvB,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAC;gBAHX,MAAM,EAAE,KAAK,EAC9B,SAAS,EAAE,aAAa,CAAC,CAAC,CAAC,EAC3B,UAAU,EAAE,gBAAgB,CAAC,CAAC,CAAC,EACd,UAAU,CAAC,EAAE,gBAAgB,CAAC,CAAC,CAAC,YAAA;IAS7C,UAAU;;;;IAWD,YAAY,CAAC,EAC1B,KAAK,GACN,GAAE;QACD,KAAK,CAAC,EAAE,CAAC,EAAE,CAAC;KACR,GAAG,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC;YAIX,oBAAoB;IAkB5B,YAAY,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,sBAAsB,GAAG,OAAO,CAAC,IAAI,CAAC;IAQ5E,aAAa,CAAC,OAAO,EAAE,GAAG,CAAC,GAAG,EAAE,EAAE,MAAM,EAAE,sBAAsB,GAAG,OAAO,CAAC,IAAI,CAAC;CAKvF"}
@@ -1,5 +1,5 @@
1
1
  export * from './data';
2
2
  export * from './generator';
3
- export * from './types';
3
+ export type * from './types';
4
4
  export * from './util';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAIA,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAIA,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,mBAAmB,SAAS,CAAC;AAC7B,cAAc,QAAQ,CAAC"}
@@ -1,18 +1,15 @@
1
- import { type Schema } from 'effect';
2
- import { type AnyLiveObject } from '@dxos/echo-db';
3
- import { type EchoSchema } from '@dxos/echo-schema';
4
- import { type Live } from '@dxos/live-object';
1
+ import { type Obj, type Type } from '@dxos/echo';
5
2
  export type TestObject = {
6
3
  id: string;
7
4
  } & Record<string, any>;
8
- export type TestSchemaMap<T extends string = string> = Record<T, EchoSchema | Schema.Schema.AnyNoContext>;
9
- export type TestObjectProvider<T extends string = string> = (type: T) => Promise<Live<any>[]>;
5
+ export type TestSchemaMap<T extends string = string> = Record<T, Type.AnyObj>;
6
+ export type TestObjectProvider<T extends string = string> = (type: T) => Promise<any[]>;
10
7
  export type TestGeneratorMap<T extends string = string> = Record<T, (provider: TestObjectProvider<T> | undefined) => any>;
11
8
  export type TestMutationsMap<T extends string = string> = Record<T, TestObjectMutators>;
12
- export type MutationsProviderParams = {
9
+ export type MutationsProviderProps = {
13
10
  count: number;
14
11
  mutationSize: number;
15
12
  maxContentLength: number;
16
13
  };
17
- export type TestObjectMutators = (object: AnyLiveObject<any>, params: MutationsProviderParams) => Promise<void>;
14
+ export type TestObjectMutators = (object: Obj.Any, params: MutationsProviderProps) => Promise<void>;
18
15
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/types.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,MAAM,EAAE,MAAM,QAAQ,CAAC;AAErC,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,eAAe,CAAC;AACnD,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,KAAK,IAAI,EAAE,MAAM,mBAAmB,CAAC;AAG9C,MAAM,MAAM,UAAU,GAAG;IAAE,EAAE,EAAE,MAAM,CAAA;CAAE,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;AAE9D,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM,IAAI,MAAM,CAAC,CAAC,EAAE,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC;AAE1G,MAAM,MAAM,kBAAkB,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM,IAAI,CAAC,IAAI,EAAE,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;AAE9F,MAAM,MAAM,gBAAgB,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM,IAAI,MAAM,CAC9D,CAAC,EACD,CAAC,QAAQ,EAAE,kBAAkB,CAAC,CAAC,CAAC,GAAG,SAAS,KAAK,GAAG,CACrD,CAAC;AAEF,MAAM,MAAM,gBAAgB,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM,IAAI,MAAM,CAAC,CAAC,EAAE,kBAAkB,CAAC,CAAC;AAExF,MAAM,MAAM,uBAAuB,GAAG;IACpC,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,MAAM,CAAC;IACrB,gBAAgB,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG,CAAC,MAAM,EAAE,aAAa,CAAC,GAAG,CAAC,EAAE,MAAM,EAAE,uBAAuB,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/types.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,GAAG,EAAE,KAAK,IAAI,EAAE,MAAM,YAAY,CAAC;AAGjD,MAAM,MAAM,UAAU,GAAG;IAAE,EAAE,EAAE,MAAM,CAAA;CAAE,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;AAE9D,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM,IAAI,MAAM,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;AAE9E,MAAM,MAAM,kBAAkB,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM,IAAI,CAAC,IAAI,EAAE,CAAC,KAAK,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC;AAExF,MAAM,MAAM,gBAAgB,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM,IAAI,MAAM,CAC9D,CAAC,EACD,CAAC,QAAQ,EAAE,kBAAkB,CAAC,CAAC,CAAC,GAAG,SAAS,KAAK,GAAG,CACrD,CAAC;AAEF,MAAM,MAAM,gBAAgB,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM,IAAI,MAAM,CAAC,CAAC,EAAE,kBAAkB,CAAC,CAAC;AAExF,MAAM,MAAM,sBAAsB,GAAG;IACnC,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,MAAM,CAAC;IACrB,gBAAgB,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,sBAAsB,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC"}