@mestra-dev/contract 0.0.107 → 0.0.109
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 +60 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
26
26
|
readonly openapi: "3.0.3";
|
|
27
27
|
readonly info: {
|
|
28
28
|
readonly title: "Auth Service API";
|
|
29
|
-
readonly version: "1.5.
|
|
29
|
+
readonly version: "1.5.7";
|
|
30
30
|
readonly description: "OpenAPI specification for the Auth, Integrations, Workspace, Payments, Tasks, Templates, Tags, Comments, Assignees, Chat, Events, Billings, Files, and Notifications endpoints exposed by the k3-core platform. Unhandled HTTPException and unexpected errors are normalized by the global error handler to `{ success: false, error: string }` (status preserved for HTTPException; 500 otherwise).";
|
|
31
31
|
};
|
|
32
32
|
readonly servers: readonly [
|
|
@@ -3214,6 +3214,30 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
3214
3214
|
};
|
|
3215
3215
|
};
|
|
3216
3216
|
};
|
|
3217
|
+
readonly CreatedByUser: {
|
|
3218
|
+
readonly type: "object";
|
|
3219
|
+
readonly nullable: true;
|
|
3220
|
+
readonly description: "User who created the record. Present on get/list when `created_by` is set; null when unset or the user is missing.";
|
|
3221
|
+
readonly properties: {
|
|
3222
|
+
readonly id: {
|
|
3223
|
+
readonly type: "string";
|
|
3224
|
+
readonly format: "uuid";
|
|
3225
|
+
readonly nullable: true;
|
|
3226
|
+
};
|
|
3227
|
+
readonly firstName: {
|
|
3228
|
+
readonly type: "string";
|
|
3229
|
+
readonly nullable: true;
|
|
3230
|
+
};
|
|
3231
|
+
readonly lastName: {
|
|
3232
|
+
readonly type: "string";
|
|
3233
|
+
readonly nullable: true;
|
|
3234
|
+
};
|
|
3235
|
+
readonly profilePicture: {
|
|
3236
|
+
readonly type: "string";
|
|
3237
|
+
readonly nullable: true;
|
|
3238
|
+
};
|
|
3239
|
+
};
|
|
3240
|
+
};
|
|
3217
3241
|
readonly Customer: {
|
|
3218
3242
|
readonly type: "object";
|
|
3219
3243
|
readonly required: readonly [
|
|
@@ -3230,6 +3254,15 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
3230
3254
|
readonly type: "string";
|
|
3231
3255
|
readonly format: "uuid";
|
|
3232
3256
|
};
|
|
3257
|
+
readonly created_by: {
|
|
3258
|
+
readonly type: "string";
|
|
3259
|
+
readonly format: "uuid";
|
|
3260
|
+
readonly nullable: true;
|
|
3261
|
+
readonly description: "User id of the creator. Set automatically from the bearer token on create.";
|
|
3262
|
+
};
|
|
3263
|
+
readonly createdBy: {
|
|
3264
|
+
readonly $ref: "#/components/schemas/CreatedByUser";
|
|
3265
|
+
};
|
|
3233
3266
|
readonly type: {
|
|
3234
3267
|
readonly type: "string";
|
|
3235
3268
|
readonly nullable: true;
|
|
@@ -3297,6 +3330,10 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
3297
3330
|
readonly type: "integer";
|
|
3298
3331
|
readonly nullable: true;
|
|
3299
3332
|
};
|
|
3333
|
+
readonly mortgageBudget: {
|
|
3334
|
+
readonly type: "integer";
|
|
3335
|
+
readonly nullable: true;
|
|
3336
|
+
};
|
|
3300
3337
|
readonly minArea: {
|
|
3301
3338
|
readonly type: "integer";
|
|
3302
3339
|
readonly nullable: true;
|
|
@@ -3465,6 +3502,15 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
3465
3502
|
readonly type: "string";
|
|
3466
3503
|
readonly format: "uuid";
|
|
3467
3504
|
};
|
|
3505
|
+
readonly created_by: {
|
|
3506
|
+
readonly type: "string";
|
|
3507
|
+
readonly format: "uuid";
|
|
3508
|
+
readonly nullable: true;
|
|
3509
|
+
readonly description: "User id of the creator. Set automatically from the bearer token on create.";
|
|
3510
|
+
};
|
|
3511
|
+
readonly createdBy: {
|
|
3512
|
+
readonly $ref: "#/components/schemas/CreatedByUser";
|
|
3513
|
+
};
|
|
3468
3514
|
readonly title: {
|
|
3469
3515
|
readonly type: "string";
|
|
3470
3516
|
};
|
|
@@ -9358,6 +9404,10 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
9358
9404
|
readonly type: "number";
|
|
9359
9405
|
readonly minimum: 0;
|
|
9360
9406
|
};
|
|
9407
|
+
readonly mortgageBudget: {
|
|
9408
|
+
readonly type: "number";
|
|
9409
|
+
readonly minimum: 0;
|
|
9410
|
+
};
|
|
9361
9411
|
readonly minArea: {
|
|
9362
9412
|
readonly type: "number";
|
|
9363
9413
|
readonly minimum: 0;
|
|
@@ -9568,6 +9618,10 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
9568
9618
|
readonly type: "number";
|
|
9569
9619
|
readonly minimum: 0;
|
|
9570
9620
|
};
|
|
9621
|
+
readonly mortgageBudget: {
|
|
9622
|
+
readonly type: "number";
|
|
9623
|
+
readonly minimum: 0;
|
|
9624
|
+
};
|
|
9571
9625
|
readonly minArea: {
|
|
9572
9626
|
readonly type: "number";
|
|
9573
9627
|
readonly minimum: 0;
|
|
@@ -16053,6 +16107,7 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
16053
16107
|
budgetMax: number | null;
|
|
16054
16108
|
inHandBudget: number | null;
|
|
16055
16109
|
installmentBudget: number | null;
|
|
16110
|
+
mortgageBudget: number | null;
|
|
16056
16111
|
minArea: number | null;
|
|
16057
16112
|
maxArea: number | null;
|
|
16058
16113
|
roomsCount: number | null;
|
|
@@ -16695,6 +16750,7 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
16695
16750
|
budgetMax: number | null;
|
|
16696
16751
|
inHandBudget: number | null;
|
|
16697
16752
|
installmentBudget: number | null;
|
|
16753
|
+
mortgageBudget: number | null;
|
|
16698
16754
|
minArea: number | null;
|
|
16699
16755
|
maxArea: number | null;
|
|
16700
16756
|
roomsCount: number | null;
|
|
@@ -16766,6 +16822,7 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
16766
16822
|
budgetMax: number | null;
|
|
16767
16823
|
inHandBudget: number | null;
|
|
16768
16824
|
installmentBudget: number | null;
|
|
16825
|
+
mortgageBudget: number | null;
|
|
16769
16826
|
minArea: number | null;
|
|
16770
16827
|
maxArea: number | null;
|
|
16771
16828
|
roomsCount: number | null;
|
|
@@ -16853,6 +16910,7 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
16853
16910
|
budgetMax: number | null;
|
|
16854
16911
|
inHandBudget: number | null;
|
|
16855
16912
|
installmentBudget: number | null;
|
|
16913
|
+
mortgageBudget: number | null;
|
|
16856
16914
|
minArea: number | null;
|
|
16857
16915
|
maxArea: number | null;
|
|
16858
16916
|
roomsCount: number | null;
|
|
@@ -16959,6 +17017,7 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
16959
17017
|
budgetMax: number | null;
|
|
16960
17018
|
inHandBudget: number | null;
|
|
16961
17019
|
installmentBudget: number | null;
|
|
17020
|
+
mortgageBudget: number | null;
|
|
16962
17021
|
minArea: number | null;
|
|
16963
17022
|
maxArea: number | null;
|
|
16964
17023
|
roomsCount: number | null;
|