(principal: {
readonly accountId: string;
readonly organizationId: string;
})
| 113 | |
| 114 | /** Bind modern continuation state to the ownership identity used by MCP hosts. */ |
| 115 | export const mcpRequestStatePrincipal = (principal: { |
| 116 | readonly accountId: string; |
| 117 | readonly organizationId: string; |
| 118 | }): string => `${principal.accountId}\u0000${principal.organizationId}`; |
| 119 | |
| 120 | /** Fields whose exact values bind one modern native-elicitation continuation. */ |
| 121 | export interface McpRequestStateBindingInput { |
no outgoing calls