@dynatrace/dtrum-api-types 1.253.4 → 1.257.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 -1
- 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.257.2
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
> npm install --save-dev @dynatrace/dtrum-api-types
|
package/dtrum.d.ts
CHANGED
|
@@ -510,7 +510,8 @@ export interface DtrumApi {
|
|
|
510
510
|
date?: PropertyMap<Date>,
|
|
511
511
|
shortString?: PropertyMap<string>,
|
|
512
512
|
javaDouble?: PropertyMap<number>
|
|
513
|
-
|
|
513
|
+
// eslint-disable-next-line @dynatrace/dem-eslint-rules/correct-null-void-undefined -- jquery types return void by design - keep native types
|
|
514
|
+
): PropertiesSendingReport | undefined;
|
|
514
515
|
/**
|
|
515
516
|
* Report your own{@link https://www.dynatrace.com/support/help/shortlink/configure-application-errors#configure-custom-errors | custom errors}.
|
|
516
517
|
* For example, use when you want to capture form validation errors in your signup process.
|