const alphabet = [
...'abcdefghijklmnopqrstuvwxyz0123456789',
...'абвгдеёжзийклмнопрстуфхцчшщытэюя',
...'~!@#$%^&*()_-=[]{}|;:\'",./<>?«»\\',
];
const participants = await client.invoke(
new Api.channels.GetParticipants({
channel: groupId,
filter: new Api.ChannelParticipantsSearch({ q: query }),
offset: 0,
limit: 200,
})
);