@breeztech/breez-sdk-spark-react-native 0.6.4-rc3 → 0.6.6

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.
@@ -333,6 +333,8 @@ void uniffi_breez_sdk_spark_fn_free_breezsdk(void *ptr,
333
333
  uniffi_breez_sdk_spark_fn_method_breezsdk_add_event_listener(void *ptr,
334
334
  uint64_t listener);
335
335
  /*handle*/ uint64_t
336
+ uniffi_breez_sdk_spark_fn_method_breezsdk_cancel_leaf_optimization(void *ptr);
337
+ /*handle*/ uint64_t
336
338
  uniffi_breez_sdk_spark_fn_method_breezsdk_check_lightning_address_available(
337
339
  void *ptr, RustBuffer req);
338
340
  /*handle*/ uint64_t
@@ -351,6 +353,9 @@ uniffi_breez_sdk_spark_fn_method_breezsdk_disconnect(void *ptr);
351
353
  /*handle*/ uint64_t
352
354
  uniffi_breez_sdk_spark_fn_method_breezsdk_get_info(void *ptr,
353
355
  RustBuffer request);
356
+ RustBuffer
357
+ uniffi_breez_sdk_spark_fn_method_breezsdk_get_leaf_optimization_progress(
358
+ void *ptr, RustCallStatus *uniffi_out_err);
354
359
  /*handle*/ uint64_t
355
360
  uniffi_breez_sdk_spark_fn_method_breezsdk_get_lightning_address(void *ptr);
356
361
  /*handle*/ uint64_t
@@ -407,6 +412,8 @@ uniffi_breez_sdk_spark_fn_method_breezsdk_send_payment(void *ptr,
407
412
  /*handle*/ uint64_t
408
413
  uniffi_breez_sdk_spark_fn_method_breezsdk_sign_message(void *ptr,
409
414
  RustBuffer request);
415
+ void uniffi_breez_sdk_spark_fn_method_breezsdk_start_leaf_optimization(
416
+ void *ptr, RustCallStatus *uniffi_out_err);
410
417
  /*handle*/ uint64_t
411
418
  uniffi_breez_sdk_spark_fn_method_breezsdk_sync_wallet(void *ptr,
412
419
  RustBuffer request);
@@ -737,6 +744,8 @@ uint16_t
737
744
  uniffi_breez_sdk_spark_checksum_method_bitcoinchainservice_recommended_fees();
738
745
  uint16_t uniffi_breez_sdk_spark_checksum_method_breezsdk_add_event_listener();
739
746
  uint16_t
747
+ uniffi_breez_sdk_spark_checksum_method_breezsdk_cancel_leaf_optimization();
748
+ uint16_t
740
749
  uniffi_breez_sdk_spark_checksum_method_breezsdk_check_lightning_address_available();
741
750
  uint16_t uniffi_breez_sdk_spark_checksum_method_breezsdk_check_message();
742
751
  uint16_t uniffi_breez_sdk_spark_checksum_method_breezsdk_claim_deposit();
@@ -746,6 +755,8 @@ uniffi_breez_sdk_spark_checksum_method_breezsdk_delete_lightning_address();
746
755
  uint16_t uniffi_breez_sdk_spark_checksum_method_breezsdk_disconnect();
747
756
  uint16_t uniffi_breez_sdk_spark_checksum_method_breezsdk_get_info();
748
757
  uint16_t
758
+ uniffi_breez_sdk_spark_checksum_method_breezsdk_get_leaf_optimization_progress();
759
+ uint16_t
749
760
  uniffi_breez_sdk_spark_checksum_method_breezsdk_get_lightning_address();
750
761
  uint16_t uniffi_breez_sdk_spark_checksum_method_breezsdk_get_payment();
751
762
  uint16_t uniffi_breez_sdk_spark_checksum_method_breezsdk_get_token_issuer();
@@ -770,6 +781,8 @@ uint16_t
770
781
  uniffi_breez_sdk_spark_checksum_method_breezsdk_remove_event_listener();
771
782
  uint16_t uniffi_breez_sdk_spark_checksum_method_breezsdk_send_payment();
772
783
  uint16_t uniffi_breez_sdk_spark_checksum_method_breezsdk_sign_message();
784
+ uint16_t
785
+ uniffi_breez_sdk_spark_checksum_method_breezsdk_start_leaf_optimization();
773
786
  uint16_t uniffi_breez_sdk_spark_checksum_method_breezsdk_sync_wallet();
774
787
  uint16_t uniffi_breez_sdk_spark_checksum_method_breezsdk_update_user_settings();
775
788
  uint16_t
@@ -8768,6 +8781,18 @@ NativeBreezSdkSpark::NativeBreezSdkSpark(
8768
8781
  ->cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_add_event_listener(
8769
8782
  rt, thisVal, args, count);
8770
8783
  });
8784
+ props["ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_cancel_leaf_"
8785
+ "optimization"] = jsi::Function::createFromHostFunction(
8786
+ rt,
8787
+ jsi::PropNameID::forAscii(rt, "ubrn_uniffi_breez_sdk_spark_fn_method_"
8788
+ "breezsdk_cancel_leaf_optimization"),
8789
+ 1,
8790
+ [this](jsi::Runtime &rt, const jsi::Value &thisVal,
8791
+ const jsi::Value *args, size_t count) -> jsi::Value {
8792
+ return this
8793
+ ->cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_cancel_leaf_optimization(
8794
+ rt, thisVal, args, count);
8795
+ });
8771
8796
  props["ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_check_lightning_"
8772
8797
  "address_available"] = jsi::Function::createFromHostFunction(
8773
8798
  rt,
@@ -8854,6 +8879,18 @@ NativeBreezSdkSpark::NativeBreezSdkSpark(
8854
8879
  return this->cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_get_info(
8855
8880
  rt, thisVal, args, count);
8856
8881
  });
8882
+ props["ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_get_leaf_optimization_"
8883
+ "progress"] = jsi::Function::createFromHostFunction(
8884
+ rt,
8885
+ jsi::PropNameID::forAscii(rt, "ubrn_uniffi_breez_sdk_spark_fn_method_"
8886
+ "breezsdk_get_leaf_optimization_progress"),
8887
+ 1,
8888
+ [this](jsi::Runtime &rt, const jsi::Value &thisVal,
8889
+ const jsi::Value *args, size_t count) -> jsi::Value {
8890
+ return this
8891
+ ->cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_get_leaf_optimization_progress(
8892
+ rt, thisVal, args, count);
8893
+ });
8857
8894
  props["ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_get_lightning_"
8858
8895
  "address"] = jsi::Function::createFromHostFunction(
8859
8896
  rt,
@@ -9112,6 +9149,18 @@ NativeBreezSdkSpark::NativeBreezSdkSpark(
9112
9149
  ->cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_sign_message(
9113
9150
  rt, thisVal, args, count);
9114
9151
  });
9152
+ props["ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_start_leaf_"
9153
+ "optimization"] = jsi::Function::createFromHostFunction(
9154
+ rt,
9155
+ jsi::PropNameID::forAscii(rt, "ubrn_uniffi_breez_sdk_spark_fn_method_"
9156
+ "breezsdk_start_leaf_optimization"),
9157
+ 1,
9158
+ [this](jsi::Runtime &rt, const jsi::Value &thisVal,
9159
+ const jsi::Value *args, size_t count) -> jsi::Value {
9160
+ return this
9161
+ ->cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_start_leaf_optimization(
9162
+ rt, thisVal, args, count);
9163
+ });
9115
9164
  props["ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_sync_wallet"] =
9116
9165
  jsi::Function::createFromHostFunction(
9117
9166
  rt,
@@ -10582,6 +10631,18 @@ NativeBreezSdkSpark::NativeBreezSdkSpark(
10582
10631
  ->cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_add_event_listener(
10583
10632
  rt, thisVal, args, count);
10584
10633
  });
10634
+ props["ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_cancel_leaf_"
10635
+ "optimization"] = jsi::Function::createFromHostFunction(
10636
+ rt,
10637
+ jsi::PropNameID::forAscii(rt, "ubrn_uniffi_breez_sdk_spark_checksum_"
10638
+ "method_breezsdk_cancel_leaf_optimization"),
10639
+ 0,
10640
+ [this](jsi::Runtime &rt, const jsi::Value &thisVal,
10641
+ const jsi::Value *args, size_t count) -> jsi::Value {
10642
+ return this
10643
+ ->cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_cancel_leaf_optimization(
10644
+ rt, thisVal, args, count);
10645
+ });
10585
10646
  props["ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_check_lightning_"
10586
10647
  "address_available"] = jsi::Function::createFromHostFunction(
10587
10648
  rt,
@@ -10668,6 +10729,19 @@ NativeBreezSdkSpark::NativeBreezSdkSpark(
10668
10729
  ->cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_get_info(
10669
10730
  rt, thisVal, args, count);
10670
10731
  });
10732
+ props["ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_get_leaf_"
10733
+ "optimization_progress"] = jsi::Function::createFromHostFunction(
10734
+ rt,
10735
+ jsi::PropNameID::forAscii(rt,
10736
+ "ubrn_uniffi_breez_sdk_spark_checksum_method_"
10737
+ "breezsdk_get_leaf_optimization_progress"),
10738
+ 0,
10739
+ [this](jsi::Runtime &rt, const jsi::Value &thisVal,
10740
+ const jsi::Value *args, size_t count) -> jsi::Value {
10741
+ return this
10742
+ ->cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_get_leaf_optimization_progress(
10743
+ rt, thisVal, args, count);
10744
+ });
10671
10745
  props["ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_get_lightning_"
10672
10746
  "address"] = jsi::Function::createFromHostFunction(
10673
10747
  rt,
@@ -10922,6 +10996,18 @@ NativeBreezSdkSpark::NativeBreezSdkSpark(
10922
10996
  ->cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_sign_message(
10923
10997
  rt, thisVal, args, count);
10924
10998
  });
10999
+ props["ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_start_leaf_"
11000
+ "optimization"] = jsi::Function::createFromHostFunction(
11001
+ rt,
11002
+ jsi::PropNameID::forAscii(rt, "ubrn_uniffi_breez_sdk_spark_checksum_"
11003
+ "method_breezsdk_start_leaf_optimization"),
11004
+ 0,
11005
+ [this](jsi::Runtime &rt, const jsi::Value &thisVal,
11006
+ const jsi::Value *args, size_t count) -> jsi::Value {
11007
+ return this
11008
+ ->cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_start_leaf_optimization(
11009
+ rt, thisVal, args, count);
11010
+ });
10925
11011
  props["ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_sync_wallet"] =
10926
11012
  jsi::Function::createFromHostFunction(
10927
11013
  rt,
@@ -12197,6 +12283,17 @@ jsi::Value NativeBreezSdkSpark::
12197
12283
  return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker,
12198
12284
  value);
12199
12285
  }
12286
+ jsi::Value NativeBreezSdkSpark::
12287
+ cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_cancel_leaf_optimization(
12288
+ jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
12289
+ size_t count) {
12290
+ auto value =
12291
+ uniffi_breez_sdk_spark_fn_method_breezsdk_cancel_leaf_optimization(
12292
+ uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[0]));
12293
+
12294
+ return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker,
12295
+ value);
12296
+ }
12200
12297
  jsi::Value NativeBreezSdkSpark::
12201
12298
  cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_check_lightning_address_available(
12202
12299
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
@@ -12279,6 +12376,22 @@ NativeBreezSdkSpark::cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_get_info(
12279
12376
  return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker,
12280
12377
  value);
12281
12378
  }
12379
+ jsi::Value NativeBreezSdkSpark::
12380
+ cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_get_leaf_optimization_progress(
12381
+ jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
12382
+ size_t count) {
12383
+ RustCallStatus status =
12384
+ uniffi::breez_sdk_spark::Bridging<RustCallStatus>::rustSuccess(rt);
12385
+ auto value =
12386
+ uniffi_breez_sdk_spark_fn_method_breezsdk_get_leaf_optimization_progress(
12387
+ uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[0]),
12388
+ &status);
12389
+ uniffi::breez_sdk_spark::Bridging<RustCallStatus>::copyIntoJs(
12390
+ rt, callInvoker, status, args[count - 1]);
12391
+
12392
+ return uniffi::breez_sdk_spark::Bridging<RustBuffer>::toJs(rt, callInvoker,
12393
+ value);
12394
+ }
12282
12395
  jsi::Value NativeBreezSdkSpark::
12283
12396
  cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_get_lightning_address(
12284
12397
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
@@ -12524,6 +12637,19 @@ NativeBreezSdkSpark::cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_sign_message(
12524
12637
  return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker,
12525
12638
  value);
12526
12639
  }
12640
+ jsi::Value NativeBreezSdkSpark::
12641
+ cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_start_leaf_optimization(
12642
+ jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
12643
+ size_t count) {
12644
+ RustCallStatus status =
12645
+ uniffi::breez_sdk_spark::Bridging<RustCallStatus>::rustSuccess(rt);
12646
+ uniffi_breez_sdk_spark_fn_method_breezsdk_start_leaf_optimization(
12647
+ uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[0]), &status);
12648
+ uniffi::breez_sdk_spark::Bridging<RustCallStatus>::copyIntoJs(
12649
+ rt, callInvoker, status, args[count - 1]);
12650
+
12651
+ return jsi::Value::undefined();
12652
+ }
12527
12653
  jsi::Value
12528
12654
  NativeBreezSdkSpark::cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_sync_wallet(
12529
12655
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
@@ -14042,6 +14168,15 @@ jsi::Value NativeBreezSdkSpark::
14042
14168
 
14043
14169
  return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
14044
14170
  }
14171
+ jsi::Value NativeBreezSdkSpark::
14172
+ cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_cancel_leaf_optimization(
14173
+ jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
14174
+ size_t count) {
14175
+ auto value =
14176
+ uniffi_breez_sdk_spark_checksum_method_breezsdk_cancel_leaf_optimization();
14177
+
14178
+ return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
14179
+ }
14045
14180
  jsi::Value NativeBreezSdkSpark::
14046
14181
  cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_check_lightning_address_available(
14047
14182
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
@@ -14101,6 +14236,15 @@ jsi::Value NativeBreezSdkSpark::
14101
14236
 
14102
14237
  return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
14103
14238
  }
14239
+ jsi::Value NativeBreezSdkSpark::
14240
+ cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_get_leaf_optimization_progress(
14241
+ jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
14242
+ size_t count) {
14243
+ auto value =
14244
+ uniffi_breez_sdk_spark_checksum_method_breezsdk_get_leaf_optimization_progress();
14245
+
14246
+ return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
14247
+ }
14104
14248
  jsi::Value NativeBreezSdkSpark::
14105
14249
  cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_get_lightning_address(
14106
14250
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
@@ -14282,6 +14426,15 @@ jsi::Value NativeBreezSdkSpark::
14282
14426
 
14283
14427
  return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
14284
14428
  }
14429
+ jsi::Value NativeBreezSdkSpark::
14430
+ cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_start_leaf_optimization(
14431
+ jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
14432
+ size_t count) {
14433
+ auto value =
14434
+ uniffi_breez_sdk_spark_checksum_method_breezsdk_start_leaf_optimization();
14435
+
14436
+ return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
14437
+ }
14285
14438
  jsi::Value NativeBreezSdkSpark::
14286
14439
  cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_sync_wallet(
14287
14440
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
@@ -64,6 +64,10 @@ protected:
64
64
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
65
65
  size_t count);
66
66
  jsi::Value
67
+ cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_cancel_leaf_optimization(
68
+ jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
69
+ size_t count);
70
+ jsi::Value
67
71
  cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_check_lightning_address_available(
68
72
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
69
73
  size_t count);
@@ -87,6 +91,10 @@ protected:
87
91
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
88
92
  size_t count);
89
93
  jsi::Value
94
+ cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_get_leaf_optimization_progress(
95
+ jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
96
+ size_t count);
97
+ jsi::Value
90
98
  cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_get_lightning_address(
91
99
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
92
100
  size_t count);
@@ -153,6 +161,10 @@ protected:
153
161
  jsi::Value cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_sign_message(
154
162
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
155
163
  size_t count);
164
+ jsi::Value
165
+ cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_start_leaf_optimization(
166
+ jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
167
+ size_t count);
156
168
  jsi::Value cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_sync_wallet(
157
169
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
158
170
  size_t count);
@@ -561,6 +573,10 @@ protected:
561
573
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
562
574
  size_t count);
563
575
  jsi::Value
576
+ cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_cancel_leaf_optimization(
577
+ jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
578
+ size_t count);
579
+ jsi::Value
564
580
  cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_check_lightning_address_available(
565
581
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
566
582
  size_t count);
@@ -585,6 +601,10 @@ protected:
585
601
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
586
602
  size_t count);
587
603
  jsi::Value
604
+ cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_get_leaf_optimization_progress(
605
+ jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
606
+ size_t count);
607
+ jsi::Value
588
608
  cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_get_lightning_address(
589
609
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
590
610
  size_t count);
@@ -660,6 +680,10 @@ protected:
660
680
  jsi::Value cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_sign_message(
661
681
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
662
682
  size_t count);
683
+ jsi::Value
684
+ cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_start_leaf_optimization(
685
+ jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
686
+ size_t count);
663
687
  jsi::Value cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_sync_wallet(
664
688
  jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
665
689
  size_t count);
@@ -1 +1 @@
1
- {"version":3,"names":["getter","globalThis","NativeBreezSdkSpark","_default","exports","default","isRustFutureContinuationCallbackTypeCompatible","isUniffiForeignFutureTypeCompatible"],"sourceRoot":"../../../src","sources":["generated/breez_sdk_spark-ffi.ts"],"mappings":";;;;;;AAAA;AACA;;AA4tBA;AACA;AACA;AACA;AACA;AACA,MAAMA,MAAmC,GAAGA,CAAA,KACzCC,UAAU,CAASC,mBAAmB;AAAC,IAAAC,QAAA,GAAAC,OAAA,CAAAC,OAAA,GAC3BL,MAAM,EAErB;AA2YA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMM,8CAGL,GAAG,IAAI;AACR,MAAMC,mCAGL,GAAG,IAAI","ignoreList":[]}
1
+ {"version":3,"names":["getter","globalThis","NativeBreezSdkSpark","_default","exports","default","isRustFutureContinuationCallbackTypeCompatible","isUniffiForeignFutureTypeCompatible"],"sourceRoot":"../../../src","sources":["generated/breez_sdk_spark-ffi.ts"],"mappings":";;;;;;AAAA;AACA;;AA0uBA;AACA;AACA;AACA;AACA;AACA,MAAMA,MAAmC,GAAGA,CAAA,KACzCC,UAAU,CAASC,mBAAmB;AAAC,IAAAC,QAAA,GAAAC,OAAA,CAAAC,OAAA,GAC3BL,MAAM,EAErB;AA2YA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMM,8CAGL,GAAG,IAAI;AACR,MAAMC,mCAGL,GAAG,IAAI","ignoreList":[]}