@voidly/agent-sdk 3.3.2 → 3.4.1
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/LICENSE +33 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +4 -7345
- package/dist/index.mjs +5 -7339
- package/package.json +2 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Proprietary License — All Rights Reserved
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024-2026 Ai Analytics LLC. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software and associated documentation files (the "Software") are the
|
|
6
|
+
proprietary and confidential property of Ai Analytics LLC.
|
|
7
|
+
|
|
8
|
+
PERMITTED USE:
|
|
9
|
+
You may use the Software solely to build applications that communicate via
|
|
10
|
+
the Voidly relay network (api.voidly.ai). This license does not grant any
|
|
11
|
+
rights to use the Software for any other purpose.
|
|
12
|
+
|
|
13
|
+
RESTRICTIONS:
|
|
14
|
+
You may NOT, without prior written permission from Ai Analytics LLC:
|
|
15
|
+
|
|
16
|
+
1. Copy, reproduce, or duplicate the Software or any portion thereof
|
|
17
|
+
2. Modify, adapt, translate, or create derivative works based on the Software
|
|
18
|
+
3. Reverse engineer, disassemble, decompile, or otherwise attempt to derive
|
|
19
|
+
the source code of the Software
|
|
20
|
+
4. Distribute, sublicense, lease, rent, loan, or otherwise transfer the
|
|
21
|
+
Software to any third party
|
|
22
|
+
5. Remove or alter any proprietary notices, labels, or marks on the Software
|
|
23
|
+
6. Use the Software to build a competing product or service
|
|
24
|
+
|
|
25
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
26
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
27
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
28
|
+
AI ANALYTICS LLC BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
29
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
|
|
30
|
+
OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
31
|
+
SOFTWARE.
|
|
32
|
+
|
|
33
|
+
For licensing inquiries: legal@voidly.ai
|
package/dist/index.d.ts
CHANGED
|
@@ -239,12 +239,15 @@ declare class VoidlyAgent {
|
|
|
239
239
|
dhSendPublicKey?: string;
|
|
240
240
|
dhRecvPubKey?: string;
|
|
241
241
|
prevSendStep?: number;
|
|
242
|
+
skippedKeys?: Record<string, string>;
|
|
243
|
+
dhSkippedKeys?: Record<string, string>;
|
|
242
244
|
}>;
|
|
243
245
|
mlkemPublicKey?: string;
|
|
244
246
|
mlkemSecretKey?: string;
|
|
245
247
|
signedPrekeySecret?: string;
|
|
246
248
|
signedPrekeyPublic?: string;
|
|
247
249
|
signedPrekeyId?: number;
|
|
250
|
+
peerDecryptFails?: Record<string, number>;
|
|
248
251
|
}, config?: VoidlyAgentConfig): VoidlyAgent;
|
|
249
252
|
/**
|
|
250
253
|
* Export credentials for persistence.
|
|
@@ -267,12 +270,15 @@ declare class VoidlyAgent {
|
|
|
267
270
|
dhSendPublicKey?: string;
|
|
268
271
|
dhRecvPubKey?: string;
|
|
269
272
|
prevSendStep?: number;
|
|
273
|
+
skippedKeys?: Record<string, string>;
|
|
274
|
+
dhSkippedKeys?: Record<string, string>;
|
|
270
275
|
}>;
|
|
271
276
|
mlkemPublicKey?: string;
|
|
272
277
|
mlkemSecretKey?: string;
|
|
273
278
|
signedPrekeySecret?: string;
|
|
274
279
|
signedPrekeyPublic?: string;
|
|
275
280
|
signedPrekeyId?: number;
|
|
281
|
+
peerDecryptFails?: Record<string, number>;
|
|
276
282
|
};
|
|
277
283
|
/** Derive persistence encryption key from signing secret */
|
|
278
284
|
private _derivePersistKey;
|