jira.js
    Preparing search index...

    Variable StatusPayloadSchemaConst

    StatusPayloadSchema: ZodObject<
        {
            description: ZodOptional<ZodString>;
            name: ZodOptional<ZodString>;
            onConflict: ZodOptional<
                ZodCustom<
                    string & {}
                    | "FAIL"
                    | "USE"
                    | "NEW",
                    string & {} | "FAIL" | "USE" | "NEW",
                >,
            >;
            pcri: ZodOptional<
                ZodObject<
                    {
                        anID: ZodOptional<ZodBoolean>;
                        areference: ZodOptional<ZodBoolean>;
                        entityId: ZodOptional<ZodString>;
                        entityType: ZodOptional<ZodString>;
                        id: ZodOptional<ZodString>;
                        type: ZodOptional<
                            ZodCustom<"id" | "ref" | string & {}, "id" | "ref" | string & {}>,
                        >;
                    },
                    $loose,
                >,
            >;
            statusCategory: ZodOptional<
                ZodCustom<
                    string & {}
                    | "TODO"
                    | "IN_PROGRESS"
                    | "DONE",
                    string & {} | "TODO" | "IN_PROGRESS" | "DONE",
                >,
            >;
        },
        $loose,
    > = ...

    The payload for creating a status