@cyberstrike-io/sdk 1.1.16-beta.3 → 1.1.16-beta.4
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.
|
@@ -210,6 +210,8 @@ export type AssistantMessage = {
|
|
|
210
210
|
variant?: string;
|
|
211
211
|
finish?: string;
|
|
212
212
|
stepCapped?: boolean;
|
|
213
|
+
stuckNudged?: boolean;
|
|
214
|
+
stuckAborted?: boolean;
|
|
213
215
|
};
|
|
214
216
|
export type Message = UserMessage | AssistantMessage;
|
|
215
217
|
export type EventMessageUpdated = {
|
|
@@ -737,6 +739,7 @@ export type Vulnerability = {
|
|
|
737
739
|
endpoint?: string;
|
|
738
740
|
attack_vector?: string;
|
|
739
741
|
status?: "new" | "approved" | "duplicate" | "open" | "fixed" | "ignored";
|
|
742
|
+
candidate?: "critical" | "high" | "medium" | "low" | "info";
|
|
740
743
|
duplicate_of?: string;
|
|
741
744
|
message_id?: string;
|
|
742
745
|
time?: {
|