( serverUrl: string, namespace: string, scheduleId: string )
| 72 | * the schedule ID. |
| 73 | */ |
| 74 | export function temporalScheduleUrl( |
| 75 | serverUrl: string, |
| 76 | namespace: string, |
| 77 | scheduleId: string |
| 78 | ): string { |
| 79 | return `${temporalNamespaceUrl(serverUrl, namespace)}/schedules/${encodeURIComponent(scheduleId.trim())}` |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * Builds a `common.v1.WorkflowExecution` reference with trimmed IDs, omitting the run ID |
no test coverage detected