Variable createFlowInstanceSchemaConst
createFlowInstanceSchema: z.ZodObject<
{
name: z.ZodOptional<z.ZodString>;
userId: z.ZodOptional<z.ZodString>;
flowId: z.ZodOptional<z.ZodString>;
connectionId: z.ZodOptional<z.ZodString>;
integrationId: z.ZodOptional<z.ZodString>;
instanceKey: z.ZodOptional<z.ZodString>;
parameters: z.ZodOptional<z.ZodAny>;
nodes: z.ZodOptional<
z.ZodRecord<
z.ZodString,
z.ZodObject<
{
name: z.ZodOptional<z.ZodString>;
type: z.ZodOptional<z.ZodString>;
userConfig: z.ZodOptional<z.ZodAny>;
config: z.ZodOptional<z.ZodAny>;
onError: z.ZodOptional<z.ZodEnum<["stop", "continue"]>>;
concurrency: z.ZodOptional<z.ZodNumber>;
ui: z.ZodOptional<z.ZodAny>;
links: z.ZodOptional<
z.ZodArray<
z.ZodObject<
{
key: z.ZodOptional<(...)>;
filter: z.ZodOptional<(...)>;
name: z.ZodOptional<(...)>;
},
"strip",
z.ZodTypeAny,
{ key?: (...)
| (...); name?: (...) | (...); filter?: any },
{ key?: (...) | (...); name?: (...) | (...); filter?: any },
>,
"many",
>,
>;
isCustomized: z.ZodOptional<z.ZodBoolean>;
},
"strip",
z.ZodTypeAny,
{
concurrency?: number;
type?: string;
name?: string;
userConfig?: any;
config?: any;
onError?: "stop"
| "continue";
ui?: any;
links?: { key?: string; name?: string; filter?: any }[];
isCustomized?: boolean;
},
{
concurrency?: number;
type?: string;
name?: string;
userConfig?: any;
config?: any;
onError?: "stop"
| "continue";
ui?: any;
links?: { key?: string; name?: string; filter?: any }[];
isCustomized?: boolean;
},
>,
>,
>;
enabled: z.ZodOptional<z.ZodBoolean>;
customized: z.ZodOptional<
z.ZodObject<
{
name: z.ZodOptional<z.ZodBoolean>;
nodes: z.ZodOptional<z.ZodBoolean>;
},
"strip",
z.ZodTypeAny,
{ name?: boolean; nodes?: boolean },
{ name?: boolean; nodes?: boolean },
>,
>;
},
"strip",
z.ZodTypeAny,
{
name?: string;
userId?: string;
integrationId?: string;
connectionId?: string;
parameters?: any;
flowId?: string;
instanceKey?: string;
nodes?: Record<
string,
{
concurrency?: number;
type?: string;
name?: string;
userConfig?: any;
config?: any;
onError?: "stop"
| "continue";
ui?: any;
links?: { key?: string; name?: string; filter?: any }[];
isCustomized?: boolean;
},
>;
enabled?: boolean;
customized?: { name?: boolean; nodes?: boolean };
},
{
name?: string;
userId?: string;
integrationId?: string;
connectionId?: string;
parameters?: any;
flowId?: string;
instanceKey?: string;
nodes?: Record<
string,
{
concurrency?: number;
type?: string;
name?: string;
userConfig?: any;
config?: any;
onError?: "stop"
| "continue";
ui?: any;
links?: { key?: string; name?: string; filter?: any }[];
isCustomized?: boolean;
},
>;
enabled?: boolean;
customized?: { name?: boolean; nodes?: boolean };
},
>