Add changeNumber capability
This commit is contained in:
parent
4f1188e213
commit
cd809a9922
2 changed files with 4 additions and 0 deletions
|
@ -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(
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue