(projectRef: string, slug: string, key: string)
| 355 | } |
| 356 | |
| 357 | retrieveEnvVar(projectRef: string, slug: string, key: string) { |
| 358 | return zodfetch( |
| 359 | EnvironmentVariableValue, |
| 360 | `${this.baseUrl}/api/v1/projects/${projectRef}/envvars/${slug}/${key}`, |
| 361 | { |
| 362 | method: "GET", |
| 363 | headers: this.#getHeaders(false), |
| 364 | } |
| 365 | ); |
| 366 | } |
| 367 | |
| 368 | createEnvVar(projectRef: string, slug: string, body: CreateEnvironmentVariableRequestBody) { |
| 369 | return zodfetch( |
no test coverage detected