@archastro/sdk
    Preparing search index...

    Variable notificationPreferenceListSchemaConst

    notificationPreferenceListSchema: ZodObject<
        {
            data: ZodArray<
                ZodObject<
                    {
                        app_id: ZodOptional<ZodString>;
                        channel: ZodString;
                        created_at: ZodOptional<ZodString>;
                        enabled: ZodBoolean;
                        id: ZodString;
                        type: ZodString;
                        updated_at: ZodOptional<ZodString>;
                    },
                    "strip",
                    ZodTypeAny,
                    {
                        app_id?: string;
                        channel: string;
                        created_at?: string;
                        enabled: boolean;
                        id: string;
                        type: string;
                        updated_at?: string;
                    },
                    {
                        app_id?: string;
                        channel: string;
                        created_at?: string;
                        enabled: boolean;
                        id: string;
                        type: string;
                        updated_at?: string;
                    },
                >,
                "many",
            >;
        },
        "strip",
        ZodTypeAny,
        {
            data: {
                app_id?: string;
                channel: string;
                created_at?: string;
                enabled: boolean;
                id: string;
                type: string;
                updated_at?: string;
            }[];
        },
        {
            data: {
                app_id?: string;
                channel: string;
                created_at?: string;
                enabled: boolean;
                id: string;
                type: string;
                updated_at?: string;
            }[];
        },
    > = ...

    Runtime validator for NotificationPreferenceList.