@ampsec/platform-client 11.2.1 → 12.0.0

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.
@@ -131,5 +131,7 @@ export type ReportResultUpsertDto = BaseUpsertDto & {
131
131
  ts: string;
132
132
  /** The results generated for the given report */
133
133
  results: MetricResults;
134
+ /** The ID for the session in which this report result was created */
135
+ sessionId: string;
134
136
  };
135
137
  export type ReportResultDto = BaseDto & ReportResultUpsertDto;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampsec/platform-client",
3
- "version": "11.2.1",
3
+ "version": "12.0.0",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "runkitExampleFilename": "example/main.js",
@@ -137,6 +137,8 @@ export type ReportResultUpsertDto = BaseUpsertDto & {
137
137
  ts: string;
138
138
  /** The results generated for the given report */
139
139
  results: MetricResults;
140
+ /** The ID for the session in which this report result was created */
141
+ sessionId: string;
140
142
  };
141
143
 
142
144
  export type ReportResultDto = BaseDto & ReportResultUpsertDto;