UNPKG

@golemio/pid

Version:
61 lines (60 loc) 1.57 kB
import Sequelize from "@golemio/core/dist/shared/sequelize"; export interface IRopidGTFSOisMappingInputData { ois: number; node: number; name: string; } export interface IRopidGTFSOisMappingData extends IRopidGTFSOisMappingInputData { [auditFields: string]: unknown; } export declare const RopidGTFSOisMapping: { name: string; datasourceJsonSchema: { type: string; items: { $ref: string; }; $defs: { Item: { type: string; properties: { ois: { type: string; }; node: { type: string; }; name: { type: string; }; }; required: string[]; }; }; }; outputJsonSchema: { type: string; items: { $ref: string; }; $defs: { Item: { type: string; properties: { ois: { type: string; }; node: { type: string; }; name: { type: string; }; }; required: string[]; }; }; }; outputSequelizeAttributes: Sequelize.ModelAttributes<any, IRopidGTFSOisMappingData>; pgTableName: string; };