external-protocol-helpers.mjs
sha256:b5f647cb9c409f563d4671fe3fc05ddea01fabfed9b41fc11cb923588e1c1baf
mirror: GitHub Phase A durable MCP OAuth (#270)
Human
minor
⚠ breaking
11 days ago
| 1 | export function createMockTask(taskId = 'task-1') { |
| 2 | return { |
| 3 | id: taskId, |
| 4 | status: 'open', |
| 5 | title: 'Mock Task' |
| 6 | }; |
| 7 | } |
| 8 | |
| 9 | export function createMockInput(overrides = {}) { |
| 10 | return { |
| 11 | dataDir: '/tmp/mock-data-dir', |
| 12 | vaultId: 'vault-1', |
| 13 | taskId: 'task-1', |
| 14 | providerAgentId: 'agent-1', |
| 15 | ...overrides |
| 16 | }; |
| 17 | } |
File History
1 commit
sha256:b5f647cb9c409f563d4671fe3fc05ddea01fabfed9b41fc11cb923588e1c1baf
mirror: GitHub Phase A durable MCP OAuth (#270)
Human
minor
⚠
11 days ago