File tree Expand file tree Collapse file tree
macos/Sources/OpenClawProtocol
shared/OpenClawKit/Sources/OpenClawProtocol Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1812,6 +1812,7 @@ public struct SessionsCreateParams: Codable, Sendable {
18121812 public let label : String ?
18131813 public let model : String ?
18141814 public let parentsessionkey : String ?
1815+ public let emitcommandhooks : Bool ?
18151816 public let task : String ?
18161817 public let message : String ?
18171818
@@ -1821,6 +1822,7 @@ public struct SessionsCreateParams: Codable, Sendable {
18211822 label: String ? ,
18221823 model: String ? ,
18231824 parentsessionkey: String ? ,
1825+ emitcommandhooks: Bool ? ,
18241826 task: String ? ,
18251827 message: String ? )
18261828 {
@@ -1829,6 +1831,7 @@ public struct SessionsCreateParams: Codable, Sendable {
18291831 self . label = label
18301832 self . model = model
18311833 self . parentsessionkey = parentsessionkey
1834+ self . emitcommandhooks = emitcommandhooks
18321835 self . task = task
18331836 self . message = message
18341837 }
@@ -1839,6 +1842,7 @@ public struct SessionsCreateParams: Codable, Sendable {
18391842 case label
18401843 case model
18411844 case parentsessionkey = " parentSessionKey "
1845+ case emitcommandhooks = " emitCommandHooks "
18421846 case task
18431847 case message
18441848 }
Original file line number Diff line number Diff line change @@ -1812,6 +1812,7 @@ public struct SessionsCreateParams: Codable, Sendable {
18121812 public let label : String ?
18131813 public let model : String ?
18141814 public let parentsessionkey : String ?
1815+ public let emitcommandhooks : Bool ?
18151816 public let task : String ?
18161817 public let message : String ?
18171818
@@ -1821,6 +1822,7 @@ public struct SessionsCreateParams: Codable, Sendable {
18211822 label: String ? ,
18221823 model: String ? ,
18231824 parentsessionkey: String ? ,
1825+ emitcommandhooks: Bool ? ,
18241826 task: String ? ,
18251827 message: String ? )
18261828 {
@@ -1829,6 +1831,7 @@ public struct SessionsCreateParams: Codable, Sendable {
18291831 self . label = label
18301832 self . model = model
18311833 self . parentsessionkey = parentsessionkey
1834+ self . emitcommandhooks = emitcommandhooks
18321835 self . task = task
18331836 self . message = message
18341837 }
@@ -1839,6 +1842,7 @@ public struct SessionsCreateParams: Codable, Sendable {
18391842 case label
18401843 case model
18411844 case parentsessionkey = " parentSessionKey "
1845+ case emitcommandhooks = " emitCommandHooks "
18421846 case task
18431847 case message
18441848 }
You can’t perform that action at this time.
0 commit comments