import { SQSContract } from '../sqsContract'; /** * Computed schema type of the input validation schema. * * Can be used with `FromSchema` to infer the type of the contract of the lambda */ export interface FullContractSchemaType { type: 'object'; properties: { id: { const: Contract['id']; }; contractType: { const: Contract['contractType']; }; messageBodySchema: Contract['messageBodySchema']; messageAttributesSchema?: NonNullable; }; required: ['id', 'contractType', 'messageBodySchema']; additionalProperties: false; [key: string]: unknown; } //# sourceMappingURL=fullContract.d.ts.map