@mestra-dev/contract 0.0.124 → 0.0.126
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 +22 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4135,6 +4135,8 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
4135
4135
|
"workspaceId",
|
|
4136
4136
|
"workspaceName",
|
|
4137
4137
|
"seats",
|
|
4138
|
+
"planId",
|
|
4139
|
+
"planCode",
|
|
4138
4140
|
"planName",
|
|
4139
4141
|
"interval",
|
|
4140
4142
|
"billingCycles",
|
|
@@ -4158,6 +4160,13 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
4158
4160
|
readonly seats: {
|
|
4159
4161
|
readonly $ref: "#/components/schemas/WorkspaceMaxCollaborators";
|
|
4160
4162
|
};
|
|
4163
|
+
readonly planId: {
|
|
4164
|
+
readonly type: "string";
|
|
4165
|
+
readonly format: "uuid";
|
|
4166
|
+
};
|
|
4167
|
+
readonly planCode: {
|
|
4168
|
+
readonly type: "string";
|
|
4169
|
+
};
|
|
4161
4170
|
readonly planName: {
|
|
4162
4171
|
readonly type: "string";
|
|
4163
4172
|
};
|
|
@@ -4198,6 +4207,8 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
4198
4207
|
"id",
|
|
4199
4208
|
"workspaceId",
|
|
4200
4209
|
"planId",
|
|
4210
|
+
"planCode",
|
|
4211
|
+
"planName",
|
|
4201
4212
|
"status",
|
|
4202
4213
|
"kind",
|
|
4203
4214
|
"seats",
|
|
@@ -4219,6 +4230,12 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
4219
4230
|
readonly type: "string";
|
|
4220
4231
|
readonly format: "uuid";
|
|
4221
4232
|
};
|
|
4233
|
+
readonly planCode: {
|
|
4234
|
+
readonly type: "string";
|
|
4235
|
+
};
|
|
4236
|
+
readonly planName: {
|
|
4237
|
+
readonly type: "string";
|
|
4238
|
+
};
|
|
4222
4239
|
readonly status: {
|
|
4223
4240
|
readonly type: "string";
|
|
4224
4241
|
readonly enum: readonly [
|
|
@@ -15478,6 +15495,8 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
15478
15495
|
planId: string;
|
|
15479
15496
|
};
|
|
15480
15497
|
pendingInvoice: {
|
|
15498
|
+
planCode: string;
|
|
15499
|
+
planName: string;
|
|
15481
15500
|
updated_at: string | null;
|
|
15482
15501
|
deleted_at: string | null;
|
|
15483
15502
|
verified_at: string | null;
|
|
@@ -15499,7 +15518,7 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
15499
15518
|
providerPaymentId: string | null;
|
|
15500
15519
|
paymentUrl: string | null;
|
|
15501
15520
|
paidAt: string | null;
|
|
15502
|
-
};
|
|
15521
|
+
} | null;
|
|
15503
15522
|
recommendations: {
|
|
15504
15523
|
usage: {
|
|
15505
15524
|
tasks: number;
|
|
@@ -21904,6 +21923,8 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
21904
21923
|
workspaceId: string;
|
|
21905
21924
|
workspaceName: string;
|
|
21906
21925
|
seats: number;
|
|
21926
|
+
planId: string;
|
|
21927
|
+
planCode: string;
|
|
21907
21928
|
planName: string;
|
|
21908
21929
|
interval: string;
|
|
21909
21930
|
billingCycles: number;
|