@mestra-dev/contract 0.0.101 → 0.0.103
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/index.d.ts +47 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3297,6 +3297,18 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
3297
3297
|
readonly type: "string";
|
|
3298
3298
|
readonly nullable: true;
|
|
3299
3299
|
};
|
|
3300
|
+
readonly housingType: {
|
|
3301
|
+
readonly type: "string";
|
|
3302
|
+
readonly nullable: true;
|
|
3303
|
+
};
|
|
3304
|
+
readonly commercialType: {
|
|
3305
|
+
readonly type: "string";
|
|
3306
|
+
readonly nullable: true;
|
|
3307
|
+
};
|
|
3308
|
+
readonly landType: {
|
|
3309
|
+
readonly type: "string";
|
|
3310
|
+
readonly nullable: true;
|
|
3311
|
+
};
|
|
3300
3312
|
readonly maxMetroDistance: {
|
|
3301
3313
|
readonly type: "integer";
|
|
3302
3314
|
readonly nullable: true;
|
|
@@ -9344,6 +9356,15 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
9344
9356
|
readonly propertyType: {
|
|
9345
9357
|
readonly type: "string";
|
|
9346
9358
|
};
|
|
9359
|
+
readonly housingType: {
|
|
9360
|
+
readonly type: "string";
|
|
9361
|
+
};
|
|
9362
|
+
readonly commercialType: {
|
|
9363
|
+
readonly type: "string";
|
|
9364
|
+
};
|
|
9365
|
+
readonly landType: {
|
|
9366
|
+
readonly type: "string";
|
|
9367
|
+
};
|
|
9347
9368
|
readonly maxMetroDistance: {
|
|
9348
9369
|
readonly type: "number";
|
|
9349
9370
|
readonly minimum: 0;
|
|
@@ -9545,6 +9566,15 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
9545
9566
|
readonly propertyType: {
|
|
9546
9567
|
readonly type: "string";
|
|
9547
9568
|
};
|
|
9569
|
+
readonly housingType: {
|
|
9570
|
+
readonly type: "string";
|
|
9571
|
+
};
|
|
9572
|
+
readonly commercialType: {
|
|
9573
|
+
readonly type: "string";
|
|
9574
|
+
};
|
|
9575
|
+
readonly landType: {
|
|
9576
|
+
readonly type: "string";
|
|
9577
|
+
};
|
|
9548
9578
|
readonly maxMetroDistance: {
|
|
9549
9579
|
readonly type: "number";
|
|
9550
9580
|
readonly minimum: 0;
|
|
@@ -16004,6 +16034,9 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
16004
16034
|
roomsCount: number | null;
|
|
16005
16035
|
preferredDistricts: string[] | null;
|
|
16006
16036
|
propertyType: string | null;
|
|
16037
|
+
housingType: string | null;
|
|
16038
|
+
commercialType: string | null;
|
|
16039
|
+
landType: string | null;
|
|
16007
16040
|
maxMetroDistance: number | null;
|
|
16008
16041
|
dealStatus: string | null;
|
|
16009
16042
|
preferredPaymentMethod: string | null;
|
|
@@ -16224,10 +16257,10 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
16224
16257
|
suspended_at: string | null;
|
|
16225
16258
|
roomsCount: number | null;
|
|
16226
16259
|
propertyType: string | null;
|
|
16227
|
-
propertyStatus: string | null;
|
|
16228
16260
|
commercialType: string | null;
|
|
16229
|
-
commercialClass: string | null;
|
|
16230
16261
|
landType: string | null;
|
|
16262
|
+
propertyStatus: string | null;
|
|
16263
|
+
commercialClass: string | null;
|
|
16231
16264
|
ownershipType: string | null;
|
|
16232
16265
|
loadingDockAccess: boolean | null;
|
|
16233
16266
|
waterAccess: boolean | null;
|
|
@@ -16626,6 +16659,9 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
16626
16659
|
roomsCount: number | null;
|
|
16627
16660
|
preferredDistricts: string[] | null;
|
|
16628
16661
|
propertyType: string | null;
|
|
16662
|
+
housingType: string | null;
|
|
16663
|
+
commercialType: string | null;
|
|
16664
|
+
landType: string | null;
|
|
16629
16665
|
maxMetroDistance: number | null;
|
|
16630
16666
|
dealStatus: string | null;
|
|
16631
16667
|
preferredPaymentMethod: string | null;
|
|
@@ -16687,6 +16723,9 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
16687
16723
|
roomsCount: number | null;
|
|
16688
16724
|
preferredDistricts: string[] | null;
|
|
16689
16725
|
propertyType: string | null;
|
|
16726
|
+
housingType: string | null;
|
|
16727
|
+
commercialType: string | null;
|
|
16728
|
+
landType: string | null;
|
|
16690
16729
|
maxMetroDistance: number | null;
|
|
16691
16730
|
dealStatus: string | null;
|
|
16692
16731
|
preferredPaymentMethod: string | null;
|
|
@@ -16764,6 +16803,9 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
16764
16803
|
roomsCount: number | null;
|
|
16765
16804
|
preferredDistricts: string[] | null;
|
|
16766
16805
|
propertyType: string | null;
|
|
16806
|
+
housingType: string | null;
|
|
16807
|
+
commercialType: string | null;
|
|
16808
|
+
landType: string | null;
|
|
16767
16809
|
maxMetroDistance: number | null;
|
|
16768
16810
|
dealStatus: string | null;
|
|
16769
16811
|
preferredPaymentMethod: string | null;
|
|
@@ -16866,6 +16908,9 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
16866
16908
|
roomsCount: number | null;
|
|
16867
16909
|
preferredDistricts: string[] | null;
|
|
16868
16910
|
propertyType: string | null;
|
|
16911
|
+
housingType: string | null;
|
|
16912
|
+
commercialType: string | null;
|
|
16913
|
+
landType: string | null;
|
|
16869
16914
|
maxMetroDistance: number | null;
|
|
16870
16915
|
dealStatus: string | null;
|
|
16871
16916
|
preferredPaymentMethod: string | null;
|