import { z } from "zod"; import type { McpTextContent, RequestContext } from "@cesteral/shared"; import type { SdkContext } from "@cesteral/shared"; export declare const UpdateEntityInputSchema: z.ZodEffects; entityId: z.ZodString; partnerId: z.ZodOptional; advertiserId: z.ZodOptional; campaignId: z.ZodOptional; adGroupId: z.ZodOptional; data: z.ZodRecord; strictMode: z.ZodOptional; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { entityType: string; data: Record; entityId: string; dry_run: boolean; advertiserId?: string | undefined; campaignId?: string | undefined; adGroupId?: string | undefined; partnerId?: string | undefined; strictMode?: boolean | undefined; }, { entityType: string; data: Record; entityId: string; advertiserId?: string | undefined; campaignId?: string | undefined; adGroupId?: string | undefined; partnerId?: string | undefined; strictMode?: boolean | undefined; dry_run?: boolean | undefined; }>, { entityType: string; data: Record; entityId: string; dry_run: boolean; advertiserId?: string | undefined; campaignId?: string | undefined; adGroupId?: string | undefined; partnerId?: string | undefined; strictMode?: boolean | undefined; }, { entityType: string; data: Record; entityId: string; advertiserId?: string | undefined; campaignId?: string | undefined; adGroupId?: string | undefined; partnerId?: string | undefined; strictMode?: boolean | undefined; dry_run?: boolean | undefined; }>; export declare const UpdateEntityOutputSchema: z.ZodObject<{ entity: z.ZodOptional>; timestamp: z.ZodString; dryRun: z.ZodOptional>; before: z.ZodOptional>; after: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { timestamp: string; dispatchedCapability: import("@cesteral/contract-schema").DispatchedCapability; entity?: Record | undefined; dryRun?: import("@cesteral/contract-schema").DryRunResult | undefined; after?: import("@cesteral/contract-schema").NormalizedEntitySnapshot | undefined; before?: import("@cesteral/contract-schema").NormalizedEntitySnapshot | undefined; }, { timestamp: string; dispatchedCapability: import("@cesteral/contract-schema").DispatchedCapability; entity?: Record | undefined; 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.ZodEffects; entityId: z.ZodString; partnerId: z.ZodOptional; advertiserId: z.ZodOptional; campaignId: z.ZodOptional; adGroupId: z.ZodOptional; data: z.ZodRecord; strictMode: z.ZodOptional; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { entityType: string; data: Record; entityId: string; dry_run: boolean; advertiserId?: string | undefined; campaignId?: string | undefined; adGroupId?: string | undefined; partnerId?: string | undefined; strictMode?: boolean | undefined; }, { entityType: string; data: Record; entityId: string; advertiserId?: string | undefined; campaignId?: string | undefined; adGroupId?: string | undefined; partnerId?: string | undefined; strictMode?: boolean | undefined; dry_run?: boolean | undefined; }>, { entityType: string; data: Record; entityId: string; dry_run: boolean; advertiserId?: string | undefined; campaignId?: string | undefined; adGroupId?: string | undefined; partnerId?: string | undefined; strictMode?: boolean | undefined; }, { entityType: string; data: Record; entityId: string; advertiserId?: string | undefined; campaignId?: string | undefined; adGroupId?: string | undefined; partnerId?: string | undefined; strictMode?: boolean | undefined; dry_run?: boolean | undefined; }>; outputSchema: z.ZodObject<{ entity: z.ZodOptional>; timestamp: z.ZodString; dryRun: z.ZodOptional>; before: z.ZodOptional>; after: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { timestamp: string; dispatchedCapability: import("@cesteral/contract-schema").DispatchedCapability; entity?: Record | undefined; dryRun?: import("@cesteral/contract-schema").DryRunResult | undefined; after?: import("@cesteral/contract-schema").NormalizedEntitySnapshot | undefined; before?: import("@cesteral/contract-schema").NormalizedEntitySnapshot | undefined; }, { timestamp: string; dispatchedCapability: import("@cesteral/contract-schema").DispatchedCapability; entity?: Record | undefined; 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; destructiveHint: boolean; idempotentHint: boolean; cesteral: { kind: "write"; writeClass: "entity"; executableArgsExclude: string[]; platform: string; contractPlatformSlug: string; contractToolSlug: string; operation: ("update" | "pause" | "resume" | "update_status" | "update_budget")[]; entityKinds: ("campaign" | "ad_group")[]; entityIdArgs: string[]; readPartner: { toolName: string; argMap: { entityType: string; entityId: string; }; }; schemaVersion: number; contractId: string; supportsDryRun: true; supportsBeforeAfterSnapshot: true; requiresValidation: true; requiresSimulation: true; }; }; inputExamples: ({ label: string; input: { entityType: string; entityId: string; advertiserId: string; data: { CampaignName: string; RTBAttributes?: undefined; }; campaignId?: undefined; }; } | { label: string; input: { entityType: string; entityId: string; advertiserId: string; campaignId: string; data: { RTBAttributes: { BaseBidCPM: { Amount: number; CurrencyCode: string; }; }; CampaignName?: undefined; }; }; })[]; logic: typeof updateEntityLogic; responseFormatter: typeof updateEntityResponseFormatter; }; export {}; //# sourceMappingURL=update-entity.tool.d.ts.map