(baseUrl: string, executionId: string)
| 944 | }; |
| 945 | |
| 946 | const buildResumeApprovalUrl = (baseUrl: string, executionId: string): string => { |
| 947 | const url = new URL(`/resume/${encodeURIComponent(executionId)}`, baseUrl); |
| 948 | return url.toString(); |
| 949 | }; |
| 950 | |
| 951 | const executeCode = (input: { |
| 952 | target: ServerTarget; |
no test coverage detected