aem-dev-mcp-server
Version:
AEM MCP server providing connectivity tools for Adobe Experience Manager® instances
24 lines • 874 B
TypeScript
import { z } from 'zod';
/**
* Core AEM instance schema for authentication and connection
*/
export declare const AEMInstanceSchema: z.ZodObject<{
url: z.ZodString;
username: z.ZodString;
password: z.ZodString;
}, z.core.$strip>;
/**
* Base schema for selecting AEM instances via aliases or direct configuration
* This is the foundation schema used across all AEM operations
*/
export declare const InstanceSelectionSchema: z.ZodObject<{
aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
instances: z.ZodOptional<z.ZodArray<z.ZodObject<{
url: z.ZodString;
username: z.ZodString;
password: z.ZodString;
}, z.core.$strip>>>;
}, z.core.$strip>;
export type AEMInstance = z.infer<typeof AEMInstanceSchema>;
export type InstanceSelection = z.infer<typeof InstanceSelectionSchema>;
//# sourceMappingURL=instance.schemas.d.ts.map