Skip to content

Commit

Permalink
[no ci] Version 1.5.2-tdlib-1.8.34-a24af099
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Aug 1, 2024
1 parent 6f0f42b commit f5cd08b
Show file tree
Hide file tree
Showing 1,330 changed files with 5,087 additions and 3,116 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Swiftgram/TDLibFramework",
"state": {
"branch": null,
"revision": "7bd7feea608b57d1ae5fc625ac587de122f6dcdd",
"version": "1.8.33-97ded010"
"revision": "d63d81fa241aa0455419f2147210842f23fea4ce",
"version": "1.8.34-a24af099"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ let package = Package(
targets: ["TDLibKit"]),
],
dependencies: [
.package(url: "https://github.com/Swiftgram/TDLibFramework", .exact("1.8.33-97ded010")),
.package(url: "https://github.com/Swiftgram/TDLibFramework", .exact("1.8.34-a24af099")),
],
targets: [
.target(
Expand Down
730 changes: 592 additions & 138 deletions Sources/TDLibKit/Generated/API/TDLibApi.swift

Large diffs are not rendered by default.

730 changes: 592 additions & 138 deletions Sources/TDLibKit/Generated/API/TdApi.swift

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/API/TdClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AccentColor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AcceptCall.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AcceptTermsOfService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AccountTtl.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
36 changes: 36 additions & 0 deletions Sources/TDLibKit/Generated/Models/AddBotMediaPreview.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
//
// AddBotMediaPreview.swift
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation


/// Adds a new media preview to the beginning of the list of media previews of a bot. Returns the added preview after addition is completed server-side. The total number of previews must not exceed getOption("bot_media_preview_count_max") for the given language
public struct AddBotMediaPreview: Codable, Equatable, Hashable {

/// Identifier of the target bot. The bot must be owned and must have the main Web App
public let botUserId: Int64?

/// Content of the added preview
public let content: InputStoryContent?

/// A two-letter ISO 639-1 language code for which preview is added. If empty, then the preview will be shown to all users for whose languages there are no dedicated previews. If non-empty, then there must be an official language pack of the same name, which is returned by getLocalizationTargetInfo
public let languageCode: String?


public init(
botUserId: Int64?,
content: InputStoryContent?,
languageCode: String?
) {
self.botUserId = botUserId
self.content = content
self.languageCode = languageCode
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AddChatMember.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AddChatMembers.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AddChatToList.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AddContact.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AddFavoriteSticker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AddFileToDownloads.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AddLocalMessage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AddLogMessage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AddMessageReaction.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AddNetworkStatistics.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AddProxy.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AddRecentSticker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AddRecentlyFoundChat.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AddSavedAnimation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AddStickerToSet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AddedReaction.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/AddedReactions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
4 changes: 2 additions & 2 deletions Sources/TDLibKit/Generated/Models/Address.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// tl2swift
//
// Generated automatically. Any changes will be lost!
// Based on TDLib 1.8.33-97ded010
// https://github.com/tdlib/td/tree/97ded010
// Based on TDLib 1.8.34-a24af099
// https://github.com/tdlib/td/tree/a24af099
//

import Foundation
Expand Down
Loading

0 comments on commit f5cd08b

Please sign in to comment.