@breeztech/breez-sdk-spark-react-native 0.11.0-dev2 → 0.12.1
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 +16 -0
- package/android/CMakeLists.txt +4 -3
- package/{BreezSdkSparkReactNative.podspec → breeztech-breez-sdk-spark-react-native.podspec} +2 -2
- package/cpp/generated/breez_sdk_spark.cpp +1460 -536
- package/cpp/generated/breez_sdk_spark.hpp +94 -25
- package/lib/commonjs/generated/breez_sdk_spark-ffi.js.map +1 -1
- package/lib/commonjs/generated/breez_sdk_spark.js +314 -85
- package/lib/commonjs/generated/breez_sdk_spark.js.map +1 -1
- package/lib/commonjs/generated/breez_sdk_spark_bindings.js +2 -4
- package/lib/commonjs/generated/breez_sdk_spark_bindings.js.map +1 -1
- package/lib/commonjs/index.js +1 -11
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/generated/breez_sdk_spark-ffi.js.map +1 -1
- package/lib/module/generated/breez_sdk_spark.js +313 -84
- package/lib/module/generated/breez_sdk_spark.js.map +1 -1
- package/lib/module/generated/breez_sdk_spark_bindings.js +2 -4
- package/lib/module/generated/breez_sdk_spark_bindings.js.map +1 -1
- package/lib/module/index.js +0 -7
- package/lib/module/index.js.map +1 -1
- package/lib/typescript/commonjs/src/generated/breez_sdk_spark-ffi.d.ts +94 -66
- 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 +1446 -91
- package/lib/typescript/commonjs/src/generated/breez_sdk_spark.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/index.d.ts +0 -1
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/breez_sdk_spark-ffi.d.ts +94 -66
- 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 +1446 -91
- package/lib/typescript/module/src/generated/breez_sdk_spark.d.ts.map +1 -1
- package/lib/typescript/module/src/index.d.ts +0 -1
- package/lib/typescript/module/src/index.d.ts.map +1 -1
- package/package.json +4 -4
- package/plugin/build/index.d.ts +5 -0
- package/plugin/build/index.js +2 -2
- package/plugin/build/withBinaryArtifacts.d.ts +1 -1
- package/plugin/build/withBinaryArtifacts.js +5 -7
- package/plugin/build/withIOS.d.ts +5 -1
- package/plugin/build/withIOS.js +14 -4
- package/src/generated/breez_sdk_spark-ffi.ts +158 -82
- package/src/generated/breez_sdk_spark.ts +3012 -1249
- package/src/generated/breez_sdk_spark_bindings.ts +2 -2
- package/src/index.tsx +0 -7
|
@@ -31,9 +31,6 @@ interface NativeModuleInterface {
|
|
|
31
31
|
ptr: bigint,
|
|
32
32
|
uniffi_out_err: UniffiRustCallStatus
|
|
33
33
|
): void;
|
|
34
|
-
ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_bitcoinchainservice(
|
|
35
|
-
vtable: UniffiVTableCallbackInterfaceBitcoinChainService
|
|
36
|
-
): void;
|
|
37
34
|
ubrn_uniffi_breez_sdk_spark_fn_method_bitcoinchainservice_get_address_utxos(
|
|
38
35
|
ptr: bigint,
|
|
39
36
|
address: Uint8Array
|
|
@@ -225,9 +222,6 @@ interface NativeModuleInterface {
|
|
|
225
222
|
ptr: bigint,
|
|
226
223
|
uniffi_out_err: UniffiRustCallStatus
|
|
227
224
|
): void;
|
|
228
|
-
ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_externalsigner(
|
|
229
|
-
vtable: UniffiVTableCallbackInterfaceExternalSigner
|
|
230
|
-
): void;
|
|
231
225
|
ubrn_uniffi_breez_sdk_spark_fn_method_externalsigner_identity_public_key(
|
|
232
226
|
ptr: bigint,
|
|
233
227
|
uniffi_out_err: UniffiRustCallStatus
|
|
@@ -324,15 +318,54 @@ interface NativeModuleInterface {
|
|
|
324
318
|
ptr: bigint,
|
|
325
319
|
uniffi_out_err: UniffiRustCallStatus
|
|
326
320
|
): void;
|
|
327
|
-
ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_fiatservice(
|
|
328
|
-
vtable: UniffiVTableCallbackInterfaceFiatService
|
|
329
|
-
): void;
|
|
330
321
|
ubrn_uniffi_breez_sdk_spark_fn_method_fiatservice_fetch_fiat_currencies(
|
|
331
322
|
ptr: bigint
|
|
332
323
|
): bigint;
|
|
333
324
|
ubrn_uniffi_breez_sdk_spark_fn_method_fiatservice_fetch_fiat_rates(
|
|
334
325
|
ptr: bigint
|
|
335
326
|
): bigint;
|
|
327
|
+
ubrn_uniffi_breez_sdk_spark_fn_clone_passkey(
|
|
328
|
+
ptr: bigint,
|
|
329
|
+
uniffi_out_err: UniffiRustCallStatus
|
|
330
|
+
): bigint;
|
|
331
|
+
ubrn_uniffi_breez_sdk_spark_fn_free_passkey(
|
|
332
|
+
ptr: bigint,
|
|
333
|
+
uniffi_out_err: UniffiRustCallStatus
|
|
334
|
+
): void;
|
|
335
|
+
ubrn_uniffi_breez_sdk_spark_fn_constructor_passkey_new(
|
|
336
|
+
prfProvider: bigint,
|
|
337
|
+
relayConfig: Uint8Array,
|
|
338
|
+
uniffi_out_err: UniffiRustCallStatus
|
|
339
|
+
): bigint;
|
|
340
|
+
ubrn_uniffi_breez_sdk_spark_fn_method_passkey_get_wallet(
|
|
341
|
+
ptr: bigint,
|
|
342
|
+
label: Uint8Array
|
|
343
|
+
): bigint;
|
|
344
|
+
ubrn_uniffi_breez_sdk_spark_fn_method_passkey_is_available(
|
|
345
|
+
ptr: bigint
|
|
346
|
+
): bigint;
|
|
347
|
+
ubrn_uniffi_breez_sdk_spark_fn_method_passkey_list_labels(
|
|
348
|
+
ptr: bigint
|
|
349
|
+
): bigint;
|
|
350
|
+
ubrn_uniffi_breez_sdk_spark_fn_method_passkey_store_label(
|
|
351
|
+
ptr: bigint,
|
|
352
|
+
label: Uint8Array
|
|
353
|
+
): bigint;
|
|
354
|
+
ubrn_uniffi_breez_sdk_spark_fn_clone_passkeyprfprovider(
|
|
355
|
+
ptr: bigint,
|
|
356
|
+
uniffi_out_err: UniffiRustCallStatus
|
|
357
|
+
): bigint;
|
|
358
|
+
ubrn_uniffi_breez_sdk_spark_fn_free_passkeyprfprovider(
|
|
359
|
+
ptr: bigint,
|
|
360
|
+
uniffi_out_err: UniffiRustCallStatus
|
|
361
|
+
): void;
|
|
362
|
+
ubrn_uniffi_breez_sdk_spark_fn_method_passkeyprfprovider_derive_prf_seed(
|
|
363
|
+
ptr: bigint,
|
|
364
|
+
salt: Uint8Array
|
|
365
|
+
): bigint;
|
|
366
|
+
ubrn_uniffi_breez_sdk_spark_fn_method_passkeyprfprovider_is_prf_available(
|
|
367
|
+
ptr: bigint
|
|
368
|
+
): bigint;
|
|
336
369
|
ubrn_uniffi_breez_sdk_spark_fn_clone_paymentobserver(
|
|
337
370
|
ptr: bigint,
|
|
338
371
|
uniffi_out_err: UniffiRustCallStatus
|
|
@@ -341,9 +374,6 @@ interface NativeModuleInterface {
|
|
|
341
374
|
ptr: bigint,
|
|
342
375
|
uniffi_out_err: UniffiRustCallStatus
|
|
343
376
|
): void;
|
|
344
|
-
ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_paymentobserver(
|
|
345
|
-
vtable: UniffiVTableCallbackInterfacePaymentObserver
|
|
346
|
-
): void;
|
|
347
377
|
ubrn_uniffi_breez_sdk_spark_fn_method_paymentobserver_before_send(
|
|
348
378
|
ptr: bigint,
|
|
349
379
|
payments: Uint8Array
|
|
@@ -356,9 +386,6 @@ interface NativeModuleInterface {
|
|
|
356
386
|
ptr: bigint,
|
|
357
387
|
uniffi_out_err: UniffiRustCallStatus
|
|
358
388
|
): void;
|
|
359
|
-
ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_restclient(
|
|
360
|
-
vtable: UniffiVTableCallbackInterfaceRestClient
|
|
361
|
-
): void;
|
|
362
389
|
ubrn_uniffi_breez_sdk_spark_fn_method_restclient_get_request(
|
|
363
390
|
ptr: bigint,
|
|
364
391
|
url: Uint8Array,
|
|
@@ -432,9 +459,6 @@ interface NativeModuleInterface {
|
|
|
432
459
|
ptr: bigint,
|
|
433
460
|
uniffi_out_err: UniffiRustCallStatus
|
|
434
461
|
): void;
|
|
435
|
-
ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_storage(
|
|
436
|
-
vtable: UniffiVTableCallbackInterfaceStorage
|
|
437
|
-
): void;
|
|
438
462
|
ubrn_uniffi_breez_sdk_spark_fn_method_storage_delete_cached_item(
|
|
439
463
|
ptr: bigint,
|
|
440
464
|
key: Uint8Array
|
|
@@ -582,12 +606,6 @@ interface NativeModuleInterface {
|
|
|
582
606
|
ptr: bigint,
|
|
583
607
|
request: Uint8Array
|
|
584
608
|
): bigint;
|
|
585
|
-
ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_eventlistener(
|
|
586
|
-
vtable: UniffiVTableCallbackInterfaceEventListener
|
|
587
|
-
): void;
|
|
588
|
-
ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_logger(
|
|
589
|
-
vtable: UniffiVTableCallbackInterfaceLogger
|
|
590
|
-
): void;
|
|
591
609
|
ubrn_uniffi_breez_sdk_spark_fn_func_connect(request: Uint8Array): bigint;
|
|
592
610
|
ubrn_uniffi_breez_sdk_spark_fn_func_connect_with_signer(
|
|
593
611
|
request: Uint8Array
|
|
@@ -827,6 +845,12 @@ interface NativeModuleInterface {
|
|
|
827
845
|
ubrn_uniffi_breez_sdk_spark_checksum_method_externalsigner_aggregate_frost(): number;
|
|
828
846
|
ubrn_uniffi_breez_sdk_spark_checksum_method_fiatservice_fetch_fiat_currencies(): number;
|
|
829
847
|
ubrn_uniffi_breez_sdk_spark_checksum_method_fiatservice_fetch_fiat_rates(): number;
|
|
848
|
+
ubrn_uniffi_breez_sdk_spark_checksum_method_passkey_get_wallet(): number;
|
|
849
|
+
ubrn_uniffi_breez_sdk_spark_checksum_method_passkey_is_available(): number;
|
|
850
|
+
ubrn_uniffi_breez_sdk_spark_checksum_method_passkey_list_labels(): number;
|
|
851
|
+
ubrn_uniffi_breez_sdk_spark_checksum_method_passkey_store_label(): number;
|
|
852
|
+
ubrn_uniffi_breez_sdk_spark_checksum_method_passkeyprfprovider_derive_prf_seed(): number;
|
|
853
|
+
ubrn_uniffi_breez_sdk_spark_checksum_method_passkeyprfprovider_is_prf_available(): number;
|
|
830
854
|
ubrn_uniffi_breez_sdk_spark_checksum_method_paymentobserver_before_send(): number;
|
|
831
855
|
ubrn_uniffi_breez_sdk_spark_checksum_method_restclient_get_request(): number;
|
|
832
856
|
ubrn_uniffi_breez_sdk_spark_checksum_method_restclient_post_request(): number;
|
|
@@ -874,10 +898,38 @@ interface NativeModuleInterface {
|
|
|
874
898
|
ubrn_uniffi_breez_sdk_spark_checksum_method_tokenissuer_get_issuer_token_metadata(): number;
|
|
875
899
|
ubrn_uniffi_breez_sdk_spark_checksum_method_tokenissuer_mint_issuer_token(): number;
|
|
876
900
|
ubrn_uniffi_breez_sdk_spark_checksum_method_tokenissuer_unfreeze_issuer_token(): number;
|
|
901
|
+
ubrn_uniffi_breez_sdk_spark_checksum_constructor_passkey_new(): number;
|
|
877
902
|
ubrn_uniffi_breez_sdk_spark_checksum_constructor_sdkbuilder_new(): number;
|
|
878
903
|
ubrn_uniffi_breez_sdk_spark_checksum_method_eventlistener_on_event(): number;
|
|
879
904
|
ubrn_uniffi_breez_sdk_spark_checksum_method_logger_log(): number;
|
|
880
905
|
ubrn_ffi_breez_sdk_spark_uniffi_contract_version(): number;
|
|
906
|
+
ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_eventlistener(
|
|
907
|
+
vtable: UniffiVTableCallbackInterfaceEventListener
|
|
908
|
+
): void;
|
|
909
|
+
ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_logger(
|
|
910
|
+
vtable: UniffiVTableCallbackInterfaceLogger
|
|
911
|
+
): void;
|
|
912
|
+
ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_bitcoinchainservice(
|
|
913
|
+
vtable: UniffiVTableCallbackInterfaceBitcoinChainService
|
|
914
|
+
): void;
|
|
915
|
+
ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_externalsigner(
|
|
916
|
+
vtable: UniffiVTableCallbackInterfaceExternalSigner
|
|
917
|
+
): void;
|
|
918
|
+
ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_fiatservice(
|
|
919
|
+
vtable: UniffiVTableCallbackInterfaceFiatService
|
|
920
|
+
): void;
|
|
921
|
+
ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_passkeyprfprovider(
|
|
922
|
+
vtable: UniffiVTableCallbackInterfacePasskeyPrfProvider
|
|
923
|
+
): void;
|
|
924
|
+
ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_paymentobserver(
|
|
925
|
+
vtable: UniffiVTableCallbackInterfacePaymentObserver
|
|
926
|
+
): void;
|
|
927
|
+
ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_restclient(
|
|
928
|
+
vtable: UniffiVTableCallbackInterfaceRestClient
|
|
929
|
+
): void;
|
|
930
|
+
ubrn_uniffi_breez_sdk_spark_fn_init_callback_vtable_storage(
|
|
931
|
+
vtable: UniffiVTableCallbackInterfaceStorage
|
|
932
|
+
): void;
|
|
881
933
|
ubrn_uniffi_internal_fn_method_bitcoinchainservice_ffi__bless_pointer(
|
|
882
934
|
pointer: bigint,
|
|
883
935
|
uniffi_out_err: UniffiRustCallStatus
|
|
@@ -894,6 +946,14 @@ interface NativeModuleInterface {
|
|
|
894
946
|
pointer: bigint,
|
|
895
947
|
uniffi_out_err: UniffiRustCallStatus
|
|
896
948
|
): UniffiRustArcPtr;
|
|
949
|
+
ubrn_uniffi_internal_fn_method_passkey_ffi__bless_pointer(
|
|
950
|
+
pointer: bigint,
|
|
951
|
+
uniffi_out_err: UniffiRustCallStatus
|
|
952
|
+
): UniffiRustArcPtr;
|
|
953
|
+
ubrn_uniffi_internal_fn_method_passkeyprfprovider_ffi__bless_pointer(
|
|
954
|
+
pointer: bigint,
|
|
955
|
+
uniffi_out_err: UniffiRustCallStatus
|
|
956
|
+
): UniffiRustArcPtr;
|
|
897
957
|
ubrn_uniffi_internal_fn_method_paymentobserver_ffi__bless_pointer(
|
|
898
958
|
pointer: bigint,
|
|
899
959
|
uniffi_out_err: UniffiRustCallStatus
|
|
@@ -1044,7 +1104,7 @@ type UniffiCallbackInterfaceEventListenerMethod0 = (
|
|
|
1044
1104
|
event: Uint8Array,
|
|
1045
1105
|
uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
|
|
1046
1106
|
uniffiCallbackData: bigint
|
|
1047
|
-
) => UniffiForeignFuture
|
|
1107
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1048
1108
|
type UniffiCallbackInterfaceLoggerMethod0 = (
|
|
1049
1109
|
uniffiHandle: bigint,
|
|
1050
1110
|
l: Uint8Array
|
|
@@ -1054,30 +1114,30 @@ type UniffiCallbackInterfaceBitcoinChainServiceMethod0 = (
|
|
|
1054
1114
|
address: Uint8Array,
|
|
1055
1115
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1056
1116
|
uniffiCallbackData: bigint
|
|
1057
|
-
) => UniffiForeignFuture
|
|
1117
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1058
1118
|
type UniffiCallbackInterfaceBitcoinChainServiceMethod1 = (
|
|
1059
1119
|
uniffiHandle: bigint,
|
|
1060
1120
|
txid: Uint8Array,
|
|
1061
1121
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1062
1122
|
uniffiCallbackData: bigint
|
|
1063
|
-
) => UniffiForeignFuture
|
|
1123
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1064
1124
|
type UniffiCallbackInterfaceBitcoinChainServiceMethod2 = (
|
|
1065
1125
|
uniffiHandle: bigint,
|
|
1066
1126
|
txid: Uint8Array,
|
|
1067
1127
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1068
1128
|
uniffiCallbackData: bigint
|
|
1069
|
-
) => UniffiForeignFuture
|
|
1129
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1070
1130
|
type UniffiCallbackInterfaceBitcoinChainServiceMethod3 = (
|
|
1071
1131
|
uniffiHandle: bigint,
|
|
1072
1132
|
tx: Uint8Array,
|
|
1073
1133
|
uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
|
|
1074
1134
|
uniffiCallbackData: bigint
|
|
1075
|
-
) => UniffiForeignFuture
|
|
1135
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1076
1136
|
type UniffiCallbackInterfaceBitcoinChainServiceMethod4 = (
|
|
1077
1137
|
uniffiHandle: bigint,
|
|
1078
1138
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1079
1139
|
uniffiCallbackData: bigint
|
|
1080
|
-
) => UniffiForeignFuture
|
|
1140
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1081
1141
|
type UniffiCallbackInterfaceExternalSignerMethod0 = (
|
|
1082
1142
|
uniffiHandle: bigint
|
|
1083
1143
|
) => UniffiResult<Uint8Array>;
|
|
@@ -1086,90 +1146,90 @@ type UniffiCallbackInterfaceExternalSignerMethod1 = (
|
|
|
1086
1146
|
path: Uint8Array,
|
|
1087
1147
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1088
1148
|
uniffiCallbackData: bigint
|
|
1089
|
-
) => UniffiForeignFuture
|
|
1149
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1090
1150
|
type UniffiCallbackInterfaceExternalSignerMethod2 = (
|
|
1091
1151
|
uniffiHandle: bigint,
|
|
1092
1152
|
message: Uint8Array,
|
|
1093
1153
|
path: Uint8Array,
|
|
1094
1154
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1095
1155
|
uniffiCallbackData: bigint
|
|
1096
|
-
) => UniffiForeignFuture
|
|
1156
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1097
1157
|
type UniffiCallbackInterfaceExternalSignerMethod3 = (
|
|
1098
1158
|
uniffiHandle: bigint,
|
|
1099
1159
|
message: Uint8Array,
|
|
1100
1160
|
path: Uint8Array,
|
|
1101
1161
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1102
1162
|
uniffiCallbackData: bigint
|
|
1103
|
-
) => UniffiForeignFuture
|
|
1163
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1104
1164
|
type UniffiCallbackInterfaceExternalSignerMethod4 = (
|
|
1105
1165
|
uniffiHandle: bigint,
|
|
1106
1166
|
message: Uint8Array,
|
|
1107
1167
|
path: Uint8Array,
|
|
1108
1168
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1109
1169
|
uniffiCallbackData: bigint
|
|
1110
|
-
) => UniffiForeignFuture
|
|
1170
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1111
1171
|
type UniffiCallbackInterfaceExternalSignerMethod5 = (
|
|
1112
1172
|
uniffiHandle: bigint,
|
|
1113
1173
|
message: Uint8Array,
|
|
1114
1174
|
path: Uint8Array,
|
|
1115
1175
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1116
1176
|
uniffiCallbackData: bigint
|
|
1117
|
-
) => UniffiForeignFuture
|
|
1177
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1118
1178
|
type UniffiCallbackInterfaceExternalSignerMethod6 = (
|
|
1119
1179
|
uniffiHandle: bigint,
|
|
1120
1180
|
hash: Uint8Array,
|
|
1121
1181
|
path: Uint8Array,
|
|
1122
1182
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1123
1183
|
uniffiCallbackData: bigint
|
|
1124
|
-
) => UniffiForeignFuture
|
|
1184
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1125
1185
|
type UniffiCallbackInterfaceExternalSignerMethod7 = (
|
|
1126
1186
|
uniffiHandle: bigint,
|
|
1127
1187
|
message: Uint8Array,
|
|
1128
1188
|
path: Uint8Array,
|
|
1129
1189
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1130
1190
|
uniffiCallbackData: bigint
|
|
1131
|
-
) => UniffiForeignFuture
|
|
1191
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1132
1192
|
type UniffiCallbackInterfaceExternalSignerMethod8 = (
|
|
1133
1193
|
uniffiHandle: bigint,
|
|
1134
1194
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1135
1195
|
uniffiCallbackData: bigint
|
|
1136
|
-
) => UniffiForeignFuture
|
|
1196
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1137
1197
|
type UniffiCallbackInterfaceExternalSignerMethod9 = (
|
|
1138
1198
|
uniffiHandle: bigint,
|
|
1139
1199
|
id: Uint8Array,
|
|
1140
1200
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1141
1201
|
uniffiCallbackData: bigint
|
|
1142
|
-
) => UniffiForeignFuture
|
|
1202
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1143
1203
|
type UniffiCallbackInterfaceExternalSignerMethod10 = (
|
|
1144
1204
|
uniffiHandle: bigint,
|
|
1145
1205
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1146
1206
|
uniffiCallbackData: bigint
|
|
1147
|
-
) => UniffiForeignFuture
|
|
1207
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1148
1208
|
type UniffiCallbackInterfaceExternalSignerMethod11 = (
|
|
1149
1209
|
uniffiHandle: bigint,
|
|
1150
1210
|
index: number,
|
|
1151
1211
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1152
1212
|
uniffiCallbackData: bigint
|
|
1153
|
-
) => UniffiForeignFuture
|
|
1213
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1154
1214
|
type UniffiCallbackInterfaceExternalSignerMethod12 = (
|
|
1155
1215
|
uniffiHandle: bigint,
|
|
1156
1216
|
index: number,
|
|
1157
1217
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1158
1218
|
uniffiCallbackData: bigint
|
|
1159
|
-
) => UniffiForeignFuture
|
|
1219
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1160
1220
|
type UniffiCallbackInterfaceExternalSignerMethod13 = (
|
|
1161
1221
|
uniffiHandle: bigint,
|
|
1162
1222
|
index: number,
|
|
1163
1223
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1164
1224
|
uniffiCallbackData: bigint
|
|
1165
|
-
) => UniffiForeignFuture
|
|
1225
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1166
1226
|
type UniffiCallbackInterfaceExternalSignerMethod14 = (
|
|
1167
1227
|
uniffiHandle: bigint,
|
|
1168
1228
|
signingKey: Uint8Array,
|
|
1169
1229
|
newSigningKey: Uint8Array,
|
|
1170
1230
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1171
1231
|
uniffiCallbackData: bigint
|
|
1172
|
-
) => UniffiForeignFuture
|
|
1232
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1173
1233
|
type UniffiCallbackInterfaceExternalSignerMethod15 = (
|
|
1174
1234
|
uniffiHandle: bigint,
|
|
1175
1235
|
secret: Uint8Array,
|
|
@@ -1177,55 +1237,66 @@ type UniffiCallbackInterfaceExternalSignerMethod15 = (
|
|
|
1177
1237
|
numShares: number,
|
|
1178
1238
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1179
1239
|
uniffiCallbackData: bigint
|
|
1180
|
-
) => UniffiForeignFuture
|
|
1240
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1181
1241
|
type UniffiCallbackInterfaceExternalSignerMethod16 = (
|
|
1182
1242
|
uniffiHandle: bigint,
|
|
1183
1243
|
encryptedSecret: Uint8Array,
|
|
1184
1244
|
receiverPublicKey: Uint8Array,
|
|
1185
1245
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1186
1246
|
uniffiCallbackData: bigint
|
|
1187
|
-
) => UniffiForeignFuture
|
|
1247
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1188
1248
|
type UniffiCallbackInterfaceExternalSignerMethod17 = (
|
|
1189
1249
|
uniffiHandle: bigint,
|
|
1190
1250
|
secret: Uint8Array,
|
|
1191
1251
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1192
1252
|
uniffiCallbackData: bigint
|
|
1193
|
-
) => UniffiForeignFuture
|
|
1253
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1194
1254
|
type UniffiCallbackInterfaceExternalSignerMethod18 = (
|
|
1195
1255
|
uniffiHandle: bigint,
|
|
1196
1256
|
request: Uint8Array,
|
|
1197
1257
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1198
1258
|
uniffiCallbackData: bigint
|
|
1199
|
-
) => UniffiForeignFuture
|
|
1259
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1200
1260
|
type UniffiCallbackInterfaceExternalSignerMethod19 = (
|
|
1201
1261
|
uniffiHandle: bigint,
|
|
1202
1262
|
request: Uint8Array,
|
|
1203
1263
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1204
1264
|
uniffiCallbackData: bigint
|
|
1205
|
-
) => UniffiForeignFuture
|
|
1265
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1206
1266
|
type UniffiCallbackInterfaceFiatServiceMethod0 = (
|
|
1207
1267
|
uniffiHandle: bigint,
|
|
1208
1268
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1209
1269
|
uniffiCallbackData: bigint
|
|
1210
|
-
) => UniffiForeignFuture
|
|
1270
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1211
1271
|
type UniffiCallbackInterfaceFiatServiceMethod1 = (
|
|
1212
1272
|
uniffiHandle: bigint,
|
|
1213
1273
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1214
1274
|
uniffiCallbackData: bigint
|
|
1215
|
-
) => UniffiForeignFuture
|
|
1275
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1276
|
+
type UniffiCallbackInterfacePasskeyPrfProviderMethod0 = (
|
|
1277
|
+
uniffiHandle: bigint,
|
|
1278
|
+
salt: Uint8Array,
|
|
1279
|
+
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1280
|
+
uniffiCallbackData: bigint
|
|
1281
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1282
|
+
type UniffiCallbackInterfacePasskeyPrfProviderMethod1 = (
|
|
1283
|
+
uniffiHandle: bigint,
|
|
1284
|
+
uniffiFutureCallback: UniffiForeignFutureCompleteI8,
|
|
1285
|
+
uniffiCallbackData: bigint
|
|
1286
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1216
1287
|
type UniffiCallbackInterfacePaymentObserverMethod0 = (
|
|
1217
1288
|
uniffiHandle: bigint,
|
|
1218
1289
|
payments: Uint8Array,
|
|
1219
1290
|
uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
|
|
1220
1291
|
uniffiCallbackData: bigint
|
|
1221
|
-
) => UniffiForeignFuture
|
|
1292
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1222
1293
|
type UniffiCallbackInterfaceRestClientMethod0 = (
|
|
1223
1294
|
uniffiHandle: bigint,
|
|
1224
1295
|
url: Uint8Array,
|
|
1225
1296
|
headers: Uint8Array,
|
|
1226
1297
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1227
1298
|
uniffiCallbackData: bigint
|
|
1228
|
-
) => UniffiForeignFuture
|
|
1299
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1229
1300
|
type UniffiCallbackInterfaceRestClientMethod1 = (
|
|
1230
1301
|
uniffiHandle: bigint,
|
|
1231
1302
|
url: Uint8Array,
|
|
@@ -1233,7 +1304,7 @@ type UniffiCallbackInterfaceRestClientMethod1 = (
|
|
|
1233
1304
|
body: Uint8Array,
|
|
1234
1305
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1235
1306
|
uniffiCallbackData: bigint
|
|
1236
|
-
) => UniffiForeignFuture
|
|
1307
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1237
1308
|
type UniffiCallbackInterfaceRestClientMethod2 = (
|
|
1238
1309
|
uniffiHandle: bigint,
|
|
1239
1310
|
url: Uint8Array,
|
|
@@ -1241,63 +1312,63 @@ type UniffiCallbackInterfaceRestClientMethod2 = (
|
|
|
1241
1312
|
body: Uint8Array,
|
|
1242
1313
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1243
1314
|
uniffiCallbackData: bigint
|
|
1244
|
-
) => UniffiForeignFuture
|
|
1315
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1245
1316
|
type UniffiCallbackInterfaceStorageMethod0 = (
|
|
1246
1317
|
uniffiHandle: bigint,
|
|
1247
1318
|
key: Uint8Array,
|
|
1248
1319
|
uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
|
|
1249
1320
|
uniffiCallbackData: bigint
|
|
1250
|
-
) => UniffiForeignFuture
|
|
1321
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1251
1322
|
type UniffiCallbackInterfaceStorageMethod1 = (
|
|
1252
1323
|
uniffiHandle: bigint,
|
|
1253
1324
|
key: Uint8Array,
|
|
1254
1325
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1255
1326
|
uniffiCallbackData: bigint
|
|
1256
|
-
) => UniffiForeignFuture
|
|
1327
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1257
1328
|
type UniffiCallbackInterfaceStorageMethod2 = (
|
|
1258
1329
|
uniffiHandle: bigint,
|
|
1259
1330
|
key: Uint8Array,
|
|
1260
1331
|
value: Uint8Array,
|
|
1261
1332
|
uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
|
|
1262
1333
|
uniffiCallbackData: bigint
|
|
1263
|
-
) => UniffiForeignFuture
|
|
1334
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1264
1335
|
type UniffiCallbackInterfaceStorageMethod3 = (
|
|
1265
1336
|
uniffiHandle: bigint,
|
|
1266
1337
|
request: Uint8Array,
|
|
1267
1338
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1268
1339
|
uniffiCallbackData: bigint
|
|
1269
|
-
) => UniffiForeignFuture
|
|
1340
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1270
1341
|
type UniffiCallbackInterfaceStorageMethod4 = (
|
|
1271
1342
|
uniffiHandle: bigint,
|
|
1272
1343
|
payment: Uint8Array,
|
|
1273
1344
|
uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
|
|
1274
1345
|
uniffiCallbackData: bigint
|
|
1275
|
-
) => UniffiForeignFuture
|
|
1346
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1276
1347
|
type UniffiCallbackInterfaceStorageMethod5 = (
|
|
1277
1348
|
uniffiHandle: bigint,
|
|
1278
1349
|
paymentId: Uint8Array,
|
|
1279
1350
|
metadata: Uint8Array,
|
|
1280
1351
|
uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
|
|
1281
1352
|
uniffiCallbackData: bigint
|
|
1282
|
-
) => UniffiForeignFuture
|
|
1353
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1283
1354
|
type UniffiCallbackInterfaceStorageMethod6 = (
|
|
1284
1355
|
uniffiHandle: bigint,
|
|
1285
1356
|
id: Uint8Array,
|
|
1286
1357
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1287
1358
|
uniffiCallbackData: bigint
|
|
1288
|
-
) => UniffiForeignFuture
|
|
1359
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1289
1360
|
type UniffiCallbackInterfaceStorageMethod7 = (
|
|
1290
1361
|
uniffiHandle: bigint,
|
|
1291
1362
|
invoice: Uint8Array,
|
|
1292
1363
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1293
1364
|
uniffiCallbackData: bigint
|
|
1294
|
-
) => UniffiForeignFuture
|
|
1365
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1295
1366
|
type UniffiCallbackInterfaceStorageMethod8 = (
|
|
1296
1367
|
uniffiHandle: bigint,
|
|
1297
1368
|
parentPaymentIds: Uint8Array,
|
|
1298
1369
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1299
1370
|
uniffiCallbackData: bigint
|
|
1300
|
-
) => UniffiForeignFuture
|
|
1371
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1301
1372
|
type UniffiCallbackInterfaceStorageMethod9 = (
|
|
1302
1373
|
uniffiHandle: bigint,
|
|
1303
1374
|
txid: Uint8Array,
|
|
@@ -1305,19 +1376,19 @@ type UniffiCallbackInterfaceStorageMethod9 = (
|
|
|
1305
1376
|
amountSats: bigint,
|
|
1306
1377
|
uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
|
|
1307
1378
|
uniffiCallbackData: bigint
|
|
1308
|
-
) => UniffiForeignFuture
|
|
1379
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1309
1380
|
type UniffiCallbackInterfaceStorageMethod10 = (
|
|
1310
1381
|
uniffiHandle: bigint,
|
|
1311
1382
|
txid: Uint8Array,
|
|
1312
1383
|
vout: number,
|
|
1313
1384
|
uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
|
|
1314
1385
|
uniffiCallbackData: bigint
|
|
1315
|
-
) => UniffiForeignFuture
|
|
1386
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1316
1387
|
type UniffiCallbackInterfaceStorageMethod11 = (
|
|
1317
1388
|
uniffiHandle: bigint,
|
|
1318
1389
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1319
1390
|
uniffiCallbackData: bigint
|
|
1320
|
-
) => UniffiForeignFuture
|
|
1391
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1321
1392
|
type UniffiCallbackInterfaceStorageMethod12 = (
|
|
1322
1393
|
uniffiHandle: bigint,
|
|
1323
1394
|
txid: Uint8Array,
|
|
@@ -1325,90 +1396,90 @@ type UniffiCallbackInterfaceStorageMethod12 = (
|
|
|
1325
1396
|
payload: Uint8Array,
|
|
1326
1397
|
uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
|
|
1327
1398
|
uniffiCallbackData: bigint
|
|
1328
|
-
) => UniffiForeignFuture
|
|
1399
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1329
1400
|
type UniffiCallbackInterfaceStorageMethod13 = (
|
|
1330
1401
|
uniffiHandle: bigint,
|
|
1331
1402
|
metadata: Uint8Array,
|
|
1332
1403
|
uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
|
|
1333
1404
|
uniffiCallbackData: bigint
|
|
1334
|
-
) => UniffiForeignFuture
|
|
1405
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1335
1406
|
type UniffiCallbackInterfaceStorageMethod14 = (
|
|
1336
1407
|
uniffiHandle: bigint,
|
|
1337
1408
|
request: Uint8Array,
|
|
1338
1409
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1339
1410
|
uniffiCallbackData: bigint
|
|
1340
|
-
) => UniffiForeignFuture
|
|
1411
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1341
1412
|
type UniffiCallbackInterfaceStorageMethod15 = (
|
|
1342
1413
|
uniffiHandle: bigint,
|
|
1343
1414
|
id: Uint8Array,
|
|
1344
1415
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1345
1416
|
uniffiCallbackData: bigint
|
|
1346
|
-
) => UniffiForeignFuture
|
|
1417
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1347
1418
|
type UniffiCallbackInterfaceStorageMethod16 = (
|
|
1348
1419
|
uniffiHandle: bigint,
|
|
1349
1420
|
contact: Uint8Array,
|
|
1350
1421
|
uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
|
|
1351
1422
|
uniffiCallbackData: bigint
|
|
1352
|
-
) => UniffiForeignFuture
|
|
1423
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1353
1424
|
type UniffiCallbackInterfaceStorageMethod17 = (
|
|
1354
1425
|
uniffiHandle: bigint,
|
|
1355
1426
|
id: Uint8Array,
|
|
1356
1427
|
uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
|
|
1357
1428
|
uniffiCallbackData: bigint
|
|
1358
|
-
) => UniffiForeignFuture
|
|
1429
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1359
1430
|
type UniffiCallbackInterfaceStorageMethod18 = (
|
|
1360
1431
|
uniffiHandle: bigint,
|
|
1361
1432
|
record: Uint8Array,
|
|
1362
1433
|
uniffiFutureCallback: UniffiForeignFutureCompleteU64,
|
|
1363
1434
|
uniffiCallbackData: bigint
|
|
1364
|
-
) => UniffiForeignFuture
|
|
1435
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1365
1436
|
type UniffiCallbackInterfaceStorageMethod19 = (
|
|
1366
1437
|
uniffiHandle: bigint,
|
|
1367
1438
|
record: Uint8Array,
|
|
1368
1439
|
localRevision: bigint,
|
|
1369
1440
|
uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
|
|
1370
1441
|
uniffiCallbackData: bigint
|
|
1371
|
-
) => UniffiForeignFuture
|
|
1442
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1372
1443
|
type UniffiCallbackInterfaceStorageMethod20 = (
|
|
1373
1444
|
uniffiHandle: bigint,
|
|
1374
1445
|
limit: number,
|
|
1375
1446
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1376
1447
|
uniffiCallbackData: bigint
|
|
1377
|
-
) => UniffiForeignFuture
|
|
1448
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1378
1449
|
type UniffiCallbackInterfaceStorageMethod21 = (
|
|
1379
1450
|
uniffiHandle: bigint,
|
|
1380
1451
|
uniffiFutureCallback: UniffiForeignFutureCompleteU64,
|
|
1381
1452
|
uniffiCallbackData: bigint
|
|
1382
|
-
) => UniffiForeignFuture
|
|
1453
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1383
1454
|
type UniffiCallbackInterfaceStorageMethod22 = (
|
|
1384
1455
|
uniffiHandle: bigint,
|
|
1385
1456
|
records: Uint8Array,
|
|
1386
1457
|
uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
|
|
1387
1458
|
uniffiCallbackData: bigint
|
|
1388
|
-
) => UniffiForeignFuture
|
|
1459
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1389
1460
|
type UniffiCallbackInterfaceStorageMethod23 = (
|
|
1390
1461
|
uniffiHandle: bigint,
|
|
1391
1462
|
record: Uint8Array,
|
|
1392
1463
|
uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
|
|
1393
1464
|
uniffiCallbackData: bigint
|
|
1394
|
-
) => UniffiForeignFuture
|
|
1465
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1395
1466
|
type UniffiCallbackInterfaceStorageMethod24 = (
|
|
1396
1467
|
uniffiHandle: bigint,
|
|
1397
1468
|
limit: number,
|
|
1398
1469
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1399
1470
|
uniffiCallbackData: bigint
|
|
1400
|
-
) => UniffiForeignFuture
|
|
1471
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1401
1472
|
type UniffiCallbackInterfaceStorageMethod25 = (
|
|
1402
1473
|
uniffiHandle: bigint,
|
|
1403
1474
|
uniffiFutureCallback: UniffiForeignFutureCompleteRustBuffer,
|
|
1404
1475
|
uniffiCallbackData: bigint
|
|
1405
|
-
) => UniffiForeignFuture
|
|
1476
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1406
1477
|
type UniffiCallbackInterfaceStorageMethod26 = (
|
|
1407
1478
|
uniffiHandle: bigint,
|
|
1408
1479
|
record: Uint8Array,
|
|
1409
1480
|
uniffiFutureCallback: UniffiForeignFutureCompleteVoid,
|
|
1410
1481
|
uniffiCallbackData: bigint
|
|
1411
|
-
) => UniffiForeignFuture
|
|
1482
|
+
) => UniffiResult<UniffiForeignFuture>;
|
|
1412
1483
|
export type UniffiVTableCallbackInterfaceEventListener = {
|
|
1413
1484
|
onEvent: UniffiCallbackInterfaceEventListenerMethod0;
|
|
1414
1485
|
uniffiFree: UniffiCallbackInterfaceFree;
|
|
@@ -1453,6 +1524,11 @@ export type UniffiVTableCallbackInterfaceFiatService = {
|
|
|
1453
1524
|
fetchFiatRates: UniffiCallbackInterfaceFiatServiceMethod1;
|
|
1454
1525
|
uniffiFree: UniffiCallbackInterfaceFree;
|
|
1455
1526
|
};
|
|
1527
|
+
export type UniffiVTableCallbackInterfacePasskeyPrfProvider = {
|
|
1528
|
+
derivePrfSeed: UniffiCallbackInterfacePasskeyPrfProviderMethod0;
|
|
1529
|
+
isPrfAvailable: UniffiCallbackInterfacePasskeyPrfProviderMethod1;
|
|
1530
|
+
uniffiFree: UniffiCallbackInterfaceFree;
|
|
1531
|
+
};
|
|
1456
1532
|
export type UniffiVTableCallbackInterfacePaymentObserver = {
|
|
1457
1533
|
beforeSend: UniffiCallbackInterfacePaymentObserverMethod0;
|
|
1458
1534
|
uniffiFree: UniffiCallbackInterfaceFree;
|