(value: ResolvedPrincipal)
| 103 | export type ResolvedPrincipal = Principal | PlatformPrincipal; |
| 104 | |
| 105 | export const isPlatformPrincipal = (value: ResolvedPrincipal): value is PlatformPrincipal => |
| 106 | value.kind === "platform"; |
| 107 | |
| 108 | /** |
| 109 | * The single `AuthContext` every executor-API handler reads. The roles-bearing |
no outgoing calls
no test coverage detected