@secrecy/trpc-api-types 1.6.0-integration-prisma-selectors.8 → 1.6.0-integration-prisma-selectors.9
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/dist/index.d.ts +328 -258
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -351,15 +351,15 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
351
351
|
_input_in: {} | undefined;
|
|
352
352
|
_input_out: {} | undefined;
|
|
353
353
|
_output_in: {
|
|
354
|
-
id: string;
|
|
355
354
|
mail: boolean;
|
|
355
|
+
id: string;
|
|
356
356
|
cloud: boolean;
|
|
357
357
|
enableAll: boolean;
|
|
358
358
|
disableAllUntil: Date | null;
|
|
359
359
|
};
|
|
360
360
|
_output_out: {
|
|
361
|
-
id: string;
|
|
362
361
|
mail: boolean;
|
|
362
|
+
id: string;
|
|
363
363
|
cloud: boolean;
|
|
364
364
|
enableAll: boolean;
|
|
365
365
|
disableAllUntil: Date | null;
|
|
@@ -391,16 +391,16 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
391
391
|
_input_in: {} | undefined;
|
|
392
392
|
_input_out: {} | undefined;
|
|
393
393
|
_output_in: {
|
|
394
|
-
id: string;
|
|
395
394
|
codes: string[];
|
|
395
|
+
id: string;
|
|
396
396
|
kind: string;
|
|
397
397
|
price: _prisma_client_runtime_library.Decimal;
|
|
398
398
|
relatedTo: "secrecy_tech";
|
|
399
399
|
descriptorId: string;
|
|
400
400
|
};
|
|
401
401
|
_output_out: {
|
|
402
|
-
id: string;
|
|
403
402
|
codes: string[];
|
|
403
|
+
id: string;
|
|
404
404
|
kind: string;
|
|
405
405
|
price: _prisma_client_runtime_library.Decimal;
|
|
406
406
|
relatedTo: "secrecy_tech";
|
|
@@ -433,16 +433,16 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
433
433
|
_input_in: {} | undefined;
|
|
434
434
|
_input_out: {} | undefined;
|
|
435
435
|
_output_in: {
|
|
436
|
-
id: string;
|
|
437
436
|
codes: string[];
|
|
437
|
+
id: string;
|
|
438
438
|
kind: string;
|
|
439
439
|
price: _prisma_client_runtime_library.Decimal;
|
|
440
440
|
relatedTo: "secrecy_tech";
|
|
441
441
|
descriptorId: string;
|
|
442
442
|
}[];
|
|
443
443
|
_output_out: {
|
|
444
|
-
id: string;
|
|
445
444
|
codes: string[];
|
|
445
|
+
id: string;
|
|
446
446
|
kind: string;
|
|
447
447
|
price: _prisma_client_runtime_library.Decimal;
|
|
448
448
|
relatedTo: "secrecy_tech";
|
|
@@ -523,15 +523,15 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
523
523
|
disableAllUntil?: Date | null | undefined;
|
|
524
524
|
};
|
|
525
525
|
_output_in: {
|
|
526
|
-
id: string;
|
|
527
526
|
mail: boolean;
|
|
527
|
+
id: string;
|
|
528
528
|
cloud: boolean;
|
|
529
529
|
enableAll: boolean;
|
|
530
530
|
disableAllUntil: Date | null;
|
|
531
531
|
};
|
|
532
532
|
_output_out: {
|
|
533
|
-
id: string;
|
|
534
533
|
mail: boolean;
|
|
534
|
+
id: string;
|
|
535
535
|
cloud: boolean;
|
|
536
536
|
enableAll: boolean;
|
|
537
537
|
disableAllUntil: Date | null;
|
|
@@ -731,21 +731,21 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
731
731
|
};
|
|
732
732
|
_output_in: {
|
|
733
733
|
id: string;
|
|
734
|
-
lastLogin: Date | null;
|
|
735
734
|
createdAt: Date;
|
|
735
|
+
updatedAt: Date;
|
|
736
|
+
lastLogin: Date | null;
|
|
736
737
|
deletedAt: Date | null;
|
|
737
738
|
lastname: string;
|
|
738
739
|
firstname: string;
|
|
739
|
-
updatedAt: Date;
|
|
740
740
|
};
|
|
741
741
|
_output_out: {
|
|
742
742
|
id: string;
|
|
743
|
-
lastLogin: Date | null;
|
|
744
743
|
createdAt: Date;
|
|
744
|
+
updatedAt: Date;
|
|
745
|
+
lastLogin: Date | null;
|
|
745
746
|
deletedAt: Date | null;
|
|
746
747
|
lastname: string;
|
|
747
748
|
firstname: string;
|
|
748
|
-
updatedAt: Date;
|
|
749
749
|
};
|
|
750
750
|
}, unknown>;
|
|
751
751
|
}>;
|
|
@@ -1304,9 +1304,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
1304
1304
|
_meta: object;
|
|
1305
1305
|
_ctx_out: {};
|
|
1306
1306
|
_input_in: {
|
|
1307
|
+
email: string;
|
|
1307
1308
|
lastname: string;
|
|
1308
1309
|
firstname: string;
|
|
1309
|
-
email: string;
|
|
1310
1310
|
phone: string;
|
|
1311
1311
|
srpSalt: string;
|
|
1312
1312
|
masterKeySalt: string;
|
|
@@ -1314,9 +1314,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
1314
1314
|
token: string;
|
|
1315
1315
|
};
|
|
1316
1316
|
_input_out: {
|
|
1317
|
+
email: string;
|
|
1317
1318
|
lastname: string;
|
|
1318
1319
|
firstname: string;
|
|
1319
|
-
email: string;
|
|
1320
1320
|
phone: string;
|
|
1321
1321
|
srpSalt: string;
|
|
1322
1322
|
masterKeySalt: string;
|
|
@@ -1412,10 +1412,10 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
1412
1412
|
};
|
|
1413
1413
|
_output_in: ({
|
|
1414
1414
|
id: string;
|
|
1415
|
-
body: string;
|
|
1416
1415
|
title: string;
|
|
1417
1416
|
summary: string;
|
|
1418
1417
|
date: Date;
|
|
1418
|
+
body: string;
|
|
1419
1419
|
author: string;
|
|
1420
1420
|
image: string;
|
|
1421
1421
|
imageAlt: string;
|
|
@@ -1427,10 +1427,10 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
1427
1427
|
})[];
|
|
1428
1428
|
_output_out: ({
|
|
1429
1429
|
id: string;
|
|
1430
|
-
body: string;
|
|
1431
1430
|
title: string;
|
|
1432
1431
|
summary: string;
|
|
1433
1432
|
date: Date;
|
|
1433
|
+
body: string;
|
|
1434
1434
|
author: string;
|
|
1435
1435
|
image: string;
|
|
1436
1436
|
imageAlt: string;
|
|
@@ -1497,9 +1497,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
1497
1497
|
type: "FILE" | "FOLDER";
|
|
1498
1498
|
id: string;
|
|
1499
1499
|
createdAt: Date;
|
|
1500
|
-
deletedAt: Date | null;
|
|
1501
1500
|
name: string;
|
|
1502
1501
|
updatedAt: Date;
|
|
1502
|
+
deletedAt: Date | null;
|
|
1503
1503
|
parentId: string | null;
|
|
1504
1504
|
isFavorite: boolean;
|
|
1505
1505
|
} & {
|
|
@@ -1551,9 +1551,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
1551
1551
|
type: "FILE" | "FOLDER";
|
|
1552
1552
|
id: string;
|
|
1553
1553
|
createdAt: Date;
|
|
1554
|
-
deletedAt: Date | null;
|
|
1555
1554
|
name: string;
|
|
1556
1555
|
updatedAt: Date;
|
|
1556
|
+
deletedAt: Date | null;
|
|
1557
1557
|
parentId: string | null;
|
|
1558
1558
|
isFavorite: boolean;
|
|
1559
1559
|
} & {
|
|
@@ -1577,9 +1577,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
1577
1577
|
type: "FILE" | "FOLDER";
|
|
1578
1578
|
id: string;
|
|
1579
1579
|
createdAt: Date;
|
|
1580
|
-
deletedAt: Date | null;
|
|
1581
1580
|
name: string;
|
|
1582
1581
|
updatedAt: Date;
|
|
1582
|
+
deletedAt: Date | null;
|
|
1583
1583
|
parentId: string | null;
|
|
1584
1584
|
isFavorite: boolean;
|
|
1585
1585
|
} & {
|
|
@@ -1604,9 +1604,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
1604
1604
|
type: "FILE" | "FOLDER";
|
|
1605
1605
|
id: string;
|
|
1606
1606
|
createdAt: Date;
|
|
1607
|
-
deletedAt: Date | null;
|
|
1608
1607
|
name: string;
|
|
1609
1608
|
updatedAt: Date;
|
|
1609
|
+
deletedAt: Date | null;
|
|
1610
1610
|
parentId: string | null;
|
|
1611
1611
|
isFavorite: boolean;
|
|
1612
1612
|
} & {
|
|
@@ -1658,9 +1658,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
1658
1658
|
type: "FILE" | "FOLDER";
|
|
1659
1659
|
id: string;
|
|
1660
1660
|
createdAt: Date;
|
|
1661
|
-
deletedAt: Date | null;
|
|
1662
1661
|
name: string;
|
|
1663
1662
|
updatedAt: Date;
|
|
1663
|
+
deletedAt: Date | null;
|
|
1664
1664
|
parentId: string | null;
|
|
1665
1665
|
isFavorite: boolean;
|
|
1666
1666
|
} & {
|
|
@@ -1684,9 +1684,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
1684
1684
|
type: "FILE" | "FOLDER";
|
|
1685
1685
|
id: string;
|
|
1686
1686
|
createdAt: Date;
|
|
1687
|
-
deletedAt: Date | null;
|
|
1688
1687
|
name: string;
|
|
1689
1688
|
updatedAt: Date;
|
|
1689
|
+
deletedAt: Date | null;
|
|
1690
1690
|
parentId: string | null;
|
|
1691
1691
|
isFavorite: boolean;
|
|
1692
1692
|
} & {
|
|
@@ -2081,9 +2081,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
2081
2081
|
type: "FILE" | "FOLDER";
|
|
2082
2082
|
id: string;
|
|
2083
2083
|
createdAt: Date;
|
|
2084
|
-
deletedAt: Date | null;
|
|
2085
2084
|
name: string;
|
|
2086
2085
|
updatedAt: Date;
|
|
2086
|
+
deletedAt: Date | null;
|
|
2087
2087
|
parentId: string | null;
|
|
2088
2088
|
isFavorite: boolean;
|
|
2089
2089
|
} & {
|
|
@@ -2135,9 +2135,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
2135
2135
|
type: "FILE" | "FOLDER";
|
|
2136
2136
|
id: string;
|
|
2137
2137
|
createdAt: Date;
|
|
2138
|
-
deletedAt: Date | null;
|
|
2139
2138
|
name: string;
|
|
2140
2139
|
updatedAt: Date;
|
|
2140
|
+
deletedAt: Date | null;
|
|
2141
2141
|
parentId: string | null;
|
|
2142
2142
|
isFavorite: boolean;
|
|
2143
2143
|
} & {
|
|
@@ -2161,9 +2161,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
2161
2161
|
type: "FILE" | "FOLDER";
|
|
2162
2162
|
id: string;
|
|
2163
2163
|
createdAt: Date;
|
|
2164
|
-
deletedAt: Date | null;
|
|
2165
2164
|
name: string;
|
|
2166
2165
|
updatedAt: Date;
|
|
2166
|
+
deletedAt: Date | null;
|
|
2167
2167
|
parentId: string | null;
|
|
2168
2168
|
isFavorite: boolean;
|
|
2169
2169
|
} & {
|
|
@@ -2188,9 +2188,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
2188
2188
|
type: "FILE" | "FOLDER";
|
|
2189
2189
|
id: string;
|
|
2190
2190
|
createdAt: Date;
|
|
2191
|
-
deletedAt: Date | null;
|
|
2192
2191
|
name: string;
|
|
2193
2192
|
updatedAt: Date;
|
|
2193
|
+
deletedAt: Date | null;
|
|
2194
2194
|
parentId: string | null;
|
|
2195
2195
|
isFavorite: boolean;
|
|
2196
2196
|
} & {
|
|
@@ -2242,9 +2242,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
2242
2242
|
type: "FILE" | "FOLDER";
|
|
2243
2243
|
id: string;
|
|
2244
2244
|
createdAt: Date;
|
|
2245
|
-
deletedAt: Date | null;
|
|
2246
2245
|
name: string;
|
|
2247
2246
|
updatedAt: Date;
|
|
2247
|
+
deletedAt: Date | null;
|
|
2248
2248
|
parentId: string | null;
|
|
2249
2249
|
isFavorite: boolean;
|
|
2250
2250
|
} & {
|
|
@@ -2268,9 +2268,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
2268
2268
|
type: "FILE" | "FOLDER";
|
|
2269
2269
|
id: string;
|
|
2270
2270
|
createdAt: Date;
|
|
2271
|
-
deletedAt: Date | null;
|
|
2272
2271
|
name: string;
|
|
2273
2272
|
updatedAt: Date;
|
|
2273
|
+
deletedAt: Date | null;
|
|
2274
2274
|
parentId: string | null;
|
|
2275
2275
|
isFavorite: boolean;
|
|
2276
2276
|
} & {
|
|
@@ -2553,9 +2553,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
2553
2553
|
type: "FILE" | "FOLDER";
|
|
2554
2554
|
id: string;
|
|
2555
2555
|
createdAt: Date;
|
|
2556
|
-
deletedAt: Date | null;
|
|
2557
2556
|
name: string;
|
|
2558
2557
|
updatedAt: Date;
|
|
2558
|
+
deletedAt: Date | null;
|
|
2559
2559
|
parentId: string | null;
|
|
2560
2560
|
isFavorite: boolean;
|
|
2561
2561
|
} & {
|
|
@@ -2607,9 +2607,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
2607
2607
|
type: "FILE" | "FOLDER";
|
|
2608
2608
|
id: string;
|
|
2609
2609
|
createdAt: Date;
|
|
2610
|
-
deletedAt: Date | null;
|
|
2611
2610
|
name: string;
|
|
2612
2611
|
updatedAt: Date;
|
|
2612
|
+
deletedAt: Date | null;
|
|
2613
2613
|
parentId: string | null;
|
|
2614
2614
|
isFavorite: boolean;
|
|
2615
2615
|
} & {
|
|
@@ -2633,9 +2633,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
2633
2633
|
type: "FILE" | "FOLDER";
|
|
2634
2634
|
id: string;
|
|
2635
2635
|
createdAt: Date;
|
|
2636
|
-
deletedAt: Date | null;
|
|
2637
2636
|
name: string;
|
|
2638
2637
|
updatedAt: Date;
|
|
2638
|
+
deletedAt: Date | null;
|
|
2639
2639
|
parentId: string | null;
|
|
2640
2640
|
isFavorite: boolean;
|
|
2641
2641
|
} & {
|
|
@@ -2660,9 +2660,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
2660
2660
|
type: "FILE" | "FOLDER";
|
|
2661
2661
|
id: string;
|
|
2662
2662
|
createdAt: Date;
|
|
2663
|
-
deletedAt: Date | null;
|
|
2664
2663
|
name: string;
|
|
2665
2664
|
updatedAt: Date;
|
|
2665
|
+
deletedAt: Date | null;
|
|
2666
2666
|
parentId: string | null;
|
|
2667
2667
|
isFavorite: boolean;
|
|
2668
2668
|
} & {
|
|
@@ -2714,9 +2714,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
2714
2714
|
type: "FILE" | "FOLDER";
|
|
2715
2715
|
id: string;
|
|
2716
2716
|
createdAt: Date;
|
|
2717
|
-
deletedAt: Date | null;
|
|
2718
2717
|
name: string;
|
|
2719
2718
|
updatedAt: Date;
|
|
2719
|
+
deletedAt: Date | null;
|
|
2720
2720
|
parentId: string | null;
|
|
2721
2721
|
isFavorite: boolean;
|
|
2722
2722
|
} & {
|
|
@@ -2740,9 +2740,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
2740
2740
|
type: "FILE" | "FOLDER";
|
|
2741
2741
|
id: string;
|
|
2742
2742
|
createdAt: Date;
|
|
2743
|
-
deletedAt: Date | null;
|
|
2744
2743
|
name: string;
|
|
2745
2744
|
updatedAt: Date;
|
|
2745
|
+
deletedAt: Date | null;
|
|
2746
2746
|
parentId: string | null;
|
|
2747
2747
|
isFavorite: boolean;
|
|
2748
2748
|
} & {
|
|
@@ -3111,9 +3111,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3111
3111
|
type: "FILE" | "FOLDER";
|
|
3112
3112
|
id: string;
|
|
3113
3113
|
createdAt: Date;
|
|
3114
|
-
deletedAt: Date | null;
|
|
3115
3114
|
name: string;
|
|
3116
3115
|
updatedAt: Date;
|
|
3116
|
+
deletedAt: Date | null;
|
|
3117
3117
|
parentId: string | null;
|
|
3118
3118
|
isFavorite: boolean;
|
|
3119
3119
|
} & {
|
|
@@ -3137,9 +3137,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3137
3137
|
type: "FILE" | "FOLDER";
|
|
3138
3138
|
id: string;
|
|
3139
3139
|
createdAt: Date;
|
|
3140
|
-
deletedAt: Date | null;
|
|
3141
3140
|
name: string;
|
|
3142
3141
|
updatedAt: Date;
|
|
3142
|
+
deletedAt: Date | null;
|
|
3143
3143
|
parentId: string | null;
|
|
3144
3144
|
isFavorite: boolean;
|
|
3145
3145
|
} & {
|
|
@@ -3195,9 +3195,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3195
3195
|
type: "FILE" | "FOLDER";
|
|
3196
3196
|
id: string;
|
|
3197
3197
|
createdAt: Date;
|
|
3198
|
-
deletedAt: Date | null;
|
|
3199
3198
|
name: string;
|
|
3200
3199
|
updatedAt: Date;
|
|
3200
|
+
deletedAt: Date | null;
|
|
3201
3201
|
parentId: string | null;
|
|
3202
3202
|
isFavorite: boolean;
|
|
3203
3203
|
} & {
|
|
@@ -3249,9 +3249,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3249
3249
|
type: "FILE" | "FOLDER";
|
|
3250
3250
|
id: string;
|
|
3251
3251
|
createdAt: Date;
|
|
3252
|
-
deletedAt: Date | null;
|
|
3253
3252
|
name: string;
|
|
3254
3253
|
updatedAt: Date;
|
|
3254
|
+
deletedAt: Date | null;
|
|
3255
3255
|
parentId: string | null;
|
|
3256
3256
|
isFavorite: boolean;
|
|
3257
3257
|
} & {
|
|
@@ -3275,9 +3275,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3275
3275
|
type: "FILE" | "FOLDER";
|
|
3276
3276
|
id: string;
|
|
3277
3277
|
createdAt: Date;
|
|
3278
|
-
deletedAt: Date | null;
|
|
3279
3278
|
name: string;
|
|
3280
3279
|
updatedAt: Date;
|
|
3280
|
+
deletedAt: Date | null;
|
|
3281
3281
|
parentId: string | null;
|
|
3282
3282
|
isFavorite: boolean;
|
|
3283
3283
|
} & {
|
|
@@ -3302,9 +3302,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3302
3302
|
type: "FILE" | "FOLDER";
|
|
3303
3303
|
id: string;
|
|
3304
3304
|
createdAt: Date;
|
|
3305
|
-
deletedAt: Date | null;
|
|
3306
3305
|
name: string;
|
|
3307
3306
|
updatedAt: Date;
|
|
3307
|
+
deletedAt: Date | null;
|
|
3308
3308
|
parentId: string | null;
|
|
3309
3309
|
isFavorite: boolean;
|
|
3310
3310
|
} & {
|
|
@@ -3356,9 +3356,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3356
3356
|
type: "FILE" | "FOLDER";
|
|
3357
3357
|
id: string;
|
|
3358
3358
|
createdAt: Date;
|
|
3359
|
-
deletedAt: Date | null;
|
|
3360
3359
|
name: string;
|
|
3361
3360
|
updatedAt: Date;
|
|
3361
|
+
deletedAt: Date | null;
|
|
3362
3362
|
parentId: string | null;
|
|
3363
3363
|
isFavorite: boolean;
|
|
3364
3364
|
} & {
|
|
@@ -3382,9 +3382,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3382
3382
|
type: "FILE" | "FOLDER";
|
|
3383
3383
|
id: string;
|
|
3384
3384
|
createdAt: Date;
|
|
3385
|
-
deletedAt: Date | null;
|
|
3386
3385
|
name: string;
|
|
3387
3386
|
updatedAt: Date;
|
|
3387
|
+
deletedAt: Date | null;
|
|
3388
3388
|
parentId: string | null;
|
|
3389
3389
|
isFavorite: boolean;
|
|
3390
3390
|
} & {
|
|
@@ -3473,9 +3473,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3473
3473
|
type: "FILE" | "FOLDER";
|
|
3474
3474
|
id: string;
|
|
3475
3475
|
createdAt: Date;
|
|
3476
|
-
deletedAt: Date | null;
|
|
3477
3476
|
name: string;
|
|
3478
3477
|
updatedAt: Date;
|
|
3478
|
+
deletedAt: Date | null;
|
|
3479
3479
|
parentId: string | null;
|
|
3480
3480
|
isFavorite: boolean;
|
|
3481
3481
|
} & {
|
|
@@ -3499,9 +3499,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3499
3499
|
type: "FILE" | "FOLDER";
|
|
3500
3500
|
id: string;
|
|
3501
3501
|
createdAt: Date;
|
|
3502
|
-
deletedAt: Date | null;
|
|
3503
3502
|
name: string;
|
|
3504
3503
|
updatedAt: Date;
|
|
3504
|
+
deletedAt: Date | null;
|
|
3505
3505
|
parentId: string | null;
|
|
3506
3506
|
isFavorite: boolean;
|
|
3507
3507
|
} & {
|
|
@@ -3555,9 +3555,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3555
3555
|
type: "FILE" | "FOLDER";
|
|
3556
3556
|
id: string;
|
|
3557
3557
|
createdAt: Date;
|
|
3558
|
-
deletedAt: Date | null;
|
|
3559
3558
|
name: string;
|
|
3560
3559
|
updatedAt: Date;
|
|
3560
|
+
deletedAt: Date | null;
|
|
3561
3561
|
parentId: string | null;
|
|
3562
3562
|
isFavorite: boolean;
|
|
3563
3563
|
} & {
|
|
@@ -3581,9 +3581,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3581
3581
|
type: "FILE" | "FOLDER";
|
|
3582
3582
|
id: string;
|
|
3583
3583
|
createdAt: Date;
|
|
3584
|
-
deletedAt: Date | null;
|
|
3585
3584
|
name: string;
|
|
3586
3585
|
updatedAt: Date;
|
|
3586
|
+
deletedAt: Date | null;
|
|
3587
3587
|
parentId: string | null;
|
|
3588
3588
|
isFavorite: boolean;
|
|
3589
3589
|
} & {
|
|
@@ -3633,9 +3633,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3633
3633
|
type: "FILE" | "FOLDER";
|
|
3634
3634
|
id: string;
|
|
3635
3635
|
createdAt: Date;
|
|
3636
|
-
deletedAt: Date | null;
|
|
3637
3636
|
name: string;
|
|
3638
3637
|
updatedAt: Date;
|
|
3638
|
+
deletedAt: Date | null;
|
|
3639
3639
|
parentId: string | null;
|
|
3640
3640
|
isFavorite: boolean;
|
|
3641
3641
|
} & {
|
|
@@ -3659,9 +3659,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3659
3659
|
type: "FILE" | "FOLDER";
|
|
3660
3660
|
id: string;
|
|
3661
3661
|
createdAt: Date;
|
|
3662
|
-
deletedAt: Date | null;
|
|
3663
3662
|
name: string;
|
|
3664
3663
|
updatedAt: Date;
|
|
3664
|
+
deletedAt: Date | null;
|
|
3665
3665
|
parentId: string | null;
|
|
3666
3666
|
isFavorite: boolean;
|
|
3667
3667
|
} & {
|
|
@@ -3835,23 +3835,23 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3835
3835
|
_ctx_out: {};
|
|
3836
3836
|
_input_in: {
|
|
3837
3837
|
id: string;
|
|
3838
|
-
deletedAt: Date | null;
|
|
3839
3838
|
name: string | null;
|
|
3839
|
+
deletedAt: Date | null;
|
|
3840
3840
|
isFavorite: boolean | null;
|
|
3841
3841
|
};
|
|
3842
3842
|
_input_out: {
|
|
3843
3843
|
id: string;
|
|
3844
|
-
deletedAt: Date | null;
|
|
3845
3844
|
name: string | null;
|
|
3845
|
+
deletedAt: Date | null;
|
|
3846
3846
|
isFavorite: boolean | null;
|
|
3847
3847
|
};
|
|
3848
3848
|
_output_in: {
|
|
3849
3849
|
type: "FILE" | "FOLDER";
|
|
3850
3850
|
id: string;
|
|
3851
3851
|
createdAt: Date;
|
|
3852
|
-
deletedAt: Date | null;
|
|
3853
3852
|
name: string;
|
|
3854
3853
|
updatedAt: Date;
|
|
3854
|
+
deletedAt: Date | null;
|
|
3855
3855
|
parentId: string | null;
|
|
3856
3856
|
isFavorite: boolean;
|
|
3857
3857
|
} & {
|
|
@@ -3903,9 +3903,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3903
3903
|
type: "FILE" | "FOLDER";
|
|
3904
3904
|
id: string;
|
|
3905
3905
|
createdAt: Date;
|
|
3906
|
-
deletedAt: Date | null;
|
|
3907
3906
|
name: string;
|
|
3908
3907
|
updatedAt: Date;
|
|
3908
|
+
deletedAt: Date | null;
|
|
3909
3909
|
parentId: string | null;
|
|
3910
3910
|
isFavorite: boolean;
|
|
3911
3911
|
} & {
|
|
@@ -3929,9 +3929,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3929
3929
|
type: "FILE" | "FOLDER";
|
|
3930
3930
|
id: string;
|
|
3931
3931
|
createdAt: Date;
|
|
3932
|
-
deletedAt: Date | null;
|
|
3933
3932
|
name: string;
|
|
3934
3933
|
updatedAt: Date;
|
|
3934
|
+
deletedAt: Date | null;
|
|
3935
3935
|
parentId: string | null;
|
|
3936
3936
|
isFavorite: boolean;
|
|
3937
3937
|
} & {
|
|
@@ -3956,9 +3956,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
3956
3956
|
type: "FILE" | "FOLDER";
|
|
3957
3957
|
id: string;
|
|
3958
3958
|
createdAt: Date;
|
|
3959
|
-
deletedAt: Date | null;
|
|
3960
3959
|
name: string;
|
|
3961
3960
|
updatedAt: Date;
|
|
3961
|
+
deletedAt: Date | null;
|
|
3962
3962
|
parentId: string | null;
|
|
3963
3963
|
isFavorite: boolean;
|
|
3964
3964
|
} & {
|
|
@@ -4010,9 +4010,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
4010
4010
|
type: "FILE" | "FOLDER";
|
|
4011
4011
|
id: string;
|
|
4012
4012
|
createdAt: Date;
|
|
4013
|
-
deletedAt: Date | null;
|
|
4014
4013
|
name: string;
|
|
4015
4014
|
updatedAt: Date;
|
|
4015
|
+
deletedAt: Date | null;
|
|
4016
4016
|
parentId: string | null;
|
|
4017
4017
|
isFavorite: boolean;
|
|
4018
4018
|
} & {
|
|
@@ -4036,9 +4036,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
4036
4036
|
type: "FILE" | "FOLDER";
|
|
4037
4037
|
id: string;
|
|
4038
4038
|
createdAt: Date;
|
|
4039
|
-
deletedAt: Date | null;
|
|
4040
4039
|
name: string;
|
|
4041
4040
|
updatedAt: Date;
|
|
4041
|
+
deletedAt: Date | null;
|
|
4042
4042
|
parentId: string | null;
|
|
4043
4043
|
isFavorite: boolean;
|
|
4044
4044
|
} & {
|
|
@@ -4113,14 +4113,14 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
4113
4113
|
encryptedKeystore: string;
|
|
4114
4114
|
};
|
|
4115
4115
|
_output_in: {
|
|
4116
|
-
createdAt: Date;
|
|
4117
4116
|
userId: string;
|
|
4117
|
+
createdAt: Date;
|
|
4118
4118
|
address: string;
|
|
4119
4119
|
encryptedKeystore: string;
|
|
4120
4120
|
};
|
|
4121
4121
|
_output_out: {
|
|
4122
|
-
createdAt: Date;
|
|
4123
4122
|
userId: string;
|
|
4123
|
+
createdAt: Date;
|
|
4124
4124
|
address: string;
|
|
4125
4125
|
encryptedKeystore: string;
|
|
4126
4126
|
};
|
|
@@ -4408,7 +4408,6 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
4408
4408
|
env: MongoDbEnv;
|
|
4409
4409
|
};
|
|
4410
4410
|
_output_in: {
|
|
4411
|
-
hash: string;
|
|
4412
4411
|
next: {
|
|
4413
4412
|
fields: {
|
|
4414
4413
|
type: "string" | "number" | "boolean" | "object";
|
|
@@ -4433,6 +4432,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
4433
4432
|
default?: unknown;
|
|
4434
4433
|
}[];
|
|
4435
4434
|
};
|
|
4435
|
+
hash: string;
|
|
4436
4436
|
diff: ({
|
|
4437
4437
|
key: string;
|
|
4438
4438
|
next: {
|
|
@@ -4494,7 +4494,6 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
4494
4494
|
env: MongoDbEnv;
|
|
4495
4495
|
};
|
|
4496
4496
|
_output_out: {
|
|
4497
|
-
hash: string;
|
|
4498
4497
|
next: {
|
|
4499
4498
|
fields: {
|
|
4500
4499
|
type: "string" | "number" | "boolean" | "object";
|
|
@@ -4519,6 +4518,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
4519
4518
|
default?: unknown;
|
|
4520
4519
|
}[];
|
|
4521
4520
|
};
|
|
4521
|
+
hash: string;
|
|
4522
4522
|
diff: ({
|
|
4523
4523
|
key: string;
|
|
4524
4524
|
next: {
|
|
@@ -4646,19 +4646,19 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
4646
4646
|
_meta: object;
|
|
4647
4647
|
_ctx_out: {};
|
|
4648
4648
|
_input_in: {
|
|
4649
|
+
search: string;
|
|
4649
4650
|
orderBy: string | null;
|
|
4650
4651
|
take: number | null;
|
|
4651
4652
|
skip: number | null;
|
|
4652
|
-
search: string;
|
|
4653
4653
|
field: string;
|
|
4654
4654
|
appId?: string | undefined;
|
|
4655
4655
|
env?: MongoDbEnv | undefined;
|
|
4656
4656
|
};
|
|
4657
4657
|
_input_out: {
|
|
4658
|
+
search: string;
|
|
4658
4659
|
orderBy: string | null;
|
|
4659
4660
|
take: number | null;
|
|
4660
4661
|
skip: number | null;
|
|
4661
|
-
search: string;
|
|
4662
4662
|
field: string;
|
|
4663
4663
|
env: MongoDbEnv;
|
|
4664
4664
|
appId?: string | undefined;
|
|
@@ -4894,36 +4894,41 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
4894
4894
|
} & {
|
|
4895
4895
|
mailIntegrity: {
|
|
4896
4896
|
id: string;
|
|
4897
|
+
replyTo: {
|
|
4898
|
+
id: string;
|
|
4899
|
+
} | null;
|
|
4900
|
+
hash: string;
|
|
4901
|
+
hashKey: string;
|
|
4897
4902
|
recipients: {
|
|
4898
4903
|
id: string;
|
|
4899
4904
|
lastname: string;
|
|
4900
4905
|
firstname: string;
|
|
4901
4906
|
}[];
|
|
4902
|
-
hashKey: string;
|
|
4903
|
-
hash: string;
|
|
4904
|
-
replyTo: {
|
|
4905
|
-
id: string;
|
|
4906
|
-
} | null;
|
|
4907
4907
|
temporaryRecipients: {
|
|
4908
4908
|
email: string | null;
|
|
4909
4909
|
}[];
|
|
4910
4910
|
} | null;
|
|
4911
4911
|
mailIntegrityDraft: {
|
|
4912
4912
|
id: string;
|
|
4913
|
+
replyTo: {
|
|
4914
|
+
id: string;
|
|
4915
|
+
} | null;
|
|
4916
|
+
hash: string;
|
|
4917
|
+
hashKey: string;
|
|
4913
4918
|
recipients: {
|
|
4914
4919
|
id: string;
|
|
4915
4920
|
lastname: string;
|
|
4916
4921
|
firstname: string;
|
|
4917
4922
|
}[];
|
|
4918
|
-
hashKey: string;
|
|
4919
|
-
hash: string;
|
|
4920
|
-
replyTo: {
|
|
4921
|
-
id: string;
|
|
4922
|
-
} | null;
|
|
4923
4923
|
temporaryRecipients: {
|
|
4924
4924
|
email: string | null;
|
|
4925
4925
|
}[];
|
|
4926
4926
|
} | null;
|
|
4927
|
+
sender: {
|
|
4928
|
+
id: string;
|
|
4929
|
+
lastname: string;
|
|
4930
|
+
firstname: string;
|
|
4931
|
+
};
|
|
4927
4932
|
files: {
|
|
4928
4933
|
fileId: string;
|
|
4929
4934
|
filename: string;
|
|
@@ -4941,36 +4946,41 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
4941
4946
|
} & {
|
|
4942
4947
|
mailIntegrity: {
|
|
4943
4948
|
id: string;
|
|
4949
|
+
replyTo: {
|
|
4950
|
+
id: string;
|
|
4951
|
+
} | null;
|
|
4952
|
+
hash: string;
|
|
4953
|
+
hashKey: string;
|
|
4944
4954
|
recipients: {
|
|
4945
4955
|
id: string;
|
|
4946
4956
|
lastname: string;
|
|
4947
4957
|
firstname: string;
|
|
4948
4958
|
}[];
|
|
4949
|
-
hashKey: string;
|
|
4950
|
-
hash: string;
|
|
4951
|
-
replyTo: {
|
|
4952
|
-
id: string;
|
|
4953
|
-
} | null;
|
|
4954
4959
|
temporaryRecipients: {
|
|
4955
4960
|
email: string | null;
|
|
4956
4961
|
}[];
|
|
4957
4962
|
} | null;
|
|
4958
4963
|
mailIntegrityDraft: {
|
|
4959
4964
|
id: string;
|
|
4965
|
+
replyTo: {
|
|
4966
|
+
id: string;
|
|
4967
|
+
} | null;
|
|
4968
|
+
hash: string;
|
|
4969
|
+
hashKey: string;
|
|
4960
4970
|
recipients: {
|
|
4961
4971
|
id: string;
|
|
4962
4972
|
lastname: string;
|
|
4963
4973
|
firstname: string;
|
|
4964
4974
|
}[];
|
|
4965
|
-
hashKey: string;
|
|
4966
|
-
hash: string;
|
|
4967
|
-
replyTo: {
|
|
4968
|
-
id: string;
|
|
4969
|
-
} | null;
|
|
4970
4975
|
temporaryRecipients: {
|
|
4971
4976
|
email: string | null;
|
|
4972
4977
|
}[];
|
|
4973
4978
|
} | null;
|
|
4979
|
+
sender: {
|
|
4980
|
+
id: string;
|
|
4981
|
+
lastname: string;
|
|
4982
|
+
firstname: string;
|
|
4983
|
+
};
|
|
4974
4984
|
files: {
|
|
4975
4985
|
fileId: string;
|
|
4976
4986
|
filename: string;
|
|
@@ -5005,8 +5015,8 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
5005
5015
|
subject: string;
|
|
5006
5016
|
body: string;
|
|
5007
5017
|
} & {
|
|
5008
|
-
hashKey: string;
|
|
5009
5018
|
hash: string;
|
|
5019
|
+
hashKey: string;
|
|
5010
5020
|
replyToId: string | null;
|
|
5011
5021
|
} & {
|
|
5012
5022
|
recipients: string[];
|
|
@@ -5019,8 +5029,8 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
5019
5029
|
subject: string;
|
|
5020
5030
|
body: string;
|
|
5021
5031
|
} & {
|
|
5022
|
-
hashKey: string;
|
|
5023
5032
|
hash: string;
|
|
5033
|
+
hashKey: string;
|
|
5024
5034
|
replyToId: string | null;
|
|
5025
5035
|
} & {
|
|
5026
5036
|
recipients: string[];
|
|
@@ -5040,36 +5050,41 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
5040
5050
|
} & {
|
|
5041
5051
|
mailIntegrity: {
|
|
5042
5052
|
id: string;
|
|
5053
|
+
replyTo: {
|
|
5054
|
+
id: string;
|
|
5055
|
+
} | null;
|
|
5056
|
+
hash: string;
|
|
5057
|
+
hashKey: string;
|
|
5043
5058
|
recipients: {
|
|
5044
5059
|
id: string;
|
|
5045
5060
|
lastname: string;
|
|
5046
5061
|
firstname: string;
|
|
5047
5062
|
}[];
|
|
5048
|
-
hashKey: string;
|
|
5049
|
-
hash: string;
|
|
5050
|
-
replyTo: {
|
|
5051
|
-
id: string;
|
|
5052
|
-
} | null;
|
|
5053
5063
|
temporaryRecipients: {
|
|
5054
5064
|
email: string | null;
|
|
5055
5065
|
}[];
|
|
5056
5066
|
} | null;
|
|
5057
5067
|
mailIntegrityDraft: {
|
|
5058
5068
|
id: string;
|
|
5069
|
+
replyTo: {
|
|
5070
|
+
id: string;
|
|
5071
|
+
} | null;
|
|
5072
|
+
hash: string;
|
|
5073
|
+
hashKey: string;
|
|
5059
5074
|
recipients: {
|
|
5060
5075
|
id: string;
|
|
5061
5076
|
lastname: string;
|
|
5062
5077
|
firstname: string;
|
|
5063
5078
|
}[];
|
|
5064
|
-
hashKey: string;
|
|
5065
|
-
hash: string;
|
|
5066
|
-
replyTo: {
|
|
5067
|
-
id: string;
|
|
5068
|
-
} | null;
|
|
5069
5079
|
temporaryRecipients: {
|
|
5070
5080
|
email: string | null;
|
|
5071
5081
|
}[];
|
|
5072
5082
|
} | null;
|
|
5083
|
+
sender: {
|
|
5084
|
+
id: string;
|
|
5085
|
+
lastname: string;
|
|
5086
|
+
firstname: string;
|
|
5087
|
+
};
|
|
5073
5088
|
files: {
|
|
5074
5089
|
fileId: string;
|
|
5075
5090
|
filename: string;
|
|
@@ -5087,36 +5102,41 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
5087
5102
|
} & {
|
|
5088
5103
|
mailIntegrity: {
|
|
5089
5104
|
id: string;
|
|
5105
|
+
replyTo: {
|
|
5106
|
+
id: string;
|
|
5107
|
+
} | null;
|
|
5108
|
+
hash: string;
|
|
5109
|
+
hashKey: string;
|
|
5090
5110
|
recipients: {
|
|
5091
5111
|
id: string;
|
|
5092
5112
|
lastname: string;
|
|
5093
5113
|
firstname: string;
|
|
5094
5114
|
}[];
|
|
5095
|
-
hashKey: string;
|
|
5096
|
-
hash: string;
|
|
5097
|
-
replyTo: {
|
|
5098
|
-
id: string;
|
|
5099
|
-
} | null;
|
|
5100
5115
|
temporaryRecipients: {
|
|
5101
5116
|
email: string | null;
|
|
5102
5117
|
}[];
|
|
5103
5118
|
} | null;
|
|
5104
5119
|
mailIntegrityDraft: {
|
|
5105
5120
|
id: string;
|
|
5121
|
+
replyTo: {
|
|
5122
|
+
id: string;
|
|
5123
|
+
} | null;
|
|
5124
|
+
hash: string;
|
|
5125
|
+
hashKey: string;
|
|
5106
5126
|
recipients: {
|
|
5107
5127
|
id: string;
|
|
5108
5128
|
lastname: string;
|
|
5109
5129
|
firstname: string;
|
|
5110
5130
|
}[];
|
|
5111
|
-
hashKey: string;
|
|
5112
|
-
hash: string;
|
|
5113
|
-
replyTo: {
|
|
5114
|
-
id: string;
|
|
5115
|
-
} | null;
|
|
5116
5131
|
temporaryRecipients: {
|
|
5117
5132
|
email: string | null;
|
|
5118
5133
|
}[];
|
|
5119
5134
|
} | null;
|
|
5135
|
+
sender: {
|
|
5136
|
+
id: string;
|
|
5137
|
+
lastname: string;
|
|
5138
|
+
firstname: string;
|
|
5139
|
+
};
|
|
5120
5140
|
files: {
|
|
5121
5141
|
fileId: string;
|
|
5122
5142
|
filename: string;
|
|
@@ -5272,36 +5292,41 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
5272
5292
|
} & {
|
|
5273
5293
|
mailIntegrity: {
|
|
5274
5294
|
id: string;
|
|
5295
|
+
replyTo: {
|
|
5296
|
+
id: string;
|
|
5297
|
+
} | null;
|
|
5298
|
+
hash: string;
|
|
5299
|
+
hashKey: string;
|
|
5275
5300
|
recipients: {
|
|
5276
5301
|
id: string;
|
|
5277
5302
|
lastname: string;
|
|
5278
5303
|
firstname: string;
|
|
5279
5304
|
}[];
|
|
5280
|
-
hashKey: string;
|
|
5281
|
-
hash: string;
|
|
5282
|
-
replyTo: {
|
|
5283
|
-
id: string;
|
|
5284
|
-
} | null;
|
|
5285
5305
|
temporaryRecipients: {
|
|
5286
5306
|
email: string | null;
|
|
5287
5307
|
}[];
|
|
5288
5308
|
} | null;
|
|
5289
5309
|
mailIntegrityDraft: {
|
|
5290
5310
|
id: string;
|
|
5311
|
+
replyTo: {
|
|
5312
|
+
id: string;
|
|
5313
|
+
} | null;
|
|
5314
|
+
hash: string;
|
|
5315
|
+
hashKey: string;
|
|
5291
5316
|
recipients: {
|
|
5292
5317
|
id: string;
|
|
5293
5318
|
lastname: string;
|
|
5294
5319
|
firstname: string;
|
|
5295
5320
|
}[];
|
|
5296
|
-
hashKey: string;
|
|
5297
|
-
hash: string;
|
|
5298
|
-
replyTo: {
|
|
5299
|
-
id: string;
|
|
5300
|
-
} | null;
|
|
5301
5321
|
temporaryRecipients: {
|
|
5302
5322
|
email: string | null;
|
|
5303
5323
|
}[];
|
|
5304
5324
|
} | null;
|
|
5325
|
+
sender: {
|
|
5326
|
+
id: string;
|
|
5327
|
+
lastname: string;
|
|
5328
|
+
firstname: string;
|
|
5329
|
+
};
|
|
5305
5330
|
files: {
|
|
5306
5331
|
fileId: string;
|
|
5307
5332
|
filename: string;
|
|
@@ -5319,36 +5344,41 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
5319
5344
|
} & {
|
|
5320
5345
|
mailIntegrity: {
|
|
5321
5346
|
id: string;
|
|
5347
|
+
replyTo: {
|
|
5348
|
+
id: string;
|
|
5349
|
+
} | null;
|
|
5350
|
+
hash: string;
|
|
5351
|
+
hashKey: string;
|
|
5322
5352
|
recipients: {
|
|
5323
5353
|
id: string;
|
|
5324
5354
|
lastname: string;
|
|
5325
5355
|
firstname: string;
|
|
5326
5356
|
}[];
|
|
5327
|
-
hashKey: string;
|
|
5328
|
-
hash: string;
|
|
5329
|
-
replyTo: {
|
|
5330
|
-
id: string;
|
|
5331
|
-
} | null;
|
|
5332
5357
|
temporaryRecipients: {
|
|
5333
5358
|
email: string | null;
|
|
5334
5359
|
}[];
|
|
5335
5360
|
} | null;
|
|
5336
5361
|
mailIntegrityDraft: {
|
|
5337
5362
|
id: string;
|
|
5363
|
+
replyTo: {
|
|
5364
|
+
id: string;
|
|
5365
|
+
} | null;
|
|
5366
|
+
hash: string;
|
|
5367
|
+
hashKey: string;
|
|
5338
5368
|
recipients: {
|
|
5339
5369
|
id: string;
|
|
5340
5370
|
lastname: string;
|
|
5341
5371
|
firstname: string;
|
|
5342
5372
|
}[];
|
|
5343
|
-
hashKey: string;
|
|
5344
|
-
hash: string;
|
|
5345
|
-
replyTo: {
|
|
5346
|
-
id: string;
|
|
5347
|
-
} | null;
|
|
5348
5373
|
temporaryRecipients: {
|
|
5349
5374
|
email: string | null;
|
|
5350
5375
|
}[];
|
|
5351
5376
|
} | null;
|
|
5377
|
+
sender: {
|
|
5378
|
+
id: string;
|
|
5379
|
+
lastname: string;
|
|
5380
|
+
firstname: string;
|
|
5381
|
+
};
|
|
5352
5382
|
files: {
|
|
5353
5383
|
fileId: string;
|
|
5354
5384
|
filename: string;
|
|
@@ -5392,36 +5422,41 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
5392
5422
|
} & {
|
|
5393
5423
|
mailIntegrity: {
|
|
5394
5424
|
id: string;
|
|
5425
|
+
replyTo: {
|
|
5426
|
+
id: string;
|
|
5427
|
+
} | null;
|
|
5428
|
+
hash: string;
|
|
5429
|
+
hashKey: string;
|
|
5395
5430
|
recipients: {
|
|
5396
5431
|
id: string;
|
|
5397
5432
|
lastname: string;
|
|
5398
5433
|
firstname: string;
|
|
5399
5434
|
}[];
|
|
5400
|
-
hashKey: string;
|
|
5401
|
-
hash: string;
|
|
5402
|
-
replyTo: {
|
|
5403
|
-
id: string;
|
|
5404
|
-
} | null;
|
|
5405
5435
|
temporaryRecipients: {
|
|
5406
5436
|
email: string | null;
|
|
5407
5437
|
}[];
|
|
5408
5438
|
} | null;
|
|
5409
5439
|
mailIntegrityDraft: {
|
|
5410
5440
|
id: string;
|
|
5441
|
+
replyTo: {
|
|
5442
|
+
id: string;
|
|
5443
|
+
} | null;
|
|
5444
|
+
hash: string;
|
|
5445
|
+
hashKey: string;
|
|
5411
5446
|
recipients: {
|
|
5412
5447
|
id: string;
|
|
5413
5448
|
lastname: string;
|
|
5414
5449
|
firstname: string;
|
|
5415
5450
|
}[];
|
|
5416
|
-
hashKey: string;
|
|
5417
|
-
hash: string;
|
|
5418
|
-
replyTo: {
|
|
5419
|
-
id: string;
|
|
5420
|
-
} | null;
|
|
5421
5451
|
temporaryRecipients: {
|
|
5422
5452
|
email: string | null;
|
|
5423
5453
|
}[];
|
|
5424
5454
|
} | null;
|
|
5455
|
+
sender: {
|
|
5456
|
+
id: string;
|
|
5457
|
+
lastname: string;
|
|
5458
|
+
firstname: string;
|
|
5459
|
+
};
|
|
5425
5460
|
files: {
|
|
5426
5461
|
fileId: string;
|
|
5427
5462
|
filename: string;
|
|
@@ -5439,36 +5474,41 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
5439
5474
|
} & {
|
|
5440
5475
|
mailIntegrity: {
|
|
5441
5476
|
id: string;
|
|
5477
|
+
replyTo: {
|
|
5478
|
+
id: string;
|
|
5479
|
+
} | null;
|
|
5480
|
+
hash: string;
|
|
5481
|
+
hashKey: string;
|
|
5442
5482
|
recipients: {
|
|
5443
5483
|
id: string;
|
|
5444
5484
|
lastname: string;
|
|
5445
5485
|
firstname: string;
|
|
5446
5486
|
}[];
|
|
5447
|
-
hashKey: string;
|
|
5448
|
-
hash: string;
|
|
5449
|
-
replyTo: {
|
|
5450
|
-
id: string;
|
|
5451
|
-
} | null;
|
|
5452
5487
|
temporaryRecipients: {
|
|
5453
5488
|
email: string | null;
|
|
5454
5489
|
}[];
|
|
5455
5490
|
} | null;
|
|
5456
5491
|
mailIntegrityDraft: {
|
|
5457
5492
|
id: string;
|
|
5493
|
+
replyTo: {
|
|
5494
|
+
id: string;
|
|
5495
|
+
} | null;
|
|
5496
|
+
hash: string;
|
|
5497
|
+
hashKey: string;
|
|
5458
5498
|
recipients: {
|
|
5459
5499
|
id: string;
|
|
5460
5500
|
lastname: string;
|
|
5461
5501
|
firstname: string;
|
|
5462
5502
|
}[];
|
|
5463
|
-
hashKey: string;
|
|
5464
|
-
hash: string;
|
|
5465
|
-
replyTo: {
|
|
5466
|
-
id: string;
|
|
5467
|
-
} | null;
|
|
5468
5503
|
temporaryRecipients: {
|
|
5469
5504
|
email: string | null;
|
|
5470
5505
|
}[];
|
|
5471
5506
|
} | null;
|
|
5507
|
+
sender: {
|
|
5508
|
+
id: string;
|
|
5509
|
+
lastname: string;
|
|
5510
|
+
firstname: string;
|
|
5511
|
+
};
|
|
5472
5512
|
files: {
|
|
5473
5513
|
fileId: string;
|
|
5474
5514
|
filename: string;
|
|
@@ -5580,36 +5620,41 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
5580
5620
|
} & {
|
|
5581
5621
|
mailIntegrity: {
|
|
5582
5622
|
id: string;
|
|
5623
|
+
replyTo: {
|
|
5624
|
+
id: string;
|
|
5625
|
+
} | null;
|
|
5626
|
+
hash: string;
|
|
5627
|
+
hashKey: string;
|
|
5583
5628
|
recipients: {
|
|
5584
5629
|
id: string;
|
|
5585
5630
|
lastname: string;
|
|
5586
5631
|
firstname: string;
|
|
5587
5632
|
}[];
|
|
5588
|
-
hashKey: string;
|
|
5589
|
-
hash: string;
|
|
5590
|
-
replyTo: {
|
|
5591
|
-
id: string;
|
|
5592
|
-
} | null;
|
|
5593
5633
|
temporaryRecipients: {
|
|
5594
5634
|
email: string | null;
|
|
5595
5635
|
}[];
|
|
5596
5636
|
} | null;
|
|
5597
5637
|
mailIntegrityDraft: {
|
|
5598
5638
|
id: string;
|
|
5639
|
+
replyTo: {
|
|
5640
|
+
id: string;
|
|
5641
|
+
} | null;
|
|
5642
|
+
hash: string;
|
|
5643
|
+
hashKey: string;
|
|
5599
5644
|
recipients: {
|
|
5600
5645
|
id: string;
|
|
5601
5646
|
lastname: string;
|
|
5602
5647
|
firstname: string;
|
|
5603
5648
|
}[];
|
|
5604
|
-
hashKey: string;
|
|
5605
|
-
hash: string;
|
|
5606
|
-
replyTo: {
|
|
5607
|
-
id: string;
|
|
5608
|
-
} | null;
|
|
5609
5649
|
temporaryRecipients: {
|
|
5610
5650
|
email: string | null;
|
|
5611
5651
|
}[];
|
|
5612
5652
|
} | null;
|
|
5653
|
+
sender: {
|
|
5654
|
+
id: string;
|
|
5655
|
+
lastname: string;
|
|
5656
|
+
firstname: string;
|
|
5657
|
+
};
|
|
5613
5658
|
files: {
|
|
5614
5659
|
fileId: string;
|
|
5615
5660
|
filename: string;
|
|
@@ -5627,36 +5672,41 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
5627
5672
|
} & {
|
|
5628
5673
|
mailIntegrity: {
|
|
5629
5674
|
id: string;
|
|
5675
|
+
replyTo: {
|
|
5676
|
+
id: string;
|
|
5677
|
+
} | null;
|
|
5678
|
+
hash: string;
|
|
5679
|
+
hashKey: string;
|
|
5630
5680
|
recipients: {
|
|
5631
5681
|
id: string;
|
|
5632
5682
|
lastname: string;
|
|
5633
5683
|
firstname: string;
|
|
5634
5684
|
}[];
|
|
5635
|
-
hashKey: string;
|
|
5636
|
-
hash: string;
|
|
5637
|
-
replyTo: {
|
|
5638
|
-
id: string;
|
|
5639
|
-
} | null;
|
|
5640
5685
|
temporaryRecipients: {
|
|
5641
5686
|
email: string | null;
|
|
5642
5687
|
}[];
|
|
5643
5688
|
} | null;
|
|
5644
5689
|
mailIntegrityDraft: {
|
|
5645
5690
|
id: string;
|
|
5691
|
+
replyTo: {
|
|
5692
|
+
id: string;
|
|
5693
|
+
} | null;
|
|
5694
|
+
hash: string;
|
|
5695
|
+
hashKey: string;
|
|
5646
5696
|
recipients: {
|
|
5647
5697
|
id: string;
|
|
5648
5698
|
lastname: string;
|
|
5649
5699
|
firstname: string;
|
|
5650
5700
|
}[];
|
|
5651
|
-
hashKey: string;
|
|
5652
|
-
hash: string;
|
|
5653
|
-
replyTo: {
|
|
5654
|
-
id: string;
|
|
5655
|
-
} | null;
|
|
5656
5701
|
temporaryRecipients: {
|
|
5657
5702
|
email: string | null;
|
|
5658
5703
|
}[];
|
|
5659
5704
|
} | null;
|
|
5705
|
+
sender: {
|
|
5706
|
+
id: string;
|
|
5707
|
+
lastname: string;
|
|
5708
|
+
firstname: string;
|
|
5709
|
+
};
|
|
5660
5710
|
files: {
|
|
5661
5711
|
fileId: string;
|
|
5662
5712
|
filename: string;
|
|
@@ -5765,6 +5815,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
5765
5815
|
_ctx_out: {};
|
|
5766
5816
|
_input_in: {
|
|
5767
5817
|
id: string;
|
|
5818
|
+
customMessage: string | null;
|
|
5768
5819
|
recipients: ({
|
|
5769
5820
|
subject: string;
|
|
5770
5821
|
body: string;
|
|
@@ -5777,10 +5828,10 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
5777
5828
|
}[];
|
|
5778
5829
|
})[];
|
|
5779
5830
|
temporaryRecipients: string[];
|
|
5780
|
-
customMessage: string | null;
|
|
5781
5831
|
};
|
|
5782
5832
|
_input_out: {
|
|
5783
5833
|
id: string;
|
|
5834
|
+
customMessage: string | null;
|
|
5784
5835
|
recipients: ({
|
|
5785
5836
|
subject: string;
|
|
5786
5837
|
body: string;
|
|
@@ -5793,7 +5844,6 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
5793
5844
|
}[];
|
|
5794
5845
|
})[];
|
|
5795
5846
|
temporaryRecipients: string[];
|
|
5796
|
-
customMessage: string | null;
|
|
5797
5847
|
};
|
|
5798
5848
|
_output_in: {
|
|
5799
5849
|
isSent: boolean;
|
|
@@ -5896,36 +5946,41 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
5896
5946
|
} & {
|
|
5897
5947
|
mailIntegrity: {
|
|
5898
5948
|
id: string;
|
|
5949
|
+
replyTo: {
|
|
5950
|
+
id: string;
|
|
5951
|
+
} | null;
|
|
5952
|
+
hash: string;
|
|
5953
|
+
hashKey: string;
|
|
5899
5954
|
recipients: {
|
|
5900
5955
|
id: string;
|
|
5901
5956
|
lastname: string;
|
|
5902
5957
|
firstname: string;
|
|
5903
5958
|
}[];
|
|
5904
|
-
hashKey: string;
|
|
5905
|
-
hash: string;
|
|
5906
|
-
replyTo: {
|
|
5907
|
-
id: string;
|
|
5908
|
-
} | null;
|
|
5909
5959
|
temporaryRecipients: {
|
|
5910
5960
|
email: string | null;
|
|
5911
5961
|
}[];
|
|
5912
5962
|
} | null;
|
|
5913
5963
|
mailIntegrityDraft: {
|
|
5914
5964
|
id: string;
|
|
5965
|
+
replyTo: {
|
|
5966
|
+
id: string;
|
|
5967
|
+
} | null;
|
|
5968
|
+
hash: string;
|
|
5969
|
+
hashKey: string;
|
|
5915
5970
|
recipients: {
|
|
5916
5971
|
id: string;
|
|
5917
5972
|
lastname: string;
|
|
5918
5973
|
firstname: string;
|
|
5919
5974
|
}[];
|
|
5920
|
-
hashKey: string;
|
|
5921
|
-
hash: string;
|
|
5922
|
-
replyTo: {
|
|
5923
|
-
id: string;
|
|
5924
|
-
} | null;
|
|
5925
5975
|
temporaryRecipients: {
|
|
5926
5976
|
email: string | null;
|
|
5927
5977
|
}[];
|
|
5928
5978
|
} | null;
|
|
5979
|
+
sender: {
|
|
5980
|
+
id: string;
|
|
5981
|
+
lastname: string;
|
|
5982
|
+
firstname: string;
|
|
5983
|
+
};
|
|
5929
5984
|
files: {
|
|
5930
5985
|
fileId: string;
|
|
5931
5986
|
filename: string;
|
|
@@ -5943,36 +5998,41 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
5943
5998
|
} & {
|
|
5944
5999
|
mailIntegrity: {
|
|
5945
6000
|
id: string;
|
|
6001
|
+
replyTo: {
|
|
6002
|
+
id: string;
|
|
6003
|
+
} | null;
|
|
6004
|
+
hash: string;
|
|
6005
|
+
hashKey: string;
|
|
5946
6006
|
recipients: {
|
|
5947
6007
|
id: string;
|
|
5948
6008
|
lastname: string;
|
|
5949
6009
|
firstname: string;
|
|
5950
6010
|
}[];
|
|
5951
|
-
hashKey: string;
|
|
5952
|
-
hash: string;
|
|
5953
|
-
replyTo: {
|
|
5954
|
-
id: string;
|
|
5955
|
-
} | null;
|
|
5956
6011
|
temporaryRecipients: {
|
|
5957
6012
|
email: string | null;
|
|
5958
6013
|
}[];
|
|
5959
6014
|
} | null;
|
|
5960
6015
|
mailIntegrityDraft: {
|
|
5961
6016
|
id: string;
|
|
6017
|
+
replyTo: {
|
|
6018
|
+
id: string;
|
|
6019
|
+
} | null;
|
|
6020
|
+
hash: string;
|
|
6021
|
+
hashKey: string;
|
|
5962
6022
|
recipients: {
|
|
5963
6023
|
id: string;
|
|
5964
6024
|
lastname: string;
|
|
5965
6025
|
firstname: string;
|
|
5966
6026
|
}[];
|
|
5967
|
-
hashKey: string;
|
|
5968
|
-
hash: string;
|
|
5969
|
-
replyTo: {
|
|
5970
|
-
id: string;
|
|
5971
|
-
} | null;
|
|
5972
6027
|
temporaryRecipients: {
|
|
5973
6028
|
email: string | null;
|
|
5974
6029
|
}[];
|
|
5975
6030
|
} | null;
|
|
6031
|
+
sender: {
|
|
6032
|
+
id: string;
|
|
6033
|
+
lastname: string;
|
|
6034
|
+
firstname: string;
|
|
6035
|
+
};
|
|
5976
6036
|
files: {
|
|
5977
6037
|
fileId: string;
|
|
5978
6038
|
filename: string;
|
|
@@ -6070,12 +6130,12 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
6070
6130
|
_input_in: {
|
|
6071
6131
|
id: string;
|
|
6072
6132
|
} & {
|
|
6073
|
-
recipients: string[] | null;
|
|
6074
6133
|
subject: string | null;
|
|
6075
6134
|
body: string | null;
|
|
6076
|
-
hashKey: string | null;
|
|
6077
6135
|
hash: string | null;
|
|
6136
|
+
hashKey: string | null;
|
|
6078
6137
|
replyToId: string | null;
|
|
6138
|
+
recipients: string[] | null;
|
|
6079
6139
|
senderFiles: {
|
|
6080
6140
|
id: string;
|
|
6081
6141
|
name: string;
|
|
@@ -6084,12 +6144,12 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
6084
6144
|
_input_out: {
|
|
6085
6145
|
id: string;
|
|
6086
6146
|
} & {
|
|
6087
|
-
recipients: string[] | null;
|
|
6088
6147
|
subject: string | null;
|
|
6089
6148
|
body: string | null;
|
|
6090
|
-
hashKey: string | null;
|
|
6091
6149
|
hash: string | null;
|
|
6150
|
+
hashKey: string | null;
|
|
6092
6151
|
replyToId: string | null;
|
|
6152
|
+
recipients: string[] | null;
|
|
6093
6153
|
senderFiles: {
|
|
6094
6154
|
id: string;
|
|
6095
6155
|
name: string;
|
|
@@ -6106,36 +6166,41 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
6106
6166
|
} & {
|
|
6107
6167
|
mailIntegrity: {
|
|
6108
6168
|
id: string;
|
|
6169
|
+
replyTo: {
|
|
6170
|
+
id: string;
|
|
6171
|
+
} | null;
|
|
6172
|
+
hash: string;
|
|
6173
|
+
hashKey: string;
|
|
6109
6174
|
recipients: {
|
|
6110
6175
|
id: string;
|
|
6111
6176
|
lastname: string;
|
|
6112
6177
|
firstname: string;
|
|
6113
6178
|
}[];
|
|
6114
|
-
hashKey: string;
|
|
6115
|
-
hash: string;
|
|
6116
|
-
replyTo: {
|
|
6117
|
-
id: string;
|
|
6118
|
-
} | null;
|
|
6119
6179
|
temporaryRecipients: {
|
|
6120
6180
|
email: string | null;
|
|
6121
6181
|
}[];
|
|
6122
6182
|
} | null;
|
|
6123
6183
|
mailIntegrityDraft: {
|
|
6124
6184
|
id: string;
|
|
6185
|
+
replyTo: {
|
|
6186
|
+
id: string;
|
|
6187
|
+
} | null;
|
|
6188
|
+
hash: string;
|
|
6189
|
+
hashKey: string;
|
|
6125
6190
|
recipients: {
|
|
6126
6191
|
id: string;
|
|
6127
6192
|
lastname: string;
|
|
6128
6193
|
firstname: string;
|
|
6129
6194
|
}[];
|
|
6130
|
-
hashKey: string;
|
|
6131
|
-
hash: string;
|
|
6132
|
-
replyTo: {
|
|
6133
|
-
id: string;
|
|
6134
|
-
} | null;
|
|
6135
6195
|
temporaryRecipients: {
|
|
6136
6196
|
email: string | null;
|
|
6137
6197
|
}[];
|
|
6138
6198
|
} | null;
|
|
6199
|
+
sender: {
|
|
6200
|
+
id: string;
|
|
6201
|
+
lastname: string;
|
|
6202
|
+
firstname: string;
|
|
6203
|
+
};
|
|
6139
6204
|
files: {
|
|
6140
6205
|
fileId: string;
|
|
6141
6206
|
filename: string;
|
|
@@ -6153,36 +6218,41 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
6153
6218
|
} & {
|
|
6154
6219
|
mailIntegrity: {
|
|
6155
6220
|
id: string;
|
|
6221
|
+
replyTo: {
|
|
6222
|
+
id: string;
|
|
6223
|
+
} | null;
|
|
6224
|
+
hash: string;
|
|
6225
|
+
hashKey: string;
|
|
6156
6226
|
recipients: {
|
|
6157
6227
|
id: string;
|
|
6158
6228
|
lastname: string;
|
|
6159
6229
|
firstname: string;
|
|
6160
6230
|
}[];
|
|
6161
|
-
hashKey: string;
|
|
6162
|
-
hash: string;
|
|
6163
|
-
replyTo: {
|
|
6164
|
-
id: string;
|
|
6165
|
-
} | null;
|
|
6166
6231
|
temporaryRecipients: {
|
|
6167
6232
|
email: string | null;
|
|
6168
6233
|
}[];
|
|
6169
6234
|
} | null;
|
|
6170
6235
|
mailIntegrityDraft: {
|
|
6171
6236
|
id: string;
|
|
6237
|
+
replyTo: {
|
|
6238
|
+
id: string;
|
|
6239
|
+
} | null;
|
|
6240
|
+
hash: string;
|
|
6241
|
+
hashKey: string;
|
|
6172
6242
|
recipients: {
|
|
6173
6243
|
id: string;
|
|
6174
6244
|
lastname: string;
|
|
6175
6245
|
firstname: string;
|
|
6176
6246
|
}[];
|
|
6177
|
-
hashKey: string;
|
|
6178
|
-
hash: string;
|
|
6179
|
-
replyTo: {
|
|
6180
|
-
id: string;
|
|
6181
|
-
} | null;
|
|
6182
6247
|
temporaryRecipients: {
|
|
6183
6248
|
email: string | null;
|
|
6184
6249
|
}[];
|
|
6185
6250
|
} | null;
|
|
6251
|
+
sender: {
|
|
6252
|
+
id: string;
|
|
6253
|
+
lastname: string;
|
|
6254
|
+
firstname: string;
|
|
6255
|
+
};
|
|
6186
6256
|
files: {
|
|
6187
6257
|
fileId: string;
|
|
6188
6258
|
filename: string;
|
|
@@ -6241,14 +6311,14 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
6241
6311
|
email: string;
|
|
6242
6312
|
};
|
|
6243
6313
|
_output_in: {
|
|
6314
|
+
email: string;
|
|
6244
6315
|
id: string;
|
|
6245
6316
|
createdAt: Date;
|
|
6246
|
-
email: string;
|
|
6247
6317
|
};
|
|
6248
6318
|
_output_out: {
|
|
6319
|
+
email: string;
|
|
6249
6320
|
id: string;
|
|
6250
6321
|
createdAt: Date;
|
|
6251
|
-
email: string;
|
|
6252
6322
|
};
|
|
6253
6323
|
}, unknown>;
|
|
6254
6324
|
createFeedback: _trpc_server.BuildProcedure<"mutation", {
|
|
@@ -6374,8 +6444,8 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
6374
6444
|
_input_in: {} | undefined;
|
|
6375
6445
|
_input_out: {} | undefined;
|
|
6376
6446
|
_output_in: ({
|
|
6377
|
-
id: string;
|
|
6378
6447
|
codes: string[];
|
|
6448
|
+
id: string;
|
|
6379
6449
|
limitsId: string;
|
|
6380
6450
|
kind: "free" | "basic" | "advanced" | "pro";
|
|
6381
6451
|
} & {
|
|
@@ -6392,8 +6462,8 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
6392
6462
|
sentMailsId: string;
|
|
6393
6463
|
} & {
|
|
6394
6464
|
sentMails: {
|
|
6395
|
-
id: string;
|
|
6396
6465
|
count: bigint | null;
|
|
6466
|
+
id: string;
|
|
6397
6467
|
fileSize: bigint | null;
|
|
6398
6468
|
hardFileCount: bigint | null;
|
|
6399
6469
|
hardFileSize: bigint | null;
|
|
@@ -6402,8 +6472,8 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
6402
6472
|
hardCount: bigint | null;
|
|
6403
6473
|
};
|
|
6404
6474
|
receivedMails: {
|
|
6405
|
-
id: string;
|
|
6406
6475
|
count: bigint | null;
|
|
6476
|
+
id: string;
|
|
6407
6477
|
fileSize: bigint | null;
|
|
6408
6478
|
hardFileCount: bigint | null;
|
|
6409
6479
|
hardFileSize: bigint | null;
|
|
@@ -6414,8 +6484,8 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
6414
6484
|
};
|
|
6415
6485
|
})[];
|
|
6416
6486
|
_output_out: ({
|
|
6417
|
-
id: string;
|
|
6418
6487
|
codes: string[];
|
|
6488
|
+
id: string;
|
|
6419
6489
|
limitsId: string;
|
|
6420
6490
|
kind: "free" | "basic" | "advanced" | "pro";
|
|
6421
6491
|
} & {
|
|
@@ -6432,8 +6502,8 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
6432
6502
|
sentMailsId: string;
|
|
6433
6503
|
} & {
|
|
6434
6504
|
sentMails: {
|
|
6435
|
-
id: string;
|
|
6436
6505
|
count: bigint | null;
|
|
6506
|
+
id: string;
|
|
6437
6507
|
fileSize: bigint | null;
|
|
6438
6508
|
hardFileCount: bigint | null;
|
|
6439
6509
|
hardFileSize: bigint | null;
|
|
@@ -6442,8 +6512,8 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
6442
6512
|
hardCount: bigint | null;
|
|
6443
6513
|
};
|
|
6444
6514
|
receivedMails: {
|
|
6445
|
-
id: string;
|
|
6446
6515
|
count: bigint | null;
|
|
6516
|
+
id: string;
|
|
6447
6517
|
fileSize: bigint | null;
|
|
6448
6518
|
hardFileCount: bigint | null;
|
|
6449
6519
|
hardFileSize: bigint | null;
|
|
@@ -6507,14 +6577,14 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
6507
6577
|
message?: string | undefined;
|
|
6508
6578
|
};
|
|
6509
6579
|
_output_in: {
|
|
6510
|
-
id: string;
|
|
6511
6580
|
userId: string;
|
|
6581
|
+
id: string;
|
|
6512
6582
|
customMessage: string | null;
|
|
6513
6583
|
reportedUserId: string;
|
|
6514
6584
|
};
|
|
6515
6585
|
_output_out: {
|
|
6516
|
-
id: string;
|
|
6517
6586
|
userId: string;
|
|
6587
|
+
id: string;
|
|
6518
6588
|
customMessage: string | null;
|
|
6519
6589
|
reportedUserId: string;
|
|
6520
6590
|
};
|
|
@@ -7931,8 +8001,6 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
7931
8001
|
};
|
|
7932
8002
|
_output_in: {
|
|
7933
8003
|
code: string;
|
|
7934
|
-
id: string;
|
|
7935
|
-
createdAt: Date;
|
|
7936
8004
|
plan: {
|
|
7937
8005
|
id: string;
|
|
7938
8006
|
kind: string;
|
|
@@ -7957,14 +8025,16 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
7957
8025
|
bandwidthMax: bigint | null;
|
|
7958
8026
|
};
|
|
7959
8027
|
} | null;
|
|
7960
|
-
|
|
7961
|
-
|
|
8028
|
+
id: string;
|
|
8029
|
+
createdAt: Date;
|
|
7962
8030
|
planId: string | null;
|
|
7963
8031
|
limitsId: string;
|
|
7964
8032
|
ownerId: string;
|
|
7965
8033
|
blocked: boolean;
|
|
8034
|
+
name: string;
|
|
7966
8035
|
color: string | null;
|
|
7967
8036
|
logo: string | null;
|
|
8037
|
+
updatedAt: Date;
|
|
7968
8038
|
origin: string[];
|
|
7969
8039
|
consumptionId: string;
|
|
7970
8040
|
owner: {
|
|
@@ -8002,8 +8072,6 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
8002
8072
|
};
|
|
8003
8073
|
_output_out: {
|
|
8004
8074
|
code: string;
|
|
8005
|
-
id: string;
|
|
8006
|
-
createdAt: Date;
|
|
8007
8075
|
plan: {
|
|
8008
8076
|
id: string;
|
|
8009
8077
|
kind: string;
|
|
@@ -8028,14 +8096,16 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
8028
8096
|
bandwidthMax: bigint | null;
|
|
8029
8097
|
};
|
|
8030
8098
|
} | null;
|
|
8031
|
-
|
|
8032
|
-
|
|
8099
|
+
id: string;
|
|
8100
|
+
createdAt: Date;
|
|
8033
8101
|
planId: string | null;
|
|
8034
8102
|
limitsId: string;
|
|
8035
8103
|
ownerId: string;
|
|
8036
8104
|
blocked: boolean;
|
|
8105
|
+
name: string;
|
|
8037
8106
|
color: string | null;
|
|
8038
8107
|
logo: string | null;
|
|
8108
|
+
updatedAt: Date;
|
|
8039
8109
|
origin: string[];
|
|
8040
8110
|
consumptionId: string;
|
|
8041
8111
|
owner: {
|
|
@@ -8103,8 +8173,6 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
8103
8173
|
};
|
|
8104
8174
|
_output_in: {
|
|
8105
8175
|
code: string;
|
|
8106
|
-
id: string;
|
|
8107
|
-
createdAt: Date;
|
|
8108
8176
|
plan: {
|
|
8109
8177
|
id: string;
|
|
8110
8178
|
kind: string;
|
|
@@ -8129,14 +8197,16 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
8129
8197
|
bandwidthMax: bigint | null;
|
|
8130
8198
|
};
|
|
8131
8199
|
} | null;
|
|
8132
|
-
|
|
8133
|
-
|
|
8200
|
+
id: string;
|
|
8201
|
+
createdAt: Date;
|
|
8134
8202
|
planId: string | null;
|
|
8135
8203
|
limitsId: string;
|
|
8136
8204
|
ownerId: string;
|
|
8137
8205
|
blocked: boolean;
|
|
8206
|
+
name: string;
|
|
8138
8207
|
color: string | null;
|
|
8139
8208
|
logo: string | null;
|
|
8209
|
+
updatedAt: Date;
|
|
8140
8210
|
origin: string[];
|
|
8141
8211
|
consumptionId: string;
|
|
8142
8212
|
owner: {
|
|
@@ -8174,8 +8244,6 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
8174
8244
|
}[];
|
|
8175
8245
|
_output_out: {
|
|
8176
8246
|
code: string;
|
|
8177
|
-
id: string;
|
|
8178
|
-
createdAt: Date;
|
|
8179
8247
|
plan: {
|
|
8180
8248
|
id: string;
|
|
8181
8249
|
kind: string;
|
|
@@ -8200,14 +8268,16 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
8200
8268
|
bandwidthMax: bigint | null;
|
|
8201
8269
|
};
|
|
8202
8270
|
} | null;
|
|
8203
|
-
|
|
8204
|
-
|
|
8271
|
+
id: string;
|
|
8272
|
+
createdAt: Date;
|
|
8205
8273
|
planId: string | null;
|
|
8206
8274
|
limitsId: string;
|
|
8207
8275
|
ownerId: string;
|
|
8208
8276
|
blocked: boolean;
|
|
8277
|
+
name: string;
|
|
8209
8278
|
color: string | null;
|
|
8210
8279
|
logo: string | null;
|
|
8280
|
+
updatedAt: Date;
|
|
8211
8281
|
origin: string[];
|
|
8212
8282
|
consumptionId: string;
|
|
8213
8283
|
owner: {
|
|
@@ -8273,8 +8343,8 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
8273
8343
|
logo: string | null;
|
|
8274
8344
|
origin: string;
|
|
8275
8345
|
collaborators: {
|
|
8276
|
-
role: "user" | "admin";
|
|
8277
8346
|
userId: string;
|
|
8347
|
+
role: "user" | "admin";
|
|
8278
8348
|
}[];
|
|
8279
8349
|
};
|
|
8280
8350
|
_input_out: {
|
|
@@ -8283,8 +8353,8 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
8283
8353
|
logo: string | null;
|
|
8284
8354
|
origin: string;
|
|
8285
8355
|
collaborators: {
|
|
8286
|
-
role: "user" | "admin";
|
|
8287
8356
|
userId: string;
|
|
8357
|
+
role: "user" | "admin";
|
|
8288
8358
|
}[];
|
|
8289
8359
|
};
|
|
8290
8360
|
_output_in: {
|
|
@@ -8400,7 +8470,6 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
8400
8470
|
appCode: string;
|
|
8401
8471
|
};
|
|
8402
8472
|
_output_in: {
|
|
8403
|
-
role: "user" | "admin";
|
|
8404
8473
|
developer: {
|
|
8405
8474
|
user: {
|
|
8406
8475
|
id: string;
|
|
@@ -8416,10 +8485,10 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
8416
8485
|
};
|
|
8417
8486
|
id: string;
|
|
8418
8487
|
};
|
|
8488
|
+
role: "user" | "admin";
|
|
8419
8489
|
rights: "admin" | "write" | "read";
|
|
8420
8490
|
};
|
|
8421
8491
|
_output_out: {
|
|
8422
|
-
role: "user" | "admin";
|
|
8423
8492
|
developer: {
|
|
8424
8493
|
user: {
|
|
8425
8494
|
id: string;
|
|
@@ -8435,6 +8504,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
8435
8504
|
};
|
|
8436
8505
|
id: string;
|
|
8437
8506
|
};
|
|
8507
|
+
role: "user" | "admin";
|
|
8438
8508
|
rights: "admin" | "write" | "read";
|
|
8439
8509
|
};
|
|
8440
8510
|
}, unknown>;
|
|
@@ -8468,7 +8538,6 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
8468
8538
|
appCode: string;
|
|
8469
8539
|
};
|
|
8470
8540
|
_output_in: {
|
|
8471
|
-
role: "user" | "admin";
|
|
8472
8541
|
developer: {
|
|
8473
8542
|
user: {
|
|
8474
8543
|
id: string;
|
|
@@ -8484,10 +8553,10 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
8484
8553
|
};
|
|
8485
8554
|
id: string;
|
|
8486
8555
|
};
|
|
8556
|
+
role: "user" | "admin";
|
|
8487
8557
|
rights: "admin" | "write" | "read";
|
|
8488
8558
|
}[];
|
|
8489
8559
|
_output_out: {
|
|
8490
|
-
role: "user" | "admin";
|
|
8491
8560
|
developer: {
|
|
8492
8561
|
user: {
|
|
8493
8562
|
id: string;
|
|
@@ -8503,6 +8572,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
8503
8572
|
};
|
|
8504
8573
|
id: string;
|
|
8505
8574
|
};
|
|
8575
|
+
role: "user" | "admin";
|
|
8506
8576
|
rights: "admin" | "write" | "read";
|
|
8507
8577
|
}[];
|
|
8508
8578
|
}, unknown>;
|
|
@@ -8929,18 +8999,12 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
8929
8999
|
_input_in: {} | undefined;
|
|
8930
9000
|
_input_out: {} | undefined;
|
|
8931
9001
|
_output_in: {
|
|
8932
|
-
id: string;
|
|
8933
|
-
lastLogin: Date | null;
|
|
8934
|
-
createdAt: Date;
|
|
8935
|
-
deletedAt: Date | null;
|
|
8936
|
-
lastname: string;
|
|
8937
|
-
firstname: string;
|
|
8938
9002
|
account: {
|
|
8939
9003
|
id: string;
|
|
8940
9004
|
createdAt: Date;
|
|
8941
|
-
deletedAt: Date | null;
|
|
8942
9005
|
role: "user" | "admin";
|
|
8943
9006
|
updatedAt: Date;
|
|
9007
|
+
deletedAt: Date | null;
|
|
8944
9008
|
emails: string[];
|
|
8945
9009
|
phones: string[];
|
|
8946
9010
|
infosId: string;
|
|
@@ -8948,21 +9012,21 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
8948
9012
|
masterKeySalt: string;
|
|
8949
9013
|
srpVerifier: string;
|
|
8950
9014
|
};
|
|
8951
|
-
updatedAt: Date;
|
|
8952
|
-
};
|
|
8953
|
-
_output_out: {
|
|
8954
9015
|
id: string;
|
|
8955
|
-
lastLogin: Date | null;
|
|
8956
9016
|
createdAt: Date;
|
|
9017
|
+
updatedAt: Date;
|
|
9018
|
+
lastLogin: Date | null;
|
|
8957
9019
|
deletedAt: Date | null;
|
|
8958
9020
|
lastname: string;
|
|
8959
9021
|
firstname: string;
|
|
9022
|
+
};
|
|
9023
|
+
_output_out: {
|
|
8960
9024
|
account: {
|
|
8961
9025
|
id: string;
|
|
8962
9026
|
createdAt: Date;
|
|
8963
|
-
deletedAt: Date | null;
|
|
8964
9027
|
role: "user" | "admin";
|
|
8965
9028
|
updatedAt: Date;
|
|
9029
|
+
deletedAt: Date | null;
|
|
8966
9030
|
emails: string[];
|
|
8967
9031
|
phones: string[];
|
|
8968
9032
|
infosId: string;
|
|
@@ -8970,7 +9034,13 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
8970
9034
|
masterKeySalt: string;
|
|
8971
9035
|
srpVerifier: string;
|
|
8972
9036
|
};
|
|
9037
|
+
id: string;
|
|
9038
|
+
createdAt: Date;
|
|
8973
9039
|
updatedAt: Date;
|
|
9040
|
+
lastLogin: Date | null;
|
|
9041
|
+
deletedAt: Date | null;
|
|
9042
|
+
lastname: string;
|
|
9043
|
+
firstname: string;
|
|
8974
9044
|
};
|
|
8975
9045
|
}, unknown>;
|
|
8976
9046
|
updateAutoDisconnectDelay: _trpc_server.BuildProcedure<"mutation", {
|
|
@@ -9044,21 +9114,21 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
|
|
|
9044
9114
|
};
|
|
9045
9115
|
_output_in: {
|
|
9046
9116
|
id: string;
|
|
9047
|
-
lastLogin: Date | null;
|
|
9048
9117
|
createdAt: Date;
|
|
9118
|
+
updatedAt: Date;
|
|
9119
|
+
lastLogin: Date | null;
|
|
9049
9120
|
deletedAt: Date | null;
|
|
9050
9121
|
lastname: string;
|
|
9051
9122
|
firstname: string;
|
|
9052
|
-
updatedAt: Date;
|
|
9053
9123
|
};
|
|
9054
9124
|
_output_out: {
|
|
9055
9125
|
id: string;
|
|
9056
|
-
lastLogin: Date | null;
|
|
9057
9126
|
createdAt: Date;
|
|
9127
|
+
updatedAt: Date;
|
|
9128
|
+
lastLogin: Date | null;
|
|
9058
9129
|
deletedAt: Date | null;
|
|
9059
9130
|
lastname: string;
|
|
9060
9131
|
firstname: string;
|
|
9061
|
-
updatedAt: Date;
|
|
9062
9132
|
};
|
|
9063
9133
|
}, unknown>;
|
|
9064
9134
|
}>;
|