Membrane React - v0.2.1
    Preparing search index...

    Variable createFlowInstanceSchemaConst

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