Skip to content

Commit

Permalink
IOS-2770 Integrate middle v0.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joe-pusya committed Apr 24, 2024
1 parent 885dfa0 commit f8f7f3d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Anytype/Generated/Error+Localization.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5821,6 +5821,9 @@ extension Anytype_Rpc.Space.InviteView.Response.Error: LocalizedError {
case .inviteBadContent:
return String(localized: "Space.InviteView.inviteBadContent", defaultValue: "", table: "LocalizableError")
.checkValue(key: "Space.InviteView.inviteBadContent")
case .spaceIsDeleted:
return String(localized: "Space.InviteView.spaceIsDeleted", defaultValue: "", table: "LocalizableError")
.checkValue(key: "Space.InviteView.spaceIsDeleted")
case .UNRECOGNIZED:
return ""
}
Expand Down
2 changes: 1 addition & 1 deletion Libraryfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MIDDLE_VERSION=v0.33.0-rc22
MIDDLE_VERSION=v0.33.0
5 changes: 5 additions & 0 deletions Modules/ProtobufMessages/Sources/Protocol/commands.pb.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1018,6 +1018,7 @@ public struct Anytype_Rpc {
case badInput // = 2
case inviteNotFound // = 101
case inviteBadContent // = 102
case spaceIsDeleted // = 103
case UNRECOGNIZED(Int)

public init() {
Expand All @@ -1031,6 +1032,7 @@ public struct Anytype_Rpc {
case 2: self = .badInput
case 101: self = .inviteNotFound
case 102: self = .inviteBadContent
case 103: self = .spaceIsDeleted
default: self = .UNRECOGNIZED(rawValue)
}
}
Expand All @@ -1042,6 +1044,7 @@ public struct Anytype_Rpc {
case .badInput: return 2
case .inviteNotFound: return 101
case .inviteBadContent: return 102
case .spaceIsDeleted: return 103
case .UNRECOGNIZED(let i): return i
}
}
Expand Down Expand Up @@ -28203,6 +28206,7 @@ extension Anytype_Rpc.Space.InviteView.Response.Error.Code: CaseIterable {
.badInput,
.inviteNotFound,
.inviteBadContent,
.spaceIsDeleted,
]
}

Expand Down Expand Up @@ -33587,6 +33591,7 @@ extension Anytype_Rpc.Space.InviteView.Response.Error.Code: SwiftProtobuf._Proto
2: .same(proto: "BAD_INPUT"),
101: .same(proto: "INVITE_NOT_FOUND"),
102: .same(proto: "INVITE_BAD_CONTENT"),
103: .same(proto: "SPACE_IS_DELETED"),
]
}

Expand Down

0 comments on commit f8f7f3d

Please sign in to comment.