@adobe/data 0.9.66 → 0.9.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ecs/database/archetype-row.type-test.d.ts +1 -0
- package/dist/ecs/database/archetype-row.type-test.js +31 -0
- package/dist/ecs/database/archetype-row.type-test.js.map +1 -0
- package/dist/ecs/database/combine-plugins.d.ts +8 -7
- package/dist/ecs/database/combine-plugins.js.map +1 -1
- package/dist/ecs/database/combine-plugins.type-test.d.ts +1 -0
- package/dist/ecs/database/combine-plugins.type-test.js +37 -0
- package/dist/ecs/database/combine-plugins.type-test.js.map +1 -0
- package/dist/ecs/database/database.d.ts +17 -1
- package/dist/ecs/database/database.index.test.js +67 -0
- package/dist/ecs/database/database.index.test.js.map +1 -1
- package/dist/ecs/database/database.js.map +1 -1
- package/dist/ecs/database/deep-extends-chain.type-test.d.ts +37 -20
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/references/data-lit/package.json +1 -1
- package/references/data-lit-tictactoe/package.json +1 -1
- package/references/data-react/package.json +1 -1
- package/references/data-react-hello/package.json +1 -1
- package/references/data-react-pixie/package.json +1 -1
|
@@ -97,7 +97,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
97
97
|
readonly maximum: 2147483647;
|
|
98
98
|
readonly default: number;
|
|
99
99
|
};
|
|
100
|
-
}, {
|
|
100
|
+
} & {}, {
|
|
101
101
|
readonly pixelsPerUnit: {
|
|
102
102
|
readonly default: F32;
|
|
103
103
|
};
|
|
@@ -156,11 +156,11 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
156
156
|
size: number;
|
|
157
157
|
} | null;
|
|
158
158
|
};
|
|
159
|
-
}, {
|
|
159
|
+
} & {}, {
|
|
160
160
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
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
164
|
readonly createDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
165
165
|
readonly districtType: {
|
|
166
166
|
readonly type: "string";
|
|
@@ -3687,6 +3687,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
3687
3687
|
}, {} & {}>, _input: {
|
|
3688
3688
|
buildingId: Entity;
|
|
3689
3689
|
}) => void;
|
|
3690
|
+
} & {
|
|
3690
3691
|
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
3691
3692
|
readonly districtType: {
|
|
3692
3693
|
readonly type: "string";
|
|
@@ -4169,6 +4170,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
4169
4170
|
userId: string;
|
|
4170
4171
|
additive: boolean;
|
|
4171
4172
|
}) => void;
|
|
4173
|
+
} & {
|
|
4172
4174
|
readonly resizeSelectedToCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
4173
4175
|
readonly districtType: {
|
|
4174
4176
|
readonly type: "string";
|
|
@@ -4330,7 +4332,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
4330
4332
|
userId: string;
|
|
4331
4333
|
edge: "left" | "right";
|
|
4332
4334
|
}) => void;
|
|
4333
|
-
}, never, {
|
|
4335
|
+
} & {}, never, {
|
|
4334
4336
|
readonly selectExclusive: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
4335
4337
|
readonly districtType: {
|
|
4336
4338
|
readonly type: "string";
|
|
@@ -4488,7 +4490,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
4488
4490
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
4489
4491
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
4490
4492
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
4491
|
-
}, import("../index.js").ToTransactionFunctions<{} & {
|
|
4493
|
+
}, import("../index.js").ToTransactionFunctions<{} & {} & {
|
|
4492
4494
|
readonly createDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
4493
4495
|
readonly districtType: {
|
|
4494
4496
|
readonly type: "string";
|
|
@@ -8015,6 +8017,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
8015
8017
|
}, {} & {}>, _input: {
|
|
8016
8018
|
buildingId: Entity;
|
|
8017
8019
|
}) => void;
|
|
8020
|
+
} & {
|
|
8018
8021
|
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
8019
8022
|
readonly districtType: {
|
|
8020
8023
|
readonly type: "string";
|
|
@@ -8497,6 +8500,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
8497
8500
|
userId: string;
|
|
8498
8501
|
additive: boolean;
|
|
8499
8502
|
}) => void;
|
|
8503
|
+
} & {
|
|
8500
8504
|
readonly resizeSelectedToCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
8501
8505
|
readonly districtType: {
|
|
8502
8506
|
readonly type: "string";
|
|
@@ -8658,7 +8662,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
8658
8662
|
userId: string;
|
|
8659
8663
|
edge: "left" | "right";
|
|
8660
8664
|
}) => void;
|
|
8661
|
-
}>, never, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{}
|
|
8665
|
+
}>, never, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{}>, import("./database.js").FromComputedFactories<{} & {
|
|
8662
8666
|
readonly districts: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
8663
8667
|
readonly districtType: {
|
|
8664
8668
|
readonly type: "string";
|
|
@@ -9607,7 +9611,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
9607
9611
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
9608
9612
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
9609
9613
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
9610
|
-
}, import("../index.js").ToTransactionFunctions<{} & {
|
|
9614
|
+
}, import("../index.js").ToTransactionFunctions<{} & {} & {
|
|
9611
9615
|
readonly createDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
9612
9616
|
readonly districtType: {
|
|
9613
9617
|
readonly type: "string";
|
|
@@ -13134,6 +13138,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
13134
13138
|
}, {} & {}>, _input: {
|
|
13135
13139
|
buildingId: Entity;
|
|
13136
13140
|
}) => void;
|
|
13141
|
+
} & {
|
|
13137
13142
|
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
13138
13143
|
readonly districtType: {
|
|
13139
13144
|
readonly type: "string";
|
|
@@ -13616,6 +13621,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
13616
13621
|
userId: string;
|
|
13617
13622
|
additive: boolean;
|
|
13618
13623
|
}) => void;
|
|
13624
|
+
} & {
|
|
13619
13625
|
readonly resizeSelectedToCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
13620
13626
|
readonly districtType: {
|
|
13621
13627
|
readonly type: "string";
|
|
@@ -13777,7 +13783,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
13777
13783
|
userId: string;
|
|
13778
13784
|
edge: "left" | "right";
|
|
13779
13785
|
}) => void;
|
|
13780
|
-
}>, never, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{}
|
|
13786
|
+
}>, never, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{}>, import("./database.js").FromComputedFactories<{} & {
|
|
13781
13787
|
readonly districts: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
13782
13788
|
readonly districtType: {
|
|
13783
13789
|
readonly type: "string";
|
|
@@ -14726,7 +14732,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
14726
14732
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
14727
14733
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
14728
14734
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
14729
|
-
}, import("../index.js").ToTransactionFunctions<{} & {
|
|
14735
|
+
}, import("../index.js").ToTransactionFunctions<{} & {} & {
|
|
14730
14736
|
readonly createDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
14731
14737
|
readonly districtType: {
|
|
14732
14738
|
readonly type: "string";
|
|
@@ -18253,6 +18259,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
18253
18259
|
}, {} & {}>, _input: {
|
|
18254
18260
|
buildingId: Entity;
|
|
18255
18261
|
}) => void;
|
|
18262
|
+
} & {
|
|
18256
18263
|
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
18257
18264
|
readonly districtType: {
|
|
18258
18265
|
readonly type: "string";
|
|
@@ -18735,6 +18742,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
18735
18742
|
userId: string;
|
|
18736
18743
|
additive: boolean;
|
|
18737
18744
|
}) => void;
|
|
18745
|
+
} & {
|
|
18738
18746
|
readonly resizeSelectedToCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
18739
18747
|
readonly districtType: {
|
|
18740
18748
|
readonly type: "string";
|
|
@@ -18896,7 +18904,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
18896
18904
|
userId: string;
|
|
18897
18905
|
edge: "left" | "right";
|
|
18898
18906
|
}) => void;
|
|
18899
|
-
}>, never, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{}
|
|
18907
|
+
}>, never, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{}>, import("./database.js").FromComputedFactories<{} & {
|
|
18900
18908
|
readonly districts: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
18901
18909
|
readonly districtType: {
|
|
18902
18910
|
readonly type: "string";
|
|
@@ -19847,7 +19855,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
19847
19855
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
19848
19856
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
19849
19857
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
19850
|
-
}, import("../index.js").ToTransactionFunctions<{} & {
|
|
19858
|
+
}, import("../index.js").ToTransactionFunctions<{} & {} & {
|
|
19851
19859
|
readonly createDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
19852
19860
|
readonly districtType: {
|
|
19853
19861
|
readonly type: "string";
|
|
@@ -23374,6 +23382,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
23374
23382
|
}, {} & {}>, _input: {
|
|
23375
23383
|
buildingId: Entity;
|
|
23376
23384
|
}) => void;
|
|
23385
|
+
} & {
|
|
23377
23386
|
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
23378
23387
|
readonly districtType: {
|
|
23379
23388
|
readonly type: "string";
|
|
@@ -23856,6 +23865,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
23856
23865
|
userId: string;
|
|
23857
23866
|
additive: boolean;
|
|
23858
23867
|
}) => void;
|
|
23868
|
+
} & {
|
|
23859
23869
|
readonly resizeSelectedToCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
23860
23870
|
readonly districtType: {
|
|
23861
23871
|
readonly type: "string";
|
|
@@ -24017,7 +24027,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
24017
24027
|
userId: string;
|
|
24018
24028
|
edge: "left" | "right";
|
|
24019
24029
|
}) => void;
|
|
24020
|
-
}>, never, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{}
|
|
24030
|
+
}>, never, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{}>, import("./database.js").FromComputedFactories<{} & {
|
|
24021
24031
|
readonly districts: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
24022
24032
|
readonly districtType: {
|
|
24023
24033
|
readonly type: "string";
|
|
@@ -24969,7 +24979,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
24969
24979
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
24970
24980
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
24971
24981
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
24972
|
-
}, import("../index.js").ToTransactionFunctions<{} & {
|
|
24982
|
+
}, import("../index.js").ToTransactionFunctions<{} & {} & {
|
|
24973
24983
|
readonly createDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
24974
24984
|
readonly districtType: {
|
|
24975
24985
|
readonly type: "string";
|
|
@@ -28496,6 +28506,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
28496
28506
|
}, {} & {}>, _input: {
|
|
28497
28507
|
buildingId: Entity;
|
|
28498
28508
|
}) => void;
|
|
28509
|
+
} & {
|
|
28499
28510
|
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
28500
28511
|
readonly districtType: {
|
|
28501
28512
|
readonly type: "string";
|
|
@@ -28978,6 +28989,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
28978
28989
|
userId: string;
|
|
28979
28990
|
additive: boolean;
|
|
28980
28991
|
}) => void;
|
|
28992
|
+
} & {
|
|
28981
28993
|
readonly resizeSelectedToCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
28982
28994
|
readonly districtType: {
|
|
28983
28995
|
readonly type: "string";
|
|
@@ -29139,7 +29151,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
29139
29151
|
userId: string;
|
|
29140
29152
|
edge: "left" | "right";
|
|
29141
29153
|
}) => void;
|
|
29142
|
-
}>, never, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{}
|
|
29154
|
+
}>, never, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{}>, import("./database.js").FromComputedFactories<{} & {
|
|
29143
29155
|
readonly districts: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
29144
29156
|
readonly districtType: {
|
|
29145
29157
|
readonly type: "string";
|
|
@@ -29931,6 +29943,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
29931
29943
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
29932
29944
|
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
29933
29945
|
}>, {} & {}>, delta: number) => Promise<void>;
|
|
29946
|
+
} & {
|
|
29934
29947
|
readonly stepTicks: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
29935
29948
|
readonly districtType: {
|
|
29936
29949
|
readonly type: "string";
|
|
@@ -30088,7 +30101,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
30088
30101
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
30089
30102
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
30090
30103
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
30091
|
-
}, import("../index.js").ToTransactionFunctions<{} & {
|
|
30104
|
+
}, import("../index.js").ToTransactionFunctions<{} & {} & {
|
|
30092
30105
|
readonly createDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
30093
30106
|
readonly districtType: {
|
|
30094
30107
|
readonly type: "string";
|
|
@@ -33615,6 +33628,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
33615
33628
|
}, {} & {}>, _input: {
|
|
33616
33629
|
buildingId: Entity;
|
|
33617
33630
|
}) => void;
|
|
33631
|
+
} & {
|
|
33618
33632
|
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
33619
33633
|
readonly districtType: {
|
|
33620
33634
|
readonly type: "string";
|
|
@@ -34097,6 +34111,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
34097
34111
|
userId: string;
|
|
34098
34112
|
additive: boolean;
|
|
34099
34113
|
}) => void;
|
|
34114
|
+
} & {
|
|
34100
34115
|
readonly resizeSelectedToCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
34101
34116
|
readonly districtType: {
|
|
34102
34117
|
readonly type: "string";
|
|
@@ -34258,7 +34273,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
34258
34273
|
userId: string;
|
|
34259
34274
|
edge: "left" | "right";
|
|
34260
34275
|
}) => void;
|
|
34261
|
-
}>, never, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{}
|
|
34276
|
+
}>, never, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{}>, import("./database.js").FromComputedFactories<{} & {
|
|
34262
34277
|
readonly districts: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
34263
34278
|
readonly districtType: {
|
|
34264
34279
|
readonly type: "string";
|
|
@@ -35207,7 +35222,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
35207
35222
|
readonly District: readonly ["districtType", "zoning", "districtLocked", "districtActive", "overlay", "sortOrder", "selectedByUsers"];
|
|
35208
35223
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
35209
35224
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
35210
|
-
}, import("../index.js").ToTransactionFunctions<{} & {
|
|
35225
|
+
}, import("../index.js").ToTransactionFunctions<{} & {} & {
|
|
35211
35226
|
readonly createDistrict: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
35212
35227
|
readonly districtType: {
|
|
35213
35228
|
readonly type: "string";
|
|
@@ -38734,6 +38749,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
38734
38749
|
}, {} & {}>, _input: {
|
|
38735
38750
|
buildingId: Entity;
|
|
38736
38751
|
}) => void;
|
|
38752
|
+
} & {
|
|
38737
38753
|
readonly deselectAll: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
38738
38754
|
readonly districtType: {
|
|
38739
38755
|
readonly type: "string";
|
|
@@ -39216,6 +39232,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
39216
39232
|
userId: string;
|
|
39217
39233
|
additive: boolean;
|
|
39218
39234
|
}) => void;
|
|
39235
|
+
} & {
|
|
39219
39236
|
readonly resizeSelectedToCursor: (t: import("./index.js").TransactionContext<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
39220
39237
|
readonly districtType: {
|
|
39221
39238
|
readonly type: "string";
|
|
@@ -39377,7 +39394,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
39377
39394
|
userId: string;
|
|
39378
39395
|
edge: "left" | "right";
|
|
39379
39396
|
}) => void;
|
|
39380
|
-
}>, never, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{}
|
|
39397
|
+
}>, never, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{}>, import("./database.js").FromComputedFactories<{} & {
|
|
39381
39398
|
readonly districts: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
39382
39399
|
readonly districtType: {
|
|
39383
39400
|
readonly type: "string";
|
|
@@ -40169,7 +40186,7 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
40169
40186
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
40170
40187
|
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
40171
40188
|
}>, {} & {}>) => Promise<void>;
|
|
40172
|
-
}, {}, {
|
|
40189
|
+
}, {}, {} & {
|
|
40173
40190
|
readonly districts: (db: Database<import("../../schema/from-schemas.js").FromSchemas<{} & {
|
|
40174
40191
|
readonly districtType: {
|
|
40175
40192
|
readonly type: "string";
|
|
@@ -40960,4 +40977,4 @@ export declare function create(): Database.FromPlugin<Database.Plugin<{
|
|
|
40960
40977
|
readonly Building: readonly ["parentDistrict", "buildingType", "positionX", "footprintStart", "footprintEnd", "maxFootprint", "blueprintRef", "density", "height", "visibility", "overlay", "condemned", "sortOrder", "selectedByUsers"];
|
|
40961
40978
|
readonly Road: readonly ["parentBuilding", "roadType", "roadLength", "roadId"];
|
|
40962
40979
|
}, import("../index.js").ToTransactionFunctions<{}>, string, import("../index.js").ToActionFunctions<{}>, import("./database.js").FromServiceFactories<{} & {}>, unknown, {} & {}>) => Observe<number>;
|
|
40963
|
-
}, {}>>;
|
|
40980
|
+
}, {} & {}>>;
|