@@ -84,13 +84,13 @@ enum ExecAsk: String, CaseIterable, Codable, Identifiable {
8484 }
8585}
8686
87- enum ExecApprovalDecision : String , Codable , Sendable {
87+ enum ExecApprovalDecision : String , Codable {
8888 case allowOnce = " allow-once "
8989 case allowAlways = " allow-always "
9090 case deny
9191}
9292
93- enum ExecAllowlistPatternValidationReason : String , Codable , Sendable , Equatable {
93+ enum ExecAllowlistPatternValidationReason : String , Codable , Equatable {
9494 case empty
9595 case missingPathComponent
9696
@@ -104,12 +104,12 @@ enum ExecAllowlistPatternValidationReason: String, Codable, Sendable, Equatable
104104 }
105105}
106106
107- enum ExecAllowlistPatternValidation : Sendable , Equatable {
107+ enum ExecAllowlistPatternValidation : Equatable {
108108 case valid( String )
109109 case invalid( ExecAllowlistPatternValidationReason )
110110}
111111
112- struct ExecAllowlistRejectedEntry : Sendable , Equatable {
112+ struct ExecAllowlistRejectedEntry : Equatable {
113113 let id : UUID
114114 let pattern : String
115115 let reason : ExecAllowlistPatternValidationReason
@@ -753,7 +753,7 @@ enum ExecApprovalHelpers {
753753 }
754754}
755755
756- struct ExecEventPayload : Codable , Sendable {
756+ struct ExecEventPayload : Codable {
757757 var sessionKey : String
758758 var runId : String
759759 var host : String
0 commit comments