@mestra-dev/contract 0.0.19 → 0.0.21

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 +12 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -11823,6 +11823,18 @@ declare const routes: import("hono/hono-base").HonoBase<{
11823
11823
  } & {
11824
11824
  "/leave/:workspace": {
11825
11825
  $get: {
11826
+ input: {
11827
+ param: {
11828
+ workspace: string;
11829
+ };
11830
+ };
11831
+ output: {
11832
+ success: false;
11833
+ error: string;
11834
+ };
11835
+ outputFormat: "json";
11836
+ status: 404;
11837
+ } | {
11826
11838
  input: {
11827
11839
  param: {
11828
11840
  workspace: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mestra-dev/contract",
3
- "version": "0.0.19",
3
+ "version": "0.0.21",
4
4
  "description": "Types-only Hono AppType contract for the Mestra auth API",
5
5
  "type": "module",
6
6
  "sideEffects": false,