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