Skip to content

Commit

Permalink
Upgrade timeline-chart and tsp-typescript-client
Browse files Browse the repository at this point in the history
timeline-chart: v0.3.2
tsp-typescript-client]: v0.4.2

Signed-off-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
  • Loading branch information
bhufmann committed Aug 16, 2024
1 parent ee28156 commit e16661e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 11 deletions.
2 changes: 1 addition & 1 deletion packages/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"src"
],
"dependencies": {
"tsp-typescript-client": "^0.4.1"
"tsp-typescript-client": "^0.4.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.4.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/react-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
"react-virtualized": "^9.21.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.86.0",
"timeline-chart": "^0.3.1",
"timeline-chart": "^0.3.2",
"traceviewer-base": "0.2.4",
"tsp-typescript-client": "^0.4.1"
"tsp-typescript-client": "^0.4.2"
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { Query } from 'tsp-typescript-client/lib/models/query/query';
import { Experiment } from 'tsp-typescript-client/lib/models/experiment';
import { GenericResponse } from 'tsp-typescript-client/lib/models/response/responses';
import { HealthStatus } from 'tsp-typescript-client/lib/models/health';
import { Identifier } from 'tsp-typescript-client/lib/models/identifier';
import { XyEntry, XYModel } from 'tsp-typescript-client/lib/models/xy';
import { TimeGraphEntry, TimeGraphArrow, TimeGraphModel } from 'tsp-typescript-client/lib/models/timegraph';
import { AnnotationCategoriesModel, AnnotationModel } from 'tsp-typescript-client/lib/models/annotation';
Expand Down Expand Up @@ -371,6 +372,14 @@ export class TheiaRpcTspProxy implements ITspClient {
return this.toTspClientResponse<HealthStatus>(await this.tspClient.checkHealth());
}

/**
* Fetch the identifier service
* @returns Important information regarding the trace server and the system it is running on
*/
public async fetchIdentifier(): Promise<TspClientResponse<Identifier>> {
return this.toTspClientResponse<Identifier>(await this.tspClient.fetchIdentifier());
}

/**
* Fetch all configuration source types
* @returns Generic response with the model
Expand Down
16 changes: 8 additions & 8 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13802,10 +13802,10 @@ through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6, through@^2.3.8:
resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz"
integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==

timeline-chart@^0.3.1:
version "0.3.1"
resolved "https://registry.npmjs.org/timeline-chart/-/timeline-chart-0.3.1.tgz#2f53b3af20e2dffba7917775db6b1ef5b40303d2"
integrity sha512-qDP9se79LtX+SlA6Y8dZDvcgL0z+9yEjdMiObAf3AWjUW+IsR3aQrNUTDER5pCXRMsvLQy5l2WWWQX0DrflKuQ==
timeline-chart@^0.3.2:
version "0.3.2"
resolved "https://registry.npmjs.org/timeline-chart/-/timeline-chart-0.3.2.tgz#a943e613c3d211ee81e7225c8d9c1654ac858555"
integrity sha512-DnmD2c+N4IGx5/AOxacUu2r9FanxAtbfratUxiElkYS53vZ65DBjiOTPvarsGeIC+DZNnVjObcq4jyh/tshFbg==
dependencies:
"@types/lodash.throttle" "^4.1.4"
glob "^7.1.6"
Expand Down Expand Up @@ -13982,10 +13982,10 @@ tslib@^2.6.2:
resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz#0438f810ad7a9edcde7a241c3d80db693c8cbfe0"
integrity sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==

tsp-typescript-client@^0.4.1:
version "0.4.1"
resolved "https://registry.npmjs.org/tsp-typescript-client/-/tsp-typescript-client-0.4.1.tgz#7475cacf1f5f055279dee4bd3614b24d5434d10d"
integrity sha512-T0Bi2qwkJdxEJ7NSASFMzHtSNMbZnmuyDyvR5+6uvcc9zxd7X4/axhCHfiRxlwvWddyQfpPGPrDFiLbz3g2izA==
tsp-typescript-client@^0.4.2:
version "0.4.2"
resolved "https://registry.npmjs.org/tsp-typescript-client/-/tsp-typescript-client-0.4.2.tgz#1c4d1328a26a90148f34ddbdf5525f4edd923732"
integrity sha512-MPYA9DctzwpMdcEIaZGQUKonHY+zGBB6yKnaTZlheBGlPV16N0nSHvuYTAhZ3K8yWgKilzZ+Bsx6gyFFtjM3EA==
dependencies:
json-bigint sidorares/json-bigint#2c0a5f896d7888e68e5f4ae3c7ea5cd42fd54473
node-fetch "^2.5.0"
Expand Down

0 comments on commit e16661e

Please sign in to comment.