@hubfluencer/mcp 0.8.2 → 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,9 @@ 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(),
65
68
  // Short only, additive (normalizeStatus forwards them gated on typeof
66
69
  // boolean, so the precise type can never reject a payload).
67
70
  latest_render_free: z.boolean().optional(),
@@ -79,6 +82,9 @@ export const waitForCompletionOutput = z
79
82
  ready: z.boolean().optional(),
80
83
  video_url: z.union([z.string(), z.null()]).optional(),
81
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(),
82
88
  latest_render_free: z.boolean().optional(),
83
89
  last_free_rerender_failed: z.boolean().optional(),
84
90
  saved_to: z.union([z.string(), z.null()]).optional(),
@@ -191,6 +197,11 @@ export const createEditorOutput = z
191
197
  slug: z.union([z.string(), z.null()]).optional(),
192
198
  kind: z.string().optional(),
193
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(),
194
205
  next: z.string().optional(),
195
206
  })
196
207
  .passthrough();
@@ -206,8 +217,8 @@ export const makeVideoOutput = z
206
217
  ready: z.boolean().optional(),
207
218
  video_url: z.union([z.string(), z.null()]).optional(),
208
219
  error: z.union([z.string(), z.null()]).optional(),
209
- estimated_credits: z.unknown().optional(),
210
- 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(),
211
222
  affordable: z.boolean().optional(),
212
223
  charged: z.boolean().optional(),
213
224
  saved_to: z.union([z.string(), z.null()]).optional(),