import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AppResult = { /** * The app or other repository type this represents */ datasource: string; /** * The datasource-specific type of the document (e.g. for Jira issues, this is the issue type such as Bug or Feature Request). */ docType?: string | undefined; /** * Mimetype is used to differentiate between sub applications from a datasource (e.g. Sheets, Docs from Gdrive) */ mimeType?: string | undefined; /** * If there is available icon URL. */ iconUrl?: string | undefined; }; /** @internal */ export declare const AppResult$inboundSchema: z.ZodType; /** @internal */ export type AppResult$Outbound = { datasource: string; docType?: string | undefined; mimeType?: string | undefined; iconUrl?: string | undefined; }; /** @internal */ export declare const AppResult$outboundSchema: z.ZodType; export declare function appResultToJSON(appResult: AppResult): string; export declare function appResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=appresult.d.ts.map