Update dependencies (#1813)
This commit is contained in:
55
vendor/go.mau.fi/whatsmeow/internals.go
vendored
Normal file
55
vendor/go.mau.fi/whatsmeow/internals.go
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
// Copyright (c) 2022 Tulir Asokan
|
||||
//
|
||||
// This Source Code Form is subject to the terms of the Mozilla Public
|
||||
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
package whatsmeow
|
||||
|
||||
import waBinary "go.mau.fi/whatsmeow/binary"
|
||||
|
||||
type DangerousInternalClient struct {
|
||||
c *Client
|
||||
}
|
||||
|
||||
// DangerousInternals allows access to some unexported methods in Client.
|
||||
//
|
||||
// Deprecated: dangerous
|
||||
func (cli *Client) DangerousInternals() *DangerousInternalClient {
|
||||
return &DangerousInternalClient{cli}
|
||||
}
|
||||
|
||||
type DangerousInfoQuery = infoQuery
|
||||
type DangerousInfoQueryType = infoQueryType
|
||||
|
||||
func (int *DangerousInternalClient) SendIQ(query DangerousInfoQuery) (*waBinary.Node, error) {
|
||||
return int.c.sendIQ(query)
|
||||
}
|
||||
|
||||
func (int *DangerousInternalClient) SendIQAsync(query DangerousInfoQuery) (<-chan *waBinary.Node, error) {
|
||||
return int.c.sendIQAsync(query)
|
||||
}
|
||||
|
||||
func (int *DangerousInternalClient) SendNode(node waBinary.Node) error {
|
||||
return int.c.sendNode(node)
|
||||
}
|
||||
|
||||
func (int *DangerousInternalClient) WaitResponse(reqID string) chan *waBinary.Node {
|
||||
return int.c.waitResponse(reqID)
|
||||
}
|
||||
|
||||
func (int *DangerousInternalClient) CancelResponse(reqID string, ch chan *waBinary.Node) {
|
||||
int.c.cancelResponse(reqID, ch)
|
||||
}
|
||||
|
||||
func (int *DangerousInternalClient) QueryMediaConn() (*MediaConn, error) {
|
||||
return int.c.queryMediaConn()
|
||||
}
|
||||
|
||||
func (int *DangerousInternalClient) RefreshMediaConn(force bool) (*MediaConn, error) {
|
||||
return int.c.refreshMediaConn(force)
|
||||
}
|
||||
|
||||
func (int *DangerousInternalClient) GetServerPreKeyCount() (int, error) {
|
||||
return int.c.getServerPreKeyCount()
|
||||
}
|
||||
Reference in New Issue
Block a user