@breeztech/breez-sdk-spark-react-native 0.15.0 → 0.16.1-dev1

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.
Files changed (29) hide show
  1. package/cpp/generated/breez_sdk_spark.cpp +4947 -2629
  2. package/cpp/generated/breez_sdk_spark.hpp +257 -110
  3. package/lib/commonjs/generated/breez_sdk_spark-ffi.js.map +1 -1
  4. package/lib/commonjs/generated/breez_sdk_spark.js +1304 -580
  5. package/lib/commonjs/generated/breez_sdk_spark.js.map +1 -1
  6. package/lib/commonjs/passkey-prf-provider.js +300 -0
  7. package/lib/commonjs/passkey-prf-provider.js.map +1 -0
  8. package/lib/module/generated/breez_sdk_spark-ffi.js.map +1 -1
  9. package/lib/module/generated/breez_sdk_spark.js +1304 -580
  10. package/lib/module/generated/breez_sdk_spark.js.map +1 -1
  11. package/lib/module/passkey-prf-provider.js +293 -0
  12. package/lib/module/passkey-prf-provider.js.map +1 -0
  13. package/lib/typescript/commonjs/src/generated/breez_sdk_spark-ffi.d.ts +199 -140
  14. package/lib/typescript/commonjs/src/generated/breez_sdk_spark-ffi.d.ts.map +1 -1
  15. package/lib/typescript/commonjs/src/generated/breez_sdk_spark.d.ts +6149 -3695
  16. package/lib/typescript/commonjs/src/generated/breez_sdk_spark.d.ts.map +1 -1
  17. package/lib/typescript/commonjs/src/passkey-prf-provider.d.ts +135 -0
  18. package/lib/typescript/commonjs/src/passkey-prf-provider.d.ts.map +1 -0
  19. package/lib/typescript/module/src/generated/breez_sdk_spark-ffi.d.ts +199 -140
  20. package/lib/typescript/module/src/generated/breez_sdk_spark-ffi.d.ts.map +1 -1
  21. package/lib/typescript/module/src/generated/breez_sdk_spark.d.ts +6149 -3695
  22. package/lib/typescript/module/src/generated/breez_sdk_spark.d.ts.map +1 -1
  23. package/lib/typescript/module/src/passkey-prf-provider.d.ts +135 -0
  24. package/lib/typescript/module/src/passkey-prf-provider.d.ts.map +1 -0
  25. package/package.json +17 -5
  26. package/scripts/post-ubrn.js +227 -0
  27. package/src/generated/breez_sdk_spark-ffi.ts +366 -198
  28. package/src/generated/breez_sdk_spark.ts +12343 -7056
  29. package/src/passkey-prf-provider.ts +372 -0
@@ -69,12 +69,13 @@ interface NativeModuleInterface {
69
69
  ptr: bigint,
70
70
  listener: bigint
71
71
  ): bigint;
72
- ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_buy_bitcoin(
72
+ ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_authorize_lightning_address_transfer(
73
73
  ptr: bigint,
74
74
  request: Uint8Array
75
75
  ): bigint;
76
- ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_cancel_leaf_optimization(
77
- ptr: bigint
76
+ ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_buy_bitcoin(
77
+ ptr: bigint,
78
+ request: Uint8Array
78
79
  ): bigint;
79
80
  ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_check_lightning_address_available(
80
81
  ptr: bigint,
@@ -92,6 +93,10 @@ interface NativeModuleInterface {
92
93
  ptr: bigint,
93
94
  request: Uint8Array
94
95
  ): bigint;
96
+ ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_claim_lightning_address_transfer(
97
+ ptr: bigint,
98
+ request: Uint8Array
99
+ ): bigint;
95
100
  ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_delete_contact(
96
101
  ptr: bigint,
97
102
  id: Uint8Array
@@ -110,10 +115,6 @@ interface NativeModuleInterface {
110
115
  ptr: bigint,
111
116
  request: Uint8Array
112
117
  ): bigint;
113
- ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_get_leaf_optimization_progress(
114
- ptr: bigint,
115
- uniffi_out_err: UniffiRustCallStatus
116
- ): Uint8Array;
117
118
  ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_get_lightning_address(
118
119
  ptr: bigint
119
120
  ): bigint;
@@ -165,6 +166,10 @@ interface NativeModuleInterface {
165
166
  ptr: bigint,
166
167
  request: Uint8Array
167
168
  ): bigint;
169
+ ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_optimize_leaves(
170
+ ptr: bigint,
171
+ request: Uint8Array
172
+ ): bigint;
168
173
  ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_parse(
169
174
  ptr: bigint,
170
175
  input: Uint8Array
@@ -211,9 +216,6 @@ interface NativeModuleInterface {
211
216
  ptr: bigint,
212
217
  request: Uint8Array
213
218
  ): bigint;
214
- ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_start_leaf_optimization(
215
- ptr: bigint
216
- ): bigint;
217
219
  ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_sync_wallet(
218
220
  ptr: bigint,
219
221
  request: Uint8Array
@@ -230,102 +232,118 @@ interface NativeModuleInterface {
230
232
  ptr: bigint,
231
233
  request: Uint8Array
232
234
  ): bigint;
233
- ubrn_uniffi_breez_sdk_spark_fn_clone_externalsigner(
235
+ ubrn_uniffi_breez_sdk_spark_fn_clone_externalbreezsigner(
234
236
  ptr: bigint,
235
237
  uniffi_out_err: UniffiRustCallStatus
236
238
  ): bigint;
237
- ubrn_uniffi_breez_sdk_spark_fn_free_externalsigner(
239
+ ubrn_uniffi_breez_sdk_spark_fn_free_externalbreezsigner(
238
240
  ptr: bigint,
239
241
  uniffi_out_err: UniffiRustCallStatus
240
242
  ): void;
241
- ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_externalsigner(
242
- vtable: UniffiVTableCallbackInterfaceExternalSigner
243
+ ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_externalbreezsigner(
244
+ vtable: UniffiVTableCallbackInterfaceExternalBreezSigner
243
245
  ): void;
244
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_identity_public_key(
245
- ptr: bigint,
246
- uniffi_out_err: UniffiRustCallStatus
247
- ): Uint8Array;
248
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_derive_public_key(
246
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalbreezsigner_derive_public_key(
249
247
  ptr: bigint,
250
248
  path: Uint8Array
251
249
  ): bigint;
252
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_sign_ecdsa(
250
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalbreezsigner_sign_ecdsa(
253
251
  ptr: bigint,
254
252
  message: Uint8Array,
255
253
  path: Uint8Array
256
254
  ): bigint;
257
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_sign_ecdsa_recoverable(
255
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalbreezsigner_sign_ecdsa_recoverable(
258
256
  ptr: bigint,
259
257
  message: Uint8Array,
260
258
  path: Uint8Array
261
259
  ): bigint;
262
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_encrypt_ecies(
260
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalbreezsigner_encrypt_ecies(
263
261
  ptr: bigint,
264
262
  message: Uint8Array,
265
263
  path: Uint8Array
266
264
  ): bigint;
267
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_decrypt_ecies(
265
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalbreezsigner_decrypt_ecies(
268
266
  ptr: bigint,
269
267
  message: Uint8Array,
270
268
  path: Uint8Array
271
269
  ): bigint;
272
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_sign_hash_schnorr(
270
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalbreezsigner_sign_hash_schnorr(
273
271
  ptr: bigint,
274
272
  hash: Uint8Array,
275
273
  path: Uint8Array
276
274
  ): bigint;
277
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_hmac_sha256(
275
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalbreezsigner_hmac_sha256(
278
276
  ptr: bigint,
279
277
  message: Uint8Array,
280
278
  path: Uint8Array
281
279
  ): bigint;
282
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_generate_random_signing_commitment(
283
- ptr: bigint
284
- ): bigint;
285
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_get_public_key_for_node(
280
+ ubrn_uniffi_breez_sdk_spark_fn_clone_externalsparksigner(
286
281
  ptr: bigint,
287
- id: Uint8Array
282
+ uniffi_out_err: UniffiRustCallStatus
288
283
  ): bigint;
289
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_generate_random_secret(
284
+ ubrn_uniffi_breez_sdk_spark_fn_free_externalsparksigner(
285
+ ptr: bigint,
286
+ uniffi_out_err: UniffiRustCallStatus
287
+ ): void;
288
+ ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_externalsparksigner(
289
+ vtable: UniffiVTableCallbackInterfaceExternalSparkSigner
290
+ ): void;
291
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsparksigner_get_identity_public_key(
290
292
  ptr: bigint
291
293
  ): bigint;
292
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_static_deposit_secret_encrypted(
294
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsparksigner_get_public_key_for_leaf(
293
295
  ptr: bigint,
294
- index: number
296
+ leafId: Uint8Array
295
297
  ): bigint;
296
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_static_deposit_secret(
298
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsparksigner_get_static_deposit_public_key(
297
299
  ptr: bigint,
298
300
  index: number
299
301
  ): bigint;
300
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_static_deposit_signing_key(
302
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsparksigner_sign_authentication_challenge(
301
303
  ptr: bigint,
302
- index: number
304
+ challenge: Uint8Array
303
305
  ): bigint;
304
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_subtract_secrets(
306
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsparksigner_sign_message(
305
307
  ptr: bigint,
306
- signingKey: Uint8Array,
307
- newSigningKey: Uint8Array
308
+ message: Uint8Array
308
309
  ): bigint;
309
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_split_secret_with_proofs(
310
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsparksigner_sign_frost(
310
311
  ptr: bigint,
311
- secret: Uint8Array,
312
- threshold: number,
313
- numShares: number
312
+ jobs: Uint8Array
314
313
  ): bigint;
315
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_encrypt_secret_for_receiver(
314
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsparksigner_prepare_transfer(
316
315
  ptr: bigint,
317
- encryptedSecret: Uint8Array,
318
- receiverPublicKey: Uint8Array
316
+ request: Uint8Array
317
+ ): bigint;
318
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsparksigner_prepare_claim(
319
+ ptr: bigint,
320
+ request: Uint8Array
319
321
  ): bigint;
320
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_public_key_from_secret(
322
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsparksigner_prepare_lightning_receive(
321
323
  ptr: bigint,
322
- secret: Uint8Array
324
+ request: Uint8Array
325
+ ): bigint;
326
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsparksigner_prepare_static_deposit(
327
+ ptr: bigint,
328
+ request: Uint8Array
329
+ ): bigint;
330
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsparksigner_start_static_deposit_refund(
331
+ ptr: bigint,
332
+ request: Uint8Array
333
+ ): bigint;
334
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsparksigner_sign_static_deposit_refund(
335
+ ptr: bigint,
336
+ request: Uint8Array
337
+ ): bigint;
338
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsparksigner_sign_spark_invoice(
339
+ ptr: bigint,
340
+ request: Uint8Array
323
341
  ): bigint;
324
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_sign_frost(
342
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsparksigner_prepare_token_transaction(
325
343
  ptr: bigint,
326
344
  request: Uint8Array
327
345
  ): bigint;
328
- ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_aggregate_frost(
346
+ ubrn_uniffi_breez_sdk_spark_fn_method_externalsparksigner_prepare_static_deposit_claim(
329
347
  ptr: bigint,
330
348
  request: Uint8Array
331
349
  ): bigint;
@@ -346,50 +364,51 @@ interface NativeModuleInterface {
346
364
  ubrn_uniffi_breez_sdk_spark_fn_method_fiatservice_fetch_fiat_rates(
347
365
  ptr: bigint
348
366
  ): bigint;
349
- ubrn_uniffi_breez_sdk_spark_fn_clone_passkey(
367
+ ubrn_uniffi_breez_sdk_spark_fn_clone_passkeyclient(
350
368
  ptr: bigint,
351
369
  uniffi_out_err: UniffiRustCallStatus
352
370
  ): bigint;
353
- ubrn_uniffi_breez_sdk_spark_fn_free_passkey(
371
+ ubrn_uniffi_breez_sdk_spark_fn_free_passkeyclient(
354
372
  ptr: bigint,
355
373
  uniffi_out_err: UniffiRustCallStatus
356
374
  ): void;
357
- ubrn_uniffi_breez_sdk_spark_fn_constructor_passkey_new(
375
+ ubrn_uniffi_breez_sdk_spark_fn_constructor_passkeyclient_new(
358
376
  prfProvider: bigint,
359
- relayConfig: Uint8Array,
377
+ breezApiKey: Uint8Array,
378
+ config: Uint8Array,
360
379
  uniffi_out_err: UniffiRustCallStatus
361
380
  ): bigint;
362
- ubrn_uniffi_breez_sdk_spark_fn_method_passkey_get_wallet(
381
+ ubrn_uniffi_breez_sdk_spark_fn_method_passkeyclient_check_availability(
382
+ ptr: bigint
383
+ ): bigint;
384
+ ubrn_uniffi_breez_sdk_spark_fn_method_passkeyclient_connect_with_passkey(
363
385
  ptr: bigint,
364
- label: Uint8Array
386
+ request: Uint8Array
365
387
  ): bigint;
366
- ubrn_uniffi_breez_sdk_spark_fn_method_passkey_is_available(
367
- ptr: bigint
388
+ ubrn_uniffi_breez_sdk_spark_fn_method_passkeyclient_labels(
389
+ ptr: bigint,
390
+ uniffi_out_err: UniffiRustCallStatus
368
391
  ): bigint;
369
- ubrn_uniffi_breez_sdk_spark_fn_method_passkey_list_labels(
370
- ptr: bigint
392
+ ubrn_uniffi_breez_sdk_spark_fn_method_passkeyclient_register(
393
+ ptr: bigint,
394
+ request: Uint8Array
371
395
  ): bigint;
372
- ubrn_uniffi_breez_sdk_spark_fn_method_passkey_store_label(
396
+ ubrn_uniffi_breez_sdk_spark_fn_method_passkeyclient_sign_in(
373
397
  ptr: bigint,
374
- label: Uint8Array
398
+ request: Uint8Array
375
399
  ): bigint;
376
- ubrn_uniffi_breez_sdk_spark_fn_clone_passkeyprfprovider(
400
+ ubrn_uniffi_breez_sdk_spark_fn_clone_passkeylabels(
377
401
  ptr: bigint,
378
402
  uniffi_out_err: UniffiRustCallStatus
379
403
  ): bigint;
380
- ubrn_uniffi_breez_sdk_spark_fn_free_passkeyprfprovider(
404
+ ubrn_uniffi_breez_sdk_spark_fn_free_passkeylabels(
381
405
  ptr: bigint,
382
406
  uniffi_out_err: UniffiRustCallStatus
383
407
  ): void;
384
- ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_passkeyprfprovider(
385
- vtable: UniffiVTableCallbackInterfacePasskeyPrfProvider
386
- ): void;
387
- ubrn_uniffi_breez_sdk_spark_fn_method_passkeyprfprovider_derive_prf_seed(
408
+ ubrn_uniffi_breez_sdk_spark_fn_method_passkeylabels_list(ptr: bigint): bigint;
409
+ ubrn_uniffi_breez_sdk_spark_fn_method_passkeylabels_store(
388
410
  ptr: bigint,
389
- salt: Uint8Array
390
- ): bigint;
391
- ubrn_uniffi_breez_sdk_spark_fn_method_passkeyprfprovider_is_prf_available(
392
- ptr: bigint
411
+ label: Uint8Array
393
412
  ): bigint;
394
413
  ubrn_uniffi_breez_sdk_spark_fn_clone_paymentobserver(
395
414
  ptr: bigint,
@@ -406,6 +425,43 @@ interface NativeModuleInterface {
406
425
  ptr: bigint,
407
426
  payments: Uint8Array
408
427
  ): bigint;
428
+ ubrn_uniffi_breez_sdk_spark_fn_method_paymentobserver_after_send(
429
+ ptr: bigint,
430
+ updates: Uint8Array
431
+ ): bigint;
432
+ ubrn_uniffi_breez_sdk_spark_fn_clone_prfprovider(
433
+ ptr: bigint,
434
+ uniffi_out_err: UniffiRustCallStatus
435
+ ): bigint;
436
+ ubrn_uniffi_breez_sdk_spark_fn_free_prfprovider(
437
+ ptr: bigint,
438
+ uniffi_out_err: UniffiRustCallStatus
439
+ ): void;
440
+ ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_prfprovider(
441
+ vtable: UniffiVTableCallbackInterfacePrfProvider
442
+ ): void;
443
+ ubrn_uniffi_breez_sdk_spark_fn_method_prfprovider_derive_seeds(
444
+ ptr: bigint,
445
+ request: Uint8Array
446
+ ): bigint;
447
+ ubrn_uniffi_breez_sdk_spark_fn_method_prfprovider_is_supported(
448
+ ptr: bigint
449
+ ): bigint;
450
+ ubrn_uniffi_breez_sdk_spark_fn_method_prfprovider_create_passkey(
451
+ ptr: bigint,
452
+ excludeCredentials: Uint8Array
453
+ ): bigint;
454
+ ubrn_uniffi_breez_sdk_spark_fn_method_prfprovider_check_domain_association(
455
+ ptr: bigint
456
+ ): bigint;
457
+ ubrn_uniffi_breez_sdk_spark_fn_clone_resolvedstores(
458
+ ptr: bigint,
459
+ uniffi_out_err: UniffiRustCallStatus
460
+ ): bigint;
461
+ ubrn_uniffi_breez_sdk_spark_fn_free_resolvedstores(
462
+ ptr: bigint,
463
+ uniffi_out_err: UniffiRustCallStatus
464
+ ): void;
409
465
  ubrn_uniffi_breez_sdk_spark_fn_clone_restclient(
410
466
  ptr: bigint,
411
467
  uniffi_out_err: UniffiRustCallStatus
@@ -447,7 +503,17 @@ interface NativeModuleInterface {
447
503
  seed: Uint8Array,
448
504
  uniffi_out_err: UniffiRustCallStatus
449
505
  ): bigint;
506
+ ubrn_uniffi_breez_sdk_spark_fn_constructor_sdkbuilder_new_with_signer(
507
+ config: Uint8Array,
508
+ breezSigner: bigint,
509
+ sparkSigner: bigint,
510
+ uniffi_out_err: UniffiRustCallStatus
511
+ ): bigint;
450
512
  ubrn_uniffi_breez_sdk_spark_fn_method_sdkbuilder_build(ptr: bigint): bigint;
513
+ ubrn_uniffi_breez_sdk_spark_fn_method_sdkbuilder_with_account_number(
514
+ ptr: bigint,
515
+ accountNumber: number
516
+ ): bigint;
451
517
  ubrn_uniffi_breez_sdk_spark_fn_method_sdkbuilder_with_chain_service(
452
518
  ptr: bigint,
453
519
  chainService: bigint
@@ -460,10 +526,6 @@ interface NativeModuleInterface {
460
526
  ptr: bigint,
461
527
  fiatService: bigint
462
528
  ): bigint;
463
- ubrn_uniffi_breez_sdk_spark_fn_method_sdkbuilder_with_key_set(
464
- ptr: bigint,
465
- config: Uint8Array
466
- ): bigint;
467
529
  ubrn_uniffi_breez_sdk_spark_fn_method_sdkbuilder_with_lnurl_client(
468
530
  ptr: bigint,
469
531
  lnurlClient: bigint
@@ -486,6 +548,10 @@ interface NativeModuleInterface {
486
548
  ptr: bigint,
487
549
  storage: bigint
488
550
  ): bigint;
551
+ ubrn_uniffi_breez_sdk_spark_fn_method_sdkbuilder_with_storage_backend(
552
+ ptr: bigint,
553
+ storage: bigint
554
+ ): bigint;
489
555
  ubrn_uniffi_breez_sdk_spark_fn_clone_sdkcontext(
490
556
  ptr: bigint,
491
557
  uniffi_out_err: UniffiRustCallStatus
@@ -494,22 +560,22 @@ interface NativeModuleInterface {
494
560
  ptr: bigint,
495
561
  uniffi_out_err: UniffiRustCallStatus
496
562
  ): void;
497
- ubrn_uniffi_breez_sdk_spark_fn_clone_sessionmanager(
563
+ ubrn_uniffi_breez_sdk_spark_fn_clone_sessionstore(
498
564
  ptr: bigint,
499
565
  uniffi_out_err: UniffiRustCallStatus
500
566
  ): bigint;
501
- ubrn_uniffi_breez_sdk_spark_fn_free_sessionmanager(
567
+ ubrn_uniffi_breez_sdk_spark_fn_free_sessionstore(
502
568
  ptr: bigint,
503
569
  uniffi_out_err: UniffiRustCallStatus
504
570
  ): void;
505
- ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_sessionmanager(
506
- vtable: UniffiVTableCallbackInterfaceSessionManager
571
+ ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_sessionstore(
572
+ vtable: UniffiVTableCallbackInterfaceSessionStore
507
573
  ): void;
508
- ubrn_uniffi_breez_sdk_spark_fn_method_sessionmanager_get_session(
574
+ ubrn_uniffi_breez_sdk_spark_fn_method_sessionstore_get_session(
509
575
  ptr: bigint,
510
576
  serviceIdentityKey: Uint8Array
511
577
  ): bigint;
512
- ubrn_uniffi_breez_sdk_spark_fn_method_sessionmanager_set_session(
578
+ ubrn_uniffi_breez_sdk_spark_fn_method_sessionstore_set_session(
513
579
  ptr: bigint,
514
580
  serviceIdentityKey: Uint8Array,
515
581
  session: Uint8Array
@@ -542,7 +608,7 @@ interface NativeModuleInterface {
542
608
  ptr: bigint,
543
609
  request: Uint8Array
544
610
  ): bigint;
545
- ubrn_uniffi_breez_sdk_spark_fn_method_storage_insert_payment(
611
+ ubrn_uniffi_breez_sdk_spark_fn_method_storage_apply_payment_update(
546
612
  ptr: bigint,
547
613
  payment: Uint8Array
548
614
  ): bigint;
@@ -639,6 +705,19 @@ interface NativeModuleInterface {
639
705
  ptr: bigint,
640
706
  record: Uint8Array
641
707
  ): bigint;
708
+ ubrn_uniffi_breez_sdk_spark_fn_clone_storagebackend(
709
+ ptr: bigint,
710
+ uniffi_out_err: UniffiRustCallStatus
711
+ ): bigint;
712
+ ubrn_uniffi_breez_sdk_spark_fn_free_storagebackend(
713
+ ptr: bigint,
714
+ uniffi_out_err: UniffiRustCallStatus
715
+ ): void;
716
+ ubrn_uniffi_breez_sdk_spark_fn_method_storagebackend_create_stores(
717
+ ptr: bigint,
718
+ network: Uint8Array,
719
+ identity: Uint8Array
720
+ ): bigint;
642
721
  ubrn_uniffi_breez_sdk_spark_fn_clone_tokenissuer(
643
722
  ptr: bigint,
644
723
  uniffi_out_err: UniffiRustCallStatus
@@ -683,21 +762,32 @@ interface NativeModuleInterface {
683
762
  ubrn_uniffi_breez_sdk_spark_fn_func_connect_with_signer(
684
763
  request: Uint8Array
685
764
  ): bigint;
765
+ ubrn_uniffi_breez_sdk_spark_fn_func_create_turnkey_signer(
766
+ config: Uint8Array
767
+ ): bigint;
768
+ ubrn_uniffi_breez_sdk_spark_fn_func_custom_storage(
769
+ storage: bigint,
770
+ uniffi_out_err: UniffiRustCallStatus
771
+ ): bigint;
686
772
  ubrn_uniffi_breez_sdk_spark_fn_func_default_config(
687
773
  network: Uint8Array,
688
774
  uniffi_out_err: UniffiRustCallStatus
689
775
  ): Uint8Array;
690
- ubrn_uniffi_breez_sdk_spark_fn_func_default_external_signer(
776
+ ubrn_uniffi_breez_sdk_spark_fn_func_default_external_signers(
691
777
  mnemonic: Uint8Array,
692
778
  passphrase: Uint8Array,
693
779
  network: Uint8Array,
694
- keySetConfig: Uint8Array,
780
+ accountNumber: Uint8Array,
695
781
  uniffi_out_err: UniffiRustCallStatus
696
- ): bigint;
782
+ ): Uint8Array;
697
783
  ubrn_uniffi_breez_sdk_spark_fn_func_default_server_config(
698
784
  network: Uint8Array,
699
785
  uniffi_out_err: UniffiRustCallStatus
700
786
  ): Uint8Array;
787
+ ubrn_uniffi_breez_sdk_spark_fn_func_default_storage(
788
+ storageDir: Uint8Array,
789
+ uniffi_out_err: UniffiRustCallStatus
790
+ ): bigint;
701
791
  ubrn_uniffi_breez_sdk_spark_fn_func_get_spark_status(): bigint;
702
792
  ubrn_uniffi_breez_sdk_spark_fn_func_init_logging(
703
793
  logDir: Uint8Array,
@@ -859,9 +949,12 @@ interface NativeModuleInterface {
859
949
  ): void;
860
950
  ubrn_uniffi_breez_sdk_spark_checksum_func_connect(): number;
861
951
  ubrn_uniffi_breez_sdk_spark_checksum_func_connect_with_signer(): number;
952
+ ubrn_uniffi_breez_sdk_spark_checksum_func_create_turnkey_signer(): number;
953
+ ubrn_uniffi_breez_sdk_spark_checksum_func_custom_storage(): number;
862
954
  ubrn_uniffi_breez_sdk_spark_checksum_func_default_config(): number;
863
- ubrn_uniffi_breez_sdk_spark_checksum_func_default_external_signer(): number;
955
+ ubrn_uniffi_breez_sdk_spark_checksum_func_default_external_signers(): number;
864
956
  ubrn_uniffi_breez_sdk_spark_checksum_func_default_server_config(): number;
957
+ ubrn_uniffi_breez_sdk_spark_checksum_func_default_storage(): number;
865
958
  ubrn_uniffi_breez_sdk_spark_checksum_func_get_spark_status(): number;
866
959
  ubrn_uniffi_breez_sdk_spark_checksum_func_init_logging(): number;
867
960
  ubrn_uniffi_breez_sdk_spark_checksum_func_new_rest_chain_service(): number;
@@ -873,18 +966,18 @@ interface NativeModuleInterface {
873
966
  ubrn_uniffi_breez_sdk_spark_checksum_method_bitcoinchainservice_recommended_fees(): number;
874
967
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_add_contact(): number;
875
968
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_add_event_listener(): number;
969
+ ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_authorize_lightning_address_transfer(): number;
876
970
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_buy_bitcoin(): number;
877
- ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_cancel_leaf_optimization(): number;
878
971
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_check_lightning_address_available(): number;
879
972
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_check_message(): number;
880
973
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_claim_deposit(): number;
881
974
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_claim_htlc_payment(): number;
975
+ ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_claim_lightning_address_transfer(): number;
882
976
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_delete_contact(): number;
883
977
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_delete_lightning_address(): number;
884
978
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_disconnect(): number;
885
979
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_fetch_conversion_limits(): number;
886
980
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_get_info(): number;
887
- ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_get_leaf_optimization_progress(): number;
888
981
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_get_lightning_address(): number;
889
982
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_get_payment(): number;
890
983
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_get_token_issuer(): number;
@@ -899,6 +992,7 @@ interface NativeModuleInterface {
899
992
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_lnurl_auth(): number;
900
993
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_lnurl_pay(): number;
901
994
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_lnurl_withdraw(): number;
995
+ ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_optimize_leaves(): number;
902
996
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_parse(): number;
903
997
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_prepare_lnurl_pay(): number;
904
998
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_prepare_send_payment(): number;
@@ -911,60 +1005,68 @@ interface NativeModuleInterface {
911
1005
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_remove_event_listener(): number;
912
1006
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_send_payment(): number;
913
1007
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_sign_message(): number;
914
- ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_start_leaf_optimization(): number;
915
1008
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_sync_wallet(): number;
916
1009
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_unregister_webhook(): number;
917
1010
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_update_contact(): number;
918
1011
  ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_update_user_settings(): number;
919
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_identity_public_key(): number;
920
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_derive_public_key(): number;
921
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_sign_ecdsa(): number;
922
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_sign_ecdsa_recoverable(): number;
923
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_encrypt_ecies(): number;
924
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_decrypt_ecies(): number;
925
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_sign_hash_schnorr(): number;
926
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_hmac_sha256(): number;
927
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_generate_random_signing_commitment(): number;
928
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_get_public_key_for_node(): number;
929
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_generate_random_secret(): number;
930
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_static_deposit_secret_encrypted(): number;
931
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_static_deposit_secret(): number;
932
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_static_deposit_signing_key(): number;
933
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_subtract_secrets(): number;
934
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_split_secret_with_proofs(): number;
935
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_encrypt_secret_for_receiver(): number;
936
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_public_key_from_secret(): number;
937
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_sign_frost(): number;
938
- ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_aggregate_frost(): number;
1012
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalbreezsigner_derive_public_key(): number;
1013
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalbreezsigner_sign_ecdsa(): number;
1014
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalbreezsigner_sign_ecdsa_recoverable(): number;
1015
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalbreezsigner_encrypt_ecies(): number;
1016
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalbreezsigner_decrypt_ecies(): number;
1017
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalbreezsigner_sign_hash_schnorr(): number;
1018
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalbreezsigner_hmac_sha256(): number;
1019
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_get_identity_public_key(): number;
1020
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_get_public_key_for_leaf(): number;
1021
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_get_static_deposit_public_key(): number;
1022
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_sign_authentication_challenge(): number;
1023
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_sign_message(): number;
1024
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_sign_frost(): number;
1025
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_prepare_transfer(): number;
1026
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_prepare_claim(): number;
1027
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_prepare_lightning_receive(): number;
1028
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_prepare_static_deposit(): number;
1029
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_start_static_deposit_refund(): number;
1030
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_sign_static_deposit_refund(): number;
1031
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_sign_spark_invoice(): number;
1032
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_prepare_token_transaction(): number;
1033
+ ubrn_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_prepare_static_deposit_claim(): number;
939
1034
  ubrn_uniffi_breez_sdk_spark_checksum_method_fiatservice_fetch_fiat_currencies(): number;
940
1035
  ubrn_uniffi_breez_sdk_spark_checksum_method_fiatservice_fetch_fiat_rates(): number;
941
- ubrn_uniffi_breez_sdk_spark_checksum_method_passkey_get_wallet(): number;
942
- ubrn_uniffi_breez_sdk_spark_checksum_method_passkey_is_available(): number;
943
- ubrn_uniffi_breez_sdk_spark_checksum_method_passkey_list_labels(): number;
944
- ubrn_uniffi_breez_sdk_spark_checksum_method_passkey_store_label(): number;
945
- ubrn_uniffi_breez_sdk_spark_checksum_method_passkeyprfprovider_derive_prf_seed(): number;
946
- ubrn_uniffi_breez_sdk_spark_checksum_method_passkeyprfprovider_is_prf_available(): number;
1036
+ ubrn_uniffi_breez_sdk_spark_checksum_method_passkeyclient_check_availability(): number;
1037
+ ubrn_uniffi_breez_sdk_spark_checksum_method_passkeyclient_connect_with_passkey(): number;
1038
+ ubrn_uniffi_breez_sdk_spark_checksum_method_passkeyclient_labels(): number;
1039
+ ubrn_uniffi_breez_sdk_spark_checksum_method_passkeyclient_register(): number;
1040
+ ubrn_uniffi_breez_sdk_spark_checksum_method_passkeyclient_sign_in(): number;
1041
+ ubrn_uniffi_breez_sdk_spark_checksum_method_passkeylabels_list(): number;
1042
+ ubrn_uniffi_breez_sdk_spark_checksum_method_passkeylabels_store(): number;
947
1043
  ubrn_uniffi_breez_sdk_spark_checksum_method_paymentobserver_before_send(): number;
1044
+ ubrn_uniffi_breez_sdk_spark_checksum_method_paymentobserver_after_send(): number;
1045
+ ubrn_uniffi_breez_sdk_spark_checksum_method_prfprovider_derive_seeds(): number;
1046
+ ubrn_uniffi_breez_sdk_spark_checksum_method_prfprovider_is_supported(): number;
1047
+ ubrn_uniffi_breez_sdk_spark_checksum_method_prfprovider_create_passkey(): number;
1048
+ ubrn_uniffi_breez_sdk_spark_checksum_method_prfprovider_check_domain_association(): number;
948
1049
  ubrn_uniffi_breez_sdk_spark_checksum_method_restclient_get_request(): number;
949
1050
  ubrn_uniffi_breez_sdk_spark_checksum_method_restclient_post_request(): number;
950
1051
  ubrn_uniffi_breez_sdk_spark_checksum_method_restclient_delete_request(): number;
951
1052
  ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_build(): number;
1053
+ ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_account_number(): number;
952
1054
  ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_chain_service(): number;
953
1055
  ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_default_storage(): number;
954
1056
  ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_fiat_service(): number;
955
- ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_key_set(): number;
956
1057
  ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_lnurl_client(): number;
957
1058
  ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_payment_observer(): number;
958
1059
  ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_rest_chain_service(): number;
959
1060
  ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_shared_context(): number;
960
1061
  ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_storage(): number;
961
- ubrn_uniffi_breez_sdk_spark_checksum_method_sessionmanager_get_session(): number;
962
- ubrn_uniffi_breez_sdk_spark_checksum_method_sessionmanager_set_session(): number;
1062
+ ubrn_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_storage_backend(): number;
1063
+ ubrn_uniffi_breez_sdk_spark_checksum_method_sessionstore_get_session(): number;
1064
+ ubrn_uniffi_breez_sdk_spark_checksum_method_sessionstore_set_session(): number;
963
1065
  ubrn_uniffi_breez_sdk_spark_checksum_method_storage_delete_cached_item(): number;
964
1066
  ubrn_uniffi_breez_sdk_spark_checksum_method_storage_get_cached_item(): number;
965
1067
  ubrn_uniffi_breez_sdk_spark_checksum_method_storage_set_cached_item(): number;
966
1068
  ubrn_uniffi_breez_sdk_spark_checksum_method_storage_list_payments(): number;
967
- ubrn_uniffi_breez_sdk_spark_checksum_method_storage_insert_payment(): number;
1069
+ ubrn_uniffi_breez_sdk_spark_checksum_method_storage_apply_payment_update(): number;
968
1070
  ubrn_uniffi_breez_sdk_spark_checksum_method_storage_insert_payment_metadata(): number;
969
1071
  ubrn_uniffi_breez_sdk_spark_checksum_method_storage_get_payment_by_id(): number;
970
1072
  ubrn_uniffi_breez_sdk_spark_checksum_method_storage_get_payment_by_invoice(): number;
@@ -987,6 +1089,7 @@ interface NativeModuleInterface {
987
1089
  ubrn_uniffi_breez_sdk_spark_checksum_method_storage_get_incoming_records(): number;
988
1090
  ubrn_uniffi_breez_sdk_spark_checksum_method_storage_get_latest_outgoing_change(): number;
989
1091
  ubrn_uniffi_breez_sdk_spark_checksum_method_storage_update_record_from_incoming(): number;
1092
+ ubrn_uniffi_breez_sdk_spark_checksum_method_storagebackend_create_stores(): number;
990
1093
  ubrn_uniffi_breez_sdk_spark_checksum_method_tokenissuer_burn_issuer_token(): number;
991
1094
  ubrn_uniffi_breez_sdk_spark_checksum_method_tokenissuer_create_issuer_token(): number;
992
1095
  ubrn_uniffi_breez_sdk_spark_checksum_method_tokenissuer_freeze_issuer_token(): number;
@@ -994,8 +1097,9 @@ interface NativeModuleInterface {
994
1097
  ubrn_uniffi_breez_sdk_spark_checksum_method_tokenissuer_get_issuer_token_metadata(): number;
995
1098
  ubrn_uniffi_breez_sdk_spark_checksum_method_tokenissuer_mint_issuer_token(): number;
996
1099
  ubrn_uniffi_breez_sdk_spark_checksum_method_tokenissuer_unfreeze_issuer_token(): number;
997
- ubrn_uniffi_breez_sdk_spark_checksum_constructor_passkey_new(): number;
1100
+ ubrn_uniffi_breez_sdk_spark_checksum_constructor_passkeyclient_new(): number;
998
1101
  ubrn_uniffi_breez_sdk_spark_checksum_constructor_sdkbuilder_new(): number;
1102
+ ubrn_uniffi_breez_sdk_spark_checksum_constructor_sdkbuilder_new_with_signer(): number;
999
1103
  ubrn_uniffi_breez_sdk_spark_checksum_method_eventlistener_on_event(): number;
1000
1104
  ubrn_uniffi_breez_sdk_spark_checksum_method_logger_log(): number;
1001
1105
  ubrn_ffi_breez_sdk_spark_uniffi_contract_version(): number;
@@ -1007,7 +1111,11 @@ interface NativeModuleInterface {
1007
1111
  pointer: bigint,
1008
1112
  uniffi_out_err: UniffiRustCallStatus
1009
1113
  ): UniffiRustArcPtr;
1010
- ubrn_uniffi_internal_fn_method_externalsigner_ffi__bless_pointer(
1114
+ ubrn_uniffi_internal_fn_method_externalbreezsigner_ffi__bless_pointer(
1115
+ pointer: bigint,
1116
+ uniffi_out_err: UniffiRustCallStatus
1117
+ ): UniffiRustArcPtr;
1118
+ ubrn_uniffi_internal_fn_method_externalsparksigner_ffi__bless_pointer(
1011
1119
  pointer: bigint,
1012
1120
  uniffi_out_err: UniffiRustCallStatus
1013
1121
  ): UniffiRustArcPtr;
@@ -1015,11 +1123,11 @@ interface NativeModuleInterface {
1015
1123
  pointer: bigint,
1016
1124
  uniffi_out_err: UniffiRustCallStatus
1017
1125
  ): UniffiRustArcPtr;
1018
- ubrn_uniffi_internal_fn_method_passkey_ffi__bless_pointer(
1126
+ ubrn_uniffi_internal_fn_method_passkeyclient_ffi__bless_pointer(
1019
1127
  pointer: bigint,
1020
1128
  uniffi_out_err: UniffiRustCallStatus
1021
1129
  ): UniffiRustArcPtr;
1022
- ubrn_uniffi_internal_fn_method_passkeyprfprovider_ffi__bless_pointer(
1130
+ ubrn_uniffi_internal_fn_method_passkeylabels_ffi__bless_pointer(
1023
1131
  pointer: bigint,
1024
1132
  uniffi_out_err: UniffiRustCallStatus
1025
1133
  ): UniffiRustArcPtr;
@@ -1027,6 +1135,14 @@ interface NativeModuleInterface {
1027
1135
  pointer: bigint,
1028
1136
  uniffi_out_err: UniffiRustCallStatus
1029
1137
  ): UniffiRustArcPtr;
1138
+ ubrn_uniffi_internal_fn_method_prfprovider_ffi__bless_pointer(
1139
+ pointer: bigint,
1140
+ uniffi_out_err: UniffiRustCallStatus
1141
+ ): UniffiRustArcPtr;
1142
+ ubrn_uniffi_internal_fn_method_resolvedstores_ffi__bless_pointer(
1143
+ pointer: bigint,
1144
+ uniffi_out_err: UniffiRustCallStatus
1145
+ ): UniffiRustArcPtr;
1030
1146
  ubrn_uniffi_internal_fn_method_restclient_ffi__bless_pointer(
1031
1147
  pointer: bigint,
1032
1148
  uniffi_out_err: UniffiRustCallStatus
@@ -1039,7 +1155,7 @@ interface NativeModuleInterface {
1039
1155
  pointer: bigint,
1040
1156
  uniffi_out_err: UniffiRustCallStatus
1041
1157
  ): UniffiRustArcPtr;
1042
- ubrn_uniffi_internal_fn_method_sessionmanager_ffi__bless_pointer(
1158
+ ubrn_uniffi_internal_fn_method_sessionstore_ffi__bless_pointer(
1043
1159
  pointer: bigint,
1044
1160
  uniffi_out_err: UniffiRustCallStatus
1045
1161
  ): UniffiRustArcPtr;
@@ -1047,6 +1163,10 @@ interface NativeModuleInterface {
1047
1163
  pointer: bigint,
1048
1164
  uniffi_out_err: UniffiRustCallStatus
1049
1165
  ): UniffiRustArcPtr;
1166
+ ubrn_uniffi_internal_fn_method_storagebackend_ffi__bless_pointer(
1167
+ pointer: bigint,
1168
+ uniffi_out_err: UniffiRustCallStatus
1169
+ ): UniffiRustArcPtr;
1050
1170
  ubrn_uniffi_internal_fn_method_tokenissuer_ffi__bless_pointer(
1051
1171
  pointer: bigint,
1052
1172
  uniffi_out_err: UniffiRustCallStatus
@@ -1215,150 +1335,151 @@ type UniffiCallbackInterfaceBitcoinChainServiceMethod4 = (
1215
1335
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1216
1336
  uniffiCallbackData: bigint
1217
1337
  ) => UniffiForeignFuture;
1218
- type UniffiCallbackInterfaceExternalSignerMethod0 = (
1219
- uniffiHandle: bigint
1220
- ) => UniffiResult<Uint8Array>;
1221
- type UniffiCallbackInterfaceExternalSignerMethod1 = (
1338
+ type UniffiCallbackInterfaceExternalBreezSignerMethod0 = (
1222
1339
  uniffiHandle: bigint,
1223
1340
  path: Uint8Array,
1224
1341
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1225
1342
  uniffiCallbackData: bigint
1226
1343
  ) => UniffiForeignFuture;
1227
- type UniffiCallbackInterfaceExternalSignerMethod2 = (
1344
+ type UniffiCallbackInterfaceExternalBreezSignerMethod1 = (
1228
1345
  uniffiHandle: bigint,
1229
1346
  message: Uint8Array,
1230
1347
  path: Uint8Array,
1231
1348
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1232
1349
  uniffiCallbackData: bigint
1233
1350
  ) => UniffiForeignFuture;
1234
- type UniffiCallbackInterfaceExternalSignerMethod3 = (
1351
+ type UniffiCallbackInterfaceExternalBreezSignerMethod2 = (
1235
1352
  uniffiHandle: bigint,
1236
1353
  message: Uint8Array,
1237
1354
  path: Uint8Array,
1238
1355
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1239
1356
  uniffiCallbackData: bigint
1240
1357
  ) => UniffiForeignFuture;
1241
- type UniffiCallbackInterfaceExternalSignerMethod4 = (
1358
+ type UniffiCallbackInterfaceExternalBreezSignerMethod3 = (
1242
1359
  uniffiHandle: bigint,
1243
1360
  message: Uint8Array,
1244
1361
  path: Uint8Array,
1245
1362
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1246
1363
  uniffiCallbackData: bigint
1247
1364
  ) => UniffiForeignFuture;
1248
- type UniffiCallbackInterfaceExternalSignerMethod5 = (
1365
+ type UniffiCallbackInterfaceExternalBreezSignerMethod4 = (
1249
1366
  uniffiHandle: bigint,
1250
1367
  message: Uint8Array,
1251
1368
  path: Uint8Array,
1252
1369
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1253
1370
  uniffiCallbackData: bigint
1254
1371
  ) => UniffiForeignFuture;
1255
- type UniffiCallbackInterfaceExternalSignerMethod6 = (
1372
+ type UniffiCallbackInterfaceExternalBreezSignerMethod5 = (
1256
1373
  uniffiHandle: bigint,
1257
1374
  hash: Uint8Array,
1258
1375
  path: Uint8Array,
1259
1376
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1260
1377
  uniffiCallbackData: bigint
1261
1378
  ) => UniffiForeignFuture;
1262
- type UniffiCallbackInterfaceExternalSignerMethod7 = (
1379
+ type UniffiCallbackInterfaceExternalBreezSignerMethod6 = (
1263
1380
  uniffiHandle: bigint,
1264
1381
  message: Uint8Array,
1265
1382
  path: Uint8Array,
1266
1383
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1267
1384
  uniffiCallbackData: bigint
1268
1385
  ) => UniffiForeignFuture;
1269
- type UniffiCallbackInterfaceExternalSignerMethod8 = (
1386
+ type UniffiCallbackInterfaceExternalSparkSignerMethod0 = (
1270
1387
  uniffiHandle: bigint,
1271
1388
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1272
1389
  uniffiCallbackData: bigint
1273
1390
  ) => UniffiForeignFuture;
1274
- type UniffiCallbackInterfaceExternalSignerMethod9 = (
1391
+ type UniffiCallbackInterfaceExternalSparkSignerMethod1 = (
1275
1392
  uniffiHandle: bigint,
1276
- id: Uint8Array,
1393
+ leafId: Uint8Array,
1277
1394
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1278
1395
  uniffiCallbackData: bigint
1279
1396
  ) => UniffiForeignFuture;
1280
- type UniffiCallbackInterfaceExternalSignerMethod10 = (
1397
+ type UniffiCallbackInterfaceExternalSparkSignerMethod2 = (
1281
1398
  uniffiHandle: bigint,
1399
+ index: number,
1282
1400
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1283
1401
  uniffiCallbackData: bigint
1284
1402
  ) => UniffiForeignFuture;
1285
- type UniffiCallbackInterfaceExternalSignerMethod11 = (
1403
+ type UniffiCallbackInterfaceExternalSparkSignerMethod3 = (
1286
1404
  uniffiHandle: bigint,
1287
- index: number,
1405
+ challenge: Uint8Array,
1288
1406
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1289
1407
  uniffiCallbackData: bigint
1290
1408
  ) => UniffiForeignFuture;
1291
- type UniffiCallbackInterfaceExternalSignerMethod12 = (
1409
+ type UniffiCallbackInterfaceExternalSparkSignerMethod4 = (
1292
1410
  uniffiHandle: bigint,
1293
- index: number,
1411
+ message: Uint8Array,
1294
1412
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1295
1413
  uniffiCallbackData: bigint
1296
1414
  ) => UniffiForeignFuture;
1297
- type UniffiCallbackInterfaceExternalSignerMethod13 = (
1415
+ type UniffiCallbackInterfaceExternalSparkSignerMethod5 = (
1298
1416
  uniffiHandle: bigint,
1299
- index: number,
1417
+ jobs: Uint8Array,
1300
1418
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1301
1419
  uniffiCallbackData: bigint
1302
1420
  ) => UniffiForeignFuture;
1303
- type UniffiCallbackInterfaceExternalSignerMethod14 = (
1421
+ type UniffiCallbackInterfaceExternalSparkSignerMethod6 = (
1304
1422
  uniffiHandle: bigint,
1305
- signingKey: Uint8Array,
1306
- newSigningKey: Uint8Array,
1423
+ request: Uint8Array,
1307
1424
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1308
1425
  uniffiCallbackData: bigint
1309
1426
  ) => UniffiForeignFuture;
1310
- type UniffiCallbackInterfaceExternalSignerMethod15 = (
1427
+ type UniffiCallbackInterfaceExternalSparkSignerMethod7 = (
1311
1428
  uniffiHandle: bigint,
1312
- secret: Uint8Array,
1313
- threshold: number,
1314
- numShares: number,
1429
+ request: Uint8Array,
1315
1430
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1316
1431
  uniffiCallbackData: bigint
1317
1432
  ) => UniffiForeignFuture;
1318
- type UniffiCallbackInterfaceExternalSignerMethod16 = (
1433
+ type UniffiCallbackInterfaceExternalSparkSignerMethod8 = (
1319
1434
  uniffiHandle: bigint,
1320
- encryptedSecret: Uint8Array,
1321
- receiverPublicKey: Uint8Array,
1435
+ request: Uint8Array,
1322
1436
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1323
1437
  uniffiCallbackData: bigint
1324
1438
  ) => UniffiForeignFuture;
1325
- type UniffiCallbackInterfaceExternalSignerMethod17 = (
1439
+ type UniffiCallbackInterfaceExternalSparkSignerMethod9 = (
1326
1440
  uniffiHandle: bigint,
1327
- secret: Uint8Array,
1441
+ request: Uint8Array,
1328
1442
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1329
1443
  uniffiCallbackData: bigint
1330
1444
  ) => UniffiForeignFuture;
1331
- type UniffiCallbackInterfaceExternalSignerMethod18 = (
1445
+ type UniffiCallbackInterfaceExternalSparkSignerMethod10 = (
1332
1446
  uniffiHandle: bigint,
1333
1447
  request: Uint8Array,
1334
1448
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1335
1449
  uniffiCallbackData: bigint
1336
1450
  ) => UniffiForeignFuture;
1337
- type UniffiCallbackInterfaceExternalSignerMethod19 = (
1451
+ type UniffiCallbackInterfaceExternalSparkSignerMethod11 = (
1338
1452
  uniffiHandle: bigint,
1339
1453
  request: Uint8Array,
1340
1454
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1341
1455
  uniffiCallbackData: bigint
1342
1456
  ) => UniffiForeignFuture;
1343
- type UniffiCallbackInterfaceFiatServiceMethod0 = (
1457
+ type UniffiCallbackInterfaceExternalSparkSignerMethod12 = (
1344
1458
  uniffiHandle: bigint,
1459
+ request: Uint8Array,
1345
1460
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1346
1461
  uniffiCallbackData: bigint
1347
1462
  ) => UniffiForeignFuture;
1348
- type UniffiCallbackInterfaceFiatServiceMethod1 = (
1463
+ type UniffiCallbackInterfaceExternalSparkSignerMethod13 = (
1349
1464
  uniffiHandle: bigint,
1465
+ request: Uint8Array,
1350
1466
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1351
1467
  uniffiCallbackData: bigint
1352
1468
  ) => UniffiForeignFuture;
1353
- type UniffiCallbackInterfacePasskeyPrfProviderMethod0 = (
1469
+ type UniffiCallbackInterfaceExternalSparkSignerMethod14 = (
1354
1470
  uniffiHandle: bigint,
1355
- salt: Uint8Array,
1471
+ request: Uint8Array,
1356
1472
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1357
1473
  uniffiCallbackData: bigint
1358
1474
  ) => UniffiForeignFuture;
1359
- type UniffiCallbackInterfacePasskeyPrfProviderMethod1 = (
1475
+ type UniffiCallbackInterfaceFiatServiceMethod0 = (
1360
1476
  uniffiHandle: bigint,
1361
- uniffiFutureCallback: UniffiForeignFutureCompleteI8,
1477
+ uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1478
+ uniffiCallbackData: bigint
1479
+ ) => UniffiForeignFuture;
1480
+ type UniffiCallbackInterfaceFiatServiceMethod1 = (
1481
+ uniffiHandle: bigint,
1482
+ uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1362
1483
  uniffiCallbackData: bigint
1363
1484
  ) => UniffiForeignFuture;
1364
1485
  type UniffiCallbackInterfacePaymentObserverMethod0 = (
@@ -1367,6 +1488,34 @@ type UniffiCallbackInterfacePaymentObserverMethod0 = (
1367
1488
  uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
1368
1489
  uniffiCallbackData: bigint
1369
1490
  ) => UniffiForeignFuture;
1491
+ type UniffiCallbackInterfacePaymentObserverMethod1 = (
1492
+ uniffiHandle: bigint,
1493
+ updates: Uint8Array,
1494
+ uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
1495
+ uniffiCallbackData: bigint
1496
+ ) => UniffiForeignFuture;
1497
+ type UniffiCallbackInterfacePrfProviderMethod0 = (
1498
+ uniffiHandle: bigint,
1499
+ request: Uint8Array,
1500
+ uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1501
+ uniffiCallbackData: bigint
1502
+ ) => UniffiForeignFuture;
1503
+ type UniffiCallbackInterfacePrfProviderMethod1 = (
1504
+ uniffiHandle: bigint,
1505
+ uniffiFutureCallback: UniffiForeignFutureCompleteI8,
1506
+ uniffiCallbackData: bigint
1507
+ ) => UniffiForeignFuture;
1508
+ type UniffiCallbackInterfacePrfProviderMethod2 = (
1509
+ uniffiHandle: bigint,
1510
+ excludeCredentials: Uint8Array,
1511
+ uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1512
+ uniffiCallbackData: bigint
1513
+ ) => UniffiForeignFuture;
1514
+ type UniffiCallbackInterfacePrfProviderMethod3 = (
1515
+ uniffiHandle: bigint,
1516
+ uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1517
+ uniffiCallbackData: bigint
1518
+ ) => UniffiForeignFuture;
1370
1519
  type UniffiCallbackInterfaceRestClientMethod0 = (
1371
1520
  uniffiHandle: bigint,
1372
1521
  url: Uint8Array,
@@ -1390,13 +1539,13 @@ type UniffiCallbackInterfaceRestClientMethod2 = (
1390
1539
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1391
1540
  uniffiCallbackData: bigint
1392
1541
  ) => UniffiForeignFuture;
1393
- type UniffiCallbackInterfaceSessionManagerMethod0 = (
1542
+ type UniffiCallbackInterfaceSessionStoreMethod0 = (
1394
1543
  uniffiHandle: bigint,
1395
1544
  serviceIdentityKey: Uint8Array,
1396
1545
  uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
1397
1546
  uniffiCallbackData: bigint
1398
1547
  ) => UniffiForeignFuture;
1399
- type UniffiCallbackInterfaceSessionManagerMethod1 = (
1548
+ type UniffiCallbackInterfaceSessionStoreMethod1 = (
1400
1549
  uniffiHandle: bigint,
1401
1550
  serviceIdentityKey: Uint8Array,
1402
1551
  session: Uint8Array,
@@ -1431,7 +1580,7 @@ type UniffiCallbackInterfaceStorageMethod3 = (
1431
1580
  type UniffiCallbackInterfaceStorageMethod4 = (
1432
1581
  uniffiHandle: bigint,
1433
1582
  payment: Uint8Array,
1434
- uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
1583
+ uniffiFutureCallback: UniffiForeignFutureCompleteI8,
1435
1584
  uniffiCallbackData: bigint
1436
1585
  ) => UniffiForeignFuture;
1437
1586
  type UniffiCallbackInterfaceStorageMethod5 = (
@@ -1571,6 +1720,13 @@ type UniffiCallbackInterfaceStorageMethod26 = (
1571
1720
  uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
1572
1721
  uniffiCallbackData: bigint
1573
1722
  ) => UniffiForeignFuture;
1723
+ type UniffiCallbackInterfaceStorageBackendMethod0 = (
1724
+ uniffiHandle: bigint,
1725
+ network: Uint8Array,
1726
+ identity: Uint8Array,
1727
+ uniffiFutureCallback: UniffiForeignFutureCompletePointer,
1728
+ uniffiCallbackData: bigint
1729
+ ) => UniffiForeignFuture;
1574
1730
  export type UniffiVTableCallbackInterfaceEventListener = {
1575
1731
  onEvent: UniffiCallbackInterfaceEventListenerMethod0;
1576
1732
  uniffiFree: UniffiCallbackInterfaceFree;
@@ -1587,27 +1743,32 @@ export type UniffiVTableCallbackInterfaceBitcoinChainService = {
1587
1743
  recommendedFees: UniffiCallbackInterfaceBitcoinChainServiceMethod4;
1588
1744
  uniffiFree: UniffiCallbackInterfaceFree;
1589
1745
  };
1590
- export type UniffiVTableCallbackInterfaceExternalSigner = {
1591
- identityPublicKey: UniffiCallbackInterfaceExternalSignerMethod0;
1592
- derivePublicKey: UniffiCallbackInterfaceExternalSignerMethod1;
1593
- signEcdsa: UniffiCallbackInterfaceExternalSignerMethod2;
1594
- signEcdsaRecoverable: UniffiCallbackInterfaceExternalSignerMethod3;
1595
- encryptEcies: UniffiCallbackInterfaceExternalSignerMethod4;
1596
- decryptEcies: UniffiCallbackInterfaceExternalSignerMethod5;
1597
- signHashSchnorr: UniffiCallbackInterfaceExternalSignerMethod6;
1598
- hmacSha256: UniffiCallbackInterfaceExternalSignerMethod7;
1599
- generateRandomSigningCommitment: UniffiCallbackInterfaceExternalSignerMethod8;
1600
- getPublicKeyForNode: UniffiCallbackInterfaceExternalSignerMethod9;
1601
- generateRandomSecret: UniffiCallbackInterfaceExternalSignerMethod10;
1602
- staticDepositSecretEncrypted: UniffiCallbackInterfaceExternalSignerMethod11;
1603
- staticDepositSecret: UniffiCallbackInterfaceExternalSignerMethod12;
1604
- staticDepositSigningKey: UniffiCallbackInterfaceExternalSignerMethod13;
1605
- subtractSecrets: UniffiCallbackInterfaceExternalSignerMethod14;
1606
- splitSecretWithProofs: UniffiCallbackInterfaceExternalSignerMethod15;
1607
- encryptSecretForReceiver: UniffiCallbackInterfaceExternalSignerMethod16;
1608
- publicKeyFromSecret: UniffiCallbackInterfaceExternalSignerMethod17;
1609
- signFrost: UniffiCallbackInterfaceExternalSignerMethod18;
1610
- aggregateFrost: UniffiCallbackInterfaceExternalSignerMethod19;
1746
+ export type UniffiVTableCallbackInterfaceExternalBreezSigner = {
1747
+ derivePublicKey: UniffiCallbackInterfaceExternalBreezSignerMethod0;
1748
+ signEcdsa: UniffiCallbackInterfaceExternalBreezSignerMethod1;
1749
+ signEcdsaRecoverable: UniffiCallbackInterfaceExternalBreezSignerMethod2;
1750
+ encryptEcies: UniffiCallbackInterfaceExternalBreezSignerMethod3;
1751
+ decryptEcies: UniffiCallbackInterfaceExternalBreezSignerMethod4;
1752
+ signHashSchnorr: UniffiCallbackInterfaceExternalBreezSignerMethod5;
1753
+ hmacSha256: UniffiCallbackInterfaceExternalBreezSignerMethod6;
1754
+ uniffiFree: UniffiCallbackInterfaceFree;
1755
+ };
1756
+ export type UniffiVTableCallbackInterfaceExternalSparkSigner = {
1757
+ getIdentityPublicKey: UniffiCallbackInterfaceExternalSparkSignerMethod0;
1758
+ getPublicKeyForLeaf: UniffiCallbackInterfaceExternalSparkSignerMethod1;
1759
+ getStaticDepositPublicKey: UniffiCallbackInterfaceExternalSparkSignerMethod2;
1760
+ signAuthenticationChallenge: UniffiCallbackInterfaceExternalSparkSignerMethod3;
1761
+ signMessage: UniffiCallbackInterfaceExternalSparkSignerMethod4;
1762
+ signFrost: UniffiCallbackInterfaceExternalSparkSignerMethod5;
1763
+ prepareTransfer: UniffiCallbackInterfaceExternalSparkSignerMethod6;
1764
+ prepareClaim: UniffiCallbackInterfaceExternalSparkSignerMethod7;
1765
+ prepareLightningReceive: UniffiCallbackInterfaceExternalSparkSignerMethod8;
1766
+ prepareStaticDeposit: UniffiCallbackInterfaceExternalSparkSignerMethod9;
1767
+ startStaticDepositRefund: UniffiCallbackInterfaceExternalSparkSignerMethod10;
1768
+ signStaticDepositRefund: UniffiCallbackInterfaceExternalSparkSignerMethod11;
1769
+ signSparkInvoice: UniffiCallbackInterfaceExternalSparkSignerMethod12;
1770
+ prepareTokenTransaction: UniffiCallbackInterfaceExternalSparkSignerMethod13;
1771
+ prepareStaticDepositClaim: UniffiCallbackInterfaceExternalSparkSignerMethod14;
1611
1772
  uniffiFree: UniffiCallbackInterfaceFree;
1612
1773
  };
1613
1774
  export type UniffiVTableCallbackInterfaceFiatService = {
@@ -1615,13 +1776,16 @@ export type UniffiVTableCallbackInterfaceFiatService = {
1615
1776
  fetchFiatRates: UniffiCallbackInterfaceFiatServiceMethod1;
1616
1777
  uniffiFree: UniffiCallbackInterfaceFree;
1617
1778
  };
1618
- export type UniffiVTableCallbackInterfacePasskeyPrfProvider = {
1619
- derivePrfSeed: UniffiCallbackInterfacePasskeyPrfProviderMethod0;
1620
- isPrfAvailable: UniffiCallbackInterfacePasskeyPrfProviderMethod1;
1621
- uniffiFree: UniffiCallbackInterfaceFree;
1622
- };
1623
1779
  export type UniffiVTableCallbackInterfacePaymentObserver = {
1624
1780
  beforeSend: UniffiCallbackInterfacePaymentObserverMethod0;
1781
+ afterSend: UniffiCallbackInterfacePaymentObserverMethod1;
1782
+ uniffiFree: UniffiCallbackInterfaceFree;
1783
+ };
1784
+ export type UniffiVTableCallbackInterfacePrfProvider = {
1785
+ deriveSeeds: UniffiCallbackInterfacePrfProviderMethod0;
1786
+ isSupported: UniffiCallbackInterfacePrfProviderMethod1;
1787
+ createPasskey: UniffiCallbackInterfacePrfProviderMethod2;
1788
+ checkDomainAssociation: UniffiCallbackInterfacePrfProviderMethod3;
1625
1789
  uniffiFree: UniffiCallbackInterfaceFree;
1626
1790
  };
1627
1791
  export type UniffiVTableCallbackInterfaceRestClient = {
@@ -1630,9 +1794,9 @@ export type UniffiVTableCallbackInterfaceRestClient = {
1630
1794
  deleteRequest: UniffiCallbackInterfaceRestClientMethod2;
1631
1795
  uniffiFree: UniffiCallbackInterfaceFree;
1632
1796
  };
1633
- export type UniffiVTableCallbackInterfaceSessionManager = {
1634
- getSession: UniffiCallbackInterfaceSessionManagerMethod0;
1635
- setSession: UniffiCallbackInterfaceSessionManagerMethod1;
1797
+ export type UniffiVTableCallbackInterfaceSessionStore = {
1798
+ getSession: UniffiCallbackInterfaceSessionStoreMethod0;
1799
+ setSession: UniffiCallbackInterfaceSessionStoreMethod1;
1636
1800
  uniffiFree: UniffiCallbackInterfaceFree;
1637
1801
  };
1638
1802
  export type UniffiVTableCallbackInterfaceStorage = {
@@ -1640,7 +1804,7 @@ export type UniffiVTableCallbackInterfaceStorage = {
1640
1804
  getCachedItem: UniffiCallbackInterfaceStorageMethod1;
1641
1805
  setCachedItem: UniffiCallbackInterfaceStorageMethod2;
1642
1806
  listPayments: UniffiCallbackInterfaceStorageMethod3;
1643
- insertPayment: UniffiCallbackInterfaceStorageMethod4;
1807
+ applyPaymentUpdate: UniffiCallbackInterfaceStorageMethod4;
1644
1808
  insertPaymentMetadata: UniffiCallbackInterfaceStorageMethod5;
1645
1809
  getPaymentById: UniffiCallbackInterfaceStorageMethod6;
1646
1810
  getPaymentByInvoice: UniffiCallbackInterfaceStorageMethod7;
@@ -1665,6 +1829,10 @@ export type UniffiVTableCallbackInterfaceStorage = {
1665
1829
  updateRecordFromIncoming: UniffiCallbackInterfaceStorageMethod26;
1666
1830
  uniffiFree: UniffiCallbackInterfaceFree;
1667
1831
  };
1832
+ export type UniffiVTableCallbackInterfaceStorageBackend = {
1833
+ createStores: UniffiCallbackInterfaceStorageBackendMethod0;
1834
+ uniffiFree: UniffiCallbackInterfaceFree;
1835
+ };
1668
1836
 
1669
1837
  // UniffiRustFutureContinuationCallback is generated as part of the component interface's
1670
1838
  // ffi_definitions. However, we need it in the runtime.