@voidly/agent-sdk 3.4.0 → 3.4.2

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/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;