jira.js
    Preparing search index...

    Variable sendRequestOptionsSchemaConst

    sendRequestOptionsSchema: ZodObject<
        {
            body: ZodOptional<ZodUnknown>;
            contentType: ZodOptional<ZodString>;
            headers: ZodOptional<ZodRecord<ZodString, ZodOptional<ZodString>>>;
            method: ZodOptional<
                ZodEnum<
                    {
                        DELETE: "DELETE";
                        GET: "GET";
                        HEAD: "HEAD";
                        OPTIONS: "OPTIONS";
                        PATCH: "PATCH";
                        POST: "POST";
                        PUT: "PUT";
                    },
                >,
            >;
            searchParams: ZodOptional<ZodRecord<ZodString, ZodUnknown>>;
            url: ZodString;
        },
        $strip,
    > = ...