Regenerate the frontend SDK

Picks up the unauthenticated_hook validation issue.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01KkmeRiyeYmVZqJVwuyHq9o
This commit is contained in:
Melvin Strobl
2026-08-15 21:20:05 +02:00
co-authored by Claude Opus 5
parent 8a221bfe50
commit 6156ad1150
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -959,7 +959,7 @@ export const ValidationIssueSchema = {
properties: { properties: {
code: { code: {
type: 'string', type: 'string',
enum: ['cycle', 'unconnected_input', 'missing_initial_value', 'node_error'], enum: ['cycle', 'unconnected_input', 'missing_initial_value', 'node_error', 'unauthenticated_hook'],
title: 'Code' title: 'Code'
}, },
message: { message: {
+2 -2
View File
@@ -279,7 +279,7 @@ export type ValidationError = {
* A problem that keeps a flow from running correctly. * A problem that keeps a flow from running correctly.
*/ */
export type ValidationIssue = { export type ValidationIssue = {
code: 'cycle' | 'unconnected_input' | 'missing_initial_value' | 'node_error'; code: 'cycle' | 'unconnected_input' | 'missing_initial_value' | 'node_error' | 'unauthenticated_hook';
message: string; message: string;
flow?: string; flow?: string;
nodes?: Array<(string)>; nodes?: Array<(string)>;
@@ -288,7 +288,7 @@ export type ValidationIssue = {
message_name?: (string | null); message_name?: (string | null);
}; };
export type code = 'cycle' | 'unconnected_input' | 'missing_initial_value' | 'node_error'; export type code = 'cycle' | 'unconnected_input' | 'missing_initial_value' | 'node_error' | 'unauthenticated_hook';
export type ValidationResult = { export type ValidationResult = {
issues?: Array<ValidationIssue>; issues?: Array<ValidationIssue>;