├── .editorconfig ├── .eslintrc.json ├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .prettierrc.json ├── LICENSE.md ├── README.md ├── docs ├── PROVIDERS.md ├── README.md └── example.ts ├── package.json ├── src ├── RequestAndParse.ts ├── index.ts ├── trias │ ├── TRIASDeparturesHandler.ts │ ├── TRIASJourneysHandler.ts │ └── TRIASStopsHandler.ts ├── types │ ├── fptf.ts │ ├── options.ts │ └── results.ts └── xml │ ├── TRIAS_LIR_NAME.ts │ ├── TRIAS_LIR_POS.ts │ ├── TRIAS_SER.ts │ └── TRIAS_TR.ts ├── test ├── client.test.js └── parse.test.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ 3 | test-credentials.json -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/README.md -------------------------------------------------------------------------------- /docs/PROVIDERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/docs/PROVIDERS.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/docs/example.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/package.json -------------------------------------------------------------------------------- /src/RequestAndParse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/src/RequestAndParse.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/trias/TRIASDeparturesHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/src/trias/TRIASDeparturesHandler.ts -------------------------------------------------------------------------------- /src/trias/TRIASJourneysHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/src/trias/TRIASJourneysHandler.ts -------------------------------------------------------------------------------- /src/trias/TRIASStopsHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/src/trias/TRIASStopsHandler.ts -------------------------------------------------------------------------------- /src/types/fptf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/src/types/fptf.ts -------------------------------------------------------------------------------- /src/types/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/src/types/options.ts -------------------------------------------------------------------------------- /src/types/results.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/src/types/results.ts -------------------------------------------------------------------------------- /src/xml/TRIAS_LIR_NAME.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/src/xml/TRIAS_LIR_NAME.ts -------------------------------------------------------------------------------- /src/xml/TRIAS_LIR_POS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/src/xml/TRIAS_LIR_POS.ts -------------------------------------------------------------------------------- /src/xml/TRIAS_SER.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/src/xml/TRIAS_SER.ts -------------------------------------------------------------------------------- /src/xml/TRIAS_TR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/src/xml/TRIAS_TR.ts -------------------------------------------------------------------------------- /test/client.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/test/client.test.js -------------------------------------------------------------------------------- /test/parse.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/test/parse.test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andaryjo/trias-client/HEAD/tsconfig.json --------------------------------------------------------------------------------