@canton-network/wallet-gateway-remote 0.6.0 → 0.7.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.
Files changed (42) hide show
  1. package/dist/auth/jwt-auth-service.d.ts.map +1 -1
  2. package/dist/auth/jwt-auth-service.js +5 -0
  3. package/dist/auth/jwt-unsafe-auth-service.d.ts.map +1 -1
  4. package/dist/auth/jwt-unsafe-auth-service.js +5 -0
  5. package/dist/config/Config.d.ts +28 -646
  6. package/dist/config/Config.d.ts.map +1 -1
  7. package/dist/dapp-api/controller.d.ts.map +1 -1
  8. package/dist/dapp-api/controller.js +55 -30
  9. package/dist/dapp-api/rpc-gen/typings.d.ts +23 -3
  10. package/dist/dapp-api/rpc-gen/typings.d.ts.map +1 -1
  11. package/dist/dapp-api/server.test.js +2 -0
  12. package/dist/ledger/wallet-sync-service.d.ts.map +1 -1
  13. package/dist/ledger/wallet-sync-service.js +1 -0
  14. package/dist/user-api/controller.d.ts +2 -0
  15. package/dist/user-api/controller.d.ts.map +1 -1
  16. package/dist/user-api/controller.js +39 -9
  17. package/dist/user-api/rpc-gen/index.d.ts +6 -0
  18. package/dist/user-api/rpc-gen/index.d.ts.map +1 -1
  19. package/dist/user-api/rpc-gen/index.js +2 -0
  20. package/dist/user-api/rpc-gen/typings.d.ts +51 -26
  21. package/dist/user-api/rpc-gen/typings.d.ts.map +1 -1
  22. package/dist/utils.d.ts +9 -0
  23. package/dist/utils.d.ts.map +1 -0
  24. package/dist/utils.js +18 -0
  25. package/dist/web/frontend/404/index.html +2 -2
  26. package/dist/web/frontend/approve/index.html +3 -4
  27. package/dist/web/frontend/assets/{404-CXLFjs4t.js → 404--ggMeLNi.js} +3 -3
  28. package/dist/web/frontend/assets/{approve-gdszLXiW.js → approve-BauIyUbe.js} +3 -3
  29. package/dist/web/frontend/assets/{callback-DAqmeyV_.js → callback-CSr6jalP.js} +1 -1
  30. package/dist/web/frontend/assets/{index-DZurNsA2.js → index-Lj4FSLif.js} +495 -179
  31. package/dist/web/frontend/assets/{login-BT0j3jH9.js → login-DSxjvFmj.js} +3 -3
  32. package/dist/web/frontend/assets/settings-DS2QQIMl.js +26 -0
  33. package/dist/web/frontend/assets/{state-ZaohYYFB.js → state-DirtiRBm.js} +1 -1
  34. package/dist/web/frontend/assets/{wallets-B3XNkikq.js → wallets-D7tP8D1r.js} +3 -3
  35. package/dist/web/frontend/callback/index.html +2 -2
  36. package/dist/web/frontend/index.html +1 -1
  37. package/dist/web/frontend/login/index.html +3 -3
  38. package/dist/web/frontend/{networks → settings}/index.html +4 -5
  39. package/dist/web/frontend/wallets/index.html +3 -4
  40. package/package.json +18 -18
  41. package/dist/web/frontend/assets/handle-errors-D7N_0lCR.js +0 -1
  42. package/dist/web/frontend/assets/networks-C7TB_OYA.js +0 -221
@@ -1,103 +1,41 @@
1
1
  import { z } from 'zod';
2
2
  export declare const kernelInfoSchema: z.ZodObject<{
3
3
  id: z.ZodString;
4
- clientType: z.ZodUnion<[z.ZodLiteral<"browser">, z.ZodLiteral<"desktop">, z.ZodLiteral<"mobile">, z.ZodLiteral<"remote">]>;
4
+ clientType: z.ZodUnion<readonly [z.ZodLiteral<"browser">, z.ZodLiteral<"desktop">, z.ZodLiteral<"mobile">, z.ZodLiteral<"remote">]>;
5
5
  url: z.ZodString;
6
6
  userUrl: z.ZodString;
7
- }, "strip", z.ZodTypeAny, {
8
- id: string;
9
- clientType: "browser" | "desktop" | "mobile" | "remote";
10
- url: string;
11
- userUrl: string;
12
- }, {
13
- id: string;
14
- clientType: "browser" | "desktop" | "mobile" | "remote";
15
- url: string;
16
- userUrl: string;
17
- }>;
7
+ }, z.core.$strip>;
18
8
  export declare const configSchema: z.ZodObject<{
19
9
  kernel: z.ZodObject<{
20
10
  id: z.ZodString;
21
- clientType: z.ZodUnion<[z.ZodLiteral<"browser">, z.ZodLiteral<"desktop">, z.ZodLiteral<"mobile">, z.ZodLiteral<"remote">]>;
11
+ clientType: z.ZodUnion<readonly [z.ZodLiteral<"browser">, z.ZodLiteral<"desktop">, z.ZodLiteral<"mobile">, z.ZodLiteral<"remote">]>;
22
12
  url: z.ZodString;
23
13
  userUrl: z.ZodString;
24
- }, "strip", z.ZodTypeAny, {
25
- id: string;
26
- clientType: "browser" | "desktop" | "mobile" | "remote";
27
- url: string;
28
- userUrl: string;
29
- }, {
30
- id: string;
31
- clientType: "browser" | "desktop" | "mobile" | "remote";
32
- url: string;
33
- userUrl: string;
34
- }>;
14
+ }, z.core.$strip>;
35
15
  store: z.ZodObject<{
36
- connection: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
16
+ connection: z.ZodDiscriminatedUnion<[z.ZodObject<{
37
17
  type: z.ZodLiteral<"memory">;
38
- }, "strip", z.ZodTypeAny, {
39
- type: "memory";
40
- }, {
41
- type: "memory";
42
- }>, z.ZodObject<{
18
+ }, z.core.$strip>, z.ZodObject<{
43
19
  type: z.ZodLiteral<"sqlite">;
44
20
  database: z.ZodString;
45
- }, "strip", z.ZodTypeAny, {
46
- type: "sqlite";
47
- database: string;
48
- }, {
49
- type: "sqlite";
50
- database: string;
51
- }>, z.ZodObject<{
21
+ }, z.core.$strip>, z.ZodObject<{
52
22
  type: z.ZodLiteral<"postgres">;
53
23
  host: z.ZodString;
54
24
  port: z.ZodNumber;
55
25
  user: z.ZodString;
56
26
  password: z.ZodString;
57
27
  database: z.ZodString;
58
- }, "strip", z.ZodTypeAny, {
59
- type: "postgres";
60
- database: string;
61
- host: string;
62
- port: number;
63
- user: string;
64
- password: string;
65
- }, {
66
- type: "postgres";
67
- database: string;
68
- host: string;
69
- port: number;
70
- user: string;
71
- password: string;
72
- }>]>;
73
- idps: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
28
+ }, z.core.$strip>], "type">;
29
+ idps: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
74
30
  id: z.ZodString;
75
31
  type: z.ZodLiteral<"self_signed">;
76
32
  issuer: z.ZodString;
77
- }, "strip", z.ZodTypeAny, {
78
- type: "self_signed";
79
- issuer: string;
80
- id: string;
81
- }, {
82
- type: "self_signed";
83
- issuer: string;
84
- id: string;
85
- }>, z.ZodObject<{
33
+ }, z.core.$strip>, z.ZodObject<{
86
34
  id: z.ZodString;
87
35
  type: z.ZodLiteral<"oauth">;
88
36
  issuer: z.ZodString;
89
37
  configUrl: z.ZodString;
90
- }, "strip", z.ZodTypeAny, {
91
- type: "oauth";
92
- issuer: string;
93
- id: string;
94
- configUrl: string;
95
- }, {
96
- type: "oauth";
97
- issuer: string;
98
- id: string;
99
- configUrl: string;
100
- }>]>, "many">;
38
+ }, z.core.$strip>], "type">>;
101
39
  networks: z.ZodArray<z.ZodObject<{
102
40
  id: z.ZodString;
103
41
  name: z.ZodString;
@@ -106,619 +44,63 @@ export declare const configSchema: z.ZodObject<{
106
44
  identityProviderId: z.ZodString;
107
45
  ledgerApi: z.ZodObject<{
108
46
  baseUrl: z.ZodString;
109
- }, "strip", z.ZodTypeAny, {
110
- baseUrl: string;
111
- }, {
112
- baseUrl: string;
113
- }>;
114
- auth: z.ZodDiscriminatedUnion<"method", [z.ZodObject<{
47
+ }, z.core.$strip>;
48
+ auth: z.ZodDiscriminatedUnion<[z.ZodObject<{
115
49
  method: z.ZodLiteral<"authorization_code">;
116
50
  audience: z.ZodString;
117
51
  scope: z.ZodString;
118
52
  clientId: z.ZodString;
119
- }, "strip", z.ZodTypeAny, {
120
- method: "authorization_code";
121
- audience: string;
122
- scope: string;
123
- clientId: string;
124
- }, {
125
- method: "authorization_code";
126
- audience: string;
127
- scope: string;
128
- clientId: string;
129
- }>, z.ZodObject<{
53
+ }, z.core.$strip>, z.ZodObject<{
130
54
  method: z.ZodLiteral<"client_credentials">;
131
55
  audience: z.ZodString;
132
56
  scope: z.ZodString;
133
57
  clientId: z.ZodString;
134
58
  clientSecret: z.ZodString;
135
- }, "strip", z.ZodTypeAny, {
136
- method: "client_credentials";
137
- audience: string;
138
- scope: string;
139
- clientId: string;
140
- clientSecret: string;
141
- }, {
142
- method: "client_credentials";
143
- audience: string;
144
- scope: string;
145
- clientId: string;
146
- clientSecret: string;
147
- }>, z.ZodObject<{
59
+ }, z.core.$strip>, z.ZodObject<{
148
60
  method: z.ZodLiteral<"self_signed">;
149
61
  issuer: z.ZodString;
150
62
  audience: z.ZodString;
151
63
  scope: z.ZodString;
152
64
  clientId: z.ZodString;
153
65
  clientSecret: z.ZodString;
154
- }, "strip", z.ZodTypeAny, {
155
- method: "self_signed";
156
- audience: string;
157
- scope: string;
158
- clientId: string;
159
- clientSecret: string;
160
- issuer: string;
161
- }, {
162
- method: "self_signed";
163
- audience: string;
164
- scope: string;
165
- clientId: string;
166
- clientSecret: string;
167
- issuer: string;
168
- }>]>;
169
- adminAuth: z.ZodOptional<z.ZodDiscriminatedUnion<"method", [z.ZodObject<{
66
+ }, z.core.$strip>], "method">;
67
+ adminAuth: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
170
68
  method: z.ZodLiteral<"authorization_code">;
171
69
  audience: z.ZodString;
172
70
  scope: z.ZodString;
173
71
  clientId: z.ZodString;
174
- }, "strip", z.ZodTypeAny, {
175
- method: "authorization_code";
176
- audience: string;
177
- scope: string;
178
- clientId: string;
179
- }, {
180
- method: "authorization_code";
181
- audience: string;
182
- scope: string;
183
- clientId: string;
184
- }>, z.ZodObject<{
72
+ }, z.core.$strip>, z.ZodObject<{
185
73
  method: z.ZodLiteral<"client_credentials">;
186
74
  audience: z.ZodString;
187
75
  scope: z.ZodString;
188
76
  clientId: z.ZodString;
189
77
  clientSecret: z.ZodString;
190
- }, "strip", z.ZodTypeAny, {
191
- method: "client_credentials";
192
- audience: string;
193
- scope: string;
194
- clientId: string;
195
- clientSecret: string;
196
- }, {
197
- method: "client_credentials";
198
- audience: string;
199
- scope: string;
200
- clientId: string;
201
- clientSecret: string;
202
- }>, z.ZodObject<{
78
+ }, z.core.$strip>, z.ZodObject<{
203
79
  method: z.ZodLiteral<"self_signed">;
204
80
  issuer: z.ZodString;
205
81
  audience: z.ZodString;
206
82
  scope: z.ZodString;
207
83
  clientId: z.ZodString;
208
84
  clientSecret: z.ZodString;
209
- }, "strip", z.ZodTypeAny, {
210
- method: "self_signed";
211
- audience: string;
212
- scope: string;
213
- clientId: string;
214
- clientSecret: string;
215
- issuer: string;
216
- }, {
217
- method: "self_signed";
218
- audience: string;
219
- scope: string;
220
- clientId: string;
221
- clientSecret: string;
222
- issuer: string;
223
- }>]>>;
224
- }, "strip", z.ZodTypeAny, {
225
- id: string;
226
- name: string;
227
- description: string;
228
- synchronizerId: string;
229
- identityProviderId: string;
230
- ledgerApi: {
231
- baseUrl: string;
232
- };
233
- auth: {
234
- method: "authorization_code";
235
- audience: string;
236
- scope: string;
237
- clientId: string;
238
- } | {
239
- method: "client_credentials";
240
- audience: string;
241
- scope: string;
242
- clientId: string;
243
- clientSecret: string;
244
- } | {
245
- method: "self_signed";
246
- audience: string;
247
- scope: string;
248
- clientId: string;
249
- clientSecret: string;
250
- issuer: string;
251
- };
252
- adminAuth?: {
253
- method: "authorization_code";
254
- audience: string;
255
- scope: string;
256
- clientId: string;
257
- } | {
258
- method: "client_credentials";
259
- audience: string;
260
- scope: string;
261
- clientId: string;
262
- clientSecret: string;
263
- } | {
264
- method: "self_signed";
265
- audience: string;
266
- scope: string;
267
- clientId: string;
268
- clientSecret: string;
269
- issuer: string;
270
- } | undefined;
271
- }, {
272
- id: string;
273
- name: string;
274
- description: string;
275
- synchronizerId: string;
276
- identityProviderId: string;
277
- ledgerApi: {
278
- baseUrl: string;
279
- };
280
- auth: {
281
- method: "authorization_code";
282
- audience: string;
283
- scope: string;
284
- clientId: string;
285
- } | {
286
- method: "client_credentials";
287
- audience: string;
288
- scope: string;
289
- clientId: string;
290
- clientSecret: string;
291
- } | {
292
- method: "self_signed";
293
- audience: string;
294
- scope: string;
295
- clientId: string;
296
- clientSecret: string;
297
- issuer: string;
298
- };
299
- adminAuth?: {
300
- method: "authorization_code";
301
- audience: string;
302
- scope: string;
303
- clientId: string;
304
- } | {
305
- method: "client_credentials";
306
- audience: string;
307
- scope: string;
308
- clientId: string;
309
- clientSecret: string;
310
- } | {
311
- method: "self_signed";
312
- audience: string;
313
- scope: string;
314
- clientId: string;
315
- clientSecret: string;
316
- issuer: string;
317
- } | undefined;
318
- }>, "many">;
319
- }, "strip", z.ZodTypeAny, {
320
- connection: {
321
- type: "memory";
322
- } | {
323
- type: "sqlite";
324
- database: string;
325
- } | {
326
- type: "postgres";
327
- database: string;
328
- host: string;
329
- port: number;
330
- user: string;
331
- password: string;
332
- };
333
- idps: ({
334
- type: "self_signed";
335
- issuer: string;
336
- id: string;
337
- } | {
338
- type: "oauth";
339
- issuer: string;
340
- id: string;
341
- configUrl: string;
342
- })[];
343
- networks: {
344
- id: string;
345
- name: string;
346
- description: string;
347
- synchronizerId: string;
348
- identityProviderId: string;
349
- ledgerApi: {
350
- baseUrl: string;
351
- };
352
- auth: {
353
- method: "authorization_code";
354
- audience: string;
355
- scope: string;
356
- clientId: string;
357
- } | {
358
- method: "client_credentials";
359
- audience: string;
360
- scope: string;
361
- clientId: string;
362
- clientSecret: string;
363
- } | {
364
- method: "self_signed";
365
- audience: string;
366
- scope: string;
367
- clientId: string;
368
- clientSecret: string;
369
- issuer: string;
370
- };
371
- adminAuth?: {
372
- method: "authorization_code";
373
- audience: string;
374
- scope: string;
375
- clientId: string;
376
- } | {
377
- method: "client_credentials";
378
- audience: string;
379
- scope: string;
380
- clientId: string;
381
- clientSecret: string;
382
- } | {
383
- method: "self_signed";
384
- audience: string;
385
- scope: string;
386
- clientId: string;
387
- clientSecret: string;
388
- issuer: string;
389
- } | undefined;
390
- }[];
391
- }, {
392
- connection: {
393
- type: "memory";
394
- } | {
395
- type: "sqlite";
396
- database: string;
397
- } | {
398
- type: "postgres";
399
- database: string;
400
- host: string;
401
- port: number;
402
- user: string;
403
- password: string;
404
- };
405
- idps: ({
406
- type: "self_signed";
407
- issuer: string;
408
- id: string;
409
- } | {
410
- type: "oauth";
411
- issuer: string;
412
- id: string;
413
- configUrl: string;
414
- })[];
415
- networks: {
416
- id: string;
417
- name: string;
418
- description: string;
419
- synchronizerId: string;
420
- identityProviderId: string;
421
- ledgerApi: {
422
- baseUrl: string;
423
- };
424
- auth: {
425
- method: "authorization_code";
426
- audience: string;
427
- scope: string;
428
- clientId: string;
429
- } | {
430
- method: "client_credentials";
431
- audience: string;
432
- scope: string;
433
- clientId: string;
434
- clientSecret: string;
435
- } | {
436
- method: "self_signed";
437
- audience: string;
438
- scope: string;
439
- clientId: string;
440
- clientSecret: string;
441
- issuer: string;
442
- };
443
- adminAuth?: {
444
- method: "authorization_code";
445
- audience: string;
446
- scope: string;
447
- clientId: string;
448
- } | {
449
- method: "client_credentials";
450
- audience: string;
451
- scope: string;
452
- clientId: string;
453
- clientSecret: string;
454
- } | {
455
- method: "self_signed";
456
- audience: string;
457
- scope: string;
458
- clientId: string;
459
- clientSecret: string;
460
- issuer: string;
461
- } | undefined;
462
- }[];
463
- }>;
85
+ }, z.core.$strip>], "method">>;
86
+ }, z.core.$strip>>;
87
+ }, z.core.$strip>;
464
88
  signingStore: z.ZodObject<{
465
- connection: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
89
+ connection: z.ZodDiscriminatedUnion<[z.ZodObject<{
466
90
  type: z.ZodLiteral<"memory">;
467
- }, "strip", z.ZodTypeAny, {
468
- type: "memory";
469
- }, {
470
- type: "memory";
471
- }>, z.ZodObject<{
91
+ }, z.core.$strip>, z.ZodObject<{
472
92
  type: z.ZodLiteral<"sqlite">;
473
93
  database: z.ZodString;
474
- }, "strip", z.ZodTypeAny, {
475
- type: "sqlite";
476
- database: string;
477
- }, {
478
- type: "sqlite";
479
- database: string;
480
- }>, z.ZodObject<{
94
+ }, z.core.$strip>, z.ZodObject<{
481
95
  type: z.ZodLiteral<"postgres">;
482
96
  host: z.ZodString;
483
97
  port: z.ZodNumber;
484
98
  user: z.ZodString;
485
99
  password: z.ZodString;
486
100
  database: z.ZodString;
487
- }, "strip", z.ZodTypeAny, {
488
- type: "postgres";
489
- database: string;
490
- host: string;
491
- port: number;
492
- user: string;
493
- password: string;
494
- }, {
495
- type: "postgres";
496
- database: string;
497
- host: string;
498
- port: number;
499
- user: string;
500
- password: string;
501
- }>]>;
502
- }, "strip", z.ZodTypeAny, {
503
- connection: {
504
- type: "memory";
505
- } | {
506
- type: "sqlite";
507
- database: string;
508
- } | {
509
- type: "postgres";
510
- database: string;
511
- host: string;
512
- port: number;
513
- user: string;
514
- password: string;
515
- };
516
- }, {
517
- connection: {
518
- type: "memory";
519
- } | {
520
- type: "sqlite";
521
- database: string;
522
- } | {
523
- type: "postgres";
524
- database: string;
525
- host: string;
526
- port: number;
527
- user: string;
528
- password: string;
529
- };
530
- }>;
531
- }, "strip", z.ZodTypeAny, {
532
- kernel: {
533
- id: string;
534
- clientType: "browser" | "desktop" | "mobile" | "remote";
535
- url: string;
536
- userUrl: string;
537
- };
538
- store: {
539
- connection: {
540
- type: "memory";
541
- } | {
542
- type: "sqlite";
543
- database: string;
544
- } | {
545
- type: "postgres";
546
- database: string;
547
- host: string;
548
- port: number;
549
- user: string;
550
- password: string;
551
- };
552
- idps: ({
553
- type: "self_signed";
554
- issuer: string;
555
- id: string;
556
- } | {
557
- type: "oauth";
558
- issuer: string;
559
- id: string;
560
- configUrl: string;
561
- })[];
562
- networks: {
563
- id: string;
564
- name: string;
565
- description: string;
566
- synchronizerId: string;
567
- identityProviderId: string;
568
- ledgerApi: {
569
- baseUrl: string;
570
- };
571
- auth: {
572
- method: "authorization_code";
573
- audience: string;
574
- scope: string;
575
- clientId: string;
576
- } | {
577
- method: "client_credentials";
578
- audience: string;
579
- scope: string;
580
- clientId: string;
581
- clientSecret: string;
582
- } | {
583
- method: "self_signed";
584
- audience: string;
585
- scope: string;
586
- clientId: string;
587
- clientSecret: string;
588
- issuer: string;
589
- };
590
- adminAuth?: {
591
- method: "authorization_code";
592
- audience: string;
593
- scope: string;
594
- clientId: string;
595
- } | {
596
- method: "client_credentials";
597
- audience: string;
598
- scope: string;
599
- clientId: string;
600
- clientSecret: string;
601
- } | {
602
- method: "self_signed";
603
- audience: string;
604
- scope: string;
605
- clientId: string;
606
- clientSecret: string;
607
- issuer: string;
608
- } | undefined;
609
- }[];
610
- };
611
- signingStore: {
612
- connection: {
613
- type: "memory";
614
- } | {
615
- type: "sqlite";
616
- database: string;
617
- } | {
618
- type: "postgres";
619
- database: string;
620
- host: string;
621
- port: number;
622
- user: string;
623
- password: string;
624
- };
625
- };
626
- }, {
627
- kernel: {
628
- id: string;
629
- clientType: "browser" | "desktop" | "mobile" | "remote";
630
- url: string;
631
- userUrl: string;
632
- };
633
- store: {
634
- connection: {
635
- type: "memory";
636
- } | {
637
- type: "sqlite";
638
- database: string;
639
- } | {
640
- type: "postgres";
641
- database: string;
642
- host: string;
643
- port: number;
644
- user: string;
645
- password: string;
646
- };
647
- idps: ({
648
- type: "self_signed";
649
- issuer: string;
650
- id: string;
651
- } | {
652
- type: "oauth";
653
- issuer: string;
654
- id: string;
655
- configUrl: string;
656
- })[];
657
- networks: {
658
- id: string;
659
- name: string;
660
- description: string;
661
- synchronizerId: string;
662
- identityProviderId: string;
663
- ledgerApi: {
664
- baseUrl: string;
665
- };
666
- auth: {
667
- method: "authorization_code";
668
- audience: string;
669
- scope: string;
670
- clientId: string;
671
- } | {
672
- method: "client_credentials";
673
- audience: string;
674
- scope: string;
675
- clientId: string;
676
- clientSecret: string;
677
- } | {
678
- method: "self_signed";
679
- audience: string;
680
- scope: string;
681
- clientId: string;
682
- clientSecret: string;
683
- issuer: string;
684
- };
685
- adminAuth?: {
686
- method: "authorization_code";
687
- audience: string;
688
- scope: string;
689
- clientId: string;
690
- } | {
691
- method: "client_credentials";
692
- audience: string;
693
- scope: string;
694
- clientId: string;
695
- clientSecret: string;
696
- } | {
697
- method: "self_signed";
698
- audience: string;
699
- scope: string;
700
- clientId: string;
701
- clientSecret: string;
702
- issuer: string;
703
- } | undefined;
704
- }[];
705
- };
706
- signingStore: {
707
- connection: {
708
- type: "memory";
709
- } | {
710
- type: "sqlite";
711
- database: string;
712
- } | {
713
- type: "postgres";
714
- database: string;
715
- host: string;
716
- port: number;
717
- user: string;
718
- password: string;
719
- };
720
- };
721
- }>;
101
+ }, z.core.$strip>], "type">;
102
+ }, z.core.$strip>;
103
+ }, z.core.$strip>;
722
104
  export type KernelInfo = z.infer<typeof kernelInfoSchema>;
723
105
  export type Config = z.infer<typeof configSchema>;
724
106
  //# sourceMappingURL=Config.d.ts.map