@ampsec/platform-client 11.2.1 → 12.1.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.
|
@@ -127,9 +127,13 @@ export type ReportResultUpsertDto = BaseUpsertDto & {
|
|
|
127
127
|
uid?: string;
|
|
128
128
|
/** Department */
|
|
129
129
|
department?: string | null;
|
|
130
|
+
/** Organization */
|
|
131
|
+
organization?: string | null;
|
|
130
132
|
/** Timestamp the report result was generated in ISO8601 format */
|
|
131
133
|
ts: string;
|
|
132
134
|
/** The results generated for the given report */
|
|
133
135
|
results: MetricResults;
|
|
136
|
+
/** The ID for the session in which this report result was created */
|
|
137
|
+
sessionId: string;
|
|
134
138
|
};
|
|
135
139
|
export type ReportResultDto = BaseDto & ReportResultUpsertDto;
|
package/package.json
CHANGED
|
@@ -133,10 +133,14 @@ export type ReportResultUpsertDto = BaseUpsertDto & {
|
|
|
133
133
|
uid?: string;
|
|
134
134
|
/** Department */
|
|
135
135
|
department?: string | null;
|
|
136
|
+
/** Organization */
|
|
137
|
+
organization?: string | null;
|
|
136
138
|
/** Timestamp the report result was generated in ISO8601 format */
|
|
137
139
|
ts: string;
|
|
138
140
|
/** The results generated for the given report */
|
|
139
141
|
results: MetricResults;
|
|
142
|
+
/** The ID for the session in which this report result was created */
|
|
143
|
+
sessionId: string;
|
|
140
144
|
};
|
|
141
145
|
|
|
142
146
|
export type ReportResultDto = BaseDto & ReportResultUpsertDto;
|