@breeztech/breez-sdk-spark 0.13.10-dev → 0.13.11-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/breez-sdk-spark.tgz +0 -0
- package/bundler/breez_sdk_spark_wasm.d.ts +33 -0
- package/bundler/breez_sdk_spark_wasm.js +1 -1
- package/bundler/breez_sdk_spark_wasm_bg.js +66 -24
- package/bundler/breez_sdk_spark_wasm_bg.wasm +0 -0
- package/bundler/breez_sdk_spark_wasm_bg.wasm.d.ts +7 -5
- package/deno/breez_sdk_spark_wasm.d.ts +33 -0
- package/deno/breez_sdk_spark_wasm.js +66 -24
- package/deno/breez_sdk_spark_wasm_bg.wasm +0 -0
- package/deno/breez_sdk_spark_wasm_bg.wasm.d.ts +7 -5
- package/nodejs/breez_sdk_spark_wasm.d.ts +33 -0
- package/nodejs/breez_sdk_spark_wasm.js +67 -24
- package/nodejs/breez_sdk_spark_wasm_bg.wasm +0 -0
- package/nodejs/breez_sdk_spark_wasm_bg.wasm.d.ts +7 -5
- package/nodejs/index.js +34 -0
- package/nodejs/index.mjs +1 -0
- package/nodejs/mysql-storage/errors.cjs +19 -0
- package/nodejs/mysql-storage/index.cjs +1366 -0
- package/nodejs/mysql-storage/migrations.cjs +387 -0
- package/nodejs/mysql-storage/package.json +9 -0
- package/nodejs/mysql-token-store/errors.cjs +9 -0
- package/nodejs/mysql-token-store/index.cjs +988 -0
- package/nodejs/mysql-token-store/migrations.cjs +255 -0
- package/nodejs/mysql-token-store/package.json +9 -0
- package/nodejs/mysql-tree-store/errors.cjs +9 -0
- package/nodejs/mysql-tree-store/index.cjs +939 -0
- package/nodejs/mysql-tree-store/migrations.cjs +221 -0
- package/nodejs/mysql-tree-store/package.json +9 -0
- package/nodejs/package.json +3 -0
- package/nodejs/postgres-storage/index.cjs +147 -92
- package/nodejs/postgres-storage/migrations.cjs +85 -4
- package/nodejs/postgres-token-store/index.cjs +176 -89
- package/nodejs/postgres-token-store/migrations.cjs +92 -3
- package/nodejs/postgres-tree-store/index.cjs +168 -83
- package/nodejs/postgres-tree-store/migrations.cjs +80 -3
- package/package.json +1 -1
- package/ssr/index.js +5 -0
- package/web/breez_sdk_spark_wasm.d.ts +40 -5
- package/web/breez_sdk_spark_wasm.js +66 -24
- package/web/breez_sdk_spark_wasm_bg.wasm +0 -0
- package/web/breez_sdk_spark_wasm_bg.wasm.d.ts +7 -5
package/breez-sdk-spark.tgz
CHANGED
|
Binary file
|
|
@@ -142,6 +142,28 @@ export interface Wallet {
|
|
|
142
142
|
label: string;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
+
/**
|
|
146
|
+
* Configuration for MySQL storage connection pool. Targets MySQL 8.0+.
|
|
147
|
+
*/
|
|
148
|
+
export interface MysqlStorageConfig {
|
|
149
|
+
/**
|
|
150
|
+
* MySQL connection URL (e.g. `mysql://user:pass@host:3306/dbname`).
|
|
151
|
+
*/
|
|
152
|
+
connectionString: string;
|
|
153
|
+
/**
|
|
154
|
+
* Maximum number of connections in the pool.
|
|
155
|
+
*/
|
|
156
|
+
maxPoolSize: number;
|
|
157
|
+
/**
|
|
158
|
+
* Timeout in seconds for establishing a new connection (0 = no timeout).
|
|
159
|
+
*/
|
|
160
|
+
createTimeoutSecs: number;
|
|
161
|
+
/**
|
|
162
|
+
* Timeout in seconds before recycling an idle connection.
|
|
163
|
+
*/
|
|
164
|
+
recycleTimeoutSecs: number;
|
|
165
|
+
}
|
|
166
|
+
|
|
145
167
|
/**
|
|
146
168
|
* Configuration for PostgreSQL storage connection pool.
|
|
147
169
|
*/
|
|
@@ -1519,6 +1541,7 @@ export class SdkBuilder {
|
|
|
1519
1541
|
withFiatService(fiat_service: FiatService): SdkBuilder;
|
|
1520
1542
|
withKeySet(config: KeySetConfig): SdkBuilder;
|
|
1521
1543
|
withLnurlClient(lnurl_client: RestClient): SdkBuilder;
|
|
1544
|
+
withMysqlBackend(config: MysqlStorageConfig): SdkBuilder;
|
|
1522
1545
|
withPaymentObserver(payment_observer: PaymentObserver): SdkBuilder;
|
|
1523
1546
|
withPostgresBackend(config: PostgresStorageConfig): SdkBuilder;
|
|
1524
1547
|
withRestChainService(url: string, api_type: ChainApiType, credentials?: Credentials | null): SdkBuilder;
|
|
@@ -1546,6 +1569,16 @@ export function defaultConfig(network: Network): Config;
|
|
|
1546
1569
|
|
|
1547
1570
|
export function defaultExternalSigner(mnemonic: string, passphrase: string | null | undefined, network: Network, key_set_config?: KeySetConfig | null): DefaultSigner;
|
|
1548
1571
|
|
|
1572
|
+
/**
|
|
1573
|
+
* Creates a default MySQL storage configuration with sensible defaults.
|
|
1574
|
+
*
|
|
1575
|
+
* Default values:
|
|
1576
|
+
* - `maxPoolSize`: 10
|
|
1577
|
+
* - `createTimeoutSecs`: 0 (no timeout)
|
|
1578
|
+
* - `recycleTimeoutSecs`: 10
|
|
1579
|
+
*/
|
|
1580
|
+
export function defaultMysqlStorageConfig(connection_string: string): MysqlStorageConfig;
|
|
1581
|
+
|
|
1549
1582
|
/**
|
|
1550
1583
|
* Creates a default PostgreSQL storage configuration with sensible defaults.
|
|
1551
1584
|
*
|
|
@@ -5,5 +5,5 @@ import { __wbg_set_wasm } from "./breez_sdk_spark_wasm_bg.js";
|
|
|
5
5
|
__wbg_set_wasm(wasm);
|
|
6
6
|
wasm.__wbindgen_start();
|
|
7
7
|
export {
|
|
8
|
-
BreezSdk, DefaultSigner, IntoUnderlyingByteSource, IntoUnderlyingSink, IntoUnderlyingSource, Passkey, SdkBuilder, TokenIssuer, connect, connectWithSigner, defaultConfig, defaultExternalSigner, defaultPostgresStorageConfig, getSparkStatus, initLogging, task_worker_entry_point
|
|
8
|
+
BreezSdk, DefaultSigner, IntoUnderlyingByteSource, IntoUnderlyingSink, IntoUnderlyingSource, Passkey, SdkBuilder, TokenIssuer, connect, connectWithSigner, defaultConfig, defaultExternalSigner, defaultMysqlStorageConfig, defaultPostgresStorageConfig, getSparkStatus, initLogging, task_worker_entry_point
|
|
9
9
|
} from "./breez_sdk_spark_wasm_bg.js";
|
|
@@ -862,6 +862,15 @@ export class SdkBuilder {
|
|
|
862
862
|
const ret = wasm.sdkbuilder_withLnurlClient(ptr, lnurl_client);
|
|
863
863
|
return SdkBuilder.__wrap(ret);
|
|
864
864
|
}
|
|
865
|
+
/**
|
|
866
|
+
* @param {MysqlStorageConfig} config
|
|
867
|
+
* @returns {SdkBuilder}
|
|
868
|
+
*/
|
|
869
|
+
withMysqlBackend(config) {
|
|
870
|
+
const ptr = this.__destroy_into_raw();
|
|
871
|
+
const ret = wasm.sdkbuilder_withMysqlBackend(ptr, config);
|
|
872
|
+
return SdkBuilder.__wrap(ret);
|
|
873
|
+
}
|
|
865
874
|
/**
|
|
866
875
|
* @param {PaymentObserver} payment_observer
|
|
867
876
|
* @returns {SdkBuilder}
|
|
@@ -1029,6 +1038,23 @@ export function defaultExternalSigner(mnemonic, passphrase, network, key_set_con
|
|
|
1029
1038
|
return DefaultSigner.__wrap(ret[0]);
|
|
1030
1039
|
}
|
|
1031
1040
|
|
|
1041
|
+
/**
|
|
1042
|
+
* Creates a default MySQL storage configuration with sensible defaults.
|
|
1043
|
+
*
|
|
1044
|
+
* Default values:
|
|
1045
|
+
* - `maxPoolSize`: 10
|
|
1046
|
+
* - `createTimeoutSecs`: 0 (no timeout)
|
|
1047
|
+
* - `recycleTimeoutSecs`: 10
|
|
1048
|
+
* @param {string} connection_string
|
|
1049
|
+
* @returns {MysqlStorageConfig}
|
|
1050
|
+
*/
|
|
1051
|
+
export function defaultMysqlStorageConfig(connection_string) {
|
|
1052
|
+
const ptr0 = passStringToWasm0(connection_string, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1053
|
+
const len0 = WASM_VECTOR_LEN;
|
|
1054
|
+
const ret = wasm.defaultMysqlStorageConfig(ptr0, len0);
|
|
1055
|
+
return ret;
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1032
1058
|
/**
|
|
1033
1059
|
* Creates a default PostgreSQL storage configuration with sensible defaults.
|
|
1034
1060
|
*
|
|
@@ -1329,20 +1355,36 @@ export function __wbg_createDefaultStorage_0d66fd24fb8cc6f3() { return handleErr
|
|
|
1329
1355
|
const ret = createDefaultStorage(getStringFromWasm0(arg0, arg1), arg2);
|
|
1330
1356
|
return ret;
|
|
1331
1357
|
}, arguments); }
|
|
1358
|
+
export function __wbg_createMysqlPool_8927bff3a28fcef9() { return handleError(function (arg0) {
|
|
1359
|
+
const ret = createMysqlPool(arg0);
|
|
1360
|
+
return ret;
|
|
1361
|
+
}, arguments); }
|
|
1362
|
+
export function __wbg_createMysqlStorageWithPool_c92d8cd5f2ca6ade() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1363
|
+
const ret = createMysqlStorageWithPool(arg0, getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
1364
|
+
return ret;
|
|
1365
|
+
}, arguments); }
|
|
1366
|
+
export function __wbg_createMysqlTokenStoreWithPool_cb308b20dccd4b4e() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1367
|
+
const ret = createMysqlTokenStoreWithPool(arg0, getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
1368
|
+
return ret;
|
|
1369
|
+
}, arguments); }
|
|
1370
|
+
export function __wbg_createMysqlTreeStoreWithPool_98638c799d6a967c() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1371
|
+
const ret = createMysqlTreeStoreWithPool(arg0, getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
1372
|
+
return ret;
|
|
1373
|
+
}, arguments); }
|
|
1332
1374
|
export function __wbg_createPostgresPool_3c396c7ab2f0eab2() { return handleError(function (arg0) {
|
|
1333
1375
|
const ret = createPostgresPool(arg0);
|
|
1334
1376
|
return ret;
|
|
1335
1377
|
}, arguments); }
|
|
1336
|
-
export function
|
|
1337
|
-
const ret = createPostgresStorageWithPool(arg0, arg1);
|
|
1378
|
+
export function __wbg_createPostgresStorageWithPool_3fe1b7ee3ca10589() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1379
|
+
const ret = createPostgresStorageWithPool(arg0, getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
1338
1380
|
return ret;
|
|
1339
1381
|
}, arguments); }
|
|
1340
|
-
export function
|
|
1341
|
-
const ret = createPostgresTokenStoreWithPool(arg0, arg1);
|
|
1382
|
+
export function __wbg_createPostgresTokenStoreWithPool_ebd4c54228196816() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1383
|
+
const ret = createPostgresTokenStoreWithPool(arg0, getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
1342
1384
|
return ret;
|
|
1343
1385
|
}, arguments); }
|
|
1344
|
-
export function
|
|
1345
|
-
const ret = createPostgresTreeStoreWithPool(arg0, arg1);
|
|
1386
|
+
export function __wbg_createPostgresTreeStoreWithPool_6b43821b450142cb() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1387
|
+
const ret = createPostgresTreeStoreWithPool(arg0, getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
1346
1388
|
return ret;
|
|
1347
1389
|
}, arguments); }
|
|
1348
1390
|
export function __wbg_crypto_38df2bab126b63dc(arg0) {
|
|
@@ -1473,7 +1515,7 @@ export function __wbg_entries_bb9843ba73dc70d6(arg0) {
|
|
|
1473
1515
|
const ret = Object.entries(arg0);
|
|
1474
1516
|
return ret;
|
|
1475
1517
|
}
|
|
1476
|
-
export function
|
|
1518
|
+
export function __wbg_error_145dadf4216d70bc(arg0, arg1) {
|
|
1477
1519
|
console.error(getStringFromWasm0(arg0, arg1));
|
|
1478
1520
|
}
|
|
1479
1521
|
export function __wbg_fetchFiatCurrencies_8afa0468f01bf013() { return handleError(function (arg0) {
|
|
@@ -2150,7 +2192,7 @@ export function __wbg_setLnurlMetadata_084b50d8b878f93f() { return handleError(f
|
|
|
2150
2192
|
const ret = arg0.setLnurlMetadata(v0);
|
|
2151
2193
|
return ret;
|
|
2152
2194
|
}, arguments); }
|
|
2153
|
-
export function
|
|
2195
|
+
export function __wbg_setTimeout_631eb4eafbc308a9(arg0, arg1) {
|
|
2154
2196
|
globalThis.setTimeout(arg0, arg1);
|
|
2155
2197
|
}
|
|
2156
2198
|
export function __wbg_setTimeout_ef24d2fc3ad97385() { return handleError(function (arg0, arg1) {
|
|
@@ -2441,41 +2483,41 @@ export function __wbg_wasClean_92b4133f985dfae0(arg0) {
|
|
|
2441
2483
|
}
|
|
2442
2484
|
export function __wbindgen_cast_0000000000000001(arg0, arg1) {
|
|
2443
2485
|
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 16, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
2444
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
2486
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7);
|
|
2445
2487
|
return ret;
|
|
2446
2488
|
}
|
|
2447
2489
|
export function __wbindgen_cast_0000000000000002(arg0, arg1) {
|
|
2448
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx:
|
|
2490
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 401, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2449
2491
|
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h4819aba3eed2db57);
|
|
2450
2492
|
return ret;
|
|
2451
2493
|
}
|
|
2452
2494
|
export function __wbindgen_cast_0000000000000003(arg0, arg1) {
|
|
2453
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx:
|
|
2495
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 401, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2454
2496
|
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h4819aba3eed2db57_2);
|
|
2455
2497
|
return ret;
|
|
2456
2498
|
}
|
|
2457
2499
|
export function __wbindgen_cast_0000000000000004(arg0, arg1) {
|
|
2458
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx:
|
|
2500
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 401, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2459
2501
|
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h4819aba3eed2db57_3);
|
|
2460
2502
|
return ret;
|
|
2461
2503
|
}
|
|
2462
2504
|
export function __wbindgen_cast_0000000000000005(arg0, arg1) {
|
|
2463
2505
|
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("Storage")], shim_idx: 16, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
2464
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
2506
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_4);
|
|
2465
2507
|
return ret;
|
|
2466
2508
|
}
|
|
2467
2509
|
export function __wbindgen_cast_0000000000000006(arg0, arg1) {
|
|
2468
2510
|
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("TokenStore")], shim_idx: 16, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
2469
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
2511
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_5);
|
|
2470
2512
|
return ret;
|
|
2471
2513
|
}
|
|
2472
2514
|
export function __wbindgen_cast_0000000000000007(arg0, arg1) {
|
|
2473
2515
|
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("TreeStore")], shim_idx: 16, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
2474
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
2516
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_6);
|
|
2475
2517
|
return ret;
|
|
2476
2518
|
}
|
|
2477
2519
|
export function __wbindgen_cast_0000000000000008(arg0, arg1) {
|
|
2478
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx:
|
|
2520
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 406, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2479
2521
|
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h484cd36e13f37bd7);
|
|
2480
2522
|
return ret;
|
|
2481
2523
|
}
|
|
@@ -2569,29 +2611,29 @@ function wasm_bindgen__convert__closures_____invoke__h4819aba3eed2db57_3(arg0, a
|
|
|
2569
2611
|
wasm.wasm_bindgen__convert__closures_____invoke__h4819aba3eed2db57_3(arg0, arg1, arg2);
|
|
2570
2612
|
}
|
|
2571
2613
|
|
|
2572
|
-
function
|
|
2573
|
-
const ret = wasm.
|
|
2614
|
+
function wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7(arg0, arg1, arg2) {
|
|
2615
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7(arg0, arg1, arg2);
|
|
2574
2616
|
if (ret[1]) {
|
|
2575
2617
|
throw takeFromExternrefTable0(ret[0]);
|
|
2576
2618
|
}
|
|
2577
2619
|
}
|
|
2578
2620
|
|
|
2579
|
-
function
|
|
2580
|
-
const ret = wasm.
|
|
2621
|
+
function wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_4(arg0, arg1, arg2) {
|
|
2622
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_4(arg0, arg1, arg2);
|
|
2581
2623
|
if (ret[1]) {
|
|
2582
2624
|
throw takeFromExternrefTable0(ret[0]);
|
|
2583
2625
|
}
|
|
2584
2626
|
}
|
|
2585
2627
|
|
|
2586
|
-
function
|
|
2587
|
-
const ret = wasm.
|
|
2628
|
+
function wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_5(arg0, arg1, arg2) {
|
|
2629
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_5(arg0, arg1, arg2);
|
|
2588
2630
|
if (ret[1]) {
|
|
2589
2631
|
throw takeFromExternrefTable0(ret[0]);
|
|
2590
2632
|
}
|
|
2591
2633
|
}
|
|
2592
2634
|
|
|
2593
|
-
function
|
|
2594
|
-
const ret = wasm.
|
|
2635
|
+
function wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_6(arg0, arg1, arg2) {
|
|
2636
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_6(arg0, arg1, arg2);
|
|
2595
2637
|
if (ret[1]) {
|
|
2596
2638
|
throw takeFromExternrefTable0(ret[0]);
|
|
2597
2639
|
}
|
|
Binary file
|
|
@@ -54,7 +54,7 @@ export const connect: (a: any) => any;
|
|
|
54
54
|
export const connectWithSigner: (a: any, b: any, c: number, d: number) => any;
|
|
55
55
|
export const defaultConfig: (a: any) => any;
|
|
56
56
|
export const defaultExternalSigner: (a: number, b: number, c: number, d: number, e: any, f: number) => [number, number, number];
|
|
57
|
-
export const
|
|
57
|
+
export const defaultMysqlStorageConfig: (a: number, b: number) => any;
|
|
58
58
|
export const defaultsigner_aggregateFrost: (a: number, b: any) => any;
|
|
59
59
|
export const defaultsigner_decryptEcies: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
60
60
|
export const defaultsigner_derivePublicKey: (a: number, b: number, c: number) => any;
|
|
@@ -90,6 +90,7 @@ export const sdkbuilder_withDefaultStorage: (a: number, b: number, c: number) =>
|
|
|
90
90
|
export const sdkbuilder_withFiatService: (a: number, b: any) => number;
|
|
91
91
|
export const sdkbuilder_withKeySet: (a: number, b: any) => number;
|
|
92
92
|
export const sdkbuilder_withLnurlClient: (a: number, b: any) => number;
|
|
93
|
+
export const sdkbuilder_withMysqlBackend: (a: number, b: any) => number;
|
|
93
94
|
export const sdkbuilder_withPaymentObserver: (a: number, b: any) => number;
|
|
94
95
|
export const sdkbuilder_withPostgresBackend: (a: number, b: any) => number;
|
|
95
96
|
export const sdkbuilder_withRestChainService: (a: number, b: number, c: number, d: any, e: number) => number;
|
|
@@ -119,10 +120,11 @@ export const intounderlyingsink_close: (a: number) => any;
|
|
|
119
120
|
export const intounderlyingsink_write: (a: number, b: any) => any;
|
|
120
121
|
export const intounderlyingsource_cancel: (a: number) => void;
|
|
121
122
|
export const intounderlyingsource_pull: (a: number, b: any) => any;
|
|
122
|
-
export const
|
|
123
|
-
export const
|
|
124
|
-
export const
|
|
125
|
-
export const
|
|
123
|
+
export const defaultPostgresStorageConfig: (a: number, b: number) => any;
|
|
124
|
+
export const wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7: (a: number, b: number, c: any) => [number, number];
|
|
125
|
+
export const wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_4: (a: number, b: number, c: any) => [number, number];
|
|
126
|
+
export const wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_5: (a: number, b: number, c: any) => [number, number];
|
|
127
|
+
export const wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_6: (a: number, b: number, c: any) => [number, number];
|
|
126
128
|
export const wasm_bindgen__convert__closures_____invoke__h41057d61edf43a32: (a: number, b: number, c: any, d: any) => void;
|
|
127
129
|
export const wasm_bindgen__convert__closures_____invoke__h4819aba3eed2db57: (a: number, b: number, c: any) => void;
|
|
128
130
|
export const wasm_bindgen__convert__closures_____invoke__h4819aba3eed2db57_2: (a: number, b: number, c: any) => void;
|
|
@@ -142,6 +142,28 @@ export interface Wallet {
|
|
|
142
142
|
label: string;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
+
/**
|
|
146
|
+
* Configuration for MySQL storage connection pool. Targets MySQL 8.0+.
|
|
147
|
+
*/
|
|
148
|
+
export interface MysqlStorageConfig {
|
|
149
|
+
/**
|
|
150
|
+
* MySQL connection URL (e.g. `mysql://user:pass@host:3306/dbname`).
|
|
151
|
+
*/
|
|
152
|
+
connectionString: string;
|
|
153
|
+
/**
|
|
154
|
+
* Maximum number of connections in the pool.
|
|
155
|
+
*/
|
|
156
|
+
maxPoolSize: number;
|
|
157
|
+
/**
|
|
158
|
+
* Timeout in seconds for establishing a new connection (0 = no timeout).
|
|
159
|
+
*/
|
|
160
|
+
createTimeoutSecs: number;
|
|
161
|
+
/**
|
|
162
|
+
* Timeout in seconds before recycling an idle connection.
|
|
163
|
+
*/
|
|
164
|
+
recycleTimeoutSecs: number;
|
|
165
|
+
}
|
|
166
|
+
|
|
145
167
|
/**
|
|
146
168
|
* Configuration for PostgreSQL storage connection pool.
|
|
147
169
|
*/
|
|
@@ -1519,6 +1541,7 @@ export class SdkBuilder {
|
|
|
1519
1541
|
withFiatService(fiat_service: FiatService): SdkBuilder;
|
|
1520
1542
|
withKeySet(config: KeySetConfig): SdkBuilder;
|
|
1521
1543
|
withLnurlClient(lnurl_client: RestClient): SdkBuilder;
|
|
1544
|
+
withMysqlBackend(config: MysqlStorageConfig): SdkBuilder;
|
|
1522
1545
|
withPaymentObserver(payment_observer: PaymentObserver): SdkBuilder;
|
|
1523
1546
|
withPostgresBackend(config: PostgresStorageConfig): SdkBuilder;
|
|
1524
1547
|
withRestChainService(url: string, api_type: ChainApiType, credentials?: Credentials | null): SdkBuilder;
|
|
@@ -1546,6 +1569,16 @@ export function defaultConfig(network: Network): Config;
|
|
|
1546
1569
|
|
|
1547
1570
|
export function defaultExternalSigner(mnemonic: string, passphrase: string | null | undefined, network: Network, key_set_config?: KeySetConfig | null): DefaultSigner;
|
|
1548
1571
|
|
|
1572
|
+
/**
|
|
1573
|
+
* Creates a default MySQL storage configuration with sensible defaults.
|
|
1574
|
+
*
|
|
1575
|
+
* Default values:
|
|
1576
|
+
* - `maxPoolSize`: 10
|
|
1577
|
+
* - `createTimeoutSecs`: 0 (no timeout)
|
|
1578
|
+
* - `recycleTimeoutSecs`: 10
|
|
1579
|
+
*/
|
|
1580
|
+
export function defaultMysqlStorageConfig(connection_string: string): MysqlStorageConfig;
|
|
1581
|
+
|
|
1549
1582
|
/**
|
|
1550
1583
|
* Creates a default PostgreSQL storage configuration with sensible defaults.
|
|
1551
1584
|
*
|
|
@@ -864,6 +864,15 @@ export class SdkBuilder {
|
|
|
864
864
|
const ret = wasm.sdkbuilder_withLnurlClient(ptr, lnurl_client);
|
|
865
865
|
return SdkBuilder.__wrap(ret);
|
|
866
866
|
}
|
|
867
|
+
/**
|
|
868
|
+
* @param {MysqlStorageConfig} config
|
|
869
|
+
* @returns {SdkBuilder}
|
|
870
|
+
*/
|
|
871
|
+
withMysqlBackend(config) {
|
|
872
|
+
const ptr = this.__destroy_into_raw();
|
|
873
|
+
const ret = wasm.sdkbuilder_withMysqlBackend(ptr, config);
|
|
874
|
+
return SdkBuilder.__wrap(ret);
|
|
875
|
+
}
|
|
867
876
|
/**
|
|
868
877
|
* @param {PaymentObserver} payment_observer
|
|
869
878
|
* @returns {SdkBuilder}
|
|
@@ -1031,6 +1040,23 @@ export function defaultExternalSigner(mnemonic, passphrase, network, key_set_con
|
|
|
1031
1040
|
return DefaultSigner.__wrap(ret[0]);
|
|
1032
1041
|
}
|
|
1033
1042
|
|
|
1043
|
+
/**
|
|
1044
|
+
* Creates a default MySQL storage configuration with sensible defaults.
|
|
1045
|
+
*
|
|
1046
|
+
* Default values:
|
|
1047
|
+
* - `maxPoolSize`: 10
|
|
1048
|
+
* - `createTimeoutSecs`: 0 (no timeout)
|
|
1049
|
+
* - `recycleTimeoutSecs`: 10
|
|
1050
|
+
* @param {string} connection_string
|
|
1051
|
+
* @returns {MysqlStorageConfig}
|
|
1052
|
+
*/
|
|
1053
|
+
export function defaultMysqlStorageConfig(connection_string) {
|
|
1054
|
+
const ptr0 = passStringToWasm0(connection_string, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1055
|
+
const len0 = WASM_VECTOR_LEN;
|
|
1056
|
+
const ret = wasm.defaultMysqlStorageConfig(ptr0, len0);
|
|
1057
|
+
return ret;
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1034
1060
|
/**
|
|
1035
1061
|
* Creates a default PostgreSQL storage configuration with sensible defaults.
|
|
1036
1062
|
*
|
|
@@ -1334,20 +1360,36 @@ function __wbg_get_imports() {
|
|
|
1334
1360
|
const ret = createDefaultStorage(getStringFromWasm0(arg0, arg1), arg2);
|
|
1335
1361
|
return ret;
|
|
1336
1362
|
}, arguments); },
|
|
1363
|
+
__wbg_createMysqlPool_8927bff3a28fcef9: function() { return handleError(function (arg0) {
|
|
1364
|
+
const ret = createMysqlPool(arg0);
|
|
1365
|
+
return ret;
|
|
1366
|
+
}, arguments); },
|
|
1367
|
+
__wbg_createMysqlStorageWithPool_c92d8cd5f2ca6ade: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1368
|
+
const ret = createMysqlStorageWithPool(arg0, getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
1369
|
+
return ret;
|
|
1370
|
+
}, arguments); },
|
|
1371
|
+
__wbg_createMysqlTokenStoreWithPool_cb308b20dccd4b4e: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1372
|
+
const ret = createMysqlTokenStoreWithPool(arg0, getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
1373
|
+
return ret;
|
|
1374
|
+
}, arguments); },
|
|
1375
|
+
__wbg_createMysqlTreeStoreWithPool_98638c799d6a967c: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1376
|
+
const ret = createMysqlTreeStoreWithPool(arg0, getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
1377
|
+
return ret;
|
|
1378
|
+
}, arguments); },
|
|
1337
1379
|
__wbg_createPostgresPool_3c396c7ab2f0eab2: function() { return handleError(function (arg0) {
|
|
1338
1380
|
const ret = createPostgresPool(arg0);
|
|
1339
1381
|
return ret;
|
|
1340
1382
|
}, arguments); },
|
|
1341
|
-
|
|
1342
|
-
const ret = createPostgresStorageWithPool(arg0, arg1);
|
|
1383
|
+
__wbg_createPostgresStorageWithPool_3fe1b7ee3ca10589: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1384
|
+
const ret = createPostgresStorageWithPool(arg0, getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
1343
1385
|
return ret;
|
|
1344
1386
|
}, arguments); },
|
|
1345
|
-
|
|
1346
|
-
const ret = createPostgresTokenStoreWithPool(arg0, arg1);
|
|
1387
|
+
__wbg_createPostgresTokenStoreWithPool_ebd4c54228196816: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1388
|
+
const ret = createPostgresTokenStoreWithPool(arg0, getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
1347
1389
|
return ret;
|
|
1348
1390
|
}, arguments); },
|
|
1349
|
-
|
|
1350
|
-
const ret = createPostgresTreeStoreWithPool(arg0, arg1);
|
|
1391
|
+
__wbg_createPostgresTreeStoreWithPool_6b43821b450142cb: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1392
|
+
const ret = createPostgresTreeStoreWithPool(arg0, getArrayU8FromWasm0(arg1, arg2), arg3);
|
|
1351
1393
|
return ret;
|
|
1352
1394
|
}, arguments); },
|
|
1353
1395
|
__wbg_crypto_38df2bab126b63dc: function(arg0) {
|
|
@@ -1478,7 +1520,7 @@ function __wbg_get_imports() {
|
|
|
1478
1520
|
const ret = Object.entries(arg0);
|
|
1479
1521
|
return ret;
|
|
1480
1522
|
},
|
|
1481
|
-
|
|
1523
|
+
__wbg_error_145dadf4216d70bc: function(arg0, arg1) {
|
|
1482
1524
|
console.error(getStringFromWasm0(arg0, arg1));
|
|
1483
1525
|
},
|
|
1484
1526
|
__wbg_fetchFiatCurrencies_8afa0468f01bf013: function() { return handleError(function (arg0) {
|
|
@@ -2155,7 +2197,7 @@ function __wbg_get_imports() {
|
|
|
2155
2197
|
const ret = arg0.setLnurlMetadata(v0);
|
|
2156
2198
|
return ret;
|
|
2157
2199
|
}, arguments); },
|
|
2158
|
-
|
|
2200
|
+
__wbg_setTimeout_631eb4eafbc308a9: function(arg0, arg1) {
|
|
2159
2201
|
globalThis.setTimeout(arg0, arg1);
|
|
2160
2202
|
},
|
|
2161
2203
|
__wbg_setTimeout_ef24d2fc3ad97385: function() { return handleError(function (arg0, arg1) {
|
|
@@ -2446,41 +2488,41 @@ function __wbg_get_imports() {
|
|
|
2446
2488
|
},
|
|
2447
2489
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
2448
2490
|
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 16, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
2449
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
2491
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7);
|
|
2450
2492
|
return ret;
|
|
2451
2493
|
},
|
|
2452
2494
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
2453
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx:
|
|
2495
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 401, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2454
2496
|
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h4819aba3eed2db57);
|
|
2455
2497
|
return ret;
|
|
2456
2498
|
},
|
|
2457
2499
|
__wbindgen_cast_0000000000000003: function(arg0, arg1) {
|
|
2458
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx:
|
|
2500
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 401, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2459
2501
|
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h4819aba3eed2db57_2);
|
|
2460
2502
|
return ret;
|
|
2461
2503
|
},
|
|
2462
2504
|
__wbindgen_cast_0000000000000004: function(arg0, arg1) {
|
|
2463
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx:
|
|
2505
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 401, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2464
2506
|
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h4819aba3eed2db57_3);
|
|
2465
2507
|
return ret;
|
|
2466
2508
|
},
|
|
2467
2509
|
__wbindgen_cast_0000000000000005: function(arg0, arg1) {
|
|
2468
2510
|
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("Storage")], shim_idx: 16, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
2469
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
2511
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_4);
|
|
2470
2512
|
return ret;
|
|
2471
2513
|
},
|
|
2472
2514
|
__wbindgen_cast_0000000000000006: function(arg0, arg1) {
|
|
2473
2515
|
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("TokenStore")], shim_idx: 16, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
2474
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
2516
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_5);
|
|
2475
2517
|
return ret;
|
|
2476
2518
|
},
|
|
2477
2519
|
__wbindgen_cast_0000000000000007: function(arg0, arg1) {
|
|
2478
2520
|
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("TreeStore")], shim_idx: 16, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
2479
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
2521
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_6);
|
|
2480
2522
|
return ret;
|
|
2481
2523
|
},
|
|
2482
2524
|
__wbindgen_cast_0000000000000008: function(arg0, arg1) {
|
|
2483
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx:
|
|
2525
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 406, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2484
2526
|
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h484cd36e13f37bd7);
|
|
2485
2527
|
return ret;
|
|
2486
2528
|
},
|
|
@@ -2581,29 +2623,29 @@ function wasm_bindgen__convert__closures_____invoke__h4819aba3eed2db57_3(arg0, a
|
|
|
2581
2623
|
wasm.wasm_bindgen__convert__closures_____invoke__h4819aba3eed2db57_3(arg0, arg1, arg2);
|
|
2582
2624
|
}
|
|
2583
2625
|
|
|
2584
|
-
function
|
|
2585
|
-
const ret = wasm.
|
|
2626
|
+
function wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7(arg0, arg1, arg2) {
|
|
2627
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7(arg0, arg1, arg2);
|
|
2586
2628
|
if (ret[1]) {
|
|
2587
2629
|
throw takeFromExternrefTable0(ret[0]);
|
|
2588
2630
|
}
|
|
2589
2631
|
}
|
|
2590
2632
|
|
|
2591
|
-
function
|
|
2592
|
-
const ret = wasm.
|
|
2633
|
+
function wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_4(arg0, arg1, arg2) {
|
|
2634
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_4(arg0, arg1, arg2);
|
|
2593
2635
|
if (ret[1]) {
|
|
2594
2636
|
throw takeFromExternrefTable0(ret[0]);
|
|
2595
2637
|
}
|
|
2596
2638
|
}
|
|
2597
2639
|
|
|
2598
|
-
function
|
|
2599
|
-
const ret = wasm.
|
|
2640
|
+
function wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_5(arg0, arg1, arg2) {
|
|
2641
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_5(arg0, arg1, arg2);
|
|
2600
2642
|
if (ret[1]) {
|
|
2601
2643
|
throw takeFromExternrefTable0(ret[0]);
|
|
2602
2644
|
}
|
|
2603
2645
|
}
|
|
2604
2646
|
|
|
2605
|
-
function
|
|
2606
|
-
const ret = wasm.
|
|
2647
|
+
function wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_6(arg0, arg1, arg2) {
|
|
2648
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_6(arg0, arg1, arg2);
|
|
2607
2649
|
if (ret[1]) {
|
|
2608
2650
|
throw takeFromExternrefTable0(ret[0]);
|
|
2609
2651
|
}
|
|
Binary file
|
|
@@ -54,7 +54,7 @@ export const connect: (a: any) => any;
|
|
|
54
54
|
export const connectWithSigner: (a: any, b: any, c: number, d: number) => any;
|
|
55
55
|
export const defaultConfig: (a: any) => any;
|
|
56
56
|
export const defaultExternalSigner: (a: number, b: number, c: number, d: number, e: any, f: number) => [number, number, number];
|
|
57
|
-
export const
|
|
57
|
+
export const defaultMysqlStorageConfig: (a: number, b: number) => any;
|
|
58
58
|
export const defaultsigner_aggregateFrost: (a: number, b: any) => any;
|
|
59
59
|
export const defaultsigner_decryptEcies: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
60
60
|
export const defaultsigner_derivePublicKey: (a: number, b: number, c: number) => any;
|
|
@@ -90,6 +90,7 @@ export const sdkbuilder_withDefaultStorage: (a: number, b: number, c: number) =>
|
|
|
90
90
|
export const sdkbuilder_withFiatService: (a: number, b: any) => number;
|
|
91
91
|
export const sdkbuilder_withKeySet: (a: number, b: any) => number;
|
|
92
92
|
export const sdkbuilder_withLnurlClient: (a: number, b: any) => number;
|
|
93
|
+
export const sdkbuilder_withMysqlBackend: (a: number, b: any) => number;
|
|
93
94
|
export const sdkbuilder_withPaymentObserver: (a: number, b: any) => number;
|
|
94
95
|
export const sdkbuilder_withPostgresBackend: (a: number, b: any) => number;
|
|
95
96
|
export const sdkbuilder_withRestChainService: (a: number, b: number, c: number, d: any, e: number) => number;
|
|
@@ -119,10 +120,11 @@ export const intounderlyingsink_close: (a: number) => any;
|
|
|
119
120
|
export const intounderlyingsink_write: (a: number, b: any) => any;
|
|
120
121
|
export const intounderlyingsource_cancel: (a: number) => void;
|
|
121
122
|
export const intounderlyingsource_pull: (a: number, b: any) => any;
|
|
122
|
-
export const
|
|
123
|
-
export const
|
|
124
|
-
export const
|
|
125
|
-
export const
|
|
123
|
+
export const defaultPostgresStorageConfig: (a: number, b: number) => any;
|
|
124
|
+
export const wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7: (a: number, b: number, c: any) => [number, number];
|
|
125
|
+
export const wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_4: (a: number, b: number, c: any) => [number, number];
|
|
126
|
+
export const wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_5: (a: number, b: number, c: any) => [number, number];
|
|
127
|
+
export const wasm_bindgen__convert__closures_____invoke__h27d08ee20b1285c7_6: (a: number, b: number, c: any) => [number, number];
|
|
126
128
|
export const wasm_bindgen__convert__closures_____invoke__h41057d61edf43a32: (a: number, b: number, c: any, d: any) => void;
|
|
127
129
|
export const wasm_bindgen__convert__closures_____invoke__h4819aba3eed2db57: (a: number, b: number, c: any) => void;
|
|
128
130
|
export const wasm_bindgen__convert__closures_____invoke__h4819aba3eed2db57_2: (a: number, b: number, c: any) => void;
|
|
@@ -142,6 +142,28 @@ export interface Wallet {
|
|
|
142
142
|
label: string;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
+
/**
|
|
146
|
+
* Configuration for MySQL storage connection pool. Targets MySQL 8.0+.
|
|
147
|
+
*/
|
|
148
|
+
export interface MysqlStorageConfig {
|
|
149
|
+
/**
|
|
150
|
+
* MySQL connection URL (e.g. `mysql://user:pass@host:3306/dbname`).
|
|
151
|
+
*/
|
|
152
|
+
connectionString: string;
|
|
153
|
+
/**
|
|
154
|
+
* Maximum number of connections in the pool.
|
|
155
|
+
*/
|
|
156
|
+
maxPoolSize: number;
|
|
157
|
+
/**
|
|
158
|
+
* Timeout in seconds for establishing a new connection (0 = no timeout).
|
|
159
|
+
*/
|
|
160
|
+
createTimeoutSecs: number;
|
|
161
|
+
/**
|
|
162
|
+
* Timeout in seconds before recycling an idle connection.
|
|
163
|
+
*/
|
|
164
|
+
recycleTimeoutSecs: number;
|
|
165
|
+
}
|
|
166
|
+
|
|
145
167
|
/**
|
|
146
168
|
* Configuration for PostgreSQL storage connection pool.
|
|
147
169
|
*/
|
|
@@ -1519,6 +1541,7 @@ export class SdkBuilder {
|
|
|
1519
1541
|
withFiatService(fiat_service: FiatService): SdkBuilder;
|
|
1520
1542
|
withKeySet(config: KeySetConfig): SdkBuilder;
|
|
1521
1543
|
withLnurlClient(lnurl_client: RestClient): SdkBuilder;
|
|
1544
|
+
withMysqlBackend(config: MysqlStorageConfig): SdkBuilder;
|
|
1522
1545
|
withPaymentObserver(payment_observer: PaymentObserver): SdkBuilder;
|
|
1523
1546
|
withPostgresBackend(config: PostgresStorageConfig): SdkBuilder;
|
|
1524
1547
|
withRestChainService(url: string, api_type: ChainApiType, credentials?: Credentials | null): SdkBuilder;
|
|
@@ -1546,6 +1569,16 @@ export function defaultConfig(network: Network): Config;
|
|
|
1546
1569
|
|
|
1547
1570
|
export function defaultExternalSigner(mnemonic: string, passphrase: string | null | undefined, network: Network, key_set_config?: KeySetConfig | null): DefaultSigner;
|
|
1548
1571
|
|
|
1572
|
+
/**
|
|
1573
|
+
* Creates a default MySQL storage configuration with sensible defaults.
|
|
1574
|
+
*
|
|
1575
|
+
* Default values:
|
|
1576
|
+
* - `maxPoolSize`: 10
|
|
1577
|
+
* - `createTimeoutSecs`: 0 (no timeout)
|
|
1578
|
+
* - `recycleTimeoutSecs`: 10
|
|
1579
|
+
*/
|
|
1580
|
+
export function defaultMysqlStorageConfig(connection_string: string): MysqlStorageConfig;
|
|
1581
|
+
|
|
1549
1582
|
/**
|
|
1550
1583
|
* Creates a default PostgreSQL storage configuration with sensible defaults.
|
|
1551
1584
|
*
|