import { z } from "zod"; import type { RequestContext, McpTextContent } from "@cesteral/shared"; import type { SdkContext } from "@cesteral/shared"; export declare const UpdateEntityInputSchema: z.ZodObject<{ entityType: z.ZodEnum<[string, ...string[]]>; entityUrn: z.ZodString; data: z.ZodRecord; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { entityType: string; entityUrn: string; data: Record; dry_run: boolean; }, { entityType: string; entityUrn: string; data: Record; dry_run?: boolean | undefined; }>; export declare const UpdateEntityOutputSchema: z.ZodObject<{ success: z.ZodBoolean; entityUrn: z.ZodString; entityType: z.ZodString; timestamp: z.ZodString; dryRun: z.ZodOptional>; before: z.ZodOptional>; after: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { entityType: string; timestamp: string; entityUrn: string; dispatchedCapability: import("@cesteral/contract-schema").DispatchedCapability; success: boolean; dryRun?: import("@cesteral/contract-schema").DryRunResult | undefined; after?: import("@cesteral/contract-schema").NormalizedEntitySnapshot | undefined; before?: import("@cesteral/contract-schema").NormalizedEntitySnapshot | undefined; }, { entityType: string; timestamp: string; entityUrn: string; dispatchedCapability: import("@cesteral/contract-schema").DispatchedCapability; success: boolean; dryRun?: import("@cesteral/contract-schema").DryRunResult | undefined; after?: import("@cesteral/contract-schema").NormalizedEntitySnapshot | undefined; before?: import("@cesteral/contract-schema").NormalizedEntitySnapshot | undefined; }>; type UpdateEntityInput = z.infer; type UpdateEntityOutput = z.infer; export declare function updateEntityLogic(input: UpdateEntityInput, context: RequestContext, sdkContext?: SdkContext): Promise; export declare function updateEntityResponseFormatter(result: UpdateEntityOutput): McpTextContent[]; export declare const updateEntityTool: { name: string; title: string; description: string; inputSchema: z.ZodObject<{ entityType: z.ZodEnum<[string, ...string[]]>; entityUrn: z.ZodString; data: z.ZodRecord; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { entityType: string; entityUrn: string; data: Record; dry_run: boolean; }, { entityType: string; entityUrn: string; data: Record; dry_run?: boolean | undefined; }>; outputSchema: z.ZodObject<{ success: z.ZodBoolean; entityUrn: z.ZodString; entityType: z.ZodString; timestamp: z.ZodString; dryRun: z.ZodOptional>; before: z.ZodOptional>; after: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { entityType: string; timestamp: string; entityUrn: string; dispatchedCapability: import("@cesteral/contract-schema").DispatchedCapability; success: boolean; dryRun?: import("@cesteral/contract-schema").DryRunResult | undefined; after?: import("@cesteral/contract-schema").NormalizedEntitySnapshot | undefined; before?: import("@cesteral/contract-schema").NormalizedEntitySnapshot | undefined; }, { entityType: string; timestamp: string; entityUrn: string; dispatchedCapability: import("@cesteral/contract-schema").DispatchedCapability; success: boolean; dryRun?: import("@cesteral/contract-schema").DryRunResult | undefined; after?: import("@cesteral/contract-schema").NormalizedEntitySnapshot | undefined; before?: import("@cesteral/contract-schema").NormalizedEntitySnapshot | undefined; }>; annotations: { readOnlyHint: boolean; openWorldHint: boolean; idempotentHint: boolean; destructiveHint: boolean; cesteral: { kind: "write"; writeClass: "entity"; executableArgsExclude: string[]; platform: string; contractPlatformSlug: string; contractToolSlug: string; operation: ("resume" | "pause" | "update_status" | "update_budget" | "update")[]; entityKinds: "campaign"[]; entityIdArgs: string[]; readPartner: { toolName: string; argMap: { entityType: string; entityUrn: string; }; }; schemaVersion: number; contractId: string; supportsDryRun: true; supportsBeforeAfterSnapshot: true; requiresValidation: true; requiresSimulation: true; }; }; inputExamples: ({ label: string; input: { entityType: string; entityUrn: string; data: { status: string; dailyBudget?: undefined; }; }; } | { label: string; input: { entityType: string; entityUrn: string; data: { dailyBudget: { amount: string; currencyCode: string; }; status?: undefined; }; }; })[]; logic: typeof updateEntityLogic; responseFormatter: typeof updateEntityResponseFormatter; }; export {}; //# sourceMappingURL=update-entity.tool.d.ts.map