Skip to content

Commit e7a3fb8

Browse files
authored
fix: migrate to summary v2 endpoint (#148)
BREAKING CHANGE: summary time frame is now filtered by startDate and endDate not firstReport and lastReport
1 parent db55db0 commit e7a3fb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/summary/summary-api-client/summary-api-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export class SummaryApiClient {
77
private _tableDataClient: TableDataClient;
88

99
constructor(private _client: ApiClient) {
10-
this._tableDataClient = new TableDataClient(this._client, '/summary?data');
10+
this._tableDataClient = new TableDataClient(this._client, 'api/v2/summary');
1111
}
1212

1313
async getSummary(request: SummaryTableDataRequest): Promise<TableDataResponse<SummaryApiRow>> {

0 commit comments

Comments
 (0)