@dynatrace/dtrum-api-types 1.289.2 → 1.293.12
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 +1 -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 javascript agent.
|
|
3
3
|
|
|
4
4
|
Keep in mind that when the javascript agent is updated, this type package might not provide accurate types.
|
|
5
|
-
Version: 1.
|
|
5
|
+
Version: 1.293.12
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
> npm install --save-dev @dynatrace/dtrum-api-types
|
package/dtrum.d.ts
CHANGED
|
@@ -33,7 +33,6 @@ export interface APIPage {
|
|
|
33
33
|
group: string;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
// ts-prune-ignore-next Ignored because it is not used, but should still show up in typedoc
|
|
37
36
|
export type PageLeaveListener = (unloadRunning: boolean) => void;
|
|
38
37
|
|
|
39
38
|
export type AllowedMapTypes = Date | string | number;
|
|
@@ -193,7 +192,7 @@ export interface DtrumApi {
|
|
|
193
192
|
* For example, use before a window unload event by adding a {@link addPageLeavingListener}.
|
|
194
193
|
*
|
|
195
194
|
* @see {@link addPageLeavingListener}
|
|
196
|
-
* @param forceSync
|
|
195
|
+
* @param forceSync DEPRECATED: not used anymore and has no effect if provided.
|
|
197
196
|
* @param sendPreview Force sending of preview beacons which haven't been closed yet.
|
|
198
197
|
* @param killUnfinished Kills unfinished actions and sends them immediately. Handle with care, actions might be inaccurate.
|
|
199
198
|
*/
|