@hubfluencer/mcp 0.7.1 → 0.8.2
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/README.md +28 -9
- package/dist/index.js +197 -37
- package/package.json +1 -1
- package/src/core.ts +22 -1
- package/src/index.ts +494 -49
- package/src/output-schemas.ts +8 -0
package/src/output-schemas.ts
CHANGED
|
@@ -62,6 +62,10 @@ export const getStatusOutput = z
|
|
|
62
62
|
ready: z.boolean().optional(),
|
|
63
63
|
video_url: z.union([z.string(), z.null()]).optional(),
|
|
64
64
|
error: z.union([z.string(), z.null()]).optional(),
|
|
65
|
+
// Short only, additive (normalizeStatus forwards them gated on typeof
|
|
66
|
+
// boolean, so the precise type can never reject a payload).
|
|
67
|
+
latest_render_free: z.boolean().optional(),
|
|
68
|
+
last_free_rerender_failed: z.boolean().optional(),
|
|
65
69
|
})
|
|
66
70
|
.passthrough();
|
|
67
71
|
|
|
@@ -75,6 +79,8 @@ export const waitForCompletionOutput = z
|
|
|
75
79
|
ready: z.boolean().optional(),
|
|
76
80
|
video_url: z.union([z.string(), z.null()]).optional(),
|
|
77
81
|
error: z.union([z.string(), z.null()]).optional(),
|
|
82
|
+
latest_render_free: z.boolean().optional(),
|
|
83
|
+
last_free_rerender_failed: z.boolean().optional(),
|
|
78
84
|
saved_to: z.union([z.string(), z.null()]).optional(),
|
|
79
85
|
timed_out: z.boolean().optional(),
|
|
80
86
|
})
|
|
@@ -147,6 +153,8 @@ const projectRow = z
|
|
|
147
153
|
ready: z.boolean().optional(),
|
|
148
154
|
video_url: z.union([z.string(), z.null()]).optional(),
|
|
149
155
|
error: z.union([z.string(), z.null()]).optional(),
|
|
156
|
+
latest_render_free: z.boolean().optional(),
|
|
157
|
+
last_free_rerender_failed: z.boolean().optional(),
|
|
150
158
|
})
|
|
151
159
|
.passthrough();
|
|
152
160
|
|