Drop support for signaling key
This commit is contained in:
parent
31989a7706
commit
886e8966ff
9 changed files with 5 additions and 85 deletions
|
@ -831,7 +831,6 @@ const URL_CALLS = {
|
|||
multiRecipient: 'v1/messages/multi_recipient',
|
||||
profile: 'v1/profile',
|
||||
registerCapabilities: 'v1/devices/capabilities',
|
||||
removeSignalingKey: 'v1/accounts/signaling_key',
|
||||
reportMessage: 'v1/messages/report',
|
||||
signed: 'v2/keys/signed',
|
||||
storageManifest: 'v1/storage/manifest',
|
||||
|
@ -1051,7 +1050,6 @@ export type WebAPIType = {
|
|||
) => Promise<string>;
|
||||
registerKeys: (genKeys: KeysType) => Promise<void>;
|
||||
registerSupportForUnauthenticatedDelivery: () => Promise<any>;
|
||||
removeSignalingKey: () => Promise<void>;
|
||||
reportMessage: (senderE164: string, serverGuid: string) => Promise<void>;
|
||||
requestVerificationSMS: (number: string) => Promise<any>;
|
||||
requestVerificationVoice: (number: string) => Promise<any>;
|
||||
|
@ -1244,7 +1242,6 @@ export function initialize({
|
|||
registerCapabilities,
|
||||
registerKeys,
|
||||
registerSupportForUnauthenticatedDelivery,
|
||||
removeSignalingKey,
|
||||
reportMessage,
|
||||
requestVerificationSMS,
|
||||
requestVerificationVoice,
|
||||
|
@ -1617,13 +1614,6 @@ export function initialize({
|
|||
});
|
||||
}
|
||||
|
||||
async function removeSignalingKey() {
|
||||
return _ajax({
|
||||
call: 'removeSignalingKey',
|
||||
httpType: 'DELETE',
|
||||
});
|
||||
}
|
||||
|
||||
async function getDevices() {
|
||||
return _ajax({
|
||||
call: 'devices',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue