@dynatrace/dtrum-api-types 1.331.9 → 1.333.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/.npmjs-npmrc +1 -0
- package/README.md +3 -3
- package/dtrum.d.ts +9 -0
- package/package.json +17 -17
package/.npmjs-npmrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
always-auth = true
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Dynatrace Dtrum Api Types
|
|
2
|
-
This package contains the Typescript type information for the dtrum.* API of the RUM JavaScript.
|
|
2
|
+
This package contains the Typescript type information for the dtrum.* API of the RUM Classic JavaScript.
|
|
3
3
|
|
|
4
|
-
Keep in mind that when the RUM JavaScript is updated, this type package might not provide accurate types.
|
|
5
|
-
Version: 1.
|
|
4
|
+
Keep in mind that when the RUM Classic JavaScript is updated, this type package might not provide accurate types.
|
|
5
|
+
Version: 1.333.2
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
> npm install --save-dev @dynatrace/dtrum-api-types
|
package/dtrum.d.ts
CHANGED
|
@@ -676,11 +676,20 @@ export interface DtrumApi {
|
|
|
676
676
|
* Enables manual page detection. Once this method is called, RUM JavaScript will stop automatically detecting page and page group names
|
|
677
677
|
* and will only use the values provided via {@link setPage}.
|
|
678
678
|
* It is recommended to call this as early as possible.
|
|
679
|
+
* To resume automatic detection, call {@link enableAutomaticPageDetection}.
|
|
679
680
|
*
|
|
680
681
|
* @group Custom Reporting
|
|
681
682
|
*/
|
|
682
683
|
enableManualPageDetection(): void;
|
|
683
684
|
|
|
685
|
+
/**
|
|
686
|
+
* Re-enables automatic page detection after manual detection was enabled via {@link enableManualPageDetection}.
|
|
687
|
+
* Once this method is called, RUM JavaScript will resume automatically detecting page and page group names.
|
|
688
|
+
*
|
|
689
|
+
* @group Custom Reporting
|
|
690
|
+
*/
|
|
691
|
+
enableAutomaticPageDetection(): void;
|
|
692
|
+
|
|
684
693
|
/**
|
|
685
694
|
* Starts a new page view and reports it to the Dynatrace server.
|
|
686
695
|
*
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
}
|
|
2
|
+
"name": "@dynatrace/dtrum-api-types",
|
|
3
|
+
"version": "1.333.2",
|
|
4
|
+
"description": "Typescript types for the Dynatrace RUM JavaScript dtrum.* API",
|
|
5
|
+
"main": "",
|
|
6
|
+
"typings": "index.d.ts",
|
|
7
|
+
"homepage": "https://www.dynatrace.com",
|
|
8
|
+
"author": "Dynatrace",
|
|
9
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"dynatrace",
|
|
12
|
+
"jsagent",
|
|
13
|
+
"dtrum",
|
|
14
|
+
"api",
|
|
15
|
+
"typescript",
|
|
16
|
+
"types"
|
|
17
|
+
]
|
|
18
|
+
}
|