Layer: Support layer 217 (#6490)
This commit is contained in:
parent
a52b0bf8ae
commit
281a95d0a0
@ -81,7 +81,7 @@ function buildApiChatFieldsFromPeerEntity(
|
||||
const isScam = userOrChannel?.scam;
|
||||
const isFake = userOrChannel?.fake;
|
||||
const areStoriesHidden = userOrChannel?.storiesHidden;
|
||||
const maxStoryId = userOrChannel?.storiesMaxId;
|
||||
const maxStoryId = userOrChannel?.storiesMaxId?.maxId;
|
||||
const botVerificationIconId = userOrChannel?.botVerificationIcon?.toString();
|
||||
const storiesUnavailable = userOrChannel?.storiesUnavailable;
|
||||
const color = userOrChannel?.color ? buildApiPeerColor(userOrChannel.color) : undefined;
|
||||
|
||||
@ -249,14 +249,14 @@ export function buildApiMessageAction(action: GramJs.TypeMessageAction): ApiMess
|
||||
}
|
||||
if (action instanceof GramJs.MessageActionGiftPremium) {
|
||||
const {
|
||||
currency, amount, months, cryptoCurrency, cryptoAmount, message,
|
||||
currency, amount, days, cryptoCurrency, cryptoAmount, message,
|
||||
} = action;
|
||||
return {
|
||||
mediaType: 'action',
|
||||
type: 'giftPremium',
|
||||
currency,
|
||||
amount: toJSNumber(amount),
|
||||
months,
|
||||
days,
|
||||
cryptoCurrency,
|
||||
cryptoAmount: toJSNumber(cryptoAmount),
|
||||
message: message && buildApiFormattedText(message),
|
||||
@ -298,7 +298,7 @@ export function buildApiMessageAction(action: GramJs.TypeMessageAction): ApiMess
|
||||
}
|
||||
if (action instanceof GramJs.MessageActionGiftCode) {
|
||||
const {
|
||||
viaGiveaway, unclaimed, boostPeer, months, slug, currency, amount, cryptoCurrency, cryptoAmount, message,
|
||||
viaGiveaway, unclaimed, boostPeer, days, slug, currency, amount, cryptoCurrency, cryptoAmount, message,
|
||||
} = action;
|
||||
return {
|
||||
mediaType: 'action',
|
||||
@ -306,7 +306,7 @@ export function buildApiMessageAction(action: GramJs.TypeMessageAction): ApiMess
|
||||
isViaGiveaway: viaGiveaway,
|
||||
isUnclaimed: unclaimed,
|
||||
boostPeerId: boostPeer && getApiChatIdFromMtpPeer(boostPeer),
|
||||
months,
|
||||
days,
|
||||
slug,
|
||||
currency,
|
||||
amount: toJSNumber(amount),
|
||||
|
||||
@ -741,7 +741,7 @@ export function buildTodo(todo: GramJs.TodoList, completions?: GramJs.TodoComple
|
||||
|
||||
const todoCompletions = completions?.map((completion) => ({
|
||||
itemId: completion.id,
|
||||
completedBy: completion.completedBy.toString(),
|
||||
completedBy: getApiChatIdFromMtpPeer(completion.completedBy),
|
||||
completedAt: completion.date,
|
||||
}));
|
||||
|
||||
|
||||
@ -425,12 +425,12 @@ export function buildApiGiveawayInfo(info: GramJs.payments.TypeGiveawayInfo): Ap
|
||||
|
||||
export function buildApiCheckedGiftCode(giftcode: GramJs.payments.TypeCheckedGiftCode): ApiCheckedGiftCode {
|
||||
const {
|
||||
date, fromId, months, giveawayMsgId, toId, usedDate, viaGiveaway,
|
||||
date, fromId, days, giveawayMsgId, toId, usedDate, viaGiveaway,
|
||||
} = giftcode;
|
||||
|
||||
return {
|
||||
date,
|
||||
months,
|
||||
days,
|
||||
toId: toId !== undefined ? buildApiPeerId(toId, 'user') : undefined,
|
||||
fromId: fromId && getApiChatIdFromMtpPeer(fromId),
|
||||
usedAt: usedDate,
|
||||
|
||||
@ -110,10 +110,11 @@ export function buildApiUser(mtpUser: GramJs.TypeUser): ApiUser | undefined {
|
||||
}
|
||||
|
||||
const {
|
||||
id, firstName, lastName, fake, scam, support, closeFriend, storiesUnavailable, storiesMaxId,
|
||||
id, firstName, lastName, fake, scam, support, closeFriend, storiesUnavailable,
|
||||
bot, botActiveUsers, botVerificationIcon, botInlinePlaceholder, botAttachMenu, botCanEdit,
|
||||
sendPaidMessagesStars, profileColor, botForumView,
|
||||
} = mtpUser;
|
||||
const storiesMaxId = mtpUser.storiesMaxId?.maxId;
|
||||
const hasVideoAvatar = mtpUser.photo instanceof GramJs.UserProfilePhoto ? Boolean(mtpUser.photo.hasVideo) : undefined;
|
||||
const avatarPhotoId = mtpUser.photo && buildAvatarPhotoId(mtpUser.photo);
|
||||
const userType = buildApiUserType(mtpUser);
|
||||
|
||||
@ -142,7 +142,7 @@ export interface ApiMessageActionGiftPremium extends ActionMediaType {
|
||||
type: 'giftPremium';
|
||||
currency: string;
|
||||
amount: number;
|
||||
months: number;
|
||||
days: number;
|
||||
cryptoCurrency?: string;
|
||||
cryptoAmount?: number;
|
||||
message?: ApiFormattedText;
|
||||
@ -173,7 +173,7 @@ export interface ApiMessageActionGiftCode extends ActionMediaType {
|
||||
isViaGiveaway?: true;
|
||||
isUnclaimed?: true;
|
||||
boostPeerId?: string;
|
||||
months: number;
|
||||
days: number;
|
||||
slug: string;
|
||||
currency?: string;
|
||||
amount?: number;
|
||||
|
||||
@ -276,7 +276,7 @@ export type ApiCheckedGiftCode = {
|
||||
giveawayMessageId?: number;
|
||||
toId?: string;
|
||||
date: number;
|
||||
months: number;
|
||||
days: number;
|
||||
usedAt?: number;
|
||||
};
|
||||
|
||||
|
||||
@ -1946,16 +1946,20 @@
|
||||
"ActionGiveawayResultTitle" = "Congratulations!";
|
||||
"ActionGiveawayResultPremiumText_one" = "You won a prize in a giveaway organized by {channel}.\n\nYour prize is a **Telegram Premium** subscription for **{months}** month.";
|
||||
"ActionGiveawayResultPremiumText_other" = "You won a prize in a giveaway organized by {channel}.\n\nYour prize is a **Telegram Premium** subscription for **{months}** months.";
|
||||
"ActionGiveawayResultPremiumDuration" = "You won a prize in a giveaway organized by {channel}.\n\nYour prize is a **Telegram Premium** subscription for **{duration}**.";
|
||||
"ActionGiftCodePremiumText_one" = "You've received a gift from {channel}.\n\nYour gift is a **Telegram Premium** subscription for {months} month.";
|
||||
"ActionGiftCodePremiumText_other" = "You've received a gift from {channel}.\n\nYour gift is a **Telegram Premium** subscription for {months} months.";
|
||||
"ActionGiveawayResultStarsText_one" = "You won a prize in a giveaway organized by {channel}.\n\nYour prize is **{amount}** Star.";
|
||||
"ActionGiveawayResultStarsText_other" = "You won a prize in a giveaway organized by {channel}.\n\nYour prize is **{amount}** Stars.";
|
||||
"ActionGiftCodeSubscriptionText_one" = "You've received a gift from {peer}.\n\nYour gift is a Telegram Premium subscription for {months} month.";
|
||||
"ActionGiftCodeSubscriptionText_other" = "You've received a gift from {peer}.\n\nYour gift is a Telegram Premium subscription for {months} months.";
|
||||
"ActionGiftCodeSubscriptionDuration" = "You've received a gift from {peer}.\n\nYour gift is a Telegram Premium subscription for {duration}.";
|
||||
"ActionGiftCodeSubscriptionDurationYou" = "You've sent a gift to {peer}.\n\nTelegram Premium subscription giftcode for {duration}.";
|
||||
"ActionGiftCodeSubscriptionTextYou_one" = "You've sent a gift to {peer}.\n\nTelegram Premium subscription giftcode for {months} month.";
|
||||
"ActionGiftCodeSubscriptionTextYou_other" = "You've sent a gift to {peer}.\n\nTelegram Premium subscription giftcode for {months} months.";
|
||||
"ActionGiftPremiumTitle_one" = "{months} Month Premium";
|
||||
"ActionGiftPremiumTitle_other" = "{months} Months Premium";
|
||||
"ActionGiftPremiumDuration" = "{duration} Premium";
|
||||
"ActionGiftPremiumText" = "Subscription for exclusive Telegram features.";
|
||||
"ActionGiftStarsTitle_one" = "{amount} Star";
|
||||
"ActionGiftStarsTitle_other" = "{amount} Stars";
|
||||
@ -2239,6 +2243,8 @@
|
||||
"NotificationGiftsLimit2_one" = "You already sent **one** of these gifts, which is the limit.";
|
||||
"NotificationGiftsLimit2_other" = "You already sent **{count}** of these gifts, which is the limit.";
|
||||
"PremiumGiftHeader" = "Premium Gift";
|
||||
"DialogTitlePremiumGiftSentTo" = "You gifted **{user}** a {amount} subscription to Telegram Premium.";
|
||||
"DialogTitlePremiumGiftReceivedFrom" = "**{user}** has gifted you a {amount} subscription to Telegram Premium.";
|
||||
"DescriptionGiftPremiumRequired2_one" = "Subscribe to **Telegram Premium** to send **one** of these gifts and unlock powerful features.";
|
||||
"DescriptionGiftPremiumRequired2_other" = "Subscribe to **Telegram Premium** to send up to **{count}** of these gifts and unlock powerful features.";
|
||||
"PriceInStars" = "Price in Stars";
|
||||
|
||||
@ -25,6 +25,7 @@ import {
|
||||
} from '../../../global/selectors';
|
||||
import { selectPremiumLimit } from '../../../global/selectors/limits';
|
||||
import buildClassName from '../../../util/buildClassName';
|
||||
import { formatCountdownDays } from '../../../util/dates/dateFormat';
|
||||
import { formatCurrency } from '../../../util/formatCurrency';
|
||||
import { getStickerFromGift } from '../../common/helpers/gifts';
|
||||
import { REM } from '../../common/helpers/mediaDimensions';
|
||||
@ -106,7 +107,7 @@ type StateProps = {
|
||||
isPremium?: boolean;
|
||||
isSuccess?: boolean;
|
||||
isGift?: boolean;
|
||||
monthsAmount?: number;
|
||||
daysAmount?: number;
|
||||
gift?: ApiStarGift;
|
||||
limitChannels: number;
|
||||
limitPins: number;
|
||||
@ -137,7 +138,7 @@ const PremiumMainModal: FC<OwnProps & StateProps> = ({
|
||||
isSuccess,
|
||||
isGift,
|
||||
toUser,
|
||||
monthsAmount,
|
||||
daysAmount,
|
||||
premiumPromoOrder,
|
||||
gift,
|
||||
}) => {
|
||||
@ -288,10 +289,11 @@ const PremiumMainModal: FC<OwnProps & StateProps> = ({
|
||||
}
|
||||
|
||||
if (isGift) {
|
||||
const formattedDuration = daysAmount ? formatCountdownDays(lang, daysAmount) : '';
|
||||
return renderText(
|
||||
fromUser?.id === currentUserId
|
||||
? oldLang('TelegramPremiumUserGiftedPremiumOutboundDialogTitle', [getUserFullName(toUser), monthsAmount])
|
||||
: oldLang('TelegramPremiumUserGiftedPremiumDialogTitle', [getUserFullName(fromUser), monthsAmount]),
|
||||
? lang('DialogTitlePremiumGiftSentTo', { user: getUserFullName(toUser), amount: formattedDuration })
|
||||
: lang('DialogTitlePremiumGiftReceivedFrom', { user: getUserFullName(fromUser), amount: formattedDuration }),
|
||||
['simple_markdown', 'emoji'],
|
||||
);
|
||||
}
|
||||
@ -525,7 +527,7 @@ export default memo(withGlobal<OwnProps>((global): Complete<StateProps> => {
|
||||
promo: premiumModal?.promo,
|
||||
isSuccess: premiumModal?.isSuccess,
|
||||
isGift: premiumModal?.isGift,
|
||||
monthsAmount: premiumModal?.monthsAmount,
|
||||
daysAmount: premiumModal?.daysAmount,
|
||||
gift: premiumModal?.gift,
|
||||
fromUser,
|
||||
fromUserStatusEmoji,
|
||||
|
||||
@ -286,7 +286,7 @@ const ActionMessage = ({
|
||||
isGift: true,
|
||||
fromUserId: sender?.id,
|
||||
toUserId: sender && sender.id === currentUserId ? chatId : currentUserId,
|
||||
monthsAmount: action.months,
|
||||
daysAmount: action.days,
|
||||
});
|
||||
break;
|
||||
}
|
||||
|
||||
@ -10,7 +10,7 @@ import type {
|
||||
} from '../../../api/types';
|
||||
|
||||
import { getPeerFullTitle, getPeerTitle } from '../../../global/helpers/peers';
|
||||
import { selectIsCurrentUserPremium, selectSender, selectUser } from '../../../global/selectors';
|
||||
import { selectIsCurrentUserPremium, selectPeer, selectSender } from '../../../global/selectors';
|
||||
import buildClassName from '../../../util/buildClassName';
|
||||
import { renderTextWithEntities } from '../../common/helpers/renderTextWithEntities';
|
||||
|
||||
@ -92,13 +92,13 @@ const TodoList = ({
|
||||
const isOutgoing = message.isOutgoing;
|
||||
|
||||
const tasks = useMemo(() => items.map((task) => {
|
||||
const user = !othersCanComplete ? undefined : selectUser(getGlobal(),
|
||||
completions?.find((c) => c.itemId === task.id)?.completedBy || '');
|
||||
const subLabel = user ? getPeerFullTitle(lang, user) : undefined;
|
||||
const completedBy = completions?.find((c) => c.itemId === task.id)?.completedBy;
|
||||
const peer = !othersCanComplete || !completedBy ? undefined : selectPeer(getGlobal(), completedBy);
|
||||
const subLabel = peer ? getPeerFullTitle(lang, peer) : undefined;
|
||||
return {
|
||||
label: renderTextWithEntities(task.title),
|
||||
value: task.id.toString(),
|
||||
user,
|
||||
peer,
|
||||
subLabel,
|
||||
};
|
||||
}), [items, othersCanComplete, completions, lang]);
|
||||
|
||||
@ -13,6 +13,7 @@ import {
|
||||
selectGiftStickerForStars,
|
||||
selectGiftStickerForTon,
|
||||
} from '../../../../global/selectors';
|
||||
import { formatCountdownDays } from '../../../../util/dates/dateFormat';
|
||||
import { formatCurrency } from '../../../../util/formatCurrency';
|
||||
import { renderTextWithEntities } from '../../../common/helpers/renderTextWithEntities';
|
||||
|
||||
@ -80,7 +81,7 @@ const GiftAction = ({
|
||||
<div className={styles.info}>
|
||||
<h3 className={styles.title}>
|
||||
{action.type === 'giftPremium' ? (
|
||||
lang('ActionGiftPremiumTitle', { months: action.months }, { pluralValue: action.months })
|
||||
lang('ActionGiftPremiumDuration', { duration: formatCountdownDays(lang, action.days) })
|
||||
) : action.type === 'giftStars' ? (
|
||||
lang('ActionGiftStarsTitle', { amount: action.stars }, { pluralValue: action.stars })
|
||||
) : renderTonTitle()}
|
||||
@ -104,7 +105,7 @@ const GiftAction = ({
|
||||
export default memo(withGlobal<OwnProps>(
|
||||
(global, { action }): Complete<StateProps> => {
|
||||
const sticker = action.type === 'giftPremium'
|
||||
? selectGiftStickerForDuration(global, action.months)
|
||||
? selectGiftStickerForDuration(global, action.days)
|
||||
: action.type === 'giftStars'
|
||||
? selectGiftStickerForStars(global, action.stars)
|
||||
: selectGiftStickerForTon(global, action.cryptoAmount);
|
||||
|
||||
@ -11,7 +11,8 @@ import {
|
||||
selectGiftStickerForDuration,
|
||||
selectGiftStickerForStars,
|
||||
} from '../../../../global/selectors';
|
||||
import { renderPeerLink, translateWithYou } from '../helpers/messageActions';
|
||||
import { formatCountdownDays } from '../../../../util/dates/dateFormat';
|
||||
import { renderPeerLink } from '../helpers/messageActions';
|
||||
|
||||
import { type ObserveFn } from '../../../../hooks/useIntersectionObserver';
|
||||
import useLang from '../../../../hooks/useLang';
|
||||
@ -93,21 +94,20 @@ const GiveawayPrizeAction = ({
|
||||
<div>
|
||||
{action.type === 'giftCode' && (
|
||||
action.isViaGiveaway ? lang(
|
||||
'ActionGiveawayResultPremiumText',
|
||||
{ channel: channelLink, months: action.months },
|
||||
'ActionGiveawayResultPremiumDuration',
|
||||
{ channel: channelLink, duration: formatCountdownDays(lang, action.days) },
|
||||
{
|
||||
withNodes: true,
|
||||
withMarkdown: true,
|
||||
pluralValue: action.months,
|
||||
renderTextFilters: ['br'],
|
||||
})
|
||||
: translateWithYou(
|
||||
lang,
|
||||
'ActionGiftCodeSubscriptionText',
|
||||
sender?.id === currentUserId,
|
||||
{ peer: peerLink, months: action.months },
|
||||
: lang(
|
||||
sender?.id === currentUserId
|
||||
? 'ActionGiftCodeSubscriptionDurationYou'
|
||||
: 'ActionGiftCodeSubscriptionDuration',
|
||||
{ peer: peerLink, duration: formatCountdownDays(lang, action.days) },
|
||||
{
|
||||
pluralValue: action.months,
|
||||
withNodes: true,
|
||||
renderTextFilters: ['br'],
|
||||
})
|
||||
)}
|
||||
@ -137,7 +137,7 @@ export default memo(withGlobal<OwnProps>(
|
||||
(global, { action }): Complete<StateProps> => {
|
||||
const currentUserId = global.currentUserId!;
|
||||
const sticker = action.type === 'giftCode'
|
||||
? selectGiftStickerForDuration(global, action.months)
|
||||
? selectGiftStickerForDuration(global, action.days)
|
||||
: selectGiftStickerForStars(global, action.stars);
|
||||
const canPlayAnimatedEmojis = selectCanPlayAnimatedEmojis(global);
|
||||
|
||||
|
||||
@ -115,7 +115,7 @@ function GiftComposer({
|
||||
type: 'giftPremium',
|
||||
amount: currentGift.amount,
|
||||
currency: currentGift.currency,
|
||||
months: gift.months,
|
||||
days: gift.months * 30,
|
||||
message: giftMessage ? { text: giftMessage } : undefined,
|
||||
},
|
||||
},
|
||||
|
||||
@ -7,9 +7,10 @@ import type { TabState } from '../../../global/types';
|
||||
import { TME_LINK_PREFIX } from '../../../config';
|
||||
import { selectChatMessage, selectSender } from '../../../global/selectors';
|
||||
import buildClassName from '../../../util/buildClassName';
|
||||
import { formatDateTimeToString } from '../../../util/dates/dateFormat';
|
||||
import { formatCountdownDays, formatDateTimeToString } from '../../../util/dates/dateFormat';
|
||||
import renderText from '../../common/helpers/renderText';
|
||||
|
||||
import useLang from '../../../hooks/useLang';
|
||||
import useLastCallback from '../../../hooks/useLastCallback';
|
||||
import useOldLang from '../../../hooks/useOldLang';
|
||||
|
||||
@ -39,7 +40,8 @@ const GiftCodeModal = ({
|
||||
const {
|
||||
closeGiftCodeModal, applyGiftCode, focusMessage,
|
||||
} = getActions();
|
||||
const lang = useOldLang();
|
||||
const lang = useLang();
|
||||
const oldLang = useOldLang();
|
||||
const isOpen = Boolean(modal);
|
||||
|
||||
const canUse = (!modal?.info.toId || modal?.info.toId === currentUserId) && !modal?.info.usedAt;
|
||||
@ -70,41 +72,41 @@ const GiftCodeModal = ({
|
||||
const header = (
|
||||
<>
|
||||
<img src={PremiumLogo} alt="" className={styles.logo} />
|
||||
<p className={styles.centered}>{renderText(lang('lng_gift_link_about'), ['simple_markdown'])}</p>
|
||||
<p className={styles.centered}>{renderText(oldLang('lng_gift_link_about'), ['simple_markdown'])}</p>
|
||||
<LinkField title="BoostingGiftLink" link={`${TME_LINK_PREFIX}/${GIFTCODE_PATH}/${slug}`} />
|
||||
</>
|
||||
);
|
||||
|
||||
const tableData: TableData = [
|
||||
[lang('BoostingFrom'), fromId ? { chatId: fromId } : lang('BoostingNoRecipient')],
|
||||
[lang('BoostingTo'), info.toId ? { chatId: info.toId } : lang('BoostingNoRecipient')],
|
||||
[lang('BoostingGift'), lang('BoostingTelegramPremiumFor', lang('Months', info.months, 'i'))],
|
||||
[oldLang('BoostingFrom'), fromId ? { chatId: fromId } : oldLang('BoostingNoRecipient')],
|
||||
[oldLang('BoostingTo'), info.toId ? { chatId: info.toId } : oldLang('BoostingNoRecipient')],
|
||||
[oldLang('BoostingGift'), oldLang('BoostingTelegramPremiumFor', formatCountdownDays(lang, info.days))],
|
||||
];
|
||||
if (info.isFromGiveaway) {
|
||||
tableData.push([
|
||||
lang('BoostingReason'),
|
||||
oldLang('BoostingReason'),
|
||||
(
|
||||
<span
|
||||
className={buildClassName(info.giveawayMessageId && styles.clickable)}
|
||||
onClick={handleOpenGiveaway}
|
||||
>
|
||||
{info.isFromGiveaway && !info.toId
|
||||
? lang('BoostingIncompleteGiveaway')
|
||||
: lang('BoostingGiveaway')}
|
||||
? oldLang('BoostingIncompleteGiveaway')
|
||||
: oldLang('BoostingGiveaway')}
|
||||
</span>
|
||||
),
|
||||
]);
|
||||
}
|
||||
tableData.push([
|
||||
lang('BoostingDate'),
|
||||
formatDateTimeToString(info.date * 1000, lang.code, true),
|
||||
oldLang('BoostingDate'),
|
||||
formatDateTimeToString(info.date * 1000, oldLang.code, true),
|
||||
]);
|
||||
|
||||
const footer = (
|
||||
<span className={styles.centered}>
|
||||
{renderText(
|
||||
info.usedAt ? lang('BoostingUsedLinkDate', formatDateTimeToString(info.usedAt * 1000, lang.code, true))
|
||||
: lang('BoostingSendLinkToAnyone'),
|
||||
info.usedAt ? oldLang('BoostingUsedLinkDate', formatDateTimeToString(info.usedAt * 1000, oldLang.code, true))
|
||||
: oldLang('BoostingSendLinkToAnyone'),
|
||||
['simple_markdown'],
|
||||
)}
|
||||
</span>
|
||||
@ -115,18 +117,18 @@ const GiftCodeModal = ({
|
||||
tableData,
|
||||
footer,
|
||||
};
|
||||
}, [lang, messageSender?.id, modal]);
|
||||
}, [lang, oldLang, messageSender?.id, modal]);
|
||||
|
||||
if (!modalData) return undefined;
|
||||
|
||||
return (
|
||||
<TableInfoModal
|
||||
isOpen={isOpen}
|
||||
title={lang('lng_gift_link_title')}
|
||||
title={oldLang('lng_gift_link_title')}
|
||||
tableData={modalData.tableData}
|
||||
header={modalData.header}
|
||||
footer={modalData.footer}
|
||||
buttonText={canUse ? lang('BoostingUseLink') : lang('Close')}
|
||||
buttonText={canUse ? oldLang('BoostingUseLink') : oldLang('Close')}
|
||||
onButtonClick={handleButtonClick}
|
||||
onClose={closeGiftCodeModal}
|
||||
/>
|
||||
|
||||
@ -7,7 +7,7 @@ import {
|
||||
useState,
|
||||
} from '../../lib/teact/teact';
|
||||
|
||||
import type { ApiUser } from '../../api/types';
|
||||
import type { ApiPeer } from '../../api/types';
|
||||
import type { IconName } from '../../types/icons';
|
||||
import type { IRadioOption } from './CheckboxGroup';
|
||||
|
||||
@ -30,7 +30,7 @@ type OwnProps = {
|
||||
id?: string;
|
||||
name?: string;
|
||||
value?: string;
|
||||
user?: ApiUser;
|
||||
peer?: ApiPeer;
|
||||
label?: TeactNode;
|
||||
labelText?: TeactNode;
|
||||
subLabel?: string;
|
||||
@ -62,7 +62,7 @@ const Checkbox: FC<OwnProps> = ({
|
||||
name,
|
||||
value,
|
||||
label,
|
||||
user,
|
||||
peer,
|
||||
labelText,
|
||||
subLabel,
|
||||
checked,
|
||||
@ -88,7 +88,7 @@ const Checkbox: FC<OwnProps> = ({
|
||||
const lang = useLang();
|
||||
const labelRef = useRef<HTMLLabelElement>();
|
||||
const [showNested, setShowNested] = useState(false);
|
||||
const renderingUser = useCurrentOrPrev(user, true);
|
||||
const renderingPeer = useCurrentOrPrev(peer, true);
|
||||
|
||||
const handleChange = useLastCallback((event: ChangeEvent<HTMLInputElement>) => {
|
||||
if (disabled) {
|
||||
@ -159,10 +159,10 @@ const Checkbox: FC<OwnProps> = ({
|
||||
Boolean(leftElement) && 'Nested-avatar-list',
|
||||
)}
|
||||
>
|
||||
<div className={buildClassName('user-avatar', renderingUser && 'user-avatar-visible')}>
|
||||
{renderingUser && (
|
||||
<div className={buildClassName('user-avatar', renderingPeer && 'user-avatar-visible')}>
|
||||
{renderingPeer && (
|
||||
<Avatar
|
||||
peer={renderingUser}
|
||||
peer={renderingPeer}
|
||||
size={AVATAR_SIZE}
|
||||
/>
|
||||
)}
|
||||
|
||||
@ -2,7 +2,7 @@ import type { ChangeEvent } from 'react';
|
||||
import type { FC, TeactNode } from '../../lib/teact/teact';
|
||||
import { memo } from '../../lib/teact/teact';
|
||||
|
||||
import type { ApiUser } from '../../api/types';
|
||||
import type { ApiPeer } from '../../api/types';
|
||||
|
||||
import buildClassName from '../../util/buildClassName';
|
||||
import { unique } from '../../util/iteratees';
|
||||
@ -17,7 +17,7 @@ export type IRadioOption = {
|
||||
disabled?: boolean;
|
||||
value: string;
|
||||
nestedOptions?: IRadioOption[];
|
||||
user?: ApiUser;
|
||||
peer?: ApiPeer;
|
||||
};
|
||||
|
||||
type OwnProps = {
|
||||
@ -77,7 +77,7 @@ const CheckboxGroup: FC<OwnProps> = ({
|
||||
label={option.label}
|
||||
subLabel={option.subLabel}
|
||||
value={option.value}
|
||||
user={option.user}
|
||||
peer={option.peer}
|
||||
checked={selected?.indexOf(option.value) !== -1}
|
||||
disabled={option.disabled || disabled}
|
||||
isLoading={loadingOptions ? loadingOptions.indexOf(option.value) !== -1 : undefined}
|
||||
|
||||
@ -484,7 +484,7 @@ addActionHandler('closePremiumModal', (global, actions, payload): ActionReturnTy
|
||||
|
||||
addActionHandler('openPremiumModal', async (global, actions, payload): Promise<void> => {
|
||||
const {
|
||||
initialSection, fromUserId, isSuccess, isGift, monthsAmount, toUserId, gift,
|
||||
initialSection, fromUserId, isSuccess, isGift, daysAmount, toUserId, gift,
|
||||
tabId = getCurrentTabId(),
|
||||
} = payload || {};
|
||||
|
||||
@ -503,7 +503,7 @@ addActionHandler('openPremiumModal', async (global, actions, payload): Promise<v
|
||||
fromUserId,
|
||||
toUserId,
|
||||
isGift,
|
||||
monthsAmount,
|
||||
daysAmount,
|
||||
isSuccess,
|
||||
gift,
|
||||
},
|
||||
|
||||
@ -600,11 +600,11 @@ addActionHandler('loadStoriesMaxIds', async (global, actions, payload): Promise<
|
||||
result.forEach((maxId, i) => {
|
||||
const peer = peers[i];
|
||||
global = updatePeer(global, peer.id, {
|
||||
maxStoryId: maxId,
|
||||
hasStories: maxId !== 0,
|
||||
maxStoryId: maxId.maxId,
|
||||
hasStories: Boolean(maxId.maxId),
|
||||
});
|
||||
|
||||
if (maxId !== 0) {
|
||||
if (maxId.maxId !== 0) {
|
||||
peerIdsToLoad.push(peer.id);
|
||||
}
|
||||
});
|
||||
|
||||
@ -7,13 +7,22 @@ import { convertCurrencyFromBaseUnit } from '../../util/formatCurrency';
|
||||
import { selectTabState } from './tabs';
|
||||
import { selectIsCurrentUserPremium } from './users';
|
||||
|
||||
// Duration in days
|
||||
const MONTH = 30;
|
||||
const QUARTER_YEAR = MONTH * 3;
|
||||
const HALF_YEAR = MONTH * 6;
|
||||
const YEAR = MONTH * 12;
|
||||
const TWO_YEARS = MONTH * 24;
|
||||
|
||||
const DURATION_DELTA = 5;
|
||||
|
||||
// https://github.com/DrKLO/Telegram/blob/c319639e9a4dff2f22da6762dcebd12d49f5afa1/TMessagesProj/src/main/java/org/telegram/ui/Components/Premium/boosts/cells/msg/GiveawayMessageCell.java#L59
|
||||
const MONTH_EMOTICON: Record<number, string> = {
|
||||
1: `${1}\u{FE0F}\u20E3`,
|
||||
3: `${2}\u{FE0F}\u20E3`,
|
||||
6: `${3}\u{FE0F}\u20E3`,
|
||||
12: `${4}\u{FE0F}\u20E3`,
|
||||
24: `${5}\u{FE0F}\u20E3`,
|
||||
const DURATION_EMOTICON: Record<number, string> = {
|
||||
[MONTH]: `${1}\u{FE0F}\u20E3`, // 1 month
|
||||
[QUARTER_YEAR]: `${2}\u{FE0F}\u20E3`, // 3 months
|
||||
[HALF_YEAR]: `${3}\u{FE0F}\u20E3`, // 6 months
|
||||
[YEAR]: `${4}\u{FE0F}\u20E3`, // 12 months
|
||||
[TWO_YEARS]: `${5}\u{FE0F}\u20E3`, // 24 months
|
||||
};
|
||||
|
||||
const STAR_EMOTICON: Record<number, string> = {
|
||||
@ -178,10 +187,29 @@ export function selectIsAlwaysHighPriorityEmoji<T extends GlobalState>(
|
||||
|| stickerSet.id === RESTRICTED_EMOJI_SET_ID;
|
||||
}
|
||||
|
||||
export function selectGiftStickerForDuration<T extends GlobalState>(global: T, duration = 1) {
|
||||
function findDurationEmoji(days: number): string {
|
||||
if (days <= MONTH) {
|
||||
return DURATION_EMOTICON[MONTH];
|
||||
}
|
||||
if (days <= QUARTER_YEAR) {
|
||||
return DURATION_EMOTICON[QUARTER_YEAR];
|
||||
}
|
||||
if (days <= HALF_YEAR + DURATION_DELTA) {
|
||||
return DURATION_EMOTICON[HALF_YEAR];
|
||||
}
|
||||
if (days <= YEAR + DURATION_DELTA) {
|
||||
return DURATION_EMOTICON[YEAR];
|
||||
}
|
||||
|
||||
return DURATION_EMOTICON[TWO_YEARS];
|
||||
}
|
||||
|
||||
export function selectGiftStickerForDuration<T extends GlobalState>(global: T, days = 30) {
|
||||
const stickers = global.premiumGifts?.stickers;
|
||||
if (!stickers) return undefined;
|
||||
const emoji = MONTH_EMOTICON[duration];
|
||||
|
||||
const emoji = findDurationEmoji(days);
|
||||
|
||||
return stickers.find((sticker) => sticker.emoji === emoji) || stickers[0];
|
||||
}
|
||||
|
||||
|
||||
@ -2493,7 +2493,7 @@ export interface ActionPayloads {
|
||||
toUserId?: string;
|
||||
isSuccess?: boolean;
|
||||
isGift?: boolean;
|
||||
monthsAmount?: number;
|
||||
daysAmount?: number;
|
||||
gift?: ApiStarGift;
|
||||
} & WithTabId) | undefined;
|
||||
closePremiumModal: WithTabId | undefined;
|
||||
|
||||
@ -652,7 +652,7 @@ export type TabState = {
|
||||
fromUserId?: string;
|
||||
toUserId?: string;
|
||||
isGift?: boolean;
|
||||
monthsAmount?: number;
|
||||
daysAmount?: number;
|
||||
isSuccess?: boolean;
|
||||
gift?: ApiStarGift;
|
||||
};
|
||||
|
||||
@ -12,6 +12,6 @@ for (const tl of Object.values(Api)) {
|
||||
}
|
||||
}
|
||||
|
||||
export const LAYER = 216;
|
||||
export const LAYER = 217;
|
||||
|
||||
export { tlobjects };
|
||||
|
||||
293
src/lib/gramjs/tl/api.d.ts
vendored
293
src/lib/gramjs/tl/api.d.ts
vendored
@ -66,7 +66,7 @@ namespace Api {
|
||||
export type TypeChatParticipants = ChatParticipantsForbidden | ChatParticipants;
|
||||
export type TypeChatPhoto = ChatPhotoEmpty | ChatPhoto;
|
||||
export type TypeMessage = MessageEmpty | Message | MessageService;
|
||||
export type TypeMessageMedia = MessageMediaEmpty | MessageMediaPhoto | MessageMediaGeo | MessageMediaContact | MessageMediaUnsupported | MessageMediaDocument | MessageMediaWebPage | MessageMediaVenue | MessageMediaGame | MessageMediaInvoice | MessageMediaGeoLive | MessageMediaPoll | MessageMediaDice | MessageMediaStory | MessageMediaGiveaway | MessageMediaGiveawayResults | MessageMediaPaidMedia | MessageMediaToDo;
|
||||
export type TypeMessageMedia = MessageMediaEmpty | MessageMediaPhoto | MessageMediaGeo | MessageMediaContact | MessageMediaUnsupported | MessageMediaDocument | MessageMediaWebPage | MessageMediaVenue | MessageMediaGame | MessageMediaInvoice | MessageMediaGeoLive | MessageMediaPoll | MessageMediaDice | MessageMediaStory | MessageMediaGiveaway | MessageMediaGiveawayResults | MessageMediaPaidMedia | MessageMediaToDo | MessageMediaVideoStream;
|
||||
export type TypeMessageAction = MessageActionEmpty | MessageActionChatCreate | MessageActionChatEditTitle | MessageActionChatEditPhoto | MessageActionChatDeletePhoto | MessageActionChatAddUser | MessageActionChatDeleteUser | MessageActionChatJoinedByLink | MessageActionChannelCreate | MessageActionChatMigrateTo | MessageActionChannelMigrateFrom | MessageActionPinMessage | MessageActionHistoryClear | MessageActionGameScore | MessageActionPaymentSentMe | MessageActionPaymentSent | MessageActionPhoneCall | MessageActionScreenshotTaken | MessageActionCustomAction | MessageActionBotAllowed | MessageActionSecureValuesSentMe | MessageActionSecureValuesSent | MessageActionContactSignUp | MessageActionGeoProximityReached | MessageActionGroupCall | MessageActionInviteToGroupCall | MessageActionSetMessagesTTL | MessageActionGroupCallScheduled | MessageActionSetChatTheme | MessageActionChatJoinedByRequest | MessageActionWebViewDataSentMe | MessageActionWebViewDataSent | MessageActionGiftPremium | MessageActionTopicCreate | MessageActionTopicEdit | MessageActionSuggestProfilePhoto | MessageActionRequestedPeer | MessageActionSetChatWallPaper | MessageActionGiftCode | MessageActionGiveawayLaunch | MessageActionGiveawayResults | MessageActionBoostApply | MessageActionRequestedPeerSentMe | MessageActionPaymentRefunded | MessageActionGiftStars | MessageActionPrizeStars | MessageActionStarGift | MessageActionStarGiftUnique | MessageActionPaidMessagesRefunded | MessageActionPaidMessagesPrice | MessageActionConferenceCall | MessageActionTodoCompletions | MessageActionTodoAppendTasks | MessageActionSuggestedPostApproval | MessageActionSuggestedPostSuccess | MessageActionSuggestedPostRefund | MessageActionGiftTon | MessageActionSuggestBirthday;
|
||||
export type TypeDialog = Dialog | DialogFolder;
|
||||
export type TypePhoto = PhotoEmpty | Photo;
|
||||
@ -83,7 +83,7 @@ namespace Api {
|
||||
export type TypeImportedContact = ImportedContact;
|
||||
export type TypeContactStatus = ContactStatus;
|
||||
export type TypeMessagesFilter = InputMessagesFilterEmpty | InputMessagesFilterPhotos | InputMessagesFilterVideo | InputMessagesFilterPhotoVideo | InputMessagesFilterDocument | InputMessagesFilterUrl | InputMessagesFilterGif | InputMessagesFilterVoice | InputMessagesFilterMusic | InputMessagesFilterChatPhotos | InputMessagesFilterPhoneCalls | InputMessagesFilterRoundVoice | InputMessagesFilterRoundVideo | InputMessagesFilterMyMentions | InputMessagesFilterGeo | InputMessagesFilterContacts | InputMessagesFilterPinned;
|
||||
export type TypeUpdate = UpdateNewMessage | UpdateMessageID | UpdateDeleteMessages | UpdateUserTyping | UpdateChatUserTyping | UpdateChatParticipants | UpdateUserStatus | UpdateUserName | UpdateNewAuthorization | UpdateNewEncryptedMessage | UpdateEncryptedChatTyping | UpdateEncryption | UpdateEncryptedMessagesRead | UpdateChatParticipantAdd | UpdateChatParticipantDelete | UpdateDcOptions | UpdateNotifySettings | UpdateServiceNotification | UpdatePrivacy | UpdateUserPhone | UpdateReadHistoryInbox | UpdateReadHistoryOutbox | UpdateWebPage | UpdateReadMessagesContents | UpdateChannelTooLong | UpdateChannel | UpdateNewChannelMessage | UpdateReadChannelInbox | UpdateDeleteChannelMessages | UpdateChannelMessageViews | UpdateChatParticipantAdmin | UpdateNewStickerSet | UpdateStickerSetsOrder | UpdateStickerSets | UpdateSavedGifs | UpdateBotInlineQuery | UpdateBotInlineSend | UpdateEditChannelMessage | UpdateBotCallbackQuery | UpdateEditMessage | UpdateInlineBotCallbackQuery | UpdateReadChannelOutbox | UpdateDraftMessage | UpdateReadFeaturedStickers | UpdateRecentStickers | UpdateConfig | UpdatePtsChanged | UpdateChannelWebPage | UpdateDialogPinned | UpdatePinnedDialogs | UpdateBotWebhookJSON | UpdateBotWebhookJSONQuery | UpdateBotShippingQuery | UpdateBotPrecheckoutQuery | UpdatePhoneCall | UpdateLangPackTooLong | UpdateLangPack | UpdateFavedStickers | UpdateChannelReadMessagesContents | UpdateContactsReset | UpdateChannelAvailableMessages | UpdateDialogUnreadMark | UpdateMessagePoll | UpdateChatDefaultBannedRights | UpdateFolderPeers | UpdatePeerSettings | UpdatePeerLocated | UpdateNewScheduledMessage | UpdateDeleteScheduledMessages | UpdateTheme | UpdateGeoLiveViewed | UpdateLoginToken | UpdateMessagePollVote | UpdateDialogFilter | UpdateDialogFilterOrder | UpdateDialogFilters | UpdatePhoneCallSignalingData | UpdateChannelMessageForwards | UpdateReadChannelDiscussionInbox | UpdateReadChannelDiscussionOutbox | UpdatePeerBlocked | UpdateChannelUserTyping | UpdatePinnedMessages | UpdatePinnedChannelMessages | UpdateChat | UpdateGroupCallParticipants | UpdateGroupCall | UpdatePeerHistoryTTL | UpdateChatParticipant | UpdateChannelParticipant | UpdateBotStopped | UpdateGroupCallConnection | UpdateBotCommands | UpdatePendingJoinRequests | UpdateBotChatInviteRequester | UpdateMessageReactions | UpdateAttachMenuBots | UpdateWebViewResultSent | UpdateBotMenuButton | UpdateSavedRingtones | UpdateTranscribedAudio | UpdateReadFeaturedEmojiStickers | UpdateUserEmojiStatus | UpdateRecentEmojiStatuses | UpdateRecentReactions | UpdateMoveStickerSetToTop | UpdateMessageExtendedMedia | UpdateUser | UpdateAutoSaveSettings | UpdateStory | UpdateReadStories | UpdateStoryID | UpdateStoriesStealthMode | UpdateSentStoryReaction | UpdateBotChatBoost | UpdateChannelViewForumAsMessages | UpdatePeerWallpaper | UpdateBotMessageReaction | UpdateBotMessageReactions | UpdateSavedDialogPinned | UpdatePinnedSavedDialogs | UpdateSavedReactionTags | UpdateSmsJob | UpdateQuickReplies | UpdateNewQuickReply | UpdateDeleteQuickReply | UpdateQuickReplyMessage | UpdateDeleteQuickReplyMessages | UpdateBotBusinessConnect | UpdateBotNewBusinessMessage | UpdateBotEditBusinessMessage | UpdateBotDeleteBusinessMessage | UpdateNewStoryReaction | UpdateStarsBalance | UpdateBusinessBotCallbackQuery | UpdateStarsRevenueStatus | UpdateBotPurchasedPaidMedia | UpdatePaidReactionPrivacy | UpdateSentPhoneCode | UpdateGroupCallChainBlocks | UpdateReadMonoForumInbox | UpdateReadMonoForumOutbox | UpdateMonoForumNoPaidException | UpdateGroupCallMessage | UpdateGroupCallEncryptedMessage | UpdatePinnedForumTopic | UpdatePinnedForumTopics;
|
||||
export type TypeUpdate = UpdateNewMessage | UpdateMessageID | UpdateDeleteMessages | UpdateUserTyping | UpdateChatUserTyping | UpdateChatParticipants | UpdateUserStatus | UpdateUserName | UpdateNewAuthorization | UpdateNewEncryptedMessage | UpdateEncryptedChatTyping | UpdateEncryption | UpdateEncryptedMessagesRead | UpdateChatParticipantAdd | UpdateChatParticipantDelete | UpdateDcOptions | UpdateNotifySettings | UpdateServiceNotification | UpdatePrivacy | UpdateUserPhone | UpdateReadHistoryInbox | UpdateReadHistoryOutbox | UpdateWebPage | UpdateReadMessagesContents | UpdateChannelTooLong | UpdateChannel | UpdateNewChannelMessage | UpdateReadChannelInbox | UpdateDeleteChannelMessages | UpdateChannelMessageViews | UpdateChatParticipantAdmin | UpdateNewStickerSet | UpdateStickerSetsOrder | UpdateStickerSets | UpdateSavedGifs | UpdateBotInlineQuery | UpdateBotInlineSend | UpdateEditChannelMessage | UpdateBotCallbackQuery | UpdateEditMessage | UpdateInlineBotCallbackQuery | UpdateReadChannelOutbox | UpdateDraftMessage | UpdateReadFeaturedStickers | UpdateRecentStickers | UpdateConfig | UpdatePtsChanged | UpdateChannelWebPage | UpdateDialogPinned | UpdatePinnedDialogs | UpdateBotWebhookJSON | UpdateBotWebhookJSONQuery | UpdateBotShippingQuery | UpdateBotPrecheckoutQuery | UpdatePhoneCall | UpdateLangPackTooLong | UpdateLangPack | UpdateFavedStickers | UpdateChannelReadMessagesContents | UpdateContactsReset | UpdateChannelAvailableMessages | UpdateDialogUnreadMark | UpdateMessagePoll | UpdateChatDefaultBannedRights | UpdateFolderPeers | UpdatePeerSettings | UpdatePeerLocated | UpdateNewScheduledMessage | UpdateDeleteScheduledMessages | UpdateTheme | UpdateGeoLiveViewed | UpdateLoginToken | UpdateMessagePollVote | UpdateDialogFilter | UpdateDialogFilterOrder | UpdateDialogFilters | UpdatePhoneCallSignalingData | UpdateChannelMessageForwards | UpdateReadChannelDiscussionInbox | UpdateReadChannelDiscussionOutbox | UpdatePeerBlocked | UpdateChannelUserTyping | UpdatePinnedMessages | UpdatePinnedChannelMessages | UpdateChat | UpdateGroupCallParticipants | UpdateGroupCall | UpdatePeerHistoryTTL | UpdateChatParticipant | UpdateChannelParticipant | UpdateBotStopped | UpdateGroupCallConnection | UpdateBotCommands | UpdatePendingJoinRequests | UpdateBotChatInviteRequester | UpdateMessageReactions | UpdateAttachMenuBots | UpdateWebViewResultSent | UpdateBotMenuButton | UpdateSavedRingtones | UpdateTranscribedAudio | UpdateReadFeaturedEmojiStickers | UpdateUserEmojiStatus | UpdateRecentEmojiStatuses | UpdateRecentReactions | UpdateMoveStickerSetToTop | UpdateMessageExtendedMedia | UpdateUser | UpdateAutoSaveSettings | UpdateStory | UpdateReadStories | UpdateStoryID | UpdateStoriesStealthMode | UpdateSentStoryReaction | UpdateBotChatBoost | UpdateChannelViewForumAsMessages | UpdatePeerWallpaper | UpdateBotMessageReaction | UpdateBotMessageReactions | UpdateSavedDialogPinned | UpdatePinnedSavedDialogs | UpdateSavedReactionTags | UpdateSmsJob | UpdateQuickReplies | UpdateNewQuickReply | UpdateDeleteQuickReply | UpdateQuickReplyMessage | UpdateDeleteQuickReplyMessages | UpdateBotBusinessConnect | UpdateBotNewBusinessMessage | UpdateBotEditBusinessMessage | UpdateBotDeleteBusinessMessage | UpdateNewStoryReaction | UpdateStarsBalance | UpdateBusinessBotCallbackQuery | UpdateStarsRevenueStatus | UpdateBotPurchasedPaidMedia | UpdatePaidReactionPrivacy | UpdateSentPhoneCode | UpdateGroupCallChainBlocks | UpdateReadMonoForumInbox | UpdateReadMonoForumOutbox | UpdateMonoForumNoPaidException | UpdateGroupCallMessage | UpdateGroupCallEncryptedMessage | UpdatePinnedForumTopic | UpdatePinnedForumTopics | UpdateDeleteGroupCallMessages;
|
||||
export type TypeUpdates = UpdatesTooLong | UpdateShortMessage | UpdateShortChatMessage | UpdateShort | UpdatesCombined | Updates | UpdateShortSentMessage;
|
||||
export type TypeDcOption = DcOption;
|
||||
export type TypeConfig = Config;
|
||||
@ -97,8 +97,8 @@ namespace Api {
|
||||
export type TypeDocument = DocumentEmpty | Document;
|
||||
export type TypeNotifyPeer = NotifyPeer | NotifyUsers | NotifyChats | NotifyBroadcasts | NotifyForumTopic;
|
||||
export type TypeSendMessageAction = SendMessageTypingAction | SendMessageCancelAction | SendMessageRecordVideoAction | SendMessageUploadVideoAction | SendMessageRecordAudioAction | SendMessageUploadAudioAction | SendMessageUploadPhotoAction | SendMessageUploadDocumentAction | SendMessageGeoLocationAction | SendMessageChooseContactAction | SendMessageGamePlayAction | SendMessageRecordRoundAction | SendMessageUploadRoundAction | SpeakingInGroupCallAction | SendMessageHistoryImportAction | SendMessageChooseStickerAction | SendMessageEmojiInteraction | SendMessageEmojiInteractionSeen | SendMessageTextDraftAction;
|
||||
export type TypeInputPrivacyKey = InputPrivacyKeyStatusTimestamp | InputPrivacyKeyChatInvite | InputPrivacyKeyPhoneCall | InputPrivacyKeyPhoneP2P | InputPrivacyKeyForwards | InputPrivacyKeyProfilePhoto | InputPrivacyKeyPhoneNumber | InputPrivacyKeyAddedByPhone | InputPrivacyKeyVoiceMessages | InputPrivacyKeyAbout | InputPrivacyKeyBirthday | InputPrivacyKeyStarGiftsAutoSave | InputPrivacyKeyNoPaidMessages;
|
||||
export type TypePrivacyKey = PrivacyKeyStatusTimestamp | PrivacyKeyChatInvite | PrivacyKeyPhoneCall | PrivacyKeyPhoneP2P | PrivacyKeyForwards | PrivacyKeyProfilePhoto | PrivacyKeyPhoneNumber | PrivacyKeyAddedByPhone | PrivacyKeyVoiceMessages | PrivacyKeyAbout | PrivacyKeyBirthday | PrivacyKeyStarGiftsAutoSave | PrivacyKeyNoPaidMessages;
|
||||
export type TypeInputPrivacyKey = InputPrivacyKeyStatusTimestamp | InputPrivacyKeyChatInvite | InputPrivacyKeyPhoneCall | InputPrivacyKeyPhoneP2P | InputPrivacyKeyForwards | InputPrivacyKeyProfilePhoto | InputPrivacyKeyPhoneNumber | InputPrivacyKeyAddedByPhone | InputPrivacyKeyVoiceMessages | InputPrivacyKeyAbout | InputPrivacyKeyBirthday | InputPrivacyKeyStarGiftsAutoSave | InputPrivacyKeyNoPaidMessages | InputPrivacyKeySavedMusic;
|
||||
export type TypePrivacyKey = PrivacyKeyStatusTimestamp | PrivacyKeyChatInvite | PrivacyKeyPhoneCall | PrivacyKeyPhoneP2P | PrivacyKeyForwards | PrivacyKeyProfilePhoto | PrivacyKeyPhoneNumber | PrivacyKeyAddedByPhone | PrivacyKeyVoiceMessages | PrivacyKeyAbout | PrivacyKeyBirthday | PrivacyKeyStarGiftsAutoSave | PrivacyKeyNoPaidMessages | PrivacyKeySavedMusic;
|
||||
export type TypeInputPrivacyRule = InputPrivacyValueAllowContacts | InputPrivacyValueAllowAll | InputPrivacyValueAllowUsers | InputPrivacyValueDisallowContacts | InputPrivacyValueDisallowAll | InputPrivacyValueDisallowUsers | InputPrivacyValueAllowChatParticipants | InputPrivacyValueDisallowChatParticipants | InputPrivacyValueAllowCloseFriends | InputPrivacyValueAllowPremium | InputPrivacyValueAllowBots | InputPrivacyValueDisallowBots;
|
||||
export type TypePrivacyRule = PrivacyValueAllowContacts | PrivacyValueAllowAll | PrivacyValueAllowUsers | PrivacyValueDisallowContacts | PrivacyValueDisallowAll | PrivacyValueDisallowUsers | PrivacyValueAllowChatParticipants | PrivacyValueDisallowChatParticipants | PrivacyValueAllowCloseFriends | PrivacyValueAllowPremium | PrivacyValueAllowBots | PrivacyValueDisallowBots;
|
||||
export type TypeAccountDaysTTL = AccountDaysTTL;
|
||||
@ -403,6 +403,9 @@ namespace Api {
|
||||
export type TypeProfileTab = ProfileTabPosts | ProfileTabGifts | ProfileTabMedia | ProfileTabFiles | ProfileTabMusic | ProfileTabVoice | ProfileTabLinks | ProfileTabGifs;
|
||||
export type TypeInputChatTheme = InputChatThemeEmpty | InputChatTheme | InputChatThemeUniqueGift;
|
||||
export type TypeStarGiftUpgradePrice = StarGiftUpgradePrice;
|
||||
export type TypeGroupCallMessage = GroupCallMessage;
|
||||
export type TypeGroupCallDonor = GroupCallDonor;
|
||||
export type TypeRecentStory = RecentStory;
|
||||
export type TypeResPQ = ResPQ;
|
||||
export type TypeP_Q_inner_data = PQInnerData | PQInnerDataDc | PQInnerDataTemp | PQInnerDataTempDc;
|
||||
export type TypeServer_DH_Params = ServerDHParamsFail | ServerDHParamsOk;
|
||||
@ -633,6 +636,7 @@ namespace Api {
|
||||
export type TypeExportedGroupCallInvite = phone.ExportedGroupCallInvite;
|
||||
export type TypeGroupCallStreamChannels = phone.GroupCallStreamChannels;
|
||||
export type TypeGroupCallStreamRtmpUrl = phone.GroupCallStreamRtmpUrl;
|
||||
export type TypeGroupCallStars = phone.GroupCallStars;
|
||||
}
|
||||
|
||||
export namespace stats {
|
||||
@ -810,16 +814,20 @@ namespace Api {
|
||||
static fromReader(reader: Reader): InputUserFromMessage;
|
||||
}
|
||||
export class InputPhoneContact extends VirtualClass<{
|
||||
// flags: Api.Type;
|
||||
clientId: long;
|
||||
phone: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
note?: Api.TypeTextWithEntities;
|
||||
}> {
|
||||
// flags: Api.Type;
|
||||
clientId: long;
|
||||
phone: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
CONSTRUCTOR_ID: 4086478836;
|
||||
note?: Api.TypeTextWithEntities;
|
||||
CONSTRUCTOR_ID: 1780335806;
|
||||
SUBCLASS_OF_ID: 2926144130;
|
||||
className: 'InputPhoneContact';
|
||||
|
||||
@ -1493,7 +1501,7 @@ namespace Api {
|
||||
langCode?: string;
|
||||
emojiStatus?: Api.TypeEmojiStatus;
|
||||
usernames?: Api.TypeUsername[];
|
||||
storiesMaxId?: int;
|
||||
storiesMaxId?: Api.TypeRecentStory;
|
||||
color?: Api.TypePeerColor;
|
||||
profileColor?: Api.TypePeerColor;
|
||||
botActiveUsers?: int;
|
||||
@ -1542,13 +1550,13 @@ namespace Api {
|
||||
langCode?: string;
|
||||
emojiStatus?: Api.TypeEmojiStatus;
|
||||
usernames?: Api.TypeUsername[];
|
||||
storiesMaxId?: int;
|
||||
storiesMaxId?: Api.TypeRecentStory;
|
||||
color?: Api.TypePeerColor;
|
||||
profileColor?: Api.TypePeerColor;
|
||||
botActiveUsers?: int;
|
||||
botVerificationIcon?: long;
|
||||
sendPaidMessagesStars?: long;
|
||||
CONSTRUCTOR_ID: 34280482;
|
||||
CONSTRUCTOR_ID: 829899656;
|
||||
SUBCLASS_OF_ID: 765557111;
|
||||
className: 'User';
|
||||
|
||||
@ -1749,7 +1757,7 @@ namespace Api {
|
||||
defaultBannedRights?: Api.TypeChatBannedRights;
|
||||
participantsCount?: int;
|
||||
usernames?: Api.TypeUsername[];
|
||||
storiesMaxId?: int;
|
||||
storiesMaxId?: Api.TypeRecentStory;
|
||||
color?: Api.TypePeerColor;
|
||||
profileColor?: Api.TypePeerColor;
|
||||
emojiStatus?: Api.TypeEmojiStatus;
|
||||
@ -1801,7 +1809,7 @@ namespace Api {
|
||||
defaultBannedRights?: Api.TypeChatBannedRights;
|
||||
participantsCount?: int;
|
||||
usernames?: Api.TypeUsername[];
|
||||
storiesMaxId?: int;
|
||||
storiesMaxId?: Api.TypeRecentStory;
|
||||
color?: Api.TypePeerColor;
|
||||
profileColor?: Api.TypePeerColor;
|
||||
emojiStatus?: Api.TypeEmojiStatus;
|
||||
@ -1810,7 +1818,7 @@ namespace Api {
|
||||
botVerificationIcon?: long;
|
||||
sendPaidMessagesStars?: long;
|
||||
linkedMonoforumId?: long;
|
||||
CONSTRUCTOR_ID: 4268249941;
|
||||
CONSTRUCTOR_ID: 473084188;
|
||||
SUBCLASS_OF_ID: 3316604308;
|
||||
className: 'Channel';
|
||||
|
||||
@ -2184,6 +2192,7 @@ namespace Api {
|
||||
reportDeliveryUntilDate?: int;
|
||||
paidMessageStars?: long;
|
||||
suggestedPost?: Api.TypeSuggestedPost;
|
||||
scheduleRepeatPeriod?: int;
|
||||
}> {
|
||||
// flags: Api.Type;
|
||||
out?: true;
|
||||
@ -2231,7 +2240,8 @@ namespace Api {
|
||||
reportDeliveryUntilDate?: int;
|
||||
paidMessageStars?: long;
|
||||
suggestedPost?: Api.TypeSuggestedPost;
|
||||
CONSTRUCTOR_ID: 2551566024;
|
||||
scheduleRepeatPeriod?: int;
|
||||
CONSTRUCTOR_ID: 3106895567;
|
||||
SUBCLASS_OF_ID: 2030045667;
|
||||
className: 'Message';
|
||||
|
||||
@ -2595,6 +2605,20 @@ namespace Api {
|
||||
|
||||
static fromReader(reader: Reader): MessageMediaToDo;
|
||||
}
|
||||
export class MessageMediaVideoStream extends VirtualClass<{
|
||||
// flags: Api.Type;
|
||||
rtmpStream?: true;
|
||||
call: Api.TypeInputGroupCall;
|
||||
}> {
|
||||
// flags: Api.Type;
|
||||
rtmpStream?: true;
|
||||
call: Api.TypeInputGroupCall;
|
||||
CONSTRUCTOR_ID: 3395070857;
|
||||
SUBCLASS_OF_ID: 1198308914;
|
||||
className: 'MessageMediaVideoStream';
|
||||
|
||||
static fromReader(reader: Reader): MessageMediaVideoStream;
|
||||
}
|
||||
export class MessageActionEmpty extends VirtualClass<void> {
|
||||
CONSTRUCTOR_ID: 3064919984;
|
||||
SUBCLASS_OF_ID: 2256589094;
|
||||
@ -2970,7 +2994,7 @@ namespace Api {
|
||||
// flags: Api.Type;
|
||||
currency: string;
|
||||
amount: long;
|
||||
months: int;
|
||||
days: int;
|
||||
cryptoCurrency?: string;
|
||||
cryptoAmount?: long;
|
||||
message?: Api.TypeTextWithEntities;
|
||||
@ -2978,11 +3002,11 @@ namespace Api {
|
||||
// flags: Api.Type;
|
||||
currency: string;
|
||||
amount: long;
|
||||
months: int;
|
||||
days: int;
|
||||
cryptoCurrency?: string;
|
||||
cryptoAmount?: long;
|
||||
message?: Api.TypeTextWithEntities;
|
||||
CONSTRUCTOR_ID: 1818391802;
|
||||
CONSTRUCTOR_ID: 1223234306;
|
||||
SUBCLASS_OF_ID: 2256589094;
|
||||
className: 'MessageActionGiftPremium';
|
||||
|
||||
@ -3067,7 +3091,7 @@ namespace Api {
|
||||
viaGiveaway?: true;
|
||||
unclaimed?: true;
|
||||
boostPeer?: Api.TypePeer;
|
||||
months: int;
|
||||
days: int;
|
||||
slug: string;
|
||||
currency?: string;
|
||||
amount?: long;
|
||||
@ -3079,14 +3103,14 @@ namespace Api {
|
||||
viaGiveaway?: true;
|
||||
unclaimed?: true;
|
||||
boostPeer?: Api.TypePeer;
|
||||
months: int;
|
||||
days: int;
|
||||
slug: string;
|
||||
currency?: string;
|
||||
amount?: long;
|
||||
cryptoCurrency?: string;
|
||||
cryptoAmount?: long;
|
||||
message?: Api.TypeTextWithEntities;
|
||||
CONSTRUCTOR_ID: 1456486804;
|
||||
CONSTRUCTOR_ID: 834962247;
|
||||
SUBCLASS_OF_ID: 2256589094;
|
||||
className: 'MessageActionGiftCode';
|
||||
|
||||
@ -5393,13 +5417,15 @@ namespace Api {
|
||||
}
|
||||
export class UpdateGroupCall extends VirtualClass<{
|
||||
// flags: Api.Type;
|
||||
chatId?: long;
|
||||
liveStory?: true;
|
||||
peer?: Api.TypePeer;
|
||||
call: Api.TypeGroupCall;
|
||||
}> {
|
||||
// flags: Api.Type;
|
||||
chatId?: long;
|
||||
liveStory?: true;
|
||||
peer?: Api.TypePeer;
|
||||
call: Api.TypeGroupCall;
|
||||
CONSTRUCTOR_ID: 2547401537;
|
||||
CONSTRUCTOR_ID: 2636256992;
|
||||
SUBCLASS_OF_ID: 2676568142;
|
||||
className: 'UpdateGroupCall';
|
||||
|
||||
@ -6164,15 +6190,11 @@ namespace Api {
|
||||
}
|
||||
export class UpdateGroupCallMessage extends VirtualClass<{
|
||||
call: Api.TypeInputGroupCall;
|
||||
fromId: Api.TypePeer;
|
||||
randomId: long;
|
||||
message: Api.TypeTextWithEntities;
|
||||
message: Api.TypeGroupCallMessage;
|
||||
}> {
|
||||
call: Api.TypeInputGroupCall;
|
||||
fromId: Api.TypePeer;
|
||||
randomId: long;
|
||||
message: Api.TypeTextWithEntities;
|
||||
CONSTRUCTOR_ID: 2026050784;
|
||||
message: Api.TypeGroupCallMessage;
|
||||
CONSTRUCTOR_ID: 3627183885;
|
||||
SUBCLASS_OF_ID: 2676568142;
|
||||
className: 'UpdateGroupCallMessage';
|
||||
|
||||
@ -6222,6 +6244,18 @@ namespace Api {
|
||||
|
||||
static fromReader(reader: Reader): UpdatePinnedForumTopics;
|
||||
}
|
||||
export class UpdateDeleteGroupCallMessages extends VirtualClass<{
|
||||
call: Api.TypeInputGroupCall;
|
||||
messages: int[];
|
||||
}> {
|
||||
call: Api.TypeInputGroupCall;
|
||||
messages: int[];
|
||||
CONSTRUCTOR_ID: 1048963372;
|
||||
SUBCLASS_OF_ID: 2676568142;
|
||||
className: 'UpdateDeleteGroupCallMessages';
|
||||
|
||||
static fromReader(reader: Reader): UpdateDeleteGroupCallMessages;
|
||||
}
|
||||
export class UpdatesTooLong extends VirtualClass<void> {
|
||||
CONSTRUCTOR_ID: 3809980286;
|
||||
SUBCLASS_OF_ID: 2331323052;
|
||||
@ -7104,6 +7138,13 @@ namespace Api {
|
||||
|
||||
static fromReader(reader: Reader): InputPrivacyKeyNoPaidMessages;
|
||||
}
|
||||
export class InputPrivacyKeySavedMusic extends VirtualClass<void> {
|
||||
CONSTRUCTOR_ID: 1304334886;
|
||||
SUBCLASS_OF_ID: 87435256;
|
||||
className: 'InputPrivacyKeySavedMusic';
|
||||
|
||||
static fromReader(reader: Reader): InputPrivacyKeySavedMusic;
|
||||
}
|
||||
export class PrivacyKeyStatusTimestamp extends VirtualClass<void> {
|
||||
CONSTRUCTOR_ID: 3157175088;
|
||||
SUBCLASS_OF_ID: 2185646531;
|
||||
@ -7195,6 +7236,13 @@ namespace Api {
|
||||
|
||||
static fromReader(reader: Reader): PrivacyKeyNoPaidMessages;
|
||||
}
|
||||
export class PrivacyKeySavedMusic extends VirtualClass<void> {
|
||||
CONSTRUCTOR_ID: 4286207771;
|
||||
SUBCLASS_OF_ID: 2185646531;
|
||||
className: 'PrivacyKeySavedMusic';
|
||||
|
||||
static fromReader(reader: Reader): PrivacyKeySavedMusic;
|
||||
}
|
||||
export class InputPrivacyValueAllowContacts extends VirtualClass<void> {
|
||||
CONSTRUCTOR_ID: 218751099;
|
||||
SUBCLASS_OF_ID: 1513843490;
|
||||
@ -13569,6 +13617,8 @@ namespace Api {
|
||||
unmutedVideoLimit: int;
|
||||
version: int;
|
||||
inviteLink?: string;
|
||||
sendPaidMessagesStars?: long;
|
||||
defaultSendAs?: Api.TypePeer;
|
||||
}> {
|
||||
// flags: Api.Type;
|
||||
joinMuted?: true;
|
||||
@ -13595,7 +13645,9 @@ namespace Api {
|
||||
unmutedVideoLimit: int;
|
||||
version: int;
|
||||
inviteLink?: string;
|
||||
CONSTRUCTOR_ID: 1429932961;
|
||||
sendPaidMessagesStars?: long;
|
||||
defaultSendAs?: Api.TypePeer;
|
||||
CONSTRUCTOR_ID: 4021466647;
|
||||
SUBCLASS_OF_ID: 548729632;
|
||||
className: 'GroupCall';
|
||||
|
||||
@ -13654,6 +13706,7 @@ namespace Api {
|
||||
raiseHandRating?: long;
|
||||
video?: Api.TypeGroupCallParticipantVideo;
|
||||
presentation?: Api.TypeGroupCallParticipantVideo;
|
||||
paidStarsTotal?: long;
|
||||
}> {
|
||||
// flags: Api.Type;
|
||||
muted?: true;
|
||||
@ -13675,7 +13728,8 @@ namespace Api {
|
||||
raiseHandRating?: long;
|
||||
video?: Api.TypeGroupCallParticipantVideo;
|
||||
presentation?: Api.TypeGroupCallParticipantVideo;
|
||||
CONSTRUCTOR_ID: 3953538814;
|
||||
paidStarsTotal?: long;
|
||||
CONSTRUCTOR_ID: 708691884;
|
||||
SUBCLASS_OF_ID: 3222974284;
|
||||
className: 'GroupCallParticipant';
|
||||
|
||||
@ -15318,12 +15372,14 @@ namespace Api {
|
||||
export class StoryItemSkipped extends VirtualClass<{
|
||||
// flags: Api.Type;
|
||||
closeFriends?: true;
|
||||
live?: true;
|
||||
id: int;
|
||||
date: int;
|
||||
expireDate: int;
|
||||
}> {
|
||||
// flags: Api.Type;
|
||||
closeFriends?: true;
|
||||
live?: true;
|
||||
id: int;
|
||||
date: int;
|
||||
expireDate: int;
|
||||
@ -16711,6 +16767,7 @@ namespace Api {
|
||||
postsSearch?: true;
|
||||
stargiftPrepaidUpgrade?: true;
|
||||
stargiftDropOriginalDetails?: true;
|
||||
phonegroupMessage?: true;
|
||||
id: string;
|
||||
amount: Api.TypeStarsAmount;
|
||||
date: int;
|
||||
@ -16747,6 +16804,7 @@ namespace Api {
|
||||
postsSearch?: true;
|
||||
stargiftPrepaidUpgrade?: true;
|
||||
stargiftDropOriginalDetails?: true;
|
||||
phonegroupMessage?: true;
|
||||
id: string;
|
||||
amount: Api.TypeStarsAmount;
|
||||
date: int;
|
||||
@ -17497,12 +17555,14 @@ namespace Api {
|
||||
disallowLimitedStargifts?: true;
|
||||
disallowUniqueStargifts?: true;
|
||||
disallowPremiumGifts?: true;
|
||||
disallowStargiftsFromChannels?: true;
|
||||
} | void> {
|
||||
// flags: Api.Type;
|
||||
disallowUnlimitedStargifts?: true;
|
||||
disallowLimitedStargifts?: true;
|
||||
disallowUniqueStargifts?: true;
|
||||
disallowPremiumGifts?: true;
|
||||
disallowStargiftsFromChannels?: true;
|
||||
CONSTRUCTOR_ID: 1911715524;
|
||||
SUBCLASS_OF_ID: 58911147;
|
||||
className: 'DisallowedGiftsSettings';
|
||||
@ -17617,13 +17677,13 @@ namespace Api {
|
||||
}
|
||||
export class TodoCompletion extends VirtualClass<{
|
||||
id: int;
|
||||
completedBy: long;
|
||||
completedBy: Api.TypePeer;
|
||||
date: int;
|
||||
}> {
|
||||
id: int;
|
||||
completedBy: long;
|
||||
completedBy: Api.TypePeer;
|
||||
date: int;
|
||||
CONSTRUCTOR_ID: 1287725239;
|
||||
CONSTRUCTOR_ID: 572241380;
|
||||
SUBCLASS_OF_ID: 3135658875;
|
||||
className: 'TodoCompletion';
|
||||
|
||||
@ -17818,6 +17878,62 @@ namespace Api {
|
||||
|
||||
static fromReader(reader: Reader): StarGiftUpgradePrice;
|
||||
}
|
||||
export class GroupCallMessage extends VirtualClass<{
|
||||
// flags: Api.Type;
|
||||
fromAdmin?: true;
|
||||
id: int;
|
||||
fromId: Api.TypePeer;
|
||||
date: int;
|
||||
message: Api.TypeTextWithEntities;
|
||||
paidMessageStars?: long;
|
||||
}> {
|
||||
// flags: Api.Type;
|
||||
fromAdmin?: true;
|
||||
id: int;
|
||||
fromId: Api.TypePeer;
|
||||
date: int;
|
||||
message: Api.TypeTextWithEntities;
|
||||
paidMessageStars?: long;
|
||||
CONSTRUCTOR_ID: 445316222;
|
||||
SUBCLASS_OF_ID: 1624136226;
|
||||
className: 'GroupCallMessage';
|
||||
|
||||
static fromReader(reader: Reader): GroupCallMessage;
|
||||
}
|
||||
export class GroupCallDonor extends VirtualClass<{
|
||||
// flags: Api.Type;
|
||||
top?: true;
|
||||
my?: true;
|
||||
anonymous?: true;
|
||||
peerId?: Api.TypePeer;
|
||||
stars: long;
|
||||
}> {
|
||||
// flags: Api.Type;
|
||||
top?: true;
|
||||
my?: true;
|
||||
anonymous?: true;
|
||||
peerId?: Api.TypePeer;
|
||||
stars: long;
|
||||
CONSTRUCTOR_ID: 3997371525;
|
||||
SUBCLASS_OF_ID: 351439792;
|
||||
className: 'GroupCallDonor';
|
||||
|
||||
static fromReader(reader: Reader): GroupCallDonor;
|
||||
}
|
||||
export class RecentStory extends VirtualClass<{
|
||||
// flags: Api.Type;
|
||||
live?: true;
|
||||
maxId?: int;
|
||||
} | void> {
|
||||
// flags: Api.Type;
|
||||
live?: true;
|
||||
maxId?: int;
|
||||
CONSTRUCTOR_ID: 1897752877;
|
||||
SUBCLASS_OF_ID: 653372877;
|
||||
className: 'RecentStory';
|
||||
|
||||
static fromReader(reader: Reader): RecentStory;
|
||||
}
|
||||
export class ResPQ extends VirtualClass<{
|
||||
nonce: int128;
|
||||
serverNonce: int128;
|
||||
@ -21617,7 +21733,7 @@ namespace Api {
|
||||
giveawayMsgId?: int;
|
||||
toId?: long;
|
||||
date: int;
|
||||
months: int;
|
||||
days: int;
|
||||
usedDate?: int;
|
||||
chats: Api.TypeChat[];
|
||||
users: Api.TypeUser[];
|
||||
@ -21628,11 +21744,11 @@ namespace Api {
|
||||
giveawayMsgId?: int;
|
||||
toId?: long;
|
||||
date: int;
|
||||
months: int;
|
||||
days: int;
|
||||
usedDate?: int;
|
||||
chats: Api.TypeChat[];
|
||||
users: Api.TypeUser[];
|
||||
CONSTRUCTOR_ID: 675942550;
|
||||
CONSTRUCTOR_ID: 3952623503;
|
||||
SUBCLASS_OF_ID: 1529452520;
|
||||
className: 'CheckedGiftCode';
|
||||
|
||||
@ -22062,6 +22178,22 @@ namespace Api {
|
||||
|
||||
static fromReader(reader: Reader): GroupCallStreamRtmpUrl;
|
||||
}
|
||||
export class GroupCallStars extends VirtualClass<{
|
||||
totalStars: long;
|
||||
topDonors: Api.TypeGroupCallDonor[];
|
||||
chats: Api.TypeChat[];
|
||||
users: Api.TypeUser[];
|
||||
}> {
|
||||
totalStars: long;
|
||||
topDonors: Api.TypeGroupCallDonor[];
|
||||
chats: Api.TypeChat[];
|
||||
users: Api.TypeUser[];
|
||||
CONSTRUCTOR_ID: 2635971878;
|
||||
SUBCLASS_OF_ID: 3024584730;
|
||||
className: 'GroupCallStars';
|
||||
|
||||
static fromReader(reader: Reader): GroupCallStars;
|
||||
}
|
||||
}
|
||||
|
||||
export namespace stats {
|
||||
@ -24221,6 +24353,7 @@ namespace Api {
|
||||
replyMarkup?: Api.TypeReplyMarkup;
|
||||
entities?: Api.TypeMessageEntity[];
|
||||
scheduleDate?: int;
|
||||
scheduleRepeatPeriod?: int;
|
||||
sendAs?: Api.TypeInputPeer;
|
||||
quickReplyShortcut?: Api.TypeInputQuickReplyShortcut;
|
||||
effect?: long;
|
||||
@ -24243,6 +24376,7 @@ namespace Api {
|
||||
replyMarkup?: Api.TypeReplyMarkup;
|
||||
entities?: Api.TypeMessageEntity[];
|
||||
scheduleDate?: int;
|
||||
scheduleRepeatPeriod?: int;
|
||||
sendAs?: Api.TypeInputPeer;
|
||||
quickReplyShortcut?: Api.TypeInputQuickReplyShortcut;
|
||||
effect?: long;
|
||||
@ -24266,6 +24400,7 @@ namespace Api {
|
||||
replyMarkup?: Api.TypeReplyMarkup;
|
||||
entities?: Api.TypeMessageEntity[];
|
||||
scheduleDate?: int;
|
||||
scheduleRepeatPeriod?: int;
|
||||
sendAs?: Api.TypeInputPeer;
|
||||
quickReplyShortcut?: Api.TypeInputQuickReplyShortcut;
|
||||
effect?: long;
|
||||
@ -24288,6 +24423,7 @@ namespace Api {
|
||||
replyMarkup?: Api.TypeReplyMarkup;
|
||||
entities?: Api.TypeMessageEntity[];
|
||||
scheduleDate?: int;
|
||||
scheduleRepeatPeriod?: int;
|
||||
sendAs?: Api.TypeInputPeer;
|
||||
quickReplyShortcut?: Api.TypeInputQuickReplyShortcut;
|
||||
effect?: long;
|
||||
@ -24310,6 +24446,7 @@ namespace Api {
|
||||
topMsgId?: int;
|
||||
replyTo?: Api.TypeInputReplyTo;
|
||||
scheduleDate?: int;
|
||||
scheduleRepeatPeriod?: int;
|
||||
sendAs?: Api.TypeInputPeer;
|
||||
quickReplyShortcut?: Api.TypeInputQuickReplyShortcut;
|
||||
videoTimestamp?: int;
|
||||
@ -24331,6 +24468,7 @@ namespace Api {
|
||||
topMsgId?: int;
|
||||
replyTo?: Api.TypeInputReplyTo;
|
||||
scheduleDate?: int;
|
||||
scheduleRepeatPeriod?: int;
|
||||
sendAs?: Api.TypeInputPeer;
|
||||
quickReplyShortcut?: Api.TypeInputQuickReplyShortcut;
|
||||
videoTimestamp?: int;
|
||||
@ -24762,6 +24900,7 @@ namespace Api {
|
||||
replyMarkup?: Api.TypeReplyMarkup;
|
||||
entities?: Api.TypeMessageEntity[];
|
||||
scheduleDate?: int;
|
||||
scheduleRepeatPeriod?: int;
|
||||
quickReplyShortcutId?: int;
|
||||
}, Api.TypeUpdates> {
|
||||
// flags: Api.Type;
|
||||
@ -24774,6 +24913,7 @@ namespace Api {
|
||||
replyMarkup?: Api.TypeReplyMarkup;
|
||||
entities?: Api.TypeMessageEntity[];
|
||||
scheduleDate?: int;
|
||||
scheduleRepeatPeriod?: int;
|
||||
quickReplyShortcutId?: int;
|
||||
}
|
||||
export class EditInlineBotMessage extends Request<{
|
||||
@ -27064,10 +27204,12 @@ namespace Api {
|
||||
export class GetSendAs extends Request<{
|
||||
// flags: Api.Type;
|
||||
forPaidReactions?: true;
|
||||
forLiveStories?: true;
|
||||
peer: Api.TypeInputPeer;
|
||||
}, channels.TypeSendAsPeers> {
|
||||
// flags: Api.Type;
|
||||
forPaidReactions?: true;
|
||||
forLiveStories?: true;
|
||||
peer: Api.TypeInputPeer;
|
||||
}
|
||||
export class DeleteParticipantHistory extends Request<{
|
||||
@ -28223,12 +28365,14 @@ namespace Api {
|
||||
call: Api.TypeInputGroupCall;
|
||||
joinMuted?: Bool;
|
||||
messagesEnabled?: Bool;
|
||||
sendPaidMessagesStars?: long;
|
||||
}, Api.TypeUpdates> {
|
||||
// flags: Api.Type;
|
||||
resetInviteHash?: true;
|
||||
call: Api.TypeInputGroupCall;
|
||||
joinMuted?: Bool;
|
||||
messagesEnabled?: Bool;
|
||||
sendPaidMessagesStars?: long;
|
||||
}
|
||||
export class GetGroupCall extends Request<{
|
||||
call: Api.TypeInputGroupCall;
|
||||
@ -28351,9 +28495,13 @@ namespace Api {
|
||||
call: Api.TypeInputGroupCall;
|
||||
}
|
||||
export class GetGroupCallStreamRtmpUrl extends Request<{
|
||||
// flags: Api.Type;
|
||||
liveStory?: true;
|
||||
peer: Api.TypeInputPeer;
|
||||
revoke: Bool;
|
||||
}, phone.TypeGroupCallStreamRtmpUrl> {
|
||||
// flags: Api.Type;
|
||||
liveStory?: true;
|
||||
peer: Api.TypeInputPeer;
|
||||
revoke: Bool;
|
||||
}
|
||||
@ -28433,13 +28581,19 @@ namespace Api {
|
||||
limit: int;
|
||||
}
|
||||
export class SendGroupCallMessage extends Request<{
|
||||
// flags: Api.Type;
|
||||
call: Api.TypeInputGroupCall;
|
||||
randomId: long;
|
||||
message: Api.TypeTextWithEntities;
|
||||
}, Bool> {
|
||||
allowPaidStars?: long;
|
||||
sendAs?: Api.TypeInputPeer;
|
||||
}, Api.TypeUpdates> {
|
||||
// flags: Api.Type;
|
||||
call: Api.TypeInputGroupCall;
|
||||
randomId: long;
|
||||
message: Api.TypeTextWithEntities;
|
||||
allowPaidStars?: long;
|
||||
sendAs?: Api.TypeInputPeer;
|
||||
}
|
||||
export class SendGroupCallEncryptedMessage extends Request<{
|
||||
call: Api.TypeInputGroupCall;
|
||||
@ -28448,6 +28602,40 @@ namespace Api {
|
||||
call: Api.TypeInputGroupCall;
|
||||
encryptedMessage: bytes;
|
||||
}
|
||||
export class DeleteGroupCallMessages extends Request<{
|
||||
// flags: Api.Type;
|
||||
reportSpam?: true;
|
||||
call: Api.TypeInputGroupCall;
|
||||
messages: int[];
|
||||
}, Api.TypeUpdates> {
|
||||
// flags: Api.Type;
|
||||
reportSpam?: true;
|
||||
call: Api.TypeInputGroupCall;
|
||||
messages: int[];
|
||||
}
|
||||
export class DeleteGroupCallParticipantMessages extends Request<{
|
||||
// flags: Api.Type;
|
||||
reportSpam?: true;
|
||||
call: Api.TypeInputGroupCall;
|
||||
participant: Api.TypeInputPeer;
|
||||
}, Api.TypeUpdates> {
|
||||
// flags: Api.Type;
|
||||
reportSpam?: true;
|
||||
call: Api.TypeInputGroupCall;
|
||||
participant: Api.TypeInputPeer;
|
||||
}
|
||||
export class GetGroupCallStars extends Request<{
|
||||
call: Api.TypeInputGroupCall;
|
||||
}, phone.TypeGroupCallStars> {
|
||||
call: Api.TypeInputGroupCall;
|
||||
}
|
||||
export class SaveDefaultSendAs extends Request<{
|
||||
call: Api.TypeInputGroupCall;
|
||||
sendAs: Api.TypeInputPeer;
|
||||
}, Bool> {
|
||||
call: Api.TypeInputGroupCall;
|
||||
sendAs: Api.TypeInputPeer;
|
||||
}
|
||||
}
|
||||
|
||||
export namespace langpack {
|
||||
@ -28855,7 +29043,7 @@ namespace Api {
|
||||
export class GetAllReadPeerStories extends Request<void, Api.TypeUpdates> {}
|
||||
export class GetPeerMaxIDs extends Request<{
|
||||
id: Api.TypeInputPeer[];
|
||||
}, int[]> {
|
||||
}, Api.TypeRecentStory[]> {
|
||||
id: Api.TypeInputPeer[];
|
||||
}
|
||||
export class GetChatsToSend extends Request<void, messages.TypeChats> {}
|
||||
@ -28963,6 +29151,31 @@ namespace Api {
|
||||
offset: int;
|
||||
limit: int;
|
||||
}
|
||||
export class StartLive extends Request<{
|
||||
// flags: Api.Type;
|
||||
pinned?: true;
|
||||
noforwards?: true;
|
||||
rtmpStream?: true;
|
||||
peer: Api.TypeInputPeer;
|
||||
caption?: string;
|
||||
entities?: Api.TypeMessageEntity[];
|
||||
privacyRules: Api.TypeInputPrivacyRule[];
|
||||
randomId: long;
|
||||
messagesEnabled?: Bool;
|
||||
sendPaidMessagesStars?: long;
|
||||
}, Api.TypeUpdates> {
|
||||
// flags: Api.Type;
|
||||
pinned?: true;
|
||||
noforwards?: true;
|
||||
rtmpStream?: true;
|
||||
peer: Api.TypeInputPeer;
|
||||
caption?: string;
|
||||
entities?: Api.TypeMessageEntity[];
|
||||
privacyRules: Api.TypeInputPrivacyRule[];
|
||||
randomId: long;
|
||||
messagesEnabled?: Bool;
|
||||
sendPaidMessagesStars?: long;
|
||||
}
|
||||
}
|
||||
|
||||
export namespace premium {
|
||||
@ -29053,12 +29266,12 @@ namespace Api {
|
||||
| bots.SendCustomRequest | bots.AnswerWebhookJSONQuery | bots.SetBotCommands | bots.ResetBotCommands | bots.GetBotCommands | bots.SetBotMenuButton | bots.GetBotMenuButton | bots.SetBotBroadcastDefaultAdminRights | bots.SetBotGroupDefaultAdminRights | bots.SetBotInfo | bots.GetBotInfo | bots.ReorderUsernames | bots.ToggleUsername | bots.CanSendMessage | bots.AllowSendMessage | bots.InvokeWebViewCustomMethod | bots.GetPopularAppBots | bots.AddPreviewMedia | bots.EditPreviewMedia | bots.DeletePreviewMedia | bots.ReorderPreviewMedias | bots.GetPreviewInfo | bots.GetPreviewMedias | bots.UpdateUserEmojiStatus | bots.ToggleUserEmojiStatusPermission | bots.CheckDownloadFileParams | bots.GetAdminedBots | bots.UpdateStarRefProgram | bots.SetCustomVerification | bots.GetBotRecommendations
|
||||
| payments.GetPaymentForm | payments.GetPaymentReceipt | payments.ValidateRequestedInfo | payments.SendPaymentForm | payments.GetSavedInfo | payments.ClearSavedInfo | payments.GetBankCardData | payments.ExportInvoice | payments.AssignAppStoreTransaction | payments.AssignPlayMarketTransaction | payments.GetPremiumGiftCodeOptions | payments.CheckGiftCode | payments.ApplyGiftCode | payments.GetGiveawayInfo | payments.LaunchPrepaidGiveaway | payments.GetStarsTopupOptions | payments.GetStarsStatus | payments.GetStarsTransactions | payments.SendStarsForm | payments.RefundStarsCharge | payments.GetStarsRevenueStats | payments.GetStarsRevenueWithdrawalUrl | payments.GetStarsRevenueAdsAccountUrl | payments.GetStarsTransactionsByID | payments.GetStarsGiftOptions | payments.GetStarsSubscriptions | payments.ChangeStarsSubscription | payments.FulfillStarsSubscription | payments.GetStarsGiveawayOptions | payments.GetStarGifts | payments.SaveStarGift | payments.ConvertStarGift | payments.BotCancelStarsSubscription | payments.GetConnectedStarRefBots | payments.GetConnectedStarRefBot | payments.GetSuggestedStarRefBots | payments.ConnectStarRefBot | payments.EditConnectedStarRefBot | payments.GetStarGiftUpgradePreview | payments.UpgradeStarGift | payments.TransferStarGift | payments.GetUniqueStarGift | payments.GetSavedStarGifts | payments.GetSavedStarGift | payments.GetStarGiftWithdrawalUrl | payments.ToggleChatStarGiftNotifications | payments.ToggleStarGiftsPinnedToTop | payments.CanPurchaseStore | payments.GetResaleStarGifts | payments.UpdateStarGiftPrice | payments.CreateStarGiftCollection | payments.UpdateStarGiftCollection | payments.ReorderStarGiftCollections | payments.DeleteStarGiftCollection | payments.GetStarGiftCollections | payments.GetUniqueStarGiftValueInfo | payments.CheckCanSendGift
|
||||
| stickers.CreateStickerSet | stickers.RemoveStickerFromSet | stickers.ChangeStickerPosition | stickers.AddStickerToSet | stickers.SetStickerSetThumb | stickers.CheckShortName | stickers.SuggestShortName | stickers.ChangeSticker | stickers.RenameStickerSet | stickers.DeleteStickerSet | stickers.ReplaceSticker
|
||||
| phone.GetCallConfig | phone.RequestCall | phone.AcceptCall | phone.ConfirmCall | phone.ReceivedCall | phone.DiscardCall | phone.SetCallRating | phone.SaveCallDebug | phone.SendSignalingData | phone.CreateGroupCall | phone.JoinGroupCall | phone.LeaveGroupCall | phone.InviteToGroupCall | phone.DiscardGroupCall | phone.ToggleGroupCallSettings | phone.GetGroupCall | phone.GetGroupParticipants | phone.CheckGroupCall | phone.ToggleGroupCallRecord | phone.EditGroupCallParticipant | phone.EditGroupCallTitle | phone.GetGroupCallJoinAs | phone.ExportGroupCallInvite | phone.ToggleGroupCallStartSubscription | phone.StartScheduledGroupCall | phone.SaveDefaultGroupCallJoinAs | phone.JoinGroupCallPresentation | phone.LeaveGroupCallPresentation | phone.GetGroupCallStreamChannels | phone.GetGroupCallStreamRtmpUrl | phone.SaveCallLog | phone.CreateConferenceCall | phone.DeleteConferenceCallParticipants | phone.SendConferenceCallBroadcast | phone.InviteConferenceCallParticipant | phone.DeclineConferenceCallInvite | phone.GetGroupCallChainBlocks | phone.SendGroupCallMessage | phone.SendGroupCallEncryptedMessage
|
||||
| phone.GetCallConfig | phone.RequestCall | phone.AcceptCall | phone.ConfirmCall | phone.ReceivedCall | phone.DiscardCall | phone.SetCallRating | phone.SaveCallDebug | phone.SendSignalingData | phone.CreateGroupCall | phone.JoinGroupCall | phone.LeaveGroupCall | phone.InviteToGroupCall | phone.DiscardGroupCall | phone.ToggleGroupCallSettings | phone.GetGroupCall | phone.GetGroupParticipants | phone.CheckGroupCall | phone.ToggleGroupCallRecord | phone.EditGroupCallParticipant | phone.EditGroupCallTitle | phone.GetGroupCallJoinAs | phone.ExportGroupCallInvite | phone.ToggleGroupCallStartSubscription | phone.StartScheduledGroupCall | phone.SaveDefaultGroupCallJoinAs | phone.JoinGroupCallPresentation | phone.LeaveGroupCallPresentation | phone.GetGroupCallStreamChannels | phone.GetGroupCallStreamRtmpUrl | phone.SaveCallLog | phone.CreateConferenceCall | phone.DeleteConferenceCallParticipants | phone.SendConferenceCallBroadcast | phone.InviteConferenceCallParticipant | phone.DeclineConferenceCallInvite | phone.GetGroupCallChainBlocks | phone.SendGroupCallMessage | phone.SendGroupCallEncryptedMessage | phone.DeleteGroupCallMessages | phone.DeleteGroupCallParticipantMessages | phone.GetGroupCallStars | phone.SaveDefaultSendAs
|
||||
| langpack.GetLangPack | langpack.GetStrings | langpack.GetDifference | langpack.GetLanguages | langpack.GetLanguage
|
||||
| folders.EditPeerFolders
|
||||
| stats.GetBroadcastStats | stats.LoadAsyncGraph | stats.GetMegagroupStats | stats.GetMessagePublicForwards | stats.GetMessageStats | stats.GetStoryStats | stats.GetStoryPublicForwards
|
||||
| chatlists.ExportChatlistInvite | chatlists.DeleteExportedInvite | chatlists.EditExportedInvite | chatlists.GetExportedInvites | chatlists.CheckChatlistInvite | chatlists.JoinChatlistInvite | chatlists.GetChatlistUpdates | chatlists.JoinChatlistUpdates | chatlists.HideChatlistUpdates | chatlists.GetLeaveChatlistSuggestions | chatlists.LeaveChatlist
|
||||
| stories.CanSendStory | stories.SendStory | stories.EditStory | stories.DeleteStories | stories.TogglePinned | stories.GetAllStories | stories.GetPinnedStories | stories.GetStoriesArchive | stories.GetStoriesByID | stories.ToggleAllStoriesHidden | stories.ReadStories | stories.IncrementStoryViews | stories.GetStoryViewsList | stories.GetStoriesViews | stories.ExportStoryLink | stories.Report | stories.ActivateStealthMode | stories.SendReaction | stories.GetPeerStories | stories.GetAllReadPeerStories | stories.GetPeerMaxIDs | stories.GetChatsToSend | stories.TogglePeerStoriesHidden | stories.GetStoryReactionsList | stories.TogglePinnedToTop | stories.SearchPosts | stories.CreateAlbum | stories.UpdateAlbum | stories.ReorderAlbums | stories.DeleteAlbum | stories.GetAlbums | stories.GetAlbumStories
|
||||
| stories.CanSendStory | stories.SendStory | stories.EditStory | stories.DeleteStories | stories.TogglePinned | stories.GetAllStories | stories.GetPinnedStories | stories.GetStoriesArchive | stories.GetStoriesByID | stories.ToggleAllStoriesHidden | stories.ReadStories | stories.IncrementStoryViews | stories.GetStoryViewsList | stories.GetStoriesViews | stories.ExportStoryLink | stories.Report | stories.ActivateStealthMode | stories.SendReaction | stories.GetPeerStories | stories.GetAllReadPeerStories | stories.GetPeerMaxIDs | stories.GetChatsToSend | stories.TogglePeerStoriesHidden | stories.GetStoryReactionsList | stories.TogglePinnedToTop | stories.SearchPosts | stories.CreateAlbum | stories.UpdateAlbum | stories.ReorderAlbums | stories.DeleteAlbum | stories.GetAlbums | stories.GetAlbumStories | stories.StartLive
|
||||
| premium.GetBoostsList | premium.GetMyBoosts | premium.ApplyBoost | premium.GetBoostsStatus | premium.GetUserBoosts
|
||||
| smsjobs.IsEligibleToJoin | smsjobs.Join | smsjobs.Leave | smsjobs.UpdateSettings | smsjobs.GetStatus | smsjobs.GetSmsJob | smsjobs.FinishJob
|
||||
| fragment.GetCollectibleInfo;
|
||||
|
||||
@ -15,7 +15,7 @@ inputUserEmpty#b98886cf = InputUser;
|
||||
inputUserSelf#f7c1b13f = InputUser;
|
||||
inputUser#f21158c6 user_id:long access_hash:long = InputUser;
|
||||
inputUserFromMessage#1da448e2 peer:InputPeer msg_id:int user_id:long = InputUser;
|
||||
inputPhoneContact#f392b7f4 client_id:long phone:string first_name:string last_name:string = InputContact;
|
||||
inputPhoneContact#6a1dc4be flags:# client_id:long phone:string first_name:string last_name:string note:flags.0?TextWithEntities = InputContact;
|
||||
inputFile#f52ff27f id:long parts:int name:string md5_checksum:string = InputFile;
|
||||
inputFileBig#fa4f0bb5 id:long parts:int name:string = InputFile;
|
||||
inputFileStoryDocument#62dc8b48 id:InputDocument = InputFile;
|
||||
@ -69,7 +69,7 @@ storage.fileMov#4b09ebbc = storage.FileType;
|
||||
storage.fileMp4#b3cea0e4 = storage.FileType;
|
||||
storage.fileWebp#1081464c = storage.FileType;
|
||||
userEmpty#d3bc4b7a id:long = User;
|
||||
user#20b1422 flags:# self:flags.10?true contact:flags.11?true mutual_contact:flags.12?true deleted:flags.13?true bot:flags.14?true bot_chat_history:flags.15?true bot_nochats:flags.16?true verified:flags.17?true restricted:flags.18?true min:flags.20?true bot_inline_geo:flags.21?true support:flags.23?true scam:flags.24?true apply_min_photo:flags.25?true fake:flags.26?true bot_attach_menu:flags.27?true premium:flags.28?true attach_menu_enabled:flags.29?true flags2:# bot_can_edit:flags2.1?true close_friend:flags2.2?true stories_hidden:flags2.3?true stories_unavailable:flags2.4?true contact_require_premium:flags2.10?true bot_business:flags2.11?true bot_has_main_app:flags2.13?true bot_forum_view:flags2.16?true id:long access_hash:flags.0?long first_name:flags.1?string last_name:flags.2?string username:flags.3?string phone:flags.4?string photo:flags.5?UserProfilePhoto status:flags.6?UserStatus bot_info_version:flags.14?int restriction_reason:flags.18?Vector<RestrictionReason> bot_inline_placeholder:flags.19?string lang_code:flags.22?string emoji_status:flags.30?EmojiStatus usernames:flags2.0?Vector<Username> stories_max_id:flags2.5?int color:flags2.8?PeerColor profile_color:flags2.9?PeerColor bot_active_users:flags2.12?int bot_verification_icon:flags2.14?long send_paid_messages_stars:flags2.15?long = User;
|
||||
user#31774388 flags:# self:flags.10?true contact:flags.11?true mutual_contact:flags.12?true deleted:flags.13?true bot:flags.14?true bot_chat_history:flags.15?true bot_nochats:flags.16?true verified:flags.17?true restricted:flags.18?true min:flags.20?true bot_inline_geo:flags.21?true support:flags.23?true scam:flags.24?true apply_min_photo:flags.25?true fake:flags.26?true bot_attach_menu:flags.27?true premium:flags.28?true attach_menu_enabled:flags.29?true flags2:# bot_can_edit:flags2.1?true close_friend:flags2.2?true stories_hidden:flags2.3?true stories_unavailable:flags2.4?true contact_require_premium:flags2.10?true bot_business:flags2.11?true bot_has_main_app:flags2.13?true bot_forum_view:flags2.16?true id:long access_hash:flags.0?long first_name:flags.1?string last_name:flags.2?string username:flags.3?string phone:flags.4?string photo:flags.5?UserProfilePhoto status:flags.6?UserStatus bot_info_version:flags.14?int restriction_reason:flags.18?Vector<RestrictionReason> bot_inline_placeholder:flags.19?string lang_code:flags.22?string emoji_status:flags.30?EmojiStatus usernames:flags2.0?Vector<Username> stories_max_id:flags2.5?RecentStory color:flags2.8?PeerColor profile_color:flags2.9?PeerColor bot_active_users:flags2.12?int bot_verification_icon:flags2.14?long send_paid_messages_stars:flags2.15?long = User;
|
||||
userProfilePhotoEmpty#4f11bae1 = UserProfilePhoto;
|
||||
userProfilePhoto#82d1f706 flags:# has_video:flags.0?true personal:flags.2?true photo_id:long stripped_thumb:flags.1?bytes dc_id:int = UserProfilePhoto;
|
||||
userStatusEmpty#9d05049 = UserStatus;
|
||||
@ -81,7 +81,7 @@ userStatusLastMonth#65899777 flags:# by_me:flags.0?true = UserStatus;
|
||||
chatEmpty#29562865 id:long = Chat;
|
||||
chat#41cbf256 flags:# creator:flags.0?true left:flags.2?true deactivated:flags.5?true call_active:flags.23?true call_not_empty:flags.24?true noforwards:flags.25?true id:long title:string photo:ChatPhoto participants_count:int date:int version:int migrated_to:flags.6?InputChannel admin_rights:flags.14?ChatAdminRights default_banned_rights:flags.18?ChatBannedRights = Chat;
|
||||
chatForbidden#6592a1a7 id:long title:string = Chat;
|
||||
channel#fe685355 flags:# creator:flags.0?true left:flags.2?true broadcast:flags.5?true verified:flags.7?true megagroup:flags.8?true restricted:flags.9?true signatures:flags.11?true min:flags.12?true scam:flags.19?true has_link:flags.20?true has_geo:flags.21?true slowmode_enabled:flags.22?true call_active:flags.23?true call_not_empty:flags.24?true fake:flags.25?true gigagroup:flags.26?true noforwards:flags.27?true join_to_send:flags.28?true join_request:flags.29?true forum:flags.30?true flags2:# stories_hidden:flags2.1?true stories_hidden_min:flags2.2?true stories_unavailable:flags2.3?true signature_profiles:flags2.12?true autotranslation:flags2.15?true broadcast_messages_allowed:flags2.16?true monoforum:flags2.17?true forum_tabs:flags2.19?true id:long access_hash:flags.13?long title:string username:flags.6?string photo:ChatPhoto date:int restriction_reason:flags.9?Vector<RestrictionReason> admin_rights:flags.14?ChatAdminRights banned_rights:flags.15?ChatBannedRights default_banned_rights:flags.18?ChatBannedRights participants_count:flags.17?int usernames:flags2.0?Vector<Username> stories_max_id:flags2.4?int color:flags2.7?PeerColor profile_color:flags2.8?PeerColor emoji_status:flags2.9?EmojiStatus level:flags2.10?int subscription_until_date:flags2.11?int bot_verification_icon:flags2.13?long send_paid_messages_stars:flags2.14?long linked_monoforum_id:flags2.18?long = Chat;
|
||||
channel#1c32b11c flags:# creator:flags.0?true left:flags.2?true broadcast:flags.5?true verified:flags.7?true megagroup:flags.8?true restricted:flags.9?true signatures:flags.11?true min:flags.12?true scam:flags.19?true has_link:flags.20?true has_geo:flags.21?true slowmode_enabled:flags.22?true call_active:flags.23?true call_not_empty:flags.24?true fake:flags.25?true gigagroup:flags.26?true noforwards:flags.27?true join_to_send:flags.28?true join_request:flags.29?true forum:flags.30?true flags2:# stories_hidden:flags2.1?true stories_hidden_min:flags2.2?true stories_unavailable:flags2.3?true signature_profiles:flags2.12?true autotranslation:flags2.15?true broadcast_messages_allowed:flags2.16?true monoforum:flags2.17?true forum_tabs:flags2.19?true id:long access_hash:flags.13?long title:string username:flags.6?string photo:ChatPhoto date:int restriction_reason:flags.9?Vector<RestrictionReason> admin_rights:flags.14?ChatAdminRights banned_rights:flags.15?ChatBannedRights default_banned_rights:flags.18?ChatBannedRights participants_count:flags.17?int usernames:flags2.0?Vector<Username> stories_max_id:flags2.4?RecentStory color:flags2.7?PeerColor profile_color:flags2.8?PeerColor emoji_status:flags2.9?EmojiStatus level:flags2.10?int subscription_until_date:flags2.11?int bot_verification_icon:flags2.13?long send_paid_messages_stars:flags2.14?long linked_monoforum_id:flags2.18?long = Chat;
|
||||
channelForbidden#17d493d5 flags:# broadcast:flags.5?true megagroup:flags.8?true id:long access_hash:long title:string until_date:flags.16?int = Chat;
|
||||
chatFull#2633421b flags:# can_set_username:flags.7?true has_scheduled:flags.8?true translations_disabled:flags.19?true id:long about:string participants:ChatParticipants chat_photo:flags.2?Photo notify_settings:PeerNotifySettings exported_invite:flags.13?ExportedChatInvite bot_info:flags.3?Vector<BotInfo> pinned_msg_id:flags.6?int folder_id:flags.11?int call:flags.12?InputGroupCall ttl_period:flags.14?int groupcall_default_join_as:flags.15?Peer theme_emoticon:flags.16?string requests_pending:flags.17?int recent_requesters:flags.17?Vector<long> available_reactions:flags.18?ChatReactions reactions_limit:flags.20?int = ChatFull;
|
||||
channelFull#e4e0b29d flags:# can_view_participants:flags.3?true can_set_username:flags.6?true can_set_stickers:flags.7?true hidden_prehistory:flags.10?true can_set_location:flags.16?true has_scheduled:flags.19?true can_view_stats:flags.20?true blocked:flags.22?true flags2:# can_delete_channel:flags2.0?true antispam:flags2.1?true participants_hidden:flags2.2?true translations_disabled:flags2.3?true stories_pinned_available:flags2.5?true view_forum_as_messages:flags2.6?true restricted_sponsored:flags2.11?true can_view_revenue:flags2.12?true paid_media_allowed:flags2.14?true can_view_stars_revenue:flags2.15?true paid_reactions_available:flags2.16?true stargifts_available:flags2.19?true paid_messages_available:flags2.20?true id:long about:string participants_count:flags.0?int admins_count:flags.1?int kicked_count:flags.2?int banned_count:flags.2?int online_count:flags.13?int read_inbox_max_id:int read_outbox_max_id:int unread_count:int chat_photo:Photo notify_settings:PeerNotifySettings exported_invite:flags.23?ExportedChatInvite bot_info:Vector<BotInfo> migrated_from_chat_id:flags.4?long migrated_from_max_id:flags.4?int pinned_msg_id:flags.5?int stickerset:flags.8?StickerSet available_min_id:flags.9?int folder_id:flags.11?int linked_chat_id:flags.14?long location:flags.15?ChannelLocation slowmode_seconds:flags.17?int slowmode_next_send_date:flags.18?int stats_dc:flags.12?int pts:int call:flags.21?InputGroupCall ttl_period:flags.24?int pending_suggestions:flags.25?Vector<string> groupcall_default_join_as:flags.26?Peer theme_emoticon:flags.27?string requests_pending:flags.28?int recent_requesters:flags.28?Vector<long> default_send_as:flags.29?Peer available_reactions:flags.30?ChatReactions reactions_limit:flags2.13?int stories:flags2.4?PeerStories wallpaper:flags2.7?WallPaper boosts_applied:flags2.8?int boosts_unrestrict:flags2.9?int emojiset:flags2.10?StickerSet bot_verification:flags2.17?BotVerification stargifts_count:flags2.18?int send_paid_messages_stars:flags2.21?long main_tab:flags2.22?ProfileTab = ChatFull;
|
||||
@ -93,7 +93,7 @@ chatParticipants#3cbc93f8 chat_id:long participants:Vector<ChatParticipant> vers
|
||||
chatPhotoEmpty#37c1011c = ChatPhoto;
|
||||
chatPhoto#1c6e1c11 flags:# has_video:flags.0?true photo_id:long stripped_thumb:flags.1?bytes dc_id:int = ChatPhoto;
|
||||
messageEmpty#90a6ca84 flags:# id:int peer_id:flags.0?Peer = Message;
|
||||
message#9815cec8 flags:# out:flags.1?true mentioned:flags.4?true media_unread:flags.5?true silent:flags.13?true post:flags.14?true from_scheduled:flags.18?true legacy:flags.19?true edit_hide:flags.21?true pinned:flags.24?true noforwards:flags.26?true invert_media:flags.27?true flags2:# offline:flags2.1?true video_processing_pending:flags2.4?true paid_suggested_post_stars:flags2.8?true paid_suggested_post_ton:flags2.9?true id:int from_id:flags.8?Peer from_boosts_applied:flags.29?int peer_id:Peer saved_peer_id:flags.28?Peer fwd_from:flags.2?MessageFwdHeader via_bot_id:flags.11?long via_business_bot_id:flags2.0?long reply_to:flags.3?MessageReplyHeader date:int message:string media:flags.9?MessageMedia reply_markup:flags.6?ReplyMarkup entities:flags.7?Vector<MessageEntity> views:flags.10?int forwards:flags.10?int replies:flags.23?MessageReplies edit_date:flags.15?int post_author:flags.16?string grouped_id:flags.17?long reactions:flags.20?MessageReactions restriction_reason:flags.22?Vector<RestrictionReason> ttl_period:flags.25?int quick_reply_shortcut_id:flags.30?int effect:flags2.2?long factcheck:flags2.3?FactCheck report_delivery_until_date:flags2.5?int paid_message_stars:flags2.6?long suggested_post:flags2.7?SuggestedPost = Message;
|
||||
message#b92f76cf flags:# out:flags.1?true mentioned:flags.4?true media_unread:flags.5?true silent:flags.13?true post:flags.14?true from_scheduled:flags.18?true legacy:flags.19?true edit_hide:flags.21?true pinned:flags.24?true noforwards:flags.26?true invert_media:flags.27?true flags2:# offline:flags2.1?true video_processing_pending:flags2.4?true paid_suggested_post_stars:flags2.8?true paid_suggested_post_ton:flags2.9?true id:int from_id:flags.8?Peer from_boosts_applied:flags.29?int peer_id:Peer saved_peer_id:flags.28?Peer fwd_from:flags.2?MessageFwdHeader via_bot_id:flags.11?long via_business_bot_id:flags2.0?long reply_to:flags.3?MessageReplyHeader date:int message:string media:flags.9?MessageMedia reply_markup:flags.6?ReplyMarkup entities:flags.7?Vector<MessageEntity> views:flags.10?int forwards:flags.10?int replies:flags.23?MessageReplies edit_date:flags.15?int post_author:flags.16?string grouped_id:flags.17?long reactions:flags.20?MessageReactions restriction_reason:flags.22?Vector<RestrictionReason> ttl_period:flags.25?int quick_reply_shortcut_id:flags.30?int effect:flags2.2?long factcheck:flags2.3?FactCheck report_delivery_until_date:flags2.5?int paid_message_stars:flags2.6?long suggested_post:flags2.7?SuggestedPost schedule_repeat_period:flags2.10?int = Message;
|
||||
messageService#7a800e0a flags:# out:flags.1?true mentioned:flags.4?true media_unread:flags.5?true reactions_are_possible:flags.9?true silent:flags.13?true post:flags.14?true legacy:flags.19?true id:int from_id:flags.8?Peer peer_id:Peer saved_peer_id:flags.28?Peer reply_to:flags.3?MessageReplyHeader date:int action:MessageAction reactions:flags.20?MessageReactions ttl_period:flags.25?int = Message;
|
||||
messageMediaEmpty#3ded6320 = MessageMedia;
|
||||
messageMediaPhoto#695150d7 flags:# spoiler:flags.3?true photo:flags.0?Photo ttl_seconds:flags.2?int = MessageMedia;
|
||||
@ -113,6 +113,7 @@ messageMediaGiveaway#aa073beb flags:# only_new_subscribers:flags.0?true winners_
|
||||
messageMediaGiveawayResults#ceaa3ea1 flags:# only_new_subscribers:flags.0?true refunded:flags.2?true channel_id:long additional_peers_count:flags.3?int launch_msg_id:int winners_count:int unclaimed_count:int winners:Vector<long> months:flags.4?int stars:flags.5?long prize_description:flags.1?string until_date:int = MessageMedia;
|
||||
messageMediaPaidMedia#a8852491 stars_amount:long extended_media:Vector<MessageExtendedMedia> = MessageMedia;
|
||||
messageMediaToDo#8a53b014 flags:# todo:TodoList completions:flags.0?Vector<TodoCompletion> = MessageMedia;
|
||||
messageMediaVideoStream#ca5cab89 flags:# rtmp_stream:flags.0?true call:InputGroupCall = MessageMedia;
|
||||
messageActionEmpty#b6aef7b0 = MessageAction;
|
||||
messageActionChatCreate#bd47cbad title:string users:Vector<long> = MessageAction;
|
||||
messageActionChatEditTitle#b5a1ce5a title:string = MessageAction;
|
||||
@ -145,13 +146,13 @@ messageActionSetChatTheme#b91bbd3a theme:ChatTheme = MessageAction;
|
||||
messageActionChatJoinedByRequest#ebbca3cb = MessageAction;
|
||||
messageActionWebViewDataSentMe#47dd8079 text:string data:string = MessageAction;
|
||||
messageActionWebViewDataSent#b4c38cb5 text:string = MessageAction;
|
||||
messageActionGiftPremium#6c6274fa flags:# currency:string amount:long months:int crypto_currency:flags.0?string crypto_amount:flags.0?long message:flags.1?TextWithEntities = MessageAction;
|
||||
messageActionGiftPremium#48e91302 flags:# currency:string amount:long days:int crypto_currency:flags.0?string crypto_amount:flags.0?long message:flags.1?TextWithEntities = MessageAction;
|
||||
messageActionTopicCreate#d999256 flags:# title_missing:flags.1?true title:string icon_color:int icon_emoji_id:flags.0?long = MessageAction;
|
||||
messageActionTopicEdit#c0944820 flags:# title:flags.0?string icon_emoji_id:flags.1?long closed:flags.2?Bool hidden:flags.3?Bool = MessageAction;
|
||||
messageActionSuggestProfilePhoto#57de635e photo:Photo = MessageAction;
|
||||
messageActionRequestedPeer#31518e9b button_id:int peers:Vector<Peer> = MessageAction;
|
||||
messageActionSetChatWallPaper#5060a3f4 flags:# same:flags.0?true for_both:flags.1?true wallpaper:WallPaper = MessageAction;
|
||||
messageActionGiftCode#56d03994 flags:# via_giveaway:flags.0?true unclaimed:flags.5?true boost_peer:flags.1?Peer months:int slug:string currency:flags.2?string amount:flags.2?long crypto_currency:flags.3?string crypto_amount:flags.3?long message:flags.4?TextWithEntities = MessageAction;
|
||||
messageActionGiftCode#31c48347 flags:# via_giveaway:flags.0?true unclaimed:flags.5?true boost_peer:flags.1?Peer days:int slug:string currency:flags.2?string amount:flags.2?long crypto_currency:flags.3?string crypto_amount:flags.3?long message:flags.4?TextWithEntities = MessageAction;
|
||||
messageActionGiveawayLaunch#a80f51e4 flags:# stars:flags.0?long = MessageAction;
|
||||
messageActionGiveawayResults#87e2f155 flags:# stars:flags.0?true winners_count:int unclaimed_count:int = MessageAction;
|
||||
messageActionBoostApply#cc02aa6d boosts:int = MessageAction;
|
||||
@ -332,7 +333,7 @@ updatePinnedMessages#ed85eab5 flags:# pinned:flags.0?true peer:Peer messages:Vec
|
||||
updatePinnedChannelMessages#5bb98608 flags:# pinned:flags.0?true channel_id:long messages:Vector<int> pts:int pts_count:int = Update;
|
||||
updateChat#f89a6a4e chat_id:long = Update;
|
||||
updateGroupCallParticipants#f2ebdb4e call:InputGroupCall participants:Vector<GroupCallParticipant> version:int = Update;
|
||||
updateGroupCall#97d64341 flags:# chat_id:flags.0?long call:GroupCall = Update;
|
||||
updateGroupCall#9d2216e0 flags:# live_story:flags.2?true peer:flags.1?Peer call:GroupCall = Update;
|
||||
updatePeerHistoryTTL#bb9bb9a5 flags:# peer:Peer ttl_period:flags.0?int = Update;
|
||||
updateChatParticipant#d087663a flags:# chat_id:long date:int actor_id:long user_id:long prev_participant:flags.0?ChatParticipant new_participant:flags.1?ChatParticipant invite:flags.2?ExportedChatInvite qts:int = Update;
|
||||
updateChannelParticipant#985d3abb flags:# via_chatlist:flags.3?true channel_id:long date:int actor_id:long user_id:long prev_participant:flags.0?ChannelParticipant new_participant:flags.1?ChannelParticipant invite:flags.2?ExportedChatInvite qts:int = Update;
|
||||
@ -389,10 +390,11 @@ updateGroupCallChainBlocks#a477288f call:InputGroupCall sub_chain_id:int blocks:
|
||||
updateReadMonoForumInbox#77b0e372 channel_id:long saved_peer_id:Peer read_max_id:int = Update;
|
||||
updateReadMonoForumOutbox#a4a79376 channel_id:long saved_peer_id:Peer read_max_id:int = Update;
|
||||
updateMonoForumNoPaidException#9f812b08 flags:# exception:flags.0?true channel_id:long saved_peer_id:Peer = Update;
|
||||
updateGroupCallMessage#78c314e0 call:InputGroupCall from_id:Peer random_id:long message:TextWithEntities = Update;
|
||||
updateGroupCallMessage#d8326f0d call:InputGroupCall message:GroupCallMessage = Update;
|
||||
updateGroupCallEncryptedMessage#c957a766 call:InputGroupCall from_id:Peer encrypted_message:bytes = Update;
|
||||
updatePinnedForumTopic#683b2c52 flags:# pinned:flags.0?true peer:Peer topic_id:int = Update;
|
||||
updatePinnedForumTopics#def143d0 flags:# peer:Peer order:flags.0?Vector<int> = Update;
|
||||
updateDeleteGroupCallMessages#3e85e92c call:InputGroupCall messages:Vector<int> = Update;
|
||||
updates.state#a56c2a3e pts:int qts:int date:int seq:int unread_count:int = updates.State;
|
||||
updates.differenceEmpty#5d75a138 date:int seq:int = updates.Difference;
|
||||
updates.difference#f49ca0 new_messages:Vector<Message> new_encrypted_messages:Vector<EncryptedMessage> other_updates:Vector<Update> chats:Vector<Chat> users:Vector<User> state:updates.State = updates.Difference;
|
||||
@ -477,6 +479,7 @@ inputPrivacyKeyAbout#3823cc40 = InputPrivacyKey;
|
||||
inputPrivacyKeyBirthday#d65a11cc = InputPrivacyKey;
|
||||
inputPrivacyKeyStarGiftsAutoSave#e1732341 = InputPrivacyKey;
|
||||
inputPrivacyKeyNoPaidMessages#bdc597b4 = InputPrivacyKey;
|
||||
inputPrivacyKeySavedMusic#4dbe9226 = InputPrivacyKey;
|
||||
privacyKeyStatusTimestamp#bc2eab30 = PrivacyKey;
|
||||
privacyKeyChatInvite#500e6dfa = PrivacyKey;
|
||||
privacyKeyPhoneCall#3d662b7b = PrivacyKey;
|
||||
@ -490,6 +493,7 @@ privacyKeyAbout#a486b761 = PrivacyKey;
|
||||
privacyKeyBirthday#2000a518 = PrivacyKey;
|
||||
privacyKeyStarGiftsAutoSave#2ca4fdf8 = PrivacyKey;
|
||||
privacyKeyNoPaidMessages#17d348d2 = PrivacyKey;
|
||||
privacyKeySavedMusic#ff7a571b = PrivacyKey;
|
||||
inputPrivacyValueAllowContacts#d09e07b = InputPrivacyRule;
|
||||
inputPrivacyValueAllowAll#184b35ce = InputPrivacyRule;
|
||||
inputPrivacyValueAllowUsers#131cc67f users:Vector<InputUser> = InputPrivacyRule;
|
||||
@ -1062,11 +1066,11 @@ messageReplies#83d60fc2 flags:# comments:flags.0?true replies:int replies_pts:in
|
||||
peerBlocked#e8fd8014 peer_id:Peer date:int = PeerBlocked;
|
||||
stats.messageStats#7fe91c14 views_graph:StatsGraph reactions_by_emotion_graph:StatsGraph = stats.MessageStats;
|
||||
groupCallDiscarded#7780bcb4 id:long access_hash:long duration:int = GroupCall;
|
||||
groupCall#553b0ba1 flags:# join_muted:flags.1?true can_change_join_muted:flags.2?true join_date_asc:flags.6?true schedule_start_subscribed:flags.8?true can_start_video:flags.9?true record_video_active:flags.11?true rtmp_stream:flags.12?true listeners_hidden:flags.13?true conference:flags.14?true creator:flags.15?true messages_enabled:flags.17?true can_change_messages_enabled:flags.18?true min:flags.19?true id:long access_hash:long participants_count:int title:flags.3?string stream_dc_id:flags.4?int record_start_date:flags.5?int schedule_date:flags.7?int unmuted_video_count:flags.10?int unmuted_video_limit:int version:int invite_link:flags.16?string = GroupCall;
|
||||
groupCall#efb2b617 flags:# join_muted:flags.1?true can_change_join_muted:flags.2?true join_date_asc:flags.6?true schedule_start_subscribed:flags.8?true can_start_video:flags.9?true record_video_active:flags.11?true rtmp_stream:flags.12?true listeners_hidden:flags.13?true conference:flags.14?true creator:flags.15?true messages_enabled:flags.17?true can_change_messages_enabled:flags.18?true min:flags.19?true id:long access_hash:long participants_count:int title:flags.3?string stream_dc_id:flags.4?int record_start_date:flags.5?int schedule_date:flags.7?int unmuted_video_count:flags.10?int unmuted_video_limit:int version:int invite_link:flags.16?string send_paid_messages_stars:flags.20?long default_send_as:flags.21?Peer = GroupCall;
|
||||
inputGroupCall#d8aa840f id:long access_hash:long = InputGroupCall;
|
||||
inputGroupCallSlug#fe06823f slug:string = InputGroupCall;
|
||||
inputGroupCallInviteMessage#8c10603f msg_id:int = InputGroupCall;
|
||||
groupCallParticipant#eba636fe flags:# muted:flags.0?true left:flags.1?true can_self_unmute:flags.2?true just_joined:flags.4?true versioned:flags.5?true min:flags.8?true muted_by_you:flags.9?true volume_by_admin:flags.10?true self:flags.12?true video_joined:flags.15?true peer:Peer date:int active_date:flags.3?int source:int volume:flags.7?int about:flags.11?string raise_hand_rating:flags.13?long video:flags.6?GroupCallParticipantVideo presentation:flags.14?GroupCallParticipantVideo = GroupCallParticipant;
|
||||
groupCallParticipant#2a3dc7ac flags:# muted:flags.0?true left:flags.1?true can_self_unmute:flags.2?true just_joined:flags.4?true versioned:flags.5?true min:flags.8?true muted_by_you:flags.9?true volume_by_admin:flags.10?true self:flags.12?true video_joined:flags.15?true peer:Peer date:int active_date:flags.3?int source:int volume:flags.7?int about:flags.11?string raise_hand_rating:flags.13?long video:flags.6?GroupCallParticipantVideo presentation:flags.14?GroupCallParticipantVideo paid_stars_total:flags.16?long = GroupCallParticipant;
|
||||
phone.groupCall#9e727aad call:GroupCall participants:Vector<GroupCallParticipant> participants_next_offset:string chats:Vector<Chat> users:Vector<User> = phone.GroupCall;
|
||||
phone.groupParticipants#f47751b6 count:int participants:Vector<GroupCallParticipant> next_offset:string chats:Vector<Chat> users:Vector<User> version:int = phone.GroupParticipants;
|
||||
inlineQueryPeerTypeSameBotPM#3081ed9d = InlineQueryPeerType;
|
||||
@ -1247,7 +1251,7 @@ messagePeerVoteInputOption#74cda504 peer:Peer date:int = MessagePeerVote;
|
||||
messagePeerVoteMultiple#4628f6e6 peer:Peer options:Vector<bytes> date:int = MessagePeerVote;
|
||||
storyViews#8d595cd6 flags:# has_viewers:flags.1?true views_count:int forwards_count:flags.2?int reactions:flags.3?Vector<ReactionCount> reactions_count:flags.4?int recent_viewers:flags.0?Vector<long> = StoryViews;
|
||||
storyItemDeleted#51e6ee4f id:int = StoryItem;
|
||||
storyItemSkipped#ffadc913 flags:# close_friends:flags.8?true id:int date:int expire_date:int = StoryItem;
|
||||
storyItemSkipped#ffadc913 flags:# close_friends:flags.8?true live:flags.9?true id:int date:int expire_date:int = StoryItem;
|
||||
storyItem#edf164f1 flags:# pinned:flags.5?true public:flags.7?true close_friends:flags.8?true min:flags.9?true noforwards:flags.10?true edited:flags.11?true contacts:flags.12?true selected_contacts:flags.13?true out:flags.16?true id:int date:int from_id:flags.18?Peer fwd_from:flags.17?StoryFwdHeader expire_date:int caption:flags.0?string entities:flags.1?Vector<MessageEntity> media:MessageMedia media_areas:flags.14?Vector<MediaArea> privacy:flags.2?Vector<PrivacyRule> views:flags.3?StoryViews sent_reaction:flags.15?Reaction albums:flags.19?Vector<int> = StoryItem;
|
||||
stories.allStoriesNotModified#1158fe3e flags:# state:string stealth_mode:StoriesStealthMode = stories.AllStories;
|
||||
stories.allStories#6efc5e81 flags:# has_more:flags.0?true count:int state:string peer_stories:Vector<PeerStories> chats:Vector<Chat> users:Vector<User> stealth_mode:StoriesStealthMode = stories.AllStories;
|
||||
@ -1276,7 +1280,7 @@ peerStories#9a35e999 flags:# peer:Peer max_read_id:flags.0?int stories:Vector<St
|
||||
stories.peerStories#cae68768 stories:PeerStories chats:Vector<Chat> users:Vector<User> = stories.PeerStories;
|
||||
messages.webPage#fd5e12bd webpage:WebPage chats:Vector<Chat> users:Vector<User> = messages.WebPage;
|
||||
premiumGiftCodeOption#257e962b flags:# users:int months:int store_product:flags.0?string store_quantity:flags.1?int currency:string amount:long = PremiumGiftCodeOption;
|
||||
payments.checkedGiftCode#284a1096 flags:# via_giveaway:flags.2?true from_id:flags.4?Peer giveaway_msg_id:flags.3?int to_id:flags.0?long date:int months:int used_date:flags.1?int chats:Vector<Chat> users:Vector<User> = payments.CheckedGiftCode;
|
||||
payments.checkedGiftCode#eb983f8f flags:# via_giveaway:flags.2?true from_id:flags.4?Peer giveaway_msg_id:flags.3?int to_id:flags.0?long date:int days:int used_date:flags.1?int chats:Vector<Chat> users:Vector<User> = payments.CheckedGiftCode;
|
||||
payments.giveawayInfo#4367daa0 flags:# participating:flags.0?true preparing_results:flags.3?true start_date:int joined_too_early_date:flags.1?int admin_disallowed_chat_id:flags.2?long disallowed_country:flags.4?string = payments.GiveawayInfo;
|
||||
payments.giveawayInfoResults#e175e66f flags:# winner:flags.0?true refunded:flags.1?true start_date:int gift_code_slug:flags.3?string stars_prize:flags.4?long finish_date:int winners_count:int activated_count:flags.2?int = payments.GiveawayInfo;
|
||||
prepaidGiveaway#b2539d54 id:long months:int quantity:int date:int = PrepaidGiveaway;
|
||||
@ -1381,7 +1385,7 @@ starsTransactionPeer#d80da15d peer:Peer = StarsTransactionPeer;
|
||||
starsTransactionPeerAds#60682812 = StarsTransactionPeer;
|
||||
starsTransactionPeerAPI#f9677aad = StarsTransactionPeer;
|
||||
starsTopupOption#bd915c0 flags:# extended:flags.1?true stars:long store_product:flags.0?string currency:string amount:long = StarsTopupOption;
|
||||
starsTransaction#13659eb0 flags:# refund:flags.3?true pending:flags.4?true failed:flags.6?true gift:flags.10?true reaction:flags.11?true stargift_upgrade:flags.18?true business_transfer:flags.21?true stargift_resale:flags.22?true posts_search:flags.24?true stargift_prepaid_upgrade:flags.25?true stargift_drop_original_details:flags.26?true id:string amount:StarsAmount date:int peer:StarsTransactionPeer title:flags.0?string description:flags.1?string photo:flags.2?WebDocument transaction_date:flags.5?int transaction_url:flags.5?string bot_payload:flags.7?bytes msg_id:flags.8?int extended_media:flags.9?Vector<MessageMedia> subscription_period:flags.12?int giveaway_post_id:flags.13?int stargift:flags.14?StarGift floodskip_number:flags.15?int starref_commission_permille:flags.16?int starref_peer:flags.17?Peer starref_amount:flags.17?StarsAmount paid_messages:flags.19?int premium_gift_months:flags.20?int ads_proceeds_from_date:flags.23?int ads_proceeds_to_date:flags.23?int = StarsTransaction;
|
||||
starsTransaction#13659eb0 flags:# refund:flags.3?true pending:flags.4?true failed:flags.6?true gift:flags.10?true reaction:flags.11?true stargift_upgrade:flags.18?true business_transfer:flags.21?true stargift_resale:flags.22?true posts_search:flags.24?true stargift_prepaid_upgrade:flags.25?true stargift_drop_original_details:flags.26?true phonegroup_message:flags.27?true id:string amount:StarsAmount date:int peer:StarsTransactionPeer title:flags.0?string description:flags.1?string photo:flags.2?WebDocument transaction_date:flags.5?int transaction_url:flags.5?string bot_payload:flags.7?bytes msg_id:flags.8?int extended_media:flags.9?Vector<MessageMedia> subscription_period:flags.12?int giveaway_post_id:flags.13?int stargift:flags.14?StarGift floodskip_number:flags.15?int starref_commission_permille:flags.16?int starref_peer:flags.17?Peer starref_amount:flags.17?StarsAmount paid_messages:flags.19?int premium_gift_months:flags.20?int ads_proceeds_from_date:flags.23?int ads_proceeds_to_date:flags.23?int = StarsTransaction;
|
||||
payments.starsStatus#6c9ce8ed flags:# balance:StarsAmount subscriptions:flags.1?Vector<StarsSubscription> subscriptions_next_offset:flags.2?string subscriptions_missing_balance:flags.4?long history:flags.3?Vector<StarsTransaction> next_offset:flags.0?string chats:Vector<Chat> users:Vector<User> = payments.StarsStatus;
|
||||
foundStory#e87acbc0 peer:Peer story:StoryItem = FoundStory;
|
||||
stories.foundStories#e2de7737 flags:# count:int stories:Vector<FoundStory> next_offset:flags.0?string chats:Vector<Chat> users:Vector<User> = stories.FoundStories;
|
||||
@ -1444,7 +1448,7 @@ requirementToContactEmpty#50a9839 = RequirementToContact;
|
||||
requirementToContactPremium#e581e4e9 = RequirementToContact;
|
||||
requirementToContactPaidMessages#b4f67e93 stars_amount:long = RequirementToContact;
|
||||
businessBotRights#a0624cf7 flags:# reply:flags.0?true read_messages:flags.1?true delete_sent_messages:flags.2?true delete_received_messages:flags.3?true edit_name:flags.4?true edit_bio:flags.5?true edit_profile_photo:flags.6?true edit_username:flags.7?true view_gifts:flags.8?true sell_gifts:flags.9?true change_gift_settings:flags.10?true transfer_and_upgrade_gifts:flags.11?true transfer_stars:flags.12?true manage_stories:flags.13?true = BusinessBotRights;
|
||||
disallowedGiftsSettings#71f276c4 flags:# disallow_unlimited_stargifts:flags.0?true disallow_limited_stargifts:flags.1?true disallow_unique_stargifts:flags.2?true disallow_premium_gifts:flags.3?true = DisallowedGiftsSettings;
|
||||
disallowedGiftsSettings#71f276c4 flags:# disallow_unlimited_stargifts:flags.0?true disallow_limited_stargifts:flags.1?true disallow_unique_stargifts:flags.2?true disallow_premium_gifts:flags.3?true disallow_stargifts_from_channels:flags.4?true = DisallowedGiftsSettings;
|
||||
sponsoredPeer#c69708d3 flags:# random_id:bytes peer:Peer sponsor_info:flags.0?string additional_info:flags.1?string = SponsoredPeer;
|
||||
contacts.sponsoredPeersEmpty#ea32b4b1 = contacts.SponsoredPeers;
|
||||
contacts.sponsoredPeers#eb032884 peers:Vector<SponsoredPeer> chats:Vector<Chat> users:Vector<User> = contacts.SponsoredPeers;
|
||||
@ -1457,7 +1461,7 @@ stories.canSendStoryCount#c387c04e count_remains:int = stories.CanSendStoryCount
|
||||
pendingSuggestion#e7e82e12 suggestion:string title:TextWithEntities description:TextWithEntities url:string = PendingSuggestion;
|
||||
todoItem#cba9a52f id:int title:TextWithEntities = TodoItem;
|
||||
todoList#49b92a26 flags:# others_can_append:flags.0?true others_can_complete:flags.1?true title:TextWithEntities list:Vector<TodoItem> = TodoList;
|
||||
todoCompletion#4cc120b7 id:int completed_by:long date:int = TodoCompletion;
|
||||
todoCompletion#221bb5e4 id:int completed_by:Peer date:int = TodoCompletion;
|
||||
suggestedPost#e8e37e5 flags:# accepted:flags.1?true rejected:flags.2?true price:flags.3?StarsAmount schedule_date:flags.0?int = SuggestedPost;
|
||||
starsRating#1b0e4f07 flags:# level:int current_level_stars:long stars:long next_level_stars:flags.0?long = StarsRating;
|
||||
starGiftCollection#9d6b13b0 flags:# collection_id:int title:string icon:flags.0?Document gifts_count:int hash:long = StarGiftCollection;
|
||||
@ -1486,6 +1490,10 @@ inputChatThemeEmpty#83268483 = InputChatTheme;
|
||||
inputChatTheme#c93de95c emoticon:string = InputChatTheme;
|
||||
inputChatThemeUniqueGift#87e5dfe4 slug:string = InputChatTheme;
|
||||
starGiftUpgradePrice#99ea331d date:int upgrade_stars:long = StarGiftUpgradePrice;
|
||||
groupCallMessage#1a8afc7e flags:# from_admin:flags.1?true id:int from_id:Peer date:int message:TextWithEntities paid_message_stars:flags.0?long = GroupCallMessage;
|
||||
groupCallDonor#ee430c85 flags:# top:flags.0?true my:flags.1?true anonymous:flags.2?true peer_id:flags.3?Peer stars:long = GroupCallDonor;
|
||||
phone.groupCallStars#9d1dbd26 total_stars:long top_donors:Vector<GroupCallDonor> chats:Vector<Chat> users:Vector<User> = phone.GroupCallStars;
|
||||
recentStory#711d692d flags:# live:flags.0?true max_id:flags.1?int = RecentStory;
|
||||
---functions---
|
||||
invokeAfterMsg#cb9f372d {X:Type} msg_id:long query:!X = X;
|
||||
initConnection#c1cd5ea9 {X:Type} flags:# api_id:int device_model:string system_version:string app_version:string system_lang_code:string lang_pack:string lang_code:string proxy:flags.0?InputClientProxy params:flags.1?JSONValue query:!X = X;
|
||||
@ -1579,9 +1587,9 @@ messages.deleteHistory#b08f922a flags:# just_clear:flags.0?true revoke:flags.1?t
|
||||
messages.deleteMessages#e58e95d2 flags:# revoke:flags.0?true id:Vector<int> = messages.AffectedMessages;
|
||||
messages.receivedMessages#5a954c0 max_id:int = Vector<ReceivedNotifyMessage>;
|
||||
messages.setTyping#58943ee2 flags:# peer:InputPeer top_msg_id:flags.0?int action:SendMessageAction = Bool;
|
||||
messages.sendMessage#fe05dc9a flags:# no_webpage:flags.1?true silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true allow_paid_floodskip:flags.19?true peer:InputPeer reply_to:flags.0?InputReplyTo message:string random_id:long reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut effect:flags.18?long allow_paid_stars:flags.21?long suggested_post:flags.22?SuggestedPost = Updates;
|
||||
messages.sendMedia#ac55d9c1 flags:# silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true allow_paid_floodskip:flags.19?true peer:InputPeer reply_to:flags.0?InputReplyTo media:InputMedia message:string random_id:long reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut effect:flags.18?long allow_paid_stars:flags.21?long suggested_post:flags.22?SuggestedPost = Updates;
|
||||
messages.forwardMessages#978928ca flags:# silent:flags.5?true background:flags.6?true with_my_score:flags.8?true drop_author:flags.11?true drop_media_captions:flags.12?true noforwards:flags.14?true allow_paid_floodskip:flags.19?true from_peer:InputPeer id:Vector<int> random_id:Vector<long> to_peer:InputPeer top_msg_id:flags.9?int reply_to:flags.22?InputReplyTo schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut video_timestamp:flags.20?int allow_paid_stars:flags.21?long suggested_post:flags.23?SuggestedPost = Updates;
|
||||
messages.sendMessage#545cd15a flags:# no_webpage:flags.1?true silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true allow_paid_floodskip:flags.19?true peer:InputPeer reply_to:flags.0?InputReplyTo message:string random_id:long reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.10?int schedule_repeat_period:flags.24?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut effect:flags.18?long allow_paid_stars:flags.21?long suggested_post:flags.22?SuggestedPost = Updates;
|
||||
messages.sendMedia#330e77f flags:# silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true allow_paid_floodskip:flags.19?true peer:InputPeer reply_to:flags.0?InputReplyTo media:InputMedia message:string random_id:long reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.10?int schedule_repeat_period:flags.24?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut effect:flags.18?long allow_paid_stars:flags.21?long suggested_post:flags.22?SuggestedPost = Updates;
|
||||
messages.forwardMessages#41d41ade flags:# silent:flags.5?true background:flags.6?true with_my_score:flags.8?true drop_author:flags.11?true drop_media_captions:flags.12?true noforwards:flags.14?true allow_paid_floodskip:flags.19?true from_peer:InputPeer id:Vector<int> random_id:Vector<long> to_peer:InputPeer top_msg_id:flags.9?int reply_to:flags.22?InputReplyTo schedule_date:flags.10?int schedule_repeat_period:flags.24?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut video_timestamp:flags.20?int allow_paid_stars:flags.21?long suggested_post:flags.23?SuggestedPost = Updates;
|
||||
messages.reportSpam#cf1592db peer:InputPeer = Bool;
|
||||
messages.getPeerSettings#efd9a6a2 peer:InputPeer = messages.PeerSettings;
|
||||
messages.report#fc78af9b peer:InputPeer id:Vector<int> option:bytes message:string = ReportResult;
|
||||
@ -1612,7 +1620,7 @@ messages.getSavedGifs#5cf09635 hash:long = messages.SavedGifs;
|
||||
messages.saveGif#327a30cb id:InputDocument unsave:Bool = Bool;
|
||||
messages.getInlineBotResults#514e999d flags:# bot:InputUser peer:InputPeer geo_point:flags.0?InputGeoPoint query:string offset:string = messages.BotResults;
|
||||
messages.sendInlineBotResult#c0cf7646 flags:# silent:flags.5?true background:flags.6?true clear_draft:flags.7?true hide_via:flags.11?true peer:InputPeer reply_to:flags.0?InputReplyTo random_id:long query_id:long id:string schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut allow_paid_stars:flags.21?long = Updates;
|
||||
messages.editMessage#dfd14005 flags:# no_webpage:flags.1?true invert_media:flags.16?true peer:InputPeer id:int message:flags.11?string media:flags.14?InputMedia reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.15?int quick_reply_shortcut_id:flags.17?int = Updates;
|
||||
messages.editMessage#51e842e1 flags:# no_webpage:flags.1?true invert_media:flags.16?true peer:InputPeer id:int message:flags.11?string media:flags.14?InputMedia reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.15?int schedule_repeat_period:flags.18?int quick_reply_shortcut_id:flags.17?int = Updates;
|
||||
messages.getBotCallbackAnswer#9342ca07 flags:# game:flags.1?true peer:InputPeer msg_id:int data:flags.0?bytes password:flags.2?InputCheckPasswordSRP = messages.BotCallbackAnswer;
|
||||
messages.getPeerDialogs#e470bcfd peers:Vector<InputDialogPeer> = messages.PeerDialogs;
|
||||
messages.saveDraft#54ae308e flags:# no_webpage:flags.1?true invert_media:flags.6?true reply_to:flags.4?InputReplyTo peer:InputPeer message:string entities:flags.3?Vector<MessageEntity> media:flags.5?InputMedia effect:flags.7?long suggested_post:flags.8?SuggestedPost = Bool;
|
||||
@ -1773,7 +1781,7 @@ channels.readMessageContents#eab5dc38 channel:InputChannel id:Vector<int> = Bool
|
||||
channels.togglePreHistoryHidden#eabbb94c channel:InputChannel enabled:Bool = Updates;
|
||||
channels.getGroupsForDiscussion#f5dad378 = messages.Chats;
|
||||
channels.setDiscussionGroup#40582bb2 broadcast:InputChannel group:InputChannel = Bool;
|
||||
channels.getSendAs#e785a43f flags:# for_paid_reactions:flags.0?true peer:InputPeer = channels.SendAsPeers;
|
||||
channels.getSendAs#e785a43f flags:# for_paid_reactions:flags.0?true for_live_stories:flags.1?true peer:InputPeer = channels.SendAsPeers;
|
||||
channels.deleteParticipantHistory#367544db channel:InputChannel participant:InputPeer = messages.AffectedHistory;
|
||||
channels.toggleJoinToSend#e4cb9580 channel:InputChannel enabled:Bool = Updates;
|
||||
channels.toggleJoinRequest#4c2985b6 channel:InputChannel enabled:Bool = Updates;
|
||||
@ -1890,7 +1898,7 @@ stories.report#19d8eb45 peer:InputPeer id:Vector<int> option:bytes message:strin
|
||||
stories.activateStealthMode#57bbd166 flags:# past:flags.0?true future:flags.1?true = Updates;
|
||||
stories.sendReaction#7fd736b2 flags:# add_to_recent:flags.0?true peer:InputPeer story_id:int reaction:Reaction = Updates;
|
||||
stories.getPeerStories#2c4ada50 peer:InputPeer = stories.PeerStories;
|
||||
stories.getPeerMaxIDs#535983c3 id:Vector<InputPeer> = Vector<int>;
|
||||
stories.getPeerMaxIDs#78499170 id:Vector<InputPeer> = Vector<RecentStory>;
|
||||
stories.togglePeerStoriesHidden#bd0415c4 peer:InputPeer hidden:Bool = Bool;
|
||||
stories.togglePinnedToTop#b297e9b peer:InputPeer id:Vector<int> = Bool;
|
||||
stories.getAlbums#25b3eac7 peer:InputPeer hash:long = stories.Albums;
|
||||
|
||||
@ -22,7 +22,7 @@ inputUserSelf#f7c1b13f = InputUser;
|
||||
inputUser#f21158c6 user_id:long access_hash:long = InputUser;
|
||||
inputUserFromMessage#1da448e2 peer:InputPeer msg_id:int user_id:long = InputUser;
|
||||
|
||||
inputPhoneContact#f392b7f4 client_id:long phone:string first_name:string last_name:string = InputContact;
|
||||
inputPhoneContact#6a1dc4be flags:# client_id:long phone:string first_name:string last_name:string note:flags.0?TextWithEntities = InputContact;
|
||||
|
||||
inputFile#f52ff27f id:long parts:int name:string md5_checksum:string = InputFile;
|
||||
inputFileBig#fa4f0bb5 id:long parts:int name:string = InputFile;
|
||||
@ -85,7 +85,7 @@ storage.fileMp4#b3cea0e4 = storage.FileType;
|
||||
storage.fileWebp#1081464c = storage.FileType;
|
||||
|
||||
userEmpty#d3bc4b7a id:long = User;
|
||||
user#20b1422 flags:# self:flags.10?true contact:flags.11?true mutual_contact:flags.12?true deleted:flags.13?true bot:flags.14?true bot_chat_history:flags.15?true bot_nochats:flags.16?true verified:flags.17?true restricted:flags.18?true min:flags.20?true bot_inline_geo:flags.21?true support:flags.23?true scam:flags.24?true apply_min_photo:flags.25?true fake:flags.26?true bot_attach_menu:flags.27?true premium:flags.28?true attach_menu_enabled:flags.29?true flags2:# bot_can_edit:flags2.1?true close_friend:flags2.2?true stories_hidden:flags2.3?true stories_unavailable:flags2.4?true contact_require_premium:flags2.10?true bot_business:flags2.11?true bot_has_main_app:flags2.13?true bot_forum_view:flags2.16?true id:long access_hash:flags.0?long first_name:flags.1?string last_name:flags.2?string username:flags.3?string phone:flags.4?string photo:flags.5?UserProfilePhoto status:flags.6?UserStatus bot_info_version:flags.14?int restriction_reason:flags.18?Vector<RestrictionReason> bot_inline_placeholder:flags.19?string lang_code:flags.22?string emoji_status:flags.30?EmojiStatus usernames:flags2.0?Vector<Username> stories_max_id:flags2.5?int color:flags2.8?PeerColor profile_color:flags2.9?PeerColor bot_active_users:flags2.12?int bot_verification_icon:flags2.14?long send_paid_messages_stars:flags2.15?long = User;
|
||||
user#31774388 flags:# self:flags.10?true contact:flags.11?true mutual_contact:flags.12?true deleted:flags.13?true bot:flags.14?true bot_chat_history:flags.15?true bot_nochats:flags.16?true verified:flags.17?true restricted:flags.18?true min:flags.20?true bot_inline_geo:flags.21?true support:flags.23?true scam:flags.24?true apply_min_photo:flags.25?true fake:flags.26?true bot_attach_menu:flags.27?true premium:flags.28?true attach_menu_enabled:flags.29?true flags2:# bot_can_edit:flags2.1?true close_friend:flags2.2?true stories_hidden:flags2.3?true stories_unavailable:flags2.4?true contact_require_premium:flags2.10?true bot_business:flags2.11?true bot_has_main_app:flags2.13?true bot_forum_view:flags2.16?true id:long access_hash:flags.0?long first_name:flags.1?string last_name:flags.2?string username:flags.3?string phone:flags.4?string photo:flags.5?UserProfilePhoto status:flags.6?UserStatus bot_info_version:flags.14?int restriction_reason:flags.18?Vector<RestrictionReason> bot_inline_placeholder:flags.19?string lang_code:flags.22?string emoji_status:flags.30?EmojiStatus usernames:flags2.0?Vector<Username> stories_max_id:flags2.5?RecentStory color:flags2.8?PeerColor profile_color:flags2.9?PeerColor bot_active_users:flags2.12?int bot_verification_icon:flags2.14?long send_paid_messages_stars:flags2.15?long = User;
|
||||
|
||||
userProfilePhotoEmpty#4f11bae1 = UserProfilePhoto;
|
||||
userProfilePhoto#82d1f706 flags:# has_video:flags.0?true personal:flags.2?true photo_id:long stripped_thumb:flags.1?bytes dc_id:int = UserProfilePhoto;
|
||||
@ -100,7 +100,7 @@ userStatusLastMonth#65899777 flags:# by_me:flags.0?true = UserStatus;
|
||||
chatEmpty#29562865 id:long = Chat;
|
||||
chat#41cbf256 flags:# creator:flags.0?true left:flags.2?true deactivated:flags.5?true call_active:flags.23?true call_not_empty:flags.24?true noforwards:flags.25?true id:long title:string photo:ChatPhoto participants_count:int date:int version:int migrated_to:flags.6?InputChannel admin_rights:flags.14?ChatAdminRights default_banned_rights:flags.18?ChatBannedRights = Chat;
|
||||
chatForbidden#6592a1a7 id:long title:string = Chat;
|
||||
channel#fe685355 flags:# creator:flags.0?true left:flags.2?true broadcast:flags.5?true verified:flags.7?true megagroup:flags.8?true restricted:flags.9?true signatures:flags.11?true min:flags.12?true scam:flags.19?true has_link:flags.20?true has_geo:flags.21?true slowmode_enabled:flags.22?true call_active:flags.23?true call_not_empty:flags.24?true fake:flags.25?true gigagroup:flags.26?true noforwards:flags.27?true join_to_send:flags.28?true join_request:flags.29?true forum:flags.30?true flags2:# stories_hidden:flags2.1?true stories_hidden_min:flags2.2?true stories_unavailable:flags2.3?true signature_profiles:flags2.12?true autotranslation:flags2.15?true broadcast_messages_allowed:flags2.16?true monoforum:flags2.17?true forum_tabs:flags2.19?true id:long access_hash:flags.13?long title:string username:flags.6?string photo:ChatPhoto date:int restriction_reason:flags.9?Vector<RestrictionReason> admin_rights:flags.14?ChatAdminRights banned_rights:flags.15?ChatBannedRights default_banned_rights:flags.18?ChatBannedRights participants_count:flags.17?int usernames:flags2.0?Vector<Username> stories_max_id:flags2.4?int color:flags2.7?PeerColor profile_color:flags2.8?PeerColor emoji_status:flags2.9?EmojiStatus level:flags2.10?int subscription_until_date:flags2.11?int bot_verification_icon:flags2.13?long send_paid_messages_stars:flags2.14?long linked_monoforum_id:flags2.18?long = Chat;
|
||||
channel#1c32b11c flags:# creator:flags.0?true left:flags.2?true broadcast:flags.5?true verified:flags.7?true megagroup:flags.8?true restricted:flags.9?true signatures:flags.11?true min:flags.12?true scam:flags.19?true has_link:flags.20?true has_geo:flags.21?true slowmode_enabled:flags.22?true call_active:flags.23?true call_not_empty:flags.24?true fake:flags.25?true gigagroup:flags.26?true noforwards:flags.27?true join_to_send:flags.28?true join_request:flags.29?true forum:flags.30?true flags2:# stories_hidden:flags2.1?true stories_hidden_min:flags2.2?true stories_unavailable:flags2.3?true signature_profiles:flags2.12?true autotranslation:flags2.15?true broadcast_messages_allowed:flags2.16?true monoforum:flags2.17?true forum_tabs:flags2.19?true id:long access_hash:flags.13?long title:string username:flags.6?string photo:ChatPhoto date:int restriction_reason:flags.9?Vector<RestrictionReason> admin_rights:flags.14?ChatAdminRights banned_rights:flags.15?ChatBannedRights default_banned_rights:flags.18?ChatBannedRights participants_count:flags.17?int usernames:flags2.0?Vector<Username> stories_max_id:flags2.4?RecentStory color:flags2.7?PeerColor profile_color:flags2.8?PeerColor emoji_status:flags2.9?EmojiStatus level:flags2.10?int subscription_until_date:flags2.11?int bot_verification_icon:flags2.13?long send_paid_messages_stars:flags2.14?long linked_monoforum_id:flags2.18?long = Chat;
|
||||
channelForbidden#17d493d5 flags:# broadcast:flags.5?true megagroup:flags.8?true id:long access_hash:long title:string until_date:flags.16?int = Chat;
|
||||
|
||||
chatFull#2633421b flags:# can_set_username:flags.7?true has_scheduled:flags.8?true translations_disabled:flags.19?true id:long about:string participants:ChatParticipants chat_photo:flags.2?Photo notify_settings:PeerNotifySettings exported_invite:flags.13?ExportedChatInvite bot_info:flags.3?Vector<BotInfo> pinned_msg_id:flags.6?int folder_id:flags.11?int call:flags.12?InputGroupCall ttl_period:flags.14?int groupcall_default_join_as:flags.15?Peer theme_emoticon:flags.16?string requests_pending:flags.17?int recent_requesters:flags.17?Vector<long> available_reactions:flags.18?ChatReactions reactions_limit:flags.20?int = ChatFull;
|
||||
@ -117,7 +117,7 @@ chatPhotoEmpty#37c1011c = ChatPhoto;
|
||||
chatPhoto#1c6e1c11 flags:# has_video:flags.0?true photo_id:long stripped_thumb:flags.1?bytes dc_id:int = ChatPhoto;
|
||||
|
||||
messageEmpty#90a6ca84 flags:# id:int peer_id:flags.0?Peer = Message;
|
||||
message#9815cec8 flags:# out:flags.1?true mentioned:flags.4?true media_unread:flags.5?true silent:flags.13?true post:flags.14?true from_scheduled:flags.18?true legacy:flags.19?true edit_hide:flags.21?true pinned:flags.24?true noforwards:flags.26?true invert_media:flags.27?true flags2:# offline:flags2.1?true video_processing_pending:flags2.4?true paid_suggested_post_stars:flags2.8?true paid_suggested_post_ton:flags2.9?true id:int from_id:flags.8?Peer from_boosts_applied:flags.29?int peer_id:Peer saved_peer_id:flags.28?Peer fwd_from:flags.2?MessageFwdHeader via_bot_id:flags.11?long via_business_bot_id:flags2.0?long reply_to:flags.3?MessageReplyHeader date:int message:string media:flags.9?MessageMedia reply_markup:flags.6?ReplyMarkup entities:flags.7?Vector<MessageEntity> views:flags.10?int forwards:flags.10?int replies:flags.23?MessageReplies edit_date:flags.15?int post_author:flags.16?string grouped_id:flags.17?long reactions:flags.20?MessageReactions restriction_reason:flags.22?Vector<RestrictionReason> ttl_period:flags.25?int quick_reply_shortcut_id:flags.30?int effect:flags2.2?long factcheck:flags2.3?FactCheck report_delivery_until_date:flags2.5?int paid_message_stars:flags2.6?long suggested_post:flags2.7?SuggestedPost = Message;
|
||||
message#b92f76cf flags:# out:flags.1?true mentioned:flags.4?true media_unread:flags.5?true silent:flags.13?true post:flags.14?true from_scheduled:flags.18?true legacy:flags.19?true edit_hide:flags.21?true pinned:flags.24?true noforwards:flags.26?true invert_media:flags.27?true flags2:# offline:flags2.1?true video_processing_pending:flags2.4?true paid_suggested_post_stars:flags2.8?true paid_suggested_post_ton:flags2.9?true id:int from_id:flags.8?Peer from_boosts_applied:flags.29?int peer_id:Peer saved_peer_id:flags.28?Peer fwd_from:flags.2?MessageFwdHeader via_bot_id:flags.11?long via_business_bot_id:flags2.0?long reply_to:flags.3?MessageReplyHeader date:int message:string media:flags.9?MessageMedia reply_markup:flags.6?ReplyMarkup entities:flags.7?Vector<MessageEntity> views:flags.10?int forwards:flags.10?int replies:flags.23?MessageReplies edit_date:flags.15?int post_author:flags.16?string grouped_id:flags.17?long reactions:flags.20?MessageReactions restriction_reason:flags.22?Vector<RestrictionReason> ttl_period:flags.25?int quick_reply_shortcut_id:flags.30?int effect:flags2.2?long factcheck:flags2.3?FactCheck report_delivery_until_date:flags2.5?int paid_message_stars:flags2.6?long suggested_post:flags2.7?SuggestedPost schedule_repeat_period:flags2.10?int = Message;
|
||||
messageService#7a800e0a flags:# out:flags.1?true mentioned:flags.4?true media_unread:flags.5?true reactions_are_possible:flags.9?true silent:flags.13?true post:flags.14?true legacy:flags.19?true id:int from_id:flags.8?Peer peer_id:Peer saved_peer_id:flags.28?Peer reply_to:flags.3?MessageReplyHeader date:int action:MessageAction reactions:flags.20?MessageReactions ttl_period:flags.25?int = Message;
|
||||
|
||||
messageMediaEmpty#3ded6320 = MessageMedia;
|
||||
@ -138,6 +138,7 @@ messageMediaGiveaway#aa073beb flags:# only_new_subscribers:flags.0?true winners_
|
||||
messageMediaGiveawayResults#ceaa3ea1 flags:# only_new_subscribers:flags.0?true refunded:flags.2?true channel_id:long additional_peers_count:flags.3?int launch_msg_id:int winners_count:int unclaimed_count:int winners:Vector<long> months:flags.4?int stars:flags.5?long prize_description:flags.1?string until_date:int = MessageMedia;
|
||||
messageMediaPaidMedia#a8852491 stars_amount:long extended_media:Vector<MessageExtendedMedia> = MessageMedia;
|
||||
messageMediaToDo#8a53b014 flags:# todo:TodoList completions:flags.0?Vector<TodoCompletion> = MessageMedia;
|
||||
messageMediaVideoStream#ca5cab89 flags:# rtmp_stream:flags.0?true call:InputGroupCall = MessageMedia;
|
||||
|
||||
messageActionEmpty#b6aef7b0 = MessageAction;
|
||||
messageActionChatCreate#bd47cbad title:string users:Vector<long> = MessageAction;
|
||||
@ -171,13 +172,13 @@ messageActionSetChatTheme#b91bbd3a theme:ChatTheme = MessageAction;
|
||||
messageActionChatJoinedByRequest#ebbca3cb = MessageAction;
|
||||
messageActionWebViewDataSentMe#47dd8079 text:string data:string = MessageAction;
|
||||
messageActionWebViewDataSent#b4c38cb5 text:string = MessageAction;
|
||||
messageActionGiftPremium#6c6274fa flags:# currency:string amount:long months:int crypto_currency:flags.0?string crypto_amount:flags.0?long message:flags.1?TextWithEntities = MessageAction;
|
||||
messageActionGiftPremium#48e91302 flags:# currency:string amount:long days:int crypto_currency:flags.0?string crypto_amount:flags.0?long message:flags.1?TextWithEntities = MessageAction;
|
||||
messageActionTopicCreate#d999256 flags:# title_missing:flags.1?true title:string icon_color:int icon_emoji_id:flags.0?long = MessageAction;
|
||||
messageActionTopicEdit#c0944820 flags:# title:flags.0?string icon_emoji_id:flags.1?long closed:flags.2?Bool hidden:flags.3?Bool = MessageAction;
|
||||
messageActionSuggestProfilePhoto#57de635e photo:Photo = MessageAction;
|
||||
messageActionRequestedPeer#31518e9b button_id:int peers:Vector<Peer> = MessageAction;
|
||||
messageActionSetChatWallPaper#5060a3f4 flags:# same:flags.0?true for_both:flags.1?true wallpaper:WallPaper = MessageAction;
|
||||
messageActionGiftCode#56d03994 flags:# via_giveaway:flags.0?true unclaimed:flags.5?true boost_peer:flags.1?Peer months:int slug:string currency:flags.2?string amount:flags.2?long crypto_currency:flags.3?string crypto_amount:flags.3?long message:flags.4?TextWithEntities = MessageAction;
|
||||
messageActionGiftCode#31c48347 flags:# via_giveaway:flags.0?true unclaimed:flags.5?true boost_peer:flags.1?Peer days:int slug:string currency:flags.2?string amount:flags.2?long crypto_currency:flags.3?string crypto_amount:flags.3?long message:flags.4?TextWithEntities = MessageAction;
|
||||
messageActionGiveawayLaunch#a80f51e4 flags:# stars:flags.0?long = MessageAction;
|
||||
messageActionGiveawayResults#87e2f155 flags:# stars:flags.0?true winners_count:int unclaimed_count:int = MessageAction;
|
||||
messageActionBoostApply#cc02aa6d boosts:int = MessageAction;
|
||||
@ -385,7 +386,7 @@ updatePinnedMessages#ed85eab5 flags:# pinned:flags.0?true peer:Peer messages:Vec
|
||||
updatePinnedChannelMessages#5bb98608 flags:# pinned:flags.0?true channel_id:long messages:Vector<int> pts:int pts_count:int = Update;
|
||||
updateChat#f89a6a4e chat_id:long = Update;
|
||||
updateGroupCallParticipants#f2ebdb4e call:InputGroupCall participants:Vector<GroupCallParticipant> version:int = Update;
|
||||
updateGroupCall#97d64341 flags:# chat_id:flags.0?long call:GroupCall = Update;
|
||||
updateGroupCall#9d2216e0 flags:# live_story:flags.2?true peer:flags.1?Peer call:GroupCall = Update;
|
||||
updatePeerHistoryTTL#bb9bb9a5 flags:# peer:Peer ttl_period:flags.0?int = Update;
|
||||
updateChatParticipant#d087663a flags:# chat_id:long date:int actor_id:long user_id:long prev_participant:flags.0?ChatParticipant new_participant:flags.1?ChatParticipant invite:flags.2?ExportedChatInvite qts:int = Update;
|
||||
updateChannelParticipant#985d3abb flags:# via_chatlist:flags.3?true channel_id:long date:int actor_id:long user_id:long prev_participant:flags.0?ChannelParticipant new_participant:flags.1?ChannelParticipant invite:flags.2?ExportedChatInvite qts:int = Update;
|
||||
@ -442,10 +443,11 @@ updateGroupCallChainBlocks#a477288f call:InputGroupCall sub_chain_id:int blocks:
|
||||
updateReadMonoForumInbox#77b0e372 channel_id:long saved_peer_id:Peer read_max_id:int = Update;
|
||||
updateReadMonoForumOutbox#a4a79376 channel_id:long saved_peer_id:Peer read_max_id:int = Update;
|
||||
updateMonoForumNoPaidException#9f812b08 flags:# exception:flags.0?true channel_id:long saved_peer_id:Peer = Update;
|
||||
updateGroupCallMessage#78c314e0 call:InputGroupCall from_id:Peer random_id:long message:TextWithEntities = Update;
|
||||
updateGroupCallMessage#d8326f0d call:InputGroupCall message:GroupCallMessage = Update;
|
||||
updateGroupCallEncryptedMessage#c957a766 call:InputGroupCall from_id:Peer encrypted_message:bytes = Update;
|
||||
updatePinnedForumTopic#683b2c52 flags:# pinned:flags.0?true peer:Peer topic_id:int = Update;
|
||||
updatePinnedForumTopics#def143d0 flags:# peer:Peer order:flags.0?Vector<int> = Update;
|
||||
updateDeleteGroupCallMessages#3e85e92c call:InputGroupCall messages:Vector<int> = Update;
|
||||
|
||||
updates.state#a56c2a3e pts:int qts:int date:int seq:int unread_count:int = updates.State;
|
||||
|
||||
@ -555,6 +557,7 @@ inputPrivacyKeyAbout#3823cc40 = InputPrivacyKey;
|
||||
inputPrivacyKeyBirthday#d65a11cc = InputPrivacyKey;
|
||||
inputPrivacyKeyStarGiftsAutoSave#e1732341 = InputPrivacyKey;
|
||||
inputPrivacyKeyNoPaidMessages#bdc597b4 = InputPrivacyKey;
|
||||
inputPrivacyKeySavedMusic#4dbe9226 = InputPrivacyKey;
|
||||
|
||||
privacyKeyStatusTimestamp#bc2eab30 = PrivacyKey;
|
||||
privacyKeyChatInvite#500e6dfa = PrivacyKey;
|
||||
@ -569,6 +572,7 @@ privacyKeyAbout#a486b761 = PrivacyKey;
|
||||
privacyKeyBirthday#2000a518 = PrivacyKey;
|
||||
privacyKeyStarGiftsAutoSave#2ca4fdf8 = PrivacyKey;
|
||||
privacyKeyNoPaidMessages#17d348d2 = PrivacyKey;
|
||||
privacyKeySavedMusic#ff7a571b = PrivacyKey;
|
||||
|
||||
inputPrivacyValueAllowContacts#d09e07b = InputPrivacyRule;
|
||||
inputPrivacyValueAllowAll#184b35ce = InputPrivacyRule;
|
||||
@ -1359,13 +1363,13 @@ peerBlocked#e8fd8014 peer_id:Peer date:int = PeerBlocked;
|
||||
stats.messageStats#7fe91c14 views_graph:StatsGraph reactions_by_emotion_graph:StatsGraph = stats.MessageStats;
|
||||
|
||||
groupCallDiscarded#7780bcb4 id:long access_hash:long duration:int = GroupCall;
|
||||
groupCall#553b0ba1 flags:# join_muted:flags.1?true can_change_join_muted:flags.2?true join_date_asc:flags.6?true schedule_start_subscribed:flags.8?true can_start_video:flags.9?true record_video_active:flags.11?true rtmp_stream:flags.12?true listeners_hidden:flags.13?true conference:flags.14?true creator:flags.15?true messages_enabled:flags.17?true can_change_messages_enabled:flags.18?true min:flags.19?true id:long access_hash:long participants_count:int title:flags.3?string stream_dc_id:flags.4?int record_start_date:flags.5?int schedule_date:flags.7?int unmuted_video_count:flags.10?int unmuted_video_limit:int version:int invite_link:flags.16?string = GroupCall;
|
||||
groupCall#efb2b617 flags:# join_muted:flags.1?true can_change_join_muted:flags.2?true join_date_asc:flags.6?true schedule_start_subscribed:flags.8?true can_start_video:flags.9?true record_video_active:flags.11?true rtmp_stream:flags.12?true listeners_hidden:flags.13?true conference:flags.14?true creator:flags.15?true messages_enabled:flags.17?true can_change_messages_enabled:flags.18?true min:flags.19?true id:long access_hash:long participants_count:int title:flags.3?string stream_dc_id:flags.4?int record_start_date:flags.5?int schedule_date:flags.7?int unmuted_video_count:flags.10?int unmuted_video_limit:int version:int invite_link:flags.16?string send_paid_messages_stars:flags.20?long default_send_as:flags.21?Peer = GroupCall;
|
||||
|
||||
inputGroupCall#d8aa840f id:long access_hash:long = InputGroupCall;
|
||||
inputGroupCallSlug#fe06823f slug:string = InputGroupCall;
|
||||
inputGroupCallInviteMessage#8c10603f msg_id:int = InputGroupCall;
|
||||
|
||||
groupCallParticipant#eba636fe flags:# muted:flags.0?true left:flags.1?true can_self_unmute:flags.2?true just_joined:flags.4?true versioned:flags.5?true min:flags.8?true muted_by_you:flags.9?true volume_by_admin:flags.10?true self:flags.12?true video_joined:flags.15?true peer:Peer date:int active_date:flags.3?int source:int volume:flags.7?int about:flags.11?string raise_hand_rating:flags.13?long video:flags.6?GroupCallParticipantVideo presentation:flags.14?GroupCallParticipantVideo = GroupCallParticipant;
|
||||
groupCallParticipant#2a3dc7ac flags:# muted:flags.0?true left:flags.1?true can_self_unmute:flags.2?true just_joined:flags.4?true versioned:flags.5?true min:flags.8?true muted_by_you:flags.9?true volume_by_admin:flags.10?true self:flags.12?true video_joined:flags.15?true peer:Peer date:int active_date:flags.3?int source:int volume:flags.7?int about:flags.11?string raise_hand_rating:flags.13?long video:flags.6?GroupCallParticipantVideo presentation:flags.14?GroupCallParticipantVideo paid_stars_total:flags.16?long = GroupCallParticipant;
|
||||
|
||||
phone.groupCall#9e727aad call:GroupCall participants:Vector<GroupCallParticipant> participants_next_offset:string chats:Vector<Chat> users:Vector<User> = phone.GroupCall;
|
||||
|
||||
@ -1647,7 +1651,7 @@ messagePeerVoteMultiple#4628f6e6 peer:Peer options:Vector<bytes> date:int = Mess
|
||||
storyViews#8d595cd6 flags:# has_viewers:flags.1?true views_count:int forwards_count:flags.2?int reactions:flags.3?Vector<ReactionCount> reactions_count:flags.4?int recent_viewers:flags.0?Vector<long> = StoryViews;
|
||||
|
||||
storyItemDeleted#51e6ee4f id:int = StoryItem;
|
||||
storyItemSkipped#ffadc913 flags:# close_friends:flags.8?true id:int date:int expire_date:int = StoryItem;
|
||||
storyItemSkipped#ffadc913 flags:# close_friends:flags.8?true live:flags.9?true id:int date:int expire_date:int = StoryItem;
|
||||
storyItem#edf164f1 flags:# pinned:flags.5?true public:flags.7?true close_friends:flags.8?true min:flags.9?true noforwards:flags.10?true edited:flags.11?true contacts:flags.12?true selected_contacts:flags.13?true out:flags.16?true id:int date:int from_id:flags.18?Peer fwd_from:flags.17?StoryFwdHeader expire_date:int caption:flags.0?string entities:flags.1?Vector<MessageEntity> media:MessageMedia media_areas:flags.14?Vector<MediaArea> privacy:flags.2?Vector<PrivacyRule> views:flags.3?StoryViews sent_reaction:flags.15?Reaction albums:flags.19?Vector<int> = StoryItem;
|
||||
|
||||
stories.allStoriesNotModified#1158fe3e flags:# state:string stealth_mode:StoriesStealthMode = stories.AllStories;
|
||||
@ -1691,7 +1695,7 @@ messages.webPage#fd5e12bd webpage:WebPage chats:Vector<Chat> users:Vector<User>
|
||||
|
||||
premiumGiftCodeOption#257e962b flags:# users:int months:int store_product:flags.0?string store_quantity:flags.1?int currency:string amount:long = PremiumGiftCodeOption;
|
||||
|
||||
payments.checkedGiftCode#284a1096 flags:# via_giveaway:flags.2?true from_id:flags.4?Peer giveaway_msg_id:flags.3?int to_id:flags.0?long date:int months:int used_date:flags.1?int chats:Vector<Chat> users:Vector<User> = payments.CheckedGiftCode;
|
||||
payments.checkedGiftCode#eb983f8f flags:# via_giveaway:flags.2?true from_id:flags.4?Peer giveaway_msg_id:flags.3?int to_id:flags.0?long date:int days:int used_date:flags.1?int chats:Vector<Chat> users:Vector<User> = payments.CheckedGiftCode;
|
||||
|
||||
payments.giveawayInfo#4367daa0 flags:# participating:flags.0?true preparing_results:flags.3?true start_date:int joined_too_early_date:flags.1?int admin_disallowed_chat_id:flags.2?long disallowed_country:flags.4?string = payments.GiveawayInfo;
|
||||
payments.giveawayInfoResults#e175e66f flags:# winner:flags.0?true refunded:flags.1?true start_date:int gift_code_slug:flags.3?string stars_prize:flags.4?long finish_date:int winners_count:int activated_count:flags.2?int = payments.GiveawayInfo;
|
||||
@ -1868,7 +1872,7 @@ starsTransactionPeerAPI#f9677aad = StarsTransactionPeer;
|
||||
|
||||
starsTopupOption#bd915c0 flags:# extended:flags.1?true stars:long store_product:flags.0?string currency:string amount:long = StarsTopupOption;
|
||||
|
||||
starsTransaction#13659eb0 flags:# refund:flags.3?true pending:flags.4?true failed:flags.6?true gift:flags.10?true reaction:flags.11?true stargift_upgrade:flags.18?true business_transfer:flags.21?true stargift_resale:flags.22?true posts_search:flags.24?true stargift_prepaid_upgrade:flags.25?true stargift_drop_original_details:flags.26?true id:string amount:StarsAmount date:int peer:StarsTransactionPeer title:flags.0?string description:flags.1?string photo:flags.2?WebDocument transaction_date:flags.5?int transaction_url:flags.5?string bot_payload:flags.7?bytes msg_id:flags.8?int extended_media:flags.9?Vector<MessageMedia> subscription_period:flags.12?int giveaway_post_id:flags.13?int stargift:flags.14?StarGift floodskip_number:flags.15?int starref_commission_permille:flags.16?int starref_peer:flags.17?Peer starref_amount:flags.17?StarsAmount paid_messages:flags.19?int premium_gift_months:flags.20?int ads_proceeds_from_date:flags.23?int ads_proceeds_to_date:flags.23?int = StarsTransaction;
|
||||
starsTransaction#13659eb0 flags:# refund:flags.3?true pending:flags.4?true failed:flags.6?true gift:flags.10?true reaction:flags.11?true stargift_upgrade:flags.18?true business_transfer:flags.21?true stargift_resale:flags.22?true posts_search:flags.24?true stargift_prepaid_upgrade:flags.25?true stargift_drop_original_details:flags.26?true phonegroup_message:flags.27?true id:string amount:StarsAmount date:int peer:StarsTransactionPeer title:flags.0?string description:flags.1?string photo:flags.2?WebDocument transaction_date:flags.5?int transaction_url:flags.5?string bot_payload:flags.7?bytes msg_id:flags.8?int extended_media:flags.9?Vector<MessageMedia> subscription_period:flags.12?int giveaway_post_id:flags.13?int stargift:flags.14?StarGift floodskip_number:flags.15?int starref_commission_permille:flags.16?int starref_peer:flags.17?Peer starref_amount:flags.17?StarsAmount paid_messages:flags.19?int premium_gift_months:flags.20?int ads_proceeds_from_date:flags.23?int ads_proceeds_to_date:flags.23?int = StarsTransaction;
|
||||
|
||||
payments.starsStatus#6c9ce8ed flags:# balance:StarsAmount subscriptions:flags.1?Vector<StarsSubscription> subscriptions_next_offset:flags.2?string subscriptions_missing_balance:flags.4?long history:flags.3?Vector<StarsTransaction> next_offset:flags.0?string chats:Vector<Chat> users:Vector<User> = payments.StarsStatus;
|
||||
|
||||
@ -1978,7 +1982,7 @@ requirementToContactPaidMessages#b4f67e93 stars_amount:long = RequirementToConta
|
||||
|
||||
businessBotRights#a0624cf7 flags:# reply:flags.0?true read_messages:flags.1?true delete_sent_messages:flags.2?true delete_received_messages:flags.3?true edit_name:flags.4?true edit_bio:flags.5?true edit_profile_photo:flags.6?true edit_username:flags.7?true view_gifts:flags.8?true sell_gifts:flags.9?true change_gift_settings:flags.10?true transfer_and_upgrade_gifts:flags.11?true transfer_stars:flags.12?true manage_stories:flags.13?true = BusinessBotRights;
|
||||
|
||||
disallowedGiftsSettings#71f276c4 flags:# disallow_unlimited_stargifts:flags.0?true disallow_limited_stargifts:flags.1?true disallow_unique_stargifts:flags.2?true disallow_premium_gifts:flags.3?true = DisallowedGiftsSettings;
|
||||
disallowedGiftsSettings#71f276c4 flags:# disallow_unlimited_stargifts:flags.0?true disallow_limited_stargifts:flags.1?true disallow_unique_stargifts:flags.2?true disallow_premium_gifts:flags.3?true disallow_stargifts_from_channels:flags.4?true = DisallowedGiftsSettings;
|
||||
|
||||
sponsoredPeer#c69708d3 flags:# random_id:bytes peer:Peer sponsor_info:flags.0?string additional_info:flags.1?string = SponsoredPeer;
|
||||
|
||||
@ -2001,7 +2005,7 @@ todoItem#cba9a52f id:int title:TextWithEntities = TodoItem;
|
||||
|
||||
todoList#49b92a26 flags:# others_can_append:flags.0?true others_can_complete:flags.1?true title:TextWithEntities list:Vector<TodoItem> = TodoList;
|
||||
|
||||
todoCompletion#4cc120b7 id:int completed_by:long date:int = TodoCompletion;
|
||||
todoCompletion#221bb5e4 id:int completed_by:Peer date:int = TodoCompletion;
|
||||
|
||||
suggestedPost#e8e37e5 flags:# accepted:flags.1?true rejected:flags.2?true price:flags.3?StarsAmount schedule_date:flags.0?int = SuggestedPost;
|
||||
|
||||
@ -2045,6 +2049,14 @@ inputChatThemeUniqueGift#87e5dfe4 slug:string = InputChatTheme;
|
||||
|
||||
starGiftUpgradePrice#99ea331d date:int upgrade_stars:long = StarGiftUpgradePrice;
|
||||
|
||||
groupCallMessage#1a8afc7e flags:# from_admin:flags.1?true id:int from_id:Peer date:int message:TextWithEntities paid_message_stars:flags.0?long = GroupCallMessage;
|
||||
|
||||
groupCallDonor#ee430c85 flags:# top:flags.0?true my:flags.1?true anonymous:flags.2?true peer_id:flags.3?Peer stars:long = GroupCallDonor;
|
||||
|
||||
phone.groupCallStars#9d1dbd26 total_stars:long top_donors:Vector<GroupCallDonor> chats:Vector<Chat> users:Vector<User> = phone.GroupCallStars;
|
||||
|
||||
recentStory#711d692d flags:# live:flags.0?true max_id:flags.1?int = RecentStory;
|
||||
|
||||
---functions---
|
||||
|
||||
invokeAfterMsg#cb9f372d {X:Type} msg_id:long query:!X = X;
|
||||
@ -2250,9 +2262,9 @@ messages.deleteHistory#b08f922a flags:# just_clear:flags.0?true revoke:flags.1?t
|
||||
messages.deleteMessages#e58e95d2 flags:# revoke:flags.0?true id:Vector<int> = messages.AffectedMessages;
|
||||
messages.receivedMessages#5a954c0 max_id:int = Vector<ReceivedNotifyMessage>;
|
||||
messages.setTyping#58943ee2 flags:# peer:InputPeer top_msg_id:flags.0?int action:SendMessageAction = Bool;
|
||||
messages.sendMessage#fe05dc9a flags:# no_webpage:flags.1?true silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true allow_paid_floodskip:flags.19?true peer:InputPeer reply_to:flags.0?InputReplyTo message:string random_id:long reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut effect:flags.18?long allow_paid_stars:flags.21?long suggested_post:flags.22?SuggestedPost = Updates;
|
||||
messages.sendMedia#ac55d9c1 flags:# silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true allow_paid_floodskip:flags.19?true peer:InputPeer reply_to:flags.0?InputReplyTo media:InputMedia message:string random_id:long reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut effect:flags.18?long allow_paid_stars:flags.21?long suggested_post:flags.22?SuggestedPost = Updates;
|
||||
messages.forwardMessages#978928ca flags:# silent:flags.5?true background:flags.6?true with_my_score:flags.8?true drop_author:flags.11?true drop_media_captions:flags.12?true noforwards:flags.14?true allow_paid_floodskip:flags.19?true from_peer:InputPeer id:Vector<int> random_id:Vector<long> to_peer:InputPeer top_msg_id:flags.9?int reply_to:flags.22?InputReplyTo schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut video_timestamp:flags.20?int allow_paid_stars:flags.21?long suggested_post:flags.23?SuggestedPost = Updates;
|
||||
messages.sendMessage#545cd15a flags:# no_webpage:flags.1?true silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true allow_paid_floodskip:flags.19?true peer:InputPeer reply_to:flags.0?InputReplyTo message:string random_id:long reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.10?int schedule_repeat_period:flags.24?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut effect:flags.18?long allow_paid_stars:flags.21?long suggested_post:flags.22?SuggestedPost = Updates;
|
||||
messages.sendMedia#330e77f flags:# silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true allow_paid_floodskip:flags.19?true peer:InputPeer reply_to:flags.0?InputReplyTo media:InputMedia message:string random_id:long reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.10?int schedule_repeat_period:flags.24?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut effect:flags.18?long allow_paid_stars:flags.21?long suggested_post:flags.22?SuggestedPost = Updates;
|
||||
messages.forwardMessages#41d41ade flags:# silent:flags.5?true background:flags.6?true with_my_score:flags.8?true drop_author:flags.11?true drop_media_captions:flags.12?true noforwards:flags.14?true allow_paid_floodskip:flags.19?true from_peer:InputPeer id:Vector<int> random_id:Vector<long> to_peer:InputPeer top_msg_id:flags.9?int reply_to:flags.22?InputReplyTo schedule_date:flags.10?int schedule_repeat_period:flags.24?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut video_timestamp:flags.20?int allow_paid_stars:flags.21?long suggested_post:flags.23?SuggestedPost = Updates;
|
||||
messages.reportSpam#cf1592db peer:InputPeer = Bool;
|
||||
messages.getPeerSettings#efd9a6a2 peer:InputPeer = messages.PeerSettings;
|
||||
messages.report#fc78af9b peer:InputPeer id:Vector<int> option:bytes message:string = ReportResult;
|
||||
@ -2297,7 +2309,7 @@ messages.getInlineBotResults#514e999d flags:# bot:InputUser peer:InputPeer geo_p
|
||||
messages.setInlineBotResults#bb12a419 flags:# gallery:flags.0?true private:flags.1?true query_id:long results:Vector<InputBotInlineResult> cache_time:int next_offset:flags.2?string switch_pm:flags.3?InlineBotSwitchPM switch_webview:flags.4?InlineBotWebView = Bool;
|
||||
messages.sendInlineBotResult#c0cf7646 flags:# silent:flags.5?true background:flags.6?true clear_draft:flags.7?true hide_via:flags.11?true peer:InputPeer reply_to:flags.0?InputReplyTo random_id:long query_id:long id:string schedule_date:flags.10?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut allow_paid_stars:flags.21?long = Updates;
|
||||
messages.getMessageEditData#fda68d36 peer:InputPeer id:int = messages.MessageEditData;
|
||||
messages.editMessage#dfd14005 flags:# no_webpage:flags.1?true invert_media:flags.16?true peer:InputPeer id:int message:flags.11?string media:flags.14?InputMedia reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.15?int quick_reply_shortcut_id:flags.17?int = Updates;
|
||||
messages.editMessage#51e842e1 flags:# no_webpage:flags.1?true invert_media:flags.16?true peer:InputPeer id:int message:flags.11?string media:flags.14?InputMedia reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.15?int schedule_repeat_period:flags.18?int quick_reply_shortcut_id:flags.17?int = Updates;
|
||||
messages.editInlineBotMessage#83557dba flags:# no_webpage:flags.1?true invert_media:flags.16?true id:InputBotInlineMessageID message:flags.11?string media:flags.14?InputMedia reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> = Bool;
|
||||
messages.getBotCallbackAnswer#9342ca07 flags:# game:flags.1?true peer:InputPeer msg_id:int data:flags.0?bytes password:flags.2?InputCheckPasswordSRP = messages.BotCallbackAnswer;
|
||||
messages.setBotCallbackAnswer#d58f130a flags:# alert:flags.1?true query_id:long message:flags.0?string url:flags.2?string cache_time:int = Bool;
|
||||
@ -2559,7 +2571,7 @@ channels.editLocation#58e63f6d channel:InputChannel geo_point:InputGeoPoint addr
|
||||
channels.toggleSlowMode#edd49ef0 channel:InputChannel seconds:int = Updates;
|
||||
channels.getInactiveChannels#11e831ee = messages.InactiveChats;
|
||||
channels.convertToGigagroup#b290c69 channel:InputChannel = Updates;
|
||||
channels.getSendAs#e785a43f flags:# for_paid_reactions:flags.0?true peer:InputPeer = channels.SendAsPeers;
|
||||
channels.getSendAs#e785a43f flags:# for_paid_reactions:flags.0?true for_live_stories:flags.1?true peer:InputPeer = channels.SendAsPeers;
|
||||
channels.deleteParticipantHistory#367544db channel:InputChannel participant:InputPeer = messages.AffectedHistory;
|
||||
channels.toggleJoinToSend#e4cb9580 channel:InputChannel enabled:Bool = Updates;
|
||||
channels.toggleJoinRequest#4c2985b6 channel:InputChannel enabled:Bool = Updates;
|
||||
@ -2699,7 +2711,7 @@ phone.joinGroupCall#8fb53057 flags:# muted:flags.0?true video_stopped:flags.2?tr
|
||||
phone.leaveGroupCall#500377f9 call:InputGroupCall source:int = Updates;
|
||||
phone.inviteToGroupCall#7b393160 call:InputGroupCall users:Vector<InputUser> = Updates;
|
||||
phone.discardGroupCall#7a777135 call:InputGroupCall = Updates;
|
||||
phone.toggleGroupCallSettings#e9723804 flags:# reset_invite_hash:flags.1?true call:InputGroupCall join_muted:flags.0?Bool messages_enabled:flags.2?Bool = Updates;
|
||||
phone.toggleGroupCallSettings#974392f2 flags:# reset_invite_hash:flags.1?true call:InputGroupCall join_muted:flags.0?Bool messages_enabled:flags.2?Bool send_paid_messages_stars:flags.3?long = Updates;
|
||||
phone.getGroupCall#41845db call:InputGroupCall limit:int = phone.GroupCall;
|
||||
phone.getGroupParticipants#c558d8ab call:InputGroupCall ids:Vector<InputPeer> sources:Vector<int> offset:string limit:int = phone.GroupParticipants;
|
||||
phone.checkGroupCall#b59cf977 call:InputGroupCall sources:Vector<int> = Vector<int>;
|
||||
@ -2714,7 +2726,7 @@ phone.saveDefaultGroupCallJoinAs#575e1f8c peer:InputPeer join_as:InputPeer = Boo
|
||||
phone.joinGroupCallPresentation#cbea6bc4 call:InputGroupCall params:DataJSON = Updates;
|
||||
phone.leaveGroupCallPresentation#1c50d144 call:InputGroupCall = Updates;
|
||||
phone.getGroupCallStreamChannels#1ab21940 call:InputGroupCall = phone.GroupCallStreamChannels;
|
||||
phone.getGroupCallStreamRtmpUrl#deb3abbf peer:InputPeer revoke:Bool = phone.GroupCallStreamRtmpUrl;
|
||||
phone.getGroupCallStreamRtmpUrl#5af4c73a flags:# live_story:flags.0?true peer:InputPeer revoke:Bool = phone.GroupCallStreamRtmpUrl;
|
||||
phone.saveCallLog#41248786 peer:InputPhoneCall file:InputFile = Bool;
|
||||
phone.createConferenceCall#7d0444bb flags:# muted:flags.0?true video_stopped:flags.2?true join:flags.3?true random_id:int public_key:flags.3?int256 block:flags.3?bytes params:flags.3?DataJSON = Updates;
|
||||
phone.deleteConferenceCallParticipants#8ca60525 flags:# only_left:flags.0?true kick:flags.1?true call:InputGroupCall ids:Vector<long> block:bytes = Updates;
|
||||
@ -2722,8 +2734,12 @@ phone.sendConferenceCallBroadcast#c6701900 call:InputGroupCall block:bytes = Upd
|
||||
phone.inviteConferenceCallParticipant#bcf22685 flags:# video:flags.0?true call:InputGroupCall user_id:InputUser = Updates;
|
||||
phone.declineConferenceCallInvite#3c479971 msg_id:int = Updates;
|
||||
phone.getGroupCallChainBlocks#ee9f88a6 call:InputGroupCall sub_chain_id:int offset:int limit:int = Updates;
|
||||
phone.sendGroupCallMessage#87893014 call:InputGroupCall random_id:long message:TextWithEntities = Bool;
|
||||
phone.sendGroupCallMessage#b1d11410 flags:# call:InputGroupCall random_id:long message:TextWithEntities allow_paid_stars:flags.0?long send_as:flags.1?InputPeer = Updates;
|
||||
phone.sendGroupCallEncryptedMessage#e5afa56d call:InputGroupCall encrypted_message:bytes = Bool;
|
||||
phone.deleteGroupCallMessages#f64f54f7 flags:# report_spam:flags.0?true call:InputGroupCall messages:Vector<int> = Updates;
|
||||
phone.deleteGroupCallParticipantMessages#1dbfeca0 flags:# report_spam:flags.0?true call:InputGroupCall participant:InputPeer = Updates;
|
||||
phone.getGroupCallStars#6f636302 call:InputGroupCall = phone.GroupCallStars;
|
||||
phone.saveDefaultSendAs#4167add1 call:InputGroupCall send_as:InputPeer = Bool;
|
||||
|
||||
langpack.getLangPack#f2f2330a lang_pack:string lang_code:string = LangPackDifference;
|
||||
langpack.getStrings#efea3803 lang_pack:string lang_code:string keys:Vector<string> = Vector<LangPackString>;
|
||||
@ -2773,7 +2789,7 @@ stories.activateStealthMode#57bbd166 flags:# past:flags.0?true future:flags.1?tr
|
||||
stories.sendReaction#7fd736b2 flags:# add_to_recent:flags.0?true peer:InputPeer story_id:int reaction:Reaction = Updates;
|
||||
stories.getPeerStories#2c4ada50 peer:InputPeer = stories.PeerStories;
|
||||
stories.getAllReadPeerStories#9b5ae7f9 = Updates;
|
||||
stories.getPeerMaxIDs#535983c3 id:Vector<InputPeer> = Vector<int>;
|
||||
stories.getPeerMaxIDs#78499170 id:Vector<InputPeer> = Vector<RecentStory>;
|
||||
stories.getChatsToSend#a56a8b60 = messages.Chats;
|
||||
stories.togglePeerStoriesHidden#bd0415c4 peer:InputPeer hidden:Bool = Bool;
|
||||
stories.getStoryReactionsList#b9b2881f flags:# forwards_first:flags.2?true peer:InputPeer id:int reaction:flags.0?Reaction offset:flags.1?string limit:int = stories.StoryReactionsList;
|
||||
@ -2785,6 +2801,7 @@ stories.reorderAlbums#8535fbd9 peer:InputPeer order:Vector<int> = Bool;
|
||||
stories.deleteAlbum#8d3456d0 peer:InputPeer album_id:int = Bool;
|
||||
stories.getAlbums#25b3eac7 peer:InputPeer hash:long = stories.Albums;
|
||||
stories.getAlbumStories#ac806d61 peer:InputPeer album_id:int offset:int limit:int = stories.Stories;
|
||||
stories.startLive#d069ccde flags:# pinned:flags.2?true noforwards:flags.4?true rtmp_stream:flags.5?true peer:InputPeer caption:flags.0?string entities:flags.1?Vector<MessageEntity> privacy_rules:Vector<InputPrivacyRule> random_id:long messages_enabled:flags.6?Bool send_paid_messages_stars:flags.7?long = Updates;
|
||||
|
||||
premium.getBoostsList#60f67660 flags:# gifts:flags.0?true peer:InputPeer offset:string limit:int = premium.BoostsList;
|
||||
premium.getMyBoosts#be77b4a = premium.MyBoosts;
|
||||
|
||||
23
src/types/language.d.ts
vendored
23
src/types/language.d.ts
vendored
@ -2645,6 +2645,21 @@ export interface LangPairWithVariables<V = LangVariable> {
|
||||
'from': V;
|
||||
'amount': V;
|
||||
};
|
||||
'ActionGiveawayResultPremiumDuration': {
|
||||
'channel': V;
|
||||
'duration': V;
|
||||
};
|
||||
'ActionGiftCodeSubscriptionDuration': {
|
||||
'peer': V;
|
||||
'duration': V;
|
||||
};
|
||||
'ActionGiftCodeSubscriptionDurationYou': {
|
||||
'peer': V;
|
||||
'duration': V;
|
||||
};
|
||||
'ActionGiftPremiumDuration': {
|
||||
'duration': V;
|
||||
};
|
||||
'TonAmount': {
|
||||
'amount': V;
|
||||
};
|
||||
@ -2979,6 +2994,14 @@ export interface LangPairWithVariables<V = LangVariable> {
|
||||
'ButtonSensitiveAlways': {
|
||||
'years': V;
|
||||
};
|
||||
'DialogTitlePremiumGiftSentTo': {
|
||||
'user': V;
|
||||
'amount': V;
|
||||
};
|
||||
'DialogTitlePremiumGiftReceivedFrom': {
|
||||
'user': V;
|
||||
'amount': V;
|
||||
};
|
||||
'DescriptionComposerGiftMinimumCurrencyPrice': {
|
||||
'amount': V;
|
||||
};
|
||||
|
||||
@ -111,6 +111,24 @@ export function formatCountdown(
|
||||
}
|
||||
}
|
||||
|
||||
export function formatCountdownDays(
|
||||
lang: LangFn,
|
||||
days: number,
|
||||
) {
|
||||
if (days < 7) {
|
||||
return lang('Days', { count: days }, { pluralValue: days });
|
||||
} else if (days < 30) {
|
||||
const count = Math.floor(days / 7);
|
||||
return lang('Weeks', { count }, { pluralValue: count });
|
||||
} else if (days < 360) {
|
||||
const count = Math.floor(days / 30);
|
||||
return lang('Months', { count }, { pluralValue: count });
|
||||
} else {
|
||||
const count = Math.floor(days / 360);
|
||||
return lang('Years', { count }, { pluralValue: count });
|
||||
}
|
||||
}
|
||||
|
||||
export function formatCountdownShort(lang: OldLangFn, msLeft: number): string {
|
||||
if (msLeft < 60 * 1000) {
|
||||
return Math.ceil(msLeft / 1000).toString();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user