@secondts/bark-react-native 0.6.3 → 0.8.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/README.md +1 -1
- package/cpp/generated/bark.cpp +191 -9
- package/cpp/generated/bark.hpp +10 -0
- package/lib/commonjs/generated/bark-ffi.js.map +1 -1
- package/lib/commonjs/generated/bark.js +274 -18
- package/lib/commonjs/generated/bark.js.map +1 -1
- package/lib/module/generated/bark-ffi.js.map +1 -1
- package/lib/module/generated/bark.js +273 -17
- package/lib/module/generated/bark.js.map +1 -1
- package/lib/typescript/commonjs/src/generated/bark-ffi.d.ts +13 -3
- package/lib/typescript/commonjs/src/generated/bark-ffi.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/generated/bark.d.ts +200 -17
- package/lib/typescript/commonjs/src/generated/bark.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/bark-ffi.d.ts +13 -3
- package/lib/typescript/module/src/generated/bark-ffi.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/bark.d.ts +200 -17
- package/lib/typescript/module/src/generated/bark.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/generated/bark-ffi.ts +30 -3
- package/src/generated/bark.ts +493 -27
package/README.md
CHANGED
|
@@ -60,7 +60,7 @@ npx expo install @secondts/bark-react-native@beta
|
|
|
60
60
|
|
|
61
61
|
```bash
|
|
62
62
|
# Or install a specific beta version
|
|
63
|
-
npx expo install @secondts/bark-react-native@0.
|
|
63
|
+
npx expo install @secondts/bark-react-native@0.8.0
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
For bare React Native projects, use:
|
package/cpp/generated/bark.cpp
CHANGED
|
@@ -374,9 +374,17 @@ extern "C" {
|
|
|
374
374
|
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_all_vtxos(
|
|
375
375
|
/*handle*/ uint64_t ptr
|
|
376
376
|
);
|
|
377
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_allow_lightning_send_to_exit(
|
|
378
|
+
/*handle*/ uint64_t ptr,
|
|
379
|
+
RustBuffer payment_hash
|
|
380
|
+
);
|
|
377
381
|
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_ark_info(
|
|
378
382
|
/*handle*/ uint64_t ptr
|
|
379
383
|
);
|
|
384
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_attempt_lightning_receive_exit(
|
|
385
|
+
/*handle*/ uint64_t ptr,
|
|
386
|
+
RustBuffer payment_hash
|
|
387
|
+
);
|
|
380
388
|
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_balance(
|
|
381
389
|
/*handle*/ uint64_t ptr
|
|
382
390
|
);
|
|
@@ -505,10 +513,18 @@ extern "C" {
|
|
|
505
513
|
/*handle*/ uint64_t ptr,
|
|
506
514
|
RustBuffer vtxo_base64
|
|
507
515
|
);
|
|
516
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_is_invoice_paid(
|
|
517
|
+
/*handle*/ uint64_t ptr,
|
|
518
|
+
RustBuffer payment_hash
|
|
519
|
+
);
|
|
508
520
|
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_lightning_receive_status(
|
|
509
521
|
/*handle*/ uint64_t ptr,
|
|
510
522
|
RustBuffer payment_hash
|
|
511
523
|
);
|
|
524
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_lightning_send_state(
|
|
525
|
+
/*handle*/ uint64_t ptr,
|
|
526
|
+
RustBuffer payment_hash
|
|
527
|
+
);
|
|
512
528
|
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_list_claimable_exits(
|
|
513
529
|
/*handle*/ uint64_t ptr
|
|
514
530
|
);
|
|
@@ -569,17 +585,20 @@ extern "C" {
|
|
|
569
585
|
/*handle*/ uint64_t ptr,
|
|
570
586
|
RustBuffer lightning_address,
|
|
571
587
|
uint64_t amount_sats,
|
|
572
|
-
RustBuffer comment
|
|
588
|
+
RustBuffer comment,
|
|
589
|
+
int8_t wait
|
|
573
590
|
);
|
|
574
591
|
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_pay_lightning_invoice(
|
|
575
592
|
/*handle*/ uint64_t ptr,
|
|
576
593
|
RustBuffer invoice,
|
|
577
|
-
RustBuffer amount_sats
|
|
594
|
+
RustBuffer amount_sats,
|
|
595
|
+
int8_t wait
|
|
578
596
|
);
|
|
579
597
|
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_pay_lightning_offer(
|
|
580
598
|
/*handle*/ uint64_t ptr,
|
|
581
599
|
RustBuffer offer,
|
|
582
|
-
RustBuffer amount_sats
|
|
600
|
+
RustBuffer amount_sats,
|
|
601
|
+
int8_t wait
|
|
583
602
|
);
|
|
584
603
|
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_peek_address(
|
|
585
604
|
/*handle*/ uint64_t ptr,
|
|
@@ -662,6 +681,9 @@ extern "C" {
|
|
|
662
681
|
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_stop_daemon(
|
|
663
682
|
/*handle*/ uint64_t ptr
|
|
664
683
|
);
|
|
684
|
+
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_stuck_failed_lightning_sends(
|
|
685
|
+
/*handle*/ uint64_t ptr
|
|
686
|
+
);
|
|
665
687
|
/*handle*/ uint64_t uniffi_bark_ffi_fn_method_wallet_sync(
|
|
666
688
|
/*handle*/ uint64_t ptr
|
|
667
689
|
);
|
|
@@ -950,8 +972,12 @@ extern "C" {
|
|
|
950
972
|
);
|
|
951
973
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_all_vtxos(
|
|
952
974
|
);
|
|
975
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_allow_lightning_send_to_exit(
|
|
976
|
+
);
|
|
953
977
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_ark_info(
|
|
954
978
|
);
|
|
979
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_attempt_lightning_receive_exit(
|
|
980
|
+
);
|
|
955
981
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_balance(
|
|
956
982
|
);
|
|
957
983
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_board_all(
|
|
@@ -1016,8 +1042,12 @@ extern "C" {
|
|
|
1016
1042
|
);
|
|
1017
1043
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_import_vtxo(
|
|
1018
1044
|
);
|
|
1045
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_is_invoice_paid(
|
|
1046
|
+
);
|
|
1019
1047
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_lightning_receive_status(
|
|
1020
1048
|
);
|
|
1049
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_lightning_send_state(
|
|
1050
|
+
);
|
|
1021
1051
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_list_claimable_exits(
|
|
1022
1052
|
);
|
|
1023
1053
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_mailbox_authorization(
|
|
@@ -1102,6 +1132,8 @@ extern "C" {
|
|
|
1102
1132
|
);
|
|
1103
1133
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_stop_daemon(
|
|
1104
1134
|
);
|
|
1135
|
+
uint16_t uniffi_bark_ffi_checksum_method_wallet_stuck_failed_lightning_sends(
|
|
1136
|
+
);
|
|
1105
1137
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_sync(
|
|
1106
1138
|
);
|
|
1107
1139
|
uint16_t uniffi_bark_ffi_checksum_method_wallet_sync_exits(
|
|
@@ -4825,6 +4857,14 @@ NativeBark::NativeBark(
|
|
|
4825
4857
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_all_vtxos(rt, thisVal, args, count);
|
|
4826
4858
|
}
|
|
4827
4859
|
);
|
|
4860
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_allow_lightning_send_to_exit"] = jsi::Function::createFromHostFunction(
|
|
4861
|
+
rt,
|
|
4862
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_allow_lightning_send_to_exit"),
|
|
4863
|
+
2,
|
|
4864
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4865
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_allow_lightning_send_to_exit(rt, thisVal, args, count);
|
|
4866
|
+
}
|
|
4867
|
+
);
|
|
4828
4868
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_ark_info"] = jsi::Function::createFromHostFunction(
|
|
4829
4869
|
rt,
|
|
4830
4870
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_ark_info"),
|
|
@@ -4833,6 +4873,14 @@ NativeBark::NativeBark(
|
|
|
4833
4873
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_ark_info(rt, thisVal, args, count);
|
|
4834
4874
|
}
|
|
4835
4875
|
);
|
|
4876
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_attempt_lightning_receive_exit"] = jsi::Function::createFromHostFunction(
|
|
4877
|
+
rt,
|
|
4878
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_attempt_lightning_receive_exit"),
|
|
4879
|
+
2,
|
|
4880
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
4881
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_attempt_lightning_receive_exit(rt, thisVal, args, count);
|
|
4882
|
+
}
|
|
4883
|
+
);
|
|
4836
4884
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_balance"] = jsi::Function::createFromHostFunction(
|
|
4837
4885
|
rt,
|
|
4838
4886
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_balance"),
|
|
@@ -5089,6 +5137,14 @@ NativeBark::NativeBark(
|
|
|
5089
5137
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_import_vtxo(rt, thisVal, args, count);
|
|
5090
5138
|
}
|
|
5091
5139
|
);
|
|
5140
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_is_invoice_paid"] = jsi::Function::createFromHostFunction(
|
|
5141
|
+
rt,
|
|
5142
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_is_invoice_paid"),
|
|
5143
|
+
2,
|
|
5144
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5145
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_is_invoice_paid(rt, thisVal, args, count);
|
|
5146
|
+
}
|
|
5147
|
+
);
|
|
5092
5148
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_lightning_receive_status"] = jsi::Function::createFromHostFunction(
|
|
5093
5149
|
rt,
|
|
5094
5150
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_lightning_receive_status"),
|
|
@@ -5097,6 +5153,14 @@ NativeBark::NativeBark(
|
|
|
5097
5153
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_lightning_receive_status(rt, thisVal, args, count);
|
|
5098
5154
|
}
|
|
5099
5155
|
);
|
|
5156
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_lightning_send_state"] = jsi::Function::createFromHostFunction(
|
|
5157
|
+
rt,
|
|
5158
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_lightning_send_state"),
|
|
5159
|
+
2,
|
|
5160
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5161
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_lightning_send_state(rt, thisVal, args, count);
|
|
5162
|
+
}
|
|
5163
|
+
);
|
|
5100
5164
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_list_claimable_exits"] = jsi::Function::createFromHostFunction(
|
|
5101
5165
|
rt,
|
|
5102
5166
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_list_claimable_exits"),
|
|
@@ -5228,7 +5292,7 @@ NativeBark::NativeBark(
|
|
|
5228
5292
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_pay_lightning_address"] = jsi::Function::createFromHostFunction(
|
|
5229
5293
|
rt,
|
|
5230
5294
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_pay_lightning_address"),
|
|
5231
|
-
|
|
5295
|
+
5,
|
|
5232
5296
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5233
5297
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_pay_lightning_address(rt, thisVal, args, count);
|
|
5234
5298
|
}
|
|
@@ -5236,7 +5300,7 @@ NativeBark::NativeBark(
|
|
|
5236
5300
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_pay_lightning_invoice"] = jsi::Function::createFromHostFunction(
|
|
5237
5301
|
rt,
|
|
5238
5302
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_pay_lightning_invoice"),
|
|
5239
|
-
|
|
5303
|
+
4,
|
|
5240
5304
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5241
5305
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_pay_lightning_invoice(rt, thisVal, args, count);
|
|
5242
5306
|
}
|
|
@@ -5244,7 +5308,7 @@ NativeBark::NativeBark(
|
|
|
5244
5308
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_pay_lightning_offer"] = jsi::Function::createFromHostFunction(
|
|
5245
5309
|
rt,
|
|
5246
5310
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_pay_lightning_offer"),
|
|
5247
|
-
|
|
5311
|
+
4,
|
|
5248
5312
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5249
5313
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_pay_lightning_offer(rt, thisVal, args, count);
|
|
5250
5314
|
}
|
|
@@ -5433,6 +5497,14 @@ NativeBark::NativeBark(
|
|
|
5433
5497
|
return this->cpp_uniffi_bark_ffi_fn_method_wallet_stop_daemon(rt, thisVal, args, count);
|
|
5434
5498
|
}
|
|
5435
5499
|
);
|
|
5500
|
+
props["ubrn_uniffi_bark_ffi_fn_method_wallet_stuck_failed_lightning_sends"] = jsi::Function::createFromHostFunction(
|
|
5501
|
+
rt,
|
|
5502
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_stuck_failed_lightning_sends"),
|
|
5503
|
+
1,
|
|
5504
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
5505
|
+
return this->cpp_uniffi_bark_ffi_fn_method_wallet_stuck_failed_lightning_sends(rt, thisVal, args, count);
|
|
5506
|
+
}
|
|
5507
|
+
);
|
|
5436
5508
|
props["ubrn_uniffi_bark_ffi_fn_method_wallet_sync"] = jsi::Function::createFromHostFunction(
|
|
5437
5509
|
rt,
|
|
5438
5510
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_fn_method_wallet_sync"),
|
|
@@ -6097,6 +6169,14 @@ NativeBark::NativeBark(
|
|
|
6097
6169
|
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_all_vtxos(rt, thisVal, args, count);
|
|
6098
6170
|
}
|
|
6099
6171
|
);
|
|
6172
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_allow_lightning_send_to_exit"] = jsi::Function::createFromHostFunction(
|
|
6173
|
+
rt,
|
|
6174
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_allow_lightning_send_to_exit"),
|
|
6175
|
+
0,
|
|
6176
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6177
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_allow_lightning_send_to_exit(rt, thisVal, args, count);
|
|
6178
|
+
}
|
|
6179
|
+
);
|
|
6100
6180
|
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_ark_info"] = jsi::Function::createFromHostFunction(
|
|
6101
6181
|
rt,
|
|
6102
6182
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_ark_info"),
|
|
@@ -6105,6 +6185,14 @@ NativeBark::NativeBark(
|
|
|
6105
6185
|
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_ark_info(rt, thisVal, args, count);
|
|
6106
6186
|
}
|
|
6107
6187
|
);
|
|
6188
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_attempt_lightning_receive_exit"] = jsi::Function::createFromHostFunction(
|
|
6189
|
+
rt,
|
|
6190
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_attempt_lightning_receive_exit"),
|
|
6191
|
+
0,
|
|
6192
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6193
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_attempt_lightning_receive_exit(rt, thisVal, args, count);
|
|
6194
|
+
}
|
|
6195
|
+
);
|
|
6108
6196
|
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_balance"] = jsi::Function::createFromHostFunction(
|
|
6109
6197
|
rt,
|
|
6110
6198
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_balance"),
|
|
@@ -6361,6 +6449,14 @@ NativeBark::NativeBark(
|
|
|
6361
6449
|
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_import_vtxo(rt, thisVal, args, count);
|
|
6362
6450
|
}
|
|
6363
6451
|
);
|
|
6452
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_is_invoice_paid"] = jsi::Function::createFromHostFunction(
|
|
6453
|
+
rt,
|
|
6454
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_is_invoice_paid"),
|
|
6455
|
+
0,
|
|
6456
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6457
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_is_invoice_paid(rt, thisVal, args, count);
|
|
6458
|
+
}
|
|
6459
|
+
);
|
|
6364
6460
|
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_lightning_receive_status"] = jsi::Function::createFromHostFunction(
|
|
6365
6461
|
rt,
|
|
6366
6462
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_lightning_receive_status"),
|
|
@@ -6369,6 +6465,14 @@ NativeBark::NativeBark(
|
|
|
6369
6465
|
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_lightning_receive_status(rt, thisVal, args, count);
|
|
6370
6466
|
}
|
|
6371
6467
|
);
|
|
6468
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_lightning_send_state"] = jsi::Function::createFromHostFunction(
|
|
6469
|
+
rt,
|
|
6470
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_lightning_send_state"),
|
|
6471
|
+
0,
|
|
6472
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6473
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_lightning_send_state(rt, thisVal, args, count);
|
|
6474
|
+
}
|
|
6475
|
+
);
|
|
6372
6476
|
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_list_claimable_exits"] = jsi::Function::createFromHostFunction(
|
|
6373
6477
|
rt,
|
|
6374
6478
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_list_claimable_exits"),
|
|
@@ -6705,6 +6809,14 @@ NativeBark::NativeBark(
|
|
|
6705
6809
|
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_stop_daemon(rt, thisVal, args, count);
|
|
6706
6810
|
}
|
|
6707
6811
|
);
|
|
6812
|
+
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_stuck_failed_lightning_sends"] = jsi::Function::createFromHostFunction(
|
|
6813
|
+
rt,
|
|
6814
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_stuck_failed_lightning_sends"),
|
|
6815
|
+
0,
|
|
6816
|
+
[this](jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args, size_t count) -> jsi::Value {
|
|
6817
|
+
return this->cpp_uniffi_bark_ffi_checksum_method_wallet_stuck_failed_lightning_sends(rt, thisVal, args, count);
|
|
6818
|
+
}
|
|
6819
|
+
);
|
|
6708
6820
|
props["ubrn_uniffi_bark_ffi_checksum_method_wallet_sync"] = jsi::Function::createFromHostFunction(
|
|
6709
6821
|
rt,
|
|
6710
6822
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_bark_ffi_checksum_method_wallet_sync"),
|
|
@@ -7322,6 +7434,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_all_vtxos(jsi::Runti
|
|
|
7322
7434
|
);
|
|
7323
7435
|
|
|
7324
7436
|
|
|
7437
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
7438
|
+
}
|
|
7439
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_allow_lightning_send_to_exit(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7440
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_allow_lightning_send_to_exit(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1])
|
|
7441
|
+
);
|
|
7442
|
+
|
|
7443
|
+
|
|
7325
7444
|
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
7326
7445
|
}
|
|
7327
7446
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_ark_info(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -7329,6 +7448,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_ark_info(jsi::Runtim
|
|
|
7329
7448
|
);
|
|
7330
7449
|
|
|
7331
7450
|
|
|
7451
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
7452
|
+
}
|
|
7453
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_attempt_lightning_receive_exit(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7454
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_attempt_lightning_receive_exit(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1])
|
|
7455
|
+
);
|
|
7456
|
+
|
|
7457
|
+
|
|
7332
7458
|
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
7333
7459
|
}
|
|
7334
7460
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_balance(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -7556,6 +7682,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_import_vtxo(jsi::Run
|
|
|
7556
7682
|
);
|
|
7557
7683
|
|
|
7558
7684
|
|
|
7685
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
7686
|
+
}
|
|
7687
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_is_invoice_paid(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7688
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_is_invoice_paid(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1])
|
|
7689
|
+
);
|
|
7690
|
+
|
|
7691
|
+
|
|
7559
7692
|
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
7560
7693
|
}
|
|
7561
7694
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_lightning_receive_status(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -7563,6 +7696,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_lightning_receive_st
|
|
|
7563
7696
|
);
|
|
7564
7697
|
|
|
7565
7698
|
|
|
7699
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
7700
|
+
}
|
|
7701
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_lightning_send_state(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7702
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_lightning_send_state(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1])
|
|
7703
|
+
);
|
|
7704
|
+
|
|
7705
|
+
|
|
7566
7706
|
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
7567
7707
|
}
|
|
7568
7708
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_list_claimable_exits(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -7687,21 +7827,21 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_offboard_vtxos(jsi::
|
|
|
7687
7827
|
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
7688
7828
|
}
|
|
7689
7829
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_pay_lightning_address(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7690
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_pay_lightning_address(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[2]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[3])
|
|
7830
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pay_lightning_address(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi_jsi::Bridging<uint64_t>::fromJs(rt, callInvoker, args[2]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[3]), uniffi_jsi::Bridging<int8_t>::fromJs(rt, callInvoker, args[4])
|
|
7691
7831
|
);
|
|
7692
7832
|
|
|
7693
7833
|
|
|
7694
7834
|
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
7695
7835
|
}
|
|
7696
7836
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_pay_lightning_invoice(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7697
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_pay_lightning_invoice(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2])
|
|
7837
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pay_lightning_invoice(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2]), uniffi_jsi::Bridging<int8_t>::fromJs(rt, callInvoker, args[3])
|
|
7698
7838
|
);
|
|
7699
7839
|
|
|
7700
7840
|
|
|
7701
7841
|
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
7702
7842
|
}
|
|
7703
7843
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_pay_lightning_offer(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
7704
|
-
auto value = uniffi_bark_ffi_fn_method_wallet_pay_lightning_offer(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2])
|
|
7844
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_pay_lightning_offer(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[1]), uniffi::bark::Bridging<RustBuffer>::fromJs(rt, callInvoker, args[2]), uniffi_jsi::Bridging<int8_t>::fromJs(rt, callInvoker, args[3])
|
|
7705
7845
|
);
|
|
7706
7846
|
|
|
7707
7847
|
|
|
@@ -7866,6 +8006,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_stop_daemon(jsi::Run
|
|
|
7866
8006
|
);
|
|
7867
8007
|
|
|
7868
8008
|
|
|
8009
|
+
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
8010
|
+
}
|
|
8011
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_stuck_failed_lightning_sends(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
8012
|
+
auto value = uniffi_bark_ffi_fn_method_wallet_stuck_failed_lightning_sends(uniffi_jsi::Bridging</*handle*/ uint64_t>::fromJs(rt, callInvoker, args[0])
|
|
8013
|
+
);
|
|
8014
|
+
|
|
8015
|
+
|
|
7869
8016
|
return uniffi_jsi::Bridging</*handle*/ uint64_t>::toJs(rt, callInvoker, value);
|
|
7870
8017
|
}
|
|
7871
8018
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_fn_method_wallet_sync(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -8497,6 +8644,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_all_vtxos(jsi:
|
|
|
8497
8644
|
);
|
|
8498
8645
|
|
|
8499
8646
|
|
|
8647
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
8648
|
+
}
|
|
8649
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_allow_lightning_send_to_exit(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
8650
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_allow_lightning_send_to_exit(
|
|
8651
|
+
);
|
|
8652
|
+
|
|
8653
|
+
|
|
8500
8654
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
8501
8655
|
}
|
|
8502
8656
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_ark_info(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -8504,6 +8658,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_ark_info(jsi::
|
|
|
8504
8658
|
);
|
|
8505
8659
|
|
|
8506
8660
|
|
|
8661
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
8662
|
+
}
|
|
8663
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_attempt_lightning_receive_exit(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
8664
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_attempt_lightning_receive_exit(
|
|
8665
|
+
);
|
|
8666
|
+
|
|
8667
|
+
|
|
8507
8668
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
8508
8669
|
}
|
|
8509
8670
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_balance(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -8728,6 +8889,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_import_vtxo(js
|
|
|
8728
8889
|
);
|
|
8729
8890
|
|
|
8730
8891
|
|
|
8892
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
8893
|
+
}
|
|
8894
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_is_invoice_paid(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
8895
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_is_invoice_paid(
|
|
8896
|
+
);
|
|
8897
|
+
|
|
8898
|
+
|
|
8731
8899
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
8732
8900
|
}
|
|
8733
8901
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_lightning_receive_status(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -8735,6 +8903,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_lightning_rece
|
|
|
8735
8903
|
);
|
|
8736
8904
|
|
|
8737
8905
|
|
|
8906
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
8907
|
+
}
|
|
8908
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_lightning_send_state(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
8909
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_lightning_send_state(
|
|
8910
|
+
);
|
|
8911
|
+
|
|
8912
|
+
|
|
8738
8913
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
8739
8914
|
}
|
|
8740
8915
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_list_claimable_exits(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
@@ -9029,6 +9204,13 @@ jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_stop_daemon(js
|
|
|
9029
9204
|
);
|
|
9030
9205
|
|
|
9031
9206
|
|
|
9207
|
+
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
9208
|
+
}
|
|
9209
|
+
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_stuck_failed_lightning_sends(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
|
9210
|
+
auto value = uniffi_bark_ffi_checksum_method_wallet_stuck_failed_lightning_sends(
|
|
9211
|
+
);
|
|
9212
|
+
|
|
9213
|
+
|
|
9032
9214
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
9033
9215
|
}
|
|
9034
9216
|
jsi::Value NativeBark::cpp_uniffi_bark_ffi_checksum_method_wallet_sync(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count) {
|
package/cpp/generated/bark.hpp
CHANGED
|
@@ -58,7 +58,9 @@ class NativeBark : public jsi::HostObject {
|
|
|
58
58
|
jsi::Value cpp_uniffi_bark_ffi_fn_constructor_wallet_open_with_onchain(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
59
59
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_all_exits_claimable_at_height(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
60
60
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_all_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
61
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_allow_lightning_send_to_exit(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
61
62
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_ark_info(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
63
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_attempt_lightning_receive_exit(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
62
64
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_balance(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
63
65
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_board_all(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
64
66
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_board_amount(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
@@ -91,7 +93,9 @@ class NativeBark : public jsi::HostObject {
|
|
|
91
93
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_history(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
92
94
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_history_by_payment_method(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
93
95
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_import_vtxo(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
96
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_is_invoice_paid(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
94
97
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_lightning_receive_status(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
98
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_lightning_send_state(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
95
99
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_list_claimable_exits(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
96
100
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_mailbox_authorization(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
97
101
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_mailbox_identifier(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
@@ -134,6 +138,7 @@ class NativeBark : public jsi::HostObject {
|
|
|
134
138
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_start_exit_for_entire_wallet(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
135
139
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_start_exit_for_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
136
140
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_stop_daemon(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
141
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_stuck_failed_lightning_sends(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
137
142
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_sync(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
138
143
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_sync_exits(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
139
144
|
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_sync_pending_boards(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
@@ -217,7 +222,9 @@ class NativeBark : public jsi::HostObject {
|
|
|
217
222
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_onchainwallet_sync(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
218
223
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_all_exits_claimable_at_height(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
219
224
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_all_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
225
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_allow_lightning_send_to_exit(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
220
226
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_ark_info(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
227
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_attempt_lightning_receive_exit(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
221
228
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_balance(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
222
229
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_board_all(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
223
230
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_board_amount(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
@@ -250,7 +257,9 @@ class NativeBark : public jsi::HostObject {
|
|
|
250
257
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_history(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
251
258
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_history_by_payment_method(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
252
259
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_import_vtxo(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
260
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_is_invoice_paid(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
253
261
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_lightning_receive_status(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
262
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_lightning_send_state(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
254
263
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_list_claimable_exits(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
255
264
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_mailbox_authorization(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
256
265
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_mailbox_identifier(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
@@ -293,6 +302,7 @@ class NativeBark : public jsi::HostObject {
|
|
|
293
302
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_start_exit_for_entire_wallet(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
294
303
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_start_exit_for_vtxos(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
295
304
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_stop_daemon(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
305
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_stuck_failed_lightning_sends(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
296
306
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_sync(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
297
307
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_sync_exits(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
298
308
|
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_sync_pending_boards(jsi::Runtime& rt, const jsi::Value& thisVal, const jsi::Value* args, size_t count);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["getter","globalThis","NativeBark","_default","exports","default","isRustFutureContinuationCallbackTypeCompatible","isUniffiForeignFutureTypeCompatible"],"sourceRoot":"../../../src","sources":["generated/bark-ffi.ts"],"mappings":";;;;;;AAAA;AACA;;AAEA;AACA;AACA;;
|
|
1
|
+
{"version":3,"names":["getter","globalThis","NativeBark","_default","exports","default","isRustFutureContinuationCallbackTypeCompatible","isUniffiForeignFutureTypeCompatible"],"sourceRoot":"../../../src","sources":["generated/bark-ffi.ts"],"mappings":";;;;;;AAAA;AACA;;AAEA;AACA;AACA;;AA2wBA;AACA;AACA;AACA;AACA;AACA,MAAMA,MAAmC,GAAGA,CAAA,KACzCC,UAAU,CAASC,UAAU;AAAC,IAAAC,QAAA,GAAAC,OAAA,CAAAC,OAAA,GAClBL,MAAM,EAErB;AAyKA;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":[]}
|