chore: regenerate protocol bindings for deliveryContext schema addition

Updates generated Swift bindings (GatewayModels.swift) to include the
deliveryContext field added to ConfigApplyLikeParamsSchema and
UpdateRunParamsSchema in src/gateway/protocol/schema/config.ts.
This commit is contained in:
Bryan Marty 2026-03-04 15:36:42 +00:00
parent ade14241ba
commit d000b6aa76
No known key found for this signature in database
2 changed files with 30 additions and 6 deletions

View File

@ -1656,19 +1656,22 @@ public struct ConfigApplyParams: Codable, Sendable {
public let sessionkey: String?
public let note: String?
public let restartdelayms: Int?
public let deliverycontext: [String: AnyCodable]?
public init(
raw: String,
basehash: String?,
sessionkey: String?,
note: String?,
restartdelayms: Int?)
restartdelayms: Int?,
deliverycontext: [String: AnyCodable]?)
{
self.raw = raw
self.basehash = basehash
self.sessionkey = sessionkey
self.note = note
self.restartdelayms = restartdelayms
self.deliverycontext = deliverycontext
}
private enum CodingKeys: String, CodingKey {
@ -1677,6 +1680,7 @@ public struct ConfigApplyParams: Codable, Sendable {
case sessionkey = "sessionKey"
case note
case restartdelayms = "restartDelayMs"
case deliverycontext = "deliveryContext"
}
}
@ -1686,19 +1690,22 @@ public struct ConfigPatchParams: Codable, Sendable {
public let sessionkey: String?
public let note: String?
public let restartdelayms: Int?
public let deliverycontext: [String: AnyCodable]?
public init(
raw: String,
basehash: String?,
sessionkey: String?,
note: String?,
restartdelayms: Int?)
restartdelayms: Int?,
deliverycontext: [String: AnyCodable]?)
{
self.raw = raw
self.basehash = basehash
self.sessionkey = sessionkey
self.note = note
self.restartdelayms = restartdelayms
self.deliverycontext = deliverycontext
}
private enum CodingKeys: String, CodingKey {
@ -1707,6 +1714,7 @@ public struct ConfigPatchParams: Codable, Sendable {
case sessionkey = "sessionKey"
case note
case restartdelayms = "restartDelayMs"
case deliverycontext = "deliveryContext"
}
}
@ -3709,17 +3717,20 @@ public struct UpdateRunParams: Codable, Sendable {
public let note: String?
public let restartdelayms: Int?
public let timeoutms: Int?
public let deliverycontext: [String: AnyCodable]?
public init(
sessionkey: String?,
note: String?,
restartdelayms: Int?,
timeoutms: Int?)
timeoutms: Int?,
deliverycontext: [String: AnyCodable]?)
{
self.sessionkey = sessionkey
self.note = note
self.restartdelayms = restartdelayms
self.timeoutms = timeoutms
self.deliverycontext = deliverycontext
}
private enum CodingKeys: String, CodingKey {
@ -3727,6 +3738,7 @@ public struct UpdateRunParams: Codable, Sendable {
case note
case restartdelayms = "restartDelayMs"
case timeoutms = "timeoutMs"
case deliverycontext = "deliveryContext"
}
}

View File

@ -1656,19 +1656,22 @@ public struct ConfigApplyParams: Codable, Sendable {
public let sessionkey: String?
public let note: String?
public let restartdelayms: Int?
public let deliverycontext: [String: AnyCodable]?
public init(
raw: String,
basehash: String?,
sessionkey: String?,
note: String?,
restartdelayms: Int?)
restartdelayms: Int?,
deliverycontext: [String: AnyCodable]?)
{
self.raw = raw
self.basehash = basehash
self.sessionkey = sessionkey
self.note = note
self.restartdelayms = restartdelayms
self.deliverycontext = deliverycontext
}
private enum CodingKeys: String, CodingKey {
@ -1677,6 +1680,7 @@ public struct ConfigApplyParams: Codable, Sendable {
case sessionkey = "sessionKey"
case note
case restartdelayms = "restartDelayMs"
case deliverycontext = "deliveryContext"
}
}
@ -1686,19 +1690,22 @@ public struct ConfigPatchParams: Codable, Sendable {
public let sessionkey: String?
public let note: String?
public let restartdelayms: Int?
public let deliverycontext: [String: AnyCodable]?
public init(
raw: String,
basehash: String?,
sessionkey: String?,
note: String?,
restartdelayms: Int?)
restartdelayms: Int?,
deliverycontext: [String: AnyCodable]?)
{
self.raw = raw
self.basehash = basehash
self.sessionkey = sessionkey
self.note = note
self.restartdelayms = restartdelayms
self.deliverycontext = deliverycontext
}
private enum CodingKeys: String, CodingKey {
@ -1707,6 +1714,7 @@ public struct ConfigPatchParams: Codable, Sendable {
case sessionkey = "sessionKey"
case note
case restartdelayms = "restartDelayMs"
case deliverycontext = "deliveryContext"
}
}
@ -3709,17 +3717,20 @@ public struct UpdateRunParams: Codable, Sendable {
public let note: String?
public let restartdelayms: Int?
public let timeoutms: Int?
public let deliverycontext: [String: AnyCodable]?
public init(
sessionkey: String?,
note: String?,
restartdelayms: Int?,
timeoutms: Int?)
timeoutms: Int?,
deliverycontext: [String: AnyCodable]?)
{
self.sessionkey = sessionkey
self.note = note
self.restartdelayms = restartdelayms
self.timeoutms = timeoutms
self.deliverycontext = deliverycontext
}
private enum CodingKeys: String, CodingKey {
@ -3727,6 +3738,7 @@ public struct UpdateRunParams: Codable, Sendable {
case note
case restartdelayms = "restartDelayMs"
case timeoutms = "timeoutMs"
case deliverycontext = "deliveryContext"
}
}