@mestra-dev/contract 0.0.107 → 0.0.108
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 +43 -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;
|
|
@@ -3465,6 +3498,15 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
3465
3498
|
readonly type: "string";
|
|
3466
3499
|
readonly format: "uuid";
|
|
3467
3500
|
};
|
|
3501
|
+
readonly created_by: {
|
|
3502
|
+
readonly type: "string";
|
|
3503
|
+
readonly format: "uuid";
|
|
3504
|
+
readonly nullable: true;
|
|
3505
|
+
readonly description: "User id of the creator. Set automatically from the bearer token on create.";
|
|
3506
|
+
};
|
|
3507
|
+
readonly createdBy: {
|
|
3508
|
+
readonly $ref: "#/components/schemas/CreatedByUser";
|
|
3509
|
+
};
|
|
3468
3510
|
readonly title: {
|
|
3469
3511
|
readonly type: "string";
|
|
3470
3512
|
};
|