/** * CLI command options. */ export interface PublishSchemaToDbOptions { /** Input glob pattern that selects input schemas. */ inputGlob: string; /** Name of the ID key in JSON schema. */ idKey: string; /** Array of ignored JSON schema properties. */ ignoredProperties: string[]; /** Name of the DB schema to be used in SQL generation. */ dbSchema: string; /** Path to the target project root. */ outputRoot: string; }