import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DatasourceProfile = { /** * The datasource the profile is of. */ datasource: string; /** * The display name of the entity in the given datasource. */ handle: string; /** * URL to view the entity's profile. */ url?: string | undefined; /** * A deep link, if available, into the datasource's native application for the entity's platform (i.e. slack://...). */ nativeAppUrl?: string | undefined; /** * For internal use only. True iff the data source profile was manually added by a user from within Glean (aka not from the original data source) */ isUserGenerated?: boolean | undefined; }; /** @internal */ export declare const DatasourceProfile$inboundSchema: z.ZodType; /** @internal */ export type DatasourceProfile$Outbound = { datasource: string; handle: string; url?: string | undefined; nativeAppUrl?: string | undefined; isUserGenerated?: boolean | undefined; }; /** @internal */ export declare const DatasourceProfile$outboundSchema: z.ZodType; export declare function datasourceProfileToJSON(datasourceProfile: DatasourceProfile): string; export declare function datasourceProfileFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=datasourceprofile.d.ts.map