@mestra-dev/contract 0.0.88 → 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.
- package/dist/index.d.ts +12 -0
- 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
|
};
|
|
@@ -15138,6 +15147,7 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
15138
15147
|
title: string;
|
|
15139
15148
|
type: string | null;
|
|
15140
15149
|
created_at: string;
|
|
15150
|
+
active: boolean | null;
|
|
15141
15151
|
workspaceId: string;
|
|
15142
15152
|
description: string | null;
|
|
15143
15153
|
price: number | null;
|
|
@@ -15230,6 +15240,7 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
15230
15240
|
id: string;
|
|
15231
15241
|
workspaceId: string;
|
|
15232
15242
|
title: string;
|
|
15243
|
+
active: boolean | null;
|
|
15233
15244
|
type: string | null;
|
|
15234
15245
|
currency: string | null;
|
|
15235
15246
|
description: string | null;
|
|
@@ -15336,6 +15347,7 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
15336
15347
|
id: string;
|
|
15337
15348
|
workspaceId: string;
|
|
15338
15349
|
title: string;
|
|
15350
|
+
active: boolean | null;
|
|
15339
15351
|
type: string | null;
|
|
15340
15352
|
currency: string | null;
|
|
15341
15353
|
description: string | null;
|