import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Wandb = { /** * W&B project name */ project: string; /** * W&B entity/team */ entity?: string | null | undefined; /** * Run display name */ name?: string | null | undefined; /** * Tags for the run */ tags?: Array | null | undefined; }; export type IntegrationObject = { type: "wandb"; wandb: Wandb; }; /** @internal */ export declare const Wandb$inboundSchema: z.ZodType; /** @internal */ export type Wandb$Outbound = { project: string; entity?: string | null | undefined; name?: string | null | undefined; tags?: Array | null | undefined; }; /** @internal */ export declare const Wandb$outboundSchema: z.ZodType; export declare function wandbToJSON(wandb: Wandb): string; export declare function wandbFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const IntegrationObject$inboundSchema: z.ZodType; /** @internal */ export type IntegrationObject$Outbound = { type: "wandb"; wandb: Wandb$Outbound; }; /** @internal */ export declare const IntegrationObject$outboundSchema: z.ZodType; export declare function integrationObjectToJSON(integrationObject: IntegrationObject): string; export declare function integrationObjectFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=integrationobject.d.ts.map