/** * `/meta` payload — the contract between `createRemoteServer` (producer) * and `deployCheck` (verifier). Both sides parse through `MetaSchema`, so * a new field added here flows to both paths and drift is caught at the * boundary rather than silently skipped. * * Scope: **domain workers only**. Kernels rely on OIDC discovery * (`/.well-known/openid-configuration`) + JWKS — they have no `/meta`. */ import { z } from 'zod'; export declare const MetaSchema: z.ZodObject<{ version: z.ZodDefault; iss: z.ZodString; sdkCommit: z.ZodOptional; schemaHash: z.ZodOptional; domainName: z.ZodOptional; manifest: z.ZodOptional; entrypoint: z.ZodOptional; roles: z.ZodOptional; description: z.ZodOptional; default: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>>; }, z.core.$strip>; export type Meta = z.infer; //# sourceMappingURL=meta.d.ts.map