@ekairos/domain 1.21.0 → 1.21.3-beta.0
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 +4 -1
- package/dist/__type_tests__/domain-builder.typecheck.d.ts +0 -2
- package/dist/__type_tests__/domain-builder.typecheck.d.ts.map +0 -1
- package/dist/__type_tests__/domain-builder.typecheck.js +0 -660
- package/dist/__type_tests__/domain-builder.typecheck.js.map +0 -1
- package/dist/__type_tests__/domain-conflicts-examples.d.ts +0 -2
- package/dist/__type_tests__/domain-conflicts-examples.d.ts.map +0 -1
- package/dist/__type_tests__/domain-conflicts-examples.js +0 -8
- package/dist/__type_tests__/domain-conflicts-examples.js.map +0 -1
- package/dist/__type_tests__/instant-schema-example.d.ts +0 -227
- package/dist/__type_tests__/instant-schema-example.d.ts.map +0 -1
- package/dist/__type_tests__/instant-schema-example.js +0 -188
- package/dist/__type_tests__/instant-schema-example.js.map +0 -1
- package/dist/__type_tests__/instant-schema-migration-example.d.ts +0 -191
- package/dist/__type_tests__/instant-schema-migration-example.d.ts.map +0 -1
- package/dist/__type_tests__/instant-schema-migration-example.js +0 -178
- package/dist/__type_tests__/instant-schema-migration-example.js.map +0 -1
- package/dist/__type_tests__/test.schema.d.ts +0 -95
- package/dist/__type_tests__/test.schema.d.ts.map +0 -1
- package/dist/__type_tests__/test.schema.js +0 -86
- package/dist/__type_tests__/test.schema.js.map +0 -1
- package/dist/index.d.ts +0 -39
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -203
- package/dist/index.js.map +0 -1
package/dist/index.js
DELETED
|
@@ -1,203 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.domain = domain;
|
|
4
|
-
const core_1 = require("@instantdb/core");
|
|
5
|
-
function makeInstance(def) {
|
|
6
|
-
function schema() {
|
|
7
|
-
return core_1.i.schema({
|
|
8
|
-
entities: def.entities,
|
|
9
|
-
links: def.links,
|
|
10
|
-
rooms: def.rooms,
|
|
11
|
-
});
|
|
12
|
-
}
|
|
13
|
-
function compose(other) {
|
|
14
|
-
const otherDef = "schema" in other
|
|
15
|
-
? { entities: other.entities, links: other.links, rooms: other.rooms }
|
|
16
|
-
: other;
|
|
17
|
-
const mergedEntities = { ...def.entities, ...otherDef.entities };
|
|
18
|
-
const mergedLinks = { ...def.links, ...otherDef.links };
|
|
19
|
-
const mergedRooms = { ...def.rooms, ...otherDef.rooms };
|
|
20
|
-
return makeInstance({
|
|
21
|
-
entities: mergedEntities,
|
|
22
|
-
links: mergedLinks,
|
|
23
|
-
rooms: mergedRooms,
|
|
24
|
-
});
|
|
25
|
-
}
|
|
26
|
-
return {
|
|
27
|
-
entities: def.entities,
|
|
28
|
-
links: def.links,
|
|
29
|
-
rooms: def.rooms,
|
|
30
|
-
schema,
|
|
31
|
-
compose,
|
|
32
|
-
};
|
|
33
|
-
}
|
|
34
|
-
// Impl
|
|
35
|
-
function domain(arg) {
|
|
36
|
-
if (typeof arg === "object" && arg !== null) {
|
|
37
|
-
// classic API path: def provided directly
|
|
38
|
-
const def = arg;
|
|
39
|
-
return makeInstance(def);
|
|
40
|
-
}
|
|
41
|
-
// builder API - runtime state tracks accumulated dependencies
|
|
42
|
-
// Support lazy includes for circular dependencies by storing references and resolving at schema()/toInstantSchema() time
|
|
43
|
-
// AL preserves literal link keys from included domains
|
|
44
|
-
function createBuilder(deps, linkDeps, lazyIncludes = []) {
|
|
45
|
-
return {
|
|
46
|
-
includes(other) {
|
|
47
|
-
// Support lazy includes via function for circular dependencies
|
|
48
|
-
if (typeof other === 'function') {
|
|
49
|
-
const lazyGetter = () => {
|
|
50
|
-
try {
|
|
51
|
-
return other();
|
|
52
|
-
}
|
|
53
|
-
catch (e) {
|
|
54
|
-
return undefined;
|
|
55
|
-
}
|
|
56
|
-
};
|
|
57
|
-
// Preserve link literal keys using MergeLinks
|
|
58
|
-
return createBuilder(deps, linkDeps, [...lazyIncludes, lazyGetter]);
|
|
59
|
-
}
|
|
60
|
-
// If other is undefined (circular dependency), store a lazy getter
|
|
61
|
-
// Entities will be resolved from app domain composition at toInstantSchema() time
|
|
62
|
-
if (!other || other === undefined) {
|
|
63
|
-
// Create a lazy getter that returns undefined
|
|
64
|
-
// Entities will be available from app domain's merged entities when toInstantSchema() is called
|
|
65
|
-
const lazyGetter = () => undefined;
|
|
66
|
-
// Preserve link literal keys
|
|
67
|
-
return createBuilder(deps, linkDeps, [...lazyIncludes, lazyGetter]);
|
|
68
|
-
}
|
|
69
|
-
// Try to get entities and links immediately
|
|
70
|
-
try {
|
|
71
|
-
const entities = other.entities;
|
|
72
|
-
if (!entities) {
|
|
73
|
-
// If entities don't exist yet, store as lazy
|
|
74
|
-
const lazyGetter = () => other;
|
|
75
|
-
// Preserve link literal keys
|
|
76
|
-
return createBuilder(deps, linkDeps, [...lazyIncludes, lazyGetter]);
|
|
77
|
-
}
|
|
78
|
-
const links = other.links;
|
|
79
|
-
const mergedEntities = { ...deps, ...entities };
|
|
80
|
-
// Preserve literal link keys by merging directly (not casting to LinksDef)
|
|
81
|
-
const mergedLinks = (links ? { ...linkDeps, ...links } : { ...linkDeps });
|
|
82
|
-
return createBuilder(mergedEntities, mergedLinks, lazyIncludes);
|
|
83
|
-
}
|
|
84
|
-
catch (e) {
|
|
85
|
-
// If accessing entities throws, store as lazy
|
|
86
|
-
const lazyGetter = () => other;
|
|
87
|
-
// Preserve link literal keys
|
|
88
|
-
return createBuilder(deps, linkDeps, [...lazyIncludes, lazyGetter]);
|
|
89
|
-
}
|
|
90
|
-
},
|
|
91
|
-
schema(def) {
|
|
92
|
-
// Resolve lazy includes at schema() time (when all domains should be initialized)
|
|
93
|
-
// This handles circular dependencies by deferring entity resolution
|
|
94
|
-
let resolvedDeps = { ...deps };
|
|
95
|
-
// Preserve literal link keys from accumulated links
|
|
96
|
-
let resolvedLinks = { ...linkDeps };
|
|
97
|
-
for (const lazyGetter of lazyIncludes) {
|
|
98
|
-
try {
|
|
99
|
-
const other = lazyGetter();
|
|
100
|
-
if (other) {
|
|
101
|
-
const entities = other.entities;
|
|
102
|
-
if (entities) {
|
|
103
|
-
resolvedDeps = { ...resolvedDeps, ...entities };
|
|
104
|
-
}
|
|
105
|
-
const links = other.links;
|
|
106
|
-
if (links) {
|
|
107
|
-
// Merge links preserving literal keys
|
|
108
|
-
resolvedLinks = { ...resolvedLinks, ...links };
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
catch (e) {
|
|
113
|
-
// If lazy resolution fails, continue - entities might be available via string references
|
|
114
|
-
// This is expected for circular dependencies that will be resolved when all domains are composed
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
// Runtime merge for output; compile-time validation handled by types above
|
|
118
|
-
const allEntities = { ...resolvedDeps, ...def.entities };
|
|
119
|
-
// allLinks contains merged links from included domains + current domain
|
|
120
|
-
// Preserve literal link keys (owner, related, parent, etc.) by using MergeLinks
|
|
121
|
-
const allLinks = { ...resolvedLinks, ...def.links };
|
|
122
|
-
return {
|
|
123
|
-
entities: allEntities,
|
|
124
|
-
// Strip base phantom from public type so it's assignable to i.schema()
|
|
125
|
-
links: allLinks,
|
|
126
|
-
rooms: def.rooms,
|
|
127
|
-
// Add originalEntities for type-safe access to original entity definitions
|
|
128
|
-
originalEntities: allEntities,
|
|
129
|
-
toInstantSchema: (() => {
|
|
130
|
-
// Capture allEntities and allLinks in closure to avoid TypeScript scoping issues
|
|
131
|
-
const capturedEntities = allEntities;
|
|
132
|
-
const capturedLinks = allLinks;
|
|
133
|
-
return () => {
|
|
134
|
-
const { i } = require("@instantdb/core");
|
|
135
|
-
// Final resolution: capturedEntities contains merged entities from all includes()
|
|
136
|
-
// For app domain, this includes all domains, so all entities are available
|
|
137
|
-
// Resolve any remaining lazy includes that couldn't be resolved at schema() time
|
|
138
|
-
let finalEntities = { ...capturedEntities };
|
|
139
|
-
// Preserve literal link keys from capturedLinks
|
|
140
|
-
let finalLinks = { ...capturedLinks };
|
|
141
|
-
// Try to resolve lazy includes one more time (domains should be initialized by now)
|
|
142
|
-
for (const lazyGetter of lazyIncludes) {
|
|
143
|
-
try {
|
|
144
|
-
const other = lazyGetter();
|
|
145
|
-
if (other) {
|
|
146
|
-
const entities = other.entities;
|
|
147
|
-
if (entities) {
|
|
148
|
-
// Merge entities that weren't available during schema() call
|
|
149
|
-
finalEntities = { ...finalEntities, ...entities };
|
|
150
|
-
}
|
|
151
|
-
const links = other.links;
|
|
152
|
-
if (links) {
|
|
153
|
-
// Merge links preserving literal keys (owner, related, parent, etc.)
|
|
154
|
-
finalLinks = { ...finalLinks, ...links };
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
catch (e) {
|
|
159
|
-
// If still can't resolve, entities should already be in allEntities from app domain composition
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
// Include base entities ($users, $files) that InstantDB manages
|
|
163
|
-
// These need to be explicitly included since InstantDB doesn't auto-add them
|
|
164
|
-
const baseEntities = {
|
|
165
|
-
$users: i.entity({
|
|
166
|
-
email: i.string().optional().indexed(),
|
|
167
|
-
}),
|
|
168
|
-
$files: i.entity({
|
|
169
|
-
path: i.string(),
|
|
170
|
-
url: i.string().optional(),
|
|
171
|
-
contentType: i.string().optional(),
|
|
172
|
-
size: i.number().optional(),
|
|
173
|
-
}),
|
|
174
|
-
};
|
|
175
|
-
// Merge base entities with user entities, user entities take precedence
|
|
176
|
-
const allEntitiesWithBase = { ...baseEntities, ...finalEntities };
|
|
177
|
-
// Create schema with merged links - preserve literal link keys
|
|
178
|
-
// The actual links object has literal keys (owner, related, parent, etc.)
|
|
179
|
-
// that need to be preserved for query validation
|
|
180
|
-
const schemaResult = i.schema({
|
|
181
|
-
entities: allEntitiesWithBase,
|
|
182
|
-
links: finalLinks,
|
|
183
|
-
rooms: def.rooms,
|
|
184
|
-
});
|
|
185
|
-
// Return schema result - i.schema() enriches entities with link labels automatically
|
|
186
|
-
// The type system should preserve this enrichment through the return type of toInstantSchema()
|
|
187
|
-
// which uses ReturnType<typeof i.schema<WithBase<E>, L, R>> where L is MergeLinks<AL, LL>
|
|
188
|
-
// This preserves both the enriched entities and the literal link keys
|
|
189
|
-
return schemaResult;
|
|
190
|
-
};
|
|
191
|
-
})(),
|
|
192
|
-
};
|
|
193
|
-
},
|
|
194
|
-
};
|
|
195
|
-
}
|
|
196
|
-
// Default include: start with an empty entities object
|
|
197
|
-
// Base entities ($users, $files) are added at toInstantSchema() time to ensure they're always available
|
|
198
|
-
// This allows links to reference them even when they're not explicitly defined in domains
|
|
199
|
-
const base = core_1.i.schema({ entities: {}, links: {}, rooms: {} });
|
|
200
|
-
const baseEntities = { ...base.entities };
|
|
201
|
-
return createBuilder(baseEntities, {});
|
|
202
|
-
}
|
|
203
|
-
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|