(baseUrl: string, executionId: string)
| 971 | }; |
| 972 | |
| 973 | const buildResumeApprovalUrl = (baseUrl: string, executionId: string): string => { |
| 974 | const url = new URL(`/resume/${encodeURIComponent(executionId)}`, baseUrl); |
| 975 | return url.toString(); |
| 976 | }; |
| 977 | |
| 978 | const executeCode = (input: { |
| 979 | target: ServerTarget; |
no test coverage detected