MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / mergeCliSessionDefaults

Function mergeCliSessionDefaults

src/cli/session-defaults.ts:58–67  ·  view source on GitHub ↗
(opts: {
  defaults: Record<string, unknown>;
  explicitArgs: Record<string, unknown>;
})

Source from the content-addressed store, hash-verified

56}
57
58export function mergeCliSessionDefaults(opts: {
59 defaults: Record<string, unknown>;
60 explicitArgs: Record<string, unknown>;
61}): Record<string, unknown> {
62 return mergeSessionDefaultArgs({
63 defaults: opts.defaults,
64 explicitArgs: opts.explicitArgs,
65 exclusivePairs: CLI_SESSION_DEFAULT_EXCLUSIVE_PAIRS,
66 });
67}

Callers 2

registerToolSubcommandFunction · 0.90

Calls 1

mergeSessionDefaultArgsFunction · 0.90

Tested by

no test coverage detected