feat(gateway): register Hermes runtime provider

This commit is contained in:
2026-07-13 09:06:00 -05:00
parent 3378b857eb
commit 127a69ea11
7 changed files with 255 additions and 5 deletions
+2 -1
View File
@@ -9,7 +9,8 @@ export type RuntimeAuditOperation =
| 'session.attach'
| 'session.terminate'
| 'runtime.capabilities'
| 'runtime.health';
| 'runtime.health'
| 'runtime.transitional-capabilities';
export type RuntimeAuditOutcome = 'requested' | 'succeeded' | 'denied' | 'failed';
export type RuntimeAuditErrorCode = 'policy_denied' | 'provider_error';