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,
|
'gv2-3': true,
|
||||||
'gv1-migration': true,
|
'gv1-migration': true,
|
||||||
senderKey: true,
|
senderKey: true,
|
||||||
|
changeNumber: true,
|
||||||
});
|
});
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
window.log.error(
|
window.log.error(
|
||||||
|
|
|
@ -767,12 +767,14 @@ export type CapabilitiesType = {
|
||||||
gv2: boolean;
|
gv2: boolean;
|
||||||
'gv1-migration': boolean;
|
'gv1-migration': boolean;
|
||||||
senderKey: boolean;
|
senderKey: boolean;
|
||||||
|
changeNumber: boolean;
|
||||||
};
|
};
|
||||||
export type CapabilitiesUploadType = {
|
export type CapabilitiesUploadType = {
|
||||||
announcementGroup: true;
|
announcementGroup: true;
|
||||||
'gv2-3': true;
|
'gv2-3': true;
|
||||||
'gv1-migration': true;
|
'gv1-migration': true;
|
||||||
senderKey: true;
|
senderKey: true;
|
||||||
|
changeNumber: true;
|
||||||
};
|
};
|
||||||
|
|
||||||
type StickerPackManifestType = any;
|
type StickerPackManifestType = any;
|
||||||
|
@ -1506,6 +1508,7 @@ export function initialize({
|
||||||
'gv2-3': true,
|
'gv2-3': true,
|
||||||
'gv1-migration': true,
|
'gv1-migration': true,
|
||||||
senderKey: true,
|
senderKey: true,
|
||||||
|
changeNumber: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
const { accessKey, uuid } = options;
|
const { accessKey, uuid } = options;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue