@signalapp/libsignal-client 0.61.0 → 0.62.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Native.d.ts CHANGED
@@ -126,8 +126,6 @@ export abstract class ChatListener {
126
126
  ): void;
127
127
  }
128
128
 
129
- export abstract class MakeChatListener extends ChatListener {}
130
-
131
129
  type Wrapper<T> = Readonly<{
132
130
  _nativeHandle: T;
133
131
  }>;
@@ -195,8 +193,8 @@ export function Cds2ClientState_New(mrenclave: Buffer, attestationMsg: Buffer, c
195
193
  export function CdsiLookup_complete(asyncRuntime: Wrapper<TokioAsyncContext>, lookup: Wrapper<CdsiLookup>): Promise<LookupResponse>;
196
194
  export function CdsiLookup_new(asyncRuntime: Wrapper<TokioAsyncContext>, connectionManager: Wrapper<ConnectionManager>, username: string, password: string, request: Wrapper<LookupRequest>): Promise<CdsiLookup>;
197
195
  export function CdsiLookup_token(lookup: Wrapper<CdsiLookup>): Buffer;
198
- export function ChatService_SetListenerAuth(runtime: Wrapper<TokioAsyncContext>, chat: Wrapper<AuthChat>, makeListener: MakeChatListener | null): void;
199
- export function ChatService_SetListenerUnauth(runtime: Wrapper<TokioAsyncContext>, chat: Wrapper<UnauthChat>, makeListener: MakeChatListener | null): void;
196
+ export function ChatService_SetListenerAuth(runtime: Wrapper<TokioAsyncContext>, chat: Wrapper<AuthChat>, listener: ChatListener | null): void;
197
+ export function ChatService_SetListenerUnauth(runtime: Wrapper<TokioAsyncContext>, chat: Wrapper<UnauthChat>, listener: ChatListener | null): void;
200
198
  export function ChatService_auth_send(asyncRuntime: Wrapper<TokioAsyncContext>, chat: Wrapper<AuthChat>, httpRequest: Wrapper<HttpRequest>, timeoutMillis: number): Promise<ChatResponse>;
201
199
  export function ChatService_auth_send_and_debug(asyncRuntime: Wrapper<TokioAsyncContext>, chat: Wrapper<AuthChat>, httpRequest: Wrapper<HttpRequest>, timeoutMillis: number): Promise<ResponseAndDebugInfo>;
202
200
  export function ChatService_connect_auth(asyncRuntime: Wrapper<TokioAsyncContext>, chat: Wrapper<AuthChat>): Promise<ChatServiceDebugInfo>;
@@ -5573,6 +5573,38 @@ DEALINGS IN THE SOFTWARE.
5573
5573
 
5574
5574
  ```
5575
5575
 
5576
+ ## sha2-asm 0.6.4
5577
+
5578
+ ```
5579
+ Copyright (c) 2020 RustCrypto Developers
5580
+ Copyright (c) 2017 Project Nayuki, Artyom Pavlov
5581
+
5582
+ Permission is hereby granted, free of charge, to any
5583
+ person obtaining a copy of this software and associated
5584
+ documentation files (the "Software"), to deal in the
5585
+ Software without restriction, including without
5586
+ limitation the rights to use, copy, modify, merge,
5587
+ publish, distribute, sublicense, and/or sell copies of
5588
+ the Software, and to permit persons to whom the Software
5589
+ is furnished to do so, subject to the following
5590
+ conditions:
5591
+
5592
+ The above copyright notice and this permission notice
5593
+ shall be included in all copies or substantial portions
5594
+ of the Software.
5595
+
5596
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
5597
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
5598
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
5599
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
5600
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
5601
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
5602
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
5603
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
5604
+ DEALINGS IN THE SOFTWARE.
5605
+
5606
+ ```
5607
+
5576
5608
  ## cpufeatures 0.2.14
5577
5609
 
5578
5610
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signalapp/libsignal-client",
3
- "version": "0.61.0",
3
+ "version": "0.62.0",
4
4
  "license": "AGPL-3.0-only",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",