@adobe/data 0.9.55 → 0.9.57
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/cache/blob-store.js +12 -7
- package/dist/cache/blob-store.js.map +1 -1
- package/dist/data.d.ts +1 -1
- package/dist/ecs/database/database.d.ts +50 -1
- package/dist/ecs/database/database.js.map +1 -1
- package/dist/ecs/database/database.reset.test.js +200 -0
- package/dist/ecs/database/database.reset.test.js.map +1 -0
- package/dist/ecs/database/deep-extends-chain.type-test.d.ts +208 -208
- package/dist/ecs/database/observed/create-observed-database.js +4 -0
- package/dist/ecs/database/observed/create-observed-database.js.map +1 -1
- package/dist/ecs/database/observed/observed-database.d.ts +5 -3
- package/dist/ecs/database/public/create-database.d.ts +32 -3
- package/dist/ecs/database/public/create-database.js +12 -69
- package/dist/ecs/database/public/create-database.js.map +1 -1
- package/dist/ecs/database/public/create-database.test.js +91 -5
- package/dist/ecs/database/public/create-database.test.js.map +1 -1
- package/dist/ecs/database/public/create-transaction-dispatcher.d.ts +60 -0
- package/dist/ecs/database/public/create-transaction-dispatcher.js +119 -0
- package/dist/ecs/database/public/create-transaction-dispatcher.js.map +1 -0
- package/dist/ecs/database/reconciling/create-reconciling-database.js +52 -18
- package/dist/ecs/database/reconciling/create-reconciling-database.js.map +1 -1
- package/dist/ecs/database/reconciling/create-reconciling-database.test.js +144 -0
- package/dist/ecs/database/reconciling/create-reconciling-database.test.js.map +1 -1
- package/dist/ecs/database/reconciling/reconciling-database.d.ts +8 -1
- package/dist/ecs/database/reconciling/reconciling-entry.d.ts +9 -3
- package/dist/ecs/database/reconciling/reconciling-entry.js.map +1 -1
- package/dist/ecs/database/transactional-store/create-transactional-store.js +3 -1
- package/dist/ecs/database/transactional-store/create-transactional-store.js.map +1 -1
- package/dist/ecs/database/transactional-store/transactional-store.d.ts +14 -1
- package/dist/ecs/entity-location-table/create-entity-location-table.js +6 -1
- 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 +2 -0
- package/dist/ecs/store/core/core.d.ts +2 -0
- package/dist/ecs/store/core/create-core.js +8 -0
- package/dist/ecs/store/core/create-core.js.map +1 -1
- package/dist/ecs/store/public/create-store.js +6 -0
- package/dist/ecs/store/public/create-store.js.map +1 -1
- package/dist/ecs/store/store.d.ts +2 -0
- package/dist/ecs/store/store.js.map +1 -1
- package/dist/ecs/store/transaction-functions.d.ts +15 -4
- package/dist/ecs/store/transaction-functions.type-test.js +50 -0
- package/dist/ecs/store/transaction-functions.type-test.js.map +1 -0
- package/dist/is-data.d.ts +1 -1
- package/dist/observe/to-async-generator.js +18 -8
- package/dist/observe/to-async-generator.js.map +1 -1
- package/dist/observe/to-async-generator.test.js +24 -0
- package/dist/observe/to-async-generator.test.js.map +1 -1
- package/dist/service/async-data-service/async-data-service.d.ts +1 -0
- package/dist/service/async-data-service/async-data-service.js +3 -0
- package/dist/service/async-data-service/async-data-service.js.map +1 -0
- package/dist/service/async-data-service/create-lazy.test.js.map +1 -1
- package/dist/service/async-data-service/example.js +1 -1
- package/dist/service/async-data-service/example.js.map +1 -1
- package/dist/service/async-data-service/is-valid.d.ts +1 -1
- package/dist/service/index.d.ts +2 -1
- package/dist/service/index.js +2 -1
- package/dist/service/index.js.map +1 -1
- package/dist/service/{agentic-service/link.js → ui-service/example.js} +1 -1
- package/dist/service/ui-service/example.js.map +1 -0
- package/dist/service/ui-service/from-service.d.ts +35 -0
- package/dist/service/{async-data-service/is-valid.type-test.js → ui-service/from-service.js} +1 -1
- package/dist/service/ui-service/from-service.js.map +1 -0
- package/dist/service/ui-service/is-valid.d.ts +11 -0
- package/dist/service/ui-service/is-valid.js +3 -0
- package/dist/service/ui-service/is-valid.js.map +1 -0
- package/dist/service/ui-service/public.d.ts +2 -0
- package/dist/service/ui-service/public.js +4 -0
- package/dist/service/ui-service/public.js.map +1 -0
- package/dist/service/ui-service/ui-service.d.ts +1 -0
- package/dist/service/ui-service/ui-service.js +3 -0
- package/dist/service/ui-service/ui-service.js.map +1 -0
- package/dist/test-setup.js +90 -0
- package/dist/test-setup.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/references/data-lit/package.json +1 -1
- package/references/data-lit/src/elements/application-element.ts +11 -1
- package/references/data-lit/src/elements/database-element.ts +3 -2
- package/references/data-lit/src/elements/database-element.type-test.ts +85 -0
- package/references/data-lit/src/hooks/index.ts +2 -0
- package/references/data-lit/src/hooks/use-drag-generator.ts +43 -0
- package/references/data-lit/src/hooks/use-drag-observe.ts +8 -2
- package/references/data-lit/src/hooks/use-pointer-observe.ts +79 -0
- package/references/data-lit-tictactoe/package.json +4 -1
- package/references/data-lit-tictactoe/src/elements/tictactoe-app/tictactoe-app-element.ts +23 -0
- package/references/data-lit-tictactoe/src/elements/tictactoe-app/tictactoe-app-presentation.ts +12 -0
- package/references/data-lit-tictactoe/src/elements/tictactoe-app/tictactoe-app.ts +14 -18
- package/references/data-lit-tictactoe/src/elements/tictactoe-board/tictactoe-board-element.ts +23 -0
- package/references/data-lit-tictactoe/src/elements/tictactoe-board/tictactoe-board-presentation.ts +6 -7
- package/references/data-lit-tictactoe/src/elements/tictactoe-board/tictactoe-board.ts +5 -15
- package/references/data-lit-tictactoe/src/elements/tictactoe-cell/tictactoe-cell-element.ts +45 -0
- package/references/data-lit-tictactoe/src/elements/tictactoe-cell/tictactoe-cell-presentation.ts +2 -1
- package/references/data-lit-tictactoe/src/elements/tictactoe-cell/tictactoe-cell.ts +5 -38
- package/references/data-lit-tictactoe/src/elements/tictactoe-hud/tictactoe-hud-element.ts +57 -0
- package/references/data-lit-tictactoe/src/elements/tictactoe-hud/tictactoe-hud-presentation.ts +10 -2
- package/references/data-lit-tictactoe/src/elements/tictactoe-hud/tictactoe-hud.css.ts +36 -1
- package/references/data-lit-tictactoe/src/elements/tictactoe-hud/tictactoe-hud.ts +5 -41
- package/references/data-lit-tictactoe/src/index.ts +16 -0
- package/references/data-lit-tictactoe/src/main.ts +9 -3
- package/references/data-lit-tictactoe/src/state/tictactoe-plugin.ts +18 -10
- package/references/data-lit-tictactoe/src/tictactoe-element.ts +8 -3
- package/references/data-lit-tictactoe/src/types/board-state/current-player.ts +2 -2
- package/references/data-lit-tictactoe/src/types/player-mark/is.ts +8 -0
- package/references/data-lit-tictactoe/src/types/player-mark/mark-color.ts +12 -0
- package/references/data-lit-tictactoe/src/types/player-mark/opponent.ts +12 -0
- package/references/data-lit-tictactoe/src/types/player-mark/public.ts +4 -0
- package/references/data-lit-tictactoe/src/types/player-mark/values.ts +6 -0
- 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
- package/dist/cache/blob-store.test.js +0 -122
- package/dist/cache/blob-store.test.js.map +0 -1
- package/dist/cache/data-cache.test.js +0 -41
- package/dist/cache/data-cache.test.js.map +0 -1
- package/dist/cache/expiring-data-cache.test.js +0 -42
- package/dist/cache/expiring-data-cache.test.js.map +0 -1
- package/dist/cache/functions/functions.test.js +0 -72
- package/dist/cache/functions/functions.test.js.map +0 -1
- package/dist/ecs/database/observe-select-deep.d.ts +0 -23
- package/dist/ecs/database/observe-select-deep.js +0 -15
- package/dist/ecs/database/observe-select-deep.js.map +0 -1
- package/dist/ecs/database/observe-select-deep.type-test.d.ts +0 -1
- package/dist/ecs/database/observe-select-deep.type-test.js +0 -111
- package/dist/ecs/database/observe-select-deep.type-test.js.map +0 -1
- package/dist/ecs/database/public/create-database-scheduler.test.d.ts +0 -1
- package/dist/ecs/database/public/create-database-scheduler.test.js +0 -67
- package/dist/ecs/database/public/create-database-scheduler.test.js.map +0 -1
- package/dist/ecs/database/public/create-database.type-test.d.ts +0 -1
- package/dist/ecs/database/public/create-database.type-test.js +0 -52
- package/dist/ecs/database/public/create-database.type-test.js.map +0 -1
- package/dist/ecs/entity.d.ts +0 -11
- package/dist/ecs/entity.js +0 -7
- package/dist/ecs/entity.js.map +0 -1
- package/dist/ecs/persistence-service/create-storage-persistence-service.test.d.ts +0 -1
- package/dist/ecs/persistence-service/create-storage-persistence-service.test.js +0 -52
- package/dist/ecs/persistence-service/create-storage-persistence-service.test.js.map +0 -1
- package/dist/functions/serialization/serialize-to-storage.test.d.ts +0 -1
- package/dist/functions/serialization/serialize-to-storage.test.js +0 -161
- package/dist/functions/serialization/serialize-to-storage.test.js.map +0 -1
- package/dist/math/aabb/face/aabb-face.test.d.ts +0 -1
- package/dist/math/aabb/face/aabb-face.test.js +0 -35
- package/dist/math/aabb/face/aabb-face.test.js.map +0 -1
- package/dist/math/aabb/face/functions.d.ts +0 -47
- package/dist/math/aabb/face/functions.js +0 -142
- package/dist/math/aabb/face/functions.js.map +0 -1
- package/dist/math/aabb/face/index.d.ts +0 -4
- package/dist/math/aabb/face/index.js +0 -3
- package/dist/math/aabb/face/index.js.map +0 -1
- package/dist/perftest/ecs-perf.d.ts +0 -49
- package/dist/perftest/ecs-perf.js +0 -210
- package/dist/perftest/ecs-perf.js.map +0 -1
- package/dist/service/agentic-service/link.d.ts +0 -15
- package/dist/service/agentic-service/link.js.map +0 -1
- package/dist/service/async-data-service/is-valid.type-test.d.ts +0 -1
- package/dist/service/async-data-service/is-valid.type-test.js.map +0 -1
- package/dist/service/dynamic-service/create-from-ecs.d.ts +0 -17
- package/dist/service/dynamic-service/create-from-ecs.js +0 -56
- package/dist/service/dynamic-service/create-from-ecs.js.map +0 -1
- package/dist/service/dynamic-service/create-from-ecs.test.d.ts +0 -1
- package/dist/service/dynamic-service/create-from-ecs.test.js +0 -636
- package/dist/service/dynamic-service/create-from-ecs.test.js.map +0 -1
- package/dist/service/dynamic-service/create.d.ts +0 -84
- package/dist/service/dynamic-service/create.js +0 -97
- package/dist/service/dynamic-service/create.js.map +0 -1
- package/dist/service/dynamic-service/create.test.d.ts +0 -1
- package/dist/service/dynamic-service/create.test.js +0 -688
- package/dist/service/dynamic-service/create.test.js.map +0 -1
- package/dist/service/dynamic-service/dynamic-service.d.ts +0 -29
- package/dist/service/dynamic-service/dynamic-service.js +0 -2
- package/dist/service/dynamic-service/dynamic-service.js.map +0 -1
- package/dist/service/dynamic-service/index.d.ts +0 -1
- package/dist/service/dynamic-service/index.js +0 -3
- package/dist/service/dynamic-service/index.js.map +0 -1
- package/dist/service/dynamic-service/public.d.ts +0 -2
- package/dist/service/dynamic-service/public.js +0 -3
- package/dist/service/dynamic-service/public.js.map +0 -1
- package/dist/service/dynamic-service/semantic-service.d.ts +0 -19
- package/dist/service/dynamic-service/semantic-service.js +0 -2
- package/dist/service/dynamic-service/semantic-service.js.map +0 -1
- package/dist/service/semantic-service/semantic-service.d.ts +0 -19
- package/dist/service/semantic-service/semantic-service.js +0 -2
- package/dist/service/semantic-service/semantic-service.js.map +0 -1
- /package/dist/{cache/blob-store.test.d.ts → ecs/database/database.reset.test.d.ts} +0 -0
- /package/dist/{cache/data-cache.test.d.ts → ecs/store/transaction-functions.type-test.d.ts} +0 -0
- /package/dist/{cache/expiring-data-cache.test.d.ts → service/ui-service/example.d.ts} +0 -0
- /package/dist/{cache/functions/functions.test.d.ts → test-setup.d.ts} +0 -0
|
@@ -161,7 +161,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
161
161
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
162
162
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
163
163
|
}, {
|
|
164
|
-
readonly createDistrict: (t: import("
|
|
164
|
+
readonly createDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
165
165
|
readonly districtType: {
|
|
166
166
|
readonly type: "string";
|
|
167
167
|
};
|
|
@@ -322,7 +322,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
322
322
|
districtType: string;
|
|
323
323
|
zoning: string;
|
|
324
324
|
}) => void;
|
|
325
|
-
readonly deleteDistrict: (t: import("
|
|
325
|
+
readonly deleteDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
326
326
|
readonly districtType: {
|
|
327
327
|
readonly type: "string";
|
|
328
328
|
};
|
|
@@ -480,7 +480,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
482
|
}>, _id: Entity) => void;
|
|
483
|
-
readonly createBuilding: (t: import("
|
|
483
|
+
readonly createBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
484
484
|
readonly districtType: {
|
|
485
485
|
readonly type: "string";
|
|
486
486
|
};
|
|
@@ -641,7 +641,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
641
641
|
parentDistrict: Entity;
|
|
642
642
|
positionX: number;
|
|
643
643
|
}) => void;
|
|
644
|
-
readonly deleteBuilding: (t: import("
|
|
644
|
+
readonly deleteBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
645
645
|
readonly districtType: {
|
|
646
646
|
readonly type: "string";
|
|
647
647
|
};
|
|
@@ -799,7 +799,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
801
|
}>, _id: Entity) => void;
|
|
802
|
-
readonly updateBuilding: (t: import("
|
|
802
|
+
readonly updateBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
803
803
|
readonly districtType: {
|
|
804
804
|
readonly type: "string";
|
|
805
805
|
};
|
|
@@ -962,7 +962,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
962
962
|
positionX: number;
|
|
963
963
|
density: number;
|
|
964
964
|
}>) => void;
|
|
965
|
-
readonly selectExclusive: (t: import("
|
|
965
|
+
readonly selectExclusive: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
966
966
|
readonly districtType: {
|
|
967
967
|
readonly type: "string";
|
|
968
968
|
};
|
|
@@ -1123,7 +1123,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
1123
1123
|
entityId: Entity;
|
|
1124
1124
|
userId: string;
|
|
1125
1125
|
}) => void;
|
|
1126
|
-
readonly toggleSelected: (t: import("
|
|
1126
|
+
readonly toggleSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
1127
1127
|
readonly districtType: {
|
|
1128
1128
|
readonly type: "string";
|
|
1129
1129
|
};
|
|
@@ -1284,7 +1284,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
1284
1284
|
entityId: Entity;
|
|
1285
1285
|
userId: string;
|
|
1286
1286
|
}) => void;
|
|
1287
|
-
readonly ensureSelected: (t: import("
|
|
1287
|
+
readonly ensureSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
1288
1288
|
readonly districtType: {
|
|
1289
1289
|
readonly type: "string";
|
|
1290
1290
|
};
|
|
@@ -1445,7 +1445,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
1445
1445
|
entityId: Entity;
|
|
1446
1446
|
userId: string;
|
|
1447
1447
|
}) => void;
|
|
1448
|
-
readonly moveSelectedBuildings: (t: import("
|
|
1448
|
+
readonly moveSelectedBuildings: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
1449
1449
|
readonly districtType: {
|
|
1450
1450
|
readonly type: "string";
|
|
1451
1451
|
};
|
|
@@ -1605,7 +1605,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
1605
1605
|
}>, _input: {
|
|
1606
1606
|
deltaUnits: number;
|
|
1607
1607
|
}) => void;
|
|
1608
|
-
readonly setCursorTime: (t: import("
|
|
1608
|
+
readonly setCursorTime: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
1609
1609
|
readonly districtType: {
|
|
1610
1610
|
readonly type: "string";
|
|
1611
1611
|
};
|
|
@@ -1765,7 +1765,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
1765
1765
|
}>, _input: {
|
|
1766
1766
|
time: number;
|
|
1767
1767
|
}) => void;
|
|
1768
|
-
readonly setSimulationState: (t: import("
|
|
1768
|
+
readonly setSimulationState: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
1769
1769
|
readonly districtType: {
|
|
1770
1770
|
readonly type: "string";
|
|
1771
1771
|
};
|
|
@@ -1925,7 +1925,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
1925
1925
|
}>, _input: {
|
|
1926
1926
|
state: string;
|
|
1927
1927
|
}) => void;
|
|
1928
|
-
readonly setZoomLevel: (t: import("
|
|
1928
|
+
readonly setZoomLevel: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
1929
1929
|
readonly districtType: {
|
|
1930
1930
|
readonly type: "string";
|
|
1931
1931
|
};
|
|
@@ -2085,7 +2085,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
2085
2085
|
}>, _input: {
|
|
2086
2086
|
level: number;
|
|
2087
2087
|
}) => void;
|
|
2088
|
-
readonly setDemolishTool: (t: import("
|
|
2088
|
+
readonly setDemolishTool: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
2089
2089
|
readonly districtType: {
|
|
2090
2090
|
readonly type: "string";
|
|
2091
2091
|
};
|
|
@@ -2245,7 +2245,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
2245
2245
|
}>, _input: {
|
|
2246
2246
|
active: boolean;
|
|
2247
2247
|
}) => void;
|
|
2248
|
-
readonly setGridSnap: (t: import("
|
|
2248
|
+
readonly setGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
2249
2249
|
readonly districtType: {
|
|
2250
2250
|
readonly type: "string";
|
|
2251
2251
|
};
|
|
@@ -2405,7 +2405,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
2405
2405
|
}>, _input: {
|
|
2406
2406
|
enabled: boolean;
|
|
2407
2407
|
}) => void;
|
|
2408
|
-
readonly setActiveGridSnap: (t: import("
|
|
2408
|
+
readonly setActiveGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
2409
2409
|
readonly districtType: {
|
|
2410
2410
|
readonly type: "string";
|
|
2411
2411
|
};
|
|
@@ -2565,7 +2565,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
2565
2565
|
}>, _input: {
|
|
2566
2566
|
time: number | null;
|
|
2567
2567
|
}) => void;
|
|
2568
|
-
readonly setCrossDistrictDrag: (t: import("
|
|
2568
|
+
readonly setCrossDistrictDrag: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
2569
2569
|
readonly districtType: {
|
|
2570
2570
|
readonly type: "string";
|
|
2571
2571
|
};
|
|
@@ -2725,7 +2725,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
2725
2725
|
}>, _input: {
|
|
2726
2726
|
active: boolean;
|
|
2727
2727
|
}) => void;
|
|
2728
|
-
readonly clearCrossDistrictPreviews: (t: import("
|
|
2728
|
+
readonly clearCrossDistrictPreviews: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
2729
2729
|
readonly districtType: {
|
|
2730
2730
|
readonly type: "string";
|
|
2731
2731
|
};
|
|
@@ -2883,7 +2883,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
2885
|
}>) => void;
|
|
2886
|
-
readonly resizeFreeformBuilding: (t: import("
|
|
2886
|
+
readonly resizeFreeformBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
2887
2887
|
readonly districtType: {
|
|
2888
2888
|
readonly type: "string";
|
|
2889
2889
|
};
|
|
@@ -3045,7 +3045,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
3045
3045
|
edge: "left" | "right";
|
|
3046
3046
|
deltaPx: number;
|
|
3047
3047
|
}) => void;
|
|
3048
|
-
readonly resizeCompactBuilding: (t: import("
|
|
3048
|
+
readonly resizeCompactBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
3049
3049
|
readonly districtType: {
|
|
3050
3050
|
readonly type: "string";
|
|
3051
3051
|
};
|
|
@@ -3207,7 +3207,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
3207
3207
|
edge: "left" | "right";
|
|
3208
3208
|
deltaPx: number;
|
|
3209
3209
|
}) => void;
|
|
3210
|
-
readonly splitAtCursor: (t: import("
|
|
3210
|
+
readonly splitAtCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
3211
3211
|
readonly districtType: {
|
|
3212
3212
|
readonly type: "string";
|
|
3213
3213
|
};
|
|
@@ -3367,7 +3367,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
3367
3367
|
}>, _input: {
|
|
3368
3368
|
userId: string;
|
|
3369
3369
|
}) => void;
|
|
3370
|
-
readonly deleteSelected: (t: import("
|
|
3370
|
+
readonly deleteSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
3371
3371
|
readonly districtType: {
|
|
3372
3372
|
readonly type: "string";
|
|
3373
3373
|
};
|
|
@@ -3527,7 +3527,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
3527
3527
|
}>, _input: {
|
|
3528
3528
|
userId: string;
|
|
3529
3529
|
}) => void;
|
|
3530
|
-
readonly toggleCondemned: (t: import("
|
|
3530
|
+
readonly toggleCondemned: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
3531
3531
|
readonly districtType: {
|
|
3532
3532
|
readonly type: "string";
|
|
3533
3533
|
};
|
|
@@ -3687,7 +3687,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
3687
3687
|
}>, _input: {
|
|
3688
3688
|
buildingId: Entity;
|
|
3689
3689
|
}) => void;
|
|
3690
|
-
readonly deselectAll: (t: import("
|
|
3690
|
+
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
3691
3691
|
readonly districtType: {
|
|
3692
3692
|
readonly type: "string";
|
|
3693
3693
|
};
|
|
@@ -3847,7 +3847,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
3847
3847
|
}>, _input: {
|
|
3848
3848
|
userId: string;
|
|
3849
3849
|
}) => void;
|
|
3850
|
-
readonly selectAll: (t: import("
|
|
3850
|
+
readonly selectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
3851
3851
|
readonly districtType: {
|
|
3852
3852
|
readonly type: "string";
|
|
3853
3853
|
};
|
|
@@ -4007,7 +4007,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
4007
4007
|
}>, _input: {
|
|
4008
4008
|
userId: string;
|
|
4009
4009
|
}) => void;
|
|
4010
|
-
readonly setSelectionFromIds: (t: import("
|
|
4010
|
+
readonly setSelectionFromIds: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
4011
4011
|
readonly districtType: {
|
|
4012
4012
|
readonly type: "string";
|
|
4013
4013
|
};
|
|
@@ -4169,7 +4169,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
4169
4169
|
userId: string;
|
|
4170
4170
|
additive: boolean;
|
|
4171
4171
|
}) => void;
|
|
4172
|
-
readonly resizeSelectedToCursor: (t: import("
|
|
4172
|
+
readonly resizeSelectedToCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
4173
4173
|
readonly districtType: {
|
|
4174
4174
|
readonly type: "string";
|
|
4175
4175
|
};
|
|
@@ -4489,7 +4489,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
4489
4489
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
4490
4490
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
4491
4491
|
}, import("../index.js").ToTransactionFunctions<{} & {
|
|
4492
|
-
readonly createDistrict: (t: import("
|
|
4492
|
+
readonly createDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
4493
4493
|
readonly districtType: {
|
|
4494
4494
|
readonly type: "string";
|
|
4495
4495
|
};
|
|
@@ -4650,7 +4650,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
4650
4650
|
districtType: string;
|
|
4651
4651
|
zoning: string;
|
|
4652
4652
|
}) => void;
|
|
4653
|
-
readonly deleteDistrict: (t: import("
|
|
4653
|
+
readonly deleteDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
4654
4654
|
readonly districtType: {
|
|
4655
4655
|
readonly type: "string";
|
|
4656
4656
|
};
|
|
@@ -4808,7 +4808,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
4810
|
}>, _id: Entity) => void;
|
|
4811
|
-
readonly createBuilding: (t: import("
|
|
4811
|
+
readonly createBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
4812
4812
|
readonly districtType: {
|
|
4813
4813
|
readonly type: "string";
|
|
4814
4814
|
};
|
|
@@ -4969,7 +4969,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
4969
4969
|
parentDistrict: Entity;
|
|
4970
4970
|
positionX: number;
|
|
4971
4971
|
}) => void;
|
|
4972
|
-
readonly deleteBuilding: (t: import("
|
|
4972
|
+
readonly deleteBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
4973
4973
|
readonly districtType: {
|
|
4974
4974
|
readonly type: "string";
|
|
4975
4975
|
};
|
|
@@ -5127,7 +5127,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
5129
|
}>, _id: Entity) => void;
|
|
5130
|
-
readonly updateBuilding: (t: import("
|
|
5130
|
+
readonly updateBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
5131
5131
|
readonly districtType: {
|
|
5132
5132
|
readonly type: "string";
|
|
5133
5133
|
};
|
|
@@ -5290,7 +5290,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
5290
5290
|
positionX: number;
|
|
5291
5291
|
density: number;
|
|
5292
5292
|
}>) => void;
|
|
5293
|
-
readonly selectExclusive: (t: import("
|
|
5293
|
+
readonly selectExclusive: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
5294
5294
|
readonly districtType: {
|
|
5295
5295
|
readonly type: "string";
|
|
5296
5296
|
};
|
|
@@ -5451,7 +5451,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
5451
5451
|
entityId: Entity;
|
|
5452
5452
|
userId: string;
|
|
5453
5453
|
}) => void;
|
|
5454
|
-
readonly toggleSelected: (t: import("
|
|
5454
|
+
readonly toggleSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
5455
5455
|
readonly districtType: {
|
|
5456
5456
|
readonly type: "string";
|
|
5457
5457
|
};
|
|
@@ -5612,7 +5612,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
5612
5612
|
entityId: Entity;
|
|
5613
5613
|
userId: string;
|
|
5614
5614
|
}) => void;
|
|
5615
|
-
readonly ensureSelected: (t: import("
|
|
5615
|
+
readonly ensureSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
5616
5616
|
readonly districtType: {
|
|
5617
5617
|
readonly type: "string";
|
|
5618
5618
|
};
|
|
@@ -5773,7 +5773,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
5773
5773
|
entityId: Entity;
|
|
5774
5774
|
userId: string;
|
|
5775
5775
|
}) => void;
|
|
5776
|
-
readonly moveSelectedBuildings: (t: import("
|
|
5776
|
+
readonly moveSelectedBuildings: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
5777
5777
|
readonly districtType: {
|
|
5778
5778
|
readonly type: "string";
|
|
5779
5779
|
};
|
|
@@ -5933,7 +5933,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
5933
5933
|
}>, _input: {
|
|
5934
5934
|
deltaUnits: number;
|
|
5935
5935
|
}) => void;
|
|
5936
|
-
readonly setCursorTime: (t: import("
|
|
5936
|
+
readonly setCursorTime: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
5937
5937
|
readonly districtType: {
|
|
5938
5938
|
readonly type: "string";
|
|
5939
5939
|
};
|
|
@@ -6093,7 +6093,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
6093
6093
|
}>, _input: {
|
|
6094
6094
|
time: number;
|
|
6095
6095
|
}) => void;
|
|
6096
|
-
readonly setSimulationState: (t: import("
|
|
6096
|
+
readonly setSimulationState: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
6097
6097
|
readonly districtType: {
|
|
6098
6098
|
readonly type: "string";
|
|
6099
6099
|
};
|
|
@@ -6253,7 +6253,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
6253
6253
|
}>, _input: {
|
|
6254
6254
|
state: string;
|
|
6255
6255
|
}) => void;
|
|
6256
|
-
readonly setZoomLevel: (t: import("
|
|
6256
|
+
readonly setZoomLevel: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
6257
6257
|
readonly districtType: {
|
|
6258
6258
|
readonly type: "string";
|
|
6259
6259
|
};
|
|
@@ -6413,7 +6413,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
6413
6413
|
}>, _input: {
|
|
6414
6414
|
level: number;
|
|
6415
6415
|
}) => void;
|
|
6416
|
-
readonly setDemolishTool: (t: import("
|
|
6416
|
+
readonly setDemolishTool: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
6417
6417
|
readonly districtType: {
|
|
6418
6418
|
readonly type: "string";
|
|
6419
6419
|
};
|
|
@@ -6573,7 +6573,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
6573
6573
|
}>, _input: {
|
|
6574
6574
|
active: boolean;
|
|
6575
6575
|
}) => void;
|
|
6576
|
-
readonly setGridSnap: (t: import("
|
|
6576
|
+
readonly setGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
6577
6577
|
readonly districtType: {
|
|
6578
6578
|
readonly type: "string";
|
|
6579
6579
|
};
|
|
@@ -6733,7 +6733,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
6733
6733
|
}>, _input: {
|
|
6734
6734
|
enabled: boolean;
|
|
6735
6735
|
}) => void;
|
|
6736
|
-
readonly setActiveGridSnap: (t: import("
|
|
6736
|
+
readonly setActiveGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
6737
6737
|
readonly districtType: {
|
|
6738
6738
|
readonly type: "string";
|
|
6739
6739
|
};
|
|
@@ -6893,7 +6893,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
6893
6893
|
}>, _input: {
|
|
6894
6894
|
time: number | null;
|
|
6895
6895
|
}) => void;
|
|
6896
|
-
readonly setCrossDistrictDrag: (t: import("
|
|
6896
|
+
readonly setCrossDistrictDrag: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
6897
6897
|
readonly districtType: {
|
|
6898
6898
|
readonly type: "string";
|
|
6899
6899
|
};
|
|
@@ -7053,7 +7053,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
7053
7053
|
}>, _input: {
|
|
7054
7054
|
active: boolean;
|
|
7055
7055
|
}) => void;
|
|
7056
|
-
readonly clearCrossDistrictPreviews: (t: import("
|
|
7056
|
+
readonly clearCrossDistrictPreviews: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
7057
7057
|
readonly districtType: {
|
|
7058
7058
|
readonly type: "string";
|
|
7059
7059
|
};
|
|
@@ -7211,7 +7211,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
7213
|
}>) => void;
|
|
7214
|
-
readonly resizeFreeformBuilding: (t: import("
|
|
7214
|
+
readonly resizeFreeformBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
7215
7215
|
readonly districtType: {
|
|
7216
7216
|
readonly type: "string";
|
|
7217
7217
|
};
|
|
@@ -7373,7 +7373,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
7373
7373
|
edge: "left" | "right";
|
|
7374
7374
|
deltaPx: number;
|
|
7375
7375
|
}) => void;
|
|
7376
|
-
readonly resizeCompactBuilding: (t: import("
|
|
7376
|
+
readonly resizeCompactBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
7377
7377
|
readonly districtType: {
|
|
7378
7378
|
readonly type: "string";
|
|
7379
7379
|
};
|
|
@@ -7535,7 +7535,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
7535
7535
|
edge: "left" | "right";
|
|
7536
7536
|
deltaPx: number;
|
|
7537
7537
|
}) => void;
|
|
7538
|
-
readonly splitAtCursor: (t: import("
|
|
7538
|
+
readonly splitAtCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
7539
7539
|
readonly districtType: {
|
|
7540
7540
|
readonly type: "string";
|
|
7541
7541
|
};
|
|
@@ -7695,7 +7695,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
7695
7695
|
}>, _input: {
|
|
7696
7696
|
userId: string;
|
|
7697
7697
|
}) => void;
|
|
7698
|
-
readonly deleteSelected: (t: import("
|
|
7698
|
+
readonly deleteSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
7699
7699
|
readonly districtType: {
|
|
7700
7700
|
readonly type: "string";
|
|
7701
7701
|
};
|
|
@@ -7855,7 +7855,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
7855
7855
|
}>, _input: {
|
|
7856
7856
|
userId: string;
|
|
7857
7857
|
}) => void;
|
|
7858
|
-
readonly toggleCondemned: (t: import("
|
|
7858
|
+
readonly toggleCondemned: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
7859
7859
|
readonly districtType: {
|
|
7860
7860
|
readonly type: "string";
|
|
7861
7861
|
};
|
|
@@ -8015,7 +8015,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
8015
8015
|
}>, _input: {
|
|
8016
8016
|
buildingId: Entity;
|
|
8017
8017
|
}) => void;
|
|
8018
|
-
readonly deselectAll: (t: import("
|
|
8018
|
+
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
8019
8019
|
readonly districtType: {
|
|
8020
8020
|
readonly type: "string";
|
|
8021
8021
|
};
|
|
@@ -8175,7 +8175,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
8175
8175
|
}>, _input: {
|
|
8176
8176
|
userId: string;
|
|
8177
8177
|
}) => void;
|
|
8178
|
-
readonly selectAll: (t: import("
|
|
8178
|
+
readonly selectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
8179
8179
|
readonly districtType: {
|
|
8180
8180
|
readonly type: "string";
|
|
8181
8181
|
};
|
|
@@ -8335,7 +8335,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
8335
8335
|
}>, _input: {
|
|
8336
8336
|
userId: string;
|
|
8337
8337
|
}) => void;
|
|
8338
|
-
readonly setSelectionFromIds: (t: import("
|
|
8338
|
+
readonly setSelectionFromIds: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
8339
8339
|
readonly districtType: {
|
|
8340
8340
|
readonly type: "string";
|
|
8341
8341
|
};
|
|
@@ -8497,7 +8497,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
8497
8497
|
userId: string;
|
|
8498
8498
|
additive: boolean;
|
|
8499
8499
|
}) => void;
|
|
8500
|
-
readonly resizeSelectedToCursor: (t: import("
|
|
8500
|
+
readonly resizeSelectedToCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
8501
8501
|
readonly districtType: {
|
|
8502
8502
|
readonly type: "string";
|
|
8503
8503
|
};
|
|
@@ -9608,7 +9608,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
9608
9608
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
9609
9609
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
9610
9610
|
}, import("../index.js").ToTransactionFunctions<{} & {
|
|
9611
|
-
readonly createDistrict: (t: import("
|
|
9611
|
+
readonly createDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
9612
9612
|
readonly districtType: {
|
|
9613
9613
|
readonly type: "string";
|
|
9614
9614
|
};
|
|
@@ -9769,7 +9769,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
9769
9769
|
districtType: string;
|
|
9770
9770
|
zoning: string;
|
|
9771
9771
|
}) => void;
|
|
9772
|
-
readonly deleteDistrict: (t: import("
|
|
9772
|
+
readonly deleteDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
9773
9773
|
readonly districtType: {
|
|
9774
9774
|
readonly type: "string";
|
|
9775
9775
|
};
|
|
@@ -9927,7 +9927,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
9929
|
}>, _id: Entity) => void;
|
|
9930
|
-
readonly createBuilding: (t: import("
|
|
9930
|
+
readonly createBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
9931
9931
|
readonly districtType: {
|
|
9932
9932
|
readonly type: "string";
|
|
9933
9933
|
};
|
|
@@ -10088,7 +10088,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
10088
10088
|
parentDistrict: Entity;
|
|
10089
10089
|
positionX: number;
|
|
10090
10090
|
}) => void;
|
|
10091
|
-
readonly deleteBuilding: (t: import("
|
|
10091
|
+
readonly deleteBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
10092
10092
|
readonly districtType: {
|
|
10093
10093
|
readonly type: "string";
|
|
10094
10094
|
};
|
|
@@ -10246,7 +10246,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
10248
|
}>, _id: Entity) => void;
|
|
10249
|
-
readonly updateBuilding: (t: import("
|
|
10249
|
+
readonly updateBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
10250
10250
|
readonly districtType: {
|
|
10251
10251
|
readonly type: "string";
|
|
10252
10252
|
};
|
|
@@ -10409,7 +10409,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
10409
10409
|
positionX: number;
|
|
10410
10410
|
density: number;
|
|
10411
10411
|
}>) => void;
|
|
10412
|
-
readonly selectExclusive: (t: import("
|
|
10412
|
+
readonly selectExclusive: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
10413
10413
|
readonly districtType: {
|
|
10414
10414
|
readonly type: "string";
|
|
10415
10415
|
};
|
|
@@ -10570,7 +10570,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
10570
10570
|
entityId: Entity;
|
|
10571
10571
|
userId: string;
|
|
10572
10572
|
}) => void;
|
|
10573
|
-
readonly toggleSelected: (t: import("
|
|
10573
|
+
readonly toggleSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
10574
10574
|
readonly districtType: {
|
|
10575
10575
|
readonly type: "string";
|
|
10576
10576
|
};
|
|
@@ -10731,7 +10731,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
10731
10731
|
entityId: Entity;
|
|
10732
10732
|
userId: string;
|
|
10733
10733
|
}) => void;
|
|
10734
|
-
readonly ensureSelected: (t: import("
|
|
10734
|
+
readonly ensureSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
10735
10735
|
readonly districtType: {
|
|
10736
10736
|
readonly type: "string";
|
|
10737
10737
|
};
|
|
@@ -10892,7 +10892,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
10892
10892
|
entityId: Entity;
|
|
10893
10893
|
userId: string;
|
|
10894
10894
|
}) => void;
|
|
10895
|
-
readonly moveSelectedBuildings: (t: import("
|
|
10895
|
+
readonly moveSelectedBuildings: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
10896
10896
|
readonly districtType: {
|
|
10897
10897
|
readonly type: "string";
|
|
10898
10898
|
};
|
|
@@ -11052,7 +11052,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
11052
11052
|
}>, _input: {
|
|
11053
11053
|
deltaUnits: number;
|
|
11054
11054
|
}) => void;
|
|
11055
|
-
readonly setCursorTime: (t: import("
|
|
11055
|
+
readonly setCursorTime: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
11056
11056
|
readonly districtType: {
|
|
11057
11057
|
readonly type: "string";
|
|
11058
11058
|
};
|
|
@@ -11212,7 +11212,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
11212
11212
|
}>, _input: {
|
|
11213
11213
|
time: number;
|
|
11214
11214
|
}) => void;
|
|
11215
|
-
readonly setSimulationState: (t: import("
|
|
11215
|
+
readonly setSimulationState: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
11216
11216
|
readonly districtType: {
|
|
11217
11217
|
readonly type: "string";
|
|
11218
11218
|
};
|
|
@@ -11372,7 +11372,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
11372
11372
|
}>, _input: {
|
|
11373
11373
|
state: string;
|
|
11374
11374
|
}) => void;
|
|
11375
|
-
readonly setZoomLevel: (t: import("
|
|
11375
|
+
readonly setZoomLevel: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
11376
11376
|
readonly districtType: {
|
|
11377
11377
|
readonly type: "string";
|
|
11378
11378
|
};
|
|
@@ -11532,7 +11532,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
11532
11532
|
}>, _input: {
|
|
11533
11533
|
level: number;
|
|
11534
11534
|
}) => void;
|
|
11535
|
-
readonly setDemolishTool: (t: import("
|
|
11535
|
+
readonly setDemolishTool: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
11536
11536
|
readonly districtType: {
|
|
11537
11537
|
readonly type: "string";
|
|
11538
11538
|
};
|
|
@@ -11692,7 +11692,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
11692
11692
|
}>, _input: {
|
|
11693
11693
|
active: boolean;
|
|
11694
11694
|
}) => void;
|
|
11695
|
-
readonly setGridSnap: (t: import("
|
|
11695
|
+
readonly setGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
11696
11696
|
readonly districtType: {
|
|
11697
11697
|
readonly type: "string";
|
|
11698
11698
|
};
|
|
@@ -11852,7 +11852,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
11852
11852
|
}>, _input: {
|
|
11853
11853
|
enabled: boolean;
|
|
11854
11854
|
}) => void;
|
|
11855
|
-
readonly setActiveGridSnap: (t: import("
|
|
11855
|
+
readonly setActiveGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
11856
11856
|
readonly districtType: {
|
|
11857
11857
|
readonly type: "string";
|
|
11858
11858
|
};
|
|
@@ -12012,7 +12012,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
12012
12012
|
}>, _input: {
|
|
12013
12013
|
time: number | null;
|
|
12014
12014
|
}) => void;
|
|
12015
|
-
readonly setCrossDistrictDrag: (t: import("
|
|
12015
|
+
readonly setCrossDistrictDrag: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
12016
12016
|
readonly districtType: {
|
|
12017
12017
|
readonly type: "string";
|
|
12018
12018
|
};
|
|
@@ -12172,7 +12172,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
12172
12172
|
}>, _input: {
|
|
12173
12173
|
active: boolean;
|
|
12174
12174
|
}) => void;
|
|
12175
|
-
readonly clearCrossDistrictPreviews: (t: import("
|
|
12175
|
+
readonly clearCrossDistrictPreviews: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
12176
12176
|
readonly districtType: {
|
|
12177
12177
|
readonly type: "string";
|
|
12178
12178
|
};
|
|
@@ -12330,7 +12330,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
12332
|
}>) => void;
|
|
12333
|
-
readonly resizeFreeformBuilding: (t: import("
|
|
12333
|
+
readonly resizeFreeformBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
12334
12334
|
readonly districtType: {
|
|
12335
12335
|
readonly type: "string";
|
|
12336
12336
|
};
|
|
@@ -12492,7 +12492,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
12492
12492
|
edge: "left" | "right";
|
|
12493
12493
|
deltaPx: number;
|
|
12494
12494
|
}) => void;
|
|
12495
|
-
readonly resizeCompactBuilding: (t: import("
|
|
12495
|
+
readonly resizeCompactBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
12496
12496
|
readonly districtType: {
|
|
12497
12497
|
readonly type: "string";
|
|
12498
12498
|
};
|
|
@@ -12654,7 +12654,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
12654
12654
|
edge: "left" | "right";
|
|
12655
12655
|
deltaPx: number;
|
|
12656
12656
|
}) => void;
|
|
12657
|
-
readonly splitAtCursor: (t: import("
|
|
12657
|
+
readonly splitAtCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
12658
12658
|
readonly districtType: {
|
|
12659
12659
|
readonly type: "string";
|
|
12660
12660
|
};
|
|
@@ -12814,7 +12814,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
12814
12814
|
}>, _input: {
|
|
12815
12815
|
userId: string;
|
|
12816
12816
|
}) => void;
|
|
12817
|
-
readonly deleteSelected: (t: import("
|
|
12817
|
+
readonly deleteSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
12818
12818
|
readonly districtType: {
|
|
12819
12819
|
readonly type: "string";
|
|
12820
12820
|
};
|
|
@@ -12974,7 +12974,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
12974
12974
|
}>, _input: {
|
|
12975
12975
|
userId: string;
|
|
12976
12976
|
}) => void;
|
|
12977
|
-
readonly toggleCondemned: (t: import("
|
|
12977
|
+
readonly toggleCondemned: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
12978
12978
|
readonly districtType: {
|
|
12979
12979
|
readonly type: "string";
|
|
12980
12980
|
};
|
|
@@ -13134,7 +13134,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
13134
13134
|
}>, _input: {
|
|
13135
13135
|
buildingId: Entity;
|
|
13136
13136
|
}) => void;
|
|
13137
|
-
readonly deselectAll: (t: import("
|
|
13137
|
+
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
13138
13138
|
readonly districtType: {
|
|
13139
13139
|
readonly type: "string";
|
|
13140
13140
|
};
|
|
@@ -13294,7 +13294,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
13294
13294
|
}>, _input: {
|
|
13295
13295
|
userId: string;
|
|
13296
13296
|
}) => void;
|
|
13297
|
-
readonly selectAll: (t: import("
|
|
13297
|
+
readonly selectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
13298
13298
|
readonly districtType: {
|
|
13299
13299
|
readonly type: "string";
|
|
13300
13300
|
};
|
|
@@ -13454,7 +13454,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
13454
13454
|
}>, _input: {
|
|
13455
13455
|
userId: string;
|
|
13456
13456
|
}) => void;
|
|
13457
|
-
readonly setSelectionFromIds: (t: import("
|
|
13457
|
+
readonly setSelectionFromIds: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
13458
13458
|
readonly districtType: {
|
|
13459
13459
|
readonly type: "string";
|
|
13460
13460
|
};
|
|
@@ -13616,7 +13616,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
13616
13616
|
userId: string;
|
|
13617
13617
|
additive: boolean;
|
|
13618
13618
|
}) => void;
|
|
13619
|
-
readonly resizeSelectedToCursor: (t: import("
|
|
13619
|
+
readonly resizeSelectedToCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
13620
13620
|
readonly districtType: {
|
|
13621
13621
|
readonly type: "string";
|
|
13622
13622
|
};
|
|
@@ -14727,7 +14727,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
14727
14727
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
14728
14728
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
14729
14729
|
}, import("../index.js").ToTransactionFunctions<{} & {
|
|
14730
|
-
readonly createDistrict: (t: import("
|
|
14730
|
+
readonly createDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
14731
14731
|
readonly districtType: {
|
|
14732
14732
|
readonly type: "string";
|
|
14733
14733
|
};
|
|
@@ -14888,7 +14888,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
14888
14888
|
districtType: string;
|
|
14889
14889
|
zoning: string;
|
|
14890
14890
|
}) => void;
|
|
14891
|
-
readonly deleteDistrict: (t: import("
|
|
14891
|
+
readonly deleteDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
14892
14892
|
readonly districtType: {
|
|
14893
14893
|
readonly type: "string";
|
|
14894
14894
|
};
|
|
@@ -15046,7 +15046,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
15048
|
}>, _id: Entity) => void;
|
|
15049
|
-
readonly createBuilding: (t: import("
|
|
15049
|
+
readonly createBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
15050
15050
|
readonly districtType: {
|
|
15051
15051
|
readonly type: "string";
|
|
15052
15052
|
};
|
|
@@ -15207,7 +15207,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
15207
15207
|
parentDistrict: Entity;
|
|
15208
15208
|
positionX: number;
|
|
15209
15209
|
}) => void;
|
|
15210
|
-
readonly deleteBuilding: (t: import("
|
|
15210
|
+
readonly deleteBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
15211
15211
|
readonly districtType: {
|
|
15212
15212
|
readonly type: "string";
|
|
15213
15213
|
};
|
|
@@ -15365,7 +15365,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
15367
|
}>, _id: Entity) => void;
|
|
15368
|
-
readonly updateBuilding: (t: import("
|
|
15368
|
+
readonly updateBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
15369
15369
|
readonly districtType: {
|
|
15370
15370
|
readonly type: "string";
|
|
15371
15371
|
};
|
|
@@ -15528,7 +15528,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
15528
15528
|
positionX: number;
|
|
15529
15529
|
density: number;
|
|
15530
15530
|
}>) => void;
|
|
15531
|
-
readonly selectExclusive: (t: import("
|
|
15531
|
+
readonly selectExclusive: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
15532
15532
|
readonly districtType: {
|
|
15533
15533
|
readonly type: "string";
|
|
15534
15534
|
};
|
|
@@ -15689,7 +15689,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
15689
15689
|
entityId: Entity;
|
|
15690
15690
|
userId: string;
|
|
15691
15691
|
}) => void;
|
|
15692
|
-
readonly toggleSelected: (t: import("
|
|
15692
|
+
readonly toggleSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
15693
15693
|
readonly districtType: {
|
|
15694
15694
|
readonly type: "string";
|
|
15695
15695
|
};
|
|
@@ -15850,7 +15850,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
15850
15850
|
entityId: Entity;
|
|
15851
15851
|
userId: string;
|
|
15852
15852
|
}) => void;
|
|
15853
|
-
readonly ensureSelected: (t: import("
|
|
15853
|
+
readonly ensureSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
15854
15854
|
readonly districtType: {
|
|
15855
15855
|
readonly type: "string";
|
|
15856
15856
|
};
|
|
@@ -16011,7 +16011,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
16011
16011
|
entityId: Entity;
|
|
16012
16012
|
userId: string;
|
|
16013
16013
|
}) => void;
|
|
16014
|
-
readonly moveSelectedBuildings: (t: import("
|
|
16014
|
+
readonly moveSelectedBuildings: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
16015
16015
|
readonly districtType: {
|
|
16016
16016
|
readonly type: "string";
|
|
16017
16017
|
};
|
|
@@ -16171,7 +16171,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
16171
16171
|
}>, _input: {
|
|
16172
16172
|
deltaUnits: number;
|
|
16173
16173
|
}) => void;
|
|
16174
|
-
readonly setCursorTime: (t: import("
|
|
16174
|
+
readonly setCursorTime: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
16175
16175
|
readonly districtType: {
|
|
16176
16176
|
readonly type: "string";
|
|
16177
16177
|
};
|
|
@@ -16331,7 +16331,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
16331
16331
|
}>, _input: {
|
|
16332
16332
|
time: number;
|
|
16333
16333
|
}) => void;
|
|
16334
|
-
readonly setSimulationState: (t: import("
|
|
16334
|
+
readonly setSimulationState: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
16335
16335
|
readonly districtType: {
|
|
16336
16336
|
readonly type: "string";
|
|
16337
16337
|
};
|
|
@@ -16491,7 +16491,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
16491
16491
|
}>, _input: {
|
|
16492
16492
|
state: string;
|
|
16493
16493
|
}) => void;
|
|
16494
|
-
readonly setZoomLevel: (t: import("
|
|
16494
|
+
readonly setZoomLevel: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
16495
16495
|
readonly districtType: {
|
|
16496
16496
|
readonly type: "string";
|
|
16497
16497
|
};
|
|
@@ -16651,7 +16651,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
16651
16651
|
}>, _input: {
|
|
16652
16652
|
level: number;
|
|
16653
16653
|
}) => void;
|
|
16654
|
-
readonly setDemolishTool: (t: import("
|
|
16654
|
+
readonly setDemolishTool: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
16655
16655
|
readonly districtType: {
|
|
16656
16656
|
readonly type: "string";
|
|
16657
16657
|
};
|
|
@@ -16811,7 +16811,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
16811
16811
|
}>, _input: {
|
|
16812
16812
|
active: boolean;
|
|
16813
16813
|
}) => void;
|
|
16814
|
-
readonly setGridSnap: (t: import("
|
|
16814
|
+
readonly setGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
16815
16815
|
readonly districtType: {
|
|
16816
16816
|
readonly type: "string";
|
|
16817
16817
|
};
|
|
@@ -16971,7 +16971,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
16971
16971
|
}>, _input: {
|
|
16972
16972
|
enabled: boolean;
|
|
16973
16973
|
}) => void;
|
|
16974
|
-
readonly setActiveGridSnap: (t: import("
|
|
16974
|
+
readonly setActiveGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
16975
16975
|
readonly districtType: {
|
|
16976
16976
|
readonly type: "string";
|
|
16977
16977
|
};
|
|
@@ -17131,7 +17131,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
17131
17131
|
}>, _input: {
|
|
17132
17132
|
time: number | null;
|
|
17133
17133
|
}) => void;
|
|
17134
|
-
readonly setCrossDistrictDrag: (t: import("
|
|
17134
|
+
readonly setCrossDistrictDrag: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
17135
17135
|
readonly districtType: {
|
|
17136
17136
|
readonly type: "string";
|
|
17137
17137
|
};
|
|
@@ -17291,7 +17291,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
17291
17291
|
}>, _input: {
|
|
17292
17292
|
active: boolean;
|
|
17293
17293
|
}) => void;
|
|
17294
|
-
readonly clearCrossDistrictPreviews: (t: import("
|
|
17294
|
+
readonly clearCrossDistrictPreviews: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
17295
17295
|
readonly districtType: {
|
|
17296
17296
|
readonly type: "string";
|
|
17297
17297
|
};
|
|
@@ -17449,7 +17449,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
17451
|
}>) => void;
|
|
17452
|
-
readonly resizeFreeformBuilding: (t: import("
|
|
17452
|
+
readonly resizeFreeformBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
17453
17453
|
readonly districtType: {
|
|
17454
17454
|
readonly type: "string";
|
|
17455
17455
|
};
|
|
@@ -17611,7 +17611,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
17611
17611
|
edge: "left" | "right";
|
|
17612
17612
|
deltaPx: number;
|
|
17613
17613
|
}) => void;
|
|
17614
|
-
readonly resizeCompactBuilding: (t: import("
|
|
17614
|
+
readonly resizeCompactBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
17615
17615
|
readonly districtType: {
|
|
17616
17616
|
readonly type: "string";
|
|
17617
17617
|
};
|
|
@@ -17773,7 +17773,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
17773
17773
|
edge: "left" | "right";
|
|
17774
17774
|
deltaPx: number;
|
|
17775
17775
|
}) => void;
|
|
17776
|
-
readonly splitAtCursor: (t: import("
|
|
17776
|
+
readonly splitAtCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
17777
17777
|
readonly districtType: {
|
|
17778
17778
|
readonly type: "string";
|
|
17779
17779
|
};
|
|
@@ -17933,7 +17933,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
17933
17933
|
}>, _input: {
|
|
17934
17934
|
userId: string;
|
|
17935
17935
|
}) => void;
|
|
17936
|
-
readonly deleteSelected: (t: import("
|
|
17936
|
+
readonly deleteSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
17937
17937
|
readonly districtType: {
|
|
17938
17938
|
readonly type: "string";
|
|
17939
17939
|
};
|
|
@@ -18093,7 +18093,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
18093
18093
|
}>, _input: {
|
|
18094
18094
|
userId: string;
|
|
18095
18095
|
}) => void;
|
|
18096
|
-
readonly toggleCondemned: (t: import("
|
|
18096
|
+
readonly toggleCondemned: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
18097
18097
|
readonly districtType: {
|
|
18098
18098
|
readonly type: "string";
|
|
18099
18099
|
};
|
|
@@ -18253,7 +18253,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
18253
18253
|
}>, _input: {
|
|
18254
18254
|
buildingId: Entity;
|
|
18255
18255
|
}) => void;
|
|
18256
|
-
readonly deselectAll: (t: import("
|
|
18256
|
+
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
18257
18257
|
readonly districtType: {
|
|
18258
18258
|
readonly type: "string";
|
|
18259
18259
|
};
|
|
@@ -18413,7 +18413,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
18413
18413
|
}>, _input: {
|
|
18414
18414
|
userId: string;
|
|
18415
18415
|
}) => void;
|
|
18416
|
-
readonly selectAll: (t: import("
|
|
18416
|
+
readonly selectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
18417
18417
|
readonly districtType: {
|
|
18418
18418
|
readonly type: "string";
|
|
18419
18419
|
};
|
|
@@ -18573,7 +18573,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
18573
18573
|
}>, _input: {
|
|
18574
18574
|
userId: string;
|
|
18575
18575
|
}) => void;
|
|
18576
|
-
readonly setSelectionFromIds: (t: import("
|
|
18576
|
+
readonly setSelectionFromIds: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
18577
18577
|
readonly districtType: {
|
|
18578
18578
|
readonly type: "string";
|
|
18579
18579
|
};
|
|
@@ -18735,7 +18735,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
18735
18735
|
userId: string;
|
|
18736
18736
|
additive: boolean;
|
|
18737
18737
|
}) => void;
|
|
18738
|
-
readonly resizeSelectedToCursor: (t: import("
|
|
18738
|
+
readonly resizeSelectedToCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
18739
18739
|
readonly districtType: {
|
|
18740
18740
|
readonly type: "string";
|
|
18741
18741
|
};
|
|
@@ -19848,7 +19848,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
19848
19848
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
19849
19849
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
19850
19850
|
}, import("../index.js").ToTransactionFunctions<{} & {
|
|
19851
|
-
readonly createDistrict: (t: import("
|
|
19851
|
+
readonly createDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
19852
19852
|
readonly districtType: {
|
|
19853
19853
|
readonly type: "string";
|
|
19854
19854
|
};
|
|
@@ -20009,7 +20009,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
20009
20009
|
districtType: string;
|
|
20010
20010
|
zoning: string;
|
|
20011
20011
|
}) => void;
|
|
20012
|
-
readonly deleteDistrict: (t: import("
|
|
20012
|
+
readonly deleteDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
20013
20013
|
readonly districtType: {
|
|
20014
20014
|
readonly type: "string";
|
|
20015
20015
|
};
|
|
@@ -20167,7 +20167,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
20169
|
}>, _id: Entity) => void;
|
|
20170
|
-
readonly createBuilding: (t: import("
|
|
20170
|
+
readonly createBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
20171
20171
|
readonly districtType: {
|
|
20172
20172
|
readonly type: "string";
|
|
20173
20173
|
};
|
|
@@ -20328,7 +20328,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
20328
20328
|
parentDistrict: Entity;
|
|
20329
20329
|
positionX: number;
|
|
20330
20330
|
}) => void;
|
|
20331
|
-
readonly deleteBuilding: (t: import("
|
|
20331
|
+
readonly deleteBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
20332
20332
|
readonly districtType: {
|
|
20333
20333
|
readonly type: "string";
|
|
20334
20334
|
};
|
|
@@ -20486,7 +20486,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
20488
|
}>, _id: Entity) => void;
|
|
20489
|
-
readonly updateBuilding: (t: import("
|
|
20489
|
+
readonly updateBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
20490
20490
|
readonly districtType: {
|
|
20491
20491
|
readonly type: "string";
|
|
20492
20492
|
};
|
|
@@ -20649,7 +20649,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
20649
20649
|
positionX: number;
|
|
20650
20650
|
density: number;
|
|
20651
20651
|
}>) => void;
|
|
20652
|
-
readonly selectExclusive: (t: import("
|
|
20652
|
+
readonly selectExclusive: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
20653
20653
|
readonly districtType: {
|
|
20654
20654
|
readonly type: "string";
|
|
20655
20655
|
};
|
|
@@ -20810,7 +20810,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
20810
20810
|
entityId: Entity;
|
|
20811
20811
|
userId: string;
|
|
20812
20812
|
}) => void;
|
|
20813
|
-
readonly toggleSelected: (t: import("
|
|
20813
|
+
readonly toggleSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
20814
20814
|
readonly districtType: {
|
|
20815
20815
|
readonly type: "string";
|
|
20816
20816
|
};
|
|
@@ -20971,7 +20971,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
20971
20971
|
entityId: Entity;
|
|
20972
20972
|
userId: string;
|
|
20973
20973
|
}) => void;
|
|
20974
|
-
readonly ensureSelected: (t: import("
|
|
20974
|
+
readonly ensureSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
20975
20975
|
readonly districtType: {
|
|
20976
20976
|
readonly type: "string";
|
|
20977
20977
|
};
|
|
@@ -21132,7 +21132,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
21132
21132
|
entityId: Entity;
|
|
21133
21133
|
userId: string;
|
|
21134
21134
|
}) => void;
|
|
21135
|
-
readonly moveSelectedBuildings: (t: import("
|
|
21135
|
+
readonly moveSelectedBuildings: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
21136
21136
|
readonly districtType: {
|
|
21137
21137
|
readonly type: "string";
|
|
21138
21138
|
};
|
|
@@ -21292,7 +21292,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
21292
21292
|
}>, _input: {
|
|
21293
21293
|
deltaUnits: number;
|
|
21294
21294
|
}) => void;
|
|
21295
|
-
readonly setCursorTime: (t: import("
|
|
21295
|
+
readonly setCursorTime: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
21296
21296
|
readonly districtType: {
|
|
21297
21297
|
readonly type: "string";
|
|
21298
21298
|
};
|
|
@@ -21452,7 +21452,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
21452
21452
|
}>, _input: {
|
|
21453
21453
|
time: number;
|
|
21454
21454
|
}) => void;
|
|
21455
|
-
readonly setSimulationState: (t: import("
|
|
21455
|
+
readonly setSimulationState: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
21456
21456
|
readonly districtType: {
|
|
21457
21457
|
readonly type: "string";
|
|
21458
21458
|
};
|
|
@@ -21612,7 +21612,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
21612
21612
|
}>, _input: {
|
|
21613
21613
|
state: string;
|
|
21614
21614
|
}) => void;
|
|
21615
|
-
readonly setZoomLevel: (t: import("
|
|
21615
|
+
readonly setZoomLevel: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
21616
21616
|
readonly districtType: {
|
|
21617
21617
|
readonly type: "string";
|
|
21618
21618
|
};
|
|
@@ -21772,7 +21772,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
21772
21772
|
}>, _input: {
|
|
21773
21773
|
level: number;
|
|
21774
21774
|
}) => void;
|
|
21775
|
-
readonly setDemolishTool: (t: import("
|
|
21775
|
+
readonly setDemolishTool: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
21776
21776
|
readonly districtType: {
|
|
21777
21777
|
readonly type: "string";
|
|
21778
21778
|
};
|
|
@@ -21932,7 +21932,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
21932
21932
|
}>, _input: {
|
|
21933
21933
|
active: boolean;
|
|
21934
21934
|
}) => void;
|
|
21935
|
-
readonly setGridSnap: (t: import("
|
|
21935
|
+
readonly setGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
21936
21936
|
readonly districtType: {
|
|
21937
21937
|
readonly type: "string";
|
|
21938
21938
|
};
|
|
@@ -22092,7 +22092,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
22092
22092
|
}>, _input: {
|
|
22093
22093
|
enabled: boolean;
|
|
22094
22094
|
}) => void;
|
|
22095
|
-
readonly setActiveGridSnap: (t: import("
|
|
22095
|
+
readonly setActiveGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
22096
22096
|
readonly districtType: {
|
|
22097
22097
|
readonly type: "string";
|
|
22098
22098
|
};
|
|
@@ -22252,7 +22252,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
22252
22252
|
}>, _input: {
|
|
22253
22253
|
time: number | null;
|
|
22254
22254
|
}) => void;
|
|
22255
|
-
readonly setCrossDistrictDrag: (t: import("
|
|
22255
|
+
readonly setCrossDistrictDrag: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
22256
22256
|
readonly districtType: {
|
|
22257
22257
|
readonly type: "string";
|
|
22258
22258
|
};
|
|
@@ -22412,7 +22412,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
22412
22412
|
}>, _input: {
|
|
22413
22413
|
active: boolean;
|
|
22414
22414
|
}) => void;
|
|
22415
|
-
readonly clearCrossDistrictPreviews: (t: import("
|
|
22415
|
+
readonly clearCrossDistrictPreviews: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
22416
22416
|
readonly districtType: {
|
|
22417
22417
|
readonly type: "string";
|
|
22418
22418
|
};
|
|
@@ -22570,7 +22570,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
22572
|
}>) => void;
|
|
22573
|
-
readonly resizeFreeformBuilding: (t: import("
|
|
22573
|
+
readonly resizeFreeformBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
22574
22574
|
readonly districtType: {
|
|
22575
22575
|
readonly type: "string";
|
|
22576
22576
|
};
|
|
@@ -22732,7 +22732,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
22732
22732
|
edge: "left" | "right";
|
|
22733
22733
|
deltaPx: number;
|
|
22734
22734
|
}) => void;
|
|
22735
|
-
readonly resizeCompactBuilding: (t: import("
|
|
22735
|
+
readonly resizeCompactBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
22736
22736
|
readonly districtType: {
|
|
22737
22737
|
readonly type: "string";
|
|
22738
22738
|
};
|
|
@@ -22894,7 +22894,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
22894
22894
|
edge: "left" | "right";
|
|
22895
22895
|
deltaPx: number;
|
|
22896
22896
|
}) => void;
|
|
22897
|
-
readonly splitAtCursor: (t: import("
|
|
22897
|
+
readonly splitAtCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
22898
22898
|
readonly districtType: {
|
|
22899
22899
|
readonly type: "string";
|
|
22900
22900
|
};
|
|
@@ -23054,7 +23054,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
23054
23054
|
}>, _input: {
|
|
23055
23055
|
userId: string;
|
|
23056
23056
|
}) => void;
|
|
23057
|
-
readonly deleteSelected: (t: import("
|
|
23057
|
+
readonly deleteSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
23058
23058
|
readonly districtType: {
|
|
23059
23059
|
readonly type: "string";
|
|
23060
23060
|
};
|
|
@@ -23214,7 +23214,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
23214
23214
|
}>, _input: {
|
|
23215
23215
|
userId: string;
|
|
23216
23216
|
}) => void;
|
|
23217
|
-
readonly toggleCondemned: (t: import("
|
|
23217
|
+
readonly toggleCondemned: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
23218
23218
|
readonly districtType: {
|
|
23219
23219
|
readonly type: "string";
|
|
23220
23220
|
};
|
|
@@ -23374,7 +23374,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
23374
23374
|
}>, _input: {
|
|
23375
23375
|
buildingId: Entity;
|
|
23376
23376
|
}) => void;
|
|
23377
|
-
readonly deselectAll: (t: import("
|
|
23377
|
+
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
23378
23378
|
readonly districtType: {
|
|
23379
23379
|
readonly type: "string";
|
|
23380
23380
|
};
|
|
@@ -23534,7 +23534,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
23534
23534
|
}>, _input: {
|
|
23535
23535
|
userId: string;
|
|
23536
23536
|
}) => void;
|
|
23537
|
-
readonly selectAll: (t: import("
|
|
23537
|
+
readonly selectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
23538
23538
|
readonly districtType: {
|
|
23539
23539
|
readonly type: "string";
|
|
23540
23540
|
};
|
|
@@ -23694,7 +23694,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
23694
23694
|
}>, _input: {
|
|
23695
23695
|
userId: string;
|
|
23696
23696
|
}) => void;
|
|
23697
|
-
readonly setSelectionFromIds: (t: import("
|
|
23697
|
+
readonly setSelectionFromIds: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
23698
23698
|
readonly districtType: {
|
|
23699
23699
|
readonly type: "string";
|
|
23700
23700
|
};
|
|
@@ -23856,7 +23856,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
23856
23856
|
userId: string;
|
|
23857
23857
|
additive: boolean;
|
|
23858
23858
|
}) => void;
|
|
23859
|
-
readonly resizeSelectedToCursor: (t: import("
|
|
23859
|
+
readonly resizeSelectedToCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
23860
23860
|
readonly districtType: {
|
|
23861
23861
|
readonly type: "string";
|
|
23862
23862
|
};
|
|
@@ -24970,7 +24970,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
24970
24970
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
24971
24971
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
24972
24972
|
}, import("../index.js").ToTransactionFunctions<{} & {
|
|
24973
|
-
readonly createDistrict: (t: import("
|
|
24973
|
+
readonly createDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
24974
24974
|
readonly districtType: {
|
|
24975
24975
|
readonly type: "string";
|
|
24976
24976
|
};
|
|
@@ -25131,7 +25131,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
25131
25131
|
districtType: string;
|
|
25132
25132
|
zoning: string;
|
|
25133
25133
|
}) => void;
|
|
25134
|
-
readonly deleteDistrict: (t: import("
|
|
25134
|
+
readonly deleteDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
25135
25135
|
readonly districtType: {
|
|
25136
25136
|
readonly type: "string";
|
|
25137
25137
|
};
|
|
@@ -25289,7 +25289,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
25291
|
}>, _id: Entity) => void;
|
|
25292
|
-
readonly createBuilding: (t: import("
|
|
25292
|
+
readonly createBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
25293
25293
|
readonly districtType: {
|
|
25294
25294
|
readonly type: "string";
|
|
25295
25295
|
};
|
|
@@ -25450,7 +25450,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
25450
25450
|
parentDistrict: Entity;
|
|
25451
25451
|
positionX: number;
|
|
25452
25452
|
}) => void;
|
|
25453
|
-
readonly deleteBuilding: (t: import("
|
|
25453
|
+
readonly deleteBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
25454
25454
|
readonly districtType: {
|
|
25455
25455
|
readonly type: "string";
|
|
25456
25456
|
};
|
|
@@ -25608,7 +25608,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
25610
|
}>, _id: Entity) => void;
|
|
25611
|
-
readonly updateBuilding: (t: import("
|
|
25611
|
+
readonly updateBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
25612
25612
|
readonly districtType: {
|
|
25613
25613
|
readonly type: "string";
|
|
25614
25614
|
};
|
|
@@ -25771,7 +25771,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
25771
25771
|
positionX: number;
|
|
25772
25772
|
density: number;
|
|
25773
25773
|
}>) => void;
|
|
25774
|
-
readonly selectExclusive: (t: import("
|
|
25774
|
+
readonly selectExclusive: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
25775
25775
|
readonly districtType: {
|
|
25776
25776
|
readonly type: "string";
|
|
25777
25777
|
};
|
|
@@ -25932,7 +25932,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
25932
25932
|
entityId: Entity;
|
|
25933
25933
|
userId: string;
|
|
25934
25934
|
}) => void;
|
|
25935
|
-
readonly toggleSelected: (t: import("
|
|
25935
|
+
readonly toggleSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
25936
25936
|
readonly districtType: {
|
|
25937
25937
|
readonly type: "string";
|
|
25938
25938
|
};
|
|
@@ -26093,7 +26093,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
26093
26093
|
entityId: Entity;
|
|
26094
26094
|
userId: string;
|
|
26095
26095
|
}) => void;
|
|
26096
|
-
readonly ensureSelected: (t: import("
|
|
26096
|
+
readonly ensureSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
26097
26097
|
readonly districtType: {
|
|
26098
26098
|
readonly type: "string";
|
|
26099
26099
|
};
|
|
@@ -26254,7 +26254,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
26254
26254
|
entityId: Entity;
|
|
26255
26255
|
userId: string;
|
|
26256
26256
|
}) => void;
|
|
26257
|
-
readonly moveSelectedBuildings: (t: import("
|
|
26257
|
+
readonly moveSelectedBuildings: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
26258
26258
|
readonly districtType: {
|
|
26259
26259
|
readonly type: "string";
|
|
26260
26260
|
};
|
|
@@ -26414,7 +26414,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
26414
26414
|
}>, _input: {
|
|
26415
26415
|
deltaUnits: number;
|
|
26416
26416
|
}) => void;
|
|
26417
|
-
readonly setCursorTime: (t: import("
|
|
26417
|
+
readonly setCursorTime: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
26418
26418
|
readonly districtType: {
|
|
26419
26419
|
readonly type: "string";
|
|
26420
26420
|
};
|
|
@@ -26574,7 +26574,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
26574
26574
|
}>, _input: {
|
|
26575
26575
|
time: number;
|
|
26576
26576
|
}) => void;
|
|
26577
|
-
readonly setSimulationState: (t: import("
|
|
26577
|
+
readonly setSimulationState: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
26578
26578
|
readonly districtType: {
|
|
26579
26579
|
readonly type: "string";
|
|
26580
26580
|
};
|
|
@@ -26734,7 +26734,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
26734
26734
|
}>, _input: {
|
|
26735
26735
|
state: string;
|
|
26736
26736
|
}) => void;
|
|
26737
|
-
readonly setZoomLevel: (t: import("
|
|
26737
|
+
readonly setZoomLevel: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
26738
26738
|
readonly districtType: {
|
|
26739
26739
|
readonly type: "string";
|
|
26740
26740
|
};
|
|
@@ -26894,7 +26894,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
26894
26894
|
}>, _input: {
|
|
26895
26895
|
level: number;
|
|
26896
26896
|
}) => void;
|
|
26897
|
-
readonly setDemolishTool: (t: import("
|
|
26897
|
+
readonly setDemolishTool: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
26898
26898
|
readonly districtType: {
|
|
26899
26899
|
readonly type: "string";
|
|
26900
26900
|
};
|
|
@@ -27054,7 +27054,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
27054
27054
|
}>, _input: {
|
|
27055
27055
|
active: boolean;
|
|
27056
27056
|
}) => void;
|
|
27057
|
-
readonly setGridSnap: (t: import("
|
|
27057
|
+
readonly setGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
27058
27058
|
readonly districtType: {
|
|
27059
27059
|
readonly type: "string";
|
|
27060
27060
|
};
|
|
@@ -27214,7 +27214,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
27214
27214
|
}>, _input: {
|
|
27215
27215
|
enabled: boolean;
|
|
27216
27216
|
}) => void;
|
|
27217
|
-
readonly setActiveGridSnap: (t: import("
|
|
27217
|
+
readonly setActiveGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
27218
27218
|
readonly districtType: {
|
|
27219
27219
|
readonly type: "string";
|
|
27220
27220
|
};
|
|
@@ -27374,7 +27374,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
27374
27374
|
}>, _input: {
|
|
27375
27375
|
time: number | null;
|
|
27376
27376
|
}) => void;
|
|
27377
|
-
readonly setCrossDistrictDrag: (t: import("
|
|
27377
|
+
readonly setCrossDistrictDrag: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
27378
27378
|
readonly districtType: {
|
|
27379
27379
|
readonly type: "string";
|
|
27380
27380
|
};
|
|
@@ -27534,7 +27534,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
27534
27534
|
}>, _input: {
|
|
27535
27535
|
active: boolean;
|
|
27536
27536
|
}) => void;
|
|
27537
|
-
readonly clearCrossDistrictPreviews: (t: import("
|
|
27537
|
+
readonly clearCrossDistrictPreviews: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
27538
27538
|
readonly districtType: {
|
|
27539
27539
|
readonly type: "string";
|
|
27540
27540
|
};
|
|
@@ -27692,7 +27692,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
27694
|
}>) => void;
|
|
27695
|
-
readonly resizeFreeformBuilding: (t: import("
|
|
27695
|
+
readonly resizeFreeformBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
27696
27696
|
readonly districtType: {
|
|
27697
27697
|
readonly type: "string";
|
|
27698
27698
|
};
|
|
@@ -27854,7 +27854,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
27854
27854
|
edge: "left" | "right";
|
|
27855
27855
|
deltaPx: number;
|
|
27856
27856
|
}) => void;
|
|
27857
|
-
readonly resizeCompactBuilding: (t: import("
|
|
27857
|
+
readonly resizeCompactBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
27858
27858
|
readonly districtType: {
|
|
27859
27859
|
readonly type: "string";
|
|
27860
27860
|
};
|
|
@@ -28016,7 +28016,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
28016
28016
|
edge: "left" | "right";
|
|
28017
28017
|
deltaPx: number;
|
|
28018
28018
|
}) => void;
|
|
28019
|
-
readonly splitAtCursor: (t: import("
|
|
28019
|
+
readonly splitAtCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
28020
28020
|
readonly districtType: {
|
|
28021
28021
|
readonly type: "string";
|
|
28022
28022
|
};
|
|
@@ -28176,7 +28176,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
28176
28176
|
}>, _input: {
|
|
28177
28177
|
userId: string;
|
|
28178
28178
|
}) => void;
|
|
28179
|
-
readonly deleteSelected: (t: import("
|
|
28179
|
+
readonly deleteSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
28180
28180
|
readonly districtType: {
|
|
28181
28181
|
readonly type: "string";
|
|
28182
28182
|
};
|
|
@@ -28336,7 +28336,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
28336
28336
|
}>, _input: {
|
|
28337
28337
|
userId: string;
|
|
28338
28338
|
}) => void;
|
|
28339
|
-
readonly toggleCondemned: (t: import("
|
|
28339
|
+
readonly toggleCondemned: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
28340
28340
|
readonly districtType: {
|
|
28341
28341
|
readonly type: "string";
|
|
28342
28342
|
};
|
|
@@ -28496,7 +28496,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
28496
28496
|
}>, _input: {
|
|
28497
28497
|
buildingId: Entity;
|
|
28498
28498
|
}) => void;
|
|
28499
|
-
readonly deselectAll: (t: import("
|
|
28499
|
+
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
28500
28500
|
readonly districtType: {
|
|
28501
28501
|
readonly type: "string";
|
|
28502
28502
|
};
|
|
@@ -28656,7 +28656,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
28656
28656
|
}>, _input: {
|
|
28657
28657
|
userId: string;
|
|
28658
28658
|
}) => void;
|
|
28659
|
-
readonly selectAll: (t: import("
|
|
28659
|
+
readonly selectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
28660
28660
|
readonly districtType: {
|
|
28661
28661
|
readonly type: "string";
|
|
28662
28662
|
};
|
|
@@ -28816,7 +28816,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
28816
28816
|
}>, _input: {
|
|
28817
28817
|
userId: string;
|
|
28818
28818
|
}) => void;
|
|
28819
|
-
readonly setSelectionFromIds: (t: import("
|
|
28819
|
+
readonly setSelectionFromIds: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
28820
28820
|
readonly districtType: {
|
|
28821
28821
|
readonly type: "string";
|
|
28822
28822
|
};
|
|
@@ -28978,7 +28978,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
28978
28978
|
userId: string;
|
|
28979
28979
|
additive: boolean;
|
|
28980
28980
|
}) => void;
|
|
28981
|
-
readonly resizeSelectedToCursor: (t: import("
|
|
28981
|
+
readonly resizeSelectedToCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
28982
28982
|
readonly districtType: {
|
|
28983
28983
|
readonly type: "string";
|
|
28984
28984
|
};
|
|
@@ -30089,7 +30089,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
30089
30089
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
30090
30090
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
30091
30091
|
}, import("../index.js").ToTransactionFunctions<{} & {
|
|
30092
|
-
readonly createDistrict: (t: import("
|
|
30092
|
+
readonly createDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
30093
30093
|
readonly districtType: {
|
|
30094
30094
|
readonly type: "string";
|
|
30095
30095
|
};
|
|
@@ -30250,7 +30250,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
30250
30250
|
districtType: string;
|
|
30251
30251
|
zoning: string;
|
|
30252
30252
|
}) => void;
|
|
30253
|
-
readonly deleteDistrict: (t: import("
|
|
30253
|
+
readonly deleteDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
30254
30254
|
readonly districtType: {
|
|
30255
30255
|
readonly type: "string";
|
|
30256
30256
|
};
|
|
@@ -30408,7 +30408,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
30410
|
}>, _id: Entity) => void;
|
|
30411
|
-
readonly createBuilding: (t: import("
|
|
30411
|
+
readonly createBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
30412
30412
|
readonly districtType: {
|
|
30413
30413
|
readonly type: "string";
|
|
30414
30414
|
};
|
|
@@ -30569,7 +30569,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
30569
30569
|
parentDistrict: Entity;
|
|
30570
30570
|
positionX: number;
|
|
30571
30571
|
}) => void;
|
|
30572
|
-
readonly deleteBuilding: (t: import("
|
|
30572
|
+
readonly deleteBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
30573
30573
|
readonly districtType: {
|
|
30574
30574
|
readonly type: "string";
|
|
30575
30575
|
};
|
|
@@ -30727,7 +30727,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
30729
|
}>, _id: Entity) => void;
|
|
30730
|
-
readonly updateBuilding: (t: import("
|
|
30730
|
+
readonly updateBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
30731
30731
|
readonly districtType: {
|
|
30732
30732
|
readonly type: "string";
|
|
30733
30733
|
};
|
|
@@ -30890,7 +30890,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
30890
30890
|
positionX: number;
|
|
30891
30891
|
density: number;
|
|
30892
30892
|
}>) => void;
|
|
30893
|
-
readonly selectExclusive: (t: import("
|
|
30893
|
+
readonly selectExclusive: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
30894
30894
|
readonly districtType: {
|
|
30895
30895
|
readonly type: "string";
|
|
30896
30896
|
};
|
|
@@ -31051,7 +31051,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
31051
31051
|
entityId: Entity;
|
|
31052
31052
|
userId: string;
|
|
31053
31053
|
}) => void;
|
|
31054
|
-
readonly toggleSelected: (t: import("
|
|
31054
|
+
readonly toggleSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
31055
31055
|
readonly districtType: {
|
|
31056
31056
|
readonly type: "string";
|
|
31057
31057
|
};
|
|
@@ -31212,7 +31212,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
31212
31212
|
entityId: Entity;
|
|
31213
31213
|
userId: string;
|
|
31214
31214
|
}) => void;
|
|
31215
|
-
readonly ensureSelected: (t: import("
|
|
31215
|
+
readonly ensureSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
31216
31216
|
readonly districtType: {
|
|
31217
31217
|
readonly type: "string";
|
|
31218
31218
|
};
|
|
@@ -31373,7 +31373,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
31373
31373
|
entityId: Entity;
|
|
31374
31374
|
userId: string;
|
|
31375
31375
|
}) => void;
|
|
31376
|
-
readonly moveSelectedBuildings: (t: import("
|
|
31376
|
+
readonly moveSelectedBuildings: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
31377
31377
|
readonly districtType: {
|
|
31378
31378
|
readonly type: "string";
|
|
31379
31379
|
};
|
|
@@ -31533,7 +31533,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
31533
31533
|
}>, _input: {
|
|
31534
31534
|
deltaUnits: number;
|
|
31535
31535
|
}) => void;
|
|
31536
|
-
readonly setCursorTime: (t: import("
|
|
31536
|
+
readonly setCursorTime: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
31537
31537
|
readonly districtType: {
|
|
31538
31538
|
readonly type: "string";
|
|
31539
31539
|
};
|
|
@@ -31693,7 +31693,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
31693
31693
|
}>, _input: {
|
|
31694
31694
|
time: number;
|
|
31695
31695
|
}) => void;
|
|
31696
|
-
readonly setSimulationState: (t: import("
|
|
31696
|
+
readonly setSimulationState: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
31697
31697
|
readonly districtType: {
|
|
31698
31698
|
readonly type: "string";
|
|
31699
31699
|
};
|
|
@@ -31853,7 +31853,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
31853
31853
|
}>, _input: {
|
|
31854
31854
|
state: string;
|
|
31855
31855
|
}) => void;
|
|
31856
|
-
readonly setZoomLevel: (t: import("
|
|
31856
|
+
readonly setZoomLevel: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
31857
31857
|
readonly districtType: {
|
|
31858
31858
|
readonly type: "string";
|
|
31859
31859
|
};
|
|
@@ -32013,7 +32013,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
32013
32013
|
}>, _input: {
|
|
32014
32014
|
level: number;
|
|
32015
32015
|
}) => void;
|
|
32016
|
-
readonly setDemolishTool: (t: import("
|
|
32016
|
+
readonly setDemolishTool: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
32017
32017
|
readonly districtType: {
|
|
32018
32018
|
readonly type: "string";
|
|
32019
32019
|
};
|
|
@@ -32173,7 +32173,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
32173
32173
|
}>, _input: {
|
|
32174
32174
|
active: boolean;
|
|
32175
32175
|
}) => void;
|
|
32176
|
-
readonly setGridSnap: (t: import("
|
|
32176
|
+
readonly setGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
32177
32177
|
readonly districtType: {
|
|
32178
32178
|
readonly type: "string";
|
|
32179
32179
|
};
|
|
@@ -32333,7 +32333,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
32333
32333
|
}>, _input: {
|
|
32334
32334
|
enabled: boolean;
|
|
32335
32335
|
}) => void;
|
|
32336
|
-
readonly setActiveGridSnap: (t: import("
|
|
32336
|
+
readonly setActiveGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
32337
32337
|
readonly districtType: {
|
|
32338
32338
|
readonly type: "string";
|
|
32339
32339
|
};
|
|
@@ -32493,7 +32493,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
32493
32493
|
}>, _input: {
|
|
32494
32494
|
time: number | null;
|
|
32495
32495
|
}) => void;
|
|
32496
|
-
readonly setCrossDistrictDrag: (t: import("
|
|
32496
|
+
readonly setCrossDistrictDrag: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
32497
32497
|
readonly districtType: {
|
|
32498
32498
|
readonly type: "string";
|
|
32499
32499
|
};
|
|
@@ -32653,7 +32653,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
32653
32653
|
}>, _input: {
|
|
32654
32654
|
active: boolean;
|
|
32655
32655
|
}) => void;
|
|
32656
|
-
readonly clearCrossDistrictPreviews: (t: import("
|
|
32656
|
+
readonly clearCrossDistrictPreviews: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
32657
32657
|
readonly districtType: {
|
|
32658
32658
|
readonly type: "string";
|
|
32659
32659
|
};
|
|
@@ -32811,7 +32811,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
32813
|
}>) => void;
|
|
32814
|
-
readonly resizeFreeformBuilding: (t: import("
|
|
32814
|
+
readonly resizeFreeformBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
32815
32815
|
readonly districtType: {
|
|
32816
32816
|
readonly type: "string";
|
|
32817
32817
|
};
|
|
@@ -32973,7 +32973,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
32973
32973
|
edge: "left" | "right";
|
|
32974
32974
|
deltaPx: number;
|
|
32975
32975
|
}) => void;
|
|
32976
|
-
readonly resizeCompactBuilding: (t: import("
|
|
32976
|
+
readonly resizeCompactBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
32977
32977
|
readonly districtType: {
|
|
32978
32978
|
readonly type: "string";
|
|
32979
32979
|
};
|
|
@@ -33135,7 +33135,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
33135
33135
|
edge: "left" | "right";
|
|
33136
33136
|
deltaPx: number;
|
|
33137
33137
|
}) => void;
|
|
33138
|
-
readonly splitAtCursor: (t: import("
|
|
33138
|
+
readonly splitAtCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
33139
33139
|
readonly districtType: {
|
|
33140
33140
|
readonly type: "string";
|
|
33141
33141
|
};
|
|
@@ -33295,7 +33295,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
33295
33295
|
}>, _input: {
|
|
33296
33296
|
userId: string;
|
|
33297
33297
|
}) => void;
|
|
33298
|
-
readonly deleteSelected: (t: import("
|
|
33298
|
+
readonly deleteSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
33299
33299
|
readonly districtType: {
|
|
33300
33300
|
readonly type: "string";
|
|
33301
33301
|
};
|
|
@@ -33455,7 +33455,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
33455
33455
|
}>, _input: {
|
|
33456
33456
|
userId: string;
|
|
33457
33457
|
}) => void;
|
|
33458
|
-
readonly toggleCondemned: (t: import("
|
|
33458
|
+
readonly toggleCondemned: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
33459
33459
|
readonly districtType: {
|
|
33460
33460
|
readonly type: "string";
|
|
33461
33461
|
};
|
|
@@ -33615,7 +33615,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
33615
33615
|
}>, _input: {
|
|
33616
33616
|
buildingId: Entity;
|
|
33617
33617
|
}) => void;
|
|
33618
|
-
readonly deselectAll: (t: import("
|
|
33618
|
+
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
33619
33619
|
readonly districtType: {
|
|
33620
33620
|
readonly type: "string";
|
|
33621
33621
|
};
|
|
@@ -33775,7 +33775,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
33775
33775
|
}>, _input: {
|
|
33776
33776
|
userId: string;
|
|
33777
33777
|
}) => void;
|
|
33778
|
-
readonly selectAll: (t: import("
|
|
33778
|
+
readonly selectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
33779
33779
|
readonly districtType: {
|
|
33780
33780
|
readonly type: "string";
|
|
33781
33781
|
};
|
|
@@ -33935,7 +33935,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
33935
33935
|
}>, _input: {
|
|
33936
33936
|
userId: string;
|
|
33937
33937
|
}) => void;
|
|
33938
|
-
readonly setSelectionFromIds: (t: import("
|
|
33938
|
+
readonly setSelectionFromIds: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
33939
33939
|
readonly districtType: {
|
|
33940
33940
|
readonly type: "string";
|
|
33941
33941
|
};
|
|
@@ -34097,7 +34097,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
34097
34097
|
userId: string;
|
|
34098
34098
|
additive: boolean;
|
|
34099
34099
|
}) => void;
|
|
34100
|
-
readonly resizeSelectedToCursor: (t: import("
|
|
34100
|
+
readonly resizeSelectedToCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
34101
34101
|
readonly districtType: {
|
|
34102
34102
|
readonly type: "string";
|
|
34103
34103
|
};
|
|
@@ -35208,7 +35208,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
35208
35208
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
35209
35209
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
35210
35210
|
}, import("../index.js").ToTransactionFunctions<{} & {
|
|
35211
|
-
readonly createDistrict: (t: import("
|
|
35211
|
+
readonly createDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
35212
35212
|
readonly districtType: {
|
|
35213
35213
|
readonly type: "string";
|
|
35214
35214
|
};
|
|
@@ -35369,7 +35369,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
35369
35369
|
districtType: string;
|
|
35370
35370
|
zoning: string;
|
|
35371
35371
|
}) => void;
|
|
35372
|
-
readonly deleteDistrict: (t: import("
|
|
35372
|
+
readonly deleteDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
35373
35373
|
readonly districtType: {
|
|
35374
35374
|
readonly type: "string";
|
|
35375
35375
|
};
|
|
@@ -35527,7 +35527,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
35529
|
}>, _id: Entity) => void;
|
|
35530
|
-
readonly createBuilding: (t: import("
|
|
35530
|
+
readonly createBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
35531
35531
|
readonly districtType: {
|
|
35532
35532
|
readonly type: "string";
|
|
35533
35533
|
};
|
|
@@ -35688,7 +35688,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
35688
35688
|
parentDistrict: Entity;
|
|
35689
35689
|
positionX: number;
|
|
35690
35690
|
}) => void;
|
|
35691
|
-
readonly deleteBuilding: (t: import("
|
|
35691
|
+
readonly deleteBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
35692
35692
|
readonly districtType: {
|
|
35693
35693
|
readonly type: "string";
|
|
35694
35694
|
};
|
|
@@ -35846,7 +35846,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
35848
|
}>, _id: Entity) => void;
|
|
35849
|
-
readonly updateBuilding: (t: import("
|
|
35849
|
+
readonly updateBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
35850
35850
|
readonly districtType: {
|
|
35851
35851
|
readonly type: "string";
|
|
35852
35852
|
};
|
|
@@ -36009,7 +36009,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
36009
36009
|
positionX: number;
|
|
36010
36010
|
density: number;
|
|
36011
36011
|
}>) => void;
|
|
36012
|
-
readonly selectExclusive: (t: import("
|
|
36012
|
+
readonly selectExclusive: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
36013
36013
|
readonly districtType: {
|
|
36014
36014
|
readonly type: "string";
|
|
36015
36015
|
};
|
|
@@ -36170,7 +36170,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
36170
36170
|
entityId: Entity;
|
|
36171
36171
|
userId: string;
|
|
36172
36172
|
}) => void;
|
|
36173
|
-
readonly toggleSelected: (t: import("
|
|
36173
|
+
readonly toggleSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
36174
36174
|
readonly districtType: {
|
|
36175
36175
|
readonly type: "string";
|
|
36176
36176
|
};
|
|
@@ -36331,7 +36331,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
36331
36331
|
entityId: Entity;
|
|
36332
36332
|
userId: string;
|
|
36333
36333
|
}) => void;
|
|
36334
|
-
readonly ensureSelected: (t: import("
|
|
36334
|
+
readonly ensureSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
36335
36335
|
readonly districtType: {
|
|
36336
36336
|
readonly type: "string";
|
|
36337
36337
|
};
|
|
@@ -36492,7 +36492,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
36492
36492
|
entityId: Entity;
|
|
36493
36493
|
userId: string;
|
|
36494
36494
|
}) => void;
|
|
36495
|
-
readonly moveSelectedBuildings: (t: import("
|
|
36495
|
+
readonly moveSelectedBuildings: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
36496
36496
|
readonly districtType: {
|
|
36497
36497
|
readonly type: "string";
|
|
36498
36498
|
};
|
|
@@ -36652,7 +36652,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
36652
36652
|
}>, _input: {
|
|
36653
36653
|
deltaUnits: number;
|
|
36654
36654
|
}) => void;
|
|
36655
|
-
readonly setCursorTime: (t: import("
|
|
36655
|
+
readonly setCursorTime: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
36656
36656
|
readonly districtType: {
|
|
36657
36657
|
readonly type: "string";
|
|
36658
36658
|
};
|
|
@@ -36812,7 +36812,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
36812
36812
|
}>, _input: {
|
|
36813
36813
|
time: number;
|
|
36814
36814
|
}) => void;
|
|
36815
|
-
readonly setSimulationState: (t: import("
|
|
36815
|
+
readonly setSimulationState: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
36816
36816
|
readonly districtType: {
|
|
36817
36817
|
readonly type: "string";
|
|
36818
36818
|
};
|
|
@@ -36972,7 +36972,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
36972
36972
|
}>, _input: {
|
|
36973
36973
|
state: string;
|
|
36974
36974
|
}) => void;
|
|
36975
|
-
readonly setZoomLevel: (t: import("
|
|
36975
|
+
readonly setZoomLevel: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
36976
36976
|
readonly districtType: {
|
|
36977
36977
|
readonly type: "string";
|
|
36978
36978
|
};
|
|
@@ -37132,7 +37132,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
37132
37132
|
}>, _input: {
|
|
37133
37133
|
level: number;
|
|
37134
37134
|
}) => void;
|
|
37135
|
-
readonly setDemolishTool: (t: import("
|
|
37135
|
+
readonly setDemolishTool: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
37136
37136
|
readonly districtType: {
|
|
37137
37137
|
readonly type: "string";
|
|
37138
37138
|
};
|
|
@@ -37292,7 +37292,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
37292
37292
|
}>, _input: {
|
|
37293
37293
|
active: boolean;
|
|
37294
37294
|
}) => void;
|
|
37295
|
-
readonly setGridSnap: (t: import("
|
|
37295
|
+
readonly setGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
37296
37296
|
readonly districtType: {
|
|
37297
37297
|
readonly type: "string";
|
|
37298
37298
|
};
|
|
@@ -37452,7 +37452,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
37452
37452
|
}>, _input: {
|
|
37453
37453
|
enabled: boolean;
|
|
37454
37454
|
}) => void;
|
|
37455
|
-
readonly setActiveGridSnap: (t: import("
|
|
37455
|
+
readonly setActiveGridSnap: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
37456
37456
|
readonly districtType: {
|
|
37457
37457
|
readonly type: "string";
|
|
37458
37458
|
};
|
|
@@ -37612,7 +37612,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
37612
37612
|
}>, _input: {
|
|
37613
37613
|
time: number | null;
|
|
37614
37614
|
}) => void;
|
|
37615
|
-
readonly setCrossDistrictDrag: (t: import("
|
|
37615
|
+
readonly setCrossDistrictDrag: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
37616
37616
|
readonly districtType: {
|
|
37617
37617
|
readonly type: "string";
|
|
37618
37618
|
};
|
|
@@ -37772,7 +37772,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
37772
37772
|
}>, _input: {
|
|
37773
37773
|
active: boolean;
|
|
37774
37774
|
}) => void;
|
|
37775
|
-
readonly clearCrossDistrictPreviews: (t: import("
|
|
37775
|
+
readonly clearCrossDistrictPreviews: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
37776
37776
|
readonly districtType: {
|
|
37777
37777
|
readonly type: "string";
|
|
37778
37778
|
};
|
|
@@ -37930,7 +37930,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
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
37932
|
}>) => void;
|
|
37933
|
-
readonly resizeFreeformBuilding: (t: import("
|
|
37933
|
+
readonly resizeFreeformBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
37934
37934
|
readonly districtType: {
|
|
37935
37935
|
readonly type: "string";
|
|
37936
37936
|
};
|
|
@@ -38092,7 +38092,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
38092
38092
|
edge: "left" | "right";
|
|
38093
38093
|
deltaPx: number;
|
|
38094
38094
|
}) => void;
|
|
38095
|
-
readonly resizeCompactBuilding: (t: import("
|
|
38095
|
+
readonly resizeCompactBuilding: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
38096
38096
|
readonly districtType: {
|
|
38097
38097
|
readonly type: "string";
|
|
38098
38098
|
};
|
|
@@ -38254,7 +38254,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
38254
38254
|
edge: "left" | "right";
|
|
38255
38255
|
deltaPx: number;
|
|
38256
38256
|
}) => void;
|
|
38257
|
-
readonly splitAtCursor: (t: import("
|
|
38257
|
+
readonly splitAtCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
38258
38258
|
readonly districtType: {
|
|
38259
38259
|
readonly type: "string";
|
|
38260
38260
|
};
|
|
@@ -38414,7 +38414,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
38414
38414
|
}>, _input: {
|
|
38415
38415
|
userId: string;
|
|
38416
38416
|
}) => void;
|
|
38417
|
-
readonly deleteSelected: (t: import("
|
|
38417
|
+
readonly deleteSelected: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
38418
38418
|
readonly districtType: {
|
|
38419
38419
|
readonly type: "string";
|
|
38420
38420
|
};
|
|
@@ -38574,7 +38574,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
38574
38574
|
}>, _input: {
|
|
38575
38575
|
userId: string;
|
|
38576
38576
|
}) => void;
|
|
38577
|
-
readonly toggleCondemned: (t: import("
|
|
38577
|
+
readonly toggleCondemned: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
38578
38578
|
readonly districtType: {
|
|
38579
38579
|
readonly type: "string";
|
|
38580
38580
|
};
|
|
@@ -38734,7 +38734,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
38734
38734
|
}>, _input: {
|
|
38735
38735
|
buildingId: Entity;
|
|
38736
38736
|
}) => void;
|
|
38737
|
-
readonly deselectAll: (t: import("
|
|
38737
|
+
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
38738
38738
|
readonly districtType: {
|
|
38739
38739
|
readonly type: "string";
|
|
38740
38740
|
};
|
|
@@ -38894,7 +38894,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
38894
38894
|
}>, _input: {
|
|
38895
38895
|
userId: string;
|
|
38896
38896
|
}) => void;
|
|
38897
|
-
readonly selectAll: (t: import("
|
|
38897
|
+
readonly selectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
38898
38898
|
readonly districtType: {
|
|
38899
38899
|
readonly type: "string";
|
|
38900
38900
|
};
|
|
@@ -39054,7 +39054,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
39054
39054
|
}>, _input: {
|
|
39055
39055
|
userId: string;
|
|
39056
39056
|
}) => void;
|
|
39057
|
-
readonly setSelectionFromIds: (t: import("
|
|
39057
|
+
readonly setSelectionFromIds: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
39058
39058
|
readonly districtType: {
|
|
39059
39059
|
readonly type: "string";
|
|
39060
39060
|
};
|
|
@@ -39216,7 +39216,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
39216
39216
|
userId: string;
|
|
39217
39217
|
additive: boolean;
|
|
39218
39218
|
}) => void;
|
|
39219
|
-
readonly resizeSelectedToCursor: (t: import("
|
|
39219
|
+
readonly resizeSelectedToCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
39220
39220
|
readonly districtType: {
|
|
39221
39221
|
readonly type: "string";
|
|
39222
39222
|
};
|