chore: regenerate Swift protocol models for callerSessionKey

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Antonio 2026-03-17 18:37:33 -03:00
parent 7f2778b2bc
commit 555013a875
2 changed files with 12 additions and 2 deletions

View File

@ -10,6 +10,7 @@ public enum ErrorCode: String, Codable, Sendable {
case agentTimeout = "AGENT_TIMEOUT"
case invalidRequest = "INVALID_REQUEST"
case unavailable = "UNAVAILABLE"
case permissionDenied = "PERMISSION_DENIED"
}
public struct ConnectParams: Codable, Sendable {
@ -2910,6 +2911,7 @@ public struct CronListParams: Codable, Sendable {
public let enabled: AnyCodable?
public let sortby: AnyCodable?
public let sortdir: AnyCodable?
public let callersessionkey: String?
public init(
includedisabled: Bool?,
@ -2918,7 +2920,8 @@ public struct CronListParams: Codable, Sendable {
query: String?,
enabled: AnyCodable?,
sortby: AnyCodable?,
sortdir: AnyCodable?)
sortdir: AnyCodable?,
callersessionkey: String?)
{
self.includedisabled = includedisabled
self.limit = limit
@ -2927,6 +2930,7 @@ public struct CronListParams: Codable, Sendable {
self.enabled = enabled
self.sortby = sortby
self.sortdir = sortdir
self.callersessionkey = callersessionkey
}
private enum CodingKeys: String, CodingKey {
@ -2937,6 +2941,7 @@ public struct CronListParams: Codable, Sendable {
case enabled
case sortby = "sortBy"
case sortdir = "sortDir"
case callersessionkey = "callerSessionKey"
}
}

View File

@ -10,6 +10,7 @@ public enum ErrorCode: String, Codable, Sendable {
case agentTimeout = "AGENT_TIMEOUT"
case invalidRequest = "INVALID_REQUEST"
case unavailable = "UNAVAILABLE"
case permissionDenied = "PERMISSION_DENIED"
}
public struct ConnectParams: Codable, Sendable {
@ -2910,6 +2911,7 @@ public struct CronListParams: Codable, Sendable {
public let enabled: AnyCodable?
public let sortby: AnyCodable?
public let sortdir: AnyCodable?
public let callersessionkey: String?
public init(
includedisabled: Bool?,
@ -2918,7 +2920,8 @@ public struct CronListParams: Codable, Sendable {
query: String?,
enabled: AnyCodable?,
sortby: AnyCodable?,
sortdir: AnyCodable?)
sortdir: AnyCodable?,
callersessionkey: String?)
{
self.includedisabled = includedisabled
self.limit = limit
@ -2927,6 +2930,7 @@ public struct CronListParams: Codable, Sendable {
self.enabled = enabled
self.sortby = sortby
self.sortdir = sortdir
self.callersessionkey = callersessionkey
}
private enum CodingKeys: String, CodingKey {
@ -2937,6 +2941,7 @@ public struct CronListParams: Codable, Sendable {
case enabled
case sortby = "sortBy"
case sortdir = "sortDir"
case callersessionkey = "callerSessionKey"
}
}