···200200 response?: StringName;
201201 };
202202 /**
203203+ * The top type to use for untyped or unspecified schema values.
204204+ *
205205+ * Can be:
206206+ * - `unknown` (default): safe top type, you must narrow before use
207207+ * - `any`: disables type checking, can be used anywhere
208208+ *
209209+ * @default 'unknown'
210210+ */
211211+ topType?: 'any' | 'unknown';
212212+ /**
203213 * Configuration for webhook-specific types.
204214 *
205215 * Controls generation of types for webhook payloads and webhook requests.
···429439 */
430440 response: StringName;
431441 };
442442+ /**
443443+ * The top type to use for untyped or unspecified schema values.
444444+ *
445445+ * @default 'unknown'
446446+ */
447447+ topType: 'any' | 'unknown';
432448 /**
433449 * Configuration for webhook-specific types.
434450 *