@adobe/data 0.9.60 → 0.9.62
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/archetype/archetype.d.ts +9 -2
- package/dist/ecs/archetype/archetype.js.map +1 -1
- package/dist/ecs/archetype/create-archetype.js +5 -2
- package/dist/ecs/archetype/create-archetype.js.map +1 -1
- package/dist/ecs/database/combine-plugins.d.ts +5 -1
- package/dist/ecs/database/combine-plugins.js +3 -3
- package/dist/ecs/database/combine-plugins.js.map +1 -1
- package/dist/ecs/database/concurrency/concurrency-strategy.d.ts +86 -0
- package/dist/ecs/database/concurrency/concurrency-strategy.js +3 -0
- package/dist/ecs/database/concurrency/concurrency-strategy.js.map +1 -0
- package/dist/ecs/database/concurrency/immediate-concurrency.d.ts +22 -0
- package/dist/ecs/database/concurrency/immediate-concurrency.js +74 -0
- package/dist/ecs/database/concurrency/immediate-concurrency.js.map +1 -0
- package/dist/ecs/database/concurrency/index.d.ts +4 -0
- package/dist/ecs/database/concurrency/index.js +5 -0
- package/dist/ecs/database/concurrency/index.js.map +1 -0
- package/dist/ecs/database/concurrency/rebase-replay-concurrency.d.ts +20 -0
- package/dist/ecs/database/concurrency/rebase-replay-concurrency.js +34 -0
- package/dist/ecs/database/concurrency/rebase-replay-concurrency.js.map +1 -0
- package/dist/ecs/database/concurrency/roll-forward-concurrency.d.ts +33 -0
- package/dist/ecs/database/concurrency/roll-forward-concurrency.js +115 -0
- package/dist/ecs/database/concurrency/roll-forward-concurrency.js.map +1 -0
- package/dist/ecs/database/concurrency/roll-forward-concurrency.test.d.ts +1 -0
- package/dist/ecs/database/concurrency/roll-forward-concurrency.test.js +136 -0
- package/dist/ecs/database/concurrency/roll-forward-concurrency.test.js.map +1 -0
- package/dist/ecs/database/create-plugin.d.ts +17 -14
- package/dist/ecs/database/create-plugin.js +2 -1
- package/dist/ecs/database/create-plugin.js.map +1 -1
- package/dist/ecs/database/database.d.ts +61 -11
- package/dist/ecs/database/database.index.performance.test.d.ts +1 -0
- package/dist/ecs/database/database.index.performance.test.js +417 -0
- package/dist/ecs/database/database.index.performance.test.js.map +1 -0
- package/dist/ecs/database/database.index.test.d.ts +1 -0
- package/dist/ecs/database/database.index.test.js +1142 -0
- package/dist/ecs/database/database.index.test.js.map +1 -0
- package/dist/ecs/database/database.index.type-test.d.ts +1 -0
- package/dist/ecs/database/database.index.type-test.js +275 -0
- package/dist/ecs/database/database.index.type-test.js.map +1 -0
- package/dist/ecs/database/database.js.map +1 -1
- package/dist/ecs/database/database.reset.test.js +2 -1
- package/dist/ecs/database/database.reset.test.js.map +1 -1
- package/dist/ecs/database/deep-extends-chain.type-test.d.ts +256 -256
- package/dist/ecs/database/index-api-proof.type-test.d.ts +1 -0
- package/dist/ecs/database/index-api-proof.type-test.js +88 -0
- package/dist/ecs/database/index-api-proof.type-test.js.map +1 -0
- package/dist/ecs/database/index-registry/create-index-registry.d.ts +53 -0
- package/dist/ecs/database/index-registry/create-index-registry.js +174 -0
- package/dist/ecs/database/index-registry/create-index-registry.js.map +1 -0
- package/dist/ecs/database/index-registry/create-index.d.ts +60 -0
- package/dist/ecs/database/index-registry/create-index.js +539 -0
- package/dist/ecs/database/index-registry/create-index.js.map +1 -0
- package/dist/ecs/database/index-registry/index.d.ts +4 -0
- package/dist/ecs/database/index-registry/index.js +4 -0
- package/dist/ecs/database/index-registry/index.js.map +1 -0
- package/dist/ecs/database/index.d.ts +1 -0
- package/dist/ecs/database/index.js +1 -0
- package/dist/ecs/database/index.js.map +1 -1
- package/dist/ecs/database/observe-index-entities.d.ts +26 -0
- package/dist/ecs/database/observe-index-entities.js +66 -0
- package/dist/ecs/database/observe-index-entities.js.map +1 -0
- package/dist/ecs/database/observed/create-observed-database.js +1 -1
- package/dist/ecs/database/observed/create-observed-database.js.map +1 -1
- package/dist/ecs/database/observed/observed-database.d.ts +1 -1
- package/dist/ecs/database/public/create-database.d.ts +12 -27
- package/dist/ecs/database/public/create-database.js +252 -10
- package/dist/ecs/database/public/create-database.js.map +1 -1
- package/dist/ecs/database/public/create-database.test.js +8 -7
- package/dist/ecs/database/public/create-database.test.js.map +1 -1
- package/dist/ecs/database/public/create-transaction-dispatcher.d.ts +4 -2
- package/dist/ecs/database/public/create-transaction-dispatcher.js +2 -8
- package/dist/ecs/database/public/create-transaction-dispatcher.js.map +1 -1
- package/dist/ecs/database/reconciling/create-rebase-replay-applier.d.ts +26 -0
- package/dist/ecs/database/reconciling/create-rebase-replay-applier.js +121 -0
- package/dist/ecs/database/reconciling/create-rebase-replay-applier.js.map +1 -0
- package/dist/ecs/database/reconciling/create-reconciling-database.d.ts +11 -0
- package/dist/ecs/database/reconciling/create-reconciling-database.js +28 -137
- package/dist/ecs/database/reconciling/create-reconciling-database.js.map +1 -1
- package/dist/ecs/database/transactional-store/create-transactional-store.js.map +1 -1
- package/dist/ecs/database/transactional-store/transactional-store.d.ts +4 -3
- package/dist/ecs/entity-location-table/create-entity-location-table.js +2 -2
- package/dist/ecs/entity-location-table/create-entity-location-table.js.map +1 -1
- package/dist/ecs/entity-location-table/entity-location-table.d.ts +7 -1
- package/dist/ecs/plugins/scheduler/scheduler.d.ts +1 -0
- package/dist/ecs/store/core/core.d.ts +7 -1
- package/dist/ecs/store/core/create-core.js +3 -3
- package/dist/ecs/store/core/create-core.js.map +1 -1
- package/dist/ecs/store/index-types.d.ts +142 -0
- package/dist/ecs/store/index-types.js +3 -0
- package/dist/ecs/store/index-types.js.map +1 -0
- package/dist/ecs/store/public/create-store.js +206 -4
- package/dist/ecs/store/public/create-store.js.map +1 -1
- package/dist/ecs/store/public/create-store.test.js +25 -0
- package/dist/ecs/store/public/create-store.test.js.map +1 -1
- package/dist/ecs/store/store.d.ts +38 -14
- package/dist/ecs/store/store.js +5 -4
- package/dist/ecs/store/store.js.map +1 -1
- package/dist/ecs/store/transaction-functions.d.ts +4 -3
- package/dist/schema/fractional-index/between-n.d.ts +2 -0
- package/dist/schema/fractional-index/between-n.js +34 -0
- package/dist/schema/fractional-index/between-n.js.map +1 -0
- package/dist/schema/fractional-index/between-n.test.d.ts +1 -0
- package/dist/schema/fractional-index/between-n.test.js +36 -0
- package/dist/schema/fractional-index/between-n.test.js.map +1 -0
- package/dist/schema/fractional-index/between.d.ts +2 -0
- package/dist/schema/fractional-index/between.js +3 -0
- package/dist/schema/fractional-index/between.js.map +1 -0
- package/dist/schema/fractional-index/between.test.d.ts +1 -0
- package/dist/schema/fractional-index/between.test.js +68 -0
- package/dist/schema/fractional-index/between.test.js.map +1 -0
- package/dist/schema/fractional-index/decrement-integer.d.ts +1 -0
- package/dist/schema/fractional-index/decrement-integer.js +32 -0
- package/dist/schema/fractional-index/decrement-integer.js.map +1 -0
- package/dist/schema/fractional-index/decrement-integer.test.d.ts +1 -0
- package/dist/schema/fractional-index/decrement-integer.test.js +31 -0
- package/dist/schema/fractional-index/decrement-integer.test.js.map +1 -0
- package/dist/schema/fractional-index/digits.d.ts +1 -0
- package/dist/schema/fractional-index/digits.js +3 -0
- package/dist/schema/fractional-index/digits.js.map +1 -0
- package/dist/schema/fractional-index/fractional-index.d.ts +4 -0
- package/dist/schema/fractional-index/fractional-index.js +2 -0
- package/dist/schema/fractional-index/fractional-index.js.map +1 -0
- package/dist/schema/fractional-index/increment-integer.d.ts +1 -0
- package/dist/schema/fractional-index/increment-integer.js +32 -0
- package/dist/schema/fractional-index/increment-integer.js.map +1 -0
- package/dist/schema/fractional-index/increment-integer.test.d.ts +1 -0
- package/dist/schema/fractional-index/increment-integer.test.js +34 -0
- package/dist/schema/fractional-index/increment-integer.test.js.map +1 -0
- package/dist/schema/fractional-index/initial.d.ts +2 -0
- package/dist/schema/fractional-index/initial.js +2 -0
- package/dist/schema/fractional-index/initial.js.map +1 -0
- package/dist/schema/fractional-index/integer-length.d.ts +1 -0
- package/dist/schema/fractional-index/integer-length.js +9 -0
- package/dist/schema/fractional-index/integer-length.js.map +1 -0
- package/dist/schema/fractional-index/integer-part.d.ts +1 -0
- package/dist/schema/fractional-index/integer-part.js +9 -0
- package/dist/schema/fractional-index/integer-part.js.map +1 -0
- package/dist/schema/fractional-index/key-between.d.ts +2 -0
- package/dist/schema/fractional-index/key-between.js +39 -0
- package/dist/schema/fractional-index/key-between.js.map +1 -0
- package/dist/schema/fractional-index/midpoint.d.ts +1 -0
- package/dist/schema/fractional-index/midpoint.js +23 -0
- package/dist/schema/fractional-index/midpoint.js.map +1 -0
- package/dist/schema/fractional-index/midpoint.test.d.ts +1 -0
- package/dist/schema/fractional-index/midpoint.test.js +83 -0
- package/dist/schema/fractional-index/midpoint.test.js.map +1 -0
- package/dist/schema/fractional-index/public.d.ts +4 -0
- package/dist/schema/fractional-index/public.js +6 -0
- package/dist/schema/fractional-index/public.js.map +1 -0
- package/dist/schema/fractional-index/schema.d.ts +4 -0
- package/dist/schema/fractional-index/schema.js +5 -0
- package/dist/schema/fractional-index/schema.js.map +1 -0
- package/dist/schema/fractional-index/smallest-integer.d.ts +1 -0
- package/dist/schema/fractional-index/smallest-integer.js +3 -0
- package/dist/schema/fractional-index/smallest-integer.js.map +1 -0
- package/dist/schema/fractional-index/validate-integer.d.ts +1 -0
- package/dist/schema/fractional-index/validate-integer.js +7 -0
- package/dist/schema/fractional-index/validate-integer.js.map +1 -0
- package/dist/schema/fractional-index/validate-order-key.d.ts +1 -0
- package/dist/schema/fractional-index/validate-order-key.js +11 -0
- package/dist/schema/fractional-index/validate-order-key.js.map +1 -0
- package/dist/schema/guid/create.d.ts +2 -0
- package/dist/schema/guid/create.js +10 -0
- package/dist/schema/guid/create.js.map +1 -0
- package/dist/schema/guid/create.test.d.ts +1 -0
- package/dist/schema/guid/create.test.js +39 -0
- package/dist/schema/guid/create.test.js.map +1 -0
- package/dist/schema/guid/equals.d.ts +2 -0
- package/dist/schema/guid/equals.js +3 -0
- package/dist/schema/guid/equals.js.map +1 -0
- package/dist/schema/guid/equals.test.d.ts +1 -0
- package/dist/schema/guid/equals.test.js +30 -0
- package/dist/schema/guid/equals.test.js.map +1 -0
- package/dist/schema/guid/from-uuid.d.ts +2 -0
- package/dist/schema/guid/from-uuid.js +15 -0
- package/dist/schema/guid/from-uuid.js.map +1 -0
- package/dist/schema/guid/from-uuid.test.d.ts +1 -0
- package/dist/schema/guid/from-uuid.test.js +39 -0
- package/dist/schema/guid/from-uuid.test.js.map +1 -0
- package/dist/schema/guid/guid.performance.test.d.ts +1 -0
- package/dist/schema/guid/guid.performance.test.js +297 -0
- package/dist/schema/guid/guid.performance.test.js.map +1 -0
- package/dist/schema/guid/index.d.ts +4 -0
- package/dist/schema/guid/index.js +3 -0
- package/dist/schema/guid/index.js.map +1 -0
- package/dist/schema/guid/layout.d.ts +1 -0
- package/dist/schema/guid/layout.js +5 -0
- package/dist/schema/guid/layout.js.map +1 -0
- package/dist/schema/guid/nil.d.ts +2 -0
- package/dist/schema/guid/nil.js +3 -0
- package/dist/schema/guid/nil.js.map +1 -0
- package/dist/schema/guid/public.d.ts +8 -0
- package/dist/schema/guid/public.js +10 -0
- package/dist/schema/guid/public.js.map +1 -0
- package/dist/schema/guid/schema.d.ts +12 -0
- package/dist/schema/guid/schema.js +10 -0
- package/dist/schema/guid/schema.js.map +1 -0
- package/dist/schema/guid/schema.test.d.ts +1 -0
- package/dist/schema/guid/schema.test.js +35 -0
- package/dist/schema/guid/schema.test.js.map +1 -0
- package/dist/schema/guid/to-unserializable-key.d.ts +2 -0
- package/dist/schema/guid/to-unserializable-key.js +10 -0
- package/dist/schema/guid/to-unserializable-key.js.map +1 -0
- package/dist/schema/guid/to-uuid.d.ts +2 -0
- package/dist/schema/guid/to-uuid.js +15 -0
- package/dist/schema/guid/to-uuid.js.map +1 -0
- package/dist/schema/guid/to-uuid.test.d.ts +1 -0
- package/dist/schema/guid/to-uuid.test.js +31 -0
- package/dist/schema/guid/to-uuid.test.js.map +1 -0
- package/dist/schema/index.d.ts +2 -0
- package/dist/schema/index.js +2 -0
- package/dist/schema/index.js.map +1 -1
- package/dist/table/select-rows.d.ts +7 -4
- package/dist/table/select-rows.js.map +1 -1
- package/dist/test-setup.js +2 -2
- package/dist/test-setup.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -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
|
@@ -318,7 +318,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
318
318
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
319
319
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
320
320
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
321
|
-
}>, _input: {
|
|
321
|
+
}, {} & {}>, _input: {
|
|
322
322
|
districtType: string;
|
|
323
323
|
zoning: string;
|
|
324
324
|
}) => void;
|
|
@@ -479,7 +479,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
479
479
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
480
480
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
481
481
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
482
|
-
}>, _id: Entity) => void;
|
|
482
|
+
}, {} & {}>, _id: Entity) => void;
|
|
483
483
|
readonly createBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
484
484
|
readonly districtType: {
|
|
485
485
|
readonly type: "string";
|
|
@@ -637,7 +637,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
637
637
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
638
638
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
639
639
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
640
|
-
}>, _input: {
|
|
640
|
+
}, {} & {}>, _input: {
|
|
641
641
|
parentDistrict: Entity;
|
|
642
642
|
positionX: number;
|
|
643
643
|
}) => void;
|
|
@@ -798,7 +798,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
798
798
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
799
799
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
800
800
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
801
|
-
}>, _id: Entity) => void;
|
|
801
|
+
}, {} & {}>, _id: Entity) => void;
|
|
802
802
|
readonly updateBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
803
803
|
readonly districtType: {
|
|
804
804
|
readonly type: "string";
|
|
@@ -956,7 +956,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
956
956
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
957
957
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
958
958
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
959
|
-
}>, _input: {
|
|
959
|
+
}, {} & {}>, _input: {
|
|
960
960
|
id: Entity;
|
|
961
961
|
} & Partial<{
|
|
962
962
|
positionX: number;
|
|
@@ -1119,7 +1119,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
1119
1119
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
1120
1120
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
1121
1121
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
1122
|
-
}>, _input: {
|
|
1122
|
+
}, {} & {}>, _input: {
|
|
1123
1123
|
entityId: Entity;
|
|
1124
1124
|
userId: string;
|
|
1125
1125
|
}) => void;
|
|
@@ -1280,7 +1280,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
1280
1280
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
1281
1281
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
1282
1282
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
1283
|
-
}>, _input: {
|
|
1283
|
+
}, {} & {}>, _input: {
|
|
1284
1284
|
entityId: Entity;
|
|
1285
1285
|
userId: string;
|
|
1286
1286
|
}) => void;
|
|
@@ -1441,7 +1441,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
1441
1441
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
1442
1442
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
1443
1443
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
1444
|
-
}>, _input: {
|
|
1444
|
+
}, {} & {}>, _input: {
|
|
1445
1445
|
entityId: Entity;
|
|
1446
1446
|
userId: string;
|
|
1447
1447
|
}) => void;
|
|
@@ -1602,7 +1602,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
1602
1602
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
1603
1603
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
1604
1604
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
1605
|
-
}>, _input: {
|
|
1605
|
+
}, {} & {}>, _input: {
|
|
1606
1606
|
deltaUnits: number;
|
|
1607
1607
|
}) => void;
|
|
1608
1608
|
readonly setCursorTime: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -1762,7 +1762,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
1762
1762
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
1763
1763
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
1764
1764
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
1765
|
-
}>, _input: {
|
|
1765
|
+
}, {} & {}>, _input: {
|
|
1766
1766
|
time: number;
|
|
1767
1767
|
}) => void;
|
|
1768
1768
|
readonly setSimulationState: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -1922,7 +1922,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
1922
1922
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
1923
1923
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
1924
1924
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
1925
|
-
}>, _input: {
|
|
1925
|
+
}, {} & {}>, _input: {
|
|
1926
1926
|
state: string;
|
|
1927
1927
|
}) => void;
|
|
1928
1928
|
readonly setZoomLevel: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -2082,7 +2082,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
2082
2082
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
2083
2083
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
2084
2084
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
2085
|
-
}>, _input: {
|
|
2085
|
+
}, {} & {}>, _input: {
|
|
2086
2086
|
level: number;
|
|
2087
2087
|
}) => void;
|
|
2088
2088
|
readonly setDemolishTool: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -2242,7 +2242,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
2242
2242
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
2243
2243
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
2244
2244
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
2245
|
-
}>, _input: {
|
|
2245
|
+
}, {} & {}>, _input: {
|
|
2246
2246
|
active: boolean;
|
|
2247
2247
|
}) => void;
|
|
2248
2248
|
readonly setGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -2402,7 +2402,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
2402
2402
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
2403
2403
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
2404
2404
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
2405
|
-
}>, _input: {
|
|
2405
|
+
}, {} & {}>, _input: {
|
|
2406
2406
|
enabled: boolean;
|
|
2407
2407
|
}) => void;
|
|
2408
2408
|
readonly setActiveGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -2562,7 +2562,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
2562
2562
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
2563
2563
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
2564
2564
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
2565
|
-
}>, _input: {
|
|
2565
|
+
}, {} & {}>, _input: {
|
|
2566
2566
|
time: number | null;
|
|
2567
2567
|
}) => void;
|
|
2568
2568
|
readonly setCrossDistrictDrag: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -2722,7 +2722,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
2722
2722
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
2723
2723
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
2724
2724
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
2725
|
-
}>, _input: {
|
|
2725
|
+
}, {} & {}>, _input: {
|
|
2726
2726
|
active: boolean;
|
|
2727
2727
|
}) => void;
|
|
2728
2728
|
readonly clearCrossDistrictPreviews: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -2882,7 +2882,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
2882
2882
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
2883
2883
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
2884
2884
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
2885
|
-
}>) => void;
|
|
2885
|
+
}, {} & {}>) => void;
|
|
2886
2886
|
readonly resizeFreeformBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
2887
2887
|
readonly districtType: {
|
|
2888
2888
|
readonly type: "string";
|
|
@@ -3040,7 +3040,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
3040
3040
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
3041
3041
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
3042
3042
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
3043
|
-
}>, _input: {
|
|
3043
|
+
}, {} & {}>, _input: {
|
|
3044
3044
|
buildingId: Entity;
|
|
3045
3045
|
edge: "left" | "right";
|
|
3046
3046
|
deltaPx: number;
|
|
@@ -3202,7 +3202,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
3202
3202
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
3203
3203
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
3204
3204
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
3205
|
-
}>, _input: {
|
|
3205
|
+
}, {} & {}>, _input: {
|
|
3206
3206
|
buildingId: Entity;
|
|
3207
3207
|
edge: "left" | "right";
|
|
3208
3208
|
deltaPx: number;
|
|
@@ -3364,7 +3364,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
3364
3364
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
3365
3365
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
3366
3366
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
3367
|
-
}>, _input: {
|
|
3367
|
+
}, {} & {}>, _input: {
|
|
3368
3368
|
userId: string;
|
|
3369
3369
|
}) => void;
|
|
3370
3370
|
readonly deleteSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -3524,7 +3524,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
3524
3524
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
3525
3525
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
3526
3526
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
3527
|
-
}>, _input: {
|
|
3527
|
+
}, {} & {}>, _input: {
|
|
3528
3528
|
userId: string;
|
|
3529
3529
|
}) => void;
|
|
3530
3530
|
readonly toggleCondemned: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -3684,7 +3684,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
3684
3684
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
3685
3685
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
3686
3686
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
3687
|
-
}>, _input: {
|
|
3687
|
+
}, {} & {}>, _input: {
|
|
3688
3688
|
buildingId: Entity;
|
|
3689
3689
|
}) => void;
|
|
3690
3690
|
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -3844,7 +3844,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
3844
3844
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
3845
3845
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
3846
3846
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
3847
|
-
}>, _input: {
|
|
3847
|
+
}, {} & {}>, _input: {
|
|
3848
3848
|
userId: string;
|
|
3849
3849
|
}) => void;
|
|
3850
3850
|
readonly selectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -4004,7 +4004,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
4004
4004
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
4005
4005
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
4006
4006
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
4007
|
-
}>, _input: {
|
|
4007
|
+
}, {} & {}>, _input: {
|
|
4008
4008
|
userId: string;
|
|
4009
4009
|
}) => void;
|
|
4010
4010
|
readonly setSelectionFromIds: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -4164,7 +4164,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
4164
4164
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
4165
4165
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
4166
4166
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
4167
|
-
}>, _input: {
|
|
4167
|
+
}, {} & {}>, _input: {
|
|
4168
4168
|
entityIds: Entity[];
|
|
4169
4169
|
userId: string;
|
|
4170
4170
|
additive: boolean;
|
|
@@ -4326,7 +4326,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
4326
4326
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
4327
4327
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
4328
4328
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
4329
|
-
}>, _input: {
|
|
4329
|
+
}, {} & {}>, _input: {
|
|
4330
4330
|
userId: string;
|
|
4331
4331
|
edge: "left" | "right";
|
|
4332
4332
|
}) => void;
|
|
@@ -4646,7 +4646,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
4646
4646
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
4647
4647
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
4648
4648
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
4649
|
-
}>, _input: {
|
|
4649
|
+
}, {} & {}>, _input: {
|
|
4650
4650
|
districtType: string;
|
|
4651
4651
|
zoning: string;
|
|
4652
4652
|
}) => void;
|
|
@@ -4807,7 +4807,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
4807
4807
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
4808
4808
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
4809
4809
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
4810
|
-
}>, _id: Entity) => void;
|
|
4810
|
+
}, {} & {}>, _id: Entity) => void;
|
|
4811
4811
|
readonly createBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
4812
4812
|
readonly districtType: {
|
|
4813
4813
|
readonly type: "string";
|
|
@@ -4965,7 +4965,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
4965
4965
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
4966
4966
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
4967
4967
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
4968
|
-
}>, _input: {
|
|
4968
|
+
}, {} & {}>, _input: {
|
|
4969
4969
|
parentDistrict: Entity;
|
|
4970
4970
|
positionX: number;
|
|
4971
4971
|
}) => void;
|
|
@@ -5126,7 +5126,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
5126
5126
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
5127
5127
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
5128
5128
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
5129
|
-
}>, _id: Entity) => void;
|
|
5129
|
+
}, {} & {}>, _id: Entity) => void;
|
|
5130
5130
|
readonly updateBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
5131
5131
|
readonly districtType: {
|
|
5132
5132
|
readonly type: "string";
|
|
@@ -5284,7 +5284,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
5284
5284
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
5285
5285
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
5286
5286
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
5287
|
-
}>, _input: {
|
|
5287
|
+
}, {} & {}>, _input: {
|
|
5288
5288
|
id: Entity;
|
|
5289
5289
|
} & Partial<{
|
|
5290
5290
|
positionX: number;
|
|
@@ -5447,7 +5447,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
5447
5447
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
5448
5448
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
5449
5449
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
5450
|
-
}>, _input: {
|
|
5450
|
+
}, {} & {}>, _input: {
|
|
5451
5451
|
entityId: Entity;
|
|
5452
5452
|
userId: string;
|
|
5453
5453
|
}) => void;
|
|
@@ -5608,7 +5608,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
5608
5608
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
5609
5609
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
5610
5610
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
5611
|
-
}>, _input: {
|
|
5611
|
+
}, {} & {}>, _input: {
|
|
5612
5612
|
entityId: Entity;
|
|
5613
5613
|
userId: string;
|
|
5614
5614
|
}) => void;
|
|
@@ -5769,7 +5769,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
5769
5769
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
5770
5770
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
5771
5771
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
5772
|
-
}>, _input: {
|
|
5772
|
+
}, {} & {}>, _input: {
|
|
5773
5773
|
entityId: Entity;
|
|
5774
5774
|
userId: string;
|
|
5775
5775
|
}) => void;
|
|
@@ -5930,7 +5930,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
5930
5930
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
5931
5931
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
5932
5932
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
5933
|
-
}>, _input: {
|
|
5933
|
+
}, {} & {}>, _input: {
|
|
5934
5934
|
deltaUnits: number;
|
|
5935
5935
|
}) => void;
|
|
5936
5936
|
readonly setCursorTime: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -6090,7 +6090,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
6090
6090
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
6091
6091
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
6092
6092
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
6093
|
-
}>, _input: {
|
|
6093
|
+
}, {} & {}>, _input: {
|
|
6094
6094
|
time: number;
|
|
6095
6095
|
}) => void;
|
|
6096
6096
|
readonly setSimulationState: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -6250,7 +6250,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
6250
6250
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
6251
6251
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
6252
6252
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
6253
|
-
}>, _input: {
|
|
6253
|
+
}, {} & {}>, _input: {
|
|
6254
6254
|
state: string;
|
|
6255
6255
|
}) => void;
|
|
6256
6256
|
readonly setZoomLevel: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -6410,7 +6410,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
6410
6410
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
6411
6411
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
6412
6412
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
6413
|
-
}>, _input: {
|
|
6413
|
+
}, {} & {}>, _input: {
|
|
6414
6414
|
level: number;
|
|
6415
6415
|
}) => void;
|
|
6416
6416
|
readonly setDemolishTool: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -6570,7 +6570,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
6570
6570
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
6571
6571
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
6572
6572
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
6573
|
-
}>, _input: {
|
|
6573
|
+
}, {} & {}>, _input: {
|
|
6574
6574
|
active: boolean;
|
|
6575
6575
|
}) => void;
|
|
6576
6576
|
readonly setGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -6730,7 +6730,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
6730
6730
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
6731
6731
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
6732
6732
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
6733
|
-
}>, _input: {
|
|
6733
|
+
}, {} & {}>, _input: {
|
|
6734
6734
|
enabled: boolean;
|
|
6735
6735
|
}) => void;
|
|
6736
6736
|
readonly setActiveGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -6890,7 +6890,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
6890
6890
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
6891
6891
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
6892
6892
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
6893
|
-
}>, _input: {
|
|
6893
|
+
}, {} & {}>, _input: {
|
|
6894
6894
|
time: number | null;
|
|
6895
6895
|
}) => void;
|
|
6896
6896
|
readonly setCrossDistrictDrag: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -7050,7 +7050,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
7050
7050
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
7051
7051
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
7052
7052
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
7053
|
-
}>, _input: {
|
|
7053
|
+
}, {} & {}>, _input: {
|
|
7054
7054
|
active: boolean;
|
|
7055
7055
|
}) => void;
|
|
7056
7056
|
readonly clearCrossDistrictPreviews: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -7210,7 +7210,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
7210
7210
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
7211
7211
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
7212
7212
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
7213
|
-
}>) => void;
|
|
7213
|
+
}, {} & {}>) => void;
|
|
7214
7214
|
readonly resizeFreeformBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
7215
7215
|
readonly districtType: {
|
|
7216
7216
|
readonly type: "string";
|
|
@@ -7368,7 +7368,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
7368
7368
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
7369
7369
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
7370
7370
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
7371
|
-
}>, _input: {
|
|
7371
|
+
}, {} & {}>, _input: {
|
|
7372
7372
|
buildingId: Entity;
|
|
7373
7373
|
edge: "left" | "right";
|
|
7374
7374
|
deltaPx: number;
|
|
@@ -7530,7 +7530,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
7530
7530
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
7531
7531
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
7532
7532
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
7533
|
-
}>, _input: {
|
|
7533
|
+
}, {} & {}>, _input: {
|
|
7534
7534
|
buildingId: Entity;
|
|
7535
7535
|
edge: "left" | "right";
|
|
7536
7536
|
deltaPx: number;
|
|
@@ -7692,7 +7692,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
7692
7692
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
7693
7693
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
7694
7694
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
7695
|
-
}>, _input: {
|
|
7695
|
+
}, {} & {}>, _input: {
|
|
7696
7696
|
userId: string;
|
|
7697
7697
|
}) => void;
|
|
7698
7698
|
readonly deleteSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -7852,7 +7852,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
7852
7852
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
7853
7853
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
7854
7854
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
7855
|
-
}>, _input: {
|
|
7855
|
+
}, {} & {}>, _input: {
|
|
7856
7856
|
userId: string;
|
|
7857
7857
|
}) => void;
|
|
7858
7858
|
readonly toggleCondemned: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -8012,7 +8012,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
8012
8012
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
8013
8013
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
8014
8014
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
8015
|
-
}>, _input: {
|
|
8015
|
+
}, {} & {}>, _input: {
|
|
8016
8016
|
buildingId: Entity;
|
|
8017
8017
|
}) => void;
|
|
8018
8018
|
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -8172,7 +8172,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
8172
8172
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
8173
8173
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
8174
8174
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
8175
|
-
}>, _input: {
|
|
8175
|
+
}, {} & {}>, _input: {
|
|
8176
8176
|
userId: string;
|
|
8177
8177
|
}) => void;
|
|
8178
8178
|
readonly selectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -8332,7 +8332,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
8332
8332
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
8333
8333
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
8334
8334
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
8335
|
-
}>, _input: {
|
|
8335
|
+
}, {} & {}>, _input: {
|
|
8336
8336
|
userId: string;
|
|
8337
8337
|
}) => void;
|
|
8338
8338
|
readonly setSelectionFromIds: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -8492,7 +8492,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
8492
8492
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
8493
8493
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
8494
8494
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
8495
|
-
}>, _input: {
|
|
8495
|
+
}, {} & {}>, _input: {
|
|
8496
8496
|
entityIds: Entity[];
|
|
8497
8497
|
userId: string;
|
|
8498
8498
|
additive: boolean;
|
|
@@ -8654,7 +8654,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
8654
8654
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
8655
8655
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
8656
8656
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
8657
|
-
}>, _input: {
|
|
8657
|
+
}, {} & {}>, _input: {
|
|
8658
8658
|
userId: string;
|
|
8659
8659
|
edge: "left" | "right";
|
|
8660
8660
|
}) => void;
|
|
@@ -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,8 +9448,8 @@ 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>;
|
|
9452
|
-
}
|
|
9451
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
9452
|
+
}>, {} & {}>, entityId: Entity) => Promise<void>;
|
|
9453
9453
|
readonly toggleSimulation: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
9454
9454
|
readonly districtType: {
|
|
9455
9455
|
readonly type: "string";
|
|
@@ -9765,7 +9765,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
9765
9765
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
9766
9766
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
9767
9767
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
9768
|
-
}>, _input: {
|
|
9768
|
+
}, {} & {}>, _input: {
|
|
9769
9769
|
districtType: string;
|
|
9770
9770
|
zoning: string;
|
|
9771
9771
|
}) => void;
|
|
@@ -9926,7 +9926,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
9926
9926
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
9927
9927
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
9928
9928
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
9929
|
-
}>, _id: Entity) => void;
|
|
9929
|
+
}, {} & {}>, _id: Entity) => void;
|
|
9930
9930
|
readonly createBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
9931
9931
|
readonly districtType: {
|
|
9932
9932
|
readonly type: "string";
|
|
@@ -10084,7 +10084,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
10084
10084
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
10085
10085
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
10086
10086
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
10087
|
-
}>, _input: {
|
|
10087
|
+
}, {} & {}>, _input: {
|
|
10088
10088
|
parentDistrict: Entity;
|
|
10089
10089
|
positionX: number;
|
|
10090
10090
|
}) => void;
|
|
@@ -10245,7 +10245,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
10245
10245
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
10246
10246
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
10247
10247
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
10248
|
-
}>, _id: Entity) => void;
|
|
10248
|
+
}, {} & {}>, _id: Entity) => void;
|
|
10249
10249
|
readonly updateBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
10250
10250
|
readonly districtType: {
|
|
10251
10251
|
readonly type: "string";
|
|
@@ -10403,7 +10403,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
10403
10403
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
10404
10404
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
10405
10405
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
10406
|
-
}>, _input: {
|
|
10406
|
+
}, {} & {}>, _input: {
|
|
10407
10407
|
id: Entity;
|
|
10408
10408
|
} & Partial<{
|
|
10409
10409
|
positionX: number;
|
|
@@ -10566,7 +10566,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
10566
10566
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
10567
10567
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
10568
10568
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
10569
|
-
}>, _input: {
|
|
10569
|
+
}, {} & {}>, _input: {
|
|
10570
10570
|
entityId: Entity;
|
|
10571
10571
|
userId: string;
|
|
10572
10572
|
}) => void;
|
|
@@ -10727,7 +10727,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
10727
10727
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
10728
10728
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
10729
10729
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
10730
|
-
}>, _input: {
|
|
10730
|
+
}, {} & {}>, _input: {
|
|
10731
10731
|
entityId: Entity;
|
|
10732
10732
|
userId: string;
|
|
10733
10733
|
}) => void;
|
|
@@ -10888,7 +10888,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
10888
10888
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
10889
10889
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
10890
10890
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
10891
|
-
}>, _input: {
|
|
10891
|
+
}, {} & {}>, _input: {
|
|
10892
10892
|
entityId: Entity;
|
|
10893
10893
|
userId: string;
|
|
10894
10894
|
}) => void;
|
|
@@ -11049,7 +11049,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
11049
11049
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
11050
11050
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
11051
11051
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
11052
|
-
}>, _input: {
|
|
11052
|
+
}, {} & {}>, _input: {
|
|
11053
11053
|
deltaUnits: number;
|
|
11054
11054
|
}) => void;
|
|
11055
11055
|
readonly setCursorTime: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -11209,7 +11209,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
11209
11209
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
11210
11210
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
11211
11211
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
11212
|
-
}>, _input: {
|
|
11212
|
+
}, {} & {}>, _input: {
|
|
11213
11213
|
time: number;
|
|
11214
11214
|
}) => void;
|
|
11215
11215
|
readonly setSimulationState: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -11369,7 +11369,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
11369
11369
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
11370
11370
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
11371
11371
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
11372
|
-
}>, _input: {
|
|
11372
|
+
}, {} & {}>, _input: {
|
|
11373
11373
|
state: string;
|
|
11374
11374
|
}) => void;
|
|
11375
11375
|
readonly setZoomLevel: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -11529,7 +11529,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
11529
11529
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
11530
11530
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
11531
11531
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
11532
|
-
}>, _input: {
|
|
11532
|
+
}, {} & {}>, _input: {
|
|
11533
11533
|
level: number;
|
|
11534
11534
|
}) => void;
|
|
11535
11535
|
readonly setDemolishTool: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -11689,7 +11689,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
11689
11689
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
11690
11690
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
11691
11691
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
11692
|
-
}>, _input: {
|
|
11692
|
+
}, {} & {}>, _input: {
|
|
11693
11693
|
active: boolean;
|
|
11694
11694
|
}) => void;
|
|
11695
11695
|
readonly setGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -11849,7 +11849,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
11849
11849
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
11850
11850
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
11851
11851
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
11852
|
-
}>, _input: {
|
|
11852
|
+
}, {} & {}>, _input: {
|
|
11853
11853
|
enabled: boolean;
|
|
11854
11854
|
}) => void;
|
|
11855
11855
|
readonly setActiveGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -12009,7 +12009,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
12009
12009
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
12010
12010
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
12011
12011
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
12012
|
-
}>, _input: {
|
|
12012
|
+
}, {} & {}>, _input: {
|
|
12013
12013
|
time: number | null;
|
|
12014
12014
|
}) => void;
|
|
12015
12015
|
readonly setCrossDistrictDrag: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -12169,7 +12169,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
12169
12169
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
12170
12170
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
12171
12171
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
12172
|
-
}>, _input: {
|
|
12172
|
+
}, {} & {}>, _input: {
|
|
12173
12173
|
active: boolean;
|
|
12174
12174
|
}) => void;
|
|
12175
12175
|
readonly clearCrossDistrictPreviews: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -12329,7 +12329,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
12329
12329
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
12330
12330
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
12331
12331
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
12332
|
-
}>) => void;
|
|
12332
|
+
}, {} & {}>) => void;
|
|
12333
12333
|
readonly resizeFreeformBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
12334
12334
|
readonly districtType: {
|
|
12335
12335
|
readonly type: "string";
|
|
@@ -12487,7 +12487,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
12487
12487
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
12488
12488
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
12489
12489
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
12490
|
-
}>, _input: {
|
|
12490
|
+
}, {} & {}>, _input: {
|
|
12491
12491
|
buildingId: Entity;
|
|
12492
12492
|
edge: "left" | "right";
|
|
12493
12493
|
deltaPx: number;
|
|
@@ -12649,7 +12649,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
12649
12649
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
12650
12650
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
12651
12651
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
12652
|
-
}>, _input: {
|
|
12652
|
+
}, {} & {}>, _input: {
|
|
12653
12653
|
buildingId: Entity;
|
|
12654
12654
|
edge: "left" | "right";
|
|
12655
12655
|
deltaPx: number;
|
|
@@ -12811,7 +12811,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
12811
12811
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
12812
12812
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
12813
12813
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
12814
|
-
}>, _input: {
|
|
12814
|
+
}, {} & {}>, _input: {
|
|
12815
12815
|
userId: string;
|
|
12816
12816
|
}) => void;
|
|
12817
12817
|
readonly deleteSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -12971,7 +12971,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
12971
12971
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
12972
12972
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
12973
12973
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
12974
|
-
}>, _input: {
|
|
12974
|
+
}, {} & {}>, _input: {
|
|
12975
12975
|
userId: string;
|
|
12976
12976
|
}) => void;
|
|
12977
12977
|
readonly toggleCondemned: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -13131,7 +13131,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
13131
13131
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
13132
13132
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
13133
13133
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
13134
|
-
}>, _input: {
|
|
13134
|
+
}, {} & {}>, _input: {
|
|
13135
13135
|
buildingId: Entity;
|
|
13136
13136
|
}) => void;
|
|
13137
13137
|
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -13291,7 +13291,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
13291
13291
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
13292
13292
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
13293
13293
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
13294
|
-
}>, _input: {
|
|
13294
|
+
}, {} & {}>, _input: {
|
|
13295
13295
|
userId: string;
|
|
13296
13296
|
}) => void;
|
|
13297
13297
|
readonly selectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -13451,7 +13451,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
13451
13451
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
13452
13452
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
13453
13453
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
13454
|
-
}>, _input: {
|
|
13454
|
+
}, {} & {}>, _input: {
|
|
13455
13455
|
userId: string;
|
|
13456
13456
|
}) => void;
|
|
13457
13457
|
readonly setSelectionFromIds: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -13611,7 +13611,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
13611
13611
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
13612
13612
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
13613
13613
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
13614
|
-
}>, _input: {
|
|
13614
|
+
}, {} & {}>, _input: {
|
|
13615
13615
|
entityIds: Entity[];
|
|
13616
13616
|
userId: string;
|
|
13617
13617
|
additive: boolean;
|
|
@@ -13773,7 +13773,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
13773
13773
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
13774
13774
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
13775
13775
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
13776
|
-
}>, _input: {
|
|
13776
|
+
}, {} & {}>, _input: {
|
|
13777
13777
|
userId: string;
|
|
13778
13778
|
edge: "left" | "right";
|
|
13779
13779
|
}) => void;
|
|
@@ -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,8 +14567,8 @@ 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>;
|
|
14571
|
-
}
|
|
14570
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
14571
|
+
}>, {} & {}>) => Promise<void>;
|
|
14572
14572
|
readonly moveBuildings: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
14573
14573
|
readonly districtType: {
|
|
14574
14574
|
readonly type: "string";
|
|
@@ -14884,7 +14884,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
14884
14884
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
14885
14885
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
14886
14886
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
14887
|
-
}>, _input: {
|
|
14887
|
+
}, {} & {}>, _input: {
|
|
14888
14888
|
districtType: string;
|
|
14889
14889
|
zoning: string;
|
|
14890
14890
|
}) => void;
|
|
@@ -15045,7 +15045,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
15045
15045
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
15046
15046
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
15047
15047
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
15048
|
-
}>, _id: Entity) => void;
|
|
15048
|
+
}, {} & {}>, _id: Entity) => void;
|
|
15049
15049
|
readonly createBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
15050
15050
|
readonly districtType: {
|
|
15051
15051
|
readonly type: "string";
|
|
@@ -15203,7 +15203,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
15203
15203
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
15204
15204
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
15205
15205
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
15206
|
-
}>, _input: {
|
|
15206
|
+
}, {} & {}>, _input: {
|
|
15207
15207
|
parentDistrict: Entity;
|
|
15208
15208
|
positionX: number;
|
|
15209
15209
|
}) => void;
|
|
@@ -15364,7 +15364,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
15364
15364
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
15365
15365
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
15366
15366
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
15367
|
-
}>, _id: Entity) => void;
|
|
15367
|
+
}, {} & {}>, _id: Entity) => void;
|
|
15368
15368
|
readonly updateBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
15369
15369
|
readonly districtType: {
|
|
15370
15370
|
readonly type: "string";
|
|
@@ -15522,7 +15522,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
15522
15522
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
15523
15523
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
15524
15524
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
15525
|
-
}>, _input: {
|
|
15525
|
+
}, {} & {}>, _input: {
|
|
15526
15526
|
id: Entity;
|
|
15527
15527
|
} & Partial<{
|
|
15528
15528
|
positionX: number;
|
|
@@ -15685,7 +15685,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
15685
15685
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
15686
15686
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
15687
15687
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
15688
|
-
}>, _input: {
|
|
15688
|
+
}, {} & {}>, _input: {
|
|
15689
15689
|
entityId: Entity;
|
|
15690
15690
|
userId: string;
|
|
15691
15691
|
}) => void;
|
|
@@ -15846,7 +15846,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
15846
15846
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
15847
15847
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
15848
15848
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
15849
|
-
}>, _input: {
|
|
15849
|
+
}, {} & {}>, _input: {
|
|
15850
15850
|
entityId: Entity;
|
|
15851
15851
|
userId: string;
|
|
15852
15852
|
}) => void;
|
|
@@ -16007,7 +16007,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
16007
16007
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
16008
16008
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
16009
16009
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
16010
|
-
}>, _input: {
|
|
16010
|
+
}, {} & {}>, _input: {
|
|
16011
16011
|
entityId: Entity;
|
|
16012
16012
|
userId: string;
|
|
16013
16013
|
}) => void;
|
|
@@ -16168,7 +16168,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
16168
16168
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
16169
16169
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
16170
16170
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
16171
|
-
}>, _input: {
|
|
16171
|
+
}, {} & {}>, _input: {
|
|
16172
16172
|
deltaUnits: number;
|
|
16173
16173
|
}) => void;
|
|
16174
16174
|
readonly setCursorTime: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -16328,7 +16328,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
16328
16328
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
16329
16329
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
16330
16330
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
16331
|
-
}>, _input: {
|
|
16331
|
+
}, {} & {}>, _input: {
|
|
16332
16332
|
time: number;
|
|
16333
16333
|
}) => void;
|
|
16334
16334
|
readonly setSimulationState: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -16488,7 +16488,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
16488
16488
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
16489
16489
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
16490
16490
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
16491
|
-
}>, _input: {
|
|
16491
|
+
}, {} & {}>, _input: {
|
|
16492
16492
|
state: string;
|
|
16493
16493
|
}) => void;
|
|
16494
16494
|
readonly setZoomLevel: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -16648,7 +16648,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
16648
16648
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
16649
16649
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
16650
16650
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
16651
|
-
}>, _input: {
|
|
16651
|
+
}, {} & {}>, _input: {
|
|
16652
16652
|
level: number;
|
|
16653
16653
|
}) => void;
|
|
16654
16654
|
readonly setDemolishTool: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -16808,7 +16808,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
16808
16808
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
16809
16809
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
16810
16810
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
16811
|
-
}>, _input: {
|
|
16811
|
+
}, {} & {}>, _input: {
|
|
16812
16812
|
active: boolean;
|
|
16813
16813
|
}) => void;
|
|
16814
16814
|
readonly setGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -16968,7 +16968,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
16968
16968
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
16969
16969
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
16970
16970
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
16971
|
-
}>, _input: {
|
|
16971
|
+
}, {} & {}>, _input: {
|
|
16972
16972
|
enabled: boolean;
|
|
16973
16973
|
}) => void;
|
|
16974
16974
|
readonly setActiveGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -17128,7 +17128,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
17128
17128
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
17129
17129
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
17130
17130
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
17131
|
-
}>, _input: {
|
|
17131
|
+
}, {} & {}>, _input: {
|
|
17132
17132
|
time: number | null;
|
|
17133
17133
|
}) => void;
|
|
17134
17134
|
readonly setCrossDistrictDrag: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -17288,7 +17288,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
17288
17288
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
17289
17289
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
17290
17290
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
17291
|
-
}>, _input: {
|
|
17291
|
+
}, {} & {}>, _input: {
|
|
17292
17292
|
active: boolean;
|
|
17293
17293
|
}) => void;
|
|
17294
17294
|
readonly clearCrossDistrictPreviews: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -17448,7 +17448,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
17448
17448
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
17449
17449
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
17450
17450
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
17451
|
-
}>) => void;
|
|
17451
|
+
}, {} & {}>) => void;
|
|
17452
17452
|
readonly resizeFreeformBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
17453
17453
|
readonly districtType: {
|
|
17454
17454
|
readonly type: "string";
|
|
@@ -17606,7 +17606,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
17606
17606
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
17607
17607
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
17608
17608
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
17609
|
-
}>, _input: {
|
|
17609
|
+
}, {} & {}>, _input: {
|
|
17610
17610
|
buildingId: Entity;
|
|
17611
17611
|
edge: "left" | "right";
|
|
17612
17612
|
deltaPx: number;
|
|
@@ -17768,7 +17768,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
17768
17768
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
17769
17769
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
17770
17770
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
17771
|
-
}>, _input: {
|
|
17771
|
+
}, {} & {}>, _input: {
|
|
17772
17772
|
buildingId: Entity;
|
|
17773
17773
|
edge: "left" | "right";
|
|
17774
17774
|
deltaPx: number;
|
|
@@ -17930,7 +17930,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
17930
17930
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
17931
17931
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
17932
17932
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
17933
|
-
}>, _input: {
|
|
17933
|
+
}, {} & {}>, _input: {
|
|
17934
17934
|
userId: string;
|
|
17935
17935
|
}) => void;
|
|
17936
17936
|
readonly deleteSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -18090,7 +18090,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
18090
18090
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
18091
18091
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
18092
18092
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
18093
|
-
}>, _input: {
|
|
18093
|
+
}, {} & {}>, _input: {
|
|
18094
18094
|
userId: string;
|
|
18095
18095
|
}) => void;
|
|
18096
18096
|
readonly toggleCondemned: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -18250,7 +18250,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
18250
18250
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
18251
18251
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
18252
18252
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
18253
|
-
}>, _input: {
|
|
18253
|
+
}, {} & {}>, _input: {
|
|
18254
18254
|
buildingId: Entity;
|
|
18255
18255
|
}) => void;
|
|
18256
18256
|
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -18410,7 +18410,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
18410
18410
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
18411
18411
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
18412
18412
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
18413
|
-
}>, _input: {
|
|
18413
|
+
}, {} & {}>, _input: {
|
|
18414
18414
|
userId: string;
|
|
18415
18415
|
}) => void;
|
|
18416
18416
|
readonly selectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -18570,7 +18570,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
18570
18570
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
18571
18571
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
18572
18572
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
18573
|
-
}>, _input: {
|
|
18573
|
+
}, {} & {}>, _input: {
|
|
18574
18574
|
userId: string;
|
|
18575
18575
|
}) => void;
|
|
18576
18576
|
readonly setSelectionFromIds: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -18730,7 +18730,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
18730
18730
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
18731
18731
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
18732
18732
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
18733
|
-
}>, _input: {
|
|
18733
|
+
}, {} & {}>, _input: {
|
|
18734
18734
|
entityIds: Entity[];
|
|
18735
18735
|
userId: string;
|
|
18736
18736
|
additive: boolean;
|
|
@@ -18892,7 +18892,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
18892
18892
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
18893
18893
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
18894
18894
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
18895
|
-
}>, _input: {
|
|
18895
|
+
}, {} & {}>, _input: {
|
|
18896
18896
|
userId: string;
|
|
18897
18897
|
edge: "left" | "right";
|
|
18898
18898
|
}) => void;
|
|
@@ -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,8 +19686,8 @@ 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>;
|
|
19690
|
-
}
|
|
19689
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
19690
|
+
}>, {} & {}>, { buildingId }: {
|
|
19691
19691
|
buildingId: Entity;
|
|
19692
19692
|
}) => Promise<void>;
|
|
19693
19693
|
readonly resizeBuilding: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -20005,7 +20005,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
20005
20005
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
20006
20006
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
20007
20007
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
20008
|
-
}>, _input: {
|
|
20008
|
+
}, {} & {}>, _input: {
|
|
20009
20009
|
districtType: string;
|
|
20010
20010
|
zoning: string;
|
|
20011
20011
|
}) => void;
|
|
@@ -20166,7 +20166,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
20166
20166
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
20167
20167
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
20168
20168
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
20169
|
-
}>, _id: Entity) => void;
|
|
20169
|
+
}, {} & {}>, _id: Entity) => void;
|
|
20170
20170
|
readonly createBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
20171
20171
|
readonly districtType: {
|
|
20172
20172
|
readonly type: "string";
|
|
@@ -20324,7 +20324,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
20324
20324
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
20325
20325
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
20326
20326
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
20327
|
-
}>, _input: {
|
|
20327
|
+
}, {} & {}>, _input: {
|
|
20328
20328
|
parentDistrict: Entity;
|
|
20329
20329
|
positionX: number;
|
|
20330
20330
|
}) => void;
|
|
@@ -20485,7 +20485,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
20485
20485
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
20486
20486
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
20487
20487
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
20488
|
-
}>, _id: Entity) => void;
|
|
20488
|
+
}, {} & {}>, _id: Entity) => void;
|
|
20489
20489
|
readonly updateBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
20490
20490
|
readonly districtType: {
|
|
20491
20491
|
readonly type: "string";
|
|
@@ -20643,7 +20643,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
20643
20643
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
20644
20644
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
20645
20645
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
20646
|
-
}>, _input: {
|
|
20646
|
+
}, {} & {}>, _input: {
|
|
20647
20647
|
id: Entity;
|
|
20648
20648
|
} & Partial<{
|
|
20649
20649
|
positionX: number;
|
|
@@ -20806,7 +20806,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
20806
20806
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
20807
20807
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
20808
20808
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
20809
|
-
}>, _input: {
|
|
20809
|
+
}, {} & {}>, _input: {
|
|
20810
20810
|
entityId: Entity;
|
|
20811
20811
|
userId: string;
|
|
20812
20812
|
}) => void;
|
|
@@ -20967,7 +20967,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
20967
20967
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
20968
20968
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
20969
20969
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
20970
|
-
}>, _input: {
|
|
20970
|
+
}, {} & {}>, _input: {
|
|
20971
20971
|
entityId: Entity;
|
|
20972
20972
|
userId: string;
|
|
20973
20973
|
}) => void;
|
|
@@ -21128,7 +21128,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
21128
21128
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
21129
21129
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
21130
21130
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
21131
|
-
}>, _input: {
|
|
21131
|
+
}, {} & {}>, _input: {
|
|
21132
21132
|
entityId: Entity;
|
|
21133
21133
|
userId: string;
|
|
21134
21134
|
}) => void;
|
|
@@ -21289,7 +21289,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
21289
21289
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
21290
21290
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
21291
21291
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
21292
|
-
}>, _input: {
|
|
21292
|
+
}, {} & {}>, _input: {
|
|
21293
21293
|
deltaUnits: number;
|
|
21294
21294
|
}) => void;
|
|
21295
21295
|
readonly setCursorTime: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -21449,7 +21449,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
21449
21449
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
21450
21450
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
21451
21451
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
21452
|
-
}>, _input: {
|
|
21452
|
+
}, {} & {}>, _input: {
|
|
21453
21453
|
time: number;
|
|
21454
21454
|
}) => void;
|
|
21455
21455
|
readonly setSimulationState: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -21609,7 +21609,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
21609
21609
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
21610
21610
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
21611
21611
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
21612
|
-
}>, _input: {
|
|
21612
|
+
}, {} & {}>, _input: {
|
|
21613
21613
|
state: string;
|
|
21614
21614
|
}) => void;
|
|
21615
21615
|
readonly setZoomLevel: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -21769,7 +21769,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
21769
21769
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
21770
21770
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
21771
21771
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
21772
|
-
}>, _input: {
|
|
21772
|
+
}, {} & {}>, _input: {
|
|
21773
21773
|
level: number;
|
|
21774
21774
|
}) => void;
|
|
21775
21775
|
readonly setDemolishTool: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -21929,7 +21929,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
21929
21929
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
21930
21930
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
21931
21931
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
21932
|
-
}>, _input: {
|
|
21932
|
+
}, {} & {}>, _input: {
|
|
21933
21933
|
active: boolean;
|
|
21934
21934
|
}) => void;
|
|
21935
21935
|
readonly setGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -22089,7 +22089,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
22089
22089
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
22090
22090
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
22091
22091
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
22092
|
-
}>, _input: {
|
|
22092
|
+
}, {} & {}>, _input: {
|
|
22093
22093
|
enabled: boolean;
|
|
22094
22094
|
}) => void;
|
|
22095
22095
|
readonly setActiveGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -22249,7 +22249,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
22249
22249
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
22250
22250
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
22251
22251
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
22252
|
-
}>, _input: {
|
|
22252
|
+
}, {} & {}>, _input: {
|
|
22253
22253
|
time: number | null;
|
|
22254
22254
|
}) => void;
|
|
22255
22255
|
readonly setCrossDistrictDrag: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -22409,7 +22409,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
22409
22409
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
22410
22410
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
22411
22411
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
22412
|
-
}>, _input: {
|
|
22412
|
+
}, {} & {}>, _input: {
|
|
22413
22413
|
active: boolean;
|
|
22414
22414
|
}) => void;
|
|
22415
22415
|
readonly clearCrossDistrictPreviews: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -22569,7 +22569,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
22569
22569
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
22570
22570
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
22571
22571
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
22572
|
-
}>) => void;
|
|
22572
|
+
}, {} & {}>) => void;
|
|
22573
22573
|
readonly resizeFreeformBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
22574
22574
|
readonly districtType: {
|
|
22575
22575
|
readonly type: "string";
|
|
@@ -22727,7 +22727,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
22727
22727
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
22728
22728
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
22729
22729
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
22730
|
-
}>, _input: {
|
|
22730
|
+
}, {} & {}>, _input: {
|
|
22731
22731
|
buildingId: Entity;
|
|
22732
22732
|
edge: "left" | "right";
|
|
22733
22733
|
deltaPx: number;
|
|
@@ -22889,7 +22889,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
22889
22889
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
22890
22890
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
22891
22891
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
22892
|
-
}>, _input: {
|
|
22892
|
+
}, {} & {}>, _input: {
|
|
22893
22893
|
buildingId: Entity;
|
|
22894
22894
|
edge: "left" | "right";
|
|
22895
22895
|
deltaPx: number;
|
|
@@ -23051,7 +23051,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
23051
23051
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
23052
23052
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
23053
23053
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
23054
|
-
}>, _input: {
|
|
23054
|
+
}, {} & {}>, _input: {
|
|
23055
23055
|
userId: string;
|
|
23056
23056
|
}) => void;
|
|
23057
23057
|
readonly deleteSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -23211,7 +23211,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
23211
23211
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
23212
23212
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
23213
23213
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
23214
|
-
}>, _input: {
|
|
23214
|
+
}, {} & {}>, _input: {
|
|
23215
23215
|
userId: string;
|
|
23216
23216
|
}) => void;
|
|
23217
23217
|
readonly toggleCondemned: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -23371,7 +23371,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
23371
23371
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
23372
23372
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
23373
23373
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
23374
|
-
}>, _input: {
|
|
23374
|
+
}, {} & {}>, _input: {
|
|
23375
23375
|
buildingId: Entity;
|
|
23376
23376
|
}) => void;
|
|
23377
23377
|
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -23531,7 +23531,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
23531
23531
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
23532
23532
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
23533
23533
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
23534
|
-
}>, _input: {
|
|
23534
|
+
}, {} & {}>, _input: {
|
|
23535
23535
|
userId: string;
|
|
23536
23536
|
}) => void;
|
|
23537
23537
|
readonly selectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -23691,7 +23691,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
23691
23691
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
23692
23692
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
23693
23693
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
23694
|
-
}>, _input: {
|
|
23694
|
+
}, {} & {}>, _input: {
|
|
23695
23695
|
userId: string;
|
|
23696
23696
|
}) => void;
|
|
23697
23697
|
readonly setSelectionFromIds: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -23851,7 +23851,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
23851
23851
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
23852
23852
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
23853
23853
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
23854
|
-
}>, _input: {
|
|
23854
|
+
}, {} & {}>, _input: {
|
|
23855
23855
|
entityIds: Entity[];
|
|
23856
23856
|
userId: string;
|
|
23857
23857
|
additive: boolean;
|
|
@@ -24013,7 +24013,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
24013
24013
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
24014
24014
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
24015
24015
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
24016
|
-
}>, _input: {
|
|
24016
|
+
}, {} & {}>, _input: {
|
|
24017
24017
|
userId: string;
|
|
24018
24018
|
edge: "left" | "right";
|
|
24019
24019
|
}) => 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,8 +24807,8 @@ 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>;
|
|
24811
|
-
}
|
|
24810
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
24811
|
+
}>, {} & {}>, { buildingId, edge }: {
|
|
24812
24812
|
buildingId: Entity;
|
|
24813
24813
|
edge: "left" | "right";
|
|
24814
24814
|
}) => Promise<void>;
|
|
@@ -25127,7 +25127,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
25127
25127
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
25128
25128
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
25129
25129
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
25130
|
-
}>, _input: {
|
|
25130
|
+
}, {} & {}>, _input: {
|
|
25131
25131
|
districtType: string;
|
|
25132
25132
|
zoning: string;
|
|
25133
25133
|
}) => void;
|
|
@@ -25288,7 +25288,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
25288
25288
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
25289
25289
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
25290
25290
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
25291
|
-
}>, _id: Entity) => void;
|
|
25291
|
+
}, {} & {}>, _id: Entity) => void;
|
|
25292
25292
|
readonly createBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
25293
25293
|
readonly districtType: {
|
|
25294
25294
|
readonly type: "string";
|
|
@@ -25446,7 +25446,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
25446
25446
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
25447
25447
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
25448
25448
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
25449
|
-
}>, _input: {
|
|
25449
|
+
}, {} & {}>, _input: {
|
|
25450
25450
|
parentDistrict: Entity;
|
|
25451
25451
|
positionX: number;
|
|
25452
25452
|
}) => void;
|
|
@@ -25607,7 +25607,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
25607
25607
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
25608
25608
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
25609
25609
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
25610
|
-
}>, _id: Entity) => void;
|
|
25610
|
+
}, {} & {}>, _id: Entity) => void;
|
|
25611
25611
|
readonly updateBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
25612
25612
|
readonly districtType: {
|
|
25613
25613
|
readonly type: "string";
|
|
@@ -25765,7 +25765,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
25765
25765
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
25766
25766
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
25767
25767
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
25768
|
-
}>, _input: {
|
|
25768
|
+
}, {} & {}>, _input: {
|
|
25769
25769
|
id: Entity;
|
|
25770
25770
|
} & Partial<{
|
|
25771
25771
|
positionX: number;
|
|
@@ -25928,7 +25928,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
25928
25928
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
25929
25929
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
25930
25930
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
25931
|
-
}>, _input: {
|
|
25931
|
+
}, {} & {}>, _input: {
|
|
25932
25932
|
entityId: Entity;
|
|
25933
25933
|
userId: string;
|
|
25934
25934
|
}) => void;
|
|
@@ -26089,7 +26089,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
26089
26089
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
26090
26090
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
26091
26091
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
26092
|
-
}>, _input: {
|
|
26092
|
+
}, {} & {}>, _input: {
|
|
26093
26093
|
entityId: Entity;
|
|
26094
26094
|
userId: string;
|
|
26095
26095
|
}) => void;
|
|
@@ -26250,7 +26250,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
26250
26250
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
26251
26251
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
26252
26252
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
26253
|
-
}>, _input: {
|
|
26253
|
+
}, {} & {}>, _input: {
|
|
26254
26254
|
entityId: Entity;
|
|
26255
26255
|
userId: string;
|
|
26256
26256
|
}) => void;
|
|
@@ -26411,7 +26411,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
26411
26411
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
26412
26412
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
26413
26413
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
26414
|
-
}>, _input: {
|
|
26414
|
+
}, {} & {}>, _input: {
|
|
26415
26415
|
deltaUnits: number;
|
|
26416
26416
|
}) => void;
|
|
26417
26417
|
readonly setCursorTime: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -26571,7 +26571,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
26571
26571
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
26572
26572
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
26573
26573
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
26574
|
-
}>, _input: {
|
|
26574
|
+
}, {} & {}>, _input: {
|
|
26575
26575
|
time: number;
|
|
26576
26576
|
}) => void;
|
|
26577
26577
|
readonly setSimulationState: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -26731,7 +26731,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
26731
26731
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
26732
26732
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
26733
26733
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
26734
|
-
}>, _input: {
|
|
26734
|
+
}, {} & {}>, _input: {
|
|
26735
26735
|
state: string;
|
|
26736
26736
|
}) => void;
|
|
26737
26737
|
readonly setZoomLevel: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -26891,7 +26891,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
26891
26891
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
26892
26892
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
26893
26893
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
26894
|
-
}>, _input: {
|
|
26894
|
+
}, {} & {}>, _input: {
|
|
26895
26895
|
level: number;
|
|
26896
26896
|
}) => void;
|
|
26897
26897
|
readonly setDemolishTool: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -27051,7 +27051,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
27051
27051
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
27052
27052
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
27053
27053
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
27054
|
-
}>, _input: {
|
|
27054
|
+
}, {} & {}>, _input: {
|
|
27055
27055
|
active: boolean;
|
|
27056
27056
|
}) => void;
|
|
27057
27057
|
readonly setGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -27211,7 +27211,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
27211
27211
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
27212
27212
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
27213
27213
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
27214
|
-
}>, _input: {
|
|
27214
|
+
}, {} & {}>, _input: {
|
|
27215
27215
|
enabled: boolean;
|
|
27216
27216
|
}) => void;
|
|
27217
27217
|
readonly setActiveGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -27371,7 +27371,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
27371
27371
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
27372
27372
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
27373
27373
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
27374
|
-
}>, _input: {
|
|
27374
|
+
}, {} & {}>, _input: {
|
|
27375
27375
|
time: number | null;
|
|
27376
27376
|
}) => void;
|
|
27377
27377
|
readonly setCrossDistrictDrag: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -27531,7 +27531,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
27531
27531
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
27532
27532
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
27533
27533
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
27534
|
-
}>, _input: {
|
|
27534
|
+
}, {} & {}>, _input: {
|
|
27535
27535
|
active: boolean;
|
|
27536
27536
|
}) => void;
|
|
27537
27537
|
readonly clearCrossDistrictPreviews: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -27691,7 +27691,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
27691
27691
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
27692
27692
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
27693
27693
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
27694
|
-
}>) => void;
|
|
27694
|
+
}, {} & {}>) => void;
|
|
27695
27695
|
readonly resizeFreeformBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
27696
27696
|
readonly districtType: {
|
|
27697
27697
|
readonly type: "string";
|
|
@@ -27849,7 +27849,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
27849
27849
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
27850
27850
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
27851
27851
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
27852
|
-
}>, _input: {
|
|
27852
|
+
}, {} & {}>, _input: {
|
|
27853
27853
|
buildingId: Entity;
|
|
27854
27854
|
edge: "left" | "right";
|
|
27855
27855
|
deltaPx: number;
|
|
@@ -28011,7 +28011,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
28011
28011
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
28012
28012
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
28013
28013
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
28014
|
-
}>, _input: {
|
|
28014
|
+
}, {} & {}>, _input: {
|
|
28015
28015
|
buildingId: Entity;
|
|
28016
28016
|
edge: "left" | "right";
|
|
28017
28017
|
deltaPx: number;
|
|
@@ -28173,7 +28173,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
28173
28173
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
28174
28174
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
28175
28175
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
28176
|
-
}>, _input: {
|
|
28176
|
+
}, {} & {}>, _input: {
|
|
28177
28177
|
userId: string;
|
|
28178
28178
|
}) => void;
|
|
28179
28179
|
readonly deleteSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -28333,7 +28333,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
28333
28333
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
28334
28334
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
28335
28335
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
28336
|
-
}>, _input: {
|
|
28336
|
+
}, {} & {}>, _input: {
|
|
28337
28337
|
userId: string;
|
|
28338
28338
|
}) => void;
|
|
28339
28339
|
readonly toggleCondemned: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -28493,7 +28493,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
28493
28493
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
28494
28494
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
28495
28495
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
28496
|
-
}>, _input: {
|
|
28496
|
+
}, {} & {}>, _input: {
|
|
28497
28497
|
buildingId: Entity;
|
|
28498
28498
|
}) => void;
|
|
28499
28499
|
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -28653,7 +28653,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
28653
28653
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
28654
28654
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
28655
28655
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
28656
|
-
}>, _input: {
|
|
28656
|
+
}, {} & {}>, _input: {
|
|
28657
28657
|
userId: string;
|
|
28658
28658
|
}) => void;
|
|
28659
28659
|
readonly selectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -28813,7 +28813,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
28813
28813
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
28814
28814
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
28815
28815
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
28816
|
-
}>, _input: {
|
|
28816
|
+
}, {} & {}>, _input: {
|
|
28817
28817
|
userId: string;
|
|
28818
28818
|
}) => void;
|
|
28819
28819
|
readonly setSelectionFromIds: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -28973,7 +28973,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
28973
28973
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
28974
28974
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
28975
28975
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
28976
|
-
}>, _input: {
|
|
28976
|
+
}, {} & {}>, _input: {
|
|
28977
28977
|
entityIds: Entity[];
|
|
28978
28978
|
userId: string;
|
|
28979
28979
|
additive: boolean;
|
|
@@ -29135,7 +29135,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
29135
29135
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
29136
29136
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
29137
29137
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
29138
|
-
}>, _input: {
|
|
29138
|
+
}, {} & {}>, _input: {
|
|
29139
29139
|
userId: string;
|
|
29140
29140
|
edge: "left" | "right";
|
|
29141
29141
|
}) => void;
|
|
@@ -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,8 +29929,8 @@ 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>;
|
|
29933
|
-
}
|
|
29932
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
29933
|
+
}>, {} & {}>, delta: number) => Promise<void>;
|
|
29934
29934
|
readonly stepTicks: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
29935
29935
|
readonly districtType: {
|
|
29936
29936
|
readonly type: "string";
|
|
@@ -30246,7 +30246,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
30246
30246
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
30247
30247
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
30248
30248
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
30249
|
-
}>, _input: {
|
|
30249
|
+
}, {} & {}>, _input: {
|
|
30250
30250
|
districtType: string;
|
|
30251
30251
|
zoning: string;
|
|
30252
30252
|
}) => void;
|
|
@@ -30407,7 +30407,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
30407
30407
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
30408
30408
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
30409
30409
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
30410
|
-
}>, _id: Entity) => void;
|
|
30410
|
+
}, {} & {}>, _id: Entity) => void;
|
|
30411
30411
|
readonly createBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
30412
30412
|
readonly districtType: {
|
|
30413
30413
|
readonly type: "string";
|
|
@@ -30565,7 +30565,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
30565
30565
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
30566
30566
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
30567
30567
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
30568
|
-
}>, _input: {
|
|
30568
|
+
}, {} & {}>, _input: {
|
|
30569
30569
|
parentDistrict: Entity;
|
|
30570
30570
|
positionX: number;
|
|
30571
30571
|
}) => void;
|
|
@@ -30726,7 +30726,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
30726
30726
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
30727
30727
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
30728
30728
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
30729
|
-
}>, _id: Entity) => void;
|
|
30729
|
+
}, {} & {}>, _id: Entity) => void;
|
|
30730
30730
|
readonly updateBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
30731
30731
|
readonly districtType: {
|
|
30732
30732
|
readonly type: "string";
|
|
@@ -30884,7 +30884,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
30884
30884
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
30885
30885
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
30886
30886
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
30887
|
-
}>, _input: {
|
|
30887
|
+
}, {} & {}>, _input: {
|
|
30888
30888
|
id: Entity;
|
|
30889
30889
|
} & Partial<{
|
|
30890
30890
|
positionX: number;
|
|
@@ -31047,7 +31047,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
31047
31047
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
31048
31048
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
31049
31049
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
31050
|
-
}>, _input: {
|
|
31050
|
+
}, {} & {}>, _input: {
|
|
31051
31051
|
entityId: Entity;
|
|
31052
31052
|
userId: string;
|
|
31053
31053
|
}) => void;
|
|
@@ -31208,7 +31208,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
31208
31208
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
31209
31209
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
31210
31210
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
31211
|
-
}>, _input: {
|
|
31211
|
+
}, {} & {}>, _input: {
|
|
31212
31212
|
entityId: Entity;
|
|
31213
31213
|
userId: string;
|
|
31214
31214
|
}) => void;
|
|
@@ -31369,7 +31369,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
31369
31369
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
31370
31370
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
31371
31371
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
31372
|
-
}>, _input: {
|
|
31372
|
+
}, {} & {}>, _input: {
|
|
31373
31373
|
entityId: Entity;
|
|
31374
31374
|
userId: string;
|
|
31375
31375
|
}) => void;
|
|
@@ -31530,7 +31530,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
31530
31530
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
31531
31531
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
31532
31532
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
31533
|
-
}>, _input: {
|
|
31533
|
+
}, {} & {}>, _input: {
|
|
31534
31534
|
deltaUnits: number;
|
|
31535
31535
|
}) => void;
|
|
31536
31536
|
readonly setCursorTime: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -31690,7 +31690,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
31690
31690
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
31691
31691
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
31692
31692
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
31693
|
-
}>, _input: {
|
|
31693
|
+
}, {} & {}>, _input: {
|
|
31694
31694
|
time: number;
|
|
31695
31695
|
}) => void;
|
|
31696
31696
|
readonly setSimulationState: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -31850,7 +31850,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
31850
31850
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
31851
31851
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
31852
31852
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
31853
|
-
}>, _input: {
|
|
31853
|
+
}, {} & {}>, _input: {
|
|
31854
31854
|
state: string;
|
|
31855
31855
|
}) => void;
|
|
31856
31856
|
readonly setZoomLevel: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -32010,7 +32010,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
32010
32010
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
32011
32011
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
32012
32012
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
32013
|
-
}>, _input: {
|
|
32013
|
+
}, {} & {}>, _input: {
|
|
32014
32014
|
level: number;
|
|
32015
32015
|
}) => void;
|
|
32016
32016
|
readonly setDemolishTool: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -32170,7 +32170,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
32170
32170
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
32171
32171
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
32172
32172
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
32173
|
-
}>, _input: {
|
|
32173
|
+
}, {} & {}>, _input: {
|
|
32174
32174
|
active: boolean;
|
|
32175
32175
|
}) => void;
|
|
32176
32176
|
readonly setGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -32330,7 +32330,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
32330
32330
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
32331
32331
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
32332
32332
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
32333
|
-
}>, _input: {
|
|
32333
|
+
}, {} & {}>, _input: {
|
|
32334
32334
|
enabled: boolean;
|
|
32335
32335
|
}) => void;
|
|
32336
32336
|
readonly setActiveGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -32490,7 +32490,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
32490
32490
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
32491
32491
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
32492
32492
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
32493
|
-
}>, _input: {
|
|
32493
|
+
}, {} & {}>, _input: {
|
|
32494
32494
|
time: number | null;
|
|
32495
32495
|
}) => void;
|
|
32496
32496
|
readonly setCrossDistrictDrag: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -32650,7 +32650,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
32650
32650
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
32651
32651
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
32652
32652
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
32653
|
-
}>, _input: {
|
|
32653
|
+
}, {} & {}>, _input: {
|
|
32654
32654
|
active: boolean;
|
|
32655
32655
|
}) => void;
|
|
32656
32656
|
readonly clearCrossDistrictPreviews: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -32810,7 +32810,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
32810
32810
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
32811
32811
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
32812
32812
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
32813
|
-
}>) => void;
|
|
32813
|
+
}, {} & {}>) => void;
|
|
32814
32814
|
readonly resizeFreeformBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
32815
32815
|
readonly districtType: {
|
|
32816
32816
|
readonly type: "string";
|
|
@@ -32968,7 +32968,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
32968
32968
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
32969
32969
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
32970
32970
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
32971
|
-
}>, _input: {
|
|
32971
|
+
}, {} & {}>, _input: {
|
|
32972
32972
|
buildingId: Entity;
|
|
32973
32973
|
edge: "left" | "right";
|
|
32974
32974
|
deltaPx: number;
|
|
@@ -33130,7 +33130,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
33130
33130
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
33131
33131
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
33132
33132
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
33133
|
-
}>, _input: {
|
|
33133
|
+
}, {} & {}>, _input: {
|
|
33134
33134
|
buildingId: Entity;
|
|
33135
33135
|
edge: "left" | "right";
|
|
33136
33136
|
deltaPx: number;
|
|
@@ -33292,7 +33292,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
33292
33292
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
33293
33293
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
33294
33294
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
33295
|
-
}>, _input: {
|
|
33295
|
+
}, {} & {}>, _input: {
|
|
33296
33296
|
userId: string;
|
|
33297
33297
|
}) => void;
|
|
33298
33298
|
readonly deleteSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -33452,7 +33452,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
33452
33452
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
33453
33453
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
33454
33454
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
33455
|
-
}>, _input: {
|
|
33455
|
+
}, {} & {}>, _input: {
|
|
33456
33456
|
userId: string;
|
|
33457
33457
|
}) => void;
|
|
33458
33458
|
readonly toggleCondemned: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -33612,7 +33612,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
33612
33612
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
33613
33613
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
33614
33614
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
33615
|
-
}>, _input: {
|
|
33615
|
+
}, {} & {}>, _input: {
|
|
33616
33616
|
buildingId: Entity;
|
|
33617
33617
|
}) => void;
|
|
33618
33618
|
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -33772,7 +33772,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
33772
33772
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
33773
33773
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
33774
33774
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
33775
|
-
}>, _input: {
|
|
33775
|
+
}, {} & {}>, _input: {
|
|
33776
33776
|
userId: string;
|
|
33777
33777
|
}) => void;
|
|
33778
33778
|
readonly selectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -33932,7 +33932,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
33932
33932
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
33933
33933
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
33934
33934
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
33935
|
-
}>, _input: {
|
|
33935
|
+
}, {} & {}>, _input: {
|
|
33936
33936
|
userId: string;
|
|
33937
33937
|
}) => void;
|
|
33938
33938
|
readonly setSelectionFromIds: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -34092,7 +34092,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
34092
34092
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
34093
34093
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
34094
34094
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
34095
|
-
}>, _input: {
|
|
34095
|
+
}, {} & {}>, _input: {
|
|
34096
34096
|
entityIds: Entity[];
|
|
34097
34097
|
userId: string;
|
|
34098
34098
|
additive: boolean;
|
|
@@ -34254,7 +34254,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
34254
34254
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
34255
34255
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
34256
34256
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
34257
|
-
}>, _input: {
|
|
34257
|
+
}, {} & {}>, _input: {
|
|
34258
34258
|
userId: string;
|
|
34259
34259
|
edge: "left" | "right";
|
|
34260
34260
|
}) => void;
|
|
@@ -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,8 +35048,8 @@ 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>;
|
|
35052
|
-
}
|
|
35051
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
35052
|
+
}>, {} & {}>, count: number) => Promise<void>;
|
|
35053
35053
|
readonly jumpToStart: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
35054
35054
|
readonly districtType: {
|
|
35055
35055
|
readonly type: "string";
|
|
@@ -35365,7 +35365,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
35365
35365
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
35366
35366
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
35367
35367
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
35368
|
-
}>, _input: {
|
|
35368
|
+
}, {} & {}>, _input: {
|
|
35369
35369
|
districtType: string;
|
|
35370
35370
|
zoning: string;
|
|
35371
35371
|
}) => void;
|
|
@@ -35526,7 +35526,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
35526
35526
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
35527
35527
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
35528
35528
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
35529
|
-
}>, _id: Entity) => void;
|
|
35529
|
+
}, {} & {}>, _id: Entity) => void;
|
|
35530
35530
|
readonly createBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
35531
35531
|
readonly districtType: {
|
|
35532
35532
|
readonly type: "string";
|
|
@@ -35684,7 +35684,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
35684
35684
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
35685
35685
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
35686
35686
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
35687
|
-
}>, _input: {
|
|
35687
|
+
}, {} & {}>, _input: {
|
|
35688
35688
|
parentDistrict: Entity;
|
|
35689
35689
|
positionX: number;
|
|
35690
35690
|
}) => void;
|
|
@@ -35845,7 +35845,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
35845
35845
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
35846
35846
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
35847
35847
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
35848
|
-
}>, _id: Entity) => void;
|
|
35848
|
+
}, {} & {}>, _id: Entity) => void;
|
|
35849
35849
|
readonly updateBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
35850
35850
|
readonly districtType: {
|
|
35851
35851
|
readonly type: "string";
|
|
@@ -36003,7 +36003,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
36003
36003
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
36004
36004
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
36005
36005
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
36006
|
-
}>, _input: {
|
|
36006
|
+
}, {} & {}>, _input: {
|
|
36007
36007
|
id: Entity;
|
|
36008
36008
|
} & Partial<{
|
|
36009
36009
|
positionX: number;
|
|
@@ -36166,7 +36166,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
36166
36166
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
36167
36167
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
36168
36168
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
36169
|
-
}>, _input: {
|
|
36169
|
+
}, {} & {}>, _input: {
|
|
36170
36170
|
entityId: Entity;
|
|
36171
36171
|
userId: string;
|
|
36172
36172
|
}) => void;
|
|
@@ -36327,7 +36327,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
36327
36327
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
36328
36328
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
36329
36329
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
36330
|
-
}>, _input: {
|
|
36330
|
+
}, {} & {}>, _input: {
|
|
36331
36331
|
entityId: Entity;
|
|
36332
36332
|
userId: string;
|
|
36333
36333
|
}) => void;
|
|
@@ -36488,7 +36488,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
36488
36488
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
36489
36489
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
36490
36490
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
36491
|
-
}>, _input: {
|
|
36491
|
+
}, {} & {}>, _input: {
|
|
36492
36492
|
entityId: Entity;
|
|
36493
36493
|
userId: string;
|
|
36494
36494
|
}) => void;
|
|
@@ -36649,7 +36649,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
36649
36649
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
36650
36650
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
36651
36651
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
36652
|
-
}>, _input: {
|
|
36652
|
+
}, {} & {}>, _input: {
|
|
36653
36653
|
deltaUnits: number;
|
|
36654
36654
|
}) => void;
|
|
36655
36655
|
readonly setCursorTime: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -36809,7 +36809,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
36809
36809
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
36810
36810
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
36811
36811
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
36812
|
-
}>, _input: {
|
|
36812
|
+
}, {} & {}>, _input: {
|
|
36813
36813
|
time: number;
|
|
36814
36814
|
}) => void;
|
|
36815
36815
|
readonly setSimulationState: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -36969,7 +36969,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
36969
36969
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
36970
36970
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
36971
36971
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
36972
|
-
}>, _input: {
|
|
36972
|
+
}, {} & {}>, _input: {
|
|
36973
36973
|
state: string;
|
|
36974
36974
|
}) => void;
|
|
36975
36975
|
readonly setZoomLevel: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -37129,7 +37129,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
37129
37129
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
37130
37130
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
37131
37131
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
37132
|
-
}>, _input: {
|
|
37132
|
+
}, {} & {}>, _input: {
|
|
37133
37133
|
level: number;
|
|
37134
37134
|
}) => void;
|
|
37135
37135
|
readonly setDemolishTool: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -37289,7 +37289,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
37289
37289
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
37290
37290
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
37291
37291
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
37292
|
-
}>, _input: {
|
|
37292
|
+
}, {} & {}>, _input: {
|
|
37293
37293
|
active: boolean;
|
|
37294
37294
|
}) => void;
|
|
37295
37295
|
readonly setGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -37449,7 +37449,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
37449
37449
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
37450
37450
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
37451
37451
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
37452
|
-
}>, _input: {
|
|
37452
|
+
}, {} & {}>, _input: {
|
|
37453
37453
|
enabled: boolean;
|
|
37454
37454
|
}) => void;
|
|
37455
37455
|
readonly setActiveGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -37609,7 +37609,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
37609
37609
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
37610
37610
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
37611
37611
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
37612
|
-
}>, _input: {
|
|
37612
|
+
}, {} & {}>, _input: {
|
|
37613
37613
|
time: number | null;
|
|
37614
37614
|
}) => void;
|
|
37615
37615
|
readonly setCrossDistrictDrag: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -37769,7 +37769,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
37769
37769
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
37770
37770
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
37771
37771
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
37772
|
-
}>, _input: {
|
|
37772
|
+
}, {} & {}>, _input: {
|
|
37773
37773
|
active: boolean;
|
|
37774
37774
|
}) => void;
|
|
37775
37775
|
readonly clearCrossDistrictPreviews: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -37929,7 +37929,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
37929
37929
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
37930
37930
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
37931
37931
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
37932
|
-
}>) => void;
|
|
37932
|
+
}, {} & {}>) => void;
|
|
37933
37933
|
readonly resizeFreeformBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
37934
37934
|
readonly districtType: {
|
|
37935
37935
|
readonly type: "string";
|
|
@@ -38087,7 +38087,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
38087
38087
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
38088
38088
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
38089
38089
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
38090
|
-
}>, _input: {
|
|
38090
|
+
}, {} & {}>, _input: {
|
|
38091
38091
|
buildingId: Entity;
|
|
38092
38092
|
edge: "left" | "right";
|
|
38093
38093
|
deltaPx: number;
|
|
@@ -38249,7 +38249,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
38249
38249
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
38250
38250
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
38251
38251
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
38252
|
-
}>, _input: {
|
|
38252
|
+
}, {} & {}>, _input: {
|
|
38253
38253
|
buildingId: Entity;
|
|
38254
38254
|
edge: "left" | "right";
|
|
38255
38255
|
deltaPx: number;
|
|
@@ -38411,7 +38411,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
38411
38411
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
38412
38412
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
38413
38413
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
38414
|
-
}>, _input: {
|
|
38414
|
+
}, {} & {}>, _input: {
|
|
38415
38415
|
userId: string;
|
|
38416
38416
|
}) => void;
|
|
38417
38417
|
readonly deleteSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -38571,7 +38571,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
38571
38571
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
38572
38572
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
38573
38573
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
38574
|
-
}>, _input: {
|
|
38574
|
+
}, {} & {}>, _input: {
|
|
38575
38575
|
userId: string;
|
|
38576
38576
|
}) => void;
|
|
38577
38577
|
readonly toggleCondemned: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -38731,7 +38731,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
38731
38731
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
38732
38732
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
38733
38733
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
38734
|
-
}>, _input: {
|
|
38734
|
+
}, {} & {}>, _input: {
|
|
38735
38735
|
buildingId: Entity;
|
|
38736
38736
|
}) => void;
|
|
38737
38737
|
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -38891,7 +38891,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
38891
38891
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
38892
38892
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
38893
38893
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
38894
|
-
}>, _input: {
|
|
38894
|
+
}, {} & {}>, _input: {
|
|
38895
38895
|
userId: string;
|
|
38896
38896
|
}) => void;
|
|
38897
38897
|
readonly selectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -39051,7 +39051,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
39051
39051
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
39052
39052
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
39053
39053
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
39054
|
-
}>, _input: {
|
|
39054
|
+
}, {} & {}>, _input: {
|
|
39055
39055
|
userId: string;
|
|
39056
39056
|
}) => void;
|
|
39057
39057
|
readonly setSelectionFromIds: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
@@ -39211,7 +39211,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
39211
39211
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
39212
39212
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
39213
39213
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
39214
|
-
}>, _input: {
|
|
39214
|
+
}, {} & {}>, _input: {
|
|
39215
39215
|
entityIds: Entity[];
|
|
39216
39216
|
userId: string;
|
|
39217
39217
|
additive: boolean;
|
|
@@ -39373,7 +39373,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
39373
39373
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
39374
39374
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
39375
39375
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
39376
|
-
}>, _input: {
|
|
39376
|
+
}, {} & {}>, _input: {
|
|
39377
39377
|
userId: string;
|
|
39378
39378
|
edge: "left" | "right";
|
|
39379
39379
|
}) => void;
|
|
@@ -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,8 +40167,8 @@ 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>;
|
|
40171
|
-
}
|
|
40170
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
40171
|
+
}>, {} & {}>) => Promise<void>;
|
|
40172
40172
|
}, {}, {
|
|
40173
40173
|
readonly districts: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
40174
40174
|
readonly districtType: {
|
|
@@ -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>;
|
|
40963
|
-
}>>;
|
|
40962
|
+
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {}>) => Observe<number>;
|
|
40963
|
+
}, {}>>;
|