@breeztech/breez-sdk-spark-react-native 0.7.2 → 0.7.3
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 +14 -15
- package/cpp/generated/breez_sdk_spark.hpp +2 -2
- package/lib/commonjs/generated/breez_sdk_spark.js +105 -63
- package/lib/commonjs/generated/breez_sdk_spark.js.map +1 -1
- package/lib/module/generated/breez_sdk_spark.js +104 -62
- package/lib/module/generated/breez_sdk_spark.js.map +1 -1
- package/lib/typescript/commonjs/src/generated/breez_sdk_spark-ffi.d.ts +2 -2
- 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 +404 -242
- 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 +2 -2
- 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 +404 -242
- 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 +2 -2
- package/src/generated/breez_sdk_spark.ts +837 -560
|
@@ -454,7 +454,7 @@ uniffi_breez_sdk_spark_fn_method_breezsdk_delete_lightning_address(void *ptr);
|
|
|
454
454
|
/*handle*/ uint64_t
|
|
455
455
|
uniffi_breez_sdk_spark_fn_method_breezsdk_disconnect(void *ptr);
|
|
456
456
|
/*handle*/ uint64_t
|
|
457
|
-
|
|
457
|
+
uniffi_breez_sdk_spark_fn_method_breezsdk_fetch_conversion_limits(
|
|
458
458
|
void *ptr, RustBuffer request);
|
|
459
459
|
/*handle*/ uint64_t
|
|
460
460
|
uniffi_breez_sdk_spark_fn_method_breezsdk_get_info(void *ptr,
|
|
@@ -928,7 +928,7 @@ uint16_t
|
|
|
928
928
|
uniffi_breez_sdk_spark_checksum_method_breezsdk_delete_lightning_address();
|
|
929
929
|
uint16_t uniffi_breez_sdk_spark_checksum_method_breezsdk_disconnect();
|
|
930
930
|
uint16_t
|
|
931
|
-
|
|
931
|
+
uniffi_breez_sdk_spark_checksum_method_breezsdk_fetch_conversion_limits();
|
|
932
932
|
uint16_t uniffi_breez_sdk_spark_checksum_method_breezsdk_get_info();
|
|
933
933
|
uint16_t
|
|
934
934
|
uniffi_breez_sdk_spark_checksum_method_breezsdk_get_leaf_optimization_progress();
|
|
@@ -12044,16 +12044,16 @@ NativeBreezSdkSpark::NativeBreezSdkSpark(
|
|
|
12044
12044
|
->cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_disconnect(
|
|
12045
12045
|
rt, thisVal, args, count);
|
|
12046
12046
|
});
|
|
12047
|
-
props["
|
|
12047
|
+
props["ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_fetch_conversion_"
|
|
12048
12048
|
"limits"] = jsi::Function::createFromHostFunction(
|
|
12049
12049
|
rt,
|
|
12050
12050
|
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_breez_sdk_spark_fn_method_"
|
|
12051
|
-
"
|
|
12051
|
+
"breezsdk_fetch_conversion_limits"),
|
|
12052
12052
|
2,
|
|
12053
12053
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal,
|
|
12054
12054
|
const jsi::Value *args, size_t count) -> jsi::Value {
|
|
12055
12055
|
return this
|
|
12056
|
-
->
|
|
12056
|
+
->cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_fetch_conversion_limits(
|
|
12057
12057
|
rt, thisVal, args, count);
|
|
12058
12058
|
});
|
|
12059
12059
|
props["ubrn_uniffi_breez_sdk_spark_fn_method_breezsdk_get_info"] =
|
|
@@ -14210,17 +14210,16 @@ NativeBreezSdkSpark::NativeBreezSdkSpark(
|
|
|
14210
14210
|
->cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_disconnect(
|
|
14211
14211
|
rt, thisVal, args, count);
|
|
14212
14212
|
});
|
|
14213
|
-
props["
|
|
14214
|
-
"
|
|
14213
|
+
props["ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_fetch_conversion_"
|
|
14214
|
+
"limits"] = jsi::Function::createFromHostFunction(
|
|
14215
14215
|
rt,
|
|
14216
|
-
jsi::PropNameID::forAscii(rt,
|
|
14217
|
-
|
|
14218
|
-
"breezsdk_fetch_token_conversion_limits"),
|
|
14216
|
+
jsi::PropNameID::forAscii(rt, "ubrn_uniffi_breez_sdk_spark_checksum_"
|
|
14217
|
+
"method_breezsdk_fetch_conversion_limits"),
|
|
14219
14218
|
0,
|
|
14220
14219
|
[this](jsi::Runtime &rt, const jsi::Value &thisVal,
|
|
14221
14220
|
const jsi::Value *args, size_t count) -> jsi::Value {
|
|
14222
14221
|
return this
|
|
14223
|
-
->
|
|
14222
|
+
->cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_fetch_conversion_limits(
|
|
14224
14223
|
rt, thisVal, args, count);
|
|
14225
14224
|
});
|
|
14226
14225
|
props["ubrn_uniffi_breez_sdk_spark_checksum_method_breezsdk_get_info"] =
|
|
@@ -16211,11 +16210,11 @@ NativeBreezSdkSpark::cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_disconnect(
|
|
|
16211
16210
|
value);
|
|
16212
16211
|
}
|
|
16213
16212
|
jsi::Value NativeBreezSdkSpark::
|
|
16214
|
-
|
|
16213
|
+
cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_fetch_conversion_limits(
|
|
16215
16214
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
16216
16215
|
size_t count) {
|
|
16217
16216
|
auto value =
|
|
16218
|
-
|
|
16217
|
+
uniffi_breez_sdk_spark_fn_method_breezsdk_fetch_conversion_limits(
|
|
16219
16218
|
uniffi_jsi::Bridging<void *>::fromJs(rt, callInvoker, args[0]),
|
|
16220
16219
|
uniffi::breez_sdk_spark::Bridging<RustBuffer>::fromJs(rt, callInvoker,
|
|
16221
16220
|
args[1]));
|
|
@@ -18413,11 +18412,11 @@ jsi::Value NativeBreezSdkSpark::
|
|
|
18413
18412
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
18414
18413
|
}
|
|
18415
18414
|
jsi::Value NativeBreezSdkSpark::
|
|
18416
|
-
|
|
18415
|
+
cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_fetch_conversion_limits(
|
|
18417
18416
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
18418
18417
|
size_t count) {
|
|
18419
18418
|
auto value =
|
|
18420
|
-
|
|
18419
|
+
uniffi_breez_sdk_spark_checksum_method_breezsdk_fetch_conversion_limits();
|
|
18421
18420
|
|
|
18422
18421
|
return uniffi_jsi::Bridging<uint16_t>::toJs(rt, callInvoker, value);
|
|
18423
18422
|
}
|
|
@@ -88,7 +88,7 @@ protected:
|
|
|
88
88
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
89
89
|
size_t count);
|
|
90
90
|
jsi::Value
|
|
91
|
-
|
|
91
|
+
cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_fetch_conversion_limits(
|
|
92
92
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
93
93
|
size_t count);
|
|
94
94
|
jsi::Value cpp_uniffi_breez_sdk_spark_fn_method_breezsdk_get_info(
|
|
@@ -691,7 +691,7 @@ protected:
|
|
|
691
691
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
692
692
|
size_t count);
|
|
693
693
|
jsi::Value
|
|
694
|
-
|
|
694
|
+
cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_fetch_conversion_limits(
|
|
695
695
|
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
696
696
|
size_t count);
|
|
697
697
|
jsi::Value cpp_uniffi_breez_sdk_spark_checksum_method_breezsdk_get_info(
|