Variable TasksListResponseSchemaConst
TasksListResponseSchema: ZodObject<
{
query_summary: ZodObject<
{
total_matching: ZodOptional<ZodNumber>;
returned: ZodOptional<ZodNumber>;
domain_breakdown: ZodOptional<
ZodObject<
{
"media-buy": ZodOptional<ZodNumber>;
signals: ZodOptional<ZodNumber>;
},
$loose,
>,
>;
status_breakdown: ZodOptional<ZodRecord<ZodString, ZodNumber>>;
filters_applied: ZodOptional<ZodArray<ZodString>>;
sort_applied: ZodOptional<
ZodObject<
{
field: ZodString;
direction: ZodUnion<readonly [ZodLiteral<"asc">, ZodLiteral<"desc">]>;
},
$loose,
>,
>;
},
$loose,
>;
tasks: ZodArray<
ZodObject<
{
task_id: ZodString;
task_type: 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">,
],
>;
domain: ZodUnion<
readonly [ZodLiteral<"media-buy">, ZodLiteral<"signals">],
>;
status: ZodUnion<
readonly [
ZodLiteral<"submitted">,
ZodLiteral<"working">,
ZodLiteral<"input-required">,
ZodLiteral<"completed">,
ZodLiteral<"canceled">,
ZodLiteral<"failed">,
ZodLiteral<"rejected">,
ZodLiteral<"auth-required">,
ZodLiteral<"unknown">,
],
>;
created_at: ZodISODateTime;
updated_at: ZodISODateTime;
completed_at: ZodOptional<ZodISODateTime>;
has_webhook: ZodOptional<ZodBoolean>;
},
$loose,
>,
>;
pagination: ZodObject<
{
has_more: ZodBoolean;
cursor: ZodOptional<ZodString>;
total_count: ZodOptional<ZodNumber>;
},
$loose,
>;
context: ZodOptional<ZodObject<{}, $loose>>;
ext: ZodOptional<ZodObject<{}, $loose>>;
},
$loose,
> = ...