@secrecy/lib 1.28.0 → 1.29.0-feat-rename-file.2
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/data.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/data.d.ts +4 -0
- package/dist/types/client/index.d.ts +1 -1
- package/dist/types/client/types/data.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 +455 -369
- 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/file.js +0 -29
- package/dist/types/client/convert/file.d.ts +0 -4
- package/dist/types/client/types/file.d.ts +0 -6
- /package/dist/lib/client/types/{file.js → data.js} +0 -0
- /package/dist/lib/crypto/{file.js → data.js} +0 -0
- /package/dist/types/crypto/{file.d.ts → data.d.ts} +0 -0
package/dist/types/client.d.ts
CHANGED
|
@@ -251,52 +251,68 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
251
251
|
mail: {
|
|
252
252
|
received: {
|
|
253
253
|
count: bigint;
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
254
|
+
dataSize: bigint;
|
|
255
|
+
maxDataSize: bigint | null;
|
|
256
|
+
dataCount: bigint;
|
|
257
257
|
maxCount: bigint | null;
|
|
258
|
-
|
|
258
|
+
maxDataCount: bigint | null;
|
|
259
259
|
};
|
|
260
260
|
sent: {
|
|
261
261
|
count: bigint;
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
262
|
+
dataSize: bigint;
|
|
263
|
+
maxDataSize: bigint | null;
|
|
264
|
+
dataCount: bigint;
|
|
265
265
|
maxCount: bigint | null;
|
|
266
|
-
|
|
266
|
+
maxDataCount: bigint | null;
|
|
267
267
|
};
|
|
268
268
|
};
|
|
269
269
|
cloud: {
|
|
270
270
|
count: bigint;
|
|
271
|
+
uploadCount: bigint;
|
|
272
|
+
downloadCount: bigint;
|
|
271
273
|
size: bigint;
|
|
274
|
+
uploadBandwidth: bigint;
|
|
275
|
+
downloadBandwidth: bigint;
|
|
272
276
|
maxCount: bigint | null;
|
|
273
277
|
maxSize: bigint | null;
|
|
278
|
+
maxDownloadBandwidth: bigint | null;
|
|
279
|
+
maxUploadBandwidth: bigint | null;
|
|
280
|
+
maxDownloadCount: bigint | null;
|
|
281
|
+
maxUploadCount: bigint | null;
|
|
274
282
|
};
|
|
275
283
|
};
|
|
276
284
|
_output_out: {
|
|
277
285
|
mail: {
|
|
278
286
|
received: {
|
|
279
287
|
count: bigint;
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
288
|
+
dataSize: bigint;
|
|
289
|
+
maxDataSize: bigint | null;
|
|
290
|
+
dataCount: bigint;
|
|
283
291
|
maxCount: bigint | null;
|
|
284
|
-
|
|
292
|
+
maxDataCount: bigint | null;
|
|
285
293
|
};
|
|
286
294
|
sent: {
|
|
287
295
|
count: bigint;
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
296
|
+
dataSize: bigint;
|
|
297
|
+
maxDataSize: bigint | null;
|
|
298
|
+
dataCount: bigint;
|
|
291
299
|
maxCount: bigint | null;
|
|
292
|
-
|
|
300
|
+
maxDataCount: bigint | null;
|
|
293
301
|
};
|
|
294
302
|
};
|
|
295
303
|
cloud: {
|
|
296
304
|
count: bigint;
|
|
305
|
+
uploadCount: bigint;
|
|
306
|
+
downloadCount: bigint;
|
|
297
307
|
size: bigint;
|
|
308
|
+
uploadBandwidth: bigint;
|
|
309
|
+
downloadBandwidth: bigint;
|
|
298
310
|
maxCount: bigint | null;
|
|
299
311
|
maxSize: bigint | null;
|
|
312
|
+
maxDownloadBandwidth: bigint | null;
|
|
313
|
+
maxUploadBandwidth: bigint | null;
|
|
314
|
+
maxDownloadCount: bigint | null;
|
|
315
|
+
maxUploadCount: bigint | null;
|
|
300
316
|
};
|
|
301
317
|
};
|
|
302
318
|
}, unknown>>;
|
|
@@ -458,10 +474,10 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
458
474
|
usersBase: bigint | null;
|
|
459
475
|
usersUnit: bigint | null;
|
|
460
476
|
usersPrice: number | null;
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
477
|
+
perDataSize: bigint | null;
|
|
478
|
+
perDataSizeBase: bigint | null;
|
|
479
|
+
perDataSizeUnit: bigint | null;
|
|
480
|
+
perDataSizePrice: number | null;
|
|
465
481
|
bandwidth: bigint | null;
|
|
466
482
|
bandwidthBase: bigint | null;
|
|
467
483
|
bandwidthUnit: bigint | null;
|
|
@@ -481,10 +497,10 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
481
497
|
usersBase: bigint | null;
|
|
482
498
|
usersUnit: bigint | null;
|
|
483
499
|
usersPrice: number | null;
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
500
|
+
perDataSize: bigint | null;
|
|
501
|
+
perDataSizeBase: bigint | null;
|
|
502
|
+
perDataSizeUnit: bigint | null;
|
|
503
|
+
perDataSizePrice: number | null;
|
|
488
504
|
bandwidth: bigint | null;
|
|
489
505
|
bandwidthBase: bigint | null;
|
|
490
506
|
bandwidthUnit: bigint | null;
|
|
@@ -685,9 +701,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
685
701
|
usersBase: bigint | null;
|
|
686
702
|
usersUnit: bigint | null;
|
|
687
703
|
usersPrice: number | null;
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
704
|
+
perDataSizeBase: bigint | null;
|
|
705
|
+
perDataSizeUnit: bigint | null;
|
|
706
|
+
perDataSizePrice: number | null;
|
|
691
707
|
bandwidthBase: bigint | null;
|
|
692
708
|
bandwidthUnit: bigint | null;
|
|
693
709
|
bandwidthPrice: number | null;
|
|
@@ -696,7 +712,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
696
712
|
totalStorageSizePrice: number | null;
|
|
697
713
|
devsMax: bigint | null;
|
|
698
714
|
usersMax: bigint | null;
|
|
699
|
-
|
|
715
|
+
perDataSizeMax: bigint | null;
|
|
700
716
|
bandwidthMax: bigint | null;
|
|
701
717
|
totalStorageSizeMax: bigint | null;
|
|
702
718
|
};
|
|
@@ -717,9 +733,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
717
733
|
usersBase: bigint | null;
|
|
718
734
|
usersUnit: bigint | null;
|
|
719
735
|
usersPrice: number | null;
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
736
|
+
perDataSizeBase: bigint | null;
|
|
737
|
+
perDataSizeUnit: bigint | null;
|
|
738
|
+
perDataSizePrice: number | null;
|
|
723
739
|
bandwidthBase: bigint | null;
|
|
724
740
|
bandwidthUnit: bigint | null;
|
|
725
741
|
bandwidthPrice: number | null;
|
|
@@ -728,7 +744,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
728
744
|
totalStorageSizePrice: number | null;
|
|
729
745
|
devsMax: bigint | null;
|
|
730
746
|
usersMax: bigint | null;
|
|
731
|
-
|
|
747
|
+
perDataSizeMax: bigint | null;
|
|
732
748
|
bandwidthMax: bigint | null;
|
|
733
749
|
totalStorageSizeMax: bigint | null;
|
|
734
750
|
};
|
|
@@ -788,14 +804,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
788
804
|
_output_in: {
|
|
789
805
|
id: string;
|
|
790
806
|
cloudNodeDaysForDelete: number;
|
|
791
|
-
|
|
792
|
-
|
|
807
|
+
historyDataMaxCount: number;
|
|
808
|
+
historyDataDaysForDelete: number | null;
|
|
793
809
|
};
|
|
794
810
|
_output_out: {
|
|
795
811
|
id: string;
|
|
796
812
|
cloudNodeDaysForDelete: number;
|
|
797
|
-
|
|
798
|
-
|
|
813
|
+
historyDataMaxCount: number;
|
|
814
|
+
historyDataDaysForDelete: number | null;
|
|
799
815
|
};
|
|
800
816
|
}, unknown>>;
|
|
801
817
|
};
|
|
@@ -921,25 +937,25 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
921
937
|
};
|
|
922
938
|
_input_in: {
|
|
923
939
|
cloudNodeDaysForDelete?: number | null | undefined;
|
|
924
|
-
|
|
925
|
-
|
|
940
|
+
historyDataMaxCount?: number | null | undefined;
|
|
941
|
+
historyDataDaysForDelete?: number | null | undefined;
|
|
926
942
|
};
|
|
927
943
|
_input_out: {
|
|
928
944
|
cloudNodeDaysForDelete?: number | null | undefined;
|
|
929
|
-
|
|
930
|
-
|
|
945
|
+
historyDataMaxCount?: number | null | undefined;
|
|
946
|
+
historyDataDaysForDelete?: number | null | undefined;
|
|
931
947
|
};
|
|
932
948
|
_output_in: {
|
|
933
949
|
id: string;
|
|
934
950
|
cloudNodeDaysForDelete: number;
|
|
935
|
-
|
|
936
|
-
|
|
951
|
+
historyDataMaxCount: number;
|
|
952
|
+
historyDataDaysForDelete: number | null;
|
|
937
953
|
};
|
|
938
954
|
_output_out: {
|
|
939
955
|
id: string;
|
|
940
956
|
cloudNodeDaysForDelete: number;
|
|
941
|
-
|
|
942
|
-
|
|
957
|
+
historyDataMaxCount: number;
|
|
958
|
+
historyDataDaysForDelete: number | null;
|
|
943
959
|
};
|
|
944
960
|
}, unknown>>;
|
|
945
961
|
};
|
|
@@ -2753,7 +2769,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2753
2769
|
};
|
|
2754
2770
|
};
|
|
2755
2771
|
cloud: {
|
|
2756
|
-
|
|
2772
|
+
addDataToHistory: {
|
|
2757
2773
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
2758
2774
|
_config: import("@trpc/server").RootConfig<{
|
|
2759
2775
|
ctx: {
|
|
@@ -2800,11 +2816,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2800
2816
|
ls: TranslationFunctions;
|
|
2801
2817
|
};
|
|
2802
2818
|
_input_in: {
|
|
2803
|
-
|
|
2819
|
+
dataId: string;
|
|
2804
2820
|
nodeId: string;
|
|
2805
2821
|
};
|
|
2806
2822
|
_input_out: {
|
|
2807
|
-
|
|
2823
|
+
dataId: string;
|
|
2808
2824
|
nodeId: string;
|
|
2809
2825
|
};
|
|
2810
2826
|
_output_in: {
|
|
@@ -2816,7 +2832,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2816
2832
|
type: "FILE" | "FOLDER";
|
|
2817
2833
|
parentId: string | null;
|
|
2818
2834
|
isFavorite: boolean;
|
|
2819
|
-
|
|
2835
|
+
currentDataId: string | null;
|
|
2820
2836
|
} & {
|
|
2821
2837
|
users: [{
|
|
2822
2838
|
id: string;
|
|
@@ -2852,6 +2868,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2852
2868
|
storageType: "s3" | "lite";
|
|
2853
2869
|
sizeBefore: bigint;
|
|
2854
2870
|
md5Encrypted: string;
|
|
2871
|
+
userAppUserId: string;
|
|
2872
|
+
userAppAppId: string;
|
|
2873
|
+
validatedAt: Date | null;
|
|
2855
2874
|
access: {
|
|
2856
2875
|
key: string;
|
|
2857
2876
|
sharedByPubKey: string;
|
|
@@ -2865,6 +2884,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2865
2884
|
storageType: "s3" | "lite";
|
|
2866
2885
|
sizeBefore: bigint;
|
|
2867
2886
|
md5Encrypted: string;
|
|
2887
|
+
userAppUserId: string;
|
|
2888
|
+
userAppAppId: string;
|
|
2889
|
+
validatedAt: Date | null;
|
|
2868
2890
|
access: {
|
|
2869
2891
|
key: string;
|
|
2870
2892
|
sharedByPubKey: string;
|
|
@@ -2879,7 +2901,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2879
2901
|
type: "FILE" | "FOLDER";
|
|
2880
2902
|
parentId: string | null;
|
|
2881
2903
|
isFavorite: boolean;
|
|
2882
|
-
|
|
2904
|
+
currentDataId: string | null;
|
|
2883
2905
|
} & {
|
|
2884
2906
|
users: [{
|
|
2885
2907
|
id: string;
|
|
@@ -2911,7 +2933,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2911
2933
|
type: "FILE" | "FOLDER";
|
|
2912
2934
|
parentId: string | null;
|
|
2913
2935
|
isFavorite: boolean;
|
|
2914
|
-
|
|
2936
|
+
currentDataId: string | null;
|
|
2915
2937
|
} & {
|
|
2916
2938
|
users: [{
|
|
2917
2939
|
id: string;
|
|
@@ -2955,7 +2977,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2955
2977
|
type: "FILE" | "FOLDER";
|
|
2956
2978
|
parentId: string | null;
|
|
2957
2979
|
isFavorite: boolean;
|
|
2958
|
-
|
|
2980
|
+
currentDataId: string | null;
|
|
2959
2981
|
} & {
|
|
2960
2982
|
users: [{
|
|
2961
2983
|
id: string;
|
|
@@ -2991,6 +3013,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2991
3013
|
storageType: "s3" | "lite";
|
|
2992
3014
|
sizeBefore: bigint;
|
|
2993
3015
|
md5Encrypted: string;
|
|
3016
|
+
userAppUserId: string;
|
|
3017
|
+
userAppAppId: string;
|
|
3018
|
+
validatedAt: Date | null;
|
|
2994
3019
|
access: {
|
|
2995
3020
|
key: string;
|
|
2996
3021
|
sharedByPubKey: string;
|
|
@@ -3004,6 +3029,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3004
3029
|
storageType: "s3" | "lite";
|
|
3005
3030
|
sizeBefore: bigint;
|
|
3006
3031
|
md5Encrypted: string;
|
|
3032
|
+
userAppUserId: string;
|
|
3033
|
+
userAppAppId: string;
|
|
3034
|
+
validatedAt: Date | null;
|
|
3007
3035
|
access: {
|
|
3008
3036
|
key: string;
|
|
3009
3037
|
sharedByPubKey: string;
|
|
@@ -3018,7 +3046,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3018
3046
|
type: "FILE" | "FOLDER";
|
|
3019
3047
|
parentId: string | null;
|
|
3020
3048
|
isFavorite: boolean;
|
|
3021
|
-
|
|
3049
|
+
currentDataId: string | null;
|
|
3022
3050
|
} & {
|
|
3023
3051
|
users: [{
|
|
3024
3052
|
id: string;
|
|
@@ -3050,7 +3078,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3050
3078
|
type: "FILE" | "FOLDER";
|
|
3051
3079
|
parentId: string | null;
|
|
3052
3080
|
isFavorite: boolean;
|
|
3053
|
-
|
|
3081
|
+
currentDataId: string | null;
|
|
3054
3082
|
} & {
|
|
3055
3083
|
users: [{
|
|
3056
3084
|
id: string;
|
|
@@ -3087,7 +3115,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3087
3115
|
};
|
|
3088
3116
|
}, unknown>>;
|
|
3089
3117
|
};
|
|
3090
|
-
|
|
3118
|
+
deleteData: {
|
|
3091
3119
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
3092
3120
|
_config: import("@trpc/server").RootConfig<{
|
|
3093
3121
|
ctx: {
|
|
@@ -3134,11 +3162,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3134
3162
|
ls: TranslationFunctions;
|
|
3135
3163
|
};
|
|
3136
3164
|
_input_in: {
|
|
3137
|
-
|
|
3165
|
+
dataId: string;
|
|
3138
3166
|
nodeId: string;
|
|
3139
3167
|
};
|
|
3140
3168
|
_input_out: {
|
|
3141
|
-
|
|
3169
|
+
dataId: string;
|
|
3142
3170
|
nodeId: string;
|
|
3143
3171
|
};
|
|
3144
3172
|
_output_in: {
|
|
@@ -3149,7 +3177,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3149
3177
|
};
|
|
3150
3178
|
}, unknown>>;
|
|
3151
3179
|
};
|
|
3152
|
-
|
|
3180
|
+
dataById: {
|
|
3153
3181
|
query: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"query", {
|
|
3154
3182
|
_config: import("@trpc/server").RootConfig<{
|
|
3155
3183
|
ctx: {
|
|
@@ -3209,6 +3237,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3209
3237
|
storageType: "s3" | "lite";
|
|
3210
3238
|
sizeBefore: bigint;
|
|
3211
3239
|
md5Encrypted: string;
|
|
3240
|
+
userAppUserId: string;
|
|
3241
|
+
userAppAppId: string;
|
|
3242
|
+
validatedAt: Date | null;
|
|
3212
3243
|
access: {
|
|
3213
3244
|
key: string;
|
|
3214
3245
|
sharedByPubKey: string;
|
|
@@ -3222,6 +3253,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3222
3253
|
storageType: "s3" | "lite";
|
|
3223
3254
|
sizeBefore: bigint;
|
|
3224
3255
|
md5Encrypted: string;
|
|
3256
|
+
userAppUserId: string;
|
|
3257
|
+
userAppAppId: string;
|
|
3258
|
+
validatedAt: Date | null;
|
|
3225
3259
|
access: {
|
|
3226
3260
|
key: string;
|
|
3227
3261
|
sharedByPubKey: string;
|
|
@@ -3229,7 +3263,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3229
3263
|
};
|
|
3230
3264
|
}, unknown>>;
|
|
3231
3265
|
};
|
|
3232
|
-
|
|
3266
|
+
dataContentById: {
|
|
3233
3267
|
query: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"query", {
|
|
3234
3268
|
_config: import("@trpc/server").RootConfig<{
|
|
3235
3269
|
ctx: {
|
|
@@ -3383,7 +3417,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3383
3417
|
};
|
|
3384
3418
|
}, unknown>>;
|
|
3385
3419
|
};
|
|
3386
|
-
|
|
3420
|
+
dataContentByIds: {
|
|
3387
3421
|
query: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"query", {
|
|
3388
3422
|
_config: import("@trpc/server").RootConfig<{
|
|
3389
3423
|
ctx: {
|
|
@@ -3537,7 +3571,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3537
3571
|
})[];
|
|
3538
3572
|
}, unknown>>;
|
|
3539
3573
|
};
|
|
3540
|
-
|
|
3574
|
+
dataSharedWithMe: {
|
|
3541
3575
|
query: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"query", {
|
|
3542
3576
|
_config: import("@trpc/server").RootConfig<{
|
|
3543
3577
|
ctx: {
|
|
@@ -3641,15 +3675,15 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3641
3675
|
};
|
|
3642
3676
|
_input_in: {
|
|
3643
3677
|
key: string;
|
|
3644
|
-
|
|
3645
|
-
|
|
3678
|
+
dataId: string;
|
|
3679
|
+
dataName: string;
|
|
3646
3680
|
nodeId: string | null;
|
|
3647
3681
|
nameKey: string;
|
|
3648
3682
|
};
|
|
3649
3683
|
_input_out: {
|
|
3650
3684
|
key: string;
|
|
3651
|
-
|
|
3652
|
-
|
|
3685
|
+
dataId: string;
|
|
3686
|
+
dataName: string;
|
|
3653
3687
|
nodeId: string | null;
|
|
3654
3688
|
nameKey: string;
|
|
3655
3689
|
};
|
|
@@ -3662,7 +3696,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3662
3696
|
type: "FILE" | "FOLDER";
|
|
3663
3697
|
parentId: string | null;
|
|
3664
3698
|
isFavorite: boolean;
|
|
3665
|
-
|
|
3699
|
+
currentDataId: string | null;
|
|
3666
3700
|
} & {
|
|
3667
3701
|
users: [{
|
|
3668
3702
|
id: string;
|
|
@@ -3698,6 +3732,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3698
3732
|
storageType: "s3" | "lite";
|
|
3699
3733
|
sizeBefore: bigint;
|
|
3700
3734
|
md5Encrypted: string;
|
|
3735
|
+
userAppUserId: string;
|
|
3736
|
+
userAppAppId: string;
|
|
3737
|
+
validatedAt: Date | null;
|
|
3701
3738
|
access: {
|
|
3702
3739
|
key: string;
|
|
3703
3740
|
sharedByPubKey: string;
|
|
@@ -3711,6 +3748,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3711
3748
|
storageType: "s3" | "lite";
|
|
3712
3749
|
sizeBefore: bigint;
|
|
3713
3750
|
md5Encrypted: string;
|
|
3751
|
+
userAppUserId: string;
|
|
3752
|
+
userAppAppId: string;
|
|
3753
|
+
validatedAt: Date | null;
|
|
3714
3754
|
access: {
|
|
3715
3755
|
key: string;
|
|
3716
3756
|
sharedByPubKey: string;
|
|
@@ -3725,7 +3765,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3725
3765
|
type: "FILE" | "FOLDER";
|
|
3726
3766
|
parentId: string | null;
|
|
3727
3767
|
isFavorite: boolean;
|
|
3728
|
-
|
|
3768
|
+
currentDataId: string | null;
|
|
3729
3769
|
} & {
|
|
3730
3770
|
users: [{
|
|
3731
3771
|
id: string;
|
|
@@ -3757,7 +3797,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3757
3797
|
type: "FILE" | "FOLDER";
|
|
3758
3798
|
parentId: string | null;
|
|
3759
3799
|
isFavorite: boolean;
|
|
3760
|
-
|
|
3800
|
+
currentDataId: string | null;
|
|
3761
3801
|
} & {
|
|
3762
3802
|
users: [{
|
|
3763
3803
|
id: string;
|
|
@@ -3801,7 +3841,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3801
3841
|
type: "FILE" | "FOLDER";
|
|
3802
3842
|
parentId: string | null;
|
|
3803
3843
|
isFavorite: boolean;
|
|
3804
|
-
|
|
3844
|
+
currentDataId: string | null;
|
|
3805
3845
|
} & {
|
|
3806
3846
|
users: [{
|
|
3807
3847
|
id: string;
|
|
@@ -3837,6 +3877,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3837
3877
|
storageType: "s3" | "lite";
|
|
3838
3878
|
sizeBefore: bigint;
|
|
3839
3879
|
md5Encrypted: string;
|
|
3880
|
+
userAppUserId: string;
|
|
3881
|
+
userAppAppId: string;
|
|
3882
|
+
validatedAt: Date | null;
|
|
3840
3883
|
access: {
|
|
3841
3884
|
key: string;
|
|
3842
3885
|
sharedByPubKey: string;
|
|
@@ -3850,6 +3893,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3850
3893
|
storageType: "s3" | "lite";
|
|
3851
3894
|
sizeBefore: bigint;
|
|
3852
3895
|
md5Encrypted: string;
|
|
3896
|
+
userAppUserId: string;
|
|
3897
|
+
userAppAppId: string;
|
|
3898
|
+
validatedAt: Date | null;
|
|
3853
3899
|
access: {
|
|
3854
3900
|
key: string;
|
|
3855
3901
|
sharedByPubKey: string;
|
|
@@ -3864,7 +3910,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3864
3910
|
type: "FILE" | "FOLDER";
|
|
3865
3911
|
parentId: string | null;
|
|
3866
3912
|
isFavorite: boolean;
|
|
3867
|
-
|
|
3913
|
+
currentDataId: string | null;
|
|
3868
3914
|
} & {
|
|
3869
3915
|
users: [{
|
|
3870
3916
|
id: string;
|
|
@@ -3896,7 +3942,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3896
3942
|
type: "FILE" | "FOLDER";
|
|
3897
3943
|
parentId: string | null;
|
|
3898
3944
|
isFavorite: boolean;
|
|
3899
|
-
|
|
3945
|
+
currentDataId: string | null;
|
|
3900
3946
|
} & {
|
|
3901
3947
|
users: [{
|
|
3902
3948
|
id: string;
|
|
@@ -4047,7 +4093,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4047
4093
|
updatedAt: Date;
|
|
4048
4094
|
history: {
|
|
4049
4095
|
createdAt: Date;
|
|
4050
|
-
|
|
4096
|
+
dataId: string;
|
|
4051
4097
|
size: bigint;
|
|
4052
4098
|
storageType: "s3" | "lite";
|
|
4053
4099
|
}[];
|
|
@@ -4079,7 +4125,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4079
4125
|
updatedAt: Date;
|
|
4080
4126
|
history: {
|
|
4081
4127
|
createdAt: Date;
|
|
4082
|
-
|
|
4128
|
+
dataId: string;
|
|
4083
4129
|
size: bigint;
|
|
4084
4130
|
storageType: "s3" | "lite";
|
|
4085
4131
|
}[];
|
|
@@ -4099,7 +4145,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4099
4145
|
};
|
|
4100
4146
|
}, unknown>>;
|
|
4101
4147
|
};
|
|
4102
|
-
|
|
4148
|
+
shareDataInHistory: {
|
|
4103
4149
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4104
4150
|
_config: import("@trpc/server").RootConfig<{
|
|
4105
4151
|
ctx: {
|
|
@@ -4150,7 +4196,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4150
4196
|
id: string;
|
|
4151
4197
|
key: string;
|
|
4152
4198
|
}[];
|
|
4153
|
-
|
|
4199
|
+
dataId: string;
|
|
4154
4200
|
nodeId: string;
|
|
4155
4201
|
};
|
|
4156
4202
|
_input_out: {
|
|
@@ -4158,7 +4204,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4158
4204
|
id: string;
|
|
4159
4205
|
key: string;
|
|
4160
4206
|
}[];
|
|
4161
|
-
|
|
4207
|
+
dataId: string;
|
|
4162
4208
|
nodeId: string;
|
|
4163
4209
|
};
|
|
4164
4210
|
_output_in: {
|
|
@@ -4169,7 +4215,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4169
4215
|
};
|
|
4170
4216
|
}, unknown>>;
|
|
4171
4217
|
};
|
|
4172
|
-
|
|
4218
|
+
uploadDataEnd: {
|
|
4173
4219
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4174
4220
|
_config: import("@trpc/server").RootConfig<{
|
|
4175
4221
|
ctx: {
|
|
@@ -4216,10 +4262,10 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4216
4262
|
ls: TranslationFunctions;
|
|
4217
4263
|
};
|
|
4218
4264
|
_input_in: {
|
|
4219
|
-
|
|
4265
|
+
dataId: string;
|
|
4220
4266
|
};
|
|
4221
4267
|
_input_out: {
|
|
4222
|
-
|
|
4268
|
+
dataId: string;
|
|
4223
4269
|
};
|
|
4224
4270
|
_output_in: {
|
|
4225
4271
|
isUploadEnded: boolean;
|
|
@@ -4229,7 +4275,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4229
4275
|
};
|
|
4230
4276
|
}, unknown>>;
|
|
4231
4277
|
};
|
|
4232
|
-
|
|
4278
|
+
uploadDataPartEnd: {
|
|
4233
4279
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4234
4280
|
_config: import("@trpc/server").RootConfig<{
|
|
4235
4281
|
ctx: {
|
|
@@ -4276,12 +4322,12 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4276
4322
|
ls: TranslationFunctions;
|
|
4277
4323
|
};
|
|
4278
4324
|
_input_in: {
|
|
4279
|
-
|
|
4325
|
+
dataId: string;
|
|
4280
4326
|
md5: string;
|
|
4281
4327
|
order: number;
|
|
4282
4328
|
};
|
|
4283
4329
|
_input_out: {
|
|
4284
|
-
|
|
4330
|
+
dataId: string;
|
|
4285
4331
|
md5: string;
|
|
4286
4332
|
order: number;
|
|
4287
4333
|
};
|
|
@@ -4293,7 +4339,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4293
4339
|
};
|
|
4294
4340
|
}, unknown>>;
|
|
4295
4341
|
};
|
|
4296
|
-
|
|
4342
|
+
uploadData: {
|
|
4297
4343
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4298
4344
|
_config: import("@trpc/server").RootConfig<{
|
|
4299
4345
|
ctx: {
|
|
@@ -4340,40 +4386,40 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4340
4386
|
ls: TranslationFunctions;
|
|
4341
4387
|
};
|
|
4342
4388
|
_input_in: {
|
|
4343
|
-
|
|
4389
|
+
dataSize: bigint;
|
|
4344
4390
|
md5: string;
|
|
4345
4391
|
md5Encrypted: string;
|
|
4346
|
-
|
|
4347
|
-
|
|
4392
|
+
dataKey: string;
|
|
4393
|
+
dataSizeBefore: bigint;
|
|
4348
4394
|
};
|
|
4349
4395
|
_input_out: {
|
|
4350
|
-
|
|
4396
|
+
dataSize: bigint;
|
|
4351
4397
|
md5: string;
|
|
4352
4398
|
md5Encrypted: string;
|
|
4353
|
-
|
|
4354
|
-
|
|
4399
|
+
dataKey: string;
|
|
4400
|
+
dataSizeBefore: bigint;
|
|
4355
4401
|
};
|
|
4356
4402
|
_output_in: {
|
|
4357
|
-
|
|
4358
|
-
filePartSize: bigint;
|
|
4403
|
+
dataId: string;
|
|
4359
4404
|
parts: {
|
|
4360
4405
|
fields: Record<string, string>;
|
|
4361
4406
|
url: string;
|
|
4362
4407
|
order: number;
|
|
4363
4408
|
}[];
|
|
4409
|
+
dataPartSize: bigint;
|
|
4364
4410
|
};
|
|
4365
4411
|
_output_out: {
|
|
4366
|
-
|
|
4367
|
-
filePartSize: bigint;
|
|
4412
|
+
dataId: string;
|
|
4368
4413
|
parts: {
|
|
4369
4414
|
fields: Record<string, string>;
|
|
4370
4415
|
url: string;
|
|
4371
4416
|
order: number;
|
|
4372
4417
|
}[];
|
|
4418
|
+
dataPartSize: bigint;
|
|
4373
4419
|
};
|
|
4374
4420
|
}, unknown>>;
|
|
4375
4421
|
};
|
|
4376
|
-
|
|
4422
|
+
uploadLiteData: {
|
|
4377
4423
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4378
4424
|
_config: import("@trpc/server").RootConfig<{
|
|
4379
4425
|
ctx: {
|
|
@@ -4420,20 +4466,20 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4420
4466
|
ls: TranslationFunctions;
|
|
4421
4467
|
};
|
|
4422
4468
|
_input_in: {
|
|
4423
|
-
|
|
4469
|
+
dataSize: bigint;
|
|
4424
4470
|
md5: string;
|
|
4425
4471
|
content: Buffer;
|
|
4426
4472
|
md5Encrypted: string;
|
|
4427
|
-
|
|
4428
|
-
|
|
4473
|
+
dataKey: string;
|
|
4474
|
+
dataSizeBefore: bigint;
|
|
4429
4475
|
};
|
|
4430
4476
|
_input_out: {
|
|
4431
|
-
|
|
4477
|
+
dataSize: bigint;
|
|
4432
4478
|
md5: string;
|
|
4433
4479
|
content: Buffer;
|
|
4434
4480
|
md5Encrypted: string;
|
|
4435
|
-
|
|
4436
|
-
|
|
4481
|
+
dataKey: string;
|
|
4482
|
+
dataSizeBefore: bigint;
|
|
4437
4483
|
};
|
|
4438
4484
|
_output_in: {
|
|
4439
4485
|
id: string;
|
|
@@ -4508,7 +4554,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4508
4554
|
type: "FILE" | "FOLDER";
|
|
4509
4555
|
parentId: string | null;
|
|
4510
4556
|
isFavorite: boolean;
|
|
4511
|
-
|
|
4557
|
+
currentDataId: string | null;
|
|
4512
4558
|
} & {
|
|
4513
4559
|
users: [{
|
|
4514
4560
|
id: string;
|
|
@@ -4544,6 +4590,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4544
4590
|
storageType: "s3" | "lite";
|
|
4545
4591
|
sizeBefore: bigint;
|
|
4546
4592
|
md5Encrypted: string;
|
|
4593
|
+
userAppUserId: string;
|
|
4594
|
+
userAppAppId: string;
|
|
4595
|
+
validatedAt: Date | null;
|
|
4547
4596
|
access: {
|
|
4548
4597
|
key: string;
|
|
4549
4598
|
sharedByPubKey: string;
|
|
@@ -4557,6 +4606,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4557
4606
|
storageType: "s3" | "lite";
|
|
4558
4607
|
sizeBefore: bigint;
|
|
4559
4608
|
md5Encrypted: string;
|
|
4609
|
+
userAppUserId: string;
|
|
4610
|
+
userAppAppId: string;
|
|
4611
|
+
validatedAt: Date | null;
|
|
4560
4612
|
access: {
|
|
4561
4613
|
key: string;
|
|
4562
4614
|
sharedByPubKey: string;
|
|
@@ -4571,7 +4623,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4571
4623
|
type: "FILE" | "FOLDER";
|
|
4572
4624
|
parentId: string | null;
|
|
4573
4625
|
isFavorite: boolean;
|
|
4574
|
-
|
|
4626
|
+
currentDataId: string | null;
|
|
4575
4627
|
} & {
|
|
4576
4628
|
users: [{
|
|
4577
4629
|
id: string;
|
|
@@ -4603,7 +4655,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4603
4655
|
type: "FILE" | "FOLDER";
|
|
4604
4656
|
parentId: string | null;
|
|
4605
4657
|
isFavorite: boolean;
|
|
4606
|
-
|
|
4658
|
+
currentDataId: string | null;
|
|
4607
4659
|
} & {
|
|
4608
4660
|
users: [{
|
|
4609
4661
|
id: string;
|
|
@@ -4647,7 +4699,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4647
4699
|
type: "FILE" | "FOLDER";
|
|
4648
4700
|
parentId: string | null;
|
|
4649
4701
|
isFavorite: boolean;
|
|
4650
|
-
|
|
4702
|
+
currentDataId: string | null;
|
|
4651
4703
|
} & {
|
|
4652
4704
|
users: [{
|
|
4653
4705
|
id: string;
|
|
@@ -4683,6 +4735,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4683
4735
|
storageType: "s3" | "lite";
|
|
4684
4736
|
sizeBefore: bigint;
|
|
4685
4737
|
md5Encrypted: string;
|
|
4738
|
+
userAppUserId: string;
|
|
4739
|
+
userAppAppId: string;
|
|
4740
|
+
validatedAt: Date | null;
|
|
4686
4741
|
access: {
|
|
4687
4742
|
key: string;
|
|
4688
4743
|
sharedByPubKey: string;
|
|
@@ -4696,6 +4751,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4696
4751
|
storageType: "s3" | "lite";
|
|
4697
4752
|
sizeBefore: bigint;
|
|
4698
4753
|
md5Encrypted: string;
|
|
4754
|
+
userAppUserId: string;
|
|
4755
|
+
userAppAppId: string;
|
|
4756
|
+
validatedAt: Date | null;
|
|
4699
4757
|
access: {
|
|
4700
4758
|
key: string;
|
|
4701
4759
|
sharedByPubKey: string;
|
|
@@ -4710,7 +4768,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4710
4768
|
type: "FILE" | "FOLDER";
|
|
4711
4769
|
parentId: string | null;
|
|
4712
4770
|
isFavorite: boolean;
|
|
4713
|
-
|
|
4771
|
+
currentDataId: string | null;
|
|
4714
4772
|
} & {
|
|
4715
4773
|
users: [{
|
|
4716
4774
|
id: string;
|
|
@@ -4742,7 +4800,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4742
4800
|
type: "FILE" | "FOLDER";
|
|
4743
4801
|
parentId: string | null;
|
|
4744
4802
|
isFavorite: boolean;
|
|
4745
|
-
|
|
4803
|
+
currentDataId: string | null;
|
|
4746
4804
|
} & {
|
|
4747
4805
|
users: [{
|
|
4748
4806
|
id: string;
|
|
@@ -5346,7 +5404,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5346
5404
|
type: "FILE" | "FOLDER";
|
|
5347
5405
|
parentId: string | null;
|
|
5348
5406
|
isFavorite: boolean;
|
|
5349
|
-
|
|
5407
|
+
currentDataId: string | null;
|
|
5350
5408
|
} & {
|
|
5351
5409
|
users: [{
|
|
5352
5410
|
id: string;
|
|
@@ -5383,7 +5441,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5383
5441
|
type: "FILE" | "FOLDER";
|
|
5384
5442
|
parentId: string | null;
|
|
5385
5443
|
isFavorite: boolean;
|
|
5386
|
-
|
|
5444
|
+
currentDataId: string | null;
|
|
5387
5445
|
} & {
|
|
5388
5446
|
users: [{
|
|
5389
5447
|
id: string;
|
|
@@ -5476,7 +5534,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5476
5534
|
type: "FILE" | "FOLDER";
|
|
5477
5535
|
parentId: string | null;
|
|
5478
5536
|
isFavorite: boolean;
|
|
5479
|
-
|
|
5537
|
+
currentDataId: string | null;
|
|
5480
5538
|
} & {
|
|
5481
5539
|
users: [{
|
|
5482
5540
|
id: string;
|
|
@@ -5512,6 +5570,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5512
5570
|
storageType: "s3" | "lite";
|
|
5513
5571
|
sizeBefore: bigint;
|
|
5514
5572
|
md5Encrypted: string;
|
|
5573
|
+
userAppUserId: string;
|
|
5574
|
+
userAppAppId: string;
|
|
5575
|
+
validatedAt: Date | null;
|
|
5515
5576
|
access: {
|
|
5516
5577
|
key: string;
|
|
5517
5578
|
sharedByPubKey: string;
|
|
@@ -5525,6 +5586,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5525
5586
|
storageType: "s3" | "lite";
|
|
5526
5587
|
sizeBefore: bigint;
|
|
5527
5588
|
md5Encrypted: string;
|
|
5589
|
+
userAppUserId: string;
|
|
5590
|
+
userAppAppId: string;
|
|
5591
|
+
validatedAt: Date | null;
|
|
5528
5592
|
access: {
|
|
5529
5593
|
key: string;
|
|
5530
5594
|
sharedByPubKey: string;
|
|
@@ -5539,7 +5603,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5539
5603
|
type: "FILE" | "FOLDER";
|
|
5540
5604
|
parentId: string | null;
|
|
5541
5605
|
isFavorite: boolean;
|
|
5542
|
-
|
|
5606
|
+
currentDataId: string | null;
|
|
5543
5607
|
} & {
|
|
5544
5608
|
users: [{
|
|
5545
5609
|
id: string;
|
|
@@ -5571,7 +5635,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5571
5635
|
type: "FILE" | "FOLDER";
|
|
5572
5636
|
parentId: string | null;
|
|
5573
5637
|
isFavorite: boolean;
|
|
5574
|
-
|
|
5638
|
+
currentDataId: string | null;
|
|
5575
5639
|
} & {
|
|
5576
5640
|
users: [{
|
|
5577
5641
|
id: string;
|
|
@@ -5615,7 +5679,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5615
5679
|
type: "FILE" | "FOLDER";
|
|
5616
5680
|
parentId: string | null;
|
|
5617
5681
|
isFavorite: boolean;
|
|
5618
|
-
|
|
5682
|
+
currentDataId: string | null;
|
|
5619
5683
|
} & {
|
|
5620
5684
|
users: [{
|
|
5621
5685
|
id: string;
|
|
@@ -5651,6 +5715,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5651
5715
|
storageType: "s3" | "lite";
|
|
5652
5716
|
sizeBefore: bigint;
|
|
5653
5717
|
md5Encrypted: string;
|
|
5718
|
+
userAppUserId: string;
|
|
5719
|
+
userAppAppId: string;
|
|
5720
|
+
validatedAt: Date | null;
|
|
5654
5721
|
access: {
|
|
5655
5722
|
key: string;
|
|
5656
5723
|
sharedByPubKey: string;
|
|
@@ -5664,6 +5731,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5664
5731
|
storageType: "s3" | "lite";
|
|
5665
5732
|
sizeBefore: bigint;
|
|
5666
5733
|
md5Encrypted: string;
|
|
5734
|
+
userAppUserId: string;
|
|
5735
|
+
userAppAppId: string;
|
|
5736
|
+
validatedAt: Date | null;
|
|
5667
5737
|
access: {
|
|
5668
5738
|
key: string;
|
|
5669
5739
|
sharedByPubKey: string;
|
|
@@ -5678,7 +5748,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5678
5748
|
type: "FILE" | "FOLDER";
|
|
5679
5749
|
parentId: string | null;
|
|
5680
5750
|
isFavorite: boolean;
|
|
5681
|
-
|
|
5751
|
+
currentDataId: string | null;
|
|
5682
5752
|
} & {
|
|
5683
5753
|
users: [{
|
|
5684
5754
|
id: string;
|
|
@@ -5710,7 +5780,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5710
5780
|
type: "FILE" | "FOLDER";
|
|
5711
5781
|
parentId: string | null;
|
|
5712
5782
|
isFavorite: boolean;
|
|
5713
|
-
|
|
5783
|
+
currentDataId: string | null;
|
|
5714
5784
|
} & {
|
|
5715
5785
|
users: [{
|
|
5716
5786
|
id: string;
|
|
@@ -5866,7 +5936,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5866
5936
|
type: "FILE" | "FOLDER";
|
|
5867
5937
|
parentId: string | null;
|
|
5868
5938
|
isFavorite: boolean;
|
|
5869
|
-
|
|
5939
|
+
currentDataId: string | null;
|
|
5870
5940
|
} & {
|
|
5871
5941
|
users: [{
|
|
5872
5942
|
id: string;
|
|
@@ -5898,7 +5968,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5898
5968
|
type: "FILE" | "FOLDER";
|
|
5899
5969
|
parentId: string | null;
|
|
5900
5970
|
isFavorite: boolean;
|
|
5901
|
-
|
|
5971
|
+
currentDataId: string | null;
|
|
5902
5972
|
} & {
|
|
5903
5973
|
users: [{
|
|
5904
5974
|
id: string;
|
|
@@ -5984,7 +6054,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5984
6054
|
type: "FILE" | "FOLDER";
|
|
5985
6055
|
parentId: string | null;
|
|
5986
6056
|
isFavorite: boolean;
|
|
5987
|
-
|
|
6057
|
+
currentDataId: string | null;
|
|
5988
6058
|
} & {
|
|
5989
6059
|
users: [{
|
|
5990
6060
|
id: string;
|
|
@@ -6016,7 +6086,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6016
6086
|
type: "FILE" | "FOLDER";
|
|
6017
6087
|
parentId: string | null;
|
|
6018
6088
|
isFavorite: boolean;
|
|
6019
|
-
|
|
6089
|
+
currentDataId: string | null;
|
|
6020
6090
|
} & {
|
|
6021
6091
|
users: [{
|
|
6022
6092
|
id: string;
|
|
@@ -6098,7 +6168,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6098
6168
|
type: "FILE" | "FOLDER";
|
|
6099
6169
|
parentId: string | null;
|
|
6100
6170
|
isFavorite: boolean;
|
|
6101
|
-
|
|
6171
|
+
currentDataId: string | null;
|
|
6102
6172
|
} & {
|
|
6103
6173
|
users: [{
|
|
6104
6174
|
id: string;
|
|
@@ -6130,7 +6200,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6130
6200
|
type: "FILE" | "FOLDER";
|
|
6131
6201
|
parentId: string | null;
|
|
6132
6202
|
isFavorite: boolean;
|
|
6133
|
-
|
|
6203
|
+
currentDataId: string | null;
|
|
6134
6204
|
} & {
|
|
6135
6205
|
users: [{
|
|
6136
6206
|
id: string;
|
|
@@ -6264,24 +6334,24 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6264
6334
|
_input_in: {
|
|
6265
6335
|
userId: string;
|
|
6266
6336
|
nodes: {
|
|
6267
|
-
|
|
6268
|
-
nameKey: string | null;
|
|
6269
|
-
files: {
|
|
6337
|
+
data: {
|
|
6270
6338
|
id: string;
|
|
6271
6339
|
key: string;
|
|
6272
6340
|
}[];
|
|
6341
|
+
id: string;
|
|
6342
|
+
nameKey: string | null;
|
|
6273
6343
|
}[];
|
|
6274
6344
|
rights: "admin" | "write" | "read";
|
|
6275
6345
|
};
|
|
6276
6346
|
_input_out: {
|
|
6277
6347
|
userId: string;
|
|
6278
6348
|
nodes: {
|
|
6279
|
-
|
|
6280
|
-
nameKey: string | null;
|
|
6281
|
-
files: {
|
|
6349
|
+
data: {
|
|
6282
6350
|
id: string;
|
|
6283
6351
|
key: string;
|
|
6284
6352
|
}[];
|
|
6353
|
+
id: string;
|
|
6354
|
+
nameKey: string | null;
|
|
6285
6355
|
}[];
|
|
6286
6356
|
rights: "admin" | "write" | "read";
|
|
6287
6357
|
};
|
|
@@ -6422,7 +6492,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6422
6492
|
type: "FILE" | "FOLDER";
|
|
6423
6493
|
parentId: string | null;
|
|
6424
6494
|
isFavorite: boolean;
|
|
6425
|
-
|
|
6495
|
+
currentDataId: string | null;
|
|
6426
6496
|
} & {
|
|
6427
6497
|
users: [{
|
|
6428
6498
|
id: string;
|
|
@@ -6458,6 +6528,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6458
6528
|
storageType: "s3" | "lite";
|
|
6459
6529
|
sizeBefore: bigint;
|
|
6460
6530
|
md5Encrypted: string;
|
|
6531
|
+
userAppUserId: string;
|
|
6532
|
+
userAppAppId: string;
|
|
6533
|
+
validatedAt: Date | null;
|
|
6461
6534
|
access: {
|
|
6462
6535
|
key: string;
|
|
6463
6536
|
sharedByPubKey: string;
|
|
@@ -6471,6 +6544,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6471
6544
|
storageType: "s3" | "lite";
|
|
6472
6545
|
sizeBefore: bigint;
|
|
6473
6546
|
md5Encrypted: string;
|
|
6547
|
+
userAppUserId: string;
|
|
6548
|
+
userAppAppId: string;
|
|
6549
|
+
validatedAt: Date | null;
|
|
6474
6550
|
access: {
|
|
6475
6551
|
key: string;
|
|
6476
6552
|
sharedByPubKey: string;
|
|
@@ -6485,7 +6561,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6485
6561
|
type: "FILE" | "FOLDER";
|
|
6486
6562
|
parentId: string | null;
|
|
6487
6563
|
isFavorite: boolean;
|
|
6488
|
-
|
|
6564
|
+
currentDataId: string | null;
|
|
6489
6565
|
} & {
|
|
6490
6566
|
users: [{
|
|
6491
6567
|
id: string;
|
|
@@ -6517,7 +6593,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6517
6593
|
type: "FILE" | "FOLDER";
|
|
6518
6594
|
parentId: string | null;
|
|
6519
6595
|
isFavorite: boolean;
|
|
6520
|
-
|
|
6596
|
+
currentDataId: string | null;
|
|
6521
6597
|
} & {
|
|
6522
6598
|
users: [{
|
|
6523
6599
|
id: string;
|
|
@@ -6561,7 +6637,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6561
6637
|
type: "FILE" | "FOLDER";
|
|
6562
6638
|
parentId: string | null;
|
|
6563
6639
|
isFavorite: boolean;
|
|
6564
|
-
|
|
6640
|
+
currentDataId: string | null;
|
|
6565
6641
|
} & {
|
|
6566
6642
|
users: [{
|
|
6567
6643
|
id: string;
|
|
@@ -6597,6 +6673,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6597
6673
|
storageType: "s3" | "lite";
|
|
6598
6674
|
sizeBefore: bigint;
|
|
6599
6675
|
md5Encrypted: string;
|
|
6676
|
+
userAppUserId: string;
|
|
6677
|
+
userAppAppId: string;
|
|
6678
|
+
validatedAt: Date | null;
|
|
6600
6679
|
access: {
|
|
6601
6680
|
key: string;
|
|
6602
6681
|
sharedByPubKey: string;
|
|
@@ -6610,6 +6689,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6610
6689
|
storageType: "s3" | "lite";
|
|
6611
6690
|
sizeBefore: bigint;
|
|
6612
6691
|
md5Encrypted: string;
|
|
6692
|
+
userAppUserId: string;
|
|
6693
|
+
userAppAppId: string;
|
|
6694
|
+
validatedAt: Date | null;
|
|
6613
6695
|
access: {
|
|
6614
6696
|
key: string;
|
|
6615
6697
|
sharedByPubKey: string;
|
|
@@ -6624,7 +6706,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6624
6706
|
type: "FILE" | "FOLDER";
|
|
6625
6707
|
parentId: string | null;
|
|
6626
6708
|
isFavorite: boolean;
|
|
6627
|
-
|
|
6709
|
+
currentDataId: string | null;
|
|
6628
6710
|
} & {
|
|
6629
6711
|
users: [{
|
|
6630
6712
|
id: string;
|
|
@@ -6656,7 +6738,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6656
6738
|
type: "FILE" | "FOLDER";
|
|
6657
6739
|
parentId: string | null;
|
|
6658
6740
|
isFavorite: boolean;
|
|
6659
|
-
|
|
6741
|
+
currentDataId: string | null;
|
|
6660
6742
|
} & {
|
|
6661
6743
|
users: [{
|
|
6662
6744
|
id: string;
|
|
@@ -11273,6 +11355,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11273
11355
|
body: string;
|
|
11274
11356
|
openedAt: Date | null;
|
|
11275
11357
|
} & {
|
|
11358
|
+
data: {
|
|
11359
|
+
dataId: string;
|
|
11360
|
+
dataKey: string;
|
|
11361
|
+
dataName: string;
|
|
11362
|
+
}[];
|
|
11276
11363
|
mailIntegrity: {
|
|
11277
11364
|
id: string;
|
|
11278
11365
|
replyTo: {
|
|
@@ -11280,6 +11367,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11280
11367
|
} | null;
|
|
11281
11368
|
hashKey: string;
|
|
11282
11369
|
hash: string;
|
|
11370
|
+
temporaryRecipients: {
|
|
11371
|
+
email: string | null;
|
|
11372
|
+
}[];
|
|
11283
11373
|
recipients: {
|
|
11284
11374
|
id: string;
|
|
11285
11375
|
lastname: string;
|
|
@@ -11287,9 +11377,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11287
11377
|
avatar: string | null;
|
|
11288
11378
|
isSearchable: boolean;
|
|
11289
11379
|
}[];
|
|
11290
|
-
temporaryRecipients: {
|
|
11291
|
-
email: string | null;
|
|
11292
|
-
}[];
|
|
11293
11380
|
} | null;
|
|
11294
11381
|
mailIntegrityDraft: {
|
|
11295
11382
|
id: string;
|
|
@@ -11298,6 +11385,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11298
11385
|
} | null;
|
|
11299
11386
|
hashKey: string;
|
|
11300
11387
|
hash: string;
|
|
11388
|
+
temporaryRecipients: {
|
|
11389
|
+
email: string | null;
|
|
11390
|
+
}[];
|
|
11301
11391
|
recipients: {
|
|
11302
11392
|
id: string;
|
|
11303
11393
|
lastname: string;
|
|
@@ -11305,9 +11395,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11305
11395
|
avatar: string | null;
|
|
11306
11396
|
isSearchable: boolean;
|
|
11307
11397
|
}[];
|
|
11308
|
-
temporaryRecipients: {
|
|
11309
|
-
email: string | null;
|
|
11310
|
-
}[];
|
|
11311
11398
|
} | null;
|
|
11312
11399
|
sender: {
|
|
11313
11400
|
id: string;
|
|
@@ -11316,11 +11403,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11316
11403
|
avatar: string | null;
|
|
11317
11404
|
isSearchable: boolean;
|
|
11318
11405
|
};
|
|
11319
|
-
files: {
|
|
11320
|
-
fileId: string;
|
|
11321
|
-
filename: string;
|
|
11322
|
-
fileKey: string;
|
|
11323
|
-
}[];
|
|
11324
11406
|
};
|
|
11325
11407
|
_output_out: {
|
|
11326
11408
|
id: string;
|
|
@@ -11331,6 +11413,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11331
11413
|
body: string;
|
|
11332
11414
|
openedAt: Date | null;
|
|
11333
11415
|
} & {
|
|
11416
|
+
data: {
|
|
11417
|
+
dataId: string;
|
|
11418
|
+
dataKey: string;
|
|
11419
|
+
dataName: string;
|
|
11420
|
+
}[];
|
|
11334
11421
|
mailIntegrity: {
|
|
11335
11422
|
id: string;
|
|
11336
11423
|
replyTo: {
|
|
@@ -11338,6 +11425,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11338
11425
|
} | null;
|
|
11339
11426
|
hashKey: string;
|
|
11340
11427
|
hash: string;
|
|
11428
|
+
temporaryRecipients: {
|
|
11429
|
+
email: string | null;
|
|
11430
|
+
}[];
|
|
11341
11431
|
recipients: {
|
|
11342
11432
|
id: string;
|
|
11343
11433
|
lastname: string;
|
|
@@ -11345,9 +11435,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11345
11435
|
avatar: string | null;
|
|
11346
11436
|
isSearchable: boolean;
|
|
11347
11437
|
}[];
|
|
11348
|
-
temporaryRecipients: {
|
|
11349
|
-
email: string | null;
|
|
11350
|
-
}[];
|
|
11351
11438
|
} | null;
|
|
11352
11439
|
mailIntegrityDraft: {
|
|
11353
11440
|
id: string;
|
|
@@ -11356,6 +11443,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11356
11443
|
} | null;
|
|
11357
11444
|
hashKey: string;
|
|
11358
11445
|
hash: string;
|
|
11446
|
+
temporaryRecipients: {
|
|
11447
|
+
email: string | null;
|
|
11448
|
+
}[];
|
|
11359
11449
|
recipients: {
|
|
11360
11450
|
id: string;
|
|
11361
11451
|
lastname: string;
|
|
@@ -11363,9 +11453,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11363
11453
|
avatar: string | null;
|
|
11364
11454
|
isSearchable: boolean;
|
|
11365
11455
|
}[];
|
|
11366
|
-
temporaryRecipients: {
|
|
11367
|
-
email: string | null;
|
|
11368
|
-
}[];
|
|
11369
11456
|
} | null;
|
|
11370
11457
|
sender: {
|
|
11371
11458
|
id: string;
|
|
@@ -11374,11 +11461,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11374
11461
|
avatar: string | null;
|
|
11375
11462
|
isSearchable: boolean;
|
|
11376
11463
|
};
|
|
11377
|
-
files: {
|
|
11378
|
-
fileId: string;
|
|
11379
|
-
filename: string;
|
|
11380
|
-
fileKey: string;
|
|
11381
|
-
}[];
|
|
11382
11464
|
};
|
|
11383
11465
|
}, unknown>>;
|
|
11384
11466
|
};
|
|
@@ -11465,6 +11547,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11465
11547
|
body: string;
|
|
11466
11548
|
openedAt: Date | null;
|
|
11467
11549
|
} & {
|
|
11550
|
+
data: {
|
|
11551
|
+
dataId: string;
|
|
11552
|
+
dataKey: string;
|
|
11553
|
+
dataName: string;
|
|
11554
|
+
}[];
|
|
11468
11555
|
mailIntegrity: {
|
|
11469
11556
|
id: string;
|
|
11470
11557
|
replyTo: {
|
|
@@ -11472,6 +11559,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11472
11559
|
} | null;
|
|
11473
11560
|
hashKey: string;
|
|
11474
11561
|
hash: string;
|
|
11562
|
+
temporaryRecipients: {
|
|
11563
|
+
email: string | null;
|
|
11564
|
+
}[];
|
|
11475
11565
|
recipients: {
|
|
11476
11566
|
id: string;
|
|
11477
11567
|
lastname: string;
|
|
@@ -11479,9 +11569,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11479
11569
|
avatar: string | null;
|
|
11480
11570
|
isSearchable: boolean;
|
|
11481
11571
|
}[];
|
|
11482
|
-
temporaryRecipients: {
|
|
11483
|
-
email: string | null;
|
|
11484
|
-
}[];
|
|
11485
11572
|
} | null;
|
|
11486
11573
|
mailIntegrityDraft: {
|
|
11487
11574
|
id: string;
|
|
@@ -11490,6 +11577,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11490
11577
|
} | null;
|
|
11491
11578
|
hashKey: string;
|
|
11492
11579
|
hash: string;
|
|
11580
|
+
temporaryRecipients: {
|
|
11581
|
+
email: string | null;
|
|
11582
|
+
}[];
|
|
11493
11583
|
recipients: {
|
|
11494
11584
|
id: string;
|
|
11495
11585
|
lastname: string;
|
|
@@ -11497,9 +11587,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11497
11587
|
avatar: string | null;
|
|
11498
11588
|
isSearchable: boolean;
|
|
11499
11589
|
}[];
|
|
11500
|
-
temporaryRecipients: {
|
|
11501
|
-
email: string | null;
|
|
11502
|
-
}[];
|
|
11503
11590
|
} | null;
|
|
11504
11591
|
sender: {
|
|
11505
11592
|
id: string;
|
|
@@ -11508,11 +11595,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11508
11595
|
avatar: string | null;
|
|
11509
11596
|
isSearchable: boolean;
|
|
11510
11597
|
};
|
|
11511
|
-
files: {
|
|
11512
|
-
fileId: string;
|
|
11513
|
-
filename: string;
|
|
11514
|
-
fileKey: string;
|
|
11515
|
-
}[];
|
|
11516
11598
|
};
|
|
11517
11599
|
_output_out: {
|
|
11518
11600
|
id: string;
|
|
@@ -11523,6 +11605,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11523
11605
|
body: string;
|
|
11524
11606
|
openedAt: Date | null;
|
|
11525
11607
|
} & {
|
|
11608
|
+
data: {
|
|
11609
|
+
dataId: string;
|
|
11610
|
+
dataKey: string;
|
|
11611
|
+
dataName: string;
|
|
11612
|
+
}[];
|
|
11526
11613
|
mailIntegrity: {
|
|
11527
11614
|
id: string;
|
|
11528
11615
|
replyTo: {
|
|
@@ -11530,6 +11617,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11530
11617
|
} | null;
|
|
11531
11618
|
hashKey: string;
|
|
11532
11619
|
hash: string;
|
|
11620
|
+
temporaryRecipients: {
|
|
11621
|
+
email: string | null;
|
|
11622
|
+
}[];
|
|
11533
11623
|
recipients: {
|
|
11534
11624
|
id: string;
|
|
11535
11625
|
lastname: string;
|
|
@@ -11537,9 +11627,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11537
11627
|
avatar: string | null;
|
|
11538
11628
|
isSearchable: boolean;
|
|
11539
11629
|
}[];
|
|
11540
|
-
temporaryRecipients: {
|
|
11541
|
-
email: string | null;
|
|
11542
|
-
}[];
|
|
11543
11630
|
} | null;
|
|
11544
11631
|
mailIntegrityDraft: {
|
|
11545
11632
|
id: string;
|
|
@@ -11548,6 +11635,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11548
11635
|
} | null;
|
|
11549
11636
|
hashKey: string;
|
|
11550
11637
|
hash: string;
|
|
11638
|
+
temporaryRecipients: {
|
|
11639
|
+
email: string | null;
|
|
11640
|
+
}[];
|
|
11551
11641
|
recipients: {
|
|
11552
11642
|
id: string;
|
|
11553
11643
|
lastname: string;
|
|
@@ -11555,9 +11645,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11555
11645
|
avatar: string | null;
|
|
11556
11646
|
isSearchable: boolean;
|
|
11557
11647
|
}[];
|
|
11558
|
-
temporaryRecipients: {
|
|
11559
|
-
email: string | null;
|
|
11560
|
-
}[];
|
|
11561
11648
|
} | null;
|
|
11562
11649
|
sender: {
|
|
11563
11650
|
id: string;
|
|
@@ -11566,11 +11653,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11566
11653
|
avatar: string | null;
|
|
11567
11654
|
isSearchable: boolean;
|
|
11568
11655
|
};
|
|
11569
|
-
files: {
|
|
11570
|
-
fileId: string;
|
|
11571
|
-
filename: string;
|
|
11572
|
-
fileKey: string;
|
|
11573
|
-
}[];
|
|
11574
11656
|
};
|
|
11575
11657
|
}, unknown>>;
|
|
11576
11658
|
};
|
|
@@ -11815,6 +11897,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11815
11897
|
body: string;
|
|
11816
11898
|
openedAt: Date | null;
|
|
11817
11899
|
} & {
|
|
11900
|
+
data: {
|
|
11901
|
+
dataId: string;
|
|
11902
|
+
dataKey: string;
|
|
11903
|
+
dataName: string;
|
|
11904
|
+
}[];
|
|
11818
11905
|
mailIntegrity: {
|
|
11819
11906
|
id: string;
|
|
11820
11907
|
replyTo: {
|
|
@@ -11822,6 +11909,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11822
11909
|
} | null;
|
|
11823
11910
|
hashKey: string;
|
|
11824
11911
|
hash: string;
|
|
11912
|
+
temporaryRecipients: {
|
|
11913
|
+
email: string | null;
|
|
11914
|
+
}[];
|
|
11825
11915
|
recipients: {
|
|
11826
11916
|
id: string;
|
|
11827
11917
|
lastname: string;
|
|
@@ -11829,9 +11919,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11829
11919
|
avatar: string | null;
|
|
11830
11920
|
isSearchable: boolean;
|
|
11831
11921
|
}[];
|
|
11832
|
-
temporaryRecipients: {
|
|
11833
|
-
email: string | null;
|
|
11834
|
-
}[];
|
|
11835
11922
|
} | null;
|
|
11836
11923
|
mailIntegrityDraft: {
|
|
11837
11924
|
id: string;
|
|
@@ -11840,6 +11927,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11840
11927
|
} | null;
|
|
11841
11928
|
hashKey: string;
|
|
11842
11929
|
hash: string;
|
|
11930
|
+
temporaryRecipients: {
|
|
11931
|
+
email: string | null;
|
|
11932
|
+
}[];
|
|
11843
11933
|
recipients: {
|
|
11844
11934
|
id: string;
|
|
11845
11935
|
lastname: string;
|
|
@@ -11847,9 +11937,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11847
11937
|
avatar: string | null;
|
|
11848
11938
|
isSearchable: boolean;
|
|
11849
11939
|
}[];
|
|
11850
|
-
temporaryRecipients: {
|
|
11851
|
-
email: string | null;
|
|
11852
|
-
}[];
|
|
11853
11940
|
} | null;
|
|
11854
11941
|
sender: {
|
|
11855
11942
|
id: string;
|
|
@@ -11858,11 +11945,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11858
11945
|
avatar: string | null;
|
|
11859
11946
|
isSearchable: boolean;
|
|
11860
11947
|
};
|
|
11861
|
-
files: {
|
|
11862
|
-
fileId: string;
|
|
11863
|
-
filename: string;
|
|
11864
|
-
fileKey: string;
|
|
11865
|
-
}[];
|
|
11866
11948
|
})[];
|
|
11867
11949
|
_output_out: ({
|
|
11868
11950
|
id: string;
|
|
@@ -11873,6 +11955,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11873
11955
|
body: string;
|
|
11874
11956
|
openedAt: Date | null;
|
|
11875
11957
|
} & {
|
|
11958
|
+
data: {
|
|
11959
|
+
dataId: string;
|
|
11960
|
+
dataKey: string;
|
|
11961
|
+
dataName: string;
|
|
11962
|
+
}[];
|
|
11876
11963
|
mailIntegrity: {
|
|
11877
11964
|
id: string;
|
|
11878
11965
|
replyTo: {
|
|
@@ -11880,6 +11967,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11880
11967
|
} | null;
|
|
11881
11968
|
hashKey: string;
|
|
11882
11969
|
hash: string;
|
|
11970
|
+
temporaryRecipients: {
|
|
11971
|
+
email: string | null;
|
|
11972
|
+
}[];
|
|
11883
11973
|
recipients: {
|
|
11884
11974
|
id: string;
|
|
11885
11975
|
lastname: string;
|
|
@@ -11887,9 +11977,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11887
11977
|
avatar: string | null;
|
|
11888
11978
|
isSearchable: boolean;
|
|
11889
11979
|
}[];
|
|
11890
|
-
temporaryRecipients: {
|
|
11891
|
-
email: string | null;
|
|
11892
|
-
}[];
|
|
11893
11980
|
} | null;
|
|
11894
11981
|
mailIntegrityDraft: {
|
|
11895
11982
|
id: string;
|
|
@@ -11898,6 +11985,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11898
11985
|
} | null;
|
|
11899
11986
|
hashKey: string;
|
|
11900
11987
|
hash: string;
|
|
11988
|
+
temporaryRecipients: {
|
|
11989
|
+
email: string | null;
|
|
11990
|
+
}[];
|
|
11901
11991
|
recipients: {
|
|
11902
11992
|
id: string;
|
|
11903
11993
|
lastname: string;
|
|
@@ -11905,9 +11995,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11905
11995
|
avatar: string | null;
|
|
11906
11996
|
isSearchable: boolean;
|
|
11907
11997
|
}[];
|
|
11908
|
-
temporaryRecipients: {
|
|
11909
|
-
email: string | null;
|
|
11910
|
-
}[];
|
|
11911
11998
|
} | null;
|
|
11912
11999
|
sender: {
|
|
11913
12000
|
id: string;
|
|
@@ -11916,11 +12003,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11916
12003
|
avatar: string | null;
|
|
11917
12004
|
isSearchable: boolean;
|
|
11918
12005
|
};
|
|
11919
|
-
files: {
|
|
11920
|
-
fileId: string;
|
|
11921
|
-
filename: string;
|
|
11922
|
-
fileKey: string;
|
|
11923
|
-
}[];
|
|
11924
12006
|
})[];
|
|
11925
12007
|
}, unknown>>;
|
|
11926
12008
|
};
|
|
@@ -11981,6 +12063,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11981
12063
|
body: string;
|
|
11982
12064
|
openedAt: Date | null;
|
|
11983
12065
|
} & {
|
|
12066
|
+
data: {
|
|
12067
|
+
dataId: string;
|
|
12068
|
+
dataKey: string;
|
|
12069
|
+
dataName: string;
|
|
12070
|
+
}[];
|
|
11984
12071
|
mailIntegrity: {
|
|
11985
12072
|
id: string;
|
|
11986
12073
|
replyTo: {
|
|
@@ -11988,6 +12075,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11988
12075
|
} | null;
|
|
11989
12076
|
hashKey: string;
|
|
11990
12077
|
hash: string;
|
|
12078
|
+
temporaryRecipients: {
|
|
12079
|
+
email: string | null;
|
|
12080
|
+
}[];
|
|
11991
12081
|
recipients: {
|
|
11992
12082
|
id: string;
|
|
11993
12083
|
lastname: string;
|
|
@@ -11995,9 +12085,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11995
12085
|
avatar: string | null;
|
|
11996
12086
|
isSearchable: boolean;
|
|
11997
12087
|
}[];
|
|
11998
|
-
temporaryRecipients: {
|
|
11999
|
-
email: string | null;
|
|
12000
|
-
}[];
|
|
12001
12088
|
} | null;
|
|
12002
12089
|
mailIntegrityDraft: {
|
|
12003
12090
|
id: string;
|
|
@@ -12006,6 +12093,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12006
12093
|
} | null;
|
|
12007
12094
|
hashKey: string;
|
|
12008
12095
|
hash: string;
|
|
12096
|
+
temporaryRecipients: {
|
|
12097
|
+
email: string | null;
|
|
12098
|
+
}[];
|
|
12009
12099
|
recipients: {
|
|
12010
12100
|
id: string;
|
|
12011
12101
|
lastname: string;
|
|
@@ -12013,9 +12103,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12013
12103
|
avatar: string | null;
|
|
12014
12104
|
isSearchable: boolean;
|
|
12015
12105
|
}[];
|
|
12016
|
-
temporaryRecipients: {
|
|
12017
|
-
email: string | null;
|
|
12018
|
-
}[];
|
|
12019
12106
|
} | null;
|
|
12020
12107
|
sender: {
|
|
12021
12108
|
id: string;
|
|
@@ -12024,11 +12111,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12024
12111
|
avatar: string | null;
|
|
12025
12112
|
isSearchable: boolean;
|
|
12026
12113
|
};
|
|
12027
|
-
files: {
|
|
12028
|
-
fileId: string;
|
|
12029
|
-
filename: string;
|
|
12030
|
-
fileKey: string;
|
|
12031
|
-
}[];
|
|
12032
12114
|
})[];
|
|
12033
12115
|
_output_out: ({
|
|
12034
12116
|
id: string;
|
|
@@ -12039,6 +12121,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12039
12121
|
body: string;
|
|
12040
12122
|
openedAt: Date | null;
|
|
12041
12123
|
} & {
|
|
12124
|
+
data: {
|
|
12125
|
+
dataId: string;
|
|
12126
|
+
dataKey: string;
|
|
12127
|
+
dataName: string;
|
|
12128
|
+
}[];
|
|
12042
12129
|
mailIntegrity: {
|
|
12043
12130
|
id: string;
|
|
12044
12131
|
replyTo: {
|
|
@@ -12046,6 +12133,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12046
12133
|
} | null;
|
|
12047
12134
|
hashKey: string;
|
|
12048
12135
|
hash: string;
|
|
12136
|
+
temporaryRecipients: {
|
|
12137
|
+
email: string | null;
|
|
12138
|
+
}[];
|
|
12049
12139
|
recipients: {
|
|
12050
12140
|
id: string;
|
|
12051
12141
|
lastname: string;
|
|
@@ -12053,9 +12143,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12053
12143
|
avatar: string | null;
|
|
12054
12144
|
isSearchable: boolean;
|
|
12055
12145
|
}[];
|
|
12056
|
-
temporaryRecipients: {
|
|
12057
|
-
email: string | null;
|
|
12058
|
-
}[];
|
|
12059
12146
|
} | null;
|
|
12060
12147
|
mailIntegrityDraft: {
|
|
12061
12148
|
id: string;
|
|
@@ -12064,6 +12151,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12064
12151
|
} | null;
|
|
12065
12152
|
hashKey: string;
|
|
12066
12153
|
hash: string;
|
|
12154
|
+
temporaryRecipients: {
|
|
12155
|
+
email: string | null;
|
|
12156
|
+
}[];
|
|
12067
12157
|
recipients: {
|
|
12068
12158
|
id: string;
|
|
12069
12159
|
lastname: string;
|
|
@@ -12071,9 +12161,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12071
12161
|
avatar: string | null;
|
|
12072
12162
|
isSearchable: boolean;
|
|
12073
12163
|
}[];
|
|
12074
|
-
temporaryRecipients: {
|
|
12075
|
-
email: string | null;
|
|
12076
|
-
}[];
|
|
12077
12164
|
} | null;
|
|
12078
12165
|
sender: {
|
|
12079
12166
|
id: string;
|
|
@@ -12082,11 +12169,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12082
12169
|
avatar: string | null;
|
|
12083
12170
|
isSearchable: boolean;
|
|
12084
12171
|
};
|
|
12085
|
-
files: {
|
|
12086
|
-
fileId: string;
|
|
12087
|
-
filename: string;
|
|
12088
|
-
fileKey: string;
|
|
12089
|
-
}[];
|
|
12090
12172
|
})[];
|
|
12091
12173
|
}, unknown>>;
|
|
12092
12174
|
};
|
|
@@ -12263,6 +12345,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12263
12345
|
body: string;
|
|
12264
12346
|
openedAt: Date | null;
|
|
12265
12347
|
} & {
|
|
12348
|
+
data: {
|
|
12349
|
+
dataId: string;
|
|
12350
|
+
dataKey: string;
|
|
12351
|
+
dataName: string;
|
|
12352
|
+
}[];
|
|
12266
12353
|
mailIntegrity: {
|
|
12267
12354
|
id: string;
|
|
12268
12355
|
replyTo: {
|
|
@@ -12270,6 +12357,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12270
12357
|
} | null;
|
|
12271
12358
|
hashKey: string;
|
|
12272
12359
|
hash: string;
|
|
12360
|
+
temporaryRecipients: {
|
|
12361
|
+
email: string | null;
|
|
12362
|
+
}[];
|
|
12273
12363
|
recipients: {
|
|
12274
12364
|
id: string;
|
|
12275
12365
|
lastname: string;
|
|
@@ -12277,9 +12367,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12277
12367
|
avatar: string | null;
|
|
12278
12368
|
isSearchable: boolean;
|
|
12279
12369
|
}[];
|
|
12280
|
-
temporaryRecipients: {
|
|
12281
|
-
email: string | null;
|
|
12282
|
-
}[];
|
|
12283
12370
|
} | null;
|
|
12284
12371
|
mailIntegrityDraft: {
|
|
12285
12372
|
id: string;
|
|
@@ -12288,6 +12375,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12288
12375
|
} | null;
|
|
12289
12376
|
hashKey: string;
|
|
12290
12377
|
hash: string;
|
|
12378
|
+
temporaryRecipients: {
|
|
12379
|
+
email: string | null;
|
|
12380
|
+
}[];
|
|
12291
12381
|
recipients: {
|
|
12292
12382
|
id: string;
|
|
12293
12383
|
lastname: string;
|
|
@@ -12295,9 +12385,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12295
12385
|
avatar: string | null;
|
|
12296
12386
|
isSearchable: boolean;
|
|
12297
12387
|
}[];
|
|
12298
|
-
temporaryRecipients: {
|
|
12299
|
-
email: string | null;
|
|
12300
|
-
}[];
|
|
12301
12388
|
} | null;
|
|
12302
12389
|
sender: {
|
|
12303
12390
|
id: string;
|
|
@@ -12306,11 +12393,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12306
12393
|
avatar: string | null;
|
|
12307
12394
|
isSearchable: boolean;
|
|
12308
12395
|
};
|
|
12309
|
-
files: {
|
|
12310
|
-
fileId: string;
|
|
12311
|
-
filename: string;
|
|
12312
|
-
fileKey: string;
|
|
12313
|
-
}[];
|
|
12314
12396
|
})[];
|
|
12315
12397
|
_output_out: ({
|
|
12316
12398
|
id: string;
|
|
@@ -12321,6 +12403,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12321
12403
|
body: string;
|
|
12322
12404
|
openedAt: Date | null;
|
|
12323
12405
|
} & {
|
|
12406
|
+
data: {
|
|
12407
|
+
dataId: string;
|
|
12408
|
+
dataKey: string;
|
|
12409
|
+
dataName: string;
|
|
12410
|
+
}[];
|
|
12324
12411
|
mailIntegrity: {
|
|
12325
12412
|
id: string;
|
|
12326
12413
|
replyTo: {
|
|
@@ -12328,6 +12415,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12328
12415
|
} | null;
|
|
12329
12416
|
hashKey: string;
|
|
12330
12417
|
hash: string;
|
|
12418
|
+
temporaryRecipients: {
|
|
12419
|
+
email: string | null;
|
|
12420
|
+
}[];
|
|
12331
12421
|
recipients: {
|
|
12332
12422
|
id: string;
|
|
12333
12423
|
lastname: string;
|
|
@@ -12335,9 +12425,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12335
12425
|
avatar: string | null;
|
|
12336
12426
|
isSearchable: boolean;
|
|
12337
12427
|
}[];
|
|
12338
|
-
temporaryRecipients: {
|
|
12339
|
-
email: string | null;
|
|
12340
|
-
}[];
|
|
12341
12428
|
} | null;
|
|
12342
12429
|
mailIntegrityDraft: {
|
|
12343
12430
|
id: string;
|
|
@@ -12346,6 +12433,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12346
12433
|
} | null;
|
|
12347
12434
|
hashKey: string;
|
|
12348
12435
|
hash: string;
|
|
12436
|
+
temporaryRecipients: {
|
|
12437
|
+
email: string | null;
|
|
12438
|
+
}[];
|
|
12349
12439
|
recipients: {
|
|
12350
12440
|
id: string;
|
|
12351
12441
|
lastname: string;
|
|
@@ -12353,9 +12443,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12353
12443
|
avatar: string | null;
|
|
12354
12444
|
isSearchable: boolean;
|
|
12355
12445
|
}[];
|
|
12356
|
-
temporaryRecipients: {
|
|
12357
|
-
email: string | null;
|
|
12358
|
-
}[];
|
|
12359
12446
|
} | null;
|
|
12360
12447
|
sender: {
|
|
12361
12448
|
id: string;
|
|
@@ -12364,11 +12451,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12364
12451
|
avatar: string | null;
|
|
12365
12452
|
isSearchable: boolean;
|
|
12366
12453
|
};
|
|
12367
|
-
files: {
|
|
12368
|
-
fileId: string;
|
|
12369
|
-
filename: string;
|
|
12370
|
-
fileKey: string;
|
|
12371
|
-
}[];
|
|
12372
12454
|
})[];
|
|
12373
12455
|
}, unknown>>;
|
|
12374
12456
|
};
|
|
@@ -12557,34 +12639,34 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12557
12639
|
_input_in: {
|
|
12558
12640
|
id: string;
|
|
12559
12641
|
customMessage: string | null;
|
|
12642
|
+
temporaryRecipients: string[];
|
|
12560
12643
|
recipients: ({
|
|
12561
12644
|
subject: string;
|
|
12562
12645
|
body: string;
|
|
12563
12646
|
} & {
|
|
12564
|
-
|
|
12565
|
-
files: {
|
|
12647
|
+
data: {
|
|
12566
12648
|
id: string;
|
|
12567
|
-
|
|
12568
|
-
|
|
12649
|
+
dataKey: string;
|
|
12650
|
+
dataName: string;
|
|
12569
12651
|
}[];
|
|
12652
|
+
recipientId: string;
|
|
12570
12653
|
})[];
|
|
12571
|
-
temporaryRecipients: string[];
|
|
12572
12654
|
};
|
|
12573
12655
|
_input_out: {
|
|
12574
12656
|
id: string;
|
|
12575
12657
|
customMessage: string | null;
|
|
12658
|
+
temporaryRecipients: string[];
|
|
12576
12659
|
recipients: ({
|
|
12577
12660
|
subject: string;
|
|
12578
12661
|
body: string;
|
|
12579
12662
|
} & {
|
|
12580
|
-
|
|
12581
|
-
files: {
|
|
12663
|
+
data: {
|
|
12582
12664
|
id: string;
|
|
12583
|
-
|
|
12584
|
-
|
|
12665
|
+
dataKey: string;
|
|
12666
|
+
dataName: string;
|
|
12585
12667
|
}[];
|
|
12668
|
+
recipientId: string;
|
|
12586
12669
|
})[];
|
|
12587
|
-
temporaryRecipients: string[];
|
|
12588
12670
|
};
|
|
12589
12671
|
_output_in: {
|
|
12590
12672
|
isSent: boolean;
|
|
@@ -12646,12 +12728,12 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12646
12728
|
subject: string;
|
|
12647
12729
|
body: string;
|
|
12648
12730
|
} & {
|
|
12649
|
-
|
|
12650
|
-
files: {
|
|
12731
|
+
data: {
|
|
12651
12732
|
id: string;
|
|
12652
|
-
|
|
12653
|
-
|
|
12733
|
+
dataKey: string;
|
|
12734
|
+
dataName: string;
|
|
12654
12735
|
}[];
|
|
12736
|
+
recipientId: string;
|
|
12655
12737
|
};
|
|
12656
12738
|
};
|
|
12657
12739
|
_input_out: {
|
|
@@ -12660,12 +12742,12 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12660
12742
|
subject: string;
|
|
12661
12743
|
body: string;
|
|
12662
12744
|
} & {
|
|
12663
|
-
|
|
12664
|
-
files: {
|
|
12745
|
+
data: {
|
|
12665
12746
|
id: string;
|
|
12666
|
-
|
|
12667
|
-
|
|
12747
|
+
dataKey: string;
|
|
12748
|
+
dataName: string;
|
|
12668
12749
|
}[];
|
|
12750
|
+
recipientId: string;
|
|
12669
12751
|
};
|
|
12670
12752
|
};
|
|
12671
12753
|
_output_in: {
|
|
@@ -12733,6 +12815,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12733
12815
|
body: string;
|
|
12734
12816
|
openedAt: Date | null;
|
|
12735
12817
|
} & {
|
|
12818
|
+
data: {
|
|
12819
|
+
dataId: string;
|
|
12820
|
+
dataKey: string;
|
|
12821
|
+
dataName: string;
|
|
12822
|
+
}[];
|
|
12736
12823
|
mailIntegrity: {
|
|
12737
12824
|
id: string;
|
|
12738
12825
|
replyTo: {
|
|
@@ -12740,6 +12827,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12740
12827
|
} | null;
|
|
12741
12828
|
hashKey: string;
|
|
12742
12829
|
hash: string;
|
|
12830
|
+
temporaryRecipients: {
|
|
12831
|
+
email: string | null;
|
|
12832
|
+
}[];
|
|
12743
12833
|
recipients: {
|
|
12744
12834
|
id: string;
|
|
12745
12835
|
lastname: string;
|
|
@@ -12747,9 +12837,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12747
12837
|
avatar: string | null;
|
|
12748
12838
|
isSearchable: boolean;
|
|
12749
12839
|
}[];
|
|
12750
|
-
temporaryRecipients: {
|
|
12751
|
-
email: string | null;
|
|
12752
|
-
}[];
|
|
12753
12840
|
} | null;
|
|
12754
12841
|
mailIntegrityDraft: {
|
|
12755
12842
|
id: string;
|
|
@@ -12758,6 +12845,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12758
12845
|
} | null;
|
|
12759
12846
|
hashKey: string;
|
|
12760
12847
|
hash: string;
|
|
12848
|
+
temporaryRecipients: {
|
|
12849
|
+
email: string | null;
|
|
12850
|
+
}[];
|
|
12761
12851
|
recipients: {
|
|
12762
12852
|
id: string;
|
|
12763
12853
|
lastname: string;
|
|
@@ -12765,9 +12855,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12765
12855
|
avatar: string | null;
|
|
12766
12856
|
isSearchable: boolean;
|
|
12767
12857
|
}[];
|
|
12768
|
-
temporaryRecipients: {
|
|
12769
|
-
email: string | null;
|
|
12770
|
-
}[];
|
|
12771
12858
|
} | null;
|
|
12772
12859
|
sender: {
|
|
12773
12860
|
id: string;
|
|
@@ -12776,11 +12863,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12776
12863
|
avatar: string | null;
|
|
12777
12864
|
isSearchable: boolean;
|
|
12778
12865
|
};
|
|
12779
|
-
files: {
|
|
12780
|
-
fileId: string;
|
|
12781
|
-
filename: string;
|
|
12782
|
-
fileKey: string;
|
|
12783
|
-
}[];
|
|
12784
12866
|
})[];
|
|
12785
12867
|
_output_out: ({
|
|
12786
12868
|
id: string;
|
|
@@ -12791,6 +12873,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12791
12873
|
body: string;
|
|
12792
12874
|
openedAt: Date | null;
|
|
12793
12875
|
} & {
|
|
12876
|
+
data: {
|
|
12877
|
+
dataId: string;
|
|
12878
|
+
dataKey: string;
|
|
12879
|
+
dataName: string;
|
|
12880
|
+
}[];
|
|
12794
12881
|
mailIntegrity: {
|
|
12795
12882
|
id: string;
|
|
12796
12883
|
replyTo: {
|
|
@@ -12798,6 +12885,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12798
12885
|
} | null;
|
|
12799
12886
|
hashKey: string;
|
|
12800
12887
|
hash: string;
|
|
12888
|
+
temporaryRecipients: {
|
|
12889
|
+
email: string | null;
|
|
12890
|
+
}[];
|
|
12801
12891
|
recipients: {
|
|
12802
12892
|
id: string;
|
|
12803
12893
|
lastname: string;
|
|
@@ -12805,9 +12895,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12805
12895
|
avatar: string | null;
|
|
12806
12896
|
isSearchable: boolean;
|
|
12807
12897
|
}[];
|
|
12808
|
-
temporaryRecipients: {
|
|
12809
|
-
email: string | null;
|
|
12810
|
-
}[];
|
|
12811
12898
|
} | null;
|
|
12812
12899
|
mailIntegrityDraft: {
|
|
12813
12900
|
id: string;
|
|
@@ -12816,6 +12903,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12816
12903
|
} | null;
|
|
12817
12904
|
hashKey: string;
|
|
12818
12905
|
hash: string;
|
|
12906
|
+
temporaryRecipients: {
|
|
12907
|
+
email: string | null;
|
|
12908
|
+
}[];
|
|
12819
12909
|
recipients: {
|
|
12820
12910
|
id: string;
|
|
12821
12911
|
lastname: string;
|
|
@@ -12823,9 +12913,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12823
12913
|
avatar: string | null;
|
|
12824
12914
|
isSearchable: boolean;
|
|
12825
12915
|
}[];
|
|
12826
|
-
temporaryRecipients: {
|
|
12827
|
-
email: string | null;
|
|
12828
|
-
}[];
|
|
12829
12916
|
} | null;
|
|
12830
12917
|
sender: {
|
|
12831
12918
|
id: string;
|
|
@@ -12834,11 +12921,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12834
12921
|
avatar: string | null;
|
|
12835
12922
|
isSearchable: boolean;
|
|
12836
12923
|
};
|
|
12837
|
-
files: {
|
|
12838
|
-
fileId: string;
|
|
12839
|
-
filename: string;
|
|
12840
|
-
fileKey: string;
|
|
12841
|
-
}[];
|
|
12842
12924
|
})[];
|
|
12843
12925
|
}, unknown>>;
|
|
12844
12926
|
};
|
|
@@ -13037,6 +13119,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13037
13119
|
body: string;
|
|
13038
13120
|
openedAt: Date | null;
|
|
13039
13121
|
} & {
|
|
13122
|
+
data: {
|
|
13123
|
+
dataId: string;
|
|
13124
|
+
dataKey: string;
|
|
13125
|
+
dataName: string;
|
|
13126
|
+
}[];
|
|
13040
13127
|
mailIntegrity: {
|
|
13041
13128
|
id: string;
|
|
13042
13129
|
replyTo: {
|
|
@@ -13044,6 +13131,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13044
13131
|
} | null;
|
|
13045
13132
|
hashKey: string;
|
|
13046
13133
|
hash: string;
|
|
13134
|
+
temporaryRecipients: {
|
|
13135
|
+
email: string | null;
|
|
13136
|
+
}[];
|
|
13047
13137
|
recipients: {
|
|
13048
13138
|
id: string;
|
|
13049
13139
|
lastname: string;
|
|
@@ -13051,9 +13141,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13051
13141
|
avatar: string | null;
|
|
13052
13142
|
isSearchable: boolean;
|
|
13053
13143
|
}[];
|
|
13054
|
-
temporaryRecipients: {
|
|
13055
|
-
email: string | null;
|
|
13056
|
-
}[];
|
|
13057
13144
|
} | null;
|
|
13058
13145
|
mailIntegrityDraft: {
|
|
13059
13146
|
id: string;
|
|
@@ -13062,6 +13149,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13062
13149
|
} | null;
|
|
13063
13150
|
hashKey: string;
|
|
13064
13151
|
hash: string;
|
|
13152
|
+
temporaryRecipients: {
|
|
13153
|
+
email: string | null;
|
|
13154
|
+
}[];
|
|
13065
13155
|
recipients: {
|
|
13066
13156
|
id: string;
|
|
13067
13157
|
lastname: string;
|
|
@@ -13069,9 +13159,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13069
13159
|
avatar: string | null;
|
|
13070
13160
|
isSearchable: boolean;
|
|
13071
13161
|
}[];
|
|
13072
|
-
temporaryRecipients: {
|
|
13073
|
-
email: string | null;
|
|
13074
|
-
}[];
|
|
13075
13162
|
} | null;
|
|
13076
13163
|
sender: {
|
|
13077
13164
|
id: string;
|
|
@@ -13080,11 +13167,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13080
13167
|
avatar: string | null;
|
|
13081
13168
|
isSearchable: boolean;
|
|
13082
13169
|
};
|
|
13083
|
-
files: {
|
|
13084
|
-
fileId: string;
|
|
13085
|
-
filename: string;
|
|
13086
|
-
fileKey: string;
|
|
13087
|
-
}[];
|
|
13088
13170
|
};
|
|
13089
13171
|
_output_out: {
|
|
13090
13172
|
id: string;
|
|
@@ -13095,6 +13177,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13095
13177
|
body: string;
|
|
13096
13178
|
openedAt: Date | null;
|
|
13097
13179
|
} & {
|
|
13180
|
+
data: {
|
|
13181
|
+
dataId: string;
|
|
13182
|
+
dataKey: string;
|
|
13183
|
+
dataName: string;
|
|
13184
|
+
}[];
|
|
13098
13185
|
mailIntegrity: {
|
|
13099
13186
|
id: string;
|
|
13100
13187
|
replyTo: {
|
|
@@ -13102,6 +13189,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13102
13189
|
} | null;
|
|
13103
13190
|
hashKey: string;
|
|
13104
13191
|
hash: string;
|
|
13192
|
+
temporaryRecipients: {
|
|
13193
|
+
email: string | null;
|
|
13194
|
+
}[];
|
|
13105
13195
|
recipients: {
|
|
13106
13196
|
id: string;
|
|
13107
13197
|
lastname: string;
|
|
@@ -13109,9 +13199,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13109
13199
|
avatar: string | null;
|
|
13110
13200
|
isSearchable: boolean;
|
|
13111
13201
|
}[];
|
|
13112
|
-
temporaryRecipients: {
|
|
13113
|
-
email: string | null;
|
|
13114
|
-
}[];
|
|
13115
13202
|
} | null;
|
|
13116
13203
|
mailIntegrityDraft: {
|
|
13117
13204
|
id: string;
|
|
@@ -13120,6 +13207,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13120
13207
|
} | null;
|
|
13121
13208
|
hashKey: string;
|
|
13122
13209
|
hash: string;
|
|
13210
|
+
temporaryRecipients: {
|
|
13211
|
+
email: string | null;
|
|
13212
|
+
}[];
|
|
13123
13213
|
recipients: {
|
|
13124
13214
|
id: string;
|
|
13125
13215
|
lastname: string;
|
|
@@ -13127,9 +13217,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13127
13217
|
avatar: string | null;
|
|
13128
13218
|
isSearchable: boolean;
|
|
13129
13219
|
}[];
|
|
13130
|
-
temporaryRecipients: {
|
|
13131
|
-
email: string | null;
|
|
13132
|
-
}[];
|
|
13133
13220
|
} | null;
|
|
13134
13221
|
sender: {
|
|
13135
13222
|
id: string;
|
|
@@ -13138,11 +13225,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13138
13225
|
avatar: string | null;
|
|
13139
13226
|
isSearchable: boolean;
|
|
13140
13227
|
};
|
|
13141
|
-
files: {
|
|
13142
|
-
fileId: string;
|
|
13143
|
-
filename: string;
|
|
13144
|
-
fileKey: string;
|
|
13145
|
-
}[];
|
|
13146
13228
|
};
|
|
13147
13229
|
}, unknown>>;
|
|
13148
13230
|
};
|
|
@@ -13203,6 +13285,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13203
13285
|
isSearchable: boolean;
|
|
13204
13286
|
};
|
|
13205
13287
|
date: Date;
|
|
13288
|
+
temporaryRecipients: {
|
|
13289
|
+
email: string | null;
|
|
13290
|
+
id: string;
|
|
13291
|
+
phone: string | null;
|
|
13292
|
+
}[];
|
|
13206
13293
|
recipients: {
|
|
13207
13294
|
id: string;
|
|
13208
13295
|
lastname: string;
|
|
@@ -13210,11 +13297,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13210
13297
|
avatar: string | null;
|
|
13211
13298
|
isSearchable: boolean;
|
|
13212
13299
|
}[];
|
|
13213
|
-
temporaryRecipients: {
|
|
13214
|
-
email: string | null;
|
|
13215
|
-
id: string;
|
|
13216
|
-
phone: string | null;
|
|
13217
|
-
}[];
|
|
13218
13300
|
attachmentsCount: number;
|
|
13219
13301
|
}[];
|
|
13220
13302
|
_output_out: {
|
|
@@ -13226,6 +13308,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13226
13308
|
isSearchable: boolean;
|
|
13227
13309
|
};
|
|
13228
13310
|
date: Date;
|
|
13311
|
+
temporaryRecipients: {
|
|
13312
|
+
email: string | null;
|
|
13313
|
+
id: string;
|
|
13314
|
+
phone: string | null;
|
|
13315
|
+
}[];
|
|
13229
13316
|
recipients: {
|
|
13230
13317
|
id: string;
|
|
13231
13318
|
lastname: string;
|
|
@@ -13233,11 +13320,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13233
13320
|
avatar: string | null;
|
|
13234
13321
|
isSearchable: boolean;
|
|
13235
13322
|
}[];
|
|
13236
|
-
temporaryRecipients: {
|
|
13237
|
-
email: string | null;
|
|
13238
|
-
id: string;
|
|
13239
|
-
phone: string | null;
|
|
13240
|
-
}[];
|
|
13241
13323
|
attachmentsCount: number;
|
|
13242
13324
|
}[];
|
|
13243
13325
|
}, unknown>>;
|
|
@@ -13573,28 +13655,28 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13573
13655
|
quotas: {
|
|
13574
13656
|
uploadCount: bigint | null;
|
|
13575
13657
|
downloadCount: bigint | null;
|
|
13576
|
-
|
|
13658
|
+
totalDataCount: bigint | null;
|
|
13577
13659
|
totalStorageSize: bigint | null;
|
|
13578
|
-
|
|
13660
|
+
perDataSize: bigint | null;
|
|
13579
13661
|
uploadBandwidth: bigint | null;
|
|
13580
13662
|
downloadBandwidth: bigint | null;
|
|
13581
13663
|
} & {
|
|
13582
13664
|
sentMails: {
|
|
13583
13665
|
count: bigint | null;
|
|
13584
|
-
|
|
13585
|
-
|
|
13666
|
+
dataSize: bigint | null;
|
|
13667
|
+
totalDataCount: bigint | null;
|
|
13586
13668
|
totalStorageSize: bigint | null;
|
|
13587
|
-
|
|
13588
|
-
|
|
13669
|
+
dataCount: bigint | null;
|
|
13670
|
+
perDataSize: bigint | null;
|
|
13589
13671
|
totalCount: bigint | null;
|
|
13590
13672
|
};
|
|
13591
13673
|
receivedMails: {
|
|
13592
13674
|
count: bigint | null;
|
|
13593
|
-
|
|
13594
|
-
|
|
13675
|
+
dataSize: bigint | null;
|
|
13676
|
+
totalDataCount: bigint | null;
|
|
13595
13677
|
totalStorageSize: bigint | null;
|
|
13596
|
-
|
|
13597
|
-
|
|
13678
|
+
dataCount: bigint | null;
|
|
13679
|
+
perDataSize: bigint | null;
|
|
13598
13680
|
totalCount: bigint | null;
|
|
13599
13681
|
};
|
|
13600
13682
|
};
|
|
@@ -13613,28 +13695,28 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13613
13695
|
quotas: {
|
|
13614
13696
|
uploadCount: bigint | null;
|
|
13615
13697
|
downloadCount: bigint | null;
|
|
13616
|
-
|
|
13698
|
+
totalDataCount: bigint | null;
|
|
13617
13699
|
totalStorageSize: bigint | null;
|
|
13618
|
-
|
|
13700
|
+
perDataSize: bigint | null;
|
|
13619
13701
|
uploadBandwidth: bigint | null;
|
|
13620
13702
|
downloadBandwidth: bigint | null;
|
|
13621
13703
|
} & {
|
|
13622
13704
|
sentMails: {
|
|
13623
13705
|
count: bigint | null;
|
|
13624
|
-
|
|
13625
|
-
|
|
13706
|
+
dataSize: bigint | null;
|
|
13707
|
+
totalDataCount: bigint | null;
|
|
13626
13708
|
totalStorageSize: bigint | null;
|
|
13627
|
-
|
|
13628
|
-
|
|
13709
|
+
dataCount: bigint | null;
|
|
13710
|
+
perDataSize: bigint | null;
|
|
13629
13711
|
totalCount: bigint | null;
|
|
13630
13712
|
};
|
|
13631
13713
|
receivedMails: {
|
|
13632
13714
|
count: bigint | null;
|
|
13633
|
-
|
|
13634
|
-
|
|
13715
|
+
dataSize: bigint | null;
|
|
13716
|
+
totalDataCount: bigint | null;
|
|
13635
13717
|
totalStorageSize: bigint | null;
|
|
13636
|
-
|
|
13637
|
-
|
|
13718
|
+
dataCount: bigint | null;
|
|
13719
|
+
perDataSize: bigint | null;
|
|
13638
13720
|
totalCount: bigint | null;
|
|
13639
13721
|
};
|
|
13640
13722
|
};
|
|
@@ -16000,9 +16082,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16000
16082
|
usersBase: bigint | null;
|
|
16001
16083
|
usersUnit: bigint | null;
|
|
16002
16084
|
usersPrice: number | null;
|
|
16003
|
-
|
|
16004
|
-
|
|
16005
|
-
|
|
16085
|
+
perDataSizeBase: bigint | null;
|
|
16086
|
+
perDataSizeUnit: bigint | null;
|
|
16087
|
+
perDataSizePrice: number | null;
|
|
16006
16088
|
bandwidthBase: bigint | null;
|
|
16007
16089
|
bandwidthUnit: bigint | null;
|
|
16008
16090
|
bandwidthPrice: number | null;
|
|
@@ -16011,7 +16093,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16011
16093
|
totalStorageSizePrice: number | null;
|
|
16012
16094
|
devsMax: bigint | null;
|
|
16013
16095
|
usersMax: bigint | null;
|
|
16014
|
-
|
|
16096
|
+
perDataSizeMax: bigint | null;
|
|
16015
16097
|
bandwidthMax: bigint | null;
|
|
16016
16098
|
totalStorageSizeMax: bigint | null;
|
|
16017
16099
|
};
|
|
@@ -16050,9 +16132,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16050
16132
|
usersBase: bigint | null;
|
|
16051
16133
|
usersUnit: bigint | null;
|
|
16052
16134
|
usersPrice: number | null;
|
|
16053
|
-
|
|
16054
|
-
|
|
16055
|
-
|
|
16135
|
+
perDataSizeBase: bigint | null;
|
|
16136
|
+
perDataSizeUnit: bigint | null;
|
|
16137
|
+
perDataSizePrice: number | null;
|
|
16056
16138
|
bandwidthBase: bigint | null;
|
|
16057
16139
|
bandwidthUnit: bigint | null;
|
|
16058
16140
|
bandwidthPrice: number | null;
|
|
@@ -16061,7 +16143,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16061
16143
|
totalStorageSizePrice: number | null;
|
|
16062
16144
|
devsMax: bigint | null;
|
|
16063
16145
|
usersMax: bigint | null;
|
|
16064
|
-
|
|
16146
|
+
perDataSizeMax: bigint | null;
|
|
16065
16147
|
bandwidthMax: bigint | null;
|
|
16066
16148
|
totalStorageSizeMax: bigint | null;
|
|
16067
16149
|
};
|
|
@@ -16082,9 +16164,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16082
16164
|
usersBase: bigint | null;
|
|
16083
16165
|
usersUnit: bigint | null;
|
|
16084
16166
|
usersPrice: number | null;
|
|
16085
|
-
|
|
16086
|
-
|
|
16087
|
-
|
|
16167
|
+
perDataSizeBase: bigint | null;
|
|
16168
|
+
perDataSizeUnit: bigint | null;
|
|
16169
|
+
perDataSizePrice: number | null;
|
|
16088
16170
|
bandwidthBase: bigint | null;
|
|
16089
16171
|
bandwidthUnit: bigint | null;
|
|
16090
16172
|
bandwidthPrice: number | null;
|
|
@@ -16093,7 +16175,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16093
16175
|
totalStorageSizePrice: number | null;
|
|
16094
16176
|
devsMax: bigint | null;
|
|
16095
16177
|
usersMax: bigint | null;
|
|
16096
|
-
|
|
16178
|
+
perDataSizeMax: bigint | null;
|
|
16097
16179
|
bandwidthMax: bigint | null;
|
|
16098
16180
|
totalStorageSizeMax: bigint | null;
|
|
16099
16181
|
};
|
|
@@ -16132,9 +16214,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16132
16214
|
usersBase: bigint | null;
|
|
16133
16215
|
usersUnit: bigint | null;
|
|
16134
16216
|
usersPrice: number | null;
|
|
16135
|
-
|
|
16136
|
-
|
|
16137
|
-
|
|
16217
|
+
perDataSizeBase: bigint | null;
|
|
16218
|
+
perDataSizeUnit: bigint | null;
|
|
16219
|
+
perDataSizePrice: number | null;
|
|
16138
16220
|
bandwidthBase: bigint | null;
|
|
16139
16221
|
bandwidthUnit: bigint | null;
|
|
16140
16222
|
bandwidthPrice: number | null;
|
|
@@ -16143,7 +16225,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16143
16225
|
totalStorageSizePrice: number | null;
|
|
16144
16226
|
devsMax: bigint | null;
|
|
16145
16227
|
usersMax: bigint | null;
|
|
16146
|
-
|
|
16228
|
+
perDataSizeMax: bigint | null;
|
|
16147
16229
|
bandwidthMax: bigint | null;
|
|
16148
16230
|
totalStorageSizeMax: bigint | null;
|
|
16149
16231
|
};
|
|
@@ -16218,9 +16300,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16218
16300
|
usersBase: bigint | null;
|
|
16219
16301
|
usersUnit: bigint | null;
|
|
16220
16302
|
usersPrice: number | null;
|
|
16221
|
-
|
|
16222
|
-
|
|
16223
|
-
|
|
16303
|
+
perDataSizeBase: bigint | null;
|
|
16304
|
+
perDataSizeUnit: bigint | null;
|
|
16305
|
+
perDataSizePrice: number | null;
|
|
16224
16306
|
bandwidthBase: bigint | null;
|
|
16225
16307
|
bandwidthUnit: bigint | null;
|
|
16226
16308
|
bandwidthPrice: number | null;
|
|
@@ -16229,7 +16311,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16229
16311
|
totalStorageSizePrice: number | null;
|
|
16230
16312
|
devsMax: bigint | null;
|
|
16231
16313
|
usersMax: bigint | null;
|
|
16232
|
-
|
|
16314
|
+
perDataSizeMax: bigint | null;
|
|
16233
16315
|
bandwidthMax: bigint | null;
|
|
16234
16316
|
totalStorageSizeMax: bigint | null;
|
|
16235
16317
|
};
|
|
@@ -16268,9 +16350,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16268
16350
|
usersBase: bigint | null;
|
|
16269
16351
|
usersUnit: bigint | null;
|
|
16270
16352
|
usersPrice: number | null;
|
|
16271
|
-
|
|
16272
|
-
|
|
16273
|
-
|
|
16353
|
+
perDataSizeBase: bigint | null;
|
|
16354
|
+
perDataSizeUnit: bigint | null;
|
|
16355
|
+
perDataSizePrice: number | null;
|
|
16274
16356
|
bandwidthBase: bigint | null;
|
|
16275
16357
|
bandwidthUnit: bigint | null;
|
|
16276
16358
|
bandwidthPrice: number | null;
|
|
@@ -16279,7 +16361,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16279
16361
|
totalStorageSizePrice: number | null;
|
|
16280
16362
|
devsMax: bigint | null;
|
|
16281
16363
|
usersMax: bigint | null;
|
|
16282
|
-
|
|
16364
|
+
perDataSizeMax: bigint | null;
|
|
16283
16365
|
bandwidthMax: bigint | null;
|
|
16284
16366
|
totalStorageSizeMax: bigint | null;
|
|
16285
16367
|
};
|
|
@@ -16300,9 +16382,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16300
16382
|
usersBase: bigint | null;
|
|
16301
16383
|
usersUnit: bigint | null;
|
|
16302
16384
|
usersPrice: number | null;
|
|
16303
|
-
|
|
16304
|
-
|
|
16305
|
-
|
|
16385
|
+
perDataSizeBase: bigint | null;
|
|
16386
|
+
perDataSizeUnit: bigint | null;
|
|
16387
|
+
perDataSizePrice: number | null;
|
|
16306
16388
|
bandwidthBase: bigint | null;
|
|
16307
16389
|
bandwidthUnit: bigint | null;
|
|
16308
16390
|
bandwidthPrice: number | null;
|
|
@@ -16311,7 +16393,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16311
16393
|
totalStorageSizePrice: number | null;
|
|
16312
16394
|
devsMax: bigint | null;
|
|
16313
16395
|
usersMax: bigint | null;
|
|
16314
|
-
|
|
16396
|
+
perDataSizeMax: bigint | null;
|
|
16315
16397
|
bandwidthMax: bigint | null;
|
|
16316
16398
|
totalStorageSizeMax: bigint | null;
|
|
16317
16399
|
};
|
|
@@ -16350,9 +16432,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16350
16432
|
usersBase: bigint | null;
|
|
16351
16433
|
usersUnit: bigint | null;
|
|
16352
16434
|
usersPrice: number | null;
|
|
16353
|
-
|
|
16354
|
-
|
|
16355
|
-
|
|
16435
|
+
perDataSizeBase: bigint | null;
|
|
16436
|
+
perDataSizeUnit: bigint | null;
|
|
16437
|
+
perDataSizePrice: number | null;
|
|
16356
16438
|
bandwidthBase: bigint | null;
|
|
16357
16439
|
bandwidthUnit: bigint | null;
|
|
16358
16440
|
bandwidthPrice: number | null;
|
|
@@ -16361,7 +16443,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16361
16443
|
totalStorageSizePrice: number | null;
|
|
16362
16444
|
devsMax: bigint | null;
|
|
16363
16445
|
usersMax: bigint | null;
|
|
16364
|
-
|
|
16446
|
+
perDataSizeMax: bigint | null;
|
|
16365
16447
|
bandwidthMax: bigint | null;
|
|
16366
16448
|
totalStorageSizeMax: bigint | null;
|
|
16367
16449
|
};
|
|
@@ -17750,6 +17832,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17750
17832
|
_input_in: {} | undefined;
|
|
17751
17833
|
_input_out: {} | undefined;
|
|
17752
17834
|
_output_in: {
|
|
17835
|
+
accountId: string;
|
|
17753
17836
|
userId: string;
|
|
17754
17837
|
id: string;
|
|
17755
17838
|
createdAt: Date;
|
|
@@ -17758,7 +17841,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17758
17841
|
ip: string | null;
|
|
17759
17842
|
country: string | null;
|
|
17760
17843
|
city: string | null;
|
|
17761
|
-
appSessions: {
|
|
17844
|
+
appSessions: ({
|
|
17762
17845
|
appId: string;
|
|
17763
17846
|
userId: string;
|
|
17764
17847
|
id: string;
|
|
@@ -17769,12 +17852,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17769
17852
|
ip: string | null;
|
|
17770
17853
|
country: string | null;
|
|
17771
17854
|
city: string | null;
|
|
17855
|
+
} & {
|
|
17772
17856
|
name: string;
|
|
17773
17857
|
logo: string | null;
|
|
17774
17858
|
origin: string[];
|
|
17775
|
-
}[];
|
|
17859
|
+
})[];
|
|
17776
17860
|
}[];
|
|
17777
17861
|
_output_out: {
|
|
17862
|
+
accountId: string;
|
|
17778
17863
|
userId: string;
|
|
17779
17864
|
id: string;
|
|
17780
17865
|
createdAt: Date;
|
|
@@ -17783,7 +17868,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17783
17868
|
ip: string | null;
|
|
17784
17869
|
country: string | null;
|
|
17785
17870
|
city: string | null;
|
|
17786
|
-
appSessions: {
|
|
17871
|
+
appSessions: ({
|
|
17787
17872
|
appId: string;
|
|
17788
17873
|
userId: string;
|
|
17789
17874
|
id: string;
|
|
@@ -17794,10 +17879,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17794
17879
|
ip: string | null;
|
|
17795
17880
|
country: string | null;
|
|
17796
17881
|
city: string | null;
|
|
17882
|
+
} & {
|
|
17797
17883
|
name: string;
|
|
17798
17884
|
logo: string | null;
|
|
17799
17885
|
origin: string[];
|
|
17800
|
-
}[];
|
|
17886
|
+
})[];
|
|
17801
17887
|
}[];
|
|
17802
17888
|
}, unknown>>;
|
|
17803
17889
|
};
|