Skip to content

Commit c5f1755

Browse files
committed
chore: Add SendMexIQ to DangerousInternals
1 parent 3cd3caa commit c5f1755

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

internals.go

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ package whatsmeow
88

99
import (
1010
"context"
11+
"encoding/json"
1112

1213
"go.mau.fi/libsignal/keys/prekey"
1314

@@ -37,6 +38,10 @@ func (int *DangerousInternalClient) SendIQAsync(query DangerousInfoQuery) (<-cha
3738
return int.c.sendIQAsync(query)
3839
}
3940

41+
func (int *DangerousInternalClient) SendMexIQ(ctx context.Context, queryID string, variables any) (json.RawMessage, error) {
42+
return int.c.sendMexIQ(ctx, queryID, variables)
43+
}
44+
4045
func (int *DangerousInternalClient) SendNode(node waBinary.Node) error {
4146
return int.c.sendNode(node)
4247
}

0 commit comments

Comments
 (0)