@mestra-dev/contract 0.0.89 → 0.0.90

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 +9 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -3108,6 +3108,11 @@ declare const routes: import("hono/hono-base").HonoBase<{
3108
3108
  readonly title: {
3109
3109
  readonly type: "string";
3110
3110
  };
3111
+ readonly active: {
3112
+ readonly type: "boolean";
3113
+ readonly nullable: true;
3114
+ readonly description: "Whether the listing is active. Defaults to true.";
3115
+ };
3111
3116
  readonly type: {
3112
3117
  readonly type: "string";
3113
3118
  readonly nullable: true;
@@ -9499,6 +9504,10 @@ declare const routes: import("hono/hono-base").HonoBase<{
9499
9504
  readonly type: "string";
9500
9505
  readonly description: "Listing title.";
9501
9506
  };
9507
+ readonly active: {
9508
+ readonly type: "boolean";
9509
+ readonly description: "Whether the listing is active. Defaults to true when omitted.";
9510
+ };
9502
9511
  readonly type: {
9503
9512
  readonly type: "string";
9504
9513
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mestra-dev/contract",
3
- "version": "0.0.89",
3
+ "version": "0.0.90",
4
4
  "description": "Types-only Hono AppType contract for the Mestra auth API",
5
5
  "type": "module",
6
6
  "sideEffects": false,