()
| 112 | writeTokenCache(cache); |
| 113 | } |
| 114 | removeCachedToken() { |
| 115 | const cache = readTokenCache(); |
| 116 | if (cache[this.wcsid]) { |
| 117 | delete cache[this.wcsid]; |
| 118 | writeTokenCache(cache); |
| 119 | } |
| 120 | } |
| 121 | getSignedBody(params = {}) { |
| 122 | const body = { |
| 123 | ...params, |
no test coverage detected