Add changeNumber capability

This commit is contained in:
Fedor Indutny 2021-09-09 13:53:58 -07:00 committed by GitHub
parent 4f1188e213
commit cd809a9922
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -2171,6 +2171,7 @@ export async function startApp(): Promise<void> {
'gv2-3': true,
'gv1-migration': true,
senderKey: true,
changeNumber: true,
});
} catch (error) {
window.log.error(

View file

@ -767,12 +767,14 @@ export type CapabilitiesType = {
gv2: boolean;
'gv1-migration': boolean;
senderKey: boolean;
changeNumber: boolean;
};
export type CapabilitiesUploadType = {
announcementGroup: true;
'gv2-3': true;
'gv1-migration': true;
senderKey: true;
changeNumber: true;
};
type StickerPackManifestType = any;
@ -1506,6 +1508,7 @@ export function initialize({
'gv2-3': true,
'gv1-migration': true,
senderKey: true,
changeNumber: true,
};
const { accessKey, uuid } = options;