@breeztech/breez-sdk-spark-react-native 0.13.11-dev1 → 0.13.12-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.
- package/cpp/generated/breez_sdk_spark.cpp +1246 -98
- package/cpp/generated/breez_sdk_spark.hpp +88 -0
- package/lib/commonjs/generated/breez_sdk_spark-ffi.js.map +1 -1
- package/lib/commonjs/generated/breez_sdk_spark.js +152 -3
- package/lib/commonjs/generated/breez_sdk_spark.js.map +1 -1
- package/lib/module/generated/breez_sdk_spark-ffi.js.map +1 -1
- package/lib/module/generated/breez_sdk_spark.js +151 -2
- package/lib/module/generated/breez_sdk_spark.js.map +1 -1
- package/lib/typescript/commonjs/src/generated/breez_sdk_spark-ffi.d.ts +33 -0
- package/lib/typescript/commonjs/src/generated/breez_sdk_spark-ffi.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/generated/breez_sdk_spark.d.ts +388 -1
- package/lib/typescript/commonjs/src/generated/breez_sdk_spark.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/breez_sdk_spark-ffi.d.ts +33 -0
- package/lib/typescript/module/src/generated/breez_sdk_spark-ffi.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/breez_sdk_spark.d.ts +388 -1
- package/lib/typescript/module/src/generated/breez_sdk_spark.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/generated/breez_sdk_spark-ffi.ts +101 -0
- package/src/generated/breez_sdk_spark.ts +1093 -0
|
@@ -206,6 +206,12 @@ protected:
|
|
|
206
206
|
jsi::Value cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_update_user_settings(
|
|
207
207
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
208
208
|
size_t count);
|
|
209
|
+
jsi::Value cpp_uniffi_breez_sdk_spark_fn_clone_connectionmanager(
|
|
210
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
211
|
+
size_t count);
|
|
212
|
+
jsi::Value cpp_uniffi_breez_sdk_spark_fn_free_connectionmanager(
|
|
213
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
214
|
+
size_t count);
|
|
209
215
|
jsi::Value cpp_uniffi_breez_sdk_spark_fn_clone_externalsigner(
|
|
210
216
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
211
217
|
size_t count);
|
|
@@ -391,6 +397,10 @@ protected:
|
|
|
391
397
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
392
398
|
size_t count);
|
|
393
399
|
jsi::Value
|
|
400
|
+
cpp_uniffi_breez_sdk_spark_fn_method_sdkbuilder_with_connection_manager(
|
|
401
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
402
|
+
size_t count);
|
|
403
|
+
jsi::Value
|
|
394
404
|
cpp_uniffi_breez_sdk_spark_fn_method_sdkbuilder_with_default_storage(
|
|
395
405
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
396
406
|
size_t count);
|
|
@@ -411,9 +421,38 @@ protected:
|
|
|
411
421
|
cpp_uniffi_breez_sdk_spark_fn_method_sdkbuilder_with_rest_chain_service(
|
|
412
422
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
413
423
|
size_t count);
|
|
424
|
+
jsi::Value
|
|
425
|
+
cpp_uniffi_breez_sdk_spark_fn_method_sdkbuilder_with_session_manager(
|
|
426
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
427
|
+
size_t count);
|
|
428
|
+
jsi::Value
|
|
429
|
+
cpp_uniffi_breez_sdk_spark_fn_method_sdkbuilder_with_ssp_connection_manager(
|
|
430
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
431
|
+
size_t count);
|
|
414
432
|
jsi::Value cpp_uniffi_breez_sdk_spark_fn_method_sdkbuilder_with_storage(
|
|
415
433
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
416
434
|
size_t count);
|
|
435
|
+
jsi::Value cpp_uniffi_breez_sdk_spark_fn_clone_sessionmanager(
|
|
436
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
437
|
+
size_t count);
|
|
438
|
+
jsi::Value cpp_uniffi_breez_sdk_spark_fn_free_sessionmanager(
|
|
439
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
440
|
+
size_t count);
|
|
441
|
+
jsi::Value cpp_uniffi_breez_sdk_spark_fn_init_callback_vtable_sessionmanager(
|
|
442
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
443
|
+
size_t count);
|
|
444
|
+
jsi::Value cpp_uniffi_breez_sdk_spark_fn_method_sessionmanager_get_session(
|
|
445
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
446
|
+
size_t count);
|
|
447
|
+
jsi::Value cpp_uniffi_breez_sdk_spark_fn_method_sessionmanager_set_session(
|
|
448
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
449
|
+
size_t count);
|
|
450
|
+
jsi::Value cpp_uniffi_breez_sdk_spark_fn_clone_sspconnectionmanager(
|
|
451
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
452
|
+
size_t count);
|
|
453
|
+
jsi::Value cpp_uniffi_breez_sdk_spark_fn_free_sspconnectionmanager(
|
|
454
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
455
|
+
size_t count);
|
|
417
456
|
jsi::Value cpp_uniffi_breez_sdk_spark_fn_clone_storage(
|
|
418
457
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
419
458
|
size_t count);
|
|
@@ -569,6 +608,15 @@ protected:
|
|
|
569
608
|
jsi::Value cpp_uniffi_breez_sdk_spark_fn_func_init_logging(
|
|
570
609
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
571
610
|
size_t count);
|
|
611
|
+
jsi::Value cpp_uniffi_breez_sdk_spark_fn_func_new_connection_manager(
|
|
612
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
613
|
+
size_t count);
|
|
614
|
+
jsi::Value cpp_uniffi_breez_sdk_spark_fn_func_new_rest_chain_service(
|
|
615
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
616
|
+
size_t count);
|
|
617
|
+
jsi::Value cpp_uniffi_breez_sdk_spark_fn_func_new_ssp_connection_manager(
|
|
618
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
619
|
+
size_t count);
|
|
572
620
|
jsi::Value cpp_ffi_breez_sdk_spark_rust_future_poll_u8(
|
|
573
621
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
574
622
|
size_t count);
|
|
@@ -743,6 +791,16 @@ protected:
|
|
|
743
791
|
jsi::Value cpp_uniffi_breez_sdk_spark_checksum_func_init_logging(
|
|
744
792
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
745
793
|
size_t count);
|
|
794
|
+
jsi::Value cpp_uniffi_breez_sdk_spark_checksum_func_new_connection_manager(
|
|
795
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
796
|
+
size_t count);
|
|
797
|
+
jsi::Value cpp_uniffi_breez_sdk_spark_checksum_func_new_rest_chain_service(
|
|
798
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
799
|
+
size_t count);
|
|
800
|
+
jsi::Value
|
|
801
|
+
cpp_uniffi_breez_sdk_spark_checksum_func_new_ssp_connection_manager(
|
|
802
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
803
|
+
size_t count);
|
|
746
804
|
jsi::Value
|
|
747
805
|
cpp_uniffi_breez_sdk_spark_checksum_method_bitcoinchainservice_get_address_utxos(
|
|
748
806
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
@@ -1049,6 +1107,10 @@ protected:
|
|
|
1049
1107
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1050
1108
|
size_t count);
|
|
1051
1109
|
jsi::Value
|
|
1110
|
+
cpp_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_connection_manager(
|
|
1111
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1112
|
+
size_t count);
|
|
1113
|
+
jsi::Value
|
|
1052
1114
|
cpp_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_default_storage(
|
|
1053
1115
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1054
1116
|
size_t count);
|
|
@@ -1071,10 +1133,26 @@ protected:
|
|
|
1071
1133
|
cpp_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_rest_chain_service(
|
|
1072
1134
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1073
1135
|
size_t count);
|
|
1136
|
+
jsi::Value
|
|
1137
|
+
cpp_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_session_manager(
|
|
1138
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1139
|
+
size_t count);
|
|
1140
|
+
jsi::Value
|
|
1141
|
+
cpp_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_ssp_connection_manager(
|
|
1142
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1143
|
+
size_t count);
|
|
1074
1144
|
jsi::Value cpp_uniffi_breez_sdk_spark_checksum_method_sdkbuilder_with_storage(
|
|
1075
1145
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1076
1146
|
size_t count);
|
|
1077
1147
|
jsi::Value
|
|
1148
|
+
cpp_uniffi_breez_sdk_spark_checksum_method_sessionmanager_get_session(
|
|
1149
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1150
|
+
size_t count);
|
|
1151
|
+
jsi::Value
|
|
1152
|
+
cpp_uniffi_breez_sdk_spark_checksum_method_sessionmanager_set_session(
|
|
1153
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1154
|
+
size_t count);
|
|
1155
|
+
jsi::Value
|
|
1078
1156
|
cpp_uniffi_breez_sdk_spark_checksum_method_storage_delete_cached_item(
|
|
1079
1157
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1080
1158
|
size_t count);
|
|
@@ -1220,6 +1298,9 @@ protected:
|
|
|
1220
1298
|
jsi::Value cpp_uniffi_internal_fn_method_breezsdk_ffi__bless_pointer(
|
|
1221
1299
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1222
1300
|
size_t count);
|
|
1301
|
+
jsi::Value cpp_uniffi_internal_fn_method_connectionmanager_ffi__bless_pointer(
|
|
1302
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1303
|
+
size_t count);
|
|
1223
1304
|
jsi::Value cpp_uniffi_internal_fn_method_externalsigner_ffi__bless_pointer(
|
|
1224
1305
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1225
1306
|
size_t count);
|
|
@@ -1242,6 +1323,13 @@ protected:
|
|
|
1242
1323
|
jsi::Value cpp_uniffi_internal_fn_method_sdkbuilder_ffi__bless_pointer(
|
|
1243
1324
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1244
1325
|
size_t count);
|
|
1326
|
+
jsi::Value cpp_uniffi_internal_fn_method_sessionmanager_ffi__bless_pointer(
|
|
1327
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1328
|
+
size_t count);
|
|
1329
|
+
jsi::Value
|
|
1330
|
+
cpp_uniffi_internal_fn_method_sspconnectionmanager_ffi__bless_pointer(
|
|
1331
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1332
|
+
size_t count);
|
|
1245
1333
|
jsi::Value cpp_uniffi_internal_fn_method_storage_ffi__bless_pointer(
|
|
1246
1334
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1247
1335
|
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;;
|
|
1
|
+
{"version":3,"names":["getter","globalThis","NativeBreezSdkSpark","_default","exports","default","isRustFutureContinuationCallbackTypeCompatible","isUniffiForeignFutureTypeCompatible"],"sourceRoot":"../../../src","sources":["generated/breez_sdk_spark-ffi.ts"],"mappings":";;;;;;AAAA;AACA;;AAkjCA;AACA;AACA;AACA;AACA;AACA,MAAMA,MAAmC,GAAGA,CAAA,KACzCC,UAAU,CAASC,mBAAmB;AAAC,IAAAC,QAAA,GAAAC,OAAA,CAAAC,OAAA,GAC3BL,MAAM,EAErB;AA4lBA;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":[]}
|