( context: McpAuthContext, inputProjectId: string | undefined, )
| 10 | * Thin adapter so tool files don't repeat the full argument object every call. |
| 11 | */ |
| 12 | export function resolveProjectId( |
| 13 | context: McpAuthContext, |
| 14 | inputProjectId: string | undefined, |
| 15 | ): Promise<string> { |
| 16 | return resolveClientProjectId({ |
| 17 | clientType: context.clientType, |
| 18 | clientProjectId: context.projectId, |
| 19 | organizationId: context.organizationId, |
| 20 | inputProjectId, |
| 21 | }); |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Build the projectId portion of an input schema. |
no test coverage detected