@hubfluencer/mcp 0.8.1 → 0.9.0

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.
@@ -62,6 +62,13 @@ 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
+ stale: z.boolean().optional(),
66
+ active_segment_ids: z.array(z.union([z.number(), z.string()])).optional(),
67
+ stale_segment_ids: z.array(z.union([z.number(), z.string()])).optional(),
68
+ // Short only, additive (normalizeStatus forwards them gated on typeof
69
+ // boolean, so the precise type can never reject a payload).
70
+ latest_render_free: z.boolean().optional(),
71
+ last_free_rerender_failed: z.boolean().optional(),
65
72
  })
66
73
  .passthrough();
67
74
 
@@ -75,6 +82,11 @@ export const waitForCompletionOutput = z
75
82
  ready: z.boolean().optional(),
76
83
  video_url: z.union([z.string(), z.null()]).optional(),
77
84
  error: z.union([z.string(), z.null()]).optional(),
85
+ stale: z.boolean().optional(),
86
+ active_segment_ids: z.array(z.union([z.number(), z.string()])).optional(),
87
+ stale_segment_ids: z.array(z.union([z.number(), z.string()])).optional(),
88
+ latest_render_free: z.boolean().optional(),
89
+ last_free_rerender_failed: z.boolean().optional(),
78
90
  saved_to: z.union([z.string(), z.null()]).optional(),
79
91
  timed_out: z.boolean().optional(),
80
92
  })
@@ -147,6 +159,8 @@ const projectRow = z
147
159
  ready: z.boolean().optional(),
148
160
  video_url: z.union([z.string(), z.null()]).optional(),
149
161
  error: z.union([z.string(), z.null()]).optional(),
162
+ latest_render_free: z.boolean().optional(),
163
+ last_free_rerender_failed: z.boolean().optional(),
150
164
  })
151
165
  .passthrough();
152
166
 
@@ -183,6 +197,11 @@ export const createEditorOutput = z
183
197
  slug: z.union([z.string(), z.null()]).optional(),
184
198
  kind: z.string().optional(),
185
199
  status: projectRow.optional(),
200
+ estimated_credits: z.union([z.number(), z.null()]).optional(),
201
+ available_credits: z.union([z.number(), z.null()]).optional(),
202
+ affordable: z.boolean().optional(),
203
+ charged: z.boolean().optional(),
204
+ note: z.string().optional(),
186
205
  next: z.string().optional(),
187
206
  })
188
207
  .passthrough();
@@ -198,8 +217,8 @@ export const makeVideoOutput = z
198
217
  ready: z.boolean().optional(),
199
218
  video_url: z.union([z.string(), z.null()]).optional(),
200
219
  error: z.union([z.string(), z.null()]).optional(),
201
- estimated_credits: z.unknown().optional(),
202
- available_credits: z.unknown().optional(),
220
+ estimated_credits: z.union([z.number(), z.null()]).optional(),
221
+ available_credits: z.union([z.number(), z.null()]).optional(),
203
222
  affordable: z.boolean().optional(),
204
223
  charged: z.boolean().optional(),
205
224
  saved_to: z.union([z.string(), z.null()]).optional(),