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

    Variable SISendMessageResponseSchemaConst

    SISendMessageResponseSchema: ZodObject<
        {
            session_id: ZodString;
            response: ZodOptional<
                ZodNullable<
                    ZodObject<
                        {
                            message: ZodOptional<ZodNullable<ZodString>>;
                            surface: ZodOptional<
                                ZodNullable<
                                    ZodIntersection<
                                        ZodRecord<ZodString, ZodUnion<(...)>>,
                                        ZodObject<
                                            {
                                                surfaceId: ...;
                                                catalogId: ...;
                                                components: ...;
                                                rootId: ...;
                                                dataModel: ...;
                                            },
                                            $strip,
                                        >,
                                    >,
                                >,
                            >;
                            ui_elements: ZodOptional<
                                ZodNullable<
                                    ZodArray<
                                        ZodIntersection<
                                            ZodRecord<(...), (...)>,
                                            ZodIntersection<(...), (...)>,
                                        >,
                                    >,
                                >,
                            >;
                        },
                        $strip,
                    >,
                >,
            >;
            mcp_resource_uri: ZodOptional<ZodNullable<ZodString>>;
            session_status: ZodUnion<
                readonly [
                    ZodLiteral<"active">,
                    ZodLiteral<"pending_handoff">,
                    ZodLiteral<"complete">,
                ],
            >;
            handoff: ZodOptional<
                ZodNullable<
                    ZodObject<
                        {
                            type: ZodOptional<
                                ZodNullable<
                                    ZodUnion<readonly [ZodLiteral<(...)>, ZodLiteral<(...)>]>,
                                >,
                            >;
                            intent: ZodOptional<
                                ZodNullable<
                                    ZodObject<
                                        {
                                            action: ZodOptional<(...)>;
                                            product: ZodOptional<(...)>;
                                            price: ZodOptional<(...)>;
                                        },
                                        $strip,
                                    >,
                                >,
                            >;
                            context_for_checkout: ZodOptional<
                                ZodNullable<
                                    ZodObject<
                                        {
                                            conversation_summary: ZodOptional<(...)>;
                                            applied_offers: ZodOptional<(...)>;
                                        },
                                        $strip,
                                    >,
                                >,
                            >;
                        },
                        $strip,
                    >,
                >,
            >;
            errors: ZodOptional<
                ZodNullable<
                    ZodArray<
                        ZodIntersection<
                            ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
                            ZodObject<
                                {
                                    code: ZodString;
                                    message: ZodString;
                                    field: ZodOptional<ZodNullable<ZodString>>;
                                    suggestion: ZodOptional<ZodNullable<ZodString>>;
                                    retry_after: ZodOptional<ZodNullable<ZodNumber>>;
                                    details: ZodOptional<ZodNullable<ZodRecord<(...), (...)>>>;
                                },
                                $strip,
                            >,
                        >,
                    >,
                >,
            >;
            ext: ZodOptional<
                ZodNullable<
                    ZodRecord<ZodString, ZodUnion<readonly [ZodUnknown, ZodUndefined]>>,
                >,
            >;
        },
        $strip,
    > = ...