Update API

This commit is contained in:
Ilya Laktyushin
2025-11-12 22:06:23 +04:00
parent 1be0aaef7c
commit e680691988
15 changed files with 592 additions and 95 deletions

View File

@@ -3846,12 +3846,12 @@ public final class SharedAccountContextImpl: SharedAccountContext {
return GiftAuctionInfoScreen(context: context, auctionContext: auctionContext, completion: completion)
}
public func makeGiftAuctionBidScreen(context: AccountContext, auctionContext: GiftAuctionContext) -> ViewController {
return GiftAuctionBidScreen(context: context, auctionContext: auctionContext)
public func makeGiftAuctionBidScreen(context: AccountContext, toPeerId: EnginePeer.Id, auctionContext: GiftAuctionContext) -> ViewController {
return GiftAuctionBidScreen(context: context, toPeerId: toPeerId, auctionContext: auctionContext)
}
public func makeGiftAuctionViewScreen(context: AccountContext, auctionContext: GiftAuctionContext) -> ViewController {
return GiftAuctionViewScreen(context: context, auctionContext: auctionContext)
public func makeGiftAuctionViewScreen(context: AccountContext, toPeerId: EnginePeer.Id, auctionContext: GiftAuctionContext) -> ViewController {
return GiftAuctionViewScreen(context: context, toPeerId: toPeerId, auctionContext: auctionContext)
}
public func makeGiftAuctionActiveBidsScreen(context: AccountContext) -> ViewController {