@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Variable TasksListRequestSchemaConst

    TasksListRequestSchema: ZodObject<
        {
            adcp_major_version: ZodOptional<ZodNumber>;
            filters: ZodOptional<
                ZodObject<
                    {
                        protocol: ZodOptional<
                            ZodUnion<
                                readonly [
                                    ZodLiteral<"media-buy">,
                                    ZodLiteral<"signals">,
                                    ZodLiteral<"governance">,
                                    ZodLiteral<"creative">,
                                    ZodLiteral<"brand">,
                                    ZodLiteral<"sponsored-intelligence">,
                                ],
                            >,
                        >;
                        protocols: ZodOptional<
                            ZodArray<
                                ZodUnion<
                                    readonly [
                                        ZodLiteral<"media-buy">,
                                        ZodLiteral<"signals">,
                                        ZodLiteral<"governance">,
                                        ZodLiteral<"creative">,
                                        ZodLiteral<"brand">,
                                        ZodLiteral<"sponsored-intelligence">,
                                    ],
                                >,
                            >,
                        >;
                        status: ZodOptional<
                            ZodUnion<
                                readonly [
                                    ZodLiteral<"submitted">,
                                    ZodLiteral<"working">,
                                    ZodLiteral<"input-required">,
                                    ZodLiteral<"completed">,
                                    ZodLiteral<"canceled">,
                                    ZodLiteral<"failed">,
                                    ZodLiteral<"rejected">,
                                    ZodLiteral<"auth-required">,
                                    ZodLiteral<"unknown">,
                                ],
                            >,
                        >;
                        statuses: ZodOptional<
                            ZodArray<
                                ZodUnion<
                                    readonly [
                                        ZodLiteral<"submitted">,
                                        ZodLiteral<"working">,
                                        ZodLiteral<"input-required">,
                                        ZodLiteral<"completed">,
                                        ZodLiteral<"canceled">,
                                        ZodLiteral<"failed">,
                                        ZodLiteral<"rejected">,
                                        ZodLiteral<"auth-required">,
                                        ZodLiteral<"unknown">,
                                    ],
                                >,
                            >,
                        >;
                        task_type: ZodOptional<
                            ZodUnion<
                                readonly [
                                    ZodLiteral<"create_media_buy">,
                                    ZodLiteral<"update_media_buy">,
                                    ZodLiteral<"sync_creatives">,
                                    ZodLiteral<"activate_signal">,
                                    ZodLiteral<"get_signals">,
                                    ZodLiteral<"create_property_list">,
                                    ZodLiteral<"update_property_list">,
                                    ZodLiteral<"get_property_list">,
                                    ZodLiteral<"list_property_lists">,
                                    ZodLiteral<"delete_property_list">,
                                    ZodLiteral<"sync_accounts">,
                                    ZodLiteral<"get_account_financials">,
                                    ZodLiteral<"get_creative_delivery">,
                                    ZodLiteral<"sync_event_sources">,
                                    ZodLiteral<"sync_audiences">,
                                    ZodLiteral<"sync_catalogs">,
                                    ZodLiteral<"log_event">,
                                    ZodLiteral<"get_brand_identity">,
                                    ZodLiteral<"get_rights">,
                                    ZodLiteral<"acquire_rights">,
                                ],
                            >,
                        >;
                        task_types: ZodOptional<
                            ZodArray<
                                ZodUnion<
                                    readonly [
                                        ZodLiteral<"create_media_buy">,
                                        ZodLiteral<"update_media_buy">,
                                        ZodLiteral<"sync_creatives">,
                                        ZodLiteral<"activate_signal">,
                                        ZodLiteral<"get_signals">,
                                        ZodLiteral<"create_property_list">,
                                        ZodLiteral<"update_property_list">,
                                        ZodLiteral<"get_property_list">,
                                        ZodLiteral<"list_property_lists">,
                                        ZodLiteral<"delete_property_list">,
                                        ZodLiteral<"sync_accounts">,
                                        ZodLiteral<"get_account_financials">,
                                        ZodLiteral<"get_creative_delivery">,
                                        ZodLiteral<"sync_event_sources">,
                                        ZodLiteral<"sync_audiences">,
                                        ZodLiteral<"sync_catalogs">,
                                        ZodLiteral<"log_event">,
                                        ZodLiteral<"get_brand_identity">,
                                        ZodLiteral<"get_rights">,
                                        ZodLiteral<"acquire_rights">,
                                    ],
                                >,
                            >,
                        >;
                        created_after: ZodOptional<ZodISODateTime>;
                        created_before: ZodOptional<ZodISODateTime>;
                        updated_after: ZodOptional<ZodISODateTime>;
                        updated_before: ZodOptional<ZodISODateTime>;
                        task_ids: ZodOptional<ZodArray<ZodString>>;
                        context_contains: ZodOptional<ZodString>;
                        has_webhook: ZodOptional<ZodBoolean>;
                    },
                    $loose,
                >,
            >;
            sort: ZodOptional<
                ZodObject<
                    {
                        field: ZodOptional<
                            ZodUnion<
                                readonly [
                                    ZodLiteral<"created_at">,
                                    ZodLiteral<"updated_at">,
                                    ZodLiteral<"status">,
                                    ZodLiteral<"task_type">,
                                    ZodLiteral<"protocol">,
                                ],
                            >,
                        >;
                        direction: ZodOptional<
                            ZodUnion<readonly [ZodLiteral<"asc">, ZodLiteral<"desc">]>,
                        >;
                    },
                    $loose,
                >,
            >;
            pagination: ZodOptional<
                ZodObject<
                    {
                        max_results: ZodOptional<ZodNumber>;
                        cursor: ZodOptional<ZodString>;
                    },
                    $loose,
                >,
            >;
            include_history: ZodOptional<ZodBoolean>;
            context: ZodOptional<ZodObject<{}, $loose>>;
            ext: ZodOptional<ZodObject<{}, $loose>>;
        },
        $loose,
    > = ...