@hubfluencer/mcp 0.11.0 → 0.13.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.
- package/README.md +37 -10
- package/dist/index.js +160 -64
- package/package.json +1 -1
- package/src/core.ts +17 -8
- package/src/index.ts +277 -105
- package/src/output-schemas.ts +8 -0
package/src/output-schemas.ts
CHANGED
|
@@ -91,6 +91,10 @@ export const getStatusOutput = z
|
|
|
91
91
|
.number()
|
|
92
92
|
.optional()
|
|
93
93
|
.describe("Short only: paid generation attempt number that failed."),
|
|
94
|
+
generation_attempt: z
|
|
95
|
+
.number()
|
|
96
|
+
.optional()
|
|
97
|
+
.describe("Short only: current paid attempt; echo when cancelling."),
|
|
94
98
|
latest_render_free: z.boolean().optional(),
|
|
95
99
|
last_free_rerender_failed: z.boolean().optional(),
|
|
96
100
|
})
|
|
@@ -134,6 +138,10 @@ export const waitForCompletionOutput = z
|
|
|
134
138
|
.number()
|
|
135
139
|
.optional()
|
|
136
140
|
.describe("Short only: paid generation attempt number that failed."),
|
|
141
|
+
generation_attempt: z
|
|
142
|
+
.number()
|
|
143
|
+
.optional()
|
|
144
|
+
.describe("Short only: current paid attempt; echo when cancelling."),
|
|
137
145
|
latest_render_free: z.boolean().optional(),
|
|
138
146
|
last_free_rerender_failed: z.boolean().optional(),
|
|
139
147
|
saved_to: z.union([z.string(), z.null()]).optional(),
|