@dynatrace/dtrum-api-types 1.309.4 → 1.313.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dtrum.d.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
This package contains the Typescript type information for the dtrum.* API of the RUM JavaScript.
|
|
3
3
|
|
|
4
4
|
Keep in mind that when the RUM JavaScript is updated, this type package might not provide accurate types.
|
|
5
|
-
Version: 1.
|
|
5
|
+
Version: 1.313.2
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
> npm install --save-dev @dynatrace/dtrum-api-types
|
package/dtrum.d.ts
CHANGED
|
@@ -241,7 +241,7 @@ export interface DtrumApi {
|
|
|
241
241
|
* Note that, when providing a start time, it mustn't be longer than an hour in the past, otherwise the
|
|
242
242
|
* RUM monitoring code will ignore it.
|
|
243
243
|
*/
|
|
244
|
-
|
|
244
|
+
leaveAction(actionId: number, stopTime?: number, startTime?: number): void;
|
|
245
245
|
/**
|
|
246
246
|
* Attaches a listener that gets called when leaving an action <br />
|
|
247
247
|
* Remove the listener if not needed or make sure to filter actions if using {@link addActionProperties},
|
|
@@ -552,7 +552,7 @@ export interface DtrumApi {
|
|
|
552
552
|
* - 2 if page is trying to be set but mechanism is not active. Probably 'dtrum.enableManualPageDetection()' was not called.
|
|
553
553
|
* Negative number means new page failed to start and positive means that new page is started successfully.
|
|
554
554
|
*/
|
|
555
|
-
|
|
555
|
+
setPage(newPage: APIPage): number;
|
|
556
556
|
}
|
|
557
557
|
|
|
558
558
|
declare global {
|