(account: string, container: string)
| 13 | } |
| 14 | |
| 15 | async sync(account: string, container: string): Promise<void> { |
| 16 | await this.authUtil.requestWithAuthIfRequired({ |
| 17 | method: 'put', |
| 18 | url: `/api/datasources/${account}/${container}/sync`, |
| 19 | }); |
| 20 | } |
| 21 | async query(queryString: string, signal: AbortSignal): Promise<TraceabilityOrigin[]> { |
| 22 | const response = await this.authUtil.requestWithAuthIfRequired({ |
| 23 | method: 'get', |
nothing calls this directly
no test coverage detected