We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15e5f05 commit e72c8e0Copy full SHA for e72c8e0
Sources/AltKit/Server/ServerProtocol.swift
@@ -143,12 +143,14 @@ public struct EnableUnsignedCodeExecutionRequest: ServerMessageProtocol
143
public var identifier = "EnableUnsignedCodeExecutionRequest"
144
145
public var udid: String
146
- public var processID: Int32
+ public var processID: Int32?
147
+ public var processName: String?
148
- public init(udid: String, processID: Int32)
149
+ public init(udid: String, processID: Int32? = nil, processName: String? = nil)
150
{
151
self.udid = udid
152
self.processID = processID
153
+ self.processName = processName
154
}
155
156
0 commit comments