jira.js
    Preparing search index...

    Variable SubmitRemoteLinksSchemaConst

    SubmitRemoteLinksSchema: ZodObject<
        {
            properties: ZodOptional<ZodRecord<ZodString, ZodAny>>;
            providerMetadata: ZodOptional<
                ZodObject<{ product: ZodOptional<ZodString> }, $strip>,
            >;
            remoteLinks: ZodArray<
                ZodObject<
                    {
                        actionIds: ZodOptional<ZodArray<ZodString>>;
                        associations: ZodOptional<
                            ZodArray<
                                ZodUnion<
                                    readonly [
                                        ZodObject<{ associationType: ...; values: ... }, $loose>,
                                        ZodObject<{ associationType: ...; values: ... }, $loose>,
                                    ],
                                >,
                            >,
                        >;
                        attributeMap: ZodOptional<ZodRecord<ZodString, ZodAny>>;
                        description: ZodOptional<ZodString>;
                        displayName: ZodString;
                        id: ZodString;
                        lastUpdated: ZodUnion<readonly [ZodString, ZodDate]>;
                        schemaVersion: ZodOptional<
                            ZodCustom<string & {} | "1.0", string & {} | "1.0">,
                        >;
                        status: ZodOptional<
                            ZodObject<
                                {
                                    appearance: ZodCustom<
                                        | "default"
                                        | "new"
                                        | "removed"
                                        | "success"
                                        | (...) & (...)
                                        | "prototype"
                                        | "inprogress"
                                        | "moved",

                                            | "default"
                                            | "new"
                                            | "removed"
                                            | "success"
                                            | (...) & (...)
                                            | "prototype"
                                            | "inprogress"
                                            | "moved",
                                    >;
                                    label: ZodString;
                                },
                                $strip,
                            >,
                        >;
                        type: ZodCustom<
                            | "other"
                            | "document"
                            | "alert"
                            | string & {}
                            | "test"
                            | "security"
                            | "logFile"
                            | "prototype"
                            | "coverage"
                            | "bugReport",
                            | "other"
                            | "document"
                            | "alert"
                            | string & {}
                            | "test"
                            | "security"
                            | "logFile"
                            | "prototype"
                            | "coverage"
                            | "bugReport",
                        >;
                        updateSequenceNumber: ZodNumber;
                        url: ZodURL;
                    },
                    $strip,
                >,
            >;
        },
        $strip,
    > = ...