@mestra-dev/contract 0.0.90 → 0.0.92

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 +26 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -19983,6 +19983,31 @@ declare const routes: import("hono/hono-base").HonoBase<{
19983
19983
  status: 400;
19984
19984
  };
19985
19985
  };
19986
+ } & {
19987
+ "/download-from-service/:workspace/:serviceId": {
19988
+ $get: {
19989
+ input: {
19990
+ param: {
19991
+ workspace: string;
19992
+ } & {
19993
+ serviceId: string;
19994
+ };
19995
+ };
19996
+ output: {
19997
+ success: true;
19998
+ files: {
19999
+ key: string;
20000
+ filename: string;
20001
+ commentId: string;
20002
+ size: number;
20003
+ lastModified: string | null;
20004
+ downloadUrl: string;
20005
+ }[];
20006
+ };
20007
+ outputFormat: "json";
20008
+ status: import("hono/utils/http-status").ContentfulStatusCode;
20009
+ };
20010
+ };
19986
20011
  } & {
19987
20012
  "/delete-service-file": {
19988
20013
  $post: {
@@ -20218,6 +20243,7 @@ declare const routes: import("hono/hono-base").HonoBase<{
20218
20243
  id: string;
20219
20244
  workspaceId: string;
20220
20245
  workspaceName: string;
20246
+ seats: number;
20221
20247
  planName: string;
20222
20248
  interval: string;
20223
20249
  billingCycles: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mestra-dev/contract",
3
- "version": "0.0.90",
3
+ "version": "0.0.92",
4
4
  "description": "Types-only Hono AppType contract for the Mestra auth API",
5
5
  "type": "module",
6
6
  "sideEffects": false,