@dynatrace/dtrum-api-types 1.285.2 → 1.289.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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/dtrum.d.ts +11 -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.285.2
5
+ Version: 1.289.2
6
6
 
7
7
  ## Installation
8
8
  > npm install --save-dev @dynatrace/dtrum-api-types
package/dtrum.d.ts CHANGED
@@ -279,8 +279,18 @@ export interface DtrumApi {
279
279
  *
280
280
  * Each key value pair must be defined in the following format 'key: { value: value<AllowedMapTypes>, public?: boolean }'
281
281
  * Public property is optional and if not declared as true values will be sent as masked(dT_pv) in doNotTrack mode
282
+ *
283
+ * @returns Status report about properties that were passed to the function.
284
+ * It contains data about failed properties with the failure reason.
285
+ * Contains data about properties that were sent successfully and a general message with information about total failed properties.
282
286
  */
283
- addActionProperties(parentActionId: number, javaLong?: PropertyMap<number>, date?: PropertyMap<Date>, shortString?: PropertyMap<string>, javaDouble?: PropertyMap<number>): void;
287
+ addActionProperties(
288
+ parentActionId: number,
289
+ javaLong?: PropertyMap<number>,
290
+ date?: PropertyMap<Date>,
291
+ shortString?: PropertyMap<string>,
292
+ javaDouble?: PropertyMap<number>
293
+ ): PropertiesSendingReport | undefined;
284
294
  /**
285
295
  * Reports an error object to Dynatrace. Use when you catch errors in your own application code
286
296
  * but you also want to propagate them to Dynatrace instead of logging them yourself.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynatrace/dtrum-api-types",
3
- "version": "1.285.2",
3
+ "version": "1.289.2",
4
4
  "description": "Typescript types for Dynatrace jsagents dtrum api.",
5
5
  "main": "",
6
6
  "typings": "dtrum.d.ts",