@adobe/data 0.9.65 → 0.9.66
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/dist/ecs/database/create-plugin.d.ts +3 -3
- package/dist/ecs/database/create-plugin.js.map +1 -1
- package/dist/ecs/database/database.index.type-test.js +45 -0
- package/dist/ecs/database/database.index.type-test.js.map +1 -1
- package/dist/ecs/database/deep-extends-chain.type-test.d.ts +40 -40
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/references/data-lit/package.json +1 -1
- package/references/data-lit-tictactoe/package.json +1 -1
- package/references/data-react/package.json +1 -1
- package/references/data-react-hello/package.json +1 -1
- package/references/data-react-pixie/package.json +1 -1
|
@@ -64,7 +64,7 @@ type CreatePluginResult<XP extends Database.Plugin, CS, RS, A, TD, S extends str
|
|
|
64
64
|
*
|
|
65
65
|
* @throws Error if properties are not in the correct order
|
|
66
66
|
*/
|
|
67
|
-
type FullDBForPlugin<CS, RS, A, TD, S extends string, AD, XP extends Database.Plugin, SVF extends ServiceFactories<Database.FromPlugin<XP
|
|
67
|
+
type FullDBForPlugin<CS, RS, A, TD, S extends string, AD, XP extends Database.Plugin, SVF extends ServiceFactories<Database.FromPlugin<XP>>, IX = {}> = Database<FromSchemas<CS & XP['components']>, FromSchemas<RS & XP['resources']>, A & XP['archetypes'], ToTransactionFunctions<TD & XP['transactions']>, S | StringKeyof<XP['systems']>, ToActionFunctions<AD & XP['actions']>, FromServiceFactories<RemoveIndex<SVF> & XP['services']>, unknown, IX & XP['indexes']>;
|
|
68
68
|
/**
|
|
69
69
|
* Ambient plugin context used for *parameter typing only*: the union of the
|
|
70
70
|
* `extends` base (XP) and the `imports` dependencies (IP).
|
|
@@ -83,7 +83,7 @@ type FullDBForPlugin<CS, RS, A, TD, S extends string, AD, XP extends Database.Pl
|
|
|
83
83
|
* `& {}` (identity on the object-typed buckets) — no cost or behavior change.
|
|
84
84
|
*/
|
|
85
85
|
type AmbientPlugin<XP extends Database.Plugin, IP extends Database.Plugin> = Database.Plugin<XP['components'] & IP['components'], XP['resources'] & IP['resources'], XP['archetypes'] & IP['archetypes'], XP['transactions'] & IP['transactions'], StringKeyof<XP['systems']> | StringKeyof<IP['systems']>, XP['actions'] & IP['actions'], XP['services'] & IP['services'], XP['computed'] & IP['computed'], XP['indexes'] & IP['indexes']>;
|
|
86
|
-
export declare function createPlugin<const XP extends Database.Plugin<{}, {}, {}, {}, never, {}, {}, {}, {}>, const IP extends Database.Plugin<{}, {}, {}, {}, never, {}, {}, {}, {}>, const CS extends ComponentSchemas, const RS extends ResourceSchemas, const A extends ArchetypeComponents<StringKeyof<RemoveIndex<CS> & XP['components'] & IP['components']>>, const IX extends IndexDeclarations<FromSchemas<RemoveIndex<CS> & XP['components'] & IP['components']>, RemoveIndex<A> & XP['archetypes'] & IP['archetypes']>, const TD extends TransactionDeclarations<FromSchemas<RemoveIndex<CS> & XP['components'] & IP['components']>, FromSchemas<RemoveIndex<RS> & XP['resources'] & IP['resources']>, RemoveIndex<A> & XP['archetypes'] & IP['archetypes'], RemoveIndex<IX> & XP['indexes'] & IP['indexes']>, const AD, const S extends string = never, const SVF extends ServiceFactories<Database.FromPlugin<AmbientPlugin<XP, IP>>> = {}, const CVF extends PluginComputedFactories<FullDBForPlugin<RemoveIndex<CS>, RemoveIndex<RS>, RemoveIndex<A>, RemoveIndex<TD>, S, RemoveIndex<AD> & XP['actions'] & IP['actions'], AmbientPlugin<XP, IP>, RemoveIndex<SVF>>> = {}>(plugins: {
|
|
86
|
+
export declare function createPlugin<const XP extends Database.Plugin<{}, {}, {}, {}, never, {}, {}, {}, {}>, const IP extends Database.Plugin<{}, {}, {}, {}, never, {}, {}, {}, {}>, const CS extends ComponentSchemas, const RS extends ResourceSchemas, const A extends ArchetypeComponents<StringKeyof<RemoveIndex<CS> & XP['components'] & IP['components']>>, const IX extends IndexDeclarations<FromSchemas<RemoveIndex<CS> & XP['components'] & IP['components']>, RemoveIndex<A> & XP['archetypes'] & IP['archetypes']>, const TD extends TransactionDeclarations<FromSchemas<RemoveIndex<CS> & XP['components'] & IP['components']>, FromSchemas<RemoveIndex<RS> & XP['resources'] & IP['resources']>, RemoveIndex<A> & XP['archetypes'] & IP['archetypes'], RemoveIndex<IX> & XP['indexes'] & IP['indexes']>, const AD, const S extends string = never, const SVF extends ServiceFactories<Database.FromPlugin<AmbientPlugin<XP, IP>>> = {}, const CVF extends PluginComputedFactories<FullDBForPlugin<RemoveIndex<CS>, RemoveIndex<RS>, RemoveIndex<A>, RemoveIndex<TD>, S, RemoveIndex<AD> & XP['actions'] & IP['actions'], AmbientPlugin<XP, IP>, RemoveIndex<SVF>, RemoveIndex<IX>>> = {}>(plugins: {
|
|
87
87
|
imports?: IP;
|
|
88
88
|
extends?: XP;
|
|
89
89
|
services?: SVF & {
|
|
@@ -93,7 +93,7 @@ export declare function createPlugin<const XP extends Database.Plugin<{}, {}, {}
|
|
|
93
93
|
resources?: RS;
|
|
94
94
|
archetypes?: A;
|
|
95
95
|
indexes?: IX;
|
|
96
|
-
computed?: CVF & PluginComputedFactories<FullDBForPlugin<RemoveIndex<CS>, RemoveIndex<RS>, RemoveIndex<A>, {}, string, RemoveIndex<AD> & XP['actions'] & IP['actions'], AmbientPlugin<XP, IP>, RemoveIndex<SVF>>>;
|
|
96
|
+
computed?: CVF & PluginComputedFactories<FullDBForPlugin<RemoveIndex<CS>, RemoveIndex<RS>, RemoveIndex<A>, {}, string, RemoveIndex<AD> & XP['actions'] & IP['actions'], AmbientPlugin<XP, IP>, RemoveIndex<SVF>, RemoveIndex<IX>>>;
|
|
97
97
|
transactions?: TD;
|
|
98
98
|
actions?: AD & {
|
|
99
99
|
readonly [K: string]: (db: Database<FromSchemas<RemoveIndex<CS> & XP['components'] & IP['components']>, FromSchemas<RemoveIndex<RS> & XP['resources'] & IP['resources']>, RemoveIndex<A> & XP['archetypes'] & IP['archetypes'], ToTransactionFunctions<RemoveIndex<TD> & XP['transactions'] & IP['transactions']>, S | StringKeyof<XP['systems']> | StringKeyof<IP['systems']>, ToActionFunctions<XP['actions'] & IP['actions']>, FromServiceFactories<RemoveIndex<SVF> & XP['services'] & IP['services']>, FromComputedFactories<RemoveIndex<CVF> & XP['computed'] & IP['computed']>, RemoveIndex<IX> & XP['indexes'] & IP['indexes']>, input?: any) => any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-plugin.js","sourceRoot":"","sources":["../../../src/ecs/database/create-plugin.ts"],"names":[],"mappings":"AAAA,uDAAuD;AAUvD,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AA0CtD,SAAS,qBAAqB,CAAC,OAAgC;IAC3D,MAAM,aAAa,GAAG,CAAC,SAAS,EAAE,SAAS,EAAE,UAAU,EAAE,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,SAAS,EAAE,UAAU,EAAE,cAAc,EAAE,SAAS,EAAE,SAAS,CAAC,CAAC;IAC/J,MAAM,UAAU,GAAG,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IACxC,MAAM,WAAW,GAAG,UAAU,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,OAAO,CAAC,CAAC;IAE7D,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;QAC1C,MAAM,GAAG,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;QAC3B,MAAM,aAAa,GAAG,aAAa,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;QACjD,IAAI,aAAa,KAAK,CAAC,CAAC,EAAE,CAAC;YACvB,MAAM,IAAI,KAAK,CAAC,6CAA6C,GAAG,4BAA4B,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;QAC5H,CAAC;QACD,uDAAuD;QACvD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC;YACzB,MAAM,OAAO,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;YAC/B,MAAM,iBAAiB,GAAG,aAAa,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACzD,IAAI,iBAAiB,GAAG,aAAa,EAAE,CAAC;gBACpC,MAAM,IAAI,KAAK,CACX,qCAAqC,GAAG,uBAAuB,OAAO,KAAK;oBAC3E,mBAAmB,aAAa,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CACrF,CAAC;YACN,CAAC;QACL,CAAC;IACL,CAAC;AACL,CAAC;
|
|
1
|
+
{"version":3,"file":"create-plugin.js","sourceRoot":"","sources":["../../../src/ecs/database/create-plugin.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// © 2026 Adobe. MIT License. See /LICENSE for details.
|
|
2
2
|
import { createPlugin } from "./create-plugin.js";
|
|
3
|
+
import { Observe } from "../../observe/index.js";
|
|
3
4
|
/**
|
|
4
5
|
* Database-level type checks for the new index API. The exhaustive
|
|
5
6
|
* pattern-by-pattern type proof for the four `key` shapes lives in
|
|
@@ -296,4 +297,48 @@ function invalidUniqueGetWrongType() {
|
|
|
296
297
|
db.indexes.uniqueByEmail.get({ email: "x@y.z" });
|
|
297
298
|
};
|
|
298
299
|
}
|
|
300
|
+
// ============================================================================
|
|
301
|
+
// VALID — computed factories see db.indexes
|
|
302
|
+
//
|
|
303
|
+
// Regression guard: FullDBForPlugin used to forward only Database slots 1–7,
|
|
304
|
+
// so the IX slot (9) fell back to its `{}` default and `db.indexes` was empty
|
|
305
|
+
// inside computed factories. The declarations below would not compile if that
|
|
306
|
+
// regressed — `db.indexes.<name>` would be an error.
|
|
307
|
+
// ============================================================================
|
|
308
|
+
function computedSeesOwnIndexes() {
|
|
309
|
+
createPlugin({
|
|
310
|
+
components: {
|
|
311
|
+
email: { type: "string" },
|
|
312
|
+
name: { type: "string" },
|
|
313
|
+
},
|
|
314
|
+
indexes: {
|
|
315
|
+
byName: { key: "name" },
|
|
316
|
+
},
|
|
317
|
+
computed: {
|
|
318
|
+
probe: (db) => {
|
|
319
|
+
return Observe.fromConstant(db.indexes.byName.find({ name: "x" }).length);
|
|
320
|
+
},
|
|
321
|
+
},
|
|
322
|
+
});
|
|
323
|
+
}
|
|
324
|
+
function computedSeesImportedAndExtendedIndexes() {
|
|
325
|
+
const base = createPlugin({
|
|
326
|
+
components: { email: { type: "string" } },
|
|
327
|
+
indexes: { uniqueByEmail: { key: "email", unique: true } },
|
|
328
|
+
});
|
|
329
|
+
const dep = createPlugin({
|
|
330
|
+
components: { name: { type: "string" } },
|
|
331
|
+
indexes: { byName: { key: "name" } },
|
|
332
|
+
});
|
|
333
|
+
createPlugin({
|
|
334
|
+
extends: base,
|
|
335
|
+
imports: dep,
|
|
336
|
+
computed: {
|
|
337
|
+
// Index from `extends` base...
|
|
338
|
+
fromExtends: (db) => Observe.fromConstant(db.indexes.uniqueByEmail.get({ email: "x@y.z" })),
|
|
339
|
+
// ...and index from `imports` dependency.
|
|
340
|
+
fromImports: (db) => Observe.fromConstant(db.indexes.byName.find({ name: "x" }).length),
|
|
341
|
+
},
|
|
342
|
+
});
|
|
343
|
+
}
|
|
299
344
|
//# sourceMappingURL=database.index.type-test.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"database.index.type-test.js","sourceRoot":"","sources":["../../../src/ecs/database/database.index.type-test.ts"],"names":[],"mappings":"AAAA,uDAAuD;AAEvD,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"database.index.type-test.js","sourceRoot":"","sources":["../../../src/ecs/database/database.index.type-test.ts"],"names":[],"mappings":"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"}
|
|
@@ -8816,7 +8816,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
8816
8816
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
8817
8817
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
8818
8818
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
8819
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number[]>;
|
|
8819
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number[]>;
|
|
8820
8820
|
readonly buildings: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
8821
8821
|
readonly districtType: {
|
|
8822
8822
|
readonly type: "string";
|
|
@@ -8974,7 +8974,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
8974
8974
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
8975
8975
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
8976
8976
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
8977
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => (districtId: Entity) => Observe<readonly Entity[]>;
|
|
8977
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => (districtId: Entity) => Observe<readonly Entity[]>;
|
|
8978
8978
|
readonly currentUserId: (_db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
8979
8979
|
readonly districtType: {
|
|
8980
8980
|
readonly type: "string";
|
|
@@ -9132,7 +9132,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
9132
9132
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
9133
9133
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
9134
9134
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
9135
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<string | null>;
|
|
9135
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<string | null>;
|
|
9136
9136
|
readonly effectivePixelsPerUnit: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
9137
9137
|
readonly districtType: {
|
|
9138
9138
|
readonly type: "string";
|
|
@@ -9290,7 +9290,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
9290
9290
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
9291
9291
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
9292
9292
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
9293
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
9293
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
9294
9294
|
readonly worldExtent: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
9295
9295
|
readonly districtType: {
|
|
9296
9296
|
readonly type: "string";
|
|
@@ -9448,7 +9448,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
9448
9448
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
9449
9449
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
9450
9450
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
9451
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
9451
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
9452
9452
|
}>, {} & {}>, entityId: Entity) => Promise<void>;
|
|
9453
9453
|
readonly toggleSimulation: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
9454
9454
|
readonly districtType: {
|
|
@@ -13935,7 +13935,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
13935
13935
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
13936
13936
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
13937
13937
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
13938
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number[]>;
|
|
13938
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number[]>;
|
|
13939
13939
|
readonly buildings: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
13940
13940
|
readonly districtType: {
|
|
13941
13941
|
readonly type: "string";
|
|
@@ -14093,7 +14093,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
14093
14093
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
14094
14094
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
14095
14095
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
14096
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => (districtId: Entity) => Observe<readonly Entity[]>;
|
|
14096
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => (districtId: Entity) => Observe<readonly Entity[]>;
|
|
14097
14097
|
readonly currentUserId: (_db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
14098
14098
|
readonly districtType: {
|
|
14099
14099
|
readonly type: "string";
|
|
@@ -14251,7 +14251,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
14251
14251
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
14252
14252
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
14253
14253
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
14254
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<string | null>;
|
|
14254
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<string | null>;
|
|
14255
14255
|
readonly effectivePixelsPerUnit: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
14256
14256
|
readonly districtType: {
|
|
14257
14257
|
readonly type: "string";
|
|
@@ -14409,7 +14409,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
14409
14409
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
14410
14410
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
14411
14411
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
14412
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
14412
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
14413
14413
|
readonly worldExtent: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
14414
14414
|
readonly districtType: {
|
|
14415
14415
|
readonly type: "string";
|
|
@@ -14567,7 +14567,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
14567
14567
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
14568
14568
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
14569
14569
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
14570
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
14570
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
14571
14571
|
}>, {} & {}>) => Promise<void>;
|
|
14572
14572
|
readonly moveBuildings: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
14573
14573
|
readonly districtType: {
|
|
@@ -19054,7 +19054,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
19054
19054
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
19055
19055
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
19056
19056
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
19057
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number[]>;
|
|
19057
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number[]>;
|
|
19058
19058
|
readonly buildings: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
19059
19059
|
readonly districtType: {
|
|
19060
19060
|
readonly type: "string";
|
|
@@ -19212,7 +19212,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
19212
19212
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
19213
19213
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
19214
19214
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
19215
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => (districtId: Entity) => Observe<readonly Entity[]>;
|
|
19215
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => (districtId: Entity) => Observe<readonly Entity[]>;
|
|
19216
19216
|
readonly currentUserId: (_db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
19217
19217
|
readonly districtType: {
|
|
19218
19218
|
readonly type: "string";
|
|
@@ -19370,7 +19370,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
19370
19370
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
19371
19371
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
19372
19372
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
19373
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<string | null>;
|
|
19373
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<string | null>;
|
|
19374
19374
|
readonly effectivePixelsPerUnit: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
19375
19375
|
readonly districtType: {
|
|
19376
19376
|
readonly type: "string";
|
|
@@ -19528,7 +19528,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
19528
19528
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
19529
19529
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
19530
19530
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
19531
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
19531
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
19532
19532
|
readonly worldExtent: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
19533
19533
|
readonly districtType: {
|
|
19534
19534
|
readonly type: "string";
|
|
@@ -19686,7 +19686,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
19686
19686
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
19687
19687
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
19688
19688
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
19689
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
19689
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
19690
19690
|
}>, {} & {}>, { buildingId }: {
|
|
19691
19691
|
buildingId: Entity;
|
|
19692
19692
|
}) => Promise<void>;
|
|
@@ -24175,7 +24175,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
24175
24175
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
24176
24176
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
24177
24177
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
24178
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number[]>;
|
|
24178
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number[]>;
|
|
24179
24179
|
readonly buildings: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
24180
24180
|
readonly districtType: {
|
|
24181
24181
|
readonly type: "string";
|
|
@@ -24333,7 +24333,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
24333
24333
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
24334
24334
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
24335
24335
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
24336
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => (districtId: Entity) => Observe<readonly Entity[]>;
|
|
24336
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => (districtId: Entity) => Observe<readonly Entity[]>;
|
|
24337
24337
|
readonly currentUserId: (_db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
24338
24338
|
readonly districtType: {
|
|
24339
24339
|
readonly type: "string";
|
|
@@ -24491,7 +24491,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
24491
24491
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
24492
24492
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
24493
24493
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
24494
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<string | null>;
|
|
24494
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<string | null>;
|
|
24495
24495
|
readonly effectivePixelsPerUnit: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
24496
24496
|
readonly districtType: {
|
|
24497
24497
|
readonly type: "string";
|
|
@@ -24649,7 +24649,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
24649
24649
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
24650
24650
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
24651
24651
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
24652
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
24652
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
24653
24653
|
readonly worldExtent: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
24654
24654
|
readonly districtType: {
|
|
24655
24655
|
readonly type: "string";
|
|
@@ -24807,7 +24807,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
24807
24807
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
24808
24808
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
24809
24809
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
24810
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
24810
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
24811
24811
|
}>, {} & {}>, { buildingId, edge }: {
|
|
24812
24812
|
buildingId: Entity;
|
|
24813
24813
|
edge: "left" | "right";
|
|
@@ -29297,7 +29297,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
29297
29297
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
29298
29298
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
29299
29299
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
29300
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number[]>;
|
|
29300
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number[]>;
|
|
29301
29301
|
readonly buildings: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
29302
29302
|
readonly districtType: {
|
|
29303
29303
|
readonly type: "string";
|
|
@@ -29455,7 +29455,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
29455
29455
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
29456
29456
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
29457
29457
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
29458
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => (districtId: Entity) => Observe<readonly Entity[]>;
|
|
29458
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => (districtId: Entity) => Observe<readonly Entity[]>;
|
|
29459
29459
|
readonly currentUserId: (_db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
29460
29460
|
readonly districtType: {
|
|
29461
29461
|
readonly type: "string";
|
|
@@ -29613,7 +29613,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
29613
29613
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
29614
29614
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
29615
29615
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
29616
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<string | null>;
|
|
29616
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<string | null>;
|
|
29617
29617
|
readonly effectivePixelsPerUnit: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
29618
29618
|
readonly districtType: {
|
|
29619
29619
|
readonly type: "string";
|
|
@@ -29771,7 +29771,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
29771
29771
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
29772
29772
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
29773
29773
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
29774
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
29774
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
29775
29775
|
readonly worldExtent: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
29776
29776
|
readonly districtType: {
|
|
29777
29777
|
readonly type: "string";
|
|
@@ -29929,7 +29929,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
29929
29929
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
29930
29930
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
29931
29931
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
29932
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
29932
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
29933
29933
|
}>, {} & {}>, delta: number) => Promise<void>;
|
|
29934
29934
|
readonly stepTicks: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
29935
29935
|
readonly districtType: {
|
|
@@ -34416,7 +34416,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
34416
34416
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
34417
34417
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
34418
34418
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
34419
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number[]>;
|
|
34419
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number[]>;
|
|
34420
34420
|
readonly buildings: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
34421
34421
|
readonly districtType: {
|
|
34422
34422
|
readonly type: "string";
|
|
@@ -34574,7 +34574,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
34574
34574
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
34575
34575
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
34576
34576
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
34577
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => (districtId: Entity) => Observe<readonly Entity[]>;
|
|
34577
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => (districtId: Entity) => Observe<readonly Entity[]>;
|
|
34578
34578
|
readonly currentUserId: (_db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
34579
34579
|
readonly districtType: {
|
|
34580
34580
|
readonly type: "string";
|
|
@@ -34732,7 +34732,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
34732
34732
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
34733
34733
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
34734
34734
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
34735
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<string | null>;
|
|
34735
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<string | null>;
|
|
34736
34736
|
readonly effectivePixelsPerUnit: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
34737
34737
|
readonly districtType: {
|
|
34738
34738
|
readonly type: "string";
|
|
@@ -34890,7 +34890,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
34890
34890
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
34891
34891
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
34892
34892
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
34893
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
34893
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
34894
34894
|
readonly worldExtent: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
34895
34895
|
readonly districtType: {
|
|
34896
34896
|
readonly type: "string";
|
|
@@ -35048,7 +35048,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
35048
35048
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
35049
35049
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
35050
35050
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
35051
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
35051
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
35052
35052
|
}>, {} & {}>, count: number) => Promise<void>;
|
|
35053
35053
|
readonly jumpToStart: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
35054
35054
|
readonly districtType: {
|
|
@@ -39535,7 +39535,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
39535
39535
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
39536
39536
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
39537
39537
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
39538
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number[]>;
|
|
39538
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number[]>;
|
|
39539
39539
|
readonly buildings: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
39540
39540
|
readonly districtType: {
|
|
39541
39541
|
readonly type: "string";
|
|
@@ -39693,7 +39693,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
39693
39693
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
39694
39694
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
39695
39695
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
39696
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => (districtId: Entity) => Observe<readonly Entity[]>;
|
|
39696
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => (districtId: Entity) => Observe<readonly Entity[]>;
|
|
39697
39697
|
readonly currentUserId: (_db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
39698
39698
|
readonly districtType: {
|
|
39699
39699
|
readonly type: "string";
|
|
@@ -39851,7 +39851,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
39851
39851
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
39852
39852
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
39853
39853
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
39854
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<string | null>;
|
|
39854
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<string | null>;
|
|
39855
39855
|
readonly effectivePixelsPerUnit: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
39856
39856
|
readonly districtType: {
|
|
39857
39857
|
readonly type: "string";
|
|
@@ -40009,7 +40009,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
40009
40009
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
40010
40010
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
40011
40011
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
40012
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
40012
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
40013
40013
|
readonly worldExtent: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
40014
40014
|
readonly districtType: {
|
|
40015
40015
|
readonly type: "string";
|
|
@@ -40167,7 +40167,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
40167
40167
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
40168
40168
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
40169
40169
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
40170
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
40170
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
40171
40171
|
}>, {} & {}>) => Promise<void>;
|
|
40172
40172
|
}, {}, {
|
|
40173
40173
|
readonly districts: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -40327,7 +40327,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
40327
40327
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
40328
40328
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
40329
40329
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
40330
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number[]>;
|
|
40330
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number[]>;
|
|
40331
40331
|
readonly buildings: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
40332
40332
|
readonly districtType: {
|
|
40333
40333
|
readonly type: "string";
|
|
@@ -40485,7 +40485,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
40485
40485
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
40486
40486
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
40487
40487
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
40488
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => (districtId: Entity) => Observe<readonly Entity[]>;
|
|
40488
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => (districtId: Entity) => Observe<readonly Entity[]>;
|
|
40489
40489
|
readonly currentUserId: (_db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
40490
40490
|
readonly districtType: {
|
|
40491
40491
|
readonly type: "string";
|
|
@@ -40643,7 +40643,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
40643
40643
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
40644
40644
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
40645
40645
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
40646
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<string | null>;
|
|
40646
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<string | null>;
|
|
40647
40647
|
readonly effectivePixelsPerUnit: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
40648
40648
|
readonly districtType: {
|
|
40649
40649
|
readonly type: "string";
|
|
@@ -40801,7 +40801,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
40801
40801
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
40802
40802
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
40803
40803
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
40804
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
40804
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
40805
40805
|
readonly worldExtent: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
40806
40806
|
readonly districtType: {
|
|
40807
40807
|
readonly type: "string";
|
|
@@ -40959,5 +40959,5 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
40959
40959
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
40960
40960
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
40961
40961
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
40962
|
-
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
40962
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
40963
40963
|
}, {}>>;
|