MCPcopy Index your code
hub / github.com/github/copilot-sdk / resolveMethodParamsSchema

Function resolveMethodParamsSchema

scripts/codegen/csharp.ts:1492–1499  ·  view source on GitHub ↗
(method: RpcMethod)

Source from the content-addressed store, hash-verified

1490}
1491
1492function resolveMethodParamsSchema(method: RpcMethod): JSONSchema7 | undefined {
1493 return (
1494 resolveObjectSchema(method.params, rpcDefinitions) ??
1495 resolveSchema(method.params, rpcDefinitions) ??
1496 method.params ??
1497 undefined
1498 );
1499}
1500
1501function stableStringify(value: unknown): string {
1502 if (Array.isArray(value)) {

Callers 5

paramsTypeNameFunction · 0.85
emitServerInstanceMethodFunction · 0.85
emitSessionMethodFunction · 0.85

Calls 2

resolveObjectSchemaFunction · 0.85
resolveSchemaFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…