@adcp/client API Reference - v3.11.2
    Preparing search index...

    Variable SyncCreativesRequestSchemaConst

    SyncCreativesRequestSchema: ZodObject<
        {
            account_id: ZodOptional<ZodNullable<ZodString>>;
            creatives: ZodArray<
                ZodIntersection<
                    ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
                    ZodObject<
                        {
                            creative_id: ZodString;
                            name: ZodString;
                            format_id: ZodIntersection<
                                ZodRecord<
                                    ZodString,
                                    ZodUnion<readonly [ZodUnknown, ZodUndefined]>,
                                >,
                                ZodObject<
                                    {
                                        agent_url: ZodString;
                                        id: ZodString;
                                        width: ZodOptional<ZodNullable<(...)>>;
                                        height: ZodOptional<ZodNullable<(...)>>;
                                        duration_ms: ZodOptional<ZodNullable<(...)>>;
                                    },
                                    $strip,
                                >,
                            >;
                            assets: ZodRecord<
                                ZodString,
                                ZodUnion<readonly [ZodUnknown, ZodUndefined]>,
                            >;
                            inputs: ZodOptional<
                                ZodNullable<
                                    ZodArray<
                                        ZodIntersection<
                                            ZodRecord<(...), (...)>,
                                            ZodObject<(...), (...)>,
                                        >,
                                    >,
                                >,
                            >;
                            tags: ZodOptional<ZodNullable<ZodArray<ZodString>>>;
                            status: ZodOptional<
                                ZodNullable<
                                    ZodUnion<
                                        readonly [
                                            ZodLiteral<(...)>,
                                            ZodLiteral<(...)>,
                                            ZodLiteral<(...)>,
                                            ZodLiteral<(...)>,
                                            ZodLiteral<(...)>,
                                        ],
                                    >,
                                >,
                            >;
                            weight: ZodOptional<ZodNullable<ZodNumber>>;
                            placement_ids: ZodOptional<ZodNullable<ZodArray<ZodString>>>;
                        },
                        $strip,
                    >,
                >,
            >;
            creative_ids: ZodOptional<ZodNullable<ZodArray<ZodString>>>;
            assignments: ZodOptional<
                ZodNullable<ZodRecord<ZodString, ZodArray<ZodString>>>,
            >;
            delete_missing: ZodOptional<ZodNullable<ZodBoolean>>;
            dry_run: ZodOptional<ZodNullable<ZodBoolean>>;
            validation_mode: ZodOptional<
                ZodNullable<
                    ZodUnion<readonly [ZodLiteral<"strict">, ZodLiteral<"lenient">]>,
                >,
            >;
            push_notification_config: ZodOptional<
                ZodNullable<
                    ZodObject<
                        {
                            url: ZodString;
                            token: ZodOptional<ZodNullable<ZodString>>;
                            authentication: ZodObject<
                                {
                                    schemes: ZodTuple<[ZodUnion<(...)>], null>;
                                    credentials: ZodString;
                                },
                                $strip,
                            >;
                        },
                        $strip,
                    >,
                >,
            >;
            context: ZodOptional<
                ZodNullable<
                    ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
                >,
            >;
            ext: ZodOptional<
                ZodNullable<
                    ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
                >,
            >;
        },
        $strip,
    > = ...