@breeztech/breez-sdk-spark-react-native 0.17.2 → 0.18.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/cpp/generated/breez_sdk_spark.cpp +1362 -85
- package/cpp/generated/breez_sdk_spark.hpp +70 -0
- package/lib/commonjs/generated/breez_sdk_spark-ffi.js.map +1 -1
- package/lib/commonjs/generated/breez_sdk_spark.js +149 -10
- 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 +148 -9
- package/lib/module/generated/breez_sdk_spark.js.map +1 -1
- package/lib/typescript/commonjs/src/generated/breez_sdk_spark-ffi.d.ts +29 -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 +353 -3
- 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 +29 -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 +353 -3
- 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 +87 -0
- package/src/generated/breez_sdk_spark.ts +1280 -251
|
@@ -251,6 +251,32 @@ protected:
|
|
|
251
251
|
cpp_uniffi_breez_sdk_spark_fn_method_externalbreezsigner_hmac_sha256(
|
|
252
252
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
253
253
|
size_t count);
|
|
254
|
+
jsi::Value cpp_uniffi_breez_sdk_spark_fn_clone_externalsigningsigner(
|
|
255
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
256
|
+
size_t count);
|
|
257
|
+
jsi::Value cpp_uniffi_breez_sdk_spark_fn_free_externalsigningsigner(
|
|
258
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
259
|
+
size_t count);
|
|
260
|
+
jsi::Value
|
|
261
|
+
cpp_uniffi_breez_sdk_spark_fn_init_callback_vtable_externalsigningsigner(
|
|
262
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
263
|
+
size_t count);
|
|
264
|
+
jsi::Value
|
|
265
|
+
cpp_uniffi_breez_sdk_spark_fn_method_externalsigningsigner_derive_public_key(
|
|
266
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
267
|
+
size_t count);
|
|
268
|
+
jsi::Value
|
|
269
|
+
cpp_uniffi_breez_sdk_spark_fn_method_externalsigningsigner_sign_ecdsa(
|
|
270
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
271
|
+
size_t count);
|
|
272
|
+
jsi::Value
|
|
273
|
+
cpp_uniffi_breez_sdk_spark_fn_method_externalsigningsigner_sign_ecdsa_recoverable(
|
|
274
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
275
|
+
size_t count);
|
|
276
|
+
jsi::Value
|
|
277
|
+
cpp_uniffi_breez_sdk_spark_fn_method_externalsigningsigner_sign_hash_schnorr(
|
|
278
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
279
|
+
size_t count);
|
|
254
280
|
jsi::Value cpp_uniffi_breez_sdk_spark_fn_clone_externalsparksigner(
|
|
255
281
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
256
282
|
size_t count);
|
|
@@ -449,6 +475,10 @@ protected:
|
|
|
449
475
|
cpp_uniffi_breez_sdk_spark_fn_constructor_sdkbuilder_new_with_signer(
|
|
450
476
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
451
477
|
size_t count);
|
|
478
|
+
jsi::Value
|
|
479
|
+
cpp_uniffi_breez_sdk_spark_fn_constructor_sdkbuilder_new_with_signing_only_signer(
|
|
480
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
481
|
+
size_t count);
|
|
452
482
|
jsi::Value cpp_uniffi_breez_sdk_spark_fn_method_sdkbuilder_build(
|
|
453
483
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
454
484
|
size_t count);
|
|
@@ -671,9 +701,17 @@ protected:
|
|
|
671
701
|
jsi::Value cpp_uniffi_breez_sdk_spark_fn_func_connect_with_signer(
|
|
672
702
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
673
703
|
size_t count);
|
|
704
|
+
jsi::Value
|
|
705
|
+
cpp_uniffi_breez_sdk_spark_fn_func_connect_with_signing_only_signer(
|
|
706
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
707
|
+
size_t count);
|
|
674
708
|
jsi::Value cpp_uniffi_breez_sdk_spark_fn_func_create_turnkey_signer(
|
|
675
709
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
676
710
|
size_t count);
|
|
711
|
+
jsi::Value
|
|
712
|
+
cpp_uniffi_breez_sdk_spark_fn_func_create_turnkey_signing_only_signer(
|
|
713
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
714
|
+
size_t count);
|
|
677
715
|
jsi::Value cpp_uniffi_breez_sdk_spark_fn_func_custom_storage(
|
|
678
716
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
679
717
|
size_t count);
|
|
@@ -863,9 +901,17 @@ protected:
|
|
|
863
901
|
jsi::Value cpp_uniffi_breez_sdk_spark_checksum_func_connect_with_signer(
|
|
864
902
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
865
903
|
size_t count);
|
|
904
|
+
jsi::Value
|
|
905
|
+
cpp_uniffi_breez_sdk_spark_checksum_func_connect_with_signing_only_signer(
|
|
906
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
907
|
+
size_t count);
|
|
866
908
|
jsi::Value cpp_uniffi_breez_sdk_spark_checksum_func_create_turnkey_signer(
|
|
867
909
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
868
910
|
size_t count);
|
|
911
|
+
jsi::Value
|
|
912
|
+
cpp_uniffi_breez_sdk_spark_checksum_func_create_turnkey_signing_only_signer(
|
|
913
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
914
|
+
size_t count);
|
|
869
915
|
jsi::Value cpp_uniffi_breez_sdk_spark_checksum_func_custom_storage(
|
|
870
916
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
871
917
|
size_t count);
|
|
@@ -1106,6 +1152,22 @@ protected:
|
|
|
1106
1152
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1107
1153
|
size_t count);
|
|
1108
1154
|
jsi::Value
|
|
1155
|
+
cpp_uniffi_breez_sdk_spark_checksum_method_externalsigningsigner_derive_public_key(
|
|
1156
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1157
|
+
size_t count);
|
|
1158
|
+
jsi::Value
|
|
1159
|
+
cpp_uniffi_breez_sdk_spark_checksum_method_externalsigningsigner_sign_ecdsa(
|
|
1160
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1161
|
+
size_t count);
|
|
1162
|
+
jsi::Value
|
|
1163
|
+
cpp_uniffi_breez_sdk_spark_checksum_method_externalsigningsigner_sign_ecdsa_recoverable(
|
|
1164
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1165
|
+
size_t count);
|
|
1166
|
+
jsi::Value
|
|
1167
|
+
cpp_uniffi_breez_sdk_spark_checksum_method_externalsigningsigner_sign_hash_schnorr(
|
|
1168
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1169
|
+
size_t count);
|
|
1170
|
+
jsi::Value
|
|
1109
1171
|
cpp_uniffi_breez_sdk_spark_checksum_method_externalsparksigner_get_identity_public_key(
|
|
1110
1172
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1111
1173
|
size_t count);
|
|
@@ -1431,6 +1493,10 @@ protected:
|
|
|
1431
1493
|
cpp_uniffi_breez_sdk_spark_checksum_constructor_sdkbuilder_new_with_signer(
|
|
1432
1494
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1433
1495
|
size_t count);
|
|
1496
|
+
jsi::Value
|
|
1497
|
+
cpp_uniffi_breez_sdk_spark_checksum_constructor_sdkbuilder_new_with_signing_only_signer(
|
|
1498
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1499
|
+
size_t count);
|
|
1434
1500
|
jsi::Value cpp_uniffi_breez_sdk_spark_checksum_method_eventlistener_on_event(
|
|
1435
1501
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1436
1502
|
size_t count);
|
|
@@ -1452,6 +1518,10 @@ protected:
|
|
|
1452
1518
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1453
1519
|
size_t count);
|
|
1454
1520
|
jsi::Value
|
|
1521
|
+
cpp_uniffi_internal_fn_method_externalsigningsigner_ffi__bless_pointer(
|
|
1522
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1523
|
+
size_t count);
|
|
1524
|
+
jsi::Value
|
|
1455
1525
|
cpp_uniffi_internal_fn_method_externalsparksigner_ffi__bless_pointer(
|
|
1456
1526
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
1457
1527
|
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;;AAguCA;AACA;AACA;AACA;AACA;AACA,MAAMA,MAAmC,GAAGA,CAAA,KACzCC,UAAU,CAASC,mBAAmB;AAAC,IAAAC,QAAA,GAAAC,OAAA,CAAAC,OAAA,GAC3BL,MAAM,EAErB;AAosBA;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":[]}
|