@mestra-dev/contract 0.0.122 → 0.0.124

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +40 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -3393,6 +3393,17 @@ declare const routes: import("hono/hono-base").HonoBase<{
3393
3393
  readonly housingType: {
3394
3394
  readonly type: "string";
3395
3395
  readonly nullable: true;
3396
+ readonly description: "Housing type preference.";
3397
+ };
3398
+ readonly housingTypeNew: {
3399
+ readonly type: "boolean";
3400
+ readonly nullable: true;
3401
+ readonly description: "Whether the customer is interested in newly built housing.";
3402
+ };
3403
+ readonly housingTypeResale: {
3404
+ readonly type: "boolean";
3405
+ readonly nullable: true;
3406
+ readonly description: "Whether the customer is interested in resale housing.";
3396
3407
  };
3397
3408
  readonly commercialType: {
3398
3409
  readonly type: "string";
@@ -6437,7 +6448,7 @@ declare const routes: import("hono/hono-base").HonoBase<{
6437
6448
  "Workspace"
6438
6449
  ];
6439
6450
  readonly summary: "List workspaces for the authenticated user";
6440
- readonly description: "Returns workspaces the user collaborates on, each with category, plan code, role, billing flags, invitation state, workspace profile picture URL, and the resource grants effective for the caller. Also returns `unpaidLimit` (5): the maximum pending unpaid Economy/Standard/Professional invoices an owner may hold before create is blocked.";
6451
+ readonly description: "Returns workspaces the user collaborates on, each with category, plan code, subscription status, trial end date when applicable, role, billing flags, invitation state, workspace profile picture URL, and the resource grants effective for the caller. Also returns `unpaidLimit` (5): the maximum pending unpaid Economy/Standard/Professional invoices an owner may hold before create is blocked.";
6441
6452
  readonly security: readonly [
6442
6453
  never
6443
6454
  ];
@@ -9473,6 +9484,15 @@ declare const routes: import("hono/hono-base").HonoBase<{
9473
9484
  };
9474
9485
  readonly housingType: {
9475
9486
  readonly type: "string";
9487
+ readonly description: "Housing type preference.";
9488
+ };
9489
+ readonly housingTypeNew: {
9490
+ readonly type: "boolean";
9491
+ readonly description: "Whether the customer is interested in newly built housing.";
9492
+ };
9493
+ readonly housingTypeResale: {
9494
+ readonly type: "boolean";
9495
+ readonly description: "Whether the customer is interested in resale housing.";
9476
9496
  };
9477
9497
  readonly commercialType: {
9478
9498
  readonly type: "string";
@@ -9696,6 +9716,15 @@ declare const routes: import("hono/hono-base").HonoBase<{
9696
9716
  };
9697
9717
  readonly housingType: {
9698
9718
  readonly type: "string";
9719
+ readonly description: "Housing type preference.";
9720
+ };
9721
+ readonly housingTypeNew: {
9722
+ readonly type: "boolean";
9723
+ readonly description: "Whether the customer is interested in newly built housing.";
9724
+ };
9725
+ readonly housingTypeResale: {
9726
+ readonly type: "boolean";
9727
+ readonly description: "Whether the customer is interested in resale housing.";
9699
9728
  };
9700
9729
  readonly commercialType: {
9701
9730
  readonly type: "string";
@@ -16170,6 +16199,8 @@ declare const routes: import("hono/hono-base").HonoBase<{
16170
16199
  preferredDistricts: string[] | null;
16171
16200
  propertyType: string | null;
16172
16201
  housingType: string | null;
16202
+ housingTypeNew: boolean | null;
16203
+ housingTypeResale: boolean | null;
16173
16204
  commercialType: string | null;
16174
16205
  landType: string | null;
16175
16206
  maxMetroDistance: number | null;
@@ -16816,6 +16847,8 @@ declare const routes: import("hono/hono-base").HonoBase<{
16816
16847
  preferredDistricts: string[] | null;
16817
16848
  propertyType: string | null;
16818
16849
  housingType: string | null;
16850
+ housingTypeNew: boolean | null;
16851
+ housingTypeResale: boolean | null;
16819
16852
  commercialType: string | null;
16820
16853
  landType: string | null;
16821
16854
  maxMetroDistance: number | null;
@@ -16891,6 +16924,8 @@ declare const routes: import("hono/hono-base").HonoBase<{
16891
16924
  preferredDistricts: string[] | null;
16892
16925
  propertyType: string | null;
16893
16926
  housingType: string | null;
16927
+ housingTypeNew: boolean | null;
16928
+ housingTypeResale: boolean | null;
16894
16929
  commercialType: string | null;
16895
16930
  landType: string | null;
16896
16931
  maxMetroDistance: number | null;
@@ -16982,6 +17017,8 @@ declare const routes: import("hono/hono-base").HonoBase<{
16982
17017
  preferredDistricts: string[] | null;
16983
17018
  propertyType: string | null;
16984
17019
  housingType: string | null;
17020
+ housingTypeNew: boolean | null;
17021
+ housingTypeResale: boolean | null;
16985
17022
  commercialType: string | null;
16986
17023
  landType: string | null;
16987
17024
  maxMetroDistance: number | null;
@@ -17092,6 +17129,8 @@ declare const routes: import("hono/hono-base").HonoBase<{
17092
17129
  preferredDistricts: string[] | null;
17093
17130
  propertyType: string | null;
17094
17131
  housingType: string | null;
17132
+ housingTypeNew: boolean | null;
17133
+ housingTypeResale: boolean | null;
17095
17134
  commercialType: string | null;
17096
17135
  landType: string | null;
17097
17136
  maxMetroDistance: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mestra-dev/contract",
3
- "version": "0.0.122",
3
+ "version": "0.0.124",
4
4
  "description": "Types-only Hono AppType contract for the Mestra auth API",
5
5
  "type": "module",
6
6
  "sideEffects": false,