From 776ffad16280bf9002099b946cb210e50abe9e23 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Wed, 16 Apr 2025 16:23:21 -0700 Subject: [PATCH] add parking system ID to Chapman supported system --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index 00cd04b..46ac1ae 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,6 +5,7 @@ import { MergedResolvers } from "./MergedResolvers"; import { ServerContext } from "./ServerContext"; import { loadShuttleTestData, supportedIntegrationTestSystems } from "./loaders/shuttle/loadShuttleTestData"; import { InterchangeSystem, InterchangeSystemBuilderArguments } from "./entities/InterchangeSystem"; +import { ChapmanApiBasedParkingRepositoryLoader } from "./loaders/parking/ChapmanApiBasedParkingRepositoryLoader"; const typeDefs = readFileSync("./schema.graphqls", "utf8"); @@ -13,6 +14,7 @@ const supportedSystems: InterchangeSystemBuilderArguments[] = [ { id: "1", passioSystemId: "263", + parkingSystemId: ChapmanApiBasedParkingRepositoryLoader.id, name: "Chapman University", } ]