@secrecy/lib 1.29.0-feat-rename-file.2 → 1.29.0-feat-upload-file-types.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/cache.js +2 -2
- package/dist/lib/client/SecrecyAppClient.js +2 -2
- package/dist/lib/client/SecrecyCloudClient.js +91 -91
- package/dist/lib/client/SecrecyMailClient.js +25 -25
- package/dist/lib/client/convert/file.js +29 -0
- package/dist/lib/client/convert/mail.js +4 -4
- package/dist/lib/client/convert/node.js +7 -7
- package/dist/lib/client/index.js +3 -3
- package/dist/types/cache.d.ts +3 -3
- package/dist/types/client/SecrecyCloudClient.d.ts +15 -15
- package/dist/types/client/convert/file.d.ts +4 -0
- package/dist/types/client/index.d.ts +1 -1
- package/dist/types/client/types/file.d.ts +6 -0
- package/dist/types/client/types/index.d.ts +1 -1
- package/dist/types/client/types/mail.d.ts +5 -5
- package/dist/types/client/types/node.d.ts +4 -4
- package/dist/types/client.d.ts +389 -455
- package/dist/types/index.d.ts +2 -2
- package/dist/types/worker/sodium.d.ts +1 -1
- package/package.json +2 -2
- package/dist/lib/client/convert/data.js +0 -29
- package/dist/types/client/convert/data.d.ts +0 -4
- package/dist/types/client/types/data.d.ts +0 -6
- /package/dist/lib/client/types/{data.js → file.js} +0 -0
- /package/dist/lib/crypto/{data.js → file.js} +0 -0
- /package/dist/types/crypto/{data.d.ts → file.d.ts} +0 -0
package/dist/types/client.d.ts
CHANGED
|
@@ -251,68 +251,52 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
251
251
|
mail: {
|
|
252
252
|
received: {
|
|
253
253
|
count: bigint;
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
254
|
+
fileSize: bigint;
|
|
255
|
+
maxFileSize: bigint | null;
|
|
256
|
+
fileCount: bigint;
|
|
257
257
|
maxCount: bigint | null;
|
|
258
|
-
|
|
258
|
+
maxFileCount: bigint | null;
|
|
259
259
|
};
|
|
260
260
|
sent: {
|
|
261
261
|
count: bigint;
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
262
|
+
fileSize: bigint;
|
|
263
|
+
maxFileSize: bigint | null;
|
|
264
|
+
fileCount: bigint;
|
|
265
265
|
maxCount: bigint | null;
|
|
266
|
-
|
|
266
|
+
maxFileCount: bigint | null;
|
|
267
267
|
};
|
|
268
268
|
};
|
|
269
269
|
cloud: {
|
|
270
270
|
count: bigint;
|
|
271
|
-
uploadCount: bigint;
|
|
272
|
-
downloadCount: bigint;
|
|
273
271
|
size: bigint;
|
|
274
|
-
uploadBandwidth: bigint;
|
|
275
|
-
downloadBandwidth: bigint;
|
|
276
272
|
maxCount: bigint | null;
|
|
277
273
|
maxSize: bigint | null;
|
|
278
|
-
maxDownloadBandwidth: bigint | null;
|
|
279
|
-
maxUploadBandwidth: bigint | null;
|
|
280
|
-
maxDownloadCount: bigint | null;
|
|
281
|
-
maxUploadCount: bigint | null;
|
|
282
274
|
};
|
|
283
275
|
};
|
|
284
276
|
_output_out: {
|
|
285
277
|
mail: {
|
|
286
278
|
received: {
|
|
287
279
|
count: bigint;
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
280
|
+
fileSize: bigint;
|
|
281
|
+
maxFileSize: bigint | null;
|
|
282
|
+
fileCount: bigint;
|
|
291
283
|
maxCount: bigint | null;
|
|
292
|
-
|
|
284
|
+
maxFileCount: bigint | null;
|
|
293
285
|
};
|
|
294
286
|
sent: {
|
|
295
287
|
count: bigint;
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
288
|
+
fileSize: bigint;
|
|
289
|
+
maxFileSize: bigint | null;
|
|
290
|
+
fileCount: bigint;
|
|
299
291
|
maxCount: bigint | null;
|
|
300
|
-
|
|
292
|
+
maxFileCount: bigint | null;
|
|
301
293
|
};
|
|
302
294
|
};
|
|
303
295
|
cloud: {
|
|
304
296
|
count: bigint;
|
|
305
|
-
uploadCount: bigint;
|
|
306
|
-
downloadCount: bigint;
|
|
307
297
|
size: bigint;
|
|
308
|
-
uploadBandwidth: bigint;
|
|
309
|
-
downloadBandwidth: bigint;
|
|
310
298
|
maxCount: bigint | null;
|
|
311
299
|
maxSize: bigint | null;
|
|
312
|
-
maxDownloadBandwidth: bigint | null;
|
|
313
|
-
maxUploadBandwidth: bigint | null;
|
|
314
|
-
maxDownloadCount: bigint | null;
|
|
315
|
-
maxUploadCount: bigint | null;
|
|
316
300
|
};
|
|
317
301
|
};
|
|
318
302
|
}, unknown>>;
|
|
@@ -474,10 +458,10 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
474
458
|
usersBase: bigint | null;
|
|
475
459
|
usersUnit: bigint | null;
|
|
476
460
|
usersPrice: number | null;
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
461
|
+
perFileSize: bigint | null;
|
|
462
|
+
perFileSizeBase: bigint | null;
|
|
463
|
+
perFileSizeUnit: bigint | null;
|
|
464
|
+
perFileSizePrice: number | null;
|
|
481
465
|
bandwidth: bigint | null;
|
|
482
466
|
bandwidthBase: bigint | null;
|
|
483
467
|
bandwidthUnit: bigint | null;
|
|
@@ -497,10 +481,10 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
497
481
|
usersBase: bigint | null;
|
|
498
482
|
usersUnit: bigint | null;
|
|
499
483
|
usersPrice: number | null;
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
484
|
+
perFileSize: bigint | null;
|
|
485
|
+
perFileSizeBase: bigint | null;
|
|
486
|
+
perFileSizeUnit: bigint | null;
|
|
487
|
+
perFileSizePrice: number | null;
|
|
504
488
|
bandwidth: bigint | null;
|
|
505
489
|
bandwidthBase: bigint | null;
|
|
506
490
|
bandwidthUnit: bigint | null;
|
|
@@ -701,9 +685,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
701
685
|
usersBase: bigint | null;
|
|
702
686
|
usersUnit: bigint | null;
|
|
703
687
|
usersPrice: number | null;
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
688
|
+
perFileSizeBase: bigint | null;
|
|
689
|
+
perFileSizeUnit: bigint | null;
|
|
690
|
+
perFileSizePrice: number | null;
|
|
707
691
|
bandwidthBase: bigint | null;
|
|
708
692
|
bandwidthUnit: bigint | null;
|
|
709
693
|
bandwidthPrice: number | null;
|
|
@@ -712,7 +696,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
712
696
|
totalStorageSizePrice: number | null;
|
|
713
697
|
devsMax: bigint | null;
|
|
714
698
|
usersMax: bigint | null;
|
|
715
|
-
|
|
699
|
+
perFileSizeMax: bigint | null;
|
|
716
700
|
bandwidthMax: bigint | null;
|
|
717
701
|
totalStorageSizeMax: bigint | null;
|
|
718
702
|
};
|
|
@@ -733,9 +717,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
733
717
|
usersBase: bigint | null;
|
|
734
718
|
usersUnit: bigint | null;
|
|
735
719
|
usersPrice: number | null;
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
720
|
+
perFileSizeBase: bigint | null;
|
|
721
|
+
perFileSizeUnit: bigint | null;
|
|
722
|
+
perFileSizePrice: number | null;
|
|
739
723
|
bandwidthBase: bigint | null;
|
|
740
724
|
bandwidthUnit: bigint | null;
|
|
741
725
|
bandwidthPrice: number | null;
|
|
@@ -744,7 +728,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
744
728
|
totalStorageSizePrice: number | null;
|
|
745
729
|
devsMax: bigint | null;
|
|
746
730
|
usersMax: bigint | null;
|
|
747
|
-
|
|
731
|
+
perFileSizeMax: bigint | null;
|
|
748
732
|
bandwidthMax: bigint | null;
|
|
749
733
|
totalStorageSizeMax: bigint | null;
|
|
750
734
|
};
|
|
@@ -804,14 +788,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
804
788
|
_output_in: {
|
|
805
789
|
id: string;
|
|
806
790
|
cloudNodeDaysForDelete: number;
|
|
807
|
-
|
|
808
|
-
|
|
791
|
+
historyMaxFileCount: number;
|
|
792
|
+
historyFileDaysForDelete: number | null;
|
|
809
793
|
};
|
|
810
794
|
_output_out: {
|
|
811
795
|
id: string;
|
|
812
796
|
cloudNodeDaysForDelete: number;
|
|
813
|
-
|
|
814
|
-
|
|
797
|
+
historyMaxFileCount: number;
|
|
798
|
+
historyFileDaysForDelete: number | null;
|
|
815
799
|
};
|
|
816
800
|
}, unknown>>;
|
|
817
801
|
};
|
|
@@ -937,25 +921,25 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
937
921
|
};
|
|
938
922
|
_input_in: {
|
|
939
923
|
cloudNodeDaysForDelete?: number | null | undefined;
|
|
940
|
-
|
|
941
|
-
|
|
924
|
+
historyMaxFileCount?: number | null | undefined;
|
|
925
|
+
historyFileDaysForDelete?: number | null | undefined;
|
|
942
926
|
};
|
|
943
927
|
_input_out: {
|
|
944
928
|
cloudNodeDaysForDelete?: number | null | undefined;
|
|
945
|
-
|
|
946
|
-
|
|
929
|
+
historyMaxFileCount?: number | null | undefined;
|
|
930
|
+
historyFileDaysForDelete?: number | null | undefined;
|
|
947
931
|
};
|
|
948
932
|
_output_in: {
|
|
949
933
|
id: string;
|
|
950
934
|
cloudNodeDaysForDelete: number;
|
|
951
|
-
|
|
952
|
-
|
|
935
|
+
historyMaxFileCount: number;
|
|
936
|
+
historyFileDaysForDelete: number | null;
|
|
953
937
|
};
|
|
954
938
|
_output_out: {
|
|
955
939
|
id: string;
|
|
956
940
|
cloudNodeDaysForDelete: number;
|
|
957
|
-
|
|
958
|
-
|
|
941
|
+
historyMaxFileCount: number;
|
|
942
|
+
historyFileDaysForDelete: number | null;
|
|
959
943
|
};
|
|
960
944
|
}, unknown>>;
|
|
961
945
|
};
|
|
@@ -2769,7 +2753,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2769
2753
|
};
|
|
2770
2754
|
};
|
|
2771
2755
|
cloud: {
|
|
2772
|
-
|
|
2756
|
+
addFileToHistory: {
|
|
2773
2757
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
2774
2758
|
_config: import("@trpc/server").RootConfig<{
|
|
2775
2759
|
ctx: {
|
|
@@ -2816,11 +2800,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2816
2800
|
ls: TranslationFunctions;
|
|
2817
2801
|
};
|
|
2818
2802
|
_input_in: {
|
|
2819
|
-
|
|
2803
|
+
fileId: string;
|
|
2820
2804
|
nodeId: string;
|
|
2821
2805
|
};
|
|
2822
2806
|
_input_out: {
|
|
2823
|
-
|
|
2807
|
+
fileId: string;
|
|
2824
2808
|
nodeId: string;
|
|
2825
2809
|
};
|
|
2826
2810
|
_output_in: {
|
|
@@ -2832,7 +2816,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2832
2816
|
type: "FILE" | "FOLDER";
|
|
2833
2817
|
parentId: string | null;
|
|
2834
2818
|
isFavorite: boolean;
|
|
2835
|
-
|
|
2819
|
+
currentFileId: string | null;
|
|
2836
2820
|
} & {
|
|
2837
2821
|
users: [{
|
|
2838
2822
|
id: string;
|
|
@@ -2868,9 +2852,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2868
2852
|
storageType: "s3" | "lite";
|
|
2869
2853
|
sizeBefore: bigint;
|
|
2870
2854
|
md5Encrypted: string;
|
|
2871
|
-
userAppUserId: string;
|
|
2872
|
-
userAppAppId: string;
|
|
2873
|
-
validatedAt: Date | null;
|
|
2874
2855
|
access: {
|
|
2875
2856
|
key: string;
|
|
2876
2857
|
sharedByPubKey: string;
|
|
@@ -2884,9 +2865,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2884
2865
|
storageType: "s3" | "lite";
|
|
2885
2866
|
sizeBefore: bigint;
|
|
2886
2867
|
md5Encrypted: string;
|
|
2887
|
-
userAppUserId: string;
|
|
2888
|
-
userAppAppId: string;
|
|
2889
|
-
validatedAt: Date | null;
|
|
2890
2868
|
access: {
|
|
2891
2869
|
key: string;
|
|
2892
2870
|
sharedByPubKey: string;
|
|
@@ -2901,7 +2879,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2901
2879
|
type: "FILE" | "FOLDER";
|
|
2902
2880
|
parentId: string | null;
|
|
2903
2881
|
isFavorite: boolean;
|
|
2904
|
-
|
|
2882
|
+
currentFileId: string | null;
|
|
2905
2883
|
} & {
|
|
2906
2884
|
users: [{
|
|
2907
2885
|
id: string;
|
|
@@ -2933,7 +2911,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2933
2911
|
type: "FILE" | "FOLDER";
|
|
2934
2912
|
parentId: string | null;
|
|
2935
2913
|
isFavorite: boolean;
|
|
2936
|
-
|
|
2914
|
+
currentFileId: string | null;
|
|
2937
2915
|
} & {
|
|
2938
2916
|
users: [{
|
|
2939
2917
|
id: string;
|
|
@@ -2977,7 +2955,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2977
2955
|
type: "FILE" | "FOLDER";
|
|
2978
2956
|
parentId: string | null;
|
|
2979
2957
|
isFavorite: boolean;
|
|
2980
|
-
|
|
2958
|
+
currentFileId: string | null;
|
|
2981
2959
|
} & {
|
|
2982
2960
|
users: [{
|
|
2983
2961
|
id: string;
|
|
@@ -3013,9 +2991,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3013
2991
|
storageType: "s3" | "lite";
|
|
3014
2992
|
sizeBefore: bigint;
|
|
3015
2993
|
md5Encrypted: string;
|
|
3016
|
-
userAppUserId: string;
|
|
3017
|
-
userAppAppId: string;
|
|
3018
|
-
validatedAt: Date | null;
|
|
3019
2994
|
access: {
|
|
3020
2995
|
key: string;
|
|
3021
2996
|
sharedByPubKey: string;
|
|
@@ -3029,9 +3004,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3029
3004
|
storageType: "s3" | "lite";
|
|
3030
3005
|
sizeBefore: bigint;
|
|
3031
3006
|
md5Encrypted: string;
|
|
3032
|
-
userAppUserId: string;
|
|
3033
|
-
userAppAppId: string;
|
|
3034
|
-
validatedAt: Date | null;
|
|
3035
3007
|
access: {
|
|
3036
3008
|
key: string;
|
|
3037
3009
|
sharedByPubKey: string;
|
|
@@ -3046,7 +3018,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3046
3018
|
type: "FILE" | "FOLDER";
|
|
3047
3019
|
parentId: string | null;
|
|
3048
3020
|
isFavorite: boolean;
|
|
3049
|
-
|
|
3021
|
+
currentFileId: string | null;
|
|
3050
3022
|
} & {
|
|
3051
3023
|
users: [{
|
|
3052
3024
|
id: string;
|
|
@@ -3078,7 +3050,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3078
3050
|
type: "FILE" | "FOLDER";
|
|
3079
3051
|
parentId: string | null;
|
|
3080
3052
|
isFavorite: boolean;
|
|
3081
|
-
|
|
3053
|
+
currentFileId: string | null;
|
|
3082
3054
|
} & {
|
|
3083
3055
|
users: [{
|
|
3084
3056
|
id: string;
|
|
@@ -3115,7 +3087,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3115
3087
|
};
|
|
3116
3088
|
}, unknown>>;
|
|
3117
3089
|
};
|
|
3118
|
-
|
|
3090
|
+
deleteFile: {
|
|
3119
3091
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
3120
3092
|
_config: import("@trpc/server").RootConfig<{
|
|
3121
3093
|
ctx: {
|
|
@@ -3162,11 +3134,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3162
3134
|
ls: TranslationFunctions;
|
|
3163
3135
|
};
|
|
3164
3136
|
_input_in: {
|
|
3165
|
-
|
|
3137
|
+
fileId: string;
|
|
3166
3138
|
nodeId: string;
|
|
3167
3139
|
};
|
|
3168
3140
|
_input_out: {
|
|
3169
|
-
|
|
3141
|
+
fileId: string;
|
|
3170
3142
|
nodeId: string;
|
|
3171
3143
|
};
|
|
3172
3144
|
_output_in: {
|
|
@@ -3177,7 +3149,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3177
3149
|
};
|
|
3178
3150
|
}, unknown>>;
|
|
3179
3151
|
};
|
|
3180
|
-
|
|
3152
|
+
fileById: {
|
|
3181
3153
|
query: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"query", {
|
|
3182
3154
|
_config: import("@trpc/server").RootConfig<{
|
|
3183
3155
|
ctx: {
|
|
@@ -3237,9 +3209,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3237
3209
|
storageType: "s3" | "lite";
|
|
3238
3210
|
sizeBefore: bigint;
|
|
3239
3211
|
md5Encrypted: string;
|
|
3240
|
-
userAppUserId: string;
|
|
3241
|
-
userAppAppId: string;
|
|
3242
|
-
validatedAt: Date | null;
|
|
3243
3212
|
access: {
|
|
3244
3213
|
key: string;
|
|
3245
3214
|
sharedByPubKey: string;
|
|
@@ -3253,9 +3222,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3253
3222
|
storageType: "s3" | "lite";
|
|
3254
3223
|
sizeBefore: bigint;
|
|
3255
3224
|
md5Encrypted: string;
|
|
3256
|
-
userAppUserId: string;
|
|
3257
|
-
userAppAppId: string;
|
|
3258
|
-
validatedAt: Date | null;
|
|
3259
3225
|
access: {
|
|
3260
3226
|
key: string;
|
|
3261
3227
|
sharedByPubKey: string;
|
|
@@ -3263,7 +3229,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3263
3229
|
};
|
|
3264
3230
|
}, unknown>>;
|
|
3265
3231
|
};
|
|
3266
|
-
|
|
3232
|
+
fileContentById: {
|
|
3267
3233
|
query: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"query", {
|
|
3268
3234
|
_config: import("@trpc/server").RootConfig<{
|
|
3269
3235
|
ctx: {
|
|
@@ -3417,7 +3383,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3417
3383
|
};
|
|
3418
3384
|
}, unknown>>;
|
|
3419
3385
|
};
|
|
3420
|
-
|
|
3386
|
+
fileContentByIds: {
|
|
3421
3387
|
query: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"query", {
|
|
3422
3388
|
_config: import("@trpc/server").RootConfig<{
|
|
3423
3389
|
ctx: {
|
|
@@ -3571,7 +3537,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3571
3537
|
})[];
|
|
3572
3538
|
}, unknown>>;
|
|
3573
3539
|
};
|
|
3574
|
-
|
|
3540
|
+
fileSharedWithMe: {
|
|
3575
3541
|
query: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"query", {
|
|
3576
3542
|
_config: import("@trpc/server").RootConfig<{
|
|
3577
3543
|
ctx: {
|
|
@@ -3675,15 +3641,15 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3675
3641
|
};
|
|
3676
3642
|
_input_in: {
|
|
3677
3643
|
key: string;
|
|
3678
|
-
|
|
3679
|
-
|
|
3644
|
+
fileId: string;
|
|
3645
|
+
filename: string;
|
|
3680
3646
|
nodeId: string | null;
|
|
3681
3647
|
nameKey: string;
|
|
3682
3648
|
};
|
|
3683
3649
|
_input_out: {
|
|
3684
3650
|
key: string;
|
|
3685
|
-
|
|
3686
|
-
|
|
3651
|
+
fileId: string;
|
|
3652
|
+
filename: string;
|
|
3687
3653
|
nodeId: string | null;
|
|
3688
3654
|
nameKey: string;
|
|
3689
3655
|
};
|
|
@@ -3696,7 +3662,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3696
3662
|
type: "FILE" | "FOLDER";
|
|
3697
3663
|
parentId: string | null;
|
|
3698
3664
|
isFavorite: boolean;
|
|
3699
|
-
|
|
3665
|
+
currentFileId: string | null;
|
|
3700
3666
|
} & {
|
|
3701
3667
|
users: [{
|
|
3702
3668
|
id: string;
|
|
@@ -3732,9 +3698,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3732
3698
|
storageType: "s3" | "lite";
|
|
3733
3699
|
sizeBefore: bigint;
|
|
3734
3700
|
md5Encrypted: string;
|
|
3735
|
-
userAppUserId: string;
|
|
3736
|
-
userAppAppId: string;
|
|
3737
|
-
validatedAt: Date | null;
|
|
3738
3701
|
access: {
|
|
3739
3702
|
key: string;
|
|
3740
3703
|
sharedByPubKey: string;
|
|
@@ -3748,9 +3711,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3748
3711
|
storageType: "s3" | "lite";
|
|
3749
3712
|
sizeBefore: bigint;
|
|
3750
3713
|
md5Encrypted: string;
|
|
3751
|
-
userAppUserId: string;
|
|
3752
|
-
userAppAppId: string;
|
|
3753
|
-
validatedAt: Date | null;
|
|
3754
3714
|
access: {
|
|
3755
3715
|
key: string;
|
|
3756
3716
|
sharedByPubKey: string;
|
|
@@ -3765,7 +3725,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3765
3725
|
type: "FILE" | "FOLDER";
|
|
3766
3726
|
parentId: string | null;
|
|
3767
3727
|
isFavorite: boolean;
|
|
3768
|
-
|
|
3728
|
+
currentFileId: string | null;
|
|
3769
3729
|
} & {
|
|
3770
3730
|
users: [{
|
|
3771
3731
|
id: string;
|
|
@@ -3797,7 +3757,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3797
3757
|
type: "FILE" | "FOLDER";
|
|
3798
3758
|
parentId: string | null;
|
|
3799
3759
|
isFavorite: boolean;
|
|
3800
|
-
|
|
3760
|
+
currentFileId: string | null;
|
|
3801
3761
|
} & {
|
|
3802
3762
|
users: [{
|
|
3803
3763
|
id: string;
|
|
@@ -3841,7 +3801,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3841
3801
|
type: "FILE" | "FOLDER";
|
|
3842
3802
|
parentId: string | null;
|
|
3843
3803
|
isFavorite: boolean;
|
|
3844
|
-
|
|
3804
|
+
currentFileId: string | null;
|
|
3845
3805
|
} & {
|
|
3846
3806
|
users: [{
|
|
3847
3807
|
id: string;
|
|
@@ -3877,9 +3837,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3877
3837
|
storageType: "s3" | "lite";
|
|
3878
3838
|
sizeBefore: bigint;
|
|
3879
3839
|
md5Encrypted: string;
|
|
3880
|
-
userAppUserId: string;
|
|
3881
|
-
userAppAppId: string;
|
|
3882
|
-
validatedAt: Date | null;
|
|
3883
3840
|
access: {
|
|
3884
3841
|
key: string;
|
|
3885
3842
|
sharedByPubKey: string;
|
|
@@ -3893,9 +3850,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3893
3850
|
storageType: "s3" | "lite";
|
|
3894
3851
|
sizeBefore: bigint;
|
|
3895
3852
|
md5Encrypted: string;
|
|
3896
|
-
userAppUserId: string;
|
|
3897
|
-
userAppAppId: string;
|
|
3898
|
-
validatedAt: Date | null;
|
|
3899
3853
|
access: {
|
|
3900
3854
|
key: string;
|
|
3901
3855
|
sharedByPubKey: string;
|
|
@@ -3910,7 +3864,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3910
3864
|
type: "FILE" | "FOLDER";
|
|
3911
3865
|
parentId: string | null;
|
|
3912
3866
|
isFavorite: boolean;
|
|
3913
|
-
|
|
3867
|
+
currentFileId: string | null;
|
|
3914
3868
|
} & {
|
|
3915
3869
|
users: [{
|
|
3916
3870
|
id: string;
|
|
@@ -3942,7 +3896,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3942
3896
|
type: "FILE" | "FOLDER";
|
|
3943
3897
|
parentId: string | null;
|
|
3944
3898
|
isFavorite: boolean;
|
|
3945
|
-
|
|
3899
|
+
currentFileId: string | null;
|
|
3946
3900
|
} & {
|
|
3947
3901
|
users: [{
|
|
3948
3902
|
id: string;
|
|
@@ -4093,7 +4047,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4093
4047
|
updatedAt: Date;
|
|
4094
4048
|
history: {
|
|
4095
4049
|
createdAt: Date;
|
|
4096
|
-
|
|
4050
|
+
fileId: string;
|
|
4097
4051
|
size: bigint;
|
|
4098
4052
|
storageType: "s3" | "lite";
|
|
4099
4053
|
}[];
|
|
@@ -4125,7 +4079,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4125
4079
|
updatedAt: Date;
|
|
4126
4080
|
history: {
|
|
4127
4081
|
createdAt: Date;
|
|
4128
|
-
|
|
4082
|
+
fileId: string;
|
|
4129
4083
|
size: bigint;
|
|
4130
4084
|
storageType: "s3" | "lite";
|
|
4131
4085
|
}[];
|
|
@@ -4145,7 +4099,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4145
4099
|
};
|
|
4146
4100
|
}, unknown>>;
|
|
4147
4101
|
};
|
|
4148
|
-
|
|
4102
|
+
shareFileInHistory: {
|
|
4149
4103
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4150
4104
|
_config: import("@trpc/server").RootConfig<{
|
|
4151
4105
|
ctx: {
|
|
@@ -4196,7 +4150,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4196
4150
|
id: string;
|
|
4197
4151
|
key: string;
|
|
4198
4152
|
}[];
|
|
4199
|
-
|
|
4153
|
+
fileId: string;
|
|
4200
4154
|
nodeId: string;
|
|
4201
4155
|
};
|
|
4202
4156
|
_input_out: {
|
|
@@ -4204,7 +4158,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4204
4158
|
id: string;
|
|
4205
4159
|
key: string;
|
|
4206
4160
|
}[];
|
|
4207
|
-
|
|
4161
|
+
fileId: string;
|
|
4208
4162
|
nodeId: string;
|
|
4209
4163
|
};
|
|
4210
4164
|
_output_in: {
|
|
@@ -4215,7 +4169,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4215
4169
|
};
|
|
4216
4170
|
}, unknown>>;
|
|
4217
4171
|
};
|
|
4218
|
-
|
|
4172
|
+
uploadFileEnd: {
|
|
4219
4173
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4220
4174
|
_config: import("@trpc/server").RootConfig<{
|
|
4221
4175
|
ctx: {
|
|
@@ -4262,10 +4216,10 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4262
4216
|
ls: TranslationFunctions;
|
|
4263
4217
|
};
|
|
4264
4218
|
_input_in: {
|
|
4265
|
-
|
|
4219
|
+
fileId: string;
|
|
4266
4220
|
};
|
|
4267
4221
|
_input_out: {
|
|
4268
|
-
|
|
4222
|
+
fileId: string;
|
|
4269
4223
|
};
|
|
4270
4224
|
_output_in: {
|
|
4271
4225
|
isUploadEnded: boolean;
|
|
@@ -4275,7 +4229,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4275
4229
|
};
|
|
4276
4230
|
}, unknown>>;
|
|
4277
4231
|
};
|
|
4278
|
-
|
|
4232
|
+
uploadFilePartEnd: {
|
|
4279
4233
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4280
4234
|
_config: import("@trpc/server").RootConfig<{
|
|
4281
4235
|
ctx: {
|
|
@@ -4322,12 +4276,12 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4322
4276
|
ls: TranslationFunctions;
|
|
4323
4277
|
};
|
|
4324
4278
|
_input_in: {
|
|
4325
|
-
|
|
4279
|
+
fileId: string;
|
|
4326
4280
|
md5: string;
|
|
4327
4281
|
order: number;
|
|
4328
4282
|
};
|
|
4329
4283
|
_input_out: {
|
|
4330
|
-
|
|
4284
|
+
fileId: string;
|
|
4331
4285
|
md5: string;
|
|
4332
4286
|
order: number;
|
|
4333
4287
|
};
|
|
@@ -4339,7 +4293,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4339
4293
|
};
|
|
4340
4294
|
}, unknown>>;
|
|
4341
4295
|
};
|
|
4342
|
-
|
|
4296
|
+
uploadFile: {
|
|
4343
4297
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4344
4298
|
_config: import("@trpc/server").RootConfig<{
|
|
4345
4299
|
ctx: {
|
|
@@ -4386,40 +4340,50 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4386
4340
|
ls: TranslationFunctions;
|
|
4387
4341
|
};
|
|
4388
4342
|
_input_in: {
|
|
4389
|
-
|
|
4343
|
+
fileSize: bigint;
|
|
4390
4344
|
md5: string;
|
|
4391
4345
|
md5Encrypted: string;
|
|
4392
|
-
|
|
4393
|
-
|
|
4346
|
+
fileKey: string;
|
|
4347
|
+
fileSizeBefore: bigint;
|
|
4394
4348
|
};
|
|
4395
4349
|
_input_out: {
|
|
4396
|
-
|
|
4350
|
+
fileSize: bigint;
|
|
4397
4351
|
md5: string;
|
|
4398
4352
|
md5Encrypted: string;
|
|
4399
|
-
|
|
4400
|
-
|
|
4353
|
+
fileKey: string;
|
|
4354
|
+
fileSizeBefore: bigint;
|
|
4401
4355
|
};
|
|
4402
4356
|
_output_in: {
|
|
4403
|
-
|
|
4357
|
+
id: string;
|
|
4358
|
+
keyPair: {
|
|
4359
|
+
pub: string;
|
|
4360
|
+
encPriv: string;
|
|
4361
|
+
};
|
|
4362
|
+
key: string;
|
|
4363
|
+
filePartSize: bigint;
|
|
4404
4364
|
parts: {
|
|
4405
4365
|
fields: Record<string, string>;
|
|
4406
4366
|
url: string;
|
|
4407
4367
|
order: number;
|
|
4408
4368
|
}[];
|
|
4409
|
-
dataPartSize: bigint;
|
|
4410
4369
|
};
|
|
4411
4370
|
_output_out: {
|
|
4412
|
-
|
|
4371
|
+
id: string;
|
|
4372
|
+
keyPair: {
|
|
4373
|
+
pub: string;
|
|
4374
|
+
encPriv: string;
|
|
4375
|
+
};
|
|
4376
|
+
key: string;
|
|
4377
|
+
filePartSize: bigint;
|
|
4413
4378
|
parts: {
|
|
4414
4379
|
fields: Record<string, string>;
|
|
4415
4380
|
url: string;
|
|
4416
4381
|
order: number;
|
|
4417
4382
|
}[];
|
|
4418
|
-
dataPartSize: bigint;
|
|
4419
4383
|
};
|
|
4420
4384
|
}, unknown>>;
|
|
4421
4385
|
};
|
|
4422
|
-
|
|
4386
|
+
uploadLiteFile: {
|
|
4423
4387
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4424
4388
|
_config: import("@trpc/server").RootConfig<{
|
|
4425
4389
|
ctx: {
|
|
@@ -4466,26 +4430,36 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4466
4430
|
ls: TranslationFunctions;
|
|
4467
4431
|
};
|
|
4468
4432
|
_input_in: {
|
|
4469
|
-
|
|
4433
|
+
fileSize: bigint;
|
|
4470
4434
|
md5: string;
|
|
4471
4435
|
content: Buffer;
|
|
4472
4436
|
md5Encrypted: string;
|
|
4473
|
-
|
|
4474
|
-
|
|
4437
|
+
fileKey: string;
|
|
4438
|
+
fileSizeBefore: bigint;
|
|
4475
4439
|
};
|
|
4476
4440
|
_input_out: {
|
|
4477
|
-
|
|
4441
|
+
fileSize: bigint;
|
|
4478
4442
|
md5: string;
|
|
4479
4443
|
content: Buffer;
|
|
4480
4444
|
md5Encrypted: string;
|
|
4481
|
-
|
|
4482
|
-
|
|
4445
|
+
fileKey: string;
|
|
4446
|
+
fileSizeBefore: bigint;
|
|
4483
4447
|
};
|
|
4484
4448
|
_output_in: {
|
|
4485
4449
|
id: string;
|
|
4450
|
+
keyPair: {
|
|
4451
|
+
pub: string;
|
|
4452
|
+
encPriv: string;
|
|
4453
|
+
};
|
|
4454
|
+
key: string;
|
|
4486
4455
|
};
|
|
4487
4456
|
_output_out: {
|
|
4488
4457
|
id: string;
|
|
4458
|
+
keyPair: {
|
|
4459
|
+
pub: string;
|
|
4460
|
+
encPriv: string;
|
|
4461
|
+
};
|
|
4462
|
+
key: string;
|
|
4489
4463
|
};
|
|
4490
4464
|
}, unknown>>;
|
|
4491
4465
|
};
|
|
@@ -4554,7 +4528,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4554
4528
|
type: "FILE" | "FOLDER";
|
|
4555
4529
|
parentId: string | null;
|
|
4556
4530
|
isFavorite: boolean;
|
|
4557
|
-
|
|
4531
|
+
currentFileId: string | null;
|
|
4558
4532
|
} & {
|
|
4559
4533
|
users: [{
|
|
4560
4534
|
id: string;
|
|
@@ -4590,9 +4564,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4590
4564
|
storageType: "s3" | "lite";
|
|
4591
4565
|
sizeBefore: bigint;
|
|
4592
4566
|
md5Encrypted: string;
|
|
4593
|
-
userAppUserId: string;
|
|
4594
|
-
userAppAppId: string;
|
|
4595
|
-
validatedAt: Date | null;
|
|
4596
4567
|
access: {
|
|
4597
4568
|
key: string;
|
|
4598
4569
|
sharedByPubKey: string;
|
|
@@ -4606,9 +4577,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4606
4577
|
storageType: "s3" | "lite";
|
|
4607
4578
|
sizeBefore: bigint;
|
|
4608
4579
|
md5Encrypted: string;
|
|
4609
|
-
userAppUserId: string;
|
|
4610
|
-
userAppAppId: string;
|
|
4611
|
-
validatedAt: Date | null;
|
|
4612
4580
|
access: {
|
|
4613
4581
|
key: string;
|
|
4614
4582
|
sharedByPubKey: string;
|
|
@@ -4623,7 +4591,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4623
4591
|
type: "FILE" | "FOLDER";
|
|
4624
4592
|
parentId: string | null;
|
|
4625
4593
|
isFavorite: boolean;
|
|
4626
|
-
|
|
4594
|
+
currentFileId: string | null;
|
|
4627
4595
|
} & {
|
|
4628
4596
|
users: [{
|
|
4629
4597
|
id: string;
|
|
@@ -4655,7 +4623,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4655
4623
|
type: "FILE" | "FOLDER";
|
|
4656
4624
|
parentId: string | null;
|
|
4657
4625
|
isFavorite: boolean;
|
|
4658
|
-
|
|
4626
|
+
currentFileId: string | null;
|
|
4659
4627
|
} & {
|
|
4660
4628
|
users: [{
|
|
4661
4629
|
id: string;
|
|
@@ -4699,7 +4667,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4699
4667
|
type: "FILE" | "FOLDER";
|
|
4700
4668
|
parentId: string | null;
|
|
4701
4669
|
isFavorite: boolean;
|
|
4702
|
-
|
|
4670
|
+
currentFileId: string | null;
|
|
4703
4671
|
} & {
|
|
4704
4672
|
users: [{
|
|
4705
4673
|
id: string;
|
|
@@ -4735,9 +4703,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4735
4703
|
storageType: "s3" | "lite";
|
|
4736
4704
|
sizeBefore: bigint;
|
|
4737
4705
|
md5Encrypted: string;
|
|
4738
|
-
userAppUserId: string;
|
|
4739
|
-
userAppAppId: string;
|
|
4740
|
-
validatedAt: Date | null;
|
|
4741
4706
|
access: {
|
|
4742
4707
|
key: string;
|
|
4743
4708
|
sharedByPubKey: string;
|
|
@@ -4751,9 +4716,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4751
4716
|
storageType: "s3" | "lite";
|
|
4752
4717
|
sizeBefore: bigint;
|
|
4753
4718
|
md5Encrypted: string;
|
|
4754
|
-
userAppUserId: string;
|
|
4755
|
-
userAppAppId: string;
|
|
4756
|
-
validatedAt: Date | null;
|
|
4757
4719
|
access: {
|
|
4758
4720
|
key: string;
|
|
4759
4721
|
sharedByPubKey: string;
|
|
@@ -4768,7 +4730,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4768
4730
|
type: "FILE" | "FOLDER";
|
|
4769
4731
|
parentId: string | null;
|
|
4770
4732
|
isFavorite: boolean;
|
|
4771
|
-
|
|
4733
|
+
currentFileId: string | null;
|
|
4772
4734
|
} & {
|
|
4773
4735
|
users: [{
|
|
4774
4736
|
id: string;
|
|
@@ -4800,7 +4762,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4800
4762
|
type: "FILE" | "FOLDER";
|
|
4801
4763
|
parentId: string | null;
|
|
4802
4764
|
isFavorite: boolean;
|
|
4803
|
-
|
|
4765
|
+
currentFileId: string | null;
|
|
4804
4766
|
} & {
|
|
4805
4767
|
users: [{
|
|
4806
4768
|
id: string;
|
|
@@ -5404,7 +5366,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5404
5366
|
type: "FILE" | "FOLDER";
|
|
5405
5367
|
parentId: string | null;
|
|
5406
5368
|
isFavorite: boolean;
|
|
5407
|
-
|
|
5369
|
+
currentFileId: string | null;
|
|
5408
5370
|
} & {
|
|
5409
5371
|
users: [{
|
|
5410
5372
|
id: string;
|
|
@@ -5441,7 +5403,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5441
5403
|
type: "FILE" | "FOLDER";
|
|
5442
5404
|
parentId: string | null;
|
|
5443
5405
|
isFavorite: boolean;
|
|
5444
|
-
|
|
5406
|
+
currentFileId: string | null;
|
|
5445
5407
|
} & {
|
|
5446
5408
|
users: [{
|
|
5447
5409
|
id: string;
|
|
@@ -5534,7 +5496,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5534
5496
|
type: "FILE" | "FOLDER";
|
|
5535
5497
|
parentId: string | null;
|
|
5536
5498
|
isFavorite: boolean;
|
|
5537
|
-
|
|
5499
|
+
currentFileId: string | null;
|
|
5538
5500
|
} & {
|
|
5539
5501
|
users: [{
|
|
5540
5502
|
id: string;
|
|
@@ -5570,9 +5532,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5570
5532
|
storageType: "s3" | "lite";
|
|
5571
5533
|
sizeBefore: bigint;
|
|
5572
5534
|
md5Encrypted: string;
|
|
5573
|
-
userAppUserId: string;
|
|
5574
|
-
userAppAppId: string;
|
|
5575
|
-
validatedAt: Date | null;
|
|
5576
5535
|
access: {
|
|
5577
5536
|
key: string;
|
|
5578
5537
|
sharedByPubKey: string;
|
|
@@ -5586,9 +5545,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5586
5545
|
storageType: "s3" | "lite";
|
|
5587
5546
|
sizeBefore: bigint;
|
|
5588
5547
|
md5Encrypted: string;
|
|
5589
|
-
userAppUserId: string;
|
|
5590
|
-
userAppAppId: string;
|
|
5591
|
-
validatedAt: Date | null;
|
|
5592
5548
|
access: {
|
|
5593
5549
|
key: string;
|
|
5594
5550
|
sharedByPubKey: string;
|
|
@@ -5603,7 +5559,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5603
5559
|
type: "FILE" | "FOLDER";
|
|
5604
5560
|
parentId: string | null;
|
|
5605
5561
|
isFavorite: boolean;
|
|
5606
|
-
|
|
5562
|
+
currentFileId: string | null;
|
|
5607
5563
|
} & {
|
|
5608
5564
|
users: [{
|
|
5609
5565
|
id: string;
|
|
@@ -5635,7 +5591,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5635
5591
|
type: "FILE" | "FOLDER";
|
|
5636
5592
|
parentId: string | null;
|
|
5637
5593
|
isFavorite: boolean;
|
|
5638
|
-
|
|
5594
|
+
currentFileId: string | null;
|
|
5639
5595
|
} & {
|
|
5640
5596
|
users: [{
|
|
5641
5597
|
id: string;
|
|
@@ -5679,7 +5635,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5679
5635
|
type: "FILE" | "FOLDER";
|
|
5680
5636
|
parentId: string | null;
|
|
5681
5637
|
isFavorite: boolean;
|
|
5682
|
-
|
|
5638
|
+
currentFileId: string | null;
|
|
5683
5639
|
} & {
|
|
5684
5640
|
users: [{
|
|
5685
5641
|
id: string;
|
|
@@ -5715,9 +5671,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5715
5671
|
storageType: "s3" | "lite";
|
|
5716
5672
|
sizeBefore: bigint;
|
|
5717
5673
|
md5Encrypted: string;
|
|
5718
|
-
userAppUserId: string;
|
|
5719
|
-
userAppAppId: string;
|
|
5720
|
-
validatedAt: Date | null;
|
|
5721
5674
|
access: {
|
|
5722
5675
|
key: string;
|
|
5723
5676
|
sharedByPubKey: string;
|
|
@@ -5731,9 +5684,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5731
5684
|
storageType: "s3" | "lite";
|
|
5732
5685
|
sizeBefore: bigint;
|
|
5733
5686
|
md5Encrypted: string;
|
|
5734
|
-
userAppUserId: string;
|
|
5735
|
-
userAppAppId: string;
|
|
5736
|
-
validatedAt: Date | null;
|
|
5737
5687
|
access: {
|
|
5738
5688
|
key: string;
|
|
5739
5689
|
sharedByPubKey: string;
|
|
@@ -5748,7 +5698,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5748
5698
|
type: "FILE" | "FOLDER";
|
|
5749
5699
|
parentId: string | null;
|
|
5750
5700
|
isFavorite: boolean;
|
|
5751
|
-
|
|
5701
|
+
currentFileId: string | null;
|
|
5752
5702
|
} & {
|
|
5753
5703
|
users: [{
|
|
5754
5704
|
id: string;
|
|
@@ -5780,7 +5730,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5780
5730
|
type: "FILE" | "FOLDER";
|
|
5781
5731
|
parentId: string | null;
|
|
5782
5732
|
isFavorite: boolean;
|
|
5783
|
-
|
|
5733
|
+
currentFileId: string | null;
|
|
5784
5734
|
} & {
|
|
5785
5735
|
users: [{
|
|
5786
5736
|
id: string;
|
|
@@ -5936,7 +5886,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5936
5886
|
type: "FILE" | "FOLDER";
|
|
5937
5887
|
parentId: string | null;
|
|
5938
5888
|
isFavorite: boolean;
|
|
5939
|
-
|
|
5889
|
+
currentFileId: string | null;
|
|
5940
5890
|
} & {
|
|
5941
5891
|
users: [{
|
|
5942
5892
|
id: string;
|
|
@@ -5968,7 +5918,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5968
5918
|
type: "FILE" | "FOLDER";
|
|
5969
5919
|
parentId: string | null;
|
|
5970
5920
|
isFavorite: boolean;
|
|
5971
|
-
|
|
5921
|
+
currentFileId: string | null;
|
|
5972
5922
|
} & {
|
|
5973
5923
|
users: [{
|
|
5974
5924
|
id: string;
|
|
@@ -6054,7 +6004,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6054
6004
|
type: "FILE" | "FOLDER";
|
|
6055
6005
|
parentId: string | null;
|
|
6056
6006
|
isFavorite: boolean;
|
|
6057
|
-
|
|
6007
|
+
currentFileId: string | null;
|
|
6058
6008
|
} & {
|
|
6059
6009
|
users: [{
|
|
6060
6010
|
id: string;
|
|
@@ -6086,7 +6036,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6086
6036
|
type: "FILE" | "FOLDER";
|
|
6087
6037
|
parentId: string | null;
|
|
6088
6038
|
isFavorite: boolean;
|
|
6089
|
-
|
|
6039
|
+
currentFileId: string | null;
|
|
6090
6040
|
} & {
|
|
6091
6041
|
users: [{
|
|
6092
6042
|
id: string;
|
|
@@ -6168,7 +6118,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6168
6118
|
type: "FILE" | "FOLDER";
|
|
6169
6119
|
parentId: string | null;
|
|
6170
6120
|
isFavorite: boolean;
|
|
6171
|
-
|
|
6121
|
+
currentFileId: string | null;
|
|
6172
6122
|
} & {
|
|
6173
6123
|
users: [{
|
|
6174
6124
|
id: string;
|
|
@@ -6200,7 +6150,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6200
6150
|
type: "FILE" | "FOLDER";
|
|
6201
6151
|
parentId: string | null;
|
|
6202
6152
|
isFavorite: boolean;
|
|
6203
|
-
|
|
6153
|
+
currentFileId: string | null;
|
|
6204
6154
|
} & {
|
|
6205
6155
|
users: [{
|
|
6206
6156
|
id: string;
|
|
@@ -6334,24 +6284,24 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6334
6284
|
_input_in: {
|
|
6335
6285
|
userId: string;
|
|
6336
6286
|
nodes: {
|
|
6337
|
-
|
|
6287
|
+
id: string;
|
|
6288
|
+
nameKey: string | null;
|
|
6289
|
+
files: {
|
|
6338
6290
|
id: string;
|
|
6339
6291
|
key: string;
|
|
6340
6292
|
}[];
|
|
6341
|
-
id: string;
|
|
6342
|
-
nameKey: string | null;
|
|
6343
6293
|
}[];
|
|
6344
6294
|
rights: "admin" | "write" | "read";
|
|
6345
6295
|
};
|
|
6346
6296
|
_input_out: {
|
|
6347
6297
|
userId: string;
|
|
6348
6298
|
nodes: {
|
|
6349
|
-
|
|
6299
|
+
id: string;
|
|
6300
|
+
nameKey: string | null;
|
|
6301
|
+
files: {
|
|
6350
6302
|
id: string;
|
|
6351
6303
|
key: string;
|
|
6352
6304
|
}[];
|
|
6353
|
-
id: string;
|
|
6354
|
-
nameKey: string | null;
|
|
6355
6305
|
}[];
|
|
6356
6306
|
rights: "admin" | "write" | "read";
|
|
6357
6307
|
};
|
|
@@ -6492,7 +6442,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6492
6442
|
type: "FILE" | "FOLDER";
|
|
6493
6443
|
parentId: string | null;
|
|
6494
6444
|
isFavorite: boolean;
|
|
6495
|
-
|
|
6445
|
+
currentFileId: string | null;
|
|
6496
6446
|
} & {
|
|
6497
6447
|
users: [{
|
|
6498
6448
|
id: string;
|
|
@@ -6528,9 +6478,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6528
6478
|
storageType: "s3" | "lite";
|
|
6529
6479
|
sizeBefore: bigint;
|
|
6530
6480
|
md5Encrypted: string;
|
|
6531
|
-
userAppUserId: string;
|
|
6532
|
-
userAppAppId: string;
|
|
6533
|
-
validatedAt: Date | null;
|
|
6534
6481
|
access: {
|
|
6535
6482
|
key: string;
|
|
6536
6483
|
sharedByPubKey: string;
|
|
@@ -6544,9 +6491,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6544
6491
|
storageType: "s3" | "lite";
|
|
6545
6492
|
sizeBefore: bigint;
|
|
6546
6493
|
md5Encrypted: string;
|
|
6547
|
-
userAppUserId: string;
|
|
6548
|
-
userAppAppId: string;
|
|
6549
|
-
validatedAt: Date | null;
|
|
6550
6494
|
access: {
|
|
6551
6495
|
key: string;
|
|
6552
6496
|
sharedByPubKey: string;
|
|
@@ -6561,7 +6505,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6561
6505
|
type: "FILE" | "FOLDER";
|
|
6562
6506
|
parentId: string | null;
|
|
6563
6507
|
isFavorite: boolean;
|
|
6564
|
-
|
|
6508
|
+
currentFileId: string | null;
|
|
6565
6509
|
} & {
|
|
6566
6510
|
users: [{
|
|
6567
6511
|
id: string;
|
|
@@ -6593,7 +6537,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6593
6537
|
type: "FILE" | "FOLDER";
|
|
6594
6538
|
parentId: string | null;
|
|
6595
6539
|
isFavorite: boolean;
|
|
6596
|
-
|
|
6540
|
+
currentFileId: string | null;
|
|
6597
6541
|
} & {
|
|
6598
6542
|
users: [{
|
|
6599
6543
|
id: string;
|
|
@@ -6637,7 +6581,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6637
6581
|
type: "FILE" | "FOLDER";
|
|
6638
6582
|
parentId: string | null;
|
|
6639
6583
|
isFavorite: boolean;
|
|
6640
|
-
|
|
6584
|
+
currentFileId: string | null;
|
|
6641
6585
|
} & {
|
|
6642
6586
|
users: [{
|
|
6643
6587
|
id: string;
|
|
@@ -6673,9 +6617,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6673
6617
|
storageType: "s3" | "lite";
|
|
6674
6618
|
sizeBefore: bigint;
|
|
6675
6619
|
md5Encrypted: string;
|
|
6676
|
-
userAppUserId: string;
|
|
6677
|
-
userAppAppId: string;
|
|
6678
|
-
validatedAt: Date | null;
|
|
6679
6620
|
access: {
|
|
6680
6621
|
key: string;
|
|
6681
6622
|
sharedByPubKey: string;
|
|
@@ -6689,9 +6630,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6689
6630
|
storageType: "s3" | "lite";
|
|
6690
6631
|
sizeBefore: bigint;
|
|
6691
6632
|
md5Encrypted: string;
|
|
6692
|
-
userAppUserId: string;
|
|
6693
|
-
userAppAppId: string;
|
|
6694
|
-
validatedAt: Date | null;
|
|
6695
6633
|
access: {
|
|
6696
6634
|
key: string;
|
|
6697
6635
|
sharedByPubKey: string;
|
|
@@ -6706,7 +6644,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6706
6644
|
type: "FILE" | "FOLDER";
|
|
6707
6645
|
parentId: string | null;
|
|
6708
6646
|
isFavorite: boolean;
|
|
6709
|
-
|
|
6647
|
+
currentFileId: string | null;
|
|
6710
6648
|
} & {
|
|
6711
6649
|
users: [{
|
|
6712
6650
|
id: string;
|
|
@@ -6738,7 +6676,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6738
6676
|
type: "FILE" | "FOLDER";
|
|
6739
6677
|
parentId: string | null;
|
|
6740
6678
|
isFavorite: boolean;
|
|
6741
|
-
|
|
6679
|
+
currentFileId: string | null;
|
|
6742
6680
|
} & {
|
|
6743
6681
|
users: [{
|
|
6744
6682
|
id: string;
|
|
@@ -11355,11 +11293,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11355
11293
|
body: string;
|
|
11356
11294
|
openedAt: Date | null;
|
|
11357
11295
|
} & {
|
|
11358
|
-
data: {
|
|
11359
|
-
dataId: string;
|
|
11360
|
-
dataKey: string;
|
|
11361
|
-
dataName: string;
|
|
11362
|
-
}[];
|
|
11363
11296
|
mailIntegrity: {
|
|
11364
11297
|
id: string;
|
|
11365
11298
|
replyTo: {
|
|
@@ -11367,9 +11300,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11367
11300
|
} | null;
|
|
11368
11301
|
hashKey: string;
|
|
11369
11302
|
hash: string;
|
|
11370
|
-
temporaryRecipients: {
|
|
11371
|
-
email: string | null;
|
|
11372
|
-
}[];
|
|
11373
11303
|
recipients: {
|
|
11374
11304
|
id: string;
|
|
11375
11305
|
lastname: string;
|
|
@@ -11377,6 +11307,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11377
11307
|
avatar: string | null;
|
|
11378
11308
|
isSearchable: boolean;
|
|
11379
11309
|
}[];
|
|
11310
|
+
temporaryRecipients: {
|
|
11311
|
+
email: string | null;
|
|
11312
|
+
}[];
|
|
11380
11313
|
} | null;
|
|
11381
11314
|
mailIntegrityDraft: {
|
|
11382
11315
|
id: string;
|
|
@@ -11385,9 +11318,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11385
11318
|
} | null;
|
|
11386
11319
|
hashKey: string;
|
|
11387
11320
|
hash: string;
|
|
11388
|
-
temporaryRecipients: {
|
|
11389
|
-
email: string | null;
|
|
11390
|
-
}[];
|
|
11391
11321
|
recipients: {
|
|
11392
11322
|
id: string;
|
|
11393
11323
|
lastname: string;
|
|
@@ -11395,6 +11325,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11395
11325
|
avatar: string | null;
|
|
11396
11326
|
isSearchable: boolean;
|
|
11397
11327
|
}[];
|
|
11328
|
+
temporaryRecipients: {
|
|
11329
|
+
email: string | null;
|
|
11330
|
+
}[];
|
|
11398
11331
|
} | null;
|
|
11399
11332
|
sender: {
|
|
11400
11333
|
id: string;
|
|
@@ -11403,6 +11336,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11403
11336
|
avatar: string | null;
|
|
11404
11337
|
isSearchable: boolean;
|
|
11405
11338
|
};
|
|
11339
|
+
files: {
|
|
11340
|
+
fileId: string;
|
|
11341
|
+
filename: string;
|
|
11342
|
+
fileKey: string;
|
|
11343
|
+
}[];
|
|
11406
11344
|
};
|
|
11407
11345
|
_output_out: {
|
|
11408
11346
|
id: string;
|
|
@@ -11413,11 +11351,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11413
11351
|
body: string;
|
|
11414
11352
|
openedAt: Date | null;
|
|
11415
11353
|
} & {
|
|
11416
|
-
data: {
|
|
11417
|
-
dataId: string;
|
|
11418
|
-
dataKey: string;
|
|
11419
|
-
dataName: string;
|
|
11420
|
-
}[];
|
|
11421
11354
|
mailIntegrity: {
|
|
11422
11355
|
id: string;
|
|
11423
11356
|
replyTo: {
|
|
@@ -11425,9 +11358,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11425
11358
|
} | null;
|
|
11426
11359
|
hashKey: string;
|
|
11427
11360
|
hash: string;
|
|
11428
|
-
temporaryRecipients: {
|
|
11429
|
-
email: string | null;
|
|
11430
|
-
}[];
|
|
11431
11361
|
recipients: {
|
|
11432
11362
|
id: string;
|
|
11433
11363
|
lastname: string;
|
|
@@ -11435,6 +11365,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11435
11365
|
avatar: string | null;
|
|
11436
11366
|
isSearchable: boolean;
|
|
11437
11367
|
}[];
|
|
11368
|
+
temporaryRecipients: {
|
|
11369
|
+
email: string | null;
|
|
11370
|
+
}[];
|
|
11438
11371
|
} | null;
|
|
11439
11372
|
mailIntegrityDraft: {
|
|
11440
11373
|
id: string;
|
|
@@ -11443,9 +11376,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11443
11376
|
} | null;
|
|
11444
11377
|
hashKey: string;
|
|
11445
11378
|
hash: string;
|
|
11446
|
-
temporaryRecipients: {
|
|
11447
|
-
email: string | null;
|
|
11448
|
-
}[];
|
|
11449
11379
|
recipients: {
|
|
11450
11380
|
id: string;
|
|
11451
11381
|
lastname: string;
|
|
@@ -11453,6 +11383,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11453
11383
|
avatar: string | null;
|
|
11454
11384
|
isSearchable: boolean;
|
|
11455
11385
|
}[];
|
|
11386
|
+
temporaryRecipients: {
|
|
11387
|
+
email: string | null;
|
|
11388
|
+
}[];
|
|
11456
11389
|
} | null;
|
|
11457
11390
|
sender: {
|
|
11458
11391
|
id: string;
|
|
@@ -11461,6 +11394,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11461
11394
|
avatar: string | null;
|
|
11462
11395
|
isSearchable: boolean;
|
|
11463
11396
|
};
|
|
11397
|
+
files: {
|
|
11398
|
+
fileId: string;
|
|
11399
|
+
filename: string;
|
|
11400
|
+
fileKey: string;
|
|
11401
|
+
}[];
|
|
11464
11402
|
};
|
|
11465
11403
|
}, unknown>>;
|
|
11466
11404
|
};
|
|
@@ -11547,11 +11485,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11547
11485
|
body: string;
|
|
11548
11486
|
openedAt: Date | null;
|
|
11549
11487
|
} & {
|
|
11550
|
-
data: {
|
|
11551
|
-
dataId: string;
|
|
11552
|
-
dataKey: string;
|
|
11553
|
-
dataName: string;
|
|
11554
|
-
}[];
|
|
11555
11488
|
mailIntegrity: {
|
|
11556
11489
|
id: string;
|
|
11557
11490
|
replyTo: {
|
|
@@ -11559,9 +11492,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11559
11492
|
} | null;
|
|
11560
11493
|
hashKey: string;
|
|
11561
11494
|
hash: string;
|
|
11562
|
-
temporaryRecipients: {
|
|
11563
|
-
email: string | null;
|
|
11564
|
-
}[];
|
|
11565
11495
|
recipients: {
|
|
11566
11496
|
id: string;
|
|
11567
11497
|
lastname: string;
|
|
@@ -11569,6 +11499,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11569
11499
|
avatar: string | null;
|
|
11570
11500
|
isSearchable: boolean;
|
|
11571
11501
|
}[];
|
|
11502
|
+
temporaryRecipients: {
|
|
11503
|
+
email: string | null;
|
|
11504
|
+
}[];
|
|
11572
11505
|
} | null;
|
|
11573
11506
|
mailIntegrityDraft: {
|
|
11574
11507
|
id: string;
|
|
@@ -11577,9 +11510,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11577
11510
|
} | null;
|
|
11578
11511
|
hashKey: string;
|
|
11579
11512
|
hash: string;
|
|
11580
|
-
temporaryRecipients: {
|
|
11581
|
-
email: string | null;
|
|
11582
|
-
}[];
|
|
11583
11513
|
recipients: {
|
|
11584
11514
|
id: string;
|
|
11585
11515
|
lastname: string;
|
|
@@ -11587,6 +11517,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11587
11517
|
avatar: string | null;
|
|
11588
11518
|
isSearchable: boolean;
|
|
11589
11519
|
}[];
|
|
11520
|
+
temporaryRecipients: {
|
|
11521
|
+
email: string | null;
|
|
11522
|
+
}[];
|
|
11590
11523
|
} | null;
|
|
11591
11524
|
sender: {
|
|
11592
11525
|
id: string;
|
|
@@ -11595,6 +11528,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11595
11528
|
avatar: string | null;
|
|
11596
11529
|
isSearchable: boolean;
|
|
11597
11530
|
};
|
|
11531
|
+
files: {
|
|
11532
|
+
fileId: string;
|
|
11533
|
+
filename: string;
|
|
11534
|
+
fileKey: string;
|
|
11535
|
+
}[];
|
|
11598
11536
|
};
|
|
11599
11537
|
_output_out: {
|
|
11600
11538
|
id: string;
|
|
@@ -11605,11 +11543,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11605
11543
|
body: string;
|
|
11606
11544
|
openedAt: Date | null;
|
|
11607
11545
|
} & {
|
|
11608
|
-
data: {
|
|
11609
|
-
dataId: string;
|
|
11610
|
-
dataKey: string;
|
|
11611
|
-
dataName: string;
|
|
11612
|
-
}[];
|
|
11613
11546
|
mailIntegrity: {
|
|
11614
11547
|
id: string;
|
|
11615
11548
|
replyTo: {
|
|
@@ -11617,9 +11550,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11617
11550
|
} | null;
|
|
11618
11551
|
hashKey: string;
|
|
11619
11552
|
hash: string;
|
|
11620
|
-
temporaryRecipients: {
|
|
11621
|
-
email: string | null;
|
|
11622
|
-
}[];
|
|
11623
11553
|
recipients: {
|
|
11624
11554
|
id: string;
|
|
11625
11555
|
lastname: string;
|
|
@@ -11627,6 +11557,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11627
11557
|
avatar: string | null;
|
|
11628
11558
|
isSearchable: boolean;
|
|
11629
11559
|
}[];
|
|
11560
|
+
temporaryRecipients: {
|
|
11561
|
+
email: string | null;
|
|
11562
|
+
}[];
|
|
11630
11563
|
} | null;
|
|
11631
11564
|
mailIntegrityDraft: {
|
|
11632
11565
|
id: string;
|
|
@@ -11635,9 +11568,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11635
11568
|
} | null;
|
|
11636
11569
|
hashKey: string;
|
|
11637
11570
|
hash: string;
|
|
11638
|
-
temporaryRecipients: {
|
|
11639
|
-
email: string | null;
|
|
11640
|
-
}[];
|
|
11641
11571
|
recipients: {
|
|
11642
11572
|
id: string;
|
|
11643
11573
|
lastname: string;
|
|
@@ -11645,6 +11575,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11645
11575
|
avatar: string | null;
|
|
11646
11576
|
isSearchable: boolean;
|
|
11647
11577
|
}[];
|
|
11578
|
+
temporaryRecipients: {
|
|
11579
|
+
email: string | null;
|
|
11580
|
+
}[];
|
|
11648
11581
|
} | null;
|
|
11649
11582
|
sender: {
|
|
11650
11583
|
id: string;
|
|
@@ -11653,6 +11586,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11653
11586
|
avatar: string | null;
|
|
11654
11587
|
isSearchable: boolean;
|
|
11655
11588
|
};
|
|
11589
|
+
files: {
|
|
11590
|
+
fileId: string;
|
|
11591
|
+
filename: string;
|
|
11592
|
+
fileKey: string;
|
|
11593
|
+
}[];
|
|
11656
11594
|
};
|
|
11657
11595
|
}, unknown>>;
|
|
11658
11596
|
};
|
|
@@ -11897,11 +11835,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11897
11835
|
body: string;
|
|
11898
11836
|
openedAt: Date | null;
|
|
11899
11837
|
} & {
|
|
11900
|
-
data: {
|
|
11901
|
-
dataId: string;
|
|
11902
|
-
dataKey: string;
|
|
11903
|
-
dataName: string;
|
|
11904
|
-
}[];
|
|
11905
11838
|
mailIntegrity: {
|
|
11906
11839
|
id: string;
|
|
11907
11840
|
replyTo: {
|
|
@@ -11909,9 +11842,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11909
11842
|
} | null;
|
|
11910
11843
|
hashKey: string;
|
|
11911
11844
|
hash: string;
|
|
11912
|
-
temporaryRecipients: {
|
|
11913
|
-
email: string | null;
|
|
11914
|
-
}[];
|
|
11915
11845
|
recipients: {
|
|
11916
11846
|
id: string;
|
|
11917
11847
|
lastname: string;
|
|
@@ -11919,6 +11849,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11919
11849
|
avatar: string | null;
|
|
11920
11850
|
isSearchable: boolean;
|
|
11921
11851
|
}[];
|
|
11852
|
+
temporaryRecipients: {
|
|
11853
|
+
email: string | null;
|
|
11854
|
+
}[];
|
|
11922
11855
|
} | null;
|
|
11923
11856
|
mailIntegrityDraft: {
|
|
11924
11857
|
id: string;
|
|
@@ -11927,9 +11860,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11927
11860
|
} | null;
|
|
11928
11861
|
hashKey: string;
|
|
11929
11862
|
hash: string;
|
|
11930
|
-
temporaryRecipients: {
|
|
11931
|
-
email: string | null;
|
|
11932
|
-
}[];
|
|
11933
11863
|
recipients: {
|
|
11934
11864
|
id: string;
|
|
11935
11865
|
lastname: string;
|
|
@@ -11937,6 +11867,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11937
11867
|
avatar: string | null;
|
|
11938
11868
|
isSearchable: boolean;
|
|
11939
11869
|
}[];
|
|
11870
|
+
temporaryRecipients: {
|
|
11871
|
+
email: string | null;
|
|
11872
|
+
}[];
|
|
11940
11873
|
} | null;
|
|
11941
11874
|
sender: {
|
|
11942
11875
|
id: string;
|
|
@@ -11945,6 +11878,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11945
11878
|
avatar: string | null;
|
|
11946
11879
|
isSearchable: boolean;
|
|
11947
11880
|
};
|
|
11881
|
+
files: {
|
|
11882
|
+
fileId: string;
|
|
11883
|
+
filename: string;
|
|
11884
|
+
fileKey: string;
|
|
11885
|
+
}[];
|
|
11948
11886
|
})[];
|
|
11949
11887
|
_output_out: ({
|
|
11950
11888
|
id: string;
|
|
@@ -11955,11 +11893,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11955
11893
|
body: string;
|
|
11956
11894
|
openedAt: Date | null;
|
|
11957
11895
|
} & {
|
|
11958
|
-
data: {
|
|
11959
|
-
dataId: string;
|
|
11960
|
-
dataKey: string;
|
|
11961
|
-
dataName: string;
|
|
11962
|
-
}[];
|
|
11963
11896
|
mailIntegrity: {
|
|
11964
11897
|
id: string;
|
|
11965
11898
|
replyTo: {
|
|
@@ -11967,9 +11900,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11967
11900
|
} | null;
|
|
11968
11901
|
hashKey: string;
|
|
11969
11902
|
hash: string;
|
|
11970
|
-
temporaryRecipients: {
|
|
11971
|
-
email: string | null;
|
|
11972
|
-
}[];
|
|
11973
11903
|
recipients: {
|
|
11974
11904
|
id: string;
|
|
11975
11905
|
lastname: string;
|
|
@@ -11977,6 +11907,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11977
11907
|
avatar: string | null;
|
|
11978
11908
|
isSearchable: boolean;
|
|
11979
11909
|
}[];
|
|
11910
|
+
temporaryRecipients: {
|
|
11911
|
+
email: string | null;
|
|
11912
|
+
}[];
|
|
11980
11913
|
} | null;
|
|
11981
11914
|
mailIntegrityDraft: {
|
|
11982
11915
|
id: string;
|
|
@@ -11985,9 +11918,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11985
11918
|
} | null;
|
|
11986
11919
|
hashKey: string;
|
|
11987
11920
|
hash: string;
|
|
11988
|
-
temporaryRecipients: {
|
|
11989
|
-
email: string | null;
|
|
11990
|
-
}[];
|
|
11991
11921
|
recipients: {
|
|
11992
11922
|
id: string;
|
|
11993
11923
|
lastname: string;
|
|
@@ -11995,6 +11925,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11995
11925
|
avatar: string | null;
|
|
11996
11926
|
isSearchable: boolean;
|
|
11997
11927
|
}[];
|
|
11928
|
+
temporaryRecipients: {
|
|
11929
|
+
email: string | null;
|
|
11930
|
+
}[];
|
|
11998
11931
|
} | null;
|
|
11999
11932
|
sender: {
|
|
12000
11933
|
id: string;
|
|
@@ -12003,6 +11936,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12003
11936
|
avatar: string | null;
|
|
12004
11937
|
isSearchable: boolean;
|
|
12005
11938
|
};
|
|
11939
|
+
files: {
|
|
11940
|
+
fileId: string;
|
|
11941
|
+
filename: string;
|
|
11942
|
+
fileKey: string;
|
|
11943
|
+
}[];
|
|
12006
11944
|
})[];
|
|
12007
11945
|
}, unknown>>;
|
|
12008
11946
|
};
|
|
@@ -12063,11 +12001,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12063
12001
|
body: string;
|
|
12064
12002
|
openedAt: Date | null;
|
|
12065
12003
|
} & {
|
|
12066
|
-
data: {
|
|
12067
|
-
dataId: string;
|
|
12068
|
-
dataKey: string;
|
|
12069
|
-
dataName: string;
|
|
12070
|
-
}[];
|
|
12071
12004
|
mailIntegrity: {
|
|
12072
12005
|
id: string;
|
|
12073
12006
|
replyTo: {
|
|
@@ -12075,9 +12008,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12075
12008
|
} | null;
|
|
12076
12009
|
hashKey: string;
|
|
12077
12010
|
hash: string;
|
|
12078
|
-
temporaryRecipients: {
|
|
12079
|
-
email: string | null;
|
|
12080
|
-
}[];
|
|
12081
12011
|
recipients: {
|
|
12082
12012
|
id: string;
|
|
12083
12013
|
lastname: string;
|
|
@@ -12085,6 +12015,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12085
12015
|
avatar: string | null;
|
|
12086
12016
|
isSearchable: boolean;
|
|
12087
12017
|
}[];
|
|
12018
|
+
temporaryRecipients: {
|
|
12019
|
+
email: string | null;
|
|
12020
|
+
}[];
|
|
12088
12021
|
} | null;
|
|
12089
12022
|
mailIntegrityDraft: {
|
|
12090
12023
|
id: string;
|
|
@@ -12093,9 +12026,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12093
12026
|
} | null;
|
|
12094
12027
|
hashKey: string;
|
|
12095
12028
|
hash: string;
|
|
12096
|
-
temporaryRecipients: {
|
|
12097
|
-
email: string | null;
|
|
12098
|
-
}[];
|
|
12099
12029
|
recipients: {
|
|
12100
12030
|
id: string;
|
|
12101
12031
|
lastname: string;
|
|
@@ -12103,6 +12033,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12103
12033
|
avatar: string | null;
|
|
12104
12034
|
isSearchable: boolean;
|
|
12105
12035
|
}[];
|
|
12036
|
+
temporaryRecipients: {
|
|
12037
|
+
email: string | null;
|
|
12038
|
+
}[];
|
|
12106
12039
|
} | null;
|
|
12107
12040
|
sender: {
|
|
12108
12041
|
id: string;
|
|
@@ -12111,6 +12044,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12111
12044
|
avatar: string | null;
|
|
12112
12045
|
isSearchable: boolean;
|
|
12113
12046
|
};
|
|
12047
|
+
files: {
|
|
12048
|
+
fileId: string;
|
|
12049
|
+
filename: string;
|
|
12050
|
+
fileKey: string;
|
|
12051
|
+
}[];
|
|
12114
12052
|
})[];
|
|
12115
12053
|
_output_out: ({
|
|
12116
12054
|
id: string;
|
|
@@ -12121,11 +12059,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12121
12059
|
body: string;
|
|
12122
12060
|
openedAt: Date | null;
|
|
12123
12061
|
} & {
|
|
12124
|
-
data: {
|
|
12125
|
-
dataId: string;
|
|
12126
|
-
dataKey: string;
|
|
12127
|
-
dataName: string;
|
|
12128
|
-
}[];
|
|
12129
12062
|
mailIntegrity: {
|
|
12130
12063
|
id: string;
|
|
12131
12064
|
replyTo: {
|
|
@@ -12133,9 +12066,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12133
12066
|
} | null;
|
|
12134
12067
|
hashKey: string;
|
|
12135
12068
|
hash: string;
|
|
12136
|
-
temporaryRecipients: {
|
|
12137
|
-
email: string | null;
|
|
12138
|
-
}[];
|
|
12139
12069
|
recipients: {
|
|
12140
12070
|
id: string;
|
|
12141
12071
|
lastname: string;
|
|
@@ -12143,6 +12073,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12143
12073
|
avatar: string | null;
|
|
12144
12074
|
isSearchable: boolean;
|
|
12145
12075
|
}[];
|
|
12076
|
+
temporaryRecipients: {
|
|
12077
|
+
email: string | null;
|
|
12078
|
+
}[];
|
|
12146
12079
|
} | null;
|
|
12147
12080
|
mailIntegrityDraft: {
|
|
12148
12081
|
id: string;
|
|
@@ -12151,9 +12084,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12151
12084
|
} | null;
|
|
12152
12085
|
hashKey: string;
|
|
12153
12086
|
hash: string;
|
|
12154
|
-
temporaryRecipients: {
|
|
12155
|
-
email: string | null;
|
|
12156
|
-
}[];
|
|
12157
12087
|
recipients: {
|
|
12158
12088
|
id: string;
|
|
12159
12089
|
lastname: string;
|
|
@@ -12161,6 +12091,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12161
12091
|
avatar: string | null;
|
|
12162
12092
|
isSearchable: boolean;
|
|
12163
12093
|
}[];
|
|
12094
|
+
temporaryRecipients: {
|
|
12095
|
+
email: string | null;
|
|
12096
|
+
}[];
|
|
12164
12097
|
} | null;
|
|
12165
12098
|
sender: {
|
|
12166
12099
|
id: string;
|
|
@@ -12169,6 +12102,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12169
12102
|
avatar: string | null;
|
|
12170
12103
|
isSearchable: boolean;
|
|
12171
12104
|
};
|
|
12105
|
+
files: {
|
|
12106
|
+
fileId: string;
|
|
12107
|
+
filename: string;
|
|
12108
|
+
fileKey: string;
|
|
12109
|
+
}[];
|
|
12172
12110
|
})[];
|
|
12173
12111
|
}, unknown>>;
|
|
12174
12112
|
};
|
|
@@ -12345,11 +12283,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12345
12283
|
body: string;
|
|
12346
12284
|
openedAt: Date | null;
|
|
12347
12285
|
} & {
|
|
12348
|
-
data: {
|
|
12349
|
-
dataId: string;
|
|
12350
|
-
dataKey: string;
|
|
12351
|
-
dataName: string;
|
|
12352
|
-
}[];
|
|
12353
12286
|
mailIntegrity: {
|
|
12354
12287
|
id: string;
|
|
12355
12288
|
replyTo: {
|
|
@@ -12357,9 +12290,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12357
12290
|
} | null;
|
|
12358
12291
|
hashKey: string;
|
|
12359
12292
|
hash: string;
|
|
12360
|
-
temporaryRecipients: {
|
|
12361
|
-
email: string | null;
|
|
12362
|
-
}[];
|
|
12363
12293
|
recipients: {
|
|
12364
12294
|
id: string;
|
|
12365
12295
|
lastname: string;
|
|
@@ -12367,6 +12297,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12367
12297
|
avatar: string | null;
|
|
12368
12298
|
isSearchable: boolean;
|
|
12369
12299
|
}[];
|
|
12300
|
+
temporaryRecipients: {
|
|
12301
|
+
email: string | null;
|
|
12302
|
+
}[];
|
|
12370
12303
|
} | null;
|
|
12371
12304
|
mailIntegrityDraft: {
|
|
12372
12305
|
id: string;
|
|
@@ -12375,9 +12308,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12375
12308
|
} | null;
|
|
12376
12309
|
hashKey: string;
|
|
12377
12310
|
hash: string;
|
|
12378
|
-
temporaryRecipients: {
|
|
12379
|
-
email: string | null;
|
|
12380
|
-
}[];
|
|
12381
12311
|
recipients: {
|
|
12382
12312
|
id: string;
|
|
12383
12313
|
lastname: string;
|
|
@@ -12385,6 +12315,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12385
12315
|
avatar: string | null;
|
|
12386
12316
|
isSearchable: boolean;
|
|
12387
12317
|
}[];
|
|
12318
|
+
temporaryRecipients: {
|
|
12319
|
+
email: string | null;
|
|
12320
|
+
}[];
|
|
12388
12321
|
} | null;
|
|
12389
12322
|
sender: {
|
|
12390
12323
|
id: string;
|
|
@@ -12393,6 +12326,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12393
12326
|
avatar: string | null;
|
|
12394
12327
|
isSearchable: boolean;
|
|
12395
12328
|
};
|
|
12329
|
+
files: {
|
|
12330
|
+
fileId: string;
|
|
12331
|
+
filename: string;
|
|
12332
|
+
fileKey: string;
|
|
12333
|
+
}[];
|
|
12396
12334
|
})[];
|
|
12397
12335
|
_output_out: ({
|
|
12398
12336
|
id: string;
|
|
@@ -12403,11 +12341,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12403
12341
|
body: string;
|
|
12404
12342
|
openedAt: Date | null;
|
|
12405
12343
|
} & {
|
|
12406
|
-
data: {
|
|
12407
|
-
dataId: string;
|
|
12408
|
-
dataKey: string;
|
|
12409
|
-
dataName: string;
|
|
12410
|
-
}[];
|
|
12411
12344
|
mailIntegrity: {
|
|
12412
12345
|
id: string;
|
|
12413
12346
|
replyTo: {
|
|
@@ -12415,9 +12348,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12415
12348
|
} | null;
|
|
12416
12349
|
hashKey: string;
|
|
12417
12350
|
hash: string;
|
|
12418
|
-
temporaryRecipients: {
|
|
12419
|
-
email: string | null;
|
|
12420
|
-
}[];
|
|
12421
12351
|
recipients: {
|
|
12422
12352
|
id: string;
|
|
12423
12353
|
lastname: string;
|
|
@@ -12425,6 +12355,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12425
12355
|
avatar: string | null;
|
|
12426
12356
|
isSearchable: boolean;
|
|
12427
12357
|
}[];
|
|
12358
|
+
temporaryRecipients: {
|
|
12359
|
+
email: string | null;
|
|
12360
|
+
}[];
|
|
12428
12361
|
} | null;
|
|
12429
12362
|
mailIntegrityDraft: {
|
|
12430
12363
|
id: string;
|
|
@@ -12433,9 +12366,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12433
12366
|
} | null;
|
|
12434
12367
|
hashKey: string;
|
|
12435
12368
|
hash: string;
|
|
12436
|
-
temporaryRecipients: {
|
|
12437
|
-
email: string | null;
|
|
12438
|
-
}[];
|
|
12439
12369
|
recipients: {
|
|
12440
12370
|
id: string;
|
|
12441
12371
|
lastname: string;
|
|
@@ -12443,6 +12373,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12443
12373
|
avatar: string | null;
|
|
12444
12374
|
isSearchable: boolean;
|
|
12445
12375
|
}[];
|
|
12376
|
+
temporaryRecipients: {
|
|
12377
|
+
email: string | null;
|
|
12378
|
+
}[];
|
|
12446
12379
|
} | null;
|
|
12447
12380
|
sender: {
|
|
12448
12381
|
id: string;
|
|
@@ -12451,6 +12384,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12451
12384
|
avatar: string | null;
|
|
12452
12385
|
isSearchable: boolean;
|
|
12453
12386
|
};
|
|
12387
|
+
files: {
|
|
12388
|
+
fileId: string;
|
|
12389
|
+
filename: string;
|
|
12390
|
+
fileKey: string;
|
|
12391
|
+
}[];
|
|
12454
12392
|
})[];
|
|
12455
12393
|
}, unknown>>;
|
|
12456
12394
|
};
|
|
@@ -12639,34 +12577,34 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12639
12577
|
_input_in: {
|
|
12640
12578
|
id: string;
|
|
12641
12579
|
customMessage: string | null;
|
|
12642
|
-
temporaryRecipients: string[];
|
|
12643
12580
|
recipients: ({
|
|
12644
12581
|
subject: string;
|
|
12645
12582
|
body: string;
|
|
12646
12583
|
} & {
|
|
12647
|
-
|
|
12584
|
+
recipientId: string;
|
|
12585
|
+
files: {
|
|
12648
12586
|
id: string;
|
|
12649
|
-
|
|
12650
|
-
|
|
12587
|
+
filename: string;
|
|
12588
|
+
fileKey: string;
|
|
12651
12589
|
}[];
|
|
12652
|
-
recipientId: string;
|
|
12653
12590
|
})[];
|
|
12591
|
+
temporaryRecipients: string[];
|
|
12654
12592
|
};
|
|
12655
12593
|
_input_out: {
|
|
12656
12594
|
id: string;
|
|
12657
12595
|
customMessage: string | null;
|
|
12658
|
-
temporaryRecipients: string[];
|
|
12659
12596
|
recipients: ({
|
|
12660
12597
|
subject: string;
|
|
12661
12598
|
body: string;
|
|
12662
12599
|
} & {
|
|
12663
|
-
|
|
12600
|
+
recipientId: string;
|
|
12601
|
+
files: {
|
|
12664
12602
|
id: string;
|
|
12665
|
-
|
|
12666
|
-
|
|
12603
|
+
filename: string;
|
|
12604
|
+
fileKey: string;
|
|
12667
12605
|
}[];
|
|
12668
|
-
recipientId: string;
|
|
12669
12606
|
})[];
|
|
12607
|
+
temporaryRecipients: string[];
|
|
12670
12608
|
};
|
|
12671
12609
|
_output_in: {
|
|
12672
12610
|
isSent: boolean;
|
|
@@ -12728,12 +12666,12 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12728
12666
|
subject: string;
|
|
12729
12667
|
body: string;
|
|
12730
12668
|
} & {
|
|
12731
|
-
|
|
12669
|
+
recipientId: string;
|
|
12670
|
+
files: {
|
|
12732
12671
|
id: string;
|
|
12733
|
-
|
|
12734
|
-
|
|
12672
|
+
filename: string;
|
|
12673
|
+
fileKey: string;
|
|
12735
12674
|
}[];
|
|
12736
|
-
recipientId: string;
|
|
12737
12675
|
};
|
|
12738
12676
|
};
|
|
12739
12677
|
_input_out: {
|
|
@@ -12742,12 +12680,12 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12742
12680
|
subject: string;
|
|
12743
12681
|
body: string;
|
|
12744
12682
|
} & {
|
|
12745
|
-
|
|
12683
|
+
recipientId: string;
|
|
12684
|
+
files: {
|
|
12746
12685
|
id: string;
|
|
12747
|
-
|
|
12748
|
-
|
|
12686
|
+
filename: string;
|
|
12687
|
+
fileKey: string;
|
|
12749
12688
|
}[];
|
|
12750
|
-
recipientId: string;
|
|
12751
12689
|
};
|
|
12752
12690
|
};
|
|
12753
12691
|
_output_in: {
|
|
@@ -12815,11 +12753,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12815
12753
|
body: string;
|
|
12816
12754
|
openedAt: Date | null;
|
|
12817
12755
|
} & {
|
|
12818
|
-
data: {
|
|
12819
|
-
dataId: string;
|
|
12820
|
-
dataKey: string;
|
|
12821
|
-
dataName: string;
|
|
12822
|
-
}[];
|
|
12823
12756
|
mailIntegrity: {
|
|
12824
12757
|
id: string;
|
|
12825
12758
|
replyTo: {
|
|
@@ -12827,9 +12760,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12827
12760
|
} | null;
|
|
12828
12761
|
hashKey: string;
|
|
12829
12762
|
hash: string;
|
|
12830
|
-
temporaryRecipients: {
|
|
12831
|
-
email: string | null;
|
|
12832
|
-
}[];
|
|
12833
12763
|
recipients: {
|
|
12834
12764
|
id: string;
|
|
12835
12765
|
lastname: string;
|
|
@@ -12837,6 +12767,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12837
12767
|
avatar: string | null;
|
|
12838
12768
|
isSearchable: boolean;
|
|
12839
12769
|
}[];
|
|
12770
|
+
temporaryRecipients: {
|
|
12771
|
+
email: string | null;
|
|
12772
|
+
}[];
|
|
12840
12773
|
} | null;
|
|
12841
12774
|
mailIntegrityDraft: {
|
|
12842
12775
|
id: string;
|
|
@@ -12845,9 +12778,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12845
12778
|
} | null;
|
|
12846
12779
|
hashKey: string;
|
|
12847
12780
|
hash: string;
|
|
12848
|
-
temporaryRecipients: {
|
|
12849
|
-
email: string | null;
|
|
12850
|
-
}[];
|
|
12851
12781
|
recipients: {
|
|
12852
12782
|
id: string;
|
|
12853
12783
|
lastname: string;
|
|
@@ -12855,6 +12785,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12855
12785
|
avatar: string | null;
|
|
12856
12786
|
isSearchable: boolean;
|
|
12857
12787
|
}[];
|
|
12788
|
+
temporaryRecipients: {
|
|
12789
|
+
email: string | null;
|
|
12790
|
+
}[];
|
|
12858
12791
|
} | null;
|
|
12859
12792
|
sender: {
|
|
12860
12793
|
id: string;
|
|
@@ -12863,6 +12796,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12863
12796
|
avatar: string | null;
|
|
12864
12797
|
isSearchable: boolean;
|
|
12865
12798
|
};
|
|
12799
|
+
files: {
|
|
12800
|
+
fileId: string;
|
|
12801
|
+
filename: string;
|
|
12802
|
+
fileKey: string;
|
|
12803
|
+
}[];
|
|
12866
12804
|
})[];
|
|
12867
12805
|
_output_out: ({
|
|
12868
12806
|
id: string;
|
|
@@ -12873,11 +12811,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12873
12811
|
body: string;
|
|
12874
12812
|
openedAt: Date | null;
|
|
12875
12813
|
} & {
|
|
12876
|
-
data: {
|
|
12877
|
-
dataId: string;
|
|
12878
|
-
dataKey: string;
|
|
12879
|
-
dataName: string;
|
|
12880
|
-
}[];
|
|
12881
12814
|
mailIntegrity: {
|
|
12882
12815
|
id: string;
|
|
12883
12816
|
replyTo: {
|
|
@@ -12885,9 +12818,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12885
12818
|
} | null;
|
|
12886
12819
|
hashKey: string;
|
|
12887
12820
|
hash: string;
|
|
12888
|
-
temporaryRecipients: {
|
|
12889
|
-
email: string | null;
|
|
12890
|
-
}[];
|
|
12891
12821
|
recipients: {
|
|
12892
12822
|
id: string;
|
|
12893
12823
|
lastname: string;
|
|
@@ -12895,6 +12825,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12895
12825
|
avatar: string | null;
|
|
12896
12826
|
isSearchable: boolean;
|
|
12897
12827
|
}[];
|
|
12828
|
+
temporaryRecipients: {
|
|
12829
|
+
email: string | null;
|
|
12830
|
+
}[];
|
|
12898
12831
|
} | null;
|
|
12899
12832
|
mailIntegrityDraft: {
|
|
12900
12833
|
id: string;
|
|
@@ -12903,9 +12836,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12903
12836
|
} | null;
|
|
12904
12837
|
hashKey: string;
|
|
12905
12838
|
hash: string;
|
|
12906
|
-
temporaryRecipients: {
|
|
12907
|
-
email: string | null;
|
|
12908
|
-
}[];
|
|
12909
12839
|
recipients: {
|
|
12910
12840
|
id: string;
|
|
12911
12841
|
lastname: string;
|
|
@@ -12913,6 +12843,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12913
12843
|
avatar: string | null;
|
|
12914
12844
|
isSearchable: boolean;
|
|
12915
12845
|
}[];
|
|
12846
|
+
temporaryRecipients: {
|
|
12847
|
+
email: string | null;
|
|
12848
|
+
}[];
|
|
12916
12849
|
} | null;
|
|
12917
12850
|
sender: {
|
|
12918
12851
|
id: string;
|
|
@@ -12921,6 +12854,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12921
12854
|
avatar: string | null;
|
|
12922
12855
|
isSearchable: boolean;
|
|
12923
12856
|
};
|
|
12857
|
+
files: {
|
|
12858
|
+
fileId: string;
|
|
12859
|
+
filename: string;
|
|
12860
|
+
fileKey: string;
|
|
12861
|
+
}[];
|
|
12924
12862
|
})[];
|
|
12925
12863
|
}, unknown>>;
|
|
12926
12864
|
};
|
|
@@ -13119,11 +13057,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13119
13057
|
body: string;
|
|
13120
13058
|
openedAt: Date | null;
|
|
13121
13059
|
} & {
|
|
13122
|
-
data: {
|
|
13123
|
-
dataId: string;
|
|
13124
|
-
dataKey: string;
|
|
13125
|
-
dataName: string;
|
|
13126
|
-
}[];
|
|
13127
13060
|
mailIntegrity: {
|
|
13128
13061
|
id: string;
|
|
13129
13062
|
replyTo: {
|
|
@@ -13131,9 +13064,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13131
13064
|
} | null;
|
|
13132
13065
|
hashKey: string;
|
|
13133
13066
|
hash: string;
|
|
13134
|
-
temporaryRecipients: {
|
|
13135
|
-
email: string | null;
|
|
13136
|
-
}[];
|
|
13137
13067
|
recipients: {
|
|
13138
13068
|
id: string;
|
|
13139
13069
|
lastname: string;
|
|
@@ -13141,6 +13071,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13141
13071
|
avatar: string | null;
|
|
13142
13072
|
isSearchable: boolean;
|
|
13143
13073
|
}[];
|
|
13074
|
+
temporaryRecipients: {
|
|
13075
|
+
email: string | null;
|
|
13076
|
+
}[];
|
|
13144
13077
|
} | null;
|
|
13145
13078
|
mailIntegrityDraft: {
|
|
13146
13079
|
id: string;
|
|
@@ -13149,9 +13082,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13149
13082
|
} | null;
|
|
13150
13083
|
hashKey: string;
|
|
13151
13084
|
hash: string;
|
|
13152
|
-
temporaryRecipients: {
|
|
13153
|
-
email: string | null;
|
|
13154
|
-
}[];
|
|
13155
13085
|
recipients: {
|
|
13156
13086
|
id: string;
|
|
13157
13087
|
lastname: string;
|
|
@@ -13159,6 +13089,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13159
13089
|
avatar: string | null;
|
|
13160
13090
|
isSearchable: boolean;
|
|
13161
13091
|
}[];
|
|
13092
|
+
temporaryRecipients: {
|
|
13093
|
+
email: string | null;
|
|
13094
|
+
}[];
|
|
13162
13095
|
} | null;
|
|
13163
13096
|
sender: {
|
|
13164
13097
|
id: string;
|
|
@@ -13167,6 +13100,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13167
13100
|
avatar: string | null;
|
|
13168
13101
|
isSearchable: boolean;
|
|
13169
13102
|
};
|
|
13103
|
+
files: {
|
|
13104
|
+
fileId: string;
|
|
13105
|
+
filename: string;
|
|
13106
|
+
fileKey: string;
|
|
13107
|
+
}[];
|
|
13170
13108
|
};
|
|
13171
13109
|
_output_out: {
|
|
13172
13110
|
id: string;
|
|
@@ -13177,11 +13115,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13177
13115
|
body: string;
|
|
13178
13116
|
openedAt: Date | null;
|
|
13179
13117
|
} & {
|
|
13180
|
-
data: {
|
|
13181
|
-
dataId: string;
|
|
13182
|
-
dataKey: string;
|
|
13183
|
-
dataName: string;
|
|
13184
|
-
}[];
|
|
13185
13118
|
mailIntegrity: {
|
|
13186
13119
|
id: string;
|
|
13187
13120
|
replyTo: {
|
|
@@ -13189,9 +13122,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13189
13122
|
} | null;
|
|
13190
13123
|
hashKey: string;
|
|
13191
13124
|
hash: string;
|
|
13192
|
-
temporaryRecipients: {
|
|
13193
|
-
email: string | null;
|
|
13194
|
-
}[];
|
|
13195
13125
|
recipients: {
|
|
13196
13126
|
id: string;
|
|
13197
13127
|
lastname: string;
|
|
@@ -13199,6 +13129,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13199
13129
|
avatar: string | null;
|
|
13200
13130
|
isSearchable: boolean;
|
|
13201
13131
|
}[];
|
|
13132
|
+
temporaryRecipients: {
|
|
13133
|
+
email: string | null;
|
|
13134
|
+
}[];
|
|
13202
13135
|
} | null;
|
|
13203
13136
|
mailIntegrityDraft: {
|
|
13204
13137
|
id: string;
|
|
@@ -13207,9 +13140,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13207
13140
|
} | null;
|
|
13208
13141
|
hashKey: string;
|
|
13209
13142
|
hash: string;
|
|
13210
|
-
temporaryRecipients: {
|
|
13211
|
-
email: string | null;
|
|
13212
|
-
}[];
|
|
13213
13143
|
recipients: {
|
|
13214
13144
|
id: string;
|
|
13215
13145
|
lastname: string;
|
|
@@ -13217,6 +13147,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13217
13147
|
avatar: string | null;
|
|
13218
13148
|
isSearchable: boolean;
|
|
13219
13149
|
}[];
|
|
13150
|
+
temporaryRecipients: {
|
|
13151
|
+
email: string | null;
|
|
13152
|
+
}[];
|
|
13220
13153
|
} | null;
|
|
13221
13154
|
sender: {
|
|
13222
13155
|
id: string;
|
|
@@ -13225,6 +13158,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13225
13158
|
avatar: string | null;
|
|
13226
13159
|
isSearchable: boolean;
|
|
13227
13160
|
};
|
|
13161
|
+
files: {
|
|
13162
|
+
fileId: string;
|
|
13163
|
+
filename: string;
|
|
13164
|
+
fileKey: string;
|
|
13165
|
+
}[];
|
|
13228
13166
|
};
|
|
13229
13167
|
}, unknown>>;
|
|
13230
13168
|
};
|
|
@@ -13285,11 +13223,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13285
13223
|
isSearchable: boolean;
|
|
13286
13224
|
};
|
|
13287
13225
|
date: Date;
|
|
13288
|
-
temporaryRecipients: {
|
|
13289
|
-
email: string | null;
|
|
13290
|
-
id: string;
|
|
13291
|
-
phone: string | null;
|
|
13292
|
-
}[];
|
|
13293
13226
|
recipients: {
|
|
13294
13227
|
id: string;
|
|
13295
13228
|
lastname: string;
|
|
@@ -13297,6 +13230,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13297
13230
|
avatar: string | null;
|
|
13298
13231
|
isSearchable: boolean;
|
|
13299
13232
|
}[];
|
|
13233
|
+
temporaryRecipients: {
|
|
13234
|
+
email: string | null;
|
|
13235
|
+
id: string;
|
|
13236
|
+
phone: string | null;
|
|
13237
|
+
}[];
|
|
13300
13238
|
attachmentsCount: number;
|
|
13301
13239
|
}[];
|
|
13302
13240
|
_output_out: {
|
|
@@ -13308,11 +13246,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13308
13246
|
isSearchable: boolean;
|
|
13309
13247
|
};
|
|
13310
13248
|
date: Date;
|
|
13311
|
-
temporaryRecipients: {
|
|
13312
|
-
email: string | null;
|
|
13313
|
-
id: string;
|
|
13314
|
-
phone: string | null;
|
|
13315
|
-
}[];
|
|
13316
13249
|
recipients: {
|
|
13317
13250
|
id: string;
|
|
13318
13251
|
lastname: string;
|
|
@@ -13320,6 +13253,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13320
13253
|
avatar: string | null;
|
|
13321
13254
|
isSearchable: boolean;
|
|
13322
13255
|
}[];
|
|
13256
|
+
temporaryRecipients: {
|
|
13257
|
+
email: string | null;
|
|
13258
|
+
id: string;
|
|
13259
|
+
phone: string | null;
|
|
13260
|
+
}[];
|
|
13323
13261
|
attachmentsCount: number;
|
|
13324
13262
|
}[];
|
|
13325
13263
|
}, unknown>>;
|
|
@@ -13655,28 +13593,28 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13655
13593
|
quotas: {
|
|
13656
13594
|
uploadCount: bigint | null;
|
|
13657
13595
|
downloadCount: bigint | null;
|
|
13658
|
-
|
|
13596
|
+
totalFileCount: bigint | null;
|
|
13659
13597
|
totalStorageSize: bigint | null;
|
|
13660
|
-
|
|
13598
|
+
perFileSize: bigint | null;
|
|
13661
13599
|
uploadBandwidth: bigint | null;
|
|
13662
13600
|
downloadBandwidth: bigint | null;
|
|
13663
13601
|
} & {
|
|
13664
13602
|
sentMails: {
|
|
13665
13603
|
count: bigint | null;
|
|
13666
|
-
|
|
13667
|
-
|
|
13604
|
+
fileSize: bigint | null;
|
|
13605
|
+
totalFileCount: bigint | null;
|
|
13668
13606
|
totalStorageSize: bigint | null;
|
|
13669
|
-
|
|
13670
|
-
|
|
13607
|
+
fileCount: bigint | null;
|
|
13608
|
+
perFileSize: bigint | null;
|
|
13671
13609
|
totalCount: bigint | null;
|
|
13672
13610
|
};
|
|
13673
13611
|
receivedMails: {
|
|
13674
13612
|
count: bigint | null;
|
|
13675
|
-
|
|
13676
|
-
|
|
13613
|
+
fileSize: bigint | null;
|
|
13614
|
+
totalFileCount: bigint | null;
|
|
13677
13615
|
totalStorageSize: bigint | null;
|
|
13678
|
-
|
|
13679
|
-
|
|
13616
|
+
fileCount: bigint | null;
|
|
13617
|
+
perFileSize: bigint | null;
|
|
13680
13618
|
totalCount: bigint | null;
|
|
13681
13619
|
};
|
|
13682
13620
|
};
|
|
@@ -13695,28 +13633,28 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13695
13633
|
quotas: {
|
|
13696
13634
|
uploadCount: bigint | null;
|
|
13697
13635
|
downloadCount: bigint | null;
|
|
13698
|
-
|
|
13636
|
+
totalFileCount: bigint | null;
|
|
13699
13637
|
totalStorageSize: bigint | null;
|
|
13700
|
-
|
|
13638
|
+
perFileSize: bigint | null;
|
|
13701
13639
|
uploadBandwidth: bigint | null;
|
|
13702
13640
|
downloadBandwidth: bigint | null;
|
|
13703
13641
|
} & {
|
|
13704
13642
|
sentMails: {
|
|
13705
13643
|
count: bigint | null;
|
|
13706
|
-
|
|
13707
|
-
|
|
13644
|
+
fileSize: bigint | null;
|
|
13645
|
+
totalFileCount: bigint | null;
|
|
13708
13646
|
totalStorageSize: bigint | null;
|
|
13709
|
-
|
|
13710
|
-
|
|
13647
|
+
fileCount: bigint | null;
|
|
13648
|
+
perFileSize: bigint | null;
|
|
13711
13649
|
totalCount: bigint | null;
|
|
13712
13650
|
};
|
|
13713
13651
|
receivedMails: {
|
|
13714
13652
|
count: bigint | null;
|
|
13715
|
-
|
|
13716
|
-
|
|
13653
|
+
fileSize: bigint | null;
|
|
13654
|
+
totalFileCount: bigint | null;
|
|
13717
13655
|
totalStorageSize: bigint | null;
|
|
13718
|
-
|
|
13719
|
-
|
|
13656
|
+
fileCount: bigint | null;
|
|
13657
|
+
perFileSize: bigint | null;
|
|
13720
13658
|
totalCount: bigint | null;
|
|
13721
13659
|
};
|
|
13722
13660
|
};
|
|
@@ -16082,9 +16020,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16082
16020
|
usersBase: bigint | null;
|
|
16083
16021
|
usersUnit: bigint | null;
|
|
16084
16022
|
usersPrice: number | null;
|
|
16085
|
-
|
|
16086
|
-
|
|
16087
|
-
|
|
16023
|
+
perFileSizeBase: bigint | null;
|
|
16024
|
+
perFileSizeUnit: bigint | null;
|
|
16025
|
+
perFileSizePrice: number | null;
|
|
16088
16026
|
bandwidthBase: bigint | null;
|
|
16089
16027
|
bandwidthUnit: bigint | null;
|
|
16090
16028
|
bandwidthPrice: number | null;
|
|
@@ -16093,7 +16031,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16093
16031
|
totalStorageSizePrice: number | null;
|
|
16094
16032
|
devsMax: bigint | null;
|
|
16095
16033
|
usersMax: bigint | null;
|
|
16096
|
-
|
|
16034
|
+
perFileSizeMax: bigint | null;
|
|
16097
16035
|
bandwidthMax: bigint | null;
|
|
16098
16036
|
totalStorageSizeMax: bigint | null;
|
|
16099
16037
|
};
|
|
@@ -16132,9 +16070,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16132
16070
|
usersBase: bigint | null;
|
|
16133
16071
|
usersUnit: bigint | null;
|
|
16134
16072
|
usersPrice: number | null;
|
|
16135
|
-
|
|
16136
|
-
|
|
16137
|
-
|
|
16073
|
+
perFileSizeBase: bigint | null;
|
|
16074
|
+
perFileSizeUnit: bigint | null;
|
|
16075
|
+
perFileSizePrice: number | null;
|
|
16138
16076
|
bandwidthBase: bigint | null;
|
|
16139
16077
|
bandwidthUnit: bigint | null;
|
|
16140
16078
|
bandwidthPrice: number | null;
|
|
@@ -16143,7 +16081,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16143
16081
|
totalStorageSizePrice: number | null;
|
|
16144
16082
|
devsMax: bigint | null;
|
|
16145
16083
|
usersMax: bigint | null;
|
|
16146
|
-
|
|
16084
|
+
perFileSizeMax: bigint | null;
|
|
16147
16085
|
bandwidthMax: bigint | null;
|
|
16148
16086
|
totalStorageSizeMax: bigint | null;
|
|
16149
16087
|
};
|
|
@@ -16164,9 +16102,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16164
16102
|
usersBase: bigint | null;
|
|
16165
16103
|
usersUnit: bigint | null;
|
|
16166
16104
|
usersPrice: number | null;
|
|
16167
|
-
|
|
16168
|
-
|
|
16169
|
-
|
|
16105
|
+
perFileSizeBase: bigint | null;
|
|
16106
|
+
perFileSizeUnit: bigint | null;
|
|
16107
|
+
perFileSizePrice: number | null;
|
|
16170
16108
|
bandwidthBase: bigint | null;
|
|
16171
16109
|
bandwidthUnit: bigint | null;
|
|
16172
16110
|
bandwidthPrice: number | null;
|
|
@@ -16175,7 +16113,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16175
16113
|
totalStorageSizePrice: number | null;
|
|
16176
16114
|
devsMax: bigint | null;
|
|
16177
16115
|
usersMax: bigint | null;
|
|
16178
|
-
|
|
16116
|
+
perFileSizeMax: bigint | null;
|
|
16179
16117
|
bandwidthMax: bigint | null;
|
|
16180
16118
|
totalStorageSizeMax: bigint | null;
|
|
16181
16119
|
};
|
|
@@ -16214,9 +16152,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16214
16152
|
usersBase: bigint | null;
|
|
16215
16153
|
usersUnit: bigint | null;
|
|
16216
16154
|
usersPrice: number | null;
|
|
16217
|
-
|
|
16218
|
-
|
|
16219
|
-
|
|
16155
|
+
perFileSizeBase: bigint | null;
|
|
16156
|
+
perFileSizeUnit: bigint | null;
|
|
16157
|
+
perFileSizePrice: number | null;
|
|
16220
16158
|
bandwidthBase: bigint | null;
|
|
16221
16159
|
bandwidthUnit: bigint | null;
|
|
16222
16160
|
bandwidthPrice: number | null;
|
|
@@ -16225,7 +16163,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16225
16163
|
totalStorageSizePrice: number | null;
|
|
16226
16164
|
devsMax: bigint | null;
|
|
16227
16165
|
usersMax: bigint | null;
|
|
16228
|
-
|
|
16166
|
+
perFileSizeMax: bigint | null;
|
|
16229
16167
|
bandwidthMax: bigint | null;
|
|
16230
16168
|
totalStorageSizeMax: bigint | null;
|
|
16231
16169
|
};
|
|
@@ -16300,9 +16238,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16300
16238
|
usersBase: bigint | null;
|
|
16301
16239
|
usersUnit: bigint | null;
|
|
16302
16240
|
usersPrice: number | null;
|
|
16303
|
-
|
|
16304
|
-
|
|
16305
|
-
|
|
16241
|
+
perFileSizeBase: bigint | null;
|
|
16242
|
+
perFileSizeUnit: bigint | null;
|
|
16243
|
+
perFileSizePrice: number | null;
|
|
16306
16244
|
bandwidthBase: bigint | null;
|
|
16307
16245
|
bandwidthUnit: bigint | null;
|
|
16308
16246
|
bandwidthPrice: number | null;
|
|
@@ -16311,7 +16249,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16311
16249
|
totalStorageSizePrice: number | null;
|
|
16312
16250
|
devsMax: bigint | null;
|
|
16313
16251
|
usersMax: bigint | null;
|
|
16314
|
-
|
|
16252
|
+
perFileSizeMax: bigint | null;
|
|
16315
16253
|
bandwidthMax: bigint | null;
|
|
16316
16254
|
totalStorageSizeMax: bigint | null;
|
|
16317
16255
|
};
|
|
@@ -16350,9 +16288,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16350
16288
|
usersBase: bigint | null;
|
|
16351
16289
|
usersUnit: bigint | null;
|
|
16352
16290
|
usersPrice: number | null;
|
|
16353
|
-
|
|
16354
|
-
|
|
16355
|
-
|
|
16291
|
+
perFileSizeBase: bigint | null;
|
|
16292
|
+
perFileSizeUnit: bigint | null;
|
|
16293
|
+
perFileSizePrice: number | null;
|
|
16356
16294
|
bandwidthBase: bigint | null;
|
|
16357
16295
|
bandwidthUnit: bigint | null;
|
|
16358
16296
|
bandwidthPrice: number | null;
|
|
@@ -16361,7 +16299,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16361
16299
|
totalStorageSizePrice: number | null;
|
|
16362
16300
|
devsMax: bigint | null;
|
|
16363
16301
|
usersMax: bigint | null;
|
|
16364
|
-
|
|
16302
|
+
perFileSizeMax: bigint | null;
|
|
16365
16303
|
bandwidthMax: bigint | null;
|
|
16366
16304
|
totalStorageSizeMax: bigint | null;
|
|
16367
16305
|
};
|
|
@@ -16382,9 +16320,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16382
16320
|
usersBase: bigint | null;
|
|
16383
16321
|
usersUnit: bigint | null;
|
|
16384
16322
|
usersPrice: number | null;
|
|
16385
|
-
|
|
16386
|
-
|
|
16387
|
-
|
|
16323
|
+
perFileSizeBase: bigint | null;
|
|
16324
|
+
perFileSizeUnit: bigint | null;
|
|
16325
|
+
perFileSizePrice: number | null;
|
|
16388
16326
|
bandwidthBase: bigint | null;
|
|
16389
16327
|
bandwidthUnit: bigint | null;
|
|
16390
16328
|
bandwidthPrice: number | null;
|
|
@@ -16393,7 +16331,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16393
16331
|
totalStorageSizePrice: number | null;
|
|
16394
16332
|
devsMax: bigint | null;
|
|
16395
16333
|
usersMax: bigint | null;
|
|
16396
|
-
|
|
16334
|
+
perFileSizeMax: bigint | null;
|
|
16397
16335
|
bandwidthMax: bigint | null;
|
|
16398
16336
|
totalStorageSizeMax: bigint | null;
|
|
16399
16337
|
};
|
|
@@ -16432,9 +16370,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16432
16370
|
usersBase: bigint | null;
|
|
16433
16371
|
usersUnit: bigint | null;
|
|
16434
16372
|
usersPrice: number | null;
|
|
16435
|
-
|
|
16436
|
-
|
|
16437
|
-
|
|
16373
|
+
perFileSizeBase: bigint | null;
|
|
16374
|
+
perFileSizeUnit: bigint | null;
|
|
16375
|
+
perFileSizePrice: number | null;
|
|
16438
16376
|
bandwidthBase: bigint | null;
|
|
16439
16377
|
bandwidthUnit: bigint | null;
|
|
16440
16378
|
bandwidthPrice: number | null;
|
|
@@ -16443,7 +16381,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16443
16381
|
totalStorageSizePrice: number | null;
|
|
16444
16382
|
devsMax: bigint | null;
|
|
16445
16383
|
usersMax: bigint | null;
|
|
16446
|
-
|
|
16384
|
+
perFileSizeMax: bigint | null;
|
|
16447
16385
|
bandwidthMax: bigint | null;
|
|
16448
16386
|
totalStorageSizeMax: bigint | null;
|
|
16449
16387
|
};
|
|
@@ -17832,7 +17770,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17832
17770
|
_input_in: {} | undefined;
|
|
17833
17771
|
_input_out: {} | undefined;
|
|
17834
17772
|
_output_in: {
|
|
17835
|
-
accountId: string;
|
|
17836
17773
|
userId: string;
|
|
17837
17774
|
id: string;
|
|
17838
17775
|
createdAt: Date;
|
|
@@ -17841,7 +17778,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17841
17778
|
ip: string | null;
|
|
17842
17779
|
country: string | null;
|
|
17843
17780
|
city: string | null;
|
|
17844
|
-
appSessions:
|
|
17781
|
+
appSessions: {
|
|
17845
17782
|
appId: string;
|
|
17846
17783
|
userId: string;
|
|
17847
17784
|
id: string;
|
|
@@ -17852,14 +17789,12 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17852
17789
|
ip: string | null;
|
|
17853
17790
|
country: string | null;
|
|
17854
17791
|
city: string | null;
|
|
17855
|
-
} & {
|
|
17856
17792
|
name: string;
|
|
17857
17793
|
logo: string | null;
|
|
17858
17794
|
origin: string[];
|
|
17859
|
-
}
|
|
17795
|
+
}[];
|
|
17860
17796
|
}[];
|
|
17861
17797
|
_output_out: {
|
|
17862
|
-
accountId: string;
|
|
17863
17798
|
userId: string;
|
|
17864
17799
|
id: string;
|
|
17865
17800
|
createdAt: Date;
|
|
@@ -17868,7 +17803,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17868
17803
|
ip: string | null;
|
|
17869
17804
|
country: string | null;
|
|
17870
17805
|
city: string | null;
|
|
17871
|
-
appSessions:
|
|
17806
|
+
appSessions: {
|
|
17872
17807
|
appId: string;
|
|
17873
17808
|
userId: string;
|
|
17874
17809
|
id: string;
|
|
@@ -17879,11 +17814,10 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17879
17814
|
ip: string | null;
|
|
17880
17815
|
country: string | null;
|
|
17881
17816
|
city: string | null;
|
|
17882
|
-
} & {
|
|
17883
17817
|
name: string;
|
|
17884
17818
|
logo: string | null;
|
|
17885
17819
|
origin: string[];
|
|
17886
|
-
}
|
|
17820
|
+
}[];
|
|
17887
17821
|
}[];
|
|
17888
17822
|
}, unknown>>;
|
|
17889
17823
|
};
|