* Load the OpenAPI spec, using cache if available and fresh. * Returns true if successful, false otherwise.
(forceRefresh = false)
| 69 | * Returns true if successful, false otherwise. |
| 70 | */ |
| 71 | async load(forceRefresh = false): Promise<boolean> { |
| 72 | return this.loadSpec(forceRefresh); |
| 73 | } |
| 74 | |
| 75 | async loadSpec(forceRefresh = false): Promise<boolean> { |
| 76 | this.error = null; |