()
| 127 | |
| 128 | export const destinationWriterContractName = 'destination.writer'; |
| 129 | export const destinationWriterSchema = () => |
| 130 | withPortMeta(z.object(DestinationConfigSchema.shape), { |
| 131 | schemaName: destinationWriterContractName, |
| 132 | }); |
| 133 | |
| 134 | export type DestinationWriter = z.infer<ReturnType<typeof destinationWriterSchema>>; |
| 135 |
no test coverage detected