Skip to content
This repository was archived by the owner on Oct 22, 2025. It is now read-only.

Commit a13e0e3

Browse files
committed
fix(core): fix missing ManagerDriver impls
1 parent 86d6823 commit a13e0e3

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/rivetkit/scripts/dump-openapi.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ function main() {
3131
proxyRequest: unimplemented,
3232
proxyWebSocket: unimplemented,
3333
displayInformation: unimplemented,
34+
getOrCreateInspectorAccessToken: unimplemented,
3435
};
3536

3637
const { openapi } = createManagerRouter(

packages/rivetkit/src/driver-test-suite/test-inline-client-driver.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,8 @@ export function createTestInlineClientDriver(
227227
displayInformation(): ManagerDisplayInformation {
228228
return { name: "Test Inline", properties: {} };
229229
},
230+
// TODO:
231+
getOrCreateInspectorAccessToken: () => "",
230232

231233
// action: async <Args extends Array<unknown> = unknown[], Response = unknown>(
232234
// _c: HonoContext | undefined,

0 commit comments

Comments
 (0)