UNPKG

@golemio/pid

Version:
120 lines (119 loc) 3.32 kB
import { ModelAttributes } from "@golemio/core/dist/shared/sequelize"; export interface IRopidGTFSCisStopsInputData { altIdosName: string; cis: number; id: string; jtskX: number; jtskY: number; lat: number; lon: number; platform: string; wheelchairAccess: string; zone: string; } export interface IRopidGTFSCisStopsData { alt_idos_name: string; cis: number; id: string; jtsk_x: number; jtsk_y: number; lat: number; lon: number; platform: string; wheelchair_access: string; zone: string; [auditFields: string]: unknown; } export declare const RopidGTFSCisStops: { name: string; datasourceJsonSchema: { type: string; items: { $ref: string; }; $defs: { Item: { type: string; properties: { altIdosName: { type: string; }; cis: { type: string; }; id: { type: string; }; jtskX: { type: string; }; jtskY: { type: string; }; lat: { type: string; }; lon: { type: string; }; platform: { type: string; }; wheelchairAccess: { type: string; }; zone: { type: string; }; }; required: string[]; }; }; }; outputJsonSchema: { type: string; items: { $ref: string; $defs: { Item: { type: string; properties: { alt_idos_name: { type: string; }; cis: { type: string; }; id: { type: string; }; jtsk_x: { type: string; }; jtsk_y: { type: string; }; lat: { type: string; }; lon: { type: string; }; platform: { type: string; }; wheelchair_access: { type: string; }; zone: { type: string; }; }; required: string[]; }; }; }; }; outputSequelizeAttributes: ModelAttributes<any, IRopidGTFSCisStopsData>; pgTableName: string; };