@dynatrace/dtrum-api-types 1.299.6 → 1.301.7

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/dtrum.d.ts +2 -1
  3. 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.299.6
5
+ Version: 1.301.7
6
6
 
7
7
  ## Installation
8
8
  > npm install --save-dev @dynatrace/dtrum-api-types
package/dtrum.d.ts CHANGED
@@ -27,10 +27,11 @@ export interface ActionEnterListener {
27
27
  * @param name New view name. Usually it matches the location.pathname or location.hash
28
28
  * @param group New view group. It is recommended to contain the dynamic placeholders of the view name.
29
29
  * For example, if the view name is "/books/123", view group should be "books/:bookId" or similar.
30
+ * If null or undefined is passed in, the dynatrace server will calculate the group based on the name.
30
31
  */
31
32
  export interface APIPage {
32
33
  name: string;
33
- group: string;
34
+ group?: string;
34
35
  }
35
36
 
36
37
  export type PageLeaveListener = (unloadRunning: boolean) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynatrace/dtrum-api-types",
3
- "version": "1.299.6",
3
+ "version": "1.301.7",
4
4
  "description": "Typescript types for Dynatrace jsagents dtrum api.",
5
5
  "main": "",
6
6
  "typings": "dtrum.d.ts",