@dynatrace/dtrum-api-types 1.313.2 → 1.317.5
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 +3 -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 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.317.5
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
> npm install --save-dev @dynatrace/dtrum-api-types
|
package/dtrum.d.ts
CHANGED
|
@@ -263,7 +263,7 @@ export interface DtrumApi {
|
|
|
263
263
|
* Adds custom {@link https://www.dynatrace.com/support/help/shortlink/user-session-properties | action properties}
|
|
264
264
|
* to the currently active action. <br />
|
|
265
265
|
* Only accepts valid java long, java double (as a string representation), Date objects, and
|
|
266
|
-
* short strings with a maximum length of 100 characters. <br />
|
|
266
|
+
* short strings with a maximum length of 100-1000 characters (as configured under Application Settings). <br />
|
|
267
267
|
* Action properties must be defined first under Application settings and use a lower case key.
|
|
268
268
|
*
|
|
269
269
|
* @see {@link sendSessionProperties}
|
|
@@ -295,7 +295,7 @@ export interface DtrumApi {
|
|
|
295
295
|
* but you also want to propagate them to Dynatrace instead of logging them yourself.
|
|
296
296
|
* If errors are handled by your own application code it will stop the error from being handled
|
|
297
297
|
* by the global JavaScript {@link https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onerror | onerror event handler},
|
|
298
|
-
* which is used by Dynatrace to automatically capture
|
|
298
|
+
* which is used by Dynatrace to automatically capture JavaScript errors.
|
|
299
299
|
*
|
|
300
300
|
* @param error The error to be reported. Any browser error object is supported and if the error doesn't
|
|
301
301
|
* have a stacktrace the RUM JavaScipt monitoring code will attempt to generate one.
|
|
@@ -494,7 +494,7 @@ export interface DtrumApi {
|
|
|
494
494
|
/**
|
|
495
495
|
* Sends {@link https://www.dynatrace.com/support/help/shortlink/user-session-properties | session properties} on a beacon
|
|
496
496
|
* currently only accepts valid java long, java double (as a string representation), Date objects, and short strings of
|
|
497
|
-
* a maximum length of 100 characters. <br />
|
|
497
|
+
* a maximum length of 100-1000 characters (as configured under Application Settings). <br />
|
|
498
498
|
* NOTE: session properties need to have a lower case key! <br />
|
|
499
499
|
*
|
|
500
500
|
* Make sure to first define session properties under Application settings before making this API call.
|