@mestra-dev/contract 0.0.121 → 0.0.122
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 +8 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -993,6 +993,7 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
993
993
|
"status",
|
|
994
994
|
"planCode",
|
|
995
995
|
"subscriptionStatus",
|
|
996
|
+
"trialEndsAt",
|
|
996
997
|
"isOwner",
|
|
997
998
|
"resources"
|
|
998
999
|
];
|
|
@@ -1045,6 +1046,12 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
1045
1046
|
];
|
|
1046
1047
|
readonly description: "Current billing subscription status. Null for legacy workspaces that predate subscriptions.";
|
|
1047
1048
|
};
|
|
1049
|
+
readonly trialEndsAt: {
|
|
1050
|
+
readonly type: "string";
|
|
1051
|
+
readonly format: "date-time";
|
|
1052
|
+
readonly nullable: true;
|
|
1053
|
+
readonly description: "Free-trial expiration time. Null for non-trial and legacy workspaces.";
|
|
1054
|
+
};
|
|
1048
1055
|
readonly token: {
|
|
1049
1056
|
readonly type: "string";
|
|
1050
1057
|
readonly nullable: true;
|
|
@@ -15389,6 +15396,7 @@ declare const routes: import("hono/hono-base").HonoBase<{
|
|
|
15389
15396
|
status: string;
|
|
15390
15397
|
planCode: string | null;
|
|
15391
15398
|
subscriptionStatus: string | null;
|
|
15399
|
+
trialEndsAt: string | null;
|
|
15392
15400
|
token: string | null;
|
|
15393
15401
|
isOwner: boolean;
|
|
15394
15402
|
resources: {
|