@secrecy/lib 1.29.0-feat-rename-file.2 → 1.29.0-feat-add-manage-user-data.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 +445 -507
- 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
|
@@ -185,6 +185,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
185
185
|
avatar: string | null;
|
|
186
186
|
isSearchable: boolean;
|
|
187
187
|
}[];
|
|
188
|
+
currentUserId: string;
|
|
188
189
|
};
|
|
189
190
|
_output_out: {
|
|
190
191
|
users: {
|
|
@@ -194,6 +195,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
194
195
|
avatar: string | null;
|
|
195
196
|
isSearchable: boolean;
|
|
196
197
|
}[];
|
|
198
|
+
currentUserId: string;
|
|
197
199
|
};
|
|
198
200
|
}, unknown>>;
|
|
199
201
|
};
|
|
@@ -251,68 +253,52 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
251
253
|
mail: {
|
|
252
254
|
received: {
|
|
253
255
|
count: bigint;
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
256
|
+
fileSize: bigint;
|
|
257
|
+
maxFileSize: bigint | null;
|
|
258
|
+
fileCount: bigint;
|
|
257
259
|
maxCount: bigint | null;
|
|
258
|
-
|
|
260
|
+
maxFileCount: bigint | null;
|
|
259
261
|
};
|
|
260
262
|
sent: {
|
|
261
263
|
count: bigint;
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
264
|
+
fileSize: bigint;
|
|
265
|
+
maxFileSize: bigint | null;
|
|
266
|
+
fileCount: bigint;
|
|
265
267
|
maxCount: bigint | null;
|
|
266
|
-
|
|
268
|
+
maxFileCount: bigint | null;
|
|
267
269
|
};
|
|
268
270
|
};
|
|
269
271
|
cloud: {
|
|
270
272
|
count: bigint;
|
|
271
|
-
uploadCount: bigint;
|
|
272
|
-
downloadCount: bigint;
|
|
273
273
|
size: bigint;
|
|
274
|
-
uploadBandwidth: bigint;
|
|
275
|
-
downloadBandwidth: bigint;
|
|
276
274
|
maxCount: bigint | null;
|
|
277
275
|
maxSize: bigint | null;
|
|
278
|
-
maxDownloadBandwidth: bigint | null;
|
|
279
|
-
maxUploadBandwidth: bigint | null;
|
|
280
|
-
maxDownloadCount: bigint | null;
|
|
281
|
-
maxUploadCount: bigint | null;
|
|
282
276
|
};
|
|
283
277
|
};
|
|
284
278
|
_output_out: {
|
|
285
279
|
mail: {
|
|
286
280
|
received: {
|
|
287
281
|
count: bigint;
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
282
|
+
fileSize: bigint;
|
|
283
|
+
maxFileSize: bigint | null;
|
|
284
|
+
fileCount: bigint;
|
|
291
285
|
maxCount: bigint | null;
|
|
292
|
-
|
|
286
|
+
maxFileCount: bigint | null;
|
|
293
287
|
};
|
|
294
288
|
sent: {
|
|
295
289
|
count: bigint;
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
290
|
+
fileSize: bigint;
|
|
291
|
+
maxFileSize: bigint | null;
|
|
292
|
+
fileCount: bigint;
|
|
299
293
|
maxCount: bigint | null;
|
|
300
|
-
|
|
294
|
+
maxFileCount: bigint | null;
|
|
301
295
|
};
|
|
302
296
|
};
|
|
303
297
|
cloud: {
|
|
304
298
|
count: bigint;
|
|
305
|
-
uploadCount: bigint;
|
|
306
|
-
downloadCount: bigint;
|
|
307
299
|
size: bigint;
|
|
308
|
-
uploadBandwidth: bigint;
|
|
309
|
-
downloadBandwidth: bigint;
|
|
310
300
|
maxCount: bigint | null;
|
|
311
301
|
maxSize: bigint | null;
|
|
312
|
-
maxDownloadBandwidth: bigint | null;
|
|
313
|
-
maxUploadBandwidth: bigint | null;
|
|
314
|
-
maxDownloadCount: bigint | null;
|
|
315
|
-
maxUploadCount: bigint | null;
|
|
316
302
|
};
|
|
317
303
|
};
|
|
318
304
|
}, unknown>>;
|
|
@@ -474,10 +460,10 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
474
460
|
usersBase: bigint | null;
|
|
475
461
|
usersUnit: bigint | null;
|
|
476
462
|
usersPrice: number | null;
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
463
|
+
perFileSize: bigint | null;
|
|
464
|
+
perFileSizeBase: bigint | null;
|
|
465
|
+
perFileSizeUnit: bigint | null;
|
|
466
|
+
perFileSizePrice: number | null;
|
|
481
467
|
bandwidth: bigint | null;
|
|
482
468
|
bandwidthBase: bigint | null;
|
|
483
469
|
bandwidthUnit: bigint | null;
|
|
@@ -497,10 +483,10 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
497
483
|
usersBase: bigint | null;
|
|
498
484
|
usersUnit: bigint | null;
|
|
499
485
|
usersPrice: number | null;
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
486
|
+
perFileSize: bigint | null;
|
|
487
|
+
perFileSizeBase: bigint | null;
|
|
488
|
+
perFileSizeUnit: bigint | null;
|
|
489
|
+
perFileSizePrice: number | null;
|
|
504
490
|
bandwidth: bigint | null;
|
|
505
491
|
bandwidthBase: bigint | null;
|
|
506
492
|
bandwidthUnit: bigint | null;
|
|
@@ -701,9 +687,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
701
687
|
usersBase: bigint | null;
|
|
702
688
|
usersUnit: bigint | null;
|
|
703
689
|
usersPrice: number | null;
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
690
|
+
perFileSizeBase: bigint | null;
|
|
691
|
+
perFileSizeUnit: bigint | null;
|
|
692
|
+
perFileSizePrice: number | null;
|
|
707
693
|
bandwidthBase: bigint | null;
|
|
708
694
|
bandwidthUnit: bigint | null;
|
|
709
695
|
bandwidthPrice: number | null;
|
|
@@ -712,7 +698,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
712
698
|
totalStorageSizePrice: number | null;
|
|
713
699
|
devsMax: bigint | null;
|
|
714
700
|
usersMax: bigint | null;
|
|
715
|
-
|
|
701
|
+
perFileSizeMax: bigint | null;
|
|
716
702
|
bandwidthMax: bigint | null;
|
|
717
703
|
totalStorageSizeMax: bigint | null;
|
|
718
704
|
};
|
|
@@ -733,9 +719,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
733
719
|
usersBase: bigint | null;
|
|
734
720
|
usersUnit: bigint | null;
|
|
735
721
|
usersPrice: number | null;
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
722
|
+
perFileSizeBase: bigint | null;
|
|
723
|
+
perFileSizeUnit: bigint | null;
|
|
724
|
+
perFileSizePrice: number | null;
|
|
739
725
|
bandwidthBase: bigint | null;
|
|
740
726
|
bandwidthUnit: bigint | null;
|
|
741
727
|
bandwidthPrice: number | null;
|
|
@@ -744,7 +730,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
744
730
|
totalStorageSizePrice: number | null;
|
|
745
731
|
devsMax: bigint | null;
|
|
746
732
|
usersMax: bigint | null;
|
|
747
|
-
|
|
733
|
+
perFileSizeMax: bigint | null;
|
|
748
734
|
bandwidthMax: bigint | null;
|
|
749
735
|
totalStorageSizeMax: bigint | null;
|
|
750
736
|
};
|
|
@@ -804,14 +790,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
804
790
|
_output_in: {
|
|
805
791
|
id: string;
|
|
806
792
|
cloudNodeDaysForDelete: number;
|
|
807
|
-
|
|
808
|
-
|
|
793
|
+
historyMaxFileCount: number;
|
|
794
|
+
historyFileDaysForDelete: number | null;
|
|
809
795
|
};
|
|
810
796
|
_output_out: {
|
|
811
797
|
id: string;
|
|
812
798
|
cloudNodeDaysForDelete: number;
|
|
813
|
-
|
|
814
|
-
|
|
799
|
+
historyMaxFileCount: number;
|
|
800
|
+
historyFileDaysForDelete: number | null;
|
|
815
801
|
};
|
|
816
802
|
}, unknown>>;
|
|
817
803
|
};
|
|
@@ -937,25 +923,25 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
937
923
|
};
|
|
938
924
|
_input_in: {
|
|
939
925
|
cloudNodeDaysForDelete?: number | null | undefined;
|
|
940
|
-
|
|
941
|
-
|
|
926
|
+
historyMaxFileCount?: number | null | undefined;
|
|
927
|
+
historyFileDaysForDelete?: number | null | undefined;
|
|
942
928
|
};
|
|
943
929
|
_input_out: {
|
|
944
930
|
cloudNodeDaysForDelete?: number | null | undefined;
|
|
945
|
-
|
|
946
|
-
|
|
931
|
+
historyMaxFileCount?: number | null | undefined;
|
|
932
|
+
historyFileDaysForDelete?: number | null | undefined;
|
|
947
933
|
};
|
|
948
934
|
_output_in: {
|
|
949
935
|
id: string;
|
|
950
936
|
cloudNodeDaysForDelete: number;
|
|
951
|
-
|
|
952
|
-
|
|
937
|
+
historyMaxFileCount: number;
|
|
938
|
+
historyFileDaysForDelete: number | null;
|
|
953
939
|
};
|
|
954
940
|
_output_out: {
|
|
955
941
|
id: string;
|
|
956
942
|
cloudNodeDaysForDelete: number;
|
|
957
|
-
|
|
958
|
-
|
|
943
|
+
historyMaxFileCount: number;
|
|
944
|
+
historyFileDaysForDelete: number | null;
|
|
959
945
|
};
|
|
960
946
|
}, unknown>>;
|
|
961
947
|
};
|
|
@@ -1945,11 +1931,13 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
1945
1931
|
};
|
|
1946
1932
|
_output_in: {
|
|
1947
1933
|
sessionId: string;
|
|
1934
|
+
userId: string;
|
|
1948
1935
|
} & {
|
|
1949
1936
|
masterKeySalt: string;
|
|
1950
1937
|
};
|
|
1951
1938
|
_output_out: {
|
|
1952
1939
|
sessionId: string;
|
|
1940
|
+
userId: string;
|
|
1953
1941
|
} & {
|
|
1954
1942
|
masterKeySalt: string;
|
|
1955
1943
|
};
|
|
@@ -2769,7 +2757,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2769
2757
|
};
|
|
2770
2758
|
};
|
|
2771
2759
|
cloud: {
|
|
2772
|
-
|
|
2760
|
+
addFileToHistory: {
|
|
2773
2761
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
2774
2762
|
_config: import("@trpc/server").RootConfig<{
|
|
2775
2763
|
ctx: {
|
|
@@ -2816,11 +2804,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2816
2804
|
ls: TranslationFunctions;
|
|
2817
2805
|
};
|
|
2818
2806
|
_input_in: {
|
|
2819
|
-
|
|
2807
|
+
fileId: string;
|
|
2820
2808
|
nodeId: string;
|
|
2821
2809
|
};
|
|
2822
2810
|
_input_out: {
|
|
2823
|
-
|
|
2811
|
+
fileId: string;
|
|
2824
2812
|
nodeId: string;
|
|
2825
2813
|
};
|
|
2826
2814
|
_output_in: {
|
|
@@ -2832,7 +2820,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2832
2820
|
type: "FILE" | "FOLDER";
|
|
2833
2821
|
parentId: string | null;
|
|
2834
2822
|
isFavorite: boolean;
|
|
2835
|
-
|
|
2823
|
+
currentFileId: string | null;
|
|
2836
2824
|
} & {
|
|
2837
2825
|
users: [{
|
|
2838
2826
|
id: string;
|
|
@@ -2868,9 +2856,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2868
2856
|
storageType: "s3" | "lite";
|
|
2869
2857
|
sizeBefore: bigint;
|
|
2870
2858
|
md5Encrypted: string;
|
|
2871
|
-
userAppUserId: string;
|
|
2872
|
-
userAppAppId: string;
|
|
2873
|
-
validatedAt: Date | null;
|
|
2874
2859
|
access: {
|
|
2875
2860
|
key: string;
|
|
2876
2861
|
sharedByPubKey: string;
|
|
@@ -2884,9 +2869,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2884
2869
|
storageType: "s3" | "lite";
|
|
2885
2870
|
sizeBefore: bigint;
|
|
2886
2871
|
md5Encrypted: string;
|
|
2887
|
-
userAppUserId: string;
|
|
2888
|
-
userAppAppId: string;
|
|
2889
|
-
validatedAt: Date | null;
|
|
2890
2872
|
access: {
|
|
2891
2873
|
key: string;
|
|
2892
2874
|
sharedByPubKey: string;
|
|
@@ -2901,7 +2883,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2901
2883
|
type: "FILE" | "FOLDER";
|
|
2902
2884
|
parentId: string | null;
|
|
2903
2885
|
isFavorite: boolean;
|
|
2904
|
-
|
|
2886
|
+
currentFileId: string | null;
|
|
2905
2887
|
} & {
|
|
2906
2888
|
users: [{
|
|
2907
2889
|
id: string;
|
|
@@ -2933,7 +2915,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2933
2915
|
type: "FILE" | "FOLDER";
|
|
2934
2916
|
parentId: string | null;
|
|
2935
2917
|
isFavorite: boolean;
|
|
2936
|
-
|
|
2918
|
+
currentFileId: string | null;
|
|
2937
2919
|
} & {
|
|
2938
2920
|
users: [{
|
|
2939
2921
|
id: string;
|
|
@@ -2977,7 +2959,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2977
2959
|
type: "FILE" | "FOLDER";
|
|
2978
2960
|
parentId: string | null;
|
|
2979
2961
|
isFavorite: boolean;
|
|
2980
|
-
|
|
2962
|
+
currentFileId: string | null;
|
|
2981
2963
|
} & {
|
|
2982
2964
|
users: [{
|
|
2983
2965
|
id: string;
|
|
@@ -3013,9 +2995,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3013
2995
|
storageType: "s3" | "lite";
|
|
3014
2996
|
sizeBefore: bigint;
|
|
3015
2997
|
md5Encrypted: string;
|
|
3016
|
-
userAppUserId: string;
|
|
3017
|
-
userAppAppId: string;
|
|
3018
|
-
validatedAt: Date | null;
|
|
3019
2998
|
access: {
|
|
3020
2999
|
key: string;
|
|
3021
3000
|
sharedByPubKey: string;
|
|
@@ -3029,9 +3008,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3029
3008
|
storageType: "s3" | "lite";
|
|
3030
3009
|
sizeBefore: bigint;
|
|
3031
3010
|
md5Encrypted: string;
|
|
3032
|
-
userAppUserId: string;
|
|
3033
|
-
userAppAppId: string;
|
|
3034
|
-
validatedAt: Date | null;
|
|
3035
3011
|
access: {
|
|
3036
3012
|
key: string;
|
|
3037
3013
|
sharedByPubKey: string;
|
|
@@ -3046,7 +3022,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3046
3022
|
type: "FILE" | "FOLDER";
|
|
3047
3023
|
parentId: string | null;
|
|
3048
3024
|
isFavorite: boolean;
|
|
3049
|
-
|
|
3025
|
+
currentFileId: string | null;
|
|
3050
3026
|
} & {
|
|
3051
3027
|
users: [{
|
|
3052
3028
|
id: string;
|
|
@@ -3078,7 +3054,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3078
3054
|
type: "FILE" | "FOLDER";
|
|
3079
3055
|
parentId: string | null;
|
|
3080
3056
|
isFavorite: boolean;
|
|
3081
|
-
|
|
3057
|
+
currentFileId: string | null;
|
|
3082
3058
|
} & {
|
|
3083
3059
|
users: [{
|
|
3084
3060
|
id: string;
|
|
@@ -3115,7 +3091,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3115
3091
|
};
|
|
3116
3092
|
}, unknown>>;
|
|
3117
3093
|
};
|
|
3118
|
-
|
|
3094
|
+
deleteFile: {
|
|
3119
3095
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
3120
3096
|
_config: import("@trpc/server").RootConfig<{
|
|
3121
3097
|
ctx: {
|
|
@@ -3162,11 +3138,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3162
3138
|
ls: TranslationFunctions;
|
|
3163
3139
|
};
|
|
3164
3140
|
_input_in: {
|
|
3165
|
-
|
|
3141
|
+
fileId: string;
|
|
3166
3142
|
nodeId: string;
|
|
3167
3143
|
};
|
|
3168
3144
|
_input_out: {
|
|
3169
|
-
|
|
3145
|
+
fileId: string;
|
|
3170
3146
|
nodeId: string;
|
|
3171
3147
|
};
|
|
3172
3148
|
_output_in: {
|
|
@@ -3177,7 +3153,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3177
3153
|
};
|
|
3178
3154
|
}, unknown>>;
|
|
3179
3155
|
};
|
|
3180
|
-
|
|
3156
|
+
fileById: {
|
|
3181
3157
|
query: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"query", {
|
|
3182
3158
|
_config: import("@trpc/server").RootConfig<{
|
|
3183
3159
|
ctx: {
|
|
@@ -3237,9 +3213,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3237
3213
|
storageType: "s3" | "lite";
|
|
3238
3214
|
sizeBefore: bigint;
|
|
3239
3215
|
md5Encrypted: string;
|
|
3240
|
-
userAppUserId: string;
|
|
3241
|
-
userAppAppId: string;
|
|
3242
|
-
validatedAt: Date | null;
|
|
3243
3216
|
access: {
|
|
3244
3217
|
key: string;
|
|
3245
3218
|
sharedByPubKey: string;
|
|
@@ -3253,9 +3226,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3253
3226
|
storageType: "s3" | "lite";
|
|
3254
3227
|
sizeBefore: bigint;
|
|
3255
3228
|
md5Encrypted: string;
|
|
3256
|
-
userAppUserId: string;
|
|
3257
|
-
userAppAppId: string;
|
|
3258
|
-
validatedAt: Date | null;
|
|
3259
3229
|
access: {
|
|
3260
3230
|
key: string;
|
|
3261
3231
|
sharedByPubKey: string;
|
|
@@ -3263,7 +3233,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3263
3233
|
};
|
|
3264
3234
|
}, unknown>>;
|
|
3265
3235
|
};
|
|
3266
|
-
|
|
3236
|
+
fileContentById: {
|
|
3267
3237
|
query: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"query", {
|
|
3268
3238
|
_config: import("@trpc/server").RootConfig<{
|
|
3269
3239
|
ctx: {
|
|
@@ -3417,7 +3387,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3417
3387
|
};
|
|
3418
3388
|
}, unknown>>;
|
|
3419
3389
|
};
|
|
3420
|
-
|
|
3390
|
+
fileContentByIds: {
|
|
3421
3391
|
query: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"query", {
|
|
3422
3392
|
_config: import("@trpc/server").RootConfig<{
|
|
3423
3393
|
ctx: {
|
|
@@ -3571,7 +3541,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3571
3541
|
})[];
|
|
3572
3542
|
}, unknown>>;
|
|
3573
3543
|
};
|
|
3574
|
-
|
|
3544
|
+
fileSharedWithMe: {
|
|
3575
3545
|
query: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"query", {
|
|
3576
3546
|
_config: import("@trpc/server").RootConfig<{
|
|
3577
3547
|
ctx: {
|
|
@@ -3675,15 +3645,15 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3675
3645
|
};
|
|
3676
3646
|
_input_in: {
|
|
3677
3647
|
key: string;
|
|
3678
|
-
|
|
3679
|
-
|
|
3648
|
+
fileId: string;
|
|
3649
|
+
filename: string;
|
|
3680
3650
|
nodeId: string | null;
|
|
3681
3651
|
nameKey: string;
|
|
3682
3652
|
};
|
|
3683
3653
|
_input_out: {
|
|
3684
3654
|
key: string;
|
|
3685
|
-
|
|
3686
|
-
|
|
3655
|
+
fileId: string;
|
|
3656
|
+
filename: string;
|
|
3687
3657
|
nodeId: string | null;
|
|
3688
3658
|
nameKey: string;
|
|
3689
3659
|
};
|
|
@@ -3696,7 +3666,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3696
3666
|
type: "FILE" | "FOLDER";
|
|
3697
3667
|
parentId: string | null;
|
|
3698
3668
|
isFavorite: boolean;
|
|
3699
|
-
|
|
3669
|
+
currentFileId: string | null;
|
|
3700
3670
|
} & {
|
|
3701
3671
|
users: [{
|
|
3702
3672
|
id: string;
|
|
@@ -3732,9 +3702,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3732
3702
|
storageType: "s3" | "lite";
|
|
3733
3703
|
sizeBefore: bigint;
|
|
3734
3704
|
md5Encrypted: string;
|
|
3735
|
-
userAppUserId: string;
|
|
3736
|
-
userAppAppId: string;
|
|
3737
|
-
validatedAt: Date | null;
|
|
3738
3705
|
access: {
|
|
3739
3706
|
key: string;
|
|
3740
3707
|
sharedByPubKey: string;
|
|
@@ -3748,9 +3715,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3748
3715
|
storageType: "s3" | "lite";
|
|
3749
3716
|
sizeBefore: bigint;
|
|
3750
3717
|
md5Encrypted: string;
|
|
3751
|
-
userAppUserId: string;
|
|
3752
|
-
userAppAppId: string;
|
|
3753
|
-
validatedAt: Date | null;
|
|
3754
3718
|
access: {
|
|
3755
3719
|
key: string;
|
|
3756
3720
|
sharedByPubKey: string;
|
|
@@ -3765,7 +3729,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3765
3729
|
type: "FILE" | "FOLDER";
|
|
3766
3730
|
parentId: string | null;
|
|
3767
3731
|
isFavorite: boolean;
|
|
3768
|
-
|
|
3732
|
+
currentFileId: string | null;
|
|
3769
3733
|
} & {
|
|
3770
3734
|
users: [{
|
|
3771
3735
|
id: string;
|
|
@@ -3797,7 +3761,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3797
3761
|
type: "FILE" | "FOLDER";
|
|
3798
3762
|
parentId: string | null;
|
|
3799
3763
|
isFavorite: boolean;
|
|
3800
|
-
|
|
3764
|
+
currentFileId: string | null;
|
|
3801
3765
|
} & {
|
|
3802
3766
|
users: [{
|
|
3803
3767
|
id: string;
|
|
@@ -3841,7 +3805,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3841
3805
|
type: "FILE" | "FOLDER";
|
|
3842
3806
|
parentId: string | null;
|
|
3843
3807
|
isFavorite: boolean;
|
|
3844
|
-
|
|
3808
|
+
currentFileId: string | null;
|
|
3845
3809
|
} & {
|
|
3846
3810
|
users: [{
|
|
3847
3811
|
id: string;
|
|
@@ -3877,9 +3841,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3877
3841
|
storageType: "s3" | "lite";
|
|
3878
3842
|
sizeBefore: bigint;
|
|
3879
3843
|
md5Encrypted: string;
|
|
3880
|
-
userAppUserId: string;
|
|
3881
|
-
userAppAppId: string;
|
|
3882
|
-
validatedAt: Date | null;
|
|
3883
3844
|
access: {
|
|
3884
3845
|
key: string;
|
|
3885
3846
|
sharedByPubKey: string;
|
|
@@ -3893,9 +3854,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3893
3854
|
storageType: "s3" | "lite";
|
|
3894
3855
|
sizeBefore: bigint;
|
|
3895
3856
|
md5Encrypted: string;
|
|
3896
|
-
userAppUserId: string;
|
|
3897
|
-
userAppAppId: string;
|
|
3898
|
-
validatedAt: Date | null;
|
|
3899
3857
|
access: {
|
|
3900
3858
|
key: string;
|
|
3901
3859
|
sharedByPubKey: string;
|
|
@@ -3910,7 +3868,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3910
3868
|
type: "FILE" | "FOLDER";
|
|
3911
3869
|
parentId: string | null;
|
|
3912
3870
|
isFavorite: boolean;
|
|
3913
|
-
|
|
3871
|
+
currentFileId: string | null;
|
|
3914
3872
|
} & {
|
|
3915
3873
|
users: [{
|
|
3916
3874
|
id: string;
|
|
@@ -3942,7 +3900,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3942
3900
|
type: "FILE" | "FOLDER";
|
|
3943
3901
|
parentId: string | null;
|
|
3944
3902
|
isFavorite: boolean;
|
|
3945
|
-
|
|
3903
|
+
currentFileId: string | null;
|
|
3946
3904
|
} & {
|
|
3947
3905
|
users: [{
|
|
3948
3906
|
id: string;
|
|
@@ -4042,8 +4000,8 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4042
4000
|
min?: Date | undefined;
|
|
4043
4001
|
} | undefined;
|
|
4044
4002
|
size?: {
|
|
4045
|
-
max?: bigint | undefined;
|
|
4046
|
-
min?: bigint | undefined;
|
|
4003
|
+
max?: string | bigint | undefined;
|
|
4004
|
+
min?: string | bigint | undefined;
|
|
4047
4005
|
} | undefined;
|
|
4048
4006
|
appIds?: string[] | undefined;
|
|
4049
4007
|
sharedCount?: {
|
|
@@ -4080,72 +4038,90 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4080
4038
|
} | undefined;
|
|
4081
4039
|
};
|
|
4082
4040
|
_output_in: {
|
|
4083
|
-
|
|
4084
|
-
|
|
4085
|
-
pub: string;
|
|
4086
|
-
encPriv: string;
|
|
4087
|
-
}[];
|
|
4088
|
-
nodes: {
|
|
4089
|
-
id: string;
|
|
4090
|
-
createdAt: Date;
|
|
4091
|
-
deletedAt: Date | null;
|
|
4092
|
-
name: string;
|
|
4093
|
-
updatedAt: Date;
|
|
4094
|
-
history: {
|
|
4095
|
-
createdAt: Date;
|
|
4096
|
-
dataId: string;
|
|
4097
|
-
size: bigint;
|
|
4098
|
-
storageType: "s3" | "lite";
|
|
4099
|
-
}[];
|
|
4100
|
-
access: {
|
|
4041
|
+
data: {
|
|
4042
|
+
keyPairs: {
|
|
4101
4043
|
appId: string;
|
|
4102
|
-
|
|
4103
|
-
|
|
4104
|
-
|
|
4105
|
-
|
|
4044
|
+
pub: string;
|
|
4045
|
+
encPriv: string;
|
|
4046
|
+
}[];
|
|
4047
|
+
nodes: {
|
|
4106
4048
|
id: string;
|
|
4049
|
+
createdAt: Date;
|
|
4050
|
+
deletedAt: Date | null;
|
|
4107
4051
|
name: string;
|
|
4108
|
-
|
|
4109
|
-
|
|
4052
|
+
updatedAt: Date;
|
|
4053
|
+
history: {
|
|
4054
|
+
createdAt: Date;
|
|
4055
|
+
fileId: string;
|
|
4056
|
+
size: bigint;
|
|
4057
|
+
storageType: "s3" | "lite";
|
|
4058
|
+
}[];
|
|
4059
|
+
access: {
|
|
4060
|
+
appId: string;
|
|
4061
|
+
nameKey: string;
|
|
4062
|
+
};
|
|
4063
|
+
totalSize: bigint;
|
|
4064
|
+
breadcrumb: {
|
|
4065
|
+
id: string;
|
|
4066
|
+
name: string;
|
|
4067
|
+
nameKey: string | null;
|
|
4068
|
+
pubKey: string;
|
|
4069
|
+
}[];
|
|
4070
|
+
sharedCount: number;
|
|
4110
4071
|
}[];
|
|
4111
|
-
|
|
4112
|
-
|
|
4072
|
+
};
|
|
4073
|
+
pagination: {
|
|
4074
|
+
next: number | null;
|
|
4075
|
+
prev: number | null;
|
|
4076
|
+
last: number;
|
|
4077
|
+
perPage: number;
|
|
4078
|
+
totalItems: number;
|
|
4079
|
+
};
|
|
4113
4080
|
};
|
|
4114
4081
|
_output_out: {
|
|
4115
|
-
|
|
4116
|
-
|
|
4117
|
-
pub: string;
|
|
4118
|
-
encPriv: string;
|
|
4119
|
-
}[];
|
|
4120
|
-
nodes: {
|
|
4121
|
-
id: string;
|
|
4122
|
-
createdAt: Date;
|
|
4123
|
-
deletedAt: Date | null;
|
|
4124
|
-
name: string;
|
|
4125
|
-
updatedAt: Date;
|
|
4126
|
-
history: {
|
|
4127
|
-
createdAt: Date;
|
|
4128
|
-
dataId: string;
|
|
4129
|
-
size: bigint;
|
|
4130
|
-
storageType: "s3" | "lite";
|
|
4131
|
-
}[];
|
|
4132
|
-
access: {
|
|
4082
|
+
data: {
|
|
4083
|
+
keyPairs: {
|
|
4133
4084
|
appId: string;
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
|
|
4085
|
+
pub: string;
|
|
4086
|
+
encPriv: string;
|
|
4087
|
+
}[];
|
|
4088
|
+
nodes: {
|
|
4138
4089
|
id: string;
|
|
4090
|
+
createdAt: Date;
|
|
4091
|
+
deletedAt: Date | null;
|
|
4139
4092
|
name: string;
|
|
4140
|
-
|
|
4141
|
-
|
|
4093
|
+
updatedAt: Date;
|
|
4094
|
+
history: {
|
|
4095
|
+
createdAt: Date;
|
|
4096
|
+
fileId: string;
|
|
4097
|
+
size: bigint;
|
|
4098
|
+
storageType: "s3" | "lite";
|
|
4099
|
+
}[];
|
|
4100
|
+
access: {
|
|
4101
|
+
appId: string;
|
|
4102
|
+
nameKey: string;
|
|
4103
|
+
};
|
|
4104
|
+
totalSize: bigint;
|
|
4105
|
+
breadcrumb: {
|
|
4106
|
+
id: string;
|
|
4107
|
+
name: string;
|
|
4108
|
+
nameKey: string | null;
|
|
4109
|
+
pubKey: string;
|
|
4110
|
+
}[];
|
|
4111
|
+
sharedCount: number;
|
|
4142
4112
|
}[];
|
|
4143
|
-
|
|
4144
|
-
|
|
4113
|
+
};
|
|
4114
|
+
pagination: {
|
|
4115
|
+
next: number | null;
|
|
4116
|
+
prev: number | null;
|
|
4117
|
+
last: number;
|
|
4118
|
+
perPage: number;
|
|
4119
|
+
totalItems: number;
|
|
4120
|
+
};
|
|
4145
4121
|
};
|
|
4146
4122
|
}, unknown>>;
|
|
4147
4123
|
};
|
|
4148
|
-
|
|
4124
|
+
shareFileInHistory: {
|
|
4149
4125
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4150
4126
|
_config: import("@trpc/server").RootConfig<{
|
|
4151
4127
|
ctx: {
|
|
@@ -4196,7 +4172,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4196
4172
|
id: string;
|
|
4197
4173
|
key: string;
|
|
4198
4174
|
}[];
|
|
4199
|
-
|
|
4175
|
+
fileId: string;
|
|
4200
4176
|
nodeId: string;
|
|
4201
4177
|
};
|
|
4202
4178
|
_input_out: {
|
|
@@ -4204,7 +4180,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4204
4180
|
id: string;
|
|
4205
4181
|
key: string;
|
|
4206
4182
|
}[];
|
|
4207
|
-
|
|
4183
|
+
fileId: string;
|
|
4208
4184
|
nodeId: string;
|
|
4209
4185
|
};
|
|
4210
4186
|
_output_in: {
|
|
@@ -4215,7 +4191,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4215
4191
|
};
|
|
4216
4192
|
}, unknown>>;
|
|
4217
4193
|
};
|
|
4218
|
-
|
|
4194
|
+
uploadFileEnd: {
|
|
4219
4195
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4220
4196
|
_config: import("@trpc/server").RootConfig<{
|
|
4221
4197
|
ctx: {
|
|
@@ -4262,10 +4238,10 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4262
4238
|
ls: TranslationFunctions;
|
|
4263
4239
|
};
|
|
4264
4240
|
_input_in: {
|
|
4265
|
-
|
|
4241
|
+
fileId: string;
|
|
4266
4242
|
};
|
|
4267
4243
|
_input_out: {
|
|
4268
|
-
|
|
4244
|
+
fileId: string;
|
|
4269
4245
|
};
|
|
4270
4246
|
_output_in: {
|
|
4271
4247
|
isUploadEnded: boolean;
|
|
@@ -4275,7 +4251,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4275
4251
|
};
|
|
4276
4252
|
}, unknown>>;
|
|
4277
4253
|
};
|
|
4278
|
-
|
|
4254
|
+
uploadFilePartEnd: {
|
|
4279
4255
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4280
4256
|
_config: import("@trpc/server").RootConfig<{
|
|
4281
4257
|
ctx: {
|
|
@@ -4322,12 +4298,12 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4322
4298
|
ls: TranslationFunctions;
|
|
4323
4299
|
};
|
|
4324
4300
|
_input_in: {
|
|
4325
|
-
|
|
4301
|
+
fileId: string;
|
|
4326
4302
|
md5: string;
|
|
4327
4303
|
order: number;
|
|
4328
4304
|
};
|
|
4329
4305
|
_input_out: {
|
|
4330
|
-
|
|
4306
|
+
fileId: string;
|
|
4331
4307
|
md5: string;
|
|
4332
4308
|
order: number;
|
|
4333
4309
|
};
|
|
@@ -4339,7 +4315,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4339
4315
|
};
|
|
4340
4316
|
}, unknown>>;
|
|
4341
4317
|
};
|
|
4342
|
-
|
|
4318
|
+
uploadFile: {
|
|
4343
4319
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4344
4320
|
_config: import("@trpc/server").RootConfig<{
|
|
4345
4321
|
ctx: {
|
|
@@ -4386,40 +4362,40 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4386
4362
|
ls: TranslationFunctions;
|
|
4387
4363
|
};
|
|
4388
4364
|
_input_in: {
|
|
4389
|
-
|
|
4365
|
+
fileSize: bigint;
|
|
4390
4366
|
md5: string;
|
|
4391
4367
|
md5Encrypted: string;
|
|
4392
|
-
|
|
4393
|
-
|
|
4368
|
+
fileKey: string;
|
|
4369
|
+
fileSizeBefore: bigint;
|
|
4394
4370
|
};
|
|
4395
4371
|
_input_out: {
|
|
4396
|
-
|
|
4372
|
+
fileSize: bigint;
|
|
4397
4373
|
md5: string;
|
|
4398
4374
|
md5Encrypted: string;
|
|
4399
|
-
|
|
4400
|
-
|
|
4375
|
+
fileKey: string;
|
|
4376
|
+
fileSizeBefore: bigint;
|
|
4401
4377
|
};
|
|
4402
4378
|
_output_in: {
|
|
4403
|
-
|
|
4379
|
+
fileId: string;
|
|
4380
|
+
filePartSize: bigint;
|
|
4404
4381
|
parts: {
|
|
4405
4382
|
fields: Record<string, string>;
|
|
4406
4383
|
url: string;
|
|
4407
4384
|
order: number;
|
|
4408
4385
|
}[];
|
|
4409
|
-
dataPartSize: bigint;
|
|
4410
4386
|
};
|
|
4411
4387
|
_output_out: {
|
|
4412
|
-
|
|
4388
|
+
fileId: string;
|
|
4389
|
+
filePartSize: bigint;
|
|
4413
4390
|
parts: {
|
|
4414
4391
|
fields: Record<string, string>;
|
|
4415
4392
|
url: string;
|
|
4416
4393
|
order: number;
|
|
4417
4394
|
}[];
|
|
4418
|
-
dataPartSize: bigint;
|
|
4419
4395
|
};
|
|
4420
4396
|
}, unknown>>;
|
|
4421
4397
|
};
|
|
4422
|
-
|
|
4398
|
+
uploadLiteFile: {
|
|
4423
4399
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4424
4400
|
_config: import("@trpc/server").RootConfig<{
|
|
4425
4401
|
ctx: {
|
|
@@ -4466,20 +4442,20 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4466
4442
|
ls: TranslationFunctions;
|
|
4467
4443
|
};
|
|
4468
4444
|
_input_in: {
|
|
4469
|
-
|
|
4445
|
+
fileSize: bigint;
|
|
4470
4446
|
md5: string;
|
|
4471
4447
|
content: Buffer;
|
|
4472
4448
|
md5Encrypted: string;
|
|
4473
|
-
|
|
4474
|
-
|
|
4449
|
+
fileKey: string;
|
|
4450
|
+
fileSizeBefore: bigint;
|
|
4475
4451
|
};
|
|
4476
4452
|
_input_out: {
|
|
4477
|
-
|
|
4453
|
+
fileSize: bigint;
|
|
4478
4454
|
md5: string;
|
|
4479
4455
|
content: Buffer;
|
|
4480
4456
|
md5Encrypted: string;
|
|
4481
|
-
|
|
4482
|
-
|
|
4457
|
+
fileKey: string;
|
|
4458
|
+
fileSizeBefore: bigint;
|
|
4483
4459
|
};
|
|
4484
4460
|
_output_in: {
|
|
4485
4461
|
id: string;
|
|
@@ -4554,7 +4530,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4554
4530
|
type: "FILE" | "FOLDER";
|
|
4555
4531
|
parentId: string | null;
|
|
4556
4532
|
isFavorite: boolean;
|
|
4557
|
-
|
|
4533
|
+
currentFileId: string | null;
|
|
4558
4534
|
} & {
|
|
4559
4535
|
users: [{
|
|
4560
4536
|
id: string;
|
|
@@ -4590,9 +4566,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4590
4566
|
storageType: "s3" | "lite";
|
|
4591
4567
|
sizeBefore: bigint;
|
|
4592
4568
|
md5Encrypted: string;
|
|
4593
|
-
userAppUserId: string;
|
|
4594
|
-
userAppAppId: string;
|
|
4595
|
-
validatedAt: Date | null;
|
|
4596
4569
|
access: {
|
|
4597
4570
|
key: string;
|
|
4598
4571
|
sharedByPubKey: string;
|
|
@@ -4606,9 +4579,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4606
4579
|
storageType: "s3" | "lite";
|
|
4607
4580
|
sizeBefore: bigint;
|
|
4608
4581
|
md5Encrypted: string;
|
|
4609
|
-
userAppUserId: string;
|
|
4610
|
-
userAppAppId: string;
|
|
4611
|
-
validatedAt: Date | null;
|
|
4612
4582
|
access: {
|
|
4613
4583
|
key: string;
|
|
4614
4584
|
sharedByPubKey: string;
|
|
@@ -4623,7 +4593,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4623
4593
|
type: "FILE" | "FOLDER";
|
|
4624
4594
|
parentId: string | null;
|
|
4625
4595
|
isFavorite: boolean;
|
|
4626
|
-
|
|
4596
|
+
currentFileId: string | null;
|
|
4627
4597
|
} & {
|
|
4628
4598
|
users: [{
|
|
4629
4599
|
id: string;
|
|
@@ -4655,7 +4625,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4655
4625
|
type: "FILE" | "FOLDER";
|
|
4656
4626
|
parentId: string | null;
|
|
4657
4627
|
isFavorite: boolean;
|
|
4658
|
-
|
|
4628
|
+
currentFileId: string | null;
|
|
4659
4629
|
} & {
|
|
4660
4630
|
users: [{
|
|
4661
4631
|
id: string;
|
|
@@ -4699,7 +4669,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4699
4669
|
type: "FILE" | "FOLDER";
|
|
4700
4670
|
parentId: string | null;
|
|
4701
4671
|
isFavorite: boolean;
|
|
4702
|
-
|
|
4672
|
+
currentFileId: string | null;
|
|
4703
4673
|
} & {
|
|
4704
4674
|
users: [{
|
|
4705
4675
|
id: string;
|
|
@@ -4735,9 +4705,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4735
4705
|
storageType: "s3" | "lite";
|
|
4736
4706
|
sizeBefore: bigint;
|
|
4737
4707
|
md5Encrypted: string;
|
|
4738
|
-
userAppUserId: string;
|
|
4739
|
-
userAppAppId: string;
|
|
4740
|
-
validatedAt: Date | null;
|
|
4741
4708
|
access: {
|
|
4742
4709
|
key: string;
|
|
4743
4710
|
sharedByPubKey: string;
|
|
@@ -4751,9 +4718,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4751
4718
|
storageType: "s3" | "lite";
|
|
4752
4719
|
sizeBefore: bigint;
|
|
4753
4720
|
md5Encrypted: string;
|
|
4754
|
-
userAppUserId: string;
|
|
4755
|
-
userAppAppId: string;
|
|
4756
|
-
validatedAt: Date | null;
|
|
4757
4721
|
access: {
|
|
4758
4722
|
key: string;
|
|
4759
4723
|
sharedByPubKey: string;
|
|
@@ -4768,7 +4732,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4768
4732
|
type: "FILE" | "FOLDER";
|
|
4769
4733
|
parentId: string | null;
|
|
4770
4734
|
isFavorite: boolean;
|
|
4771
|
-
|
|
4735
|
+
currentFileId: string | null;
|
|
4772
4736
|
} & {
|
|
4773
4737
|
users: [{
|
|
4774
4738
|
id: string;
|
|
@@ -4800,7 +4764,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4800
4764
|
type: "FILE" | "FOLDER";
|
|
4801
4765
|
parentId: string | null;
|
|
4802
4766
|
isFavorite: boolean;
|
|
4803
|
-
|
|
4767
|
+
currentFileId: string | null;
|
|
4804
4768
|
} & {
|
|
4805
4769
|
users: [{
|
|
4806
4770
|
id: string;
|
|
@@ -5404,7 +5368,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5404
5368
|
type: "FILE" | "FOLDER";
|
|
5405
5369
|
parentId: string | null;
|
|
5406
5370
|
isFavorite: boolean;
|
|
5407
|
-
|
|
5371
|
+
currentFileId: string | null;
|
|
5408
5372
|
} & {
|
|
5409
5373
|
users: [{
|
|
5410
5374
|
id: string;
|
|
@@ -5441,7 +5405,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5441
5405
|
type: "FILE" | "FOLDER";
|
|
5442
5406
|
parentId: string | null;
|
|
5443
5407
|
isFavorite: boolean;
|
|
5444
|
-
|
|
5408
|
+
currentFileId: string | null;
|
|
5445
5409
|
} & {
|
|
5446
5410
|
users: [{
|
|
5447
5411
|
id: string;
|
|
@@ -5534,7 +5498,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5534
5498
|
type: "FILE" | "FOLDER";
|
|
5535
5499
|
parentId: string | null;
|
|
5536
5500
|
isFavorite: boolean;
|
|
5537
|
-
|
|
5501
|
+
currentFileId: string | null;
|
|
5538
5502
|
} & {
|
|
5539
5503
|
users: [{
|
|
5540
5504
|
id: string;
|
|
@@ -5570,9 +5534,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5570
5534
|
storageType: "s3" | "lite";
|
|
5571
5535
|
sizeBefore: bigint;
|
|
5572
5536
|
md5Encrypted: string;
|
|
5573
|
-
userAppUserId: string;
|
|
5574
|
-
userAppAppId: string;
|
|
5575
|
-
validatedAt: Date | null;
|
|
5576
5537
|
access: {
|
|
5577
5538
|
key: string;
|
|
5578
5539
|
sharedByPubKey: string;
|
|
@@ -5586,9 +5547,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5586
5547
|
storageType: "s3" | "lite";
|
|
5587
5548
|
sizeBefore: bigint;
|
|
5588
5549
|
md5Encrypted: string;
|
|
5589
|
-
userAppUserId: string;
|
|
5590
|
-
userAppAppId: string;
|
|
5591
|
-
validatedAt: Date | null;
|
|
5592
5550
|
access: {
|
|
5593
5551
|
key: string;
|
|
5594
5552
|
sharedByPubKey: string;
|
|
@@ -5603,7 +5561,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5603
5561
|
type: "FILE" | "FOLDER";
|
|
5604
5562
|
parentId: string | null;
|
|
5605
5563
|
isFavorite: boolean;
|
|
5606
|
-
|
|
5564
|
+
currentFileId: string | null;
|
|
5607
5565
|
} & {
|
|
5608
5566
|
users: [{
|
|
5609
5567
|
id: string;
|
|
@@ -5635,7 +5593,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5635
5593
|
type: "FILE" | "FOLDER";
|
|
5636
5594
|
parentId: string | null;
|
|
5637
5595
|
isFavorite: boolean;
|
|
5638
|
-
|
|
5596
|
+
currentFileId: string | null;
|
|
5639
5597
|
} & {
|
|
5640
5598
|
users: [{
|
|
5641
5599
|
id: string;
|
|
@@ -5679,7 +5637,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5679
5637
|
type: "FILE" | "FOLDER";
|
|
5680
5638
|
parentId: string | null;
|
|
5681
5639
|
isFavorite: boolean;
|
|
5682
|
-
|
|
5640
|
+
currentFileId: string | null;
|
|
5683
5641
|
} & {
|
|
5684
5642
|
users: [{
|
|
5685
5643
|
id: string;
|
|
@@ -5715,9 +5673,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5715
5673
|
storageType: "s3" | "lite";
|
|
5716
5674
|
sizeBefore: bigint;
|
|
5717
5675
|
md5Encrypted: string;
|
|
5718
|
-
userAppUserId: string;
|
|
5719
|
-
userAppAppId: string;
|
|
5720
|
-
validatedAt: Date | null;
|
|
5721
5676
|
access: {
|
|
5722
5677
|
key: string;
|
|
5723
5678
|
sharedByPubKey: string;
|
|
@@ -5731,9 +5686,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5731
5686
|
storageType: "s3" | "lite";
|
|
5732
5687
|
sizeBefore: bigint;
|
|
5733
5688
|
md5Encrypted: string;
|
|
5734
|
-
userAppUserId: string;
|
|
5735
|
-
userAppAppId: string;
|
|
5736
|
-
validatedAt: Date | null;
|
|
5737
5689
|
access: {
|
|
5738
5690
|
key: string;
|
|
5739
5691
|
sharedByPubKey: string;
|
|
@@ -5748,7 +5700,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5748
5700
|
type: "FILE" | "FOLDER";
|
|
5749
5701
|
parentId: string | null;
|
|
5750
5702
|
isFavorite: boolean;
|
|
5751
|
-
|
|
5703
|
+
currentFileId: string | null;
|
|
5752
5704
|
} & {
|
|
5753
5705
|
users: [{
|
|
5754
5706
|
id: string;
|
|
@@ -5780,7 +5732,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5780
5732
|
type: "FILE" | "FOLDER";
|
|
5781
5733
|
parentId: string | null;
|
|
5782
5734
|
isFavorite: boolean;
|
|
5783
|
-
|
|
5735
|
+
currentFileId: string | null;
|
|
5784
5736
|
} & {
|
|
5785
5737
|
users: [{
|
|
5786
5738
|
id: string;
|
|
@@ -5936,7 +5888,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5936
5888
|
type: "FILE" | "FOLDER";
|
|
5937
5889
|
parentId: string | null;
|
|
5938
5890
|
isFavorite: boolean;
|
|
5939
|
-
|
|
5891
|
+
currentFileId: string | null;
|
|
5940
5892
|
} & {
|
|
5941
5893
|
users: [{
|
|
5942
5894
|
id: string;
|
|
@@ -5968,7 +5920,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5968
5920
|
type: "FILE" | "FOLDER";
|
|
5969
5921
|
parentId: string | null;
|
|
5970
5922
|
isFavorite: boolean;
|
|
5971
|
-
|
|
5923
|
+
currentFileId: string | null;
|
|
5972
5924
|
} & {
|
|
5973
5925
|
users: [{
|
|
5974
5926
|
id: string;
|
|
@@ -6054,7 +6006,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6054
6006
|
type: "FILE" | "FOLDER";
|
|
6055
6007
|
parentId: string | null;
|
|
6056
6008
|
isFavorite: boolean;
|
|
6057
|
-
|
|
6009
|
+
currentFileId: string | null;
|
|
6058
6010
|
} & {
|
|
6059
6011
|
users: [{
|
|
6060
6012
|
id: string;
|
|
@@ -6086,7 +6038,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6086
6038
|
type: "FILE" | "FOLDER";
|
|
6087
6039
|
parentId: string | null;
|
|
6088
6040
|
isFavorite: boolean;
|
|
6089
|
-
|
|
6041
|
+
currentFileId: string | null;
|
|
6090
6042
|
} & {
|
|
6091
6043
|
users: [{
|
|
6092
6044
|
id: string;
|
|
@@ -6168,7 +6120,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6168
6120
|
type: "FILE" | "FOLDER";
|
|
6169
6121
|
parentId: string | null;
|
|
6170
6122
|
isFavorite: boolean;
|
|
6171
|
-
|
|
6123
|
+
currentFileId: string | null;
|
|
6172
6124
|
} & {
|
|
6173
6125
|
users: [{
|
|
6174
6126
|
id: string;
|
|
@@ -6200,7 +6152,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6200
6152
|
type: "FILE" | "FOLDER";
|
|
6201
6153
|
parentId: string | null;
|
|
6202
6154
|
isFavorite: boolean;
|
|
6203
|
-
|
|
6155
|
+
currentFileId: string | null;
|
|
6204
6156
|
} & {
|
|
6205
6157
|
users: [{
|
|
6206
6158
|
id: string;
|
|
@@ -6334,24 +6286,24 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6334
6286
|
_input_in: {
|
|
6335
6287
|
userId: string;
|
|
6336
6288
|
nodes: {
|
|
6337
|
-
|
|
6289
|
+
id: string;
|
|
6290
|
+
nameKey: string | null;
|
|
6291
|
+
files: {
|
|
6338
6292
|
id: string;
|
|
6339
6293
|
key: string;
|
|
6340
6294
|
}[];
|
|
6341
|
-
id: string;
|
|
6342
|
-
nameKey: string | null;
|
|
6343
6295
|
}[];
|
|
6344
6296
|
rights: "admin" | "write" | "read";
|
|
6345
6297
|
};
|
|
6346
6298
|
_input_out: {
|
|
6347
6299
|
userId: string;
|
|
6348
6300
|
nodes: {
|
|
6349
|
-
|
|
6301
|
+
id: string;
|
|
6302
|
+
nameKey: string | null;
|
|
6303
|
+
files: {
|
|
6350
6304
|
id: string;
|
|
6351
6305
|
key: string;
|
|
6352
6306
|
}[];
|
|
6353
|
-
id: string;
|
|
6354
|
-
nameKey: string | null;
|
|
6355
6307
|
}[];
|
|
6356
6308
|
rights: "admin" | "write" | "read";
|
|
6357
6309
|
};
|
|
@@ -6492,7 +6444,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6492
6444
|
type: "FILE" | "FOLDER";
|
|
6493
6445
|
parentId: string | null;
|
|
6494
6446
|
isFavorite: boolean;
|
|
6495
|
-
|
|
6447
|
+
currentFileId: string | null;
|
|
6496
6448
|
} & {
|
|
6497
6449
|
users: [{
|
|
6498
6450
|
id: string;
|
|
@@ -6528,9 +6480,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6528
6480
|
storageType: "s3" | "lite";
|
|
6529
6481
|
sizeBefore: bigint;
|
|
6530
6482
|
md5Encrypted: string;
|
|
6531
|
-
userAppUserId: string;
|
|
6532
|
-
userAppAppId: string;
|
|
6533
|
-
validatedAt: Date | null;
|
|
6534
6483
|
access: {
|
|
6535
6484
|
key: string;
|
|
6536
6485
|
sharedByPubKey: string;
|
|
@@ -6544,9 +6493,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6544
6493
|
storageType: "s3" | "lite";
|
|
6545
6494
|
sizeBefore: bigint;
|
|
6546
6495
|
md5Encrypted: string;
|
|
6547
|
-
userAppUserId: string;
|
|
6548
|
-
userAppAppId: string;
|
|
6549
|
-
validatedAt: Date | null;
|
|
6550
6496
|
access: {
|
|
6551
6497
|
key: string;
|
|
6552
6498
|
sharedByPubKey: string;
|
|
@@ -6561,7 +6507,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6561
6507
|
type: "FILE" | "FOLDER";
|
|
6562
6508
|
parentId: string | null;
|
|
6563
6509
|
isFavorite: boolean;
|
|
6564
|
-
|
|
6510
|
+
currentFileId: string | null;
|
|
6565
6511
|
} & {
|
|
6566
6512
|
users: [{
|
|
6567
6513
|
id: string;
|
|
@@ -6593,7 +6539,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6593
6539
|
type: "FILE" | "FOLDER";
|
|
6594
6540
|
parentId: string | null;
|
|
6595
6541
|
isFavorite: boolean;
|
|
6596
|
-
|
|
6542
|
+
currentFileId: string | null;
|
|
6597
6543
|
} & {
|
|
6598
6544
|
users: [{
|
|
6599
6545
|
id: string;
|
|
@@ -6637,7 +6583,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6637
6583
|
type: "FILE" | "FOLDER";
|
|
6638
6584
|
parentId: string | null;
|
|
6639
6585
|
isFavorite: boolean;
|
|
6640
|
-
|
|
6586
|
+
currentFileId: string | null;
|
|
6641
6587
|
} & {
|
|
6642
6588
|
users: [{
|
|
6643
6589
|
id: string;
|
|
@@ -6673,9 +6619,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6673
6619
|
storageType: "s3" | "lite";
|
|
6674
6620
|
sizeBefore: bigint;
|
|
6675
6621
|
md5Encrypted: string;
|
|
6676
|
-
userAppUserId: string;
|
|
6677
|
-
userAppAppId: string;
|
|
6678
|
-
validatedAt: Date | null;
|
|
6679
6622
|
access: {
|
|
6680
6623
|
key: string;
|
|
6681
6624
|
sharedByPubKey: string;
|
|
@@ -6689,9 +6632,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6689
6632
|
storageType: "s3" | "lite";
|
|
6690
6633
|
sizeBefore: bigint;
|
|
6691
6634
|
md5Encrypted: string;
|
|
6692
|
-
userAppUserId: string;
|
|
6693
|
-
userAppAppId: string;
|
|
6694
|
-
validatedAt: Date | null;
|
|
6695
6635
|
access: {
|
|
6696
6636
|
key: string;
|
|
6697
6637
|
sharedByPubKey: string;
|
|
@@ -6706,7 +6646,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6706
6646
|
type: "FILE" | "FOLDER";
|
|
6707
6647
|
parentId: string | null;
|
|
6708
6648
|
isFavorite: boolean;
|
|
6709
|
-
|
|
6649
|
+
currentFileId: string | null;
|
|
6710
6650
|
} & {
|
|
6711
6651
|
users: [{
|
|
6712
6652
|
id: string;
|
|
@@ -6738,7 +6678,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6738
6678
|
type: "FILE" | "FOLDER";
|
|
6739
6679
|
parentId: string | null;
|
|
6740
6680
|
isFavorite: boolean;
|
|
6741
|
-
|
|
6681
|
+
currentFileId: string | null;
|
|
6742
6682
|
} & {
|
|
6743
6683
|
users: [{
|
|
6744
6684
|
id: string;
|
|
@@ -11355,11 +11295,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11355
11295
|
body: string;
|
|
11356
11296
|
openedAt: Date | null;
|
|
11357
11297
|
} & {
|
|
11358
|
-
data: {
|
|
11359
|
-
dataId: string;
|
|
11360
|
-
dataKey: string;
|
|
11361
|
-
dataName: string;
|
|
11362
|
-
}[];
|
|
11363
11298
|
mailIntegrity: {
|
|
11364
11299
|
id: string;
|
|
11365
11300
|
replyTo: {
|
|
@@ -11367,9 +11302,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11367
11302
|
} | null;
|
|
11368
11303
|
hashKey: string;
|
|
11369
11304
|
hash: string;
|
|
11370
|
-
temporaryRecipients: {
|
|
11371
|
-
email: string | null;
|
|
11372
|
-
}[];
|
|
11373
11305
|
recipients: {
|
|
11374
11306
|
id: string;
|
|
11375
11307
|
lastname: string;
|
|
@@ -11377,6 +11309,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11377
11309
|
avatar: string | null;
|
|
11378
11310
|
isSearchable: boolean;
|
|
11379
11311
|
}[];
|
|
11312
|
+
temporaryRecipients: {
|
|
11313
|
+
email: string | null;
|
|
11314
|
+
}[];
|
|
11380
11315
|
} | null;
|
|
11381
11316
|
mailIntegrityDraft: {
|
|
11382
11317
|
id: string;
|
|
@@ -11385,9 +11320,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11385
11320
|
} | null;
|
|
11386
11321
|
hashKey: string;
|
|
11387
11322
|
hash: string;
|
|
11388
|
-
temporaryRecipients: {
|
|
11389
|
-
email: string | null;
|
|
11390
|
-
}[];
|
|
11391
11323
|
recipients: {
|
|
11392
11324
|
id: string;
|
|
11393
11325
|
lastname: string;
|
|
@@ -11395,6 +11327,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11395
11327
|
avatar: string | null;
|
|
11396
11328
|
isSearchable: boolean;
|
|
11397
11329
|
}[];
|
|
11330
|
+
temporaryRecipients: {
|
|
11331
|
+
email: string | null;
|
|
11332
|
+
}[];
|
|
11398
11333
|
} | null;
|
|
11399
11334
|
sender: {
|
|
11400
11335
|
id: string;
|
|
@@ -11403,6 +11338,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11403
11338
|
avatar: string | null;
|
|
11404
11339
|
isSearchable: boolean;
|
|
11405
11340
|
};
|
|
11341
|
+
files: {
|
|
11342
|
+
fileId: string;
|
|
11343
|
+
filename: string;
|
|
11344
|
+
fileKey: string;
|
|
11345
|
+
}[];
|
|
11406
11346
|
};
|
|
11407
11347
|
_output_out: {
|
|
11408
11348
|
id: string;
|
|
@@ -11413,11 +11353,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11413
11353
|
body: string;
|
|
11414
11354
|
openedAt: Date | null;
|
|
11415
11355
|
} & {
|
|
11416
|
-
data: {
|
|
11417
|
-
dataId: string;
|
|
11418
|
-
dataKey: string;
|
|
11419
|
-
dataName: string;
|
|
11420
|
-
}[];
|
|
11421
11356
|
mailIntegrity: {
|
|
11422
11357
|
id: string;
|
|
11423
11358
|
replyTo: {
|
|
@@ -11425,9 +11360,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11425
11360
|
} | null;
|
|
11426
11361
|
hashKey: string;
|
|
11427
11362
|
hash: string;
|
|
11428
|
-
temporaryRecipients: {
|
|
11429
|
-
email: string | null;
|
|
11430
|
-
}[];
|
|
11431
11363
|
recipients: {
|
|
11432
11364
|
id: string;
|
|
11433
11365
|
lastname: string;
|
|
@@ -11435,6 +11367,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11435
11367
|
avatar: string | null;
|
|
11436
11368
|
isSearchable: boolean;
|
|
11437
11369
|
}[];
|
|
11370
|
+
temporaryRecipients: {
|
|
11371
|
+
email: string | null;
|
|
11372
|
+
}[];
|
|
11438
11373
|
} | null;
|
|
11439
11374
|
mailIntegrityDraft: {
|
|
11440
11375
|
id: string;
|
|
@@ -11443,9 +11378,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11443
11378
|
} | null;
|
|
11444
11379
|
hashKey: string;
|
|
11445
11380
|
hash: string;
|
|
11446
|
-
temporaryRecipients: {
|
|
11447
|
-
email: string | null;
|
|
11448
|
-
}[];
|
|
11449
11381
|
recipients: {
|
|
11450
11382
|
id: string;
|
|
11451
11383
|
lastname: string;
|
|
@@ -11453,6 +11385,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11453
11385
|
avatar: string | null;
|
|
11454
11386
|
isSearchable: boolean;
|
|
11455
11387
|
}[];
|
|
11388
|
+
temporaryRecipients: {
|
|
11389
|
+
email: string | null;
|
|
11390
|
+
}[];
|
|
11456
11391
|
} | null;
|
|
11457
11392
|
sender: {
|
|
11458
11393
|
id: string;
|
|
@@ -11461,6 +11396,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11461
11396
|
avatar: string | null;
|
|
11462
11397
|
isSearchable: boolean;
|
|
11463
11398
|
};
|
|
11399
|
+
files: {
|
|
11400
|
+
fileId: string;
|
|
11401
|
+
filename: string;
|
|
11402
|
+
fileKey: string;
|
|
11403
|
+
}[];
|
|
11464
11404
|
};
|
|
11465
11405
|
}, unknown>>;
|
|
11466
11406
|
};
|
|
@@ -11547,11 +11487,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11547
11487
|
body: string;
|
|
11548
11488
|
openedAt: Date | null;
|
|
11549
11489
|
} & {
|
|
11550
|
-
data: {
|
|
11551
|
-
dataId: string;
|
|
11552
|
-
dataKey: string;
|
|
11553
|
-
dataName: string;
|
|
11554
|
-
}[];
|
|
11555
11490
|
mailIntegrity: {
|
|
11556
11491
|
id: string;
|
|
11557
11492
|
replyTo: {
|
|
@@ -11559,9 +11494,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11559
11494
|
} | null;
|
|
11560
11495
|
hashKey: string;
|
|
11561
11496
|
hash: string;
|
|
11562
|
-
temporaryRecipients: {
|
|
11563
|
-
email: string | null;
|
|
11564
|
-
}[];
|
|
11565
11497
|
recipients: {
|
|
11566
11498
|
id: string;
|
|
11567
11499
|
lastname: string;
|
|
@@ -11569,6 +11501,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11569
11501
|
avatar: string | null;
|
|
11570
11502
|
isSearchable: boolean;
|
|
11571
11503
|
}[];
|
|
11504
|
+
temporaryRecipients: {
|
|
11505
|
+
email: string | null;
|
|
11506
|
+
}[];
|
|
11572
11507
|
} | null;
|
|
11573
11508
|
mailIntegrityDraft: {
|
|
11574
11509
|
id: string;
|
|
@@ -11577,9 +11512,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11577
11512
|
} | null;
|
|
11578
11513
|
hashKey: string;
|
|
11579
11514
|
hash: string;
|
|
11580
|
-
temporaryRecipients: {
|
|
11581
|
-
email: string | null;
|
|
11582
|
-
}[];
|
|
11583
11515
|
recipients: {
|
|
11584
11516
|
id: string;
|
|
11585
11517
|
lastname: string;
|
|
@@ -11587,6 +11519,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11587
11519
|
avatar: string | null;
|
|
11588
11520
|
isSearchable: boolean;
|
|
11589
11521
|
}[];
|
|
11522
|
+
temporaryRecipients: {
|
|
11523
|
+
email: string | null;
|
|
11524
|
+
}[];
|
|
11590
11525
|
} | null;
|
|
11591
11526
|
sender: {
|
|
11592
11527
|
id: string;
|
|
@@ -11595,6 +11530,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11595
11530
|
avatar: string | null;
|
|
11596
11531
|
isSearchable: boolean;
|
|
11597
11532
|
};
|
|
11533
|
+
files: {
|
|
11534
|
+
fileId: string;
|
|
11535
|
+
filename: string;
|
|
11536
|
+
fileKey: string;
|
|
11537
|
+
}[];
|
|
11598
11538
|
};
|
|
11599
11539
|
_output_out: {
|
|
11600
11540
|
id: string;
|
|
@@ -11605,11 +11545,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11605
11545
|
body: string;
|
|
11606
11546
|
openedAt: Date | null;
|
|
11607
11547
|
} & {
|
|
11608
|
-
data: {
|
|
11609
|
-
dataId: string;
|
|
11610
|
-
dataKey: string;
|
|
11611
|
-
dataName: string;
|
|
11612
|
-
}[];
|
|
11613
11548
|
mailIntegrity: {
|
|
11614
11549
|
id: string;
|
|
11615
11550
|
replyTo: {
|
|
@@ -11617,9 +11552,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11617
11552
|
} | null;
|
|
11618
11553
|
hashKey: string;
|
|
11619
11554
|
hash: string;
|
|
11620
|
-
temporaryRecipients: {
|
|
11621
|
-
email: string | null;
|
|
11622
|
-
}[];
|
|
11623
11555
|
recipients: {
|
|
11624
11556
|
id: string;
|
|
11625
11557
|
lastname: string;
|
|
@@ -11627,6 +11559,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11627
11559
|
avatar: string | null;
|
|
11628
11560
|
isSearchable: boolean;
|
|
11629
11561
|
}[];
|
|
11562
|
+
temporaryRecipients: {
|
|
11563
|
+
email: string | null;
|
|
11564
|
+
}[];
|
|
11630
11565
|
} | null;
|
|
11631
11566
|
mailIntegrityDraft: {
|
|
11632
11567
|
id: string;
|
|
@@ -11635,9 +11570,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11635
11570
|
} | null;
|
|
11636
11571
|
hashKey: string;
|
|
11637
11572
|
hash: string;
|
|
11638
|
-
temporaryRecipients: {
|
|
11639
|
-
email: string | null;
|
|
11640
|
-
}[];
|
|
11641
11573
|
recipients: {
|
|
11642
11574
|
id: string;
|
|
11643
11575
|
lastname: string;
|
|
@@ -11645,6 +11577,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11645
11577
|
avatar: string | null;
|
|
11646
11578
|
isSearchable: boolean;
|
|
11647
11579
|
}[];
|
|
11580
|
+
temporaryRecipients: {
|
|
11581
|
+
email: string | null;
|
|
11582
|
+
}[];
|
|
11648
11583
|
} | null;
|
|
11649
11584
|
sender: {
|
|
11650
11585
|
id: string;
|
|
@@ -11653,6 +11588,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11653
11588
|
avatar: string | null;
|
|
11654
11589
|
isSearchable: boolean;
|
|
11655
11590
|
};
|
|
11591
|
+
files: {
|
|
11592
|
+
fileId: string;
|
|
11593
|
+
filename: string;
|
|
11594
|
+
fileKey: string;
|
|
11595
|
+
}[];
|
|
11656
11596
|
};
|
|
11657
11597
|
}, unknown>>;
|
|
11658
11598
|
};
|
|
@@ -11897,11 +11837,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11897
11837
|
body: string;
|
|
11898
11838
|
openedAt: Date | null;
|
|
11899
11839
|
} & {
|
|
11900
|
-
data: {
|
|
11901
|
-
dataId: string;
|
|
11902
|
-
dataKey: string;
|
|
11903
|
-
dataName: string;
|
|
11904
|
-
}[];
|
|
11905
11840
|
mailIntegrity: {
|
|
11906
11841
|
id: string;
|
|
11907
11842
|
replyTo: {
|
|
@@ -11909,9 +11844,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11909
11844
|
} | null;
|
|
11910
11845
|
hashKey: string;
|
|
11911
11846
|
hash: string;
|
|
11912
|
-
temporaryRecipients: {
|
|
11913
|
-
email: string | null;
|
|
11914
|
-
}[];
|
|
11915
11847
|
recipients: {
|
|
11916
11848
|
id: string;
|
|
11917
11849
|
lastname: string;
|
|
@@ -11919,6 +11851,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11919
11851
|
avatar: string | null;
|
|
11920
11852
|
isSearchable: boolean;
|
|
11921
11853
|
}[];
|
|
11854
|
+
temporaryRecipients: {
|
|
11855
|
+
email: string | null;
|
|
11856
|
+
}[];
|
|
11922
11857
|
} | null;
|
|
11923
11858
|
mailIntegrityDraft: {
|
|
11924
11859
|
id: string;
|
|
@@ -11927,9 +11862,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11927
11862
|
} | null;
|
|
11928
11863
|
hashKey: string;
|
|
11929
11864
|
hash: string;
|
|
11930
|
-
temporaryRecipients: {
|
|
11931
|
-
email: string | null;
|
|
11932
|
-
}[];
|
|
11933
11865
|
recipients: {
|
|
11934
11866
|
id: string;
|
|
11935
11867
|
lastname: string;
|
|
@@ -11937,6 +11869,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11937
11869
|
avatar: string | null;
|
|
11938
11870
|
isSearchable: boolean;
|
|
11939
11871
|
}[];
|
|
11872
|
+
temporaryRecipients: {
|
|
11873
|
+
email: string | null;
|
|
11874
|
+
}[];
|
|
11940
11875
|
} | null;
|
|
11941
11876
|
sender: {
|
|
11942
11877
|
id: string;
|
|
@@ -11945,6 +11880,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11945
11880
|
avatar: string | null;
|
|
11946
11881
|
isSearchable: boolean;
|
|
11947
11882
|
};
|
|
11883
|
+
files: {
|
|
11884
|
+
fileId: string;
|
|
11885
|
+
filename: string;
|
|
11886
|
+
fileKey: string;
|
|
11887
|
+
}[];
|
|
11948
11888
|
})[];
|
|
11949
11889
|
_output_out: ({
|
|
11950
11890
|
id: string;
|
|
@@ -11955,11 +11895,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11955
11895
|
body: string;
|
|
11956
11896
|
openedAt: Date | null;
|
|
11957
11897
|
} & {
|
|
11958
|
-
data: {
|
|
11959
|
-
dataId: string;
|
|
11960
|
-
dataKey: string;
|
|
11961
|
-
dataName: string;
|
|
11962
|
-
}[];
|
|
11963
11898
|
mailIntegrity: {
|
|
11964
11899
|
id: string;
|
|
11965
11900
|
replyTo: {
|
|
@@ -11967,9 +11902,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11967
11902
|
} | null;
|
|
11968
11903
|
hashKey: string;
|
|
11969
11904
|
hash: string;
|
|
11970
|
-
temporaryRecipients: {
|
|
11971
|
-
email: string | null;
|
|
11972
|
-
}[];
|
|
11973
11905
|
recipients: {
|
|
11974
11906
|
id: string;
|
|
11975
11907
|
lastname: string;
|
|
@@ -11977,6 +11909,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11977
11909
|
avatar: string | null;
|
|
11978
11910
|
isSearchable: boolean;
|
|
11979
11911
|
}[];
|
|
11912
|
+
temporaryRecipients: {
|
|
11913
|
+
email: string | null;
|
|
11914
|
+
}[];
|
|
11980
11915
|
} | null;
|
|
11981
11916
|
mailIntegrityDraft: {
|
|
11982
11917
|
id: string;
|
|
@@ -11985,9 +11920,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11985
11920
|
} | null;
|
|
11986
11921
|
hashKey: string;
|
|
11987
11922
|
hash: string;
|
|
11988
|
-
temporaryRecipients: {
|
|
11989
|
-
email: string | null;
|
|
11990
|
-
}[];
|
|
11991
11923
|
recipients: {
|
|
11992
11924
|
id: string;
|
|
11993
11925
|
lastname: string;
|
|
@@ -11995,6 +11927,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11995
11927
|
avatar: string | null;
|
|
11996
11928
|
isSearchable: boolean;
|
|
11997
11929
|
}[];
|
|
11930
|
+
temporaryRecipients: {
|
|
11931
|
+
email: string | null;
|
|
11932
|
+
}[];
|
|
11998
11933
|
} | null;
|
|
11999
11934
|
sender: {
|
|
12000
11935
|
id: string;
|
|
@@ -12003,6 +11938,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12003
11938
|
avatar: string | null;
|
|
12004
11939
|
isSearchable: boolean;
|
|
12005
11940
|
};
|
|
11941
|
+
files: {
|
|
11942
|
+
fileId: string;
|
|
11943
|
+
filename: string;
|
|
11944
|
+
fileKey: string;
|
|
11945
|
+
}[];
|
|
12006
11946
|
})[];
|
|
12007
11947
|
}, unknown>>;
|
|
12008
11948
|
};
|
|
@@ -12063,11 +12003,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12063
12003
|
body: string;
|
|
12064
12004
|
openedAt: Date | null;
|
|
12065
12005
|
} & {
|
|
12066
|
-
data: {
|
|
12067
|
-
dataId: string;
|
|
12068
|
-
dataKey: string;
|
|
12069
|
-
dataName: string;
|
|
12070
|
-
}[];
|
|
12071
12006
|
mailIntegrity: {
|
|
12072
12007
|
id: string;
|
|
12073
12008
|
replyTo: {
|
|
@@ -12075,9 +12010,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12075
12010
|
} | null;
|
|
12076
12011
|
hashKey: string;
|
|
12077
12012
|
hash: string;
|
|
12078
|
-
temporaryRecipients: {
|
|
12079
|
-
email: string | null;
|
|
12080
|
-
}[];
|
|
12081
12013
|
recipients: {
|
|
12082
12014
|
id: string;
|
|
12083
12015
|
lastname: string;
|
|
@@ -12085,6 +12017,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12085
12017
|
avatar: string | null;
|
|
12086
12018
|
isSearchable: boolean;
|
|
12087
12019
|
}[];
|
|
12020
|
+
temporaryRecipients: {
|
|
12021
|
+
email: string | null;
|
|
12022
|
+
}[];
|
|
12088
12023
|
} | null;
|
|
12089
12024
|
mailIntegrityDraft: {
|
|
12090
12025
|
id: string;
|
|
@@ -12093,9 +12028,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12093
12028
|
} | null;
|
|
12094
12029
|
hashKey: string;
|
|
12095
12030
|
hash: string;
|
|
12096
|
-
temporaryRecipients: {
|
|
12097
|
-
email: string | null;
|
|
12098
|
-
}[];
|
|
12099
12031
|
recipients: {
|
|
12100
12032
|
id: string;
|
|
12101
12033
|
lastname: string;
|
|
@@ -12103,6 +12035,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12103
12035
|
avatar: string | null;
|
|
12104
12036
|
isSearchable: boolean;
|
|
12105
12037
|
}[];
|
|
12038
|
+
temporaryRecipients: {
|
|
12039
|
+
email: string | null;
|
|
12040
|
+
}[];
|
|
12106
12041
|
} | null;
|
|
12107
12042
|
sender: {
|
|
12108
12043
|
id: string;
|
|
@@ -12111,6 +12046,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12111
12046
|
avatar: string | null;
|
|
12112
12047
|
isSearchable: boolean;
|
|
12113
12048
|
};
|
|
12049
|
+
files: {
|
|
12050
|
+
fileId: string;
|
|
12051
|
+
filename: string;
|
|
12052
|
+
fileKey: string;
|
|
12053
|
+
}[];
|
|
12114
12054
|
})[];
|
|
12115
12055
|
_output_out: ({
|
|
12116
12056
|
id: string;
|
|
@@ -12121,11 +12061,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12121
12061
|
body: string;
|
|
12122
12062
|
openedAt: Date | null;
|
|
12123
12063
|
} & {
|
|
12124
|
-
data: {
|
|
12125
|
-
dataId: string;
|
|
12126
|
-
dataKey: string;
|
|
12127
|
-
dataName: string;
|
|
12128
|
-
}[];
|
|
12129
12064
|
mailIntegrity: {
|
|
12130
12065
|
id: string;
|
|
12131
12066
|
replyTo: {
|
|
@@ -12133,9 +12068,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12133
12068
|
} | null;
|
|
12134
12069
|
hashKey: string;
|
|
12135
12070
|
hash: string;
|
|
12136
|
-
temporaryRecipients: {
|
|
12137
|
-
email: string | null;
|
|
12138
|
-
}[];
|
|
12139
12071
|
recipients: {
|
|
12140
12072
|
id: string;
|
|
12141
12073
|
lastname: string;
|
|
@@ -12143,6 +12075,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12143
12075
|
avatar: string | null;
|
|
12144
12076
|
isSearchable: boolean;
|
|
12145
12077
|
}[];
|
|
12078
|
+
temporaryRecipients: {
|
|
12079
|
+
email: string | null;
|
|
12080
|
+
}[];
|
|
12146
12081
|
} | null;
|
|
12147
12082
|
mailIntegrityDraft: {
|
|
12148
12083
|
id: string;
|
|
@@ -12151,9 +12086,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12151
12086
|
} | null;
|
|
12152
12087
|
hashKey: string;
|
|
12153
12088
|
hash: string;
|
|
12154
|
-
temporaryRecipients: {
|
|
12155
|
-
email: string | null;
|
|
12156
|
-
}[];
|
|
12157
12089
|
recipients: {
|
|
12158
12090
|
id: string;
|
|
12159
12091
|
lastname: string;
|
|
@@ -12161,6 +12093,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12161
12093
|
avatar: string | null;
|
|
12162
12094
|
isSearchable: boolean;
|
|
12163
12095
|
}[];
|
|
12096
|
+
temporaryRecipients: {
|
|
12097
|
+
email: string | null;
|
|
12098
|
+
}[];
|
|
12164
12099
|
} | null;
|
|
12165
12100
|
sender: {
|
|
12166
12101
|
id: string;
|
|
@@ -12169,6 +12104,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12169
12104
|
avatar: string | null;
|
|
12170
12105
|
isSearchable: boolean;
|
|
12171
12106
|
};
|
|
12107
|
+
files: {
|
|
12108
|
+
fileId: string;
|
|
12109
|
+
filename: string;
|
|
12110
|
+
fileKey: string;
|
|
12111
|
+
}[];
|
|
12172
12112
|
})[];
|
|
12173
12113
|
}, unknown>>;
|
|
12174
12114
|
};
|
|
@@ -12345,11 +12285,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12345
12285
|
body: string;
|
|
12346
12286
|
openedAt: Date | null;
|
|
12347
12287
|
} & {
|
|
12348
|
-
data: {
|
|
12349
|
-
dataId: string;
|
|
12350
|
-
dataKey: string;
|
|
12351
|
-
dataName: string;
|
|
12352
|
-
}[];
|
|
12353
12288
|
mailIntegrity: {
|
|
12354
12289
|
id: string;
|
|
12355
12290
|
replyTo: {
|
|
@@ -12357,9 +12292,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12357
12292
|
} | null;
|
|
12358
12293
|
hashKey: string;
|
|
12359
12294
|
hash: string;
|
|
12360
|
-
temporaryRecipients: {
|
|
12361
|
-
email: string | null;
|
|
12362
|
-
}[];
|
|
12363
12295
|
recipients: {
|
|
12364
12296
|
id: string;
|
|
12365
12297
|
lastname: string;
|
|
@@ -12367,6 +12299,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12367
12299
|
avatar: string | null;
|
|
12368
12300
|
isSearchable: boolean;
|
|
12369
12301
|
}[];
|
|
12302
|
+
temporaryRecipients: {
|
|
12303
|
+
email: string | null;
|
|
12304
|
+
}[];
|
|
12370
12305
|
} | null;
|
|
12371
12306
|
mailIntegrityDraft: {
|
|
12372
12307
|
id: string;
|
|
@@ -12375,9 +12310,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12375
12310
|
} | null;
|
|
12376
12311
|
hashKey: string;
|
|
12377
12312
|
hash: string;
|
|
12378
|
-
temporaryRecipients: {
|
|
12379
|
-
email: string | null;
|
|
12380
|
-
}[];
|
|
12381
12313
|
recipients: {
|
|
12382
12314
|
id: string;
|
|
12383
12315
|
lastname: string;
|
|
@@ -12385,6 +12317,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12385
12317
|
avatar: string | null;
|
|
12386
12318
|
isSearchable: boolean;
|
|
12387
12319
|
}[];
|
|
12320
|
+
temporaryRecipients: {
|
|
12321
|
+
email: string | null;
|
|
12322
|
+
}[];
|
|
12388
12323
|
} | null;
|
|
12389
12324
|
sender: {
|
|
12390
12325
|
id: string;
|
|
@@ -12393,6 +12328,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12393
12328
|
avatar: string | null;
|
|
12394
12329
|
isSearchable: boolean;
|
|
12395
12330
|
};
|
|
12331
|
+
files: {
|
|
12332
|
+
fileId: string;
|
|
12333
|
+
filename: string;
|
|
12334
|
+
fileKey: string;
|
|
12335
|
+
}[];
|
|
12396
12336
|
})[];
|
|
12397
12337
|
_output_out: ({
|
|
12398
12338
|
id: string;
|
|
@@ -12403,11 +12343,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12403
12343
|
body: string;
|
|
12404
12344
|
openedAt: Date | null;
|
|
12405
12345
|
} & {
|
|
12406
|
-
data: {
|
|
12407
|
-
dataId: string;
|
|
12408
|
-
dataKey: string;
|
|
12409
|
-
dataName: string;
|
|
12410
|
-
}[];
|
|
12411
12346
|
mailIntegrity: {
|
|
12412
12347
|
id: string;
|
|
12413
12348
|
replyTo: {
|
|
@@ -12415,9 +12350,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12415
12350
|
} | null;
|
|
12416
12351
|
hashKey: string;
|
|
12417
12352
|
hash: string;
|
|
12418
|
-
temporaryRecipients: {
|
|
12419
|
-
email: string | null;
|
|
12420
|
-
}[];
|
|
12421
12353
|
recipients: {
|
|
12422
12354
|
id: string;
|
|
12423
12355
|
lastname: string;
|
|
@@ -12425,6 +12357,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12425
12357
|
avatar: string | null;
|
|
12426
12358
|
isSearchable: boolean;
|
|
12427
12359
|
}[];
|
|
12360
|
+
temporaryRecipients: {
|
|
12361
|
+
email: string | null;
|
|
12362
|
+
}[];
|
|
12428
12363
|
} | null;
|
|
12429
12364
|
mailIntegrityDraft: {
|
|
12430
12365
|
id: string;
|
|
@@ -12433,9 +12368,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12433
12368
|
} | null;
|
|
12434
12369
|
hashKey: string;
|
|
12435
12370
|
hash: string;
|
|
12436
|
-
temporaryRecipients: {
|
|
12437
|
-
email: string | null;
|
|
12438
|
-
}[];
|
|
12439
12371
|
recipients: {
|
|
12440
12372
|
id: string;
|
|
12441
12373
|
lastname: string;
|
|
@@ -12443,6 +12375,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12443
12375
|
avatar: string | null;
|
|
12444
12376
|
isSearchable: boolean;
|
|
12445
12377
|
}[];
|
|
12378
|
+
temporaryRecipients: {
|
|
12379
|
+
email: string | null;
|
|
12380
|
+
}[];
|
|
12446
12381
|
} | null;
|
|
12447
12382
|
sender: {
|
|
12448
12383
|
id: string;
|
|
@@ -12451,6 +12386,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12451
12386
|
avatar: string | null;
|
|
12452
12387
|
isSearchable: boolean;
|
|
12453
12388
|
};
|
|
12389
|
+
files: {
|
|
12390
|
+
fileId: string;
|
|
12391
|
+
filename: string;
|
|
12392
|
+
fileKey: string;
|
|
12393
|
+
}[];
|
|
12454
12394
|
})[];
|
|
12455
12395
|
}, unknown>>;
|
|
12456
12396
|
};
|
|
@@ -12639,34 +12579,34 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12639
12579
|
_input_in: {
|
|
12640
12580
|
id: string;
|
|
12641
12581
|
customMessage: string | null;
|
|
12642
|
-
temporaryRecipients: string[];
|
|
12643
12582
|
recipients: ({
|
|
12644
12583
|
subject: string;
|
|
12645
12584
|
body: string;
|
|
12646
12585
|
} & {
|
|
12647
|
-
|
|
12586
|
+
recipientId: string;
|
|
12587
|
+
files: {
|
|
12648
12588
|
id: string;
|
|
12649
|
-
|
|
12650
|
-
|
|
12589
|
+
filename: string;
|
|
12590
|
+
fileKey: string;
|
|
12651
12591
|
}[];
|
|
12652
|
-
recipientId: string;
|
|
12653
12592
|
})[];
|
|
12593
|
+
temporaryRecipients: string[];
|
|
12654
12594
|
};
|
|
12655
12595
|
_input_out: {
|
|
12656
12596
|
id: string;
|
|
12657
12597
|
customMessage: string | null;
|
|
12658
|
-
temporaryRecipients: string[];
|
|
12659
12598
|
recipients: ({
|
|
12660
12599
|
subject: string;
|
|
12661
12600
|
body: string;
|
|
12662
12601
|
} & {
|
|
12663
|
-
|
|
12602
|
+
recipientId: string;
|
|
12603
|
+
files: {
|
|
12664
12604
|
id: string;
|
|
12665
|
-
|
|
12666
|
-
|
|
12605
|
+
filename: string;
|
|
12606
|
+
fileKey: string;
|
|
12667
12607
|
}[];
|
|
12668
|
-
recipientId: string;
|
|
12669
12608
|
})[];
|
|
12609
|
+
temporaryRecipients: string[];
|
|
12670
12610
|
};
|
|
12671
12611
|
_output_in: {
|
|
12672
12612
|
isSent: boolean;
|
|
@@ -12728,12 +12668,12 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12728
12668
|
subject: string;
|
|
12729
12669
|
body: string;
|
|
12730
12670
|
} & {
|
|
12731
|
-
|
|
12671
|
+
recipientId: string;
|
|
12672
|
+
files: {
|
|
12732
12673
|
id: string;
|
|
12733
|
-
|
|
12734
|
-
|
|
12674
|
+
filename: string;
|
|
12675
|
+
fileKey: string;
|
|
12735
12676
|
}[];
|
|
12736
|
-
recipientId: string;
|
|
12737
12677
|
};
|
|
12738
12678
|
};
|
|
12739
12679
|
_input_out: {
|
|
@@ -12742,12 +12682,12 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12742
12682
|
subject: string;
|
|
12743
12683
|
body: string;
|
|
12744
12684
|
} & {
|
|
12745
|
-
|
|
12685
|
+
recipientId: string;
|
|
12686
|
+
files: {
|
|
12746
12687
|
id: string;
|
|
12747
|
-
|
|
12748
|
-
|
|
12688
|
+
filename: string;
|
|
12689
|
+
fileKey: string;
|
|
12749
12690
|
}[];
|
|
12750
|
-
recipientId: string;
|
|
12751
12691
|
};
|
|
12752
12692
|
};
|
|
12753
12693
|
_output_in: {
|
|
@@ -12815,11 +12755,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12815
12755
|
body: string;
|
|
12816
12756
|
openedAt: Date | null;
|
|
12817
12757
|
} & {
|
|
12818
|
-
data: {
|
|
12819
|
-
dataId: string;
|
|
12820
|
-
dataKey: string;
|
|
12821
|
-
dataName: string;
|
|
12822
|
-
}[];
|
|
12823
12758
|
mailIntegrity: {
|
|
12824
12759
|
id: string;
|
|
12825
12760
|
replyTo: {
|
|
@@ -12827,9 +12762,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12827
12762
|
} | null;
|
|
12828
12763
|
hashKey: string;
|
|
12829
12764
|
hash: string;
|
|
12830
|
-
temporaryRecipients: {
|
|
12831
|
-
email: string | null;
|
|
12832
|
-
}[];
|
|
12833
12765
|
recipients: {
|
|
12834
12766
|
id: string;
|
|
12835
12767
|
lastname: string;
|
|
@@ -12837,6 +12769,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12837
12769
|
avatar: string | null;
|
|
12838
12770
|
isSearchable: boolean;
|
|
12839
12771
|
}[];
|
|
12772
|
+
temporaryRecipients: {
|
|
12773
|
+
email: string | null;
|
|
12774
|
+
}[];
|
|
12840
12775
|
} | null;
|
|
12841
12776
|
mailIntegrityDraft: {
|
|
12842
12777
|
id: string;
|
|
@@ -12845,9 +12780,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12845
12780
|
} | null;
|
|
12846
12781
|
hashKey: string;
|
|
12847
12782
|
hash: string;
|
|
12848
|
-
temporaryRecipients: {
|
|
12849
|
-
email: string | null;
|
|
12850
|
-
}[];
|
|
12851
12783
|
recipients: {
|
|
12852
12784
|
id: string;
|
|
12853
12785
|
lastname: string;
|
|
@@ -12855,6 +12787,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12855
12787
|
avatar: string | null;
|
|
12856
12788
|
isSearchable: boolean;
|
|
12857
12789
|
}[];
|
|
12790
|
+
temporaryRecipients: {
|
|
12791
|
+
email: string | null;
|
|
12792
|
+
}[];
|
|
12858
12793
|
} | null;
|
|
12859
12794
|
sender: {
|
|
12860
12795
|
id: string;
|
|
@@ -12863,6 +12798,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12863
12798
|
avatar: string | null;
|
|
12864
12799
|
isSearchable: boolean;
|
|
12865
12800
|
};
|
|
12801
|
+
files: {
|
|
12802
|
+
fileId: string;
|
|
12803
|
+
filename: string;
|
|
12804
|
+
fileKey: string;
|
|
12805
|
+
}[];
|
|
12866
12806
|
})[];
|
|
12867
12807
|
_output_out: ({
|
|
12868
12808
|
id: string;
|
|
@@ -12873,11 +12813,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12873
12813
|
body: string;
|
|
12874
12814
|
openedAt: Date | null;
|
|
12875
12815
|
} & {
|
|
12876
|
-
data: {
|
|
12877
|
-
dataId: string;
|
|
12878
|
-
dataKey: string;
|
|
12879
|
-
dataName: string;
|
|
12880
|
-
}[];
|
|
12881
12816
|
mailIntegrity: {
|
|
12882
12817
|
id: string;
|
|
12883
12818
|
replyTo: {
|
|
@@ -12885,9 +12820,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12885
12820
|
} | null;
|
|
12886
12821
|
hashKey: string;
|
|
12887
12822
|
hash: string;
|
|
12888
|
-
temporaryRecipients: {
|
|
12889
|
-
email: string | null;
|
|
12890
|
-
}[];
|
|
12891
12823
|
recipients: {
|
|
12892
12824
|
id: string;
|
|
12893
12825
|
lastname: string;
|
|
@@ -12895,6 +12827,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12895
12827
|
avatar: string | null;
|
|
12896
12828
|
isSearchable: boolean;
|
|
12897
12829
|
}[];
|
|
12830
|
+
temporaryRecipients: {
|
|
12831
|
+
email: string | null;
|
|
12832
|
+
}[];
|
|
12898
12833
|
} | null;
|
|
12899
12834
|
mailIntegrityDraft: {
|
|
12900
12835
|
id: string;
|
|
@@ -12903,9 +12838,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12903
12838
|
} | null;
|
|
12904
12839
|
hashKey: string;
|
|
12905
12840
|
hash: string;
|
|
12906
|
-
temporaryRecipients: {
|
|
12907
|
-
email: string | null;
|
|
12908
|
-
}[];
|
|
12909
12841
|
recipients: {
|
|
12910
12842
|
id: string;
|
|
12911
12843
|
lastname: string;
|
|
@@ -12913,6 +12845,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12913
12845
|
avatar: string | null;
|
|
12914
12846
|
isSearchable: boolean;
|
|
12915
12847
|
}[];
|
|
12848
|
+
temporaryRecipients: {
|
|
12849
|
+
email: string | null;
|
|
12850
|
+
}[];
|
|
12916
12851
|
} | null;
|
|
12917
12852
|
sender: {
|
|
12918
12853
|
id: string;
|
|
@@ -12921,6 +12856,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12921
12856
|
avatar: string | null;
|
|
12922
12857
|
isSearchable: boolean;
|
|
12923
12858
|
};
|
|
12859
|
+
files: {
|
|
12860
|
+
fileId: string;
|
|
12861
|
+
filename: string;
|
|
12862
|
+
fileKey: string;
|
|
12863
|
+
}[];
|
|
12924
12864
|
})[];
|
|
12925
12865
|
}, unknown>>;
|
|
12926
12866
|
};
|
|
@@ -13119,11 +13059,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13119
13059
|
body: string;
|
|
13120
13060
|
openedAt: Date | null;
|
|
13121
13061
|
} & {
|
|
13122
|
-
data: {
|
|
13123
|
-
dataId: string;
|
|
13124
|
-
dataKey: string;
|
|
13125
|
-
dataName: string;
|
|
13126
|
-
}[];
|
|
13127
13062
|
mailIntegrity: {
|
|
13128
13063
|
id: string;
|
|
13129
13064
|
replyTo: {
|
|
@@ -13131,9 +13066,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13131
13066
|
} | null;
|
|
13132
13067
|
hashKey: string;
|
|
13133
13068
|
hash: string;
|
|
13134
|
-
temporaryRecipients: {
|
|
13135
|
-
email: string | null;
|
|
13136
|
-
}[];
|
|
13137
13069
|
recipients: {
|
|
13138
13070
|
id: string;
|
|
13139
13071
|
lastname: string;
|
|
@@ -13141,6 +13073,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13141
13073
|
avatar: string | null;
|
|
13142
13074
|
isSearchable: boolean;
|
|
13143
13075
|
}[];
|
|
13076
|
+
temporaryRecipients: {
|
|
13077
|
+
email: string | null;
|
|
13078
|
+
}[];
|
|
13144
13079
|
} | null;
|
|
13145
13080
|
mailIntegrityDraft: {
|
|
13146
13081
|
id: string;
|
|
@@ -13149,9 +13084,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13149
13084
|
} | null;
|
|
13150
13085
|
hashKey: string;
|
|
13151
13086
|
hash: string;
|
|
13152
|
-
temporaryRecipients: {
|
|
13153
|
-
email: string | null;
|
|
13154
|
-
}[];
|
|
13155
13087
|
recipients: {
|
|
13156
13088
|
id: string;
|
|
13157
13089
|
lastname: string;
|
|
@@ -13159,6 +13091,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13159
13091
|
avatar: string | null;
|
|
13160
13092
|
isSearchable: boolean;
|
|
13161
13093
|
}[];
|
|
13094
|
+
temporaryRecipients: {
|
|
13095
|
+
email: string | null;
|
|
13096
|
+
}[];
|
|
13162
13097
|
} | null;
|
|
13163
13098
|
sender: {
|
|
13164
13099
|
id: string;
|
|
@@ -13167,6 +13102,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13167
13102
|
avatar: string | null;
|
|
13168
13103
|
isSearchable: boolean;
|
|
13169
13104
|
};
|
|
13105
|
+
files: {
|
|
13106
|
+
fileId: string;
|
|
13107
|
+
filename: string;
|
|
13108
|
+
fileKey: string;
|
|
13109
|
+
}[];
|
|
13170
13110
|
};
|
|
13171
13111
|
_output_out: {
|
|
13172
13112
|
id: string;
|
|
@@ -13177,11 +13117,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13177
13117
|
body: string;
|
|
13178
13118
|
openedAt: Date | null;
|
|
13179
13119
|
} & {
|
|
13180
|
-
data: {
|
|
13181
|
-
dataId: string;
|
|
13182
|
-
dataKey: string;
|
|
13183
|
-
dataName: string;
|
|
13184
|
-
}[];
|
|
13185
13120
|
mailIntegrity: {
|
|
13186
13121
|
id: string;
|
|
13187
13122
|
replyTo: {
|
|
@@ -13189,9 +13124,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13189
13124
|
} | null;
|
|
13190
13125
|
hashKey: string;
|
|
13191
13126
|
hash: string;
|
|
13192
|
-
temporaryRecipients: {
|
|
13193
|
-
email: string | null;
|
|
13194
|
-
}[];
|
|
13195
13127
|
recipients: {
|
|
13196
13128
|
id: string;
|
|
13197
13129
|
lastname: string;
|
|
@@ -13199,6 +13131,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13199
13131
|
avatar: string | null;
|
|
13200
13132
|
isSearchable: boolean;
|
|
13201
13133
|
}[];
|
|
13134
|
+
temporaryRecipients: {
|
|
13135
|
+
email: string | null;
|
|
13136
|
+
}[];
|
|
13202
13137
|
} | null;
|
|
13203
13138
|
mailIntegrityDraft: {
|
|
13204
13139
|
id: string;
|
|
@@ -13207,9 +13142,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13207
13142
|
} | null;
|
|
13208
13143
|
hashKey: string;
|
|
13209
13144
|
hash: string;
|
|
13210
|
-
temporaryRecipients: {
|
|
13211
|
-
email: string | null;
|
|
13212
|
-
}[];
|
|
13213
13145
|
recipients: {
|
|
13214
13146
|
id: string;
|
|
13215
13147
|
lastname: string;
|
|
@@ -13217,6 +13149,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13217
13149
|
avatar: string | null;
|
|
13218
13150
|
isSearchable: boolean;
|
|
13219
13151
|
}[];
|
|
13152
|
+
temporaryRecipients: {
|
|
13153
|
+
email: string | null;
|
|
13154
|
+
}[];
|
|
13220
13155
|
} | null;
|
|
13221
13156
|
sender: {
|
|
13222
13157
|
id: string;
|
|
@@ -13225,6 +13160,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13225
13160
|
avatar: string | null;
|
|
13226
13161
|
isSearchable: boolean;
|
|
13227
13162
|
};
|
|
13163
|
+
files: {
|
|
13164
|
+
fileId: string;
|
|
13165
|
+
filename: string;
|
|
13166
|
+
fileKey: string;
|
|
13167
|
+
}[];
|
|
13228
13168
|
};
|
|
13229
13169
|
}, unknown>>;
|
|
13230
13170
|
};
|
|
@@ -13285,11 +13225,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13285
13225
|
isSearchable: boolean;
|
|
13286
13226
|
};
|
|
13287
13227
|
date: Date;
|
|
13288
|
-
temporaryRecipients: {
|
|
13289
|
-
email: string | null;
|
|
13290
|
-
id: string;
|
|
13291
|
-
phone: string | null;
|
|
13292
|
-
}[];
|
|
13293
13228
|
recipients: {
|
|
13294
13229
|
id: string;
|
|
13295
13230
|
lastname: string;
|
|
@@ -13297,6 +13232,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13297
13232
|
avatar: string | null;
|
|
13298
13233
|
isSearchable: boolean;
|
|
13299
13234
|
}[];
|
|
13235
|
+
temporaryRecipients: {
|
|
13236
|
+
email: string | null;
|
|
13237
|
+
id: string;
|
|
13238
|
+
phone: string | null;
|
|
13239
|
+
}[];
|
|
13300
13240
|
attachmentsCount: number;
|
|
13301
13241
|
}[];
|
|
13302
13242
|
_output_out: {
|
|
@@ -13308,11 +13248,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13308
13248
|
isSearchable: boolean;
|
|
13309
13249
|
};
|
|
13310
13250
|
date: Date;
|
|
13311
|
-
temporaryRecipients: {
|
|
13312
|
-
email: string | null;
|
|
13313
|
-
id: string;
|
|
13314
|
-
phone: string | null;
|
|
13315
|
-
}[];
|
|
13316
13251
|
recipients: {
|
|
13317
13252
|
id: string;
|
|
13318
13253
|
lastname: string;
|
|
@@ -13320,6 +13255,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13320
13255
|
avatar: string | null;
|
|
13321
13256
|
isSearchable: boolean;
|
|
13322
13257
|
}[];
|
|
13258
|
+
temporaryRecipients: {
|
|
13259
|
+
email: string | null;
|
|
13260
|
+
id: string;
|
|
13261
|
+
phone: string | null;
|
|
13262
|
+
}[];
|
|
13323
13263
|
attachmentsCount: number;
|
|
13324
13264
|
}[];
|
|
13325
13265
|
}, unknown>>;
|
|
@@ -13655,28 +13595,28 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13655
13595
|
quotas: {
|
|
13656
13596
|
uploadCount: bigint | null;
|
|
13657
13597
|
downloadCount: bigint | null;
|
|
13658
|
-
|
|
13598
|
+
totalFileCount: bigint | null;
|
|
13659
13599
|
totalStorageSize: bigint | null;
|
|
13660
|
-
|
|
13600
|
+
perFileSize: bigint | null;
|
|
13661
13601
|
uploadBandwidth: bigint | null;
|
|
13662
13602
|
downloadBandwidth: bigint | null;
|
|
13663
13603
|
} & {
|
|
13664
13604
|
sentMails: {
|
|
13665
13605
|
count: bigint | null;
|
|
13666
|
-
|
|
13667
|
-
|
|
13606
|
+
fileSize: bigint | null;
|
|
13607
|
+
totalFileCount: bigint | null;
|
|
13668
13608
|
totalStorageSize: bigint | null;
|
|
13669
|
-
|
|
13670
|
-
|
|
13609
|
+
fileCount: bigint | null;
|
|
13610
|
+
perFileSize: bigint | null;
|
|
13671
13611
|
totalCount: bigint | null;
|
|
13672
13612
|
};
|
|
13673
13613
|
receivedMails: {
|
|
13674
13614
|
count: bigint | null;
|
|
13675
|
-
|
|
13676
|
-
|
|
13615
|
+
fileSize: bigint | null;
|
|
13616
|
+
totalFileCount: bigint | null;
|
|
13677
13617
|
totalStorageSize: bigint | null;
|
|
13678
|
-
|
|
13679
|
-
|
|
13618
|
+
fileCount: bigint | null;
|
|
13619
|
+
perFileSize: bigint | null;
|
|
13680
13620
|
totalCount: bigint | null;
|
|
13681
13621
|
};
|
|
13682
13622
|
};
|
|
@@ -13695,28 +13635,28 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13695
13635
|
quotas: {
|
|
13696
13636
|
uploadCount: bigint | null;
|
|
13697
13637
|
downloadCount: bigint | null;
|
|
13698
|
-
|
|
13638
|
+
totalFileCount: bigint | null;
|
|
13699
13639
|
totalStorageSize: bigint | null;
|
|
13700
|
-
|
|
13640
|
+
perFileSize: bigint | null;
|
|
13701
13641
|
uploadBandwidth: bigint | null;
|
|
13702
13642
|
downloadBandwidth: bigint | null;
|
|
13703
13643
|
} & {
|
|
13704
13644
|
sentMails: {
|
|
13705
13645
|
count: bigint | null;
|
|
13706
|
-
|
|
13707
|
-
|
|
13646
|
+
fileSize: bigint | null;
|
|
13647
|
+
totalFileCount: bigint | null;
|
|
13708
13648
|
totalStorageSize: bigint | null;
|
|
13709
|
-
|
|
13710
|
-
|
|
13649
|
+
fileCount: bigint | null;
|
|
13650
|
+
perFileSize: bigint | null;
|
|
13711
13651
|
totalCount: bigint | null;
|
|
13712
13652
|
};
|
|
13713
13653
|
receivedMails: {
|
|
13714
13654
|
count: bigint | null;
|
|
13715
|
-
|
|
13716
|
-
|
|
13655
|
+
fileSize: bigint | null;
|
|
13656
|
+
totalFileCount: bigint | null;
|
|
13717
13657
|
totalStorageSize: bigint | null;
|
|
13718
|
-
|
|
13719
|
-
|
|
13658
|
+
fileCount: bigint | null;
|
|
13659
|
+
perFileSize: bigint | null;
|
|
13720
13660
|
totalCount: bigint | null;
|
|
13721
13661
|
};
|
|
13722
13662
|
};
|
|
@@ -16082,9 +16022,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16082
16022
|
usersBase: bigint | null;
|
|
16083
16023
|
usersUnit: bigint | null;
|
|
16084
16024
|
usersPrice: number | null;
|
|
16085
|
-
|
|
16086
|
-
|
|
16087
|
-
|
|
16025
|
+
perFileSizeBase: bigint | null;
|
|
16026
|
+
perFileSizeUnit: bigint | null;
|
|
16027
|
+
perFileSizePrice: number | null;
|
|
16088
16028
|
bandwidthBase: bigint | null;
|
|
16089
16029
|
bandwidthUnit: bigint | null;
|
|
16090
16030
|
bandwidthPrice: number | null;
|
|
@@ -16093,7 +16033,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16093
16033
|
totalStorageSizePrice: number | null;
|
|
16094
16034
|
devsMax: bigint | null;
|
|
16095
16035
|
usersMax: bigint | null;
|
|
16096
|
-
|
|
16036
|
+
perFileSizeMax: bigint | null;
|
|
16097
16037
|
bandwidthMax: bigint | null;
|
|
16098
16038
|
totalStorageSizeMax: bigint | null;
|
|
16099
16039
|
};
|
|
@@ -16132,9 +16072,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16132
16072
|
usersBase: bigint | null;
|
|
16133
16073
|
usersUnit: bigint | null;
|
|
16134
16074
|
usersPrice: number | null;
|
|
16135
|
-
|
|
16136
|
-
|
|
16137
|
-
|
|
16075
|
+
perFileSizeBase: bigint | null;
|
|
16076
|
+
perFileSizeUnit: bigint | null;
|
|
16077
|
+
perFileSizePrice: number | null;
|
|
16138
16078
|
bandwidthBase: bigint | null;
|
|
16139
16079
|
bandwidthUnit: bigint | null;
|
|
16140
16080
|
bandwidthPrice: number | null;
|
|
@@ -16143,7 +16083,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16143
16083
|
totalStorageSizePrice: number | null;
|
|
16144
16084
|
devsMax: bigint | null;
|
|
16145
16085
|
usersMax: bigint | null;
|
|
16146
|
-
|
|
16086
|
+
perFileSizeMax: bigint | null;
|
|
16147
16087
|
bandwidthMax: bigint | null;
|
|
16148
16088
|
totalStorageSizeMax: bigint | null;
|
|
16149
16089
|
};
|
|
@@ -16164,9 +16104,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16164
16104
|
usersBase: bigint | null;
|
|
16165
16105
|
usersUnit: bigint | null;
|
|
16166
16106
|
usersPrice: number | null;
|
|
16167
|
-
|
|
16168
|
-
|
|
16169
|
-
|
|
16107
|
+
perFileSizeBase: bigint | null;
|
|
16108
|
+
perFileSizeUnit: bigint | null;
|
|
16109
|
+
perFileSizePrice: number | null;
|
|
16170
16110
|
bandwidthBase: bigint | null;
|
|
16171
16111
|
bandwidthUnit: bigint | null;
|
|
16172
16112
|
bandwidthPrice: number | null;
|
|
@@ -16175,7 +16115,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16175
16115
|
totalStorageSizePrice: number | null;
|
|
16176
16116
|
devsMax: bigint | null;
|
|
16177
16117
|
usersMax: bigint | null;
|
|
16178
|
-
|
|
16118
|
+
perFileSizeMax: bigint | null;
|
|
16179
16119
|
bandwidthMax: bigint | null;
|
|
16180
16120
|
totalStorageSizeMax: bigint | null;
|
|
16181
16121
|
};
|
|
@@ -16214,9 +16154,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16214
16154
|
usersBase: bigint | null;
|
|
16215
16155
|
usersUnit: bigint | null;
|
|
16216
16156
|
usersPrice: number | null;
|
|
16217
|
-
|
|
16218
|
-
|
|
16219
|
-
|
|
16157
|
+
perFileSizeBase: bigint | null;
|
|
16158
|
+
perFileSizeUnit: bigint | null;
|
|
16159
|
+
perFileSizePrice: number | null;
|
|
16220
16160
|
bandwidthBase: bigint | null;
|
|
16221
16161
|
bandwidthUnit: bigint | null;
|
|
16222
16162
|
bandwidthPrice: number | null;
|
|
@@ -16225,7 +16165,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16225
16165
|
totalStorageSizePrice: number | null;
|
|
16226
16166
|
devsMax: bigint | null;
|
|
16227
16167
|
usersMax: bigint | null;
|
|
16228
|
-
|
|
16168
|
+
perFileSizeMax: bigint | null;
|
|
16229
16169
|
bandwidthMax: bigint | null;
|
|
16230
16170
|
totalStorageSizeMax: bigint | null;
|
|
16231
16171
|
};
|
|
@@ -16300,9 +16240,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16300
16240
|
usersBase: bigint | null;
|
|
16301
16241
|
usersUnit: bigint | null;
|
|
16302
16242
|
usersPrice: number | null;
|
|
16303
|
-
|
|
16304
|
-
|
|
16305
|
-
|
|
16243
|
+
perFileSizeBase: bigint | null;
|
|
16244
|
+
perFileSizeUnit: bigint | null;
|
|
16245
|
+
perFileSizePrice: number | null;
|
|
16306
16246
|
bandwidthBase: bigint | null;
|
|
16307
16247
|
bandwidthUnit: bigint | null;
|
|
16308
16248
|
bandwidthPrice: number | null;
|
|
@@ -16311,7 +16251,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16311
16251
|
totalStorageSizePrice: number | null;
|
|
16312
16252
|
devsMax: bigint | null;
|
|
16313
16253
|
usersMax: bigint | null;
|
|
16314
|
-
|
|
16254
|
+
perFileSizeMax: bigint | null;
|
|
16315
16255
|
bandwidthMax: bigint | null;
|
|
16316
16256
|
totalStorageSizeMax: bigint | null;
|
|
16317
16257
|
};
|
|
@@ -16350,9 +16290,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16350
16290
|
usersBase: bigint | null;
|
|
16351
16291
|
usersUnit: bigint | null;
|
|
16352
16292
|
usersPrice: number | null;
|
|
16353
|
-
|
|
16354
|
-
|
|
16355
|
-
|
|
16293
|
+
perFileSizeBase: bigint | null;
|
|
16294
|
+
perFileSizeUnit: bigint | null;
|
|
16295
|
+
perFileSizePrice: number | null;
|
|
16356
16296
|
bandwidthBase: bigint | null;
|
|
16357
16297
|
bandwidthUnit: bigint | null;
|
|
16358
16298
|
bandwidthPrice: number | null;
|
|
@@ -16361,7 +16301,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16361
16301
|
totalStorageSizePrice: number | null;
|
|
16362
16302
|
devsMax: bigint | null;
|
|
16363
16303
|
usersMax: bigint | null;
|
|
16364
|
-
|
|
16304
|
+
perFileSizeMax: bigint | null;
|
|
16365
16305
|
bandwidthMax: bigint | null;
|
|
16366
16306
|
totalStorageSizeMax: bigint | null;
|
|
16367
16307
|
};
|
|
@@ -16382,9 +16322,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16382
16322
|
usersBase: bigint | null;
|
|
16383
16323
|
usersUnit: bigint | null;
|
|
16384
16324
|
usersPrice: number | null;
|
|
16385
|
-
|
|
16386
|
-
|
|
16387
|
-
|
|
16325
|
+
perFileSizeBase: bigint | null;
|
|
16326
|
+
perFileSizeUnit: bigint | null;
|
|
16327
|
+
perFileSizePrice: number | null;
|
|
16388
16328
|
bandwidthBase: bigint | null;
|
|
16389
16329
|
bandwidthUnit: bigint | null;
|
|
16390
16330
|
bandwidthPrice: number | null;
|
|
@@ -16393,7 +16333,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16393
16333
|
totalStorageSizePrice: number | null;
|
|
16394
16334
|
devsMax: bigint | null;
|
|
16395
16335
|
usersMax: bigint | null;
|
|
16396
|
-
|
|
16336
|
+
perFileSizeMax: bigint | null;
|
|
16397
16337
|
bandwidthMax: bigint | null;
|
|
16398
16338
|
totalStorageSizeMax: bigint | null;
|
|
16399
16339
|
};
|
|
@@ -16432,9 +16372,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16432
16372
|
usersBase: bigint | null;
|
|
16433
16373
|
usersUnit: bigint | null;
|
|
16434
16374
|
usersPrice: number | null;
|
|
16435
|
-
|
|
16436
|
-
|
|
16437
|
-
|
|
16375
|
+
perFileSizeBase: bigint | null;
|
|
16376
|
+
perFileSizeUnit: bigint | null;
|
|
16377
|
+
perFileSizePrice: number | null;
|
|
16438
16378
|
bandwidthBase: bigint | null;
|
|
16439
16379
|
bandwidthUnit: bigint | null;
|
|
16440
16380
|
bandwidthPrice: number | null;
|
|
@@ -16443,7 +16383,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16443
16383
|
totalStorageSizePrice: number | null;
|
|
16444
16384
|
devsMax: bigint | null;
|
|
16445
16385
|
usersMax: bigint | null;
|
|
16446
|
-
|
|
16386
|
+
perFileSizeMax: bigint | null;
|
|
16447
16387
|
bandwidthMax: bigint | null;
|
|
16448
16388
|
totalStorageSizeMax: bigint | null;
|
|
16449
16389
|
};
|
|
@@ -17832,7 +17772,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17832
17772
|
_input_in: {} | undefined;
|
|
17833
17773
|
_input_out: {} | undefined;
|
|
17834
17774
|
_output_in: {
|
|
17835
|
-
accountId: string;
|
|
17836
17775
|
userId: string;
|
|
17837
17776
|
id: string;
|
|
17838
17777
|
createdAt: Date;
|
|
@@ -17841,7 +17780,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17841
17780
|
ip: string | null;
|
|
17842
17781
|
country: string | null;
|
|
17843
17782
|
city: string | null;
|
|
17844
|
-
appSessions:
|
|
17783
|
+
appSessions: {
|
|
17845
17784
|
appId: string;
|
|
17846
17785
|
userId: string;
|
|
17847
17786
|
id: string;
|
|
@@ -17852,14 +17791,12 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17852
17791
|
ip: string | null;
|
|
17853
17792
|
country: string | null;
|
|
17854
17793
|
city: string | null;
|
|
17855
|
-
} & {
|
|
17856
17794
|
name: string;
|
|
17857
17795
|
logo: string | null;
|
|
17858
17796
|
origin: string[];
|
|
17859
|
-
}
|
|
17797
|
+
}[];
|
|
17860
17798
|
}[];
|
|
17861
17799
|
_output_out: {
|
|
17862
|
-
accountId: string;
|
|
17863
17800
|
userId: string;
|
|
17864
17801
|
id: string;
|
|
17865
17802
|
createdAt: Date;
|
|
@@ -17868,7 +17805,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17868
17805
|
ip: string | null;
|
|
17869
17806
|
country: string | null;
|
|
17870
17807
|
city: string | null;
|
|
17871
|
-
appSessions:
|
|
17808
|
+
appSessions: {
|
|
17872
17809
|
appId: string;
|
|
17873
17810
|
userId: string;
|
|
17874
17811
|
id: string;
|
|
@@ -17879,11 +17816,10 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17879
17816
|
ip: string | null;
|
|
17880
17817
|
country: string | null;
|
|
17881
17818
|
city: string | null;
|
|
17882
|
-
} & {
|
|
17883
17819
|
name: string;
|
|
17884
17820
|
logo: string | null;
|
|
17885
17821
|
origin: string[];
|
|
17886
|
-
}
|
|
17822
|
+
}[];
|
|
17887
17823
|
}[];
|
|
17888
17824
|
}, unknown>>;
|
|
17889
17825
|
};
|
|
@@ -18206,12 +18142,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
18206
18142
|
_input_in: {
|
|
18207
18143
|
lastname?: string | null | undefined;
|
|
18208
18144
|
firstname?: string | null | undefined;
|
|
18145
|
+
avatar?: string | null | undefined;
|
|
18209
18146
|
isSearchable?: boolean | undefined;
|
|
18210
18147
|
lang?: "fr" | "en" | null | undefined;
|
|
18211
18148
|
};
|
|
18212
18149
|
_input_out: {
|
|
18213
18150
|
lastname?: string | null | undefined;
|
|
18214
18151
|
firstname?: string | null | undefined;
|
|
18152
|
+
avatar?: string | null | undefined;
|
|
18215
18153
|
isSearchable?: boolean | undefined;
|
|
18216
18154
|
lang?: "fr" | "en" | null | undefined;
|
|
18217
18155
|
};
|