* Builds the REST API v4 base URL for the configured host.
(host: string)
| 191 | * Builds the REST API v4 base URL for the configured host. |
| 192 | */ |
| 193 | function buildApiBase(host: string): string { |
| 194 | return `https://${host}/api/v4` |
| 195 | } |
| 196 | |
| 197 | /** |
| 198 | * Returns the encoded project identifier (numeric ID or URL-encoded path). |