@secrecy/lib 1.27.0 → 1.29.0-feat-rename-file.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/cache.js +2 -2
- package/dist/lib/client/SecrecyAppClient.js +2 -2
- package/dist/lib/client/SecrecyCloudClient.js +91 -91
- package/dist/lib/client/SecrecyMailClient.js +25 -25
- package/dist/lib/client/convert/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 +461 -371
- 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
|
}[];
|
|
@@ -4056,6 +4102,12 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4056
4102
|
nameKey: string;
|
|
4057
4103
|
};
|
|
4058
4104
|
totalSize: bigint;
|
|
4105
|
+
breadcrumb: {
|
|
4106
|
+
id: string;
|
|
4107
|
+
name: string;
|
|
4108
|
+
nameKey: string | null;
|
|
4109
|
+
pubKey: string;
|
|
4110
|
+
}[];
|
|
4059
4111
|
sharedCount: number;
|
|
4060
4112
|
}[];
|
|
4061
4113
|
};
|
|
@@ -4073,7 +4125,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4073
4125
|
updatedAt: Date;
|
|
4074
4126
|
history: {
|
|
4075
4127
|
createdAt: Date;
|
|
4076
|
-
|
|
4128
|
+
dataId: string;
|
|
4077
4129
|
size: bigint;
|
|
4078
4130
|
storageType: "s3" | "lite";
|
|
4079
4131
|
}[];
|
|
@@ -4082,12 +4134,18 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4082
4134
|
nameKey: string;
|
|
4083
4135
|
};
|
|
4084
4136
|
totalSize: bigint;
|
|
4137
|
+
breadcrumb: {
|
|
4138
|
+
id: string;
|
|
4139
|
+
name: string;
|
|
4140
|
+
nameKey: string | null;
|
|
4141
|
+
pubKey: string;
|
|
4142
|
+
}[];
|
|
4085
4143
|
sharedCount: number;
|
|
4086
4144
|
}[];
|
|
4087
4145
|
};
|
|
4088
4146
|
}, unknown>>;
|
|
4089
4147
|
};
|
|
4090
|
-
|
|
4148
|
+
shareDataInHistory: {
|
|
4091
4149
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4092
4150
|
_config: import("@trpc/server").RootConfig<{
|
|
4093
4151
|
ctx: {
|
|
@@ -4138,7 +4196,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4138
4196
|
id: string;
|
|
4139
4197
|
key: string;
|
|
4140
4198
|
}[];
|
|
4141
|
-
|
|
4199
|
+
dataId: string;
|
|
4142
4200
|
nodeId: string;
|
|
4143
4201
|
};
|
|
4144
4202
|
_input_out: {
|
|
@@ -4146,7 +4204,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4146
4204
|
id: string;
|
|
4147
4205
|
key: string;
|
|
4148
4206
|
}[];
|
|
4149
|
-
|
|
4207
|
+
dataId: string;
|
|
4150
4208
|
nodeId: string;
|
|
4151
4209
|
};
|
|
4152
4210
|
_output_in: {
|
|
@@ -4157,7 +4215,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4157
4215
|
};
|
|
4158
4216
|
}, unknown>>;
|
|
4159
4217
|
};
|
|
4160
|
-
|
|
4218
|
+
uploadDataEnd: {
|
|
4161
4219
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4162
4220
|
_config: import("@trpc/server").RootConfig<{
|
|
4163
4221
|
ctx: {
|
|
@@ -4204,10 +4262,10 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4204
4262
|
ls: TranslationFunctions;
|
|
4205
4263
|
};
|
|
4206
4264
|
_input_in: {
|
|
4207
|
-
|
|
4265
|
+
dataId: string;
|
|
4208
4266
|
};
|
|
4209
4267
|
_input_out: {
|
|
4210
|
-
|
|
4268
|
+
dataId: string;
|
|
4211
4269
|
};
|
|
4212
4270
|
_output_in: {
|
|
4213
4271
|
isUploadEnded: boolean;
|
|
@@ -4217,7 +4275,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4217
4275
|
};
|
|
4218
4276
|
}, unknown>>;
|
|
4219
4277
|
};
|
|
4220
|
-
|
|
4278
|
+
uploadDataPartEnd: {
|
|
4221
4279
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4222
4280
|
_config: import("@trpc/server").RootConfig<{
|
|
4223
4281
|
ctx: {
|
|
@@ -4264,12 +4322,12 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4264
4322
|
ls: TranslationFunctions;
|
|
4265
4323
|
};
|
|
4266
4324
|
_input_in: {
|
|
4267
|
-
|
|
4325
|
+
dataId: string;
|
|
4268
4326
|
md5: string;
|
|
4269
4327
|
order: number;
|
|
4270
4328
|
};
|
|
4271
4329
|
_input_out: {
|
|
4272
|
-
|
|
4330
|
+
dataId: string;
|
|
4273
4331
|
md5: string;
|
|
4274
4332
|
order: number;
|
|
4275
4333
|
};
|
|
@@ -4281,7 +4339,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4281
4339
|
};
|
|
4282
4340
|
}, unknown>>;
|
|
4283
4341
|
};
|
|
4284
|
-
|
|
4342
|
+
uploadData: {
|
|
4285
4343
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4286
4344
|
_config: import("@trpc/server").RootConfig<{
|
|
4287
4345
|
ctx: {
|
|
@@ -4328,40 +4386,40 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4328
4386
|
ls: TranslationFunctions;
|
|
4329
4387
|
};
|
|
4330
4388
|
_input_in: {
|
|
4331
|
-
|
|
4389
|
+
dataSize: bigint;
|
|
4332
4390
|
md5: string;
|
|
4333
4391
|
md5Encrypted: string;
|
|
4334
|
-
|
|
4335
|
-
|
|
4392
|
+
dataKey: string;
|
|
4393
|
+
dataSizeBefore: bigint;
|
|
4336
4394
|
};
|
|
4337
4395
|
_input_out: {
|
|
4338
|
-
|
|
4396
|
+
dataSize: bigint;
|
|
4339
4397
|
md5: string;
|
|
4340
4398
|
md5Encrypted: string;
|
|
4341
|
-
|
|
4342
|
-
|
|
4399
|
+
dataKey: string;
|
|
4400
|
+
dataSizeBefore: bigint;
|
|
4343
4401
|
};
|
|
4344
4402
|
_output_in: {
|
|
4345
|
-
|
|
4346
|
-
filePartSize: bigint;
|
|
4403
|
+
dataId: string;
|
|
4347
4404
|
parts: {
|
|
4348
4405
|
fields: Record<string, string>;
|
|
4349
4406
|
url: string;
|
|
4350
4407
|
order: number;
|
|
4351
4408
|
}[];
|
|
4409
|
+
dataPartSize: bigint;
|
|
4352
4410
|
};
|
|
4353
4411
|
_output_out: {
|
|
4354
|
-
|
|
4355
|
-
filePartSize: bigint;
|
|
4412
|
+
dataId: string;
|
|
4356
4413
|
parts: {
|
|
4357
4414
|
fields: Record<string, string>;
|
|
4358
4415
|
url: string;
|
|
4359
4416
|
order: number;
|
|
4360
4417
|
}[];
|
|
4418
|
+
dataPartSize: bigint;
|
|
4361
4419
|
};
|
|
4362
4420
|
}, unknown>>;
|
|
4363
4421
|
};
|
|
4364
|
-
|
|
4422
|
+
uploadLiteData: {
|
|
4365
4423
|
mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
|
|
4366
4424
|
_config: import("@trpc/server").RootConfig<{
|
|
4367
4425
|
ctx: {
|
|
@@ -4408,20 +4466,20 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4408
4466
|
ls: TranslationFunctions;
|
|
4409
4467
|
};
|
|
4410
4468
|
_input_in: {
|
|
4411
|
-
|
|
4469
|
+
dataSize: bigint;
|
|
4412
4470
|
md5: string;
|
|
4413
4471
|
content: Buffer;
|
|
4414
4472
|
md5Encrypted: string;
|
|
4415
|
-
|
|
4416
|
-
|
|
4473
|
+
dataKey: string;
|
|
4474
|
+
dataSizeBefore: bigint;
|
|
4417
4475
|
};
|
|
4418
4476
|
_input_out: {
|
|
4419
|
-
|
|
4477
|
+
dataSize: bigint;
|
|
4420
4478
|
md5: string;
|
|
4421
4479
|
content: Buffer;
|
|
4422
4480
|
md5Encrypted: string;
|
|
4423
|
-
|
|
4424
|
-
|
|
4481
|
+
dataKey: string;
|
|
4482
|
+
dataSizeBefore: bigint;
|
|
4425
4483
|
};
|
|
4426
4484
|
_output_in: {
|
|
4427
4485
|
id: string;
|
|
@@ -4496,7 +4554,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4496
4554
|
type: "FILE" | "FOLDER";
|
|
4497
4555
|
parentId: string | null;
|
|
4498
4556
|
isFavorite: boolean;
|
|
4499
|
-
|
|
4557
|
+
currentDataId: string | null;
|
|
4500
4558
|
} & {
|
|
4501
4559
|
users: [{
|
|
4502
4560
|
id: string;
|
|
@@ -4532,6 +4590,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4532
4590
|
storageType: "s3" | "lite";
|
|
4533
4591
|
sizeBefore: bigint;
|
|
4534
4592
|
md5Encrypted: string;
|
|
4593
|
+
userAppUserId: string;
|
|
4594
|
+
userAppAppId: string;
|
|
4595
|
+
validatedAt: Date | null;
|
|
4535
4596
|
access: {
|
|
4536
4597
|
key: string;
|
|
4537
4598
|
sharedByPubKey: string;
|
|
@@ -4545,6 +4606,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4545
4606
|
storageType: "s3" | "lite";
|
|
4546
4607
|
sizeBefore: bigint;
|
|
4547
4608
|
md5Encrypted: string;
|
|
4609
|
+
userAppUserId: string;
|
|
4610
|
+
userAppAppId: string;
|
|
4611
|
+
validatedAt: Date | null;
|
|
4548
4612
|
access: {
|
|
4549
4613
|
key: string;
|
|
4550
4614
|
sharedByPubKey: string;
|
|
@@ -4559,7 +4623,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4559
4623
|
type: "FILE" | "FOLDER";
|
|
4560
4624
|
parentId: string | null;
|
|
4561
4625
|
isFavorite: boolean;
|
|
4562
|
-
|
|
4626
|
+
currentDataId: string | null;
|
|
4563
4627
|
} & {
|
|
4564
4628
|
users: [{
|
|
4565
4629
|
id: string;
|
|
@@ -4591,7 +4655,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4591
4655
|
type: "FILE" | "FOLDER";
|
|
4592
4656
|
parentId: string | null;
|
|
4593
4657
|
isFavorite: boolean;
|
|
4594
|
-
|
|
4658
|
+
currentDataId: string | null;
|
|
4595
4659
|
} & {
|
|
4596
4660
|
users: [{
|
|
4597
4661
|
id: string;
|
|
@@ -4635,7 +4699,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4635
4699
|
type: "FILE" | "FOLDER";
|
|
4636
4700
|
parentId: string | null;
|
|
4637
4701
|
isFavorite: boolean;
|
|
4638
|
-
|
|
4702
|
+
currentDataId: string | null;
|
|
4639
4703
|
} & {
|
|
4640
4704
|
users: [{
|
|
4641
4705
|
id: string;
|
|
@@ -4671,6 +4735,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4671
4735
|
storageType: "s3" | "lite";
|
|
4672
4736
|
sizeBefore: bigint;
|
|
4673
4737
|
md5Encrypted: string;
|
|
4738
|
+
userAppUserId: string;
|
|
4739
|
+
userAppAppId: string;
|
|
4740
|
+
validatedAt: Date | null;
|
|
4674
4741
|
access: {
|
|
4675
4742
|
key: string;
|
|
4676
4743
|
sharedByPubKey: string;
|
|
@@ -4684,6 +4751,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4684
4751
|
storageType: "s3" | "lite";
|
|
4685
4752
|
sizeBefore: bigint;
|
|
4686
4753
|
md5Encrypted: string;
|
|
4754
|
+
userAppUserId: string;
|
|
4755
|
+
userAppAppId: string;
|
|
4756
|
+
validatedAt: Date | null;
|
|
4687
4757
|
access: {
|
|
4688
4758
|
key: string;
|
|
4689
4759
|
sharedByPubKey: string;
|
|
@@ -4698,7 +4768,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4698
4768
|
type: "FILE" | "FOLDER";
|
|
4699
4769
|
parentId: string | null;
|
|
4700
4770
|
isFavorite: boolean;
|
|
4701
|
-
|
|
4771
|
+
currentDataId: string | null;
|
|
4702
4772
|
} & {
|
|
4703
4773
|
users: [{
|
|
4704
4774
|
id: string;
|
|
@@ -4730,7 +4800,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4730
4800
|
type: "FILE" | "FOLDER";
|
|
4731
4801
|
parentId: string | null;
|
|
4732
4802
|
isFavorite: boolean;
|
|
4733
|
-
|
|
4803
|
+
currentDataId: string | null;
|
|
4734
4804
|
} & {
|
|
4735
4805
|
users: [{
|
|
4736
4806
|
id: string;
|
|
@@ -5334,7 +5404,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5334
5404
|
type: "FILE" | "FOLDER";
|
|
5335
5405
|
parentId: string | null;
|
|
5336
5406
|
isFavorite: boolean;
|
|
5337
|
-
|
|
5407
|
+
currentDataId: string | null;
|
|
5338
5408
|
} & {
|
|
5339
5409
|
users: [{
|
|
5340
5410
|
id: string;
|
|
@@ -5371,7 +5441,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5371
5441
|
type: "FILE" | "FOLDER";
|
|
5372
5442
|
parentId: string | null;
|
|
5373
5443
|
isFavorite: boolean;
|
|
5374
|
-
|
|
5444
|
+
currentDataId: string | null;
|
|
5375
5445
|
} & {
|
|
5376
5446
|
users: [{
|
|
5377
5447
|
id: string;
|
|
@@ -5464,7 +5534,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5464
5534
|
type: "FILE" | "FOLDER";
|
|
5465
5535
|
parentId: string | null;
|
|
5466
5536
|
isFavorite: boolean;
|
|
5467
|
-
|
|
5537
|
+
currentDataId: string | null;
|
|
5468
5538
|
} & {
|
|
5469
5539
|
users: [{
|
|
5470
5540
|
id: string;
|
|
@@ -5500,6 +5570,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5500
5570
|
storageType: "s3" | "lite";
|
|
5501
5571
|
sizeBefore: bigint;
|
|
5502
5572
|
md5Encrypted: string;
|
|
5573
|
+
userAppUserId: string;
|
|
5574
|
+
userAppAppId: string;
|
|
5575
|
+
validatedAt: Date | null;
|
|
5503
5576
|
access: {
|
|
5504
5577
|
key: string;
|
|
5505
5578
|
sharedByPubKey: string;
|
|
@@ -5513,6 +5586,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5513
5586
|
storageType: "s3" | "lite";
|
|
5514
5587
|
sizeBefore: bigint;
|
|
5515
5588
|
md5Encrypted: string;
|
|
5589
|
+
userAppUserId: string;
|
|
5590
|
+
userAppAppId: string;
|
|
5591
|
+
validatedAt: Date | null;
|
|
5516
5592
|
access: {
|
|
5517
5593
|
key: string;
|
|
5518
5594
|
sharedByPubKey: string;
|
|
@@ -5527,7 +5603,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5527
5603
|
type: "FILE" | "FOLDER";
|
|
5528
5604
|
parentId: string | null;
|
|
5529
5605
|
isFavorite: boolean;
|
|
5530
|
-
|
|
5606
|
+
currentDataId: string | null;
|
|
5531
5607
|
} & {
|
|
5532
5608
|
users: [{
|
|
5533
5609
|
id: string;
|
|
@@ -5559,7 +5635,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5559
5635
|
type: "FILE" | "FOLDER";
|
|
5560
5636
|
parentId: string | null;
|
|
5561
5637
|
isFavorite: boolean;
|
|
5562
|
-
|
|
5638
|
+
currentDataId: string | null;
|
|
5563
5639
|
} & {
|
|
5564
5640
|
users: [{
|
|
5565
5641
|
id: string;
|
|
@@ -5603,7 +5679,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5603
5679
|
type: "FILE" | "FOLDER";
|
|
5604
5680
|
parentId: string | null;
|
|
5605
5681
|
isFavorite: boolean;
|
|
5606
|
-
|
|
5682
|
+
currentDataId: string | null;
|
|
5607
5683
|
} & {
|
|
5608
5684
|
users: [{
|
|
5609
5685
|
id: string;
|
|
@@ -5639,6 +5715,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5639
5715
|
storageType: "s3" | "lite";
|
|
5640
5716
|
sizeBefore: bigint;
|
|
5641
5717
|
md5Encrypted: string;
|
|
5718
|
+
userAppUserId: string;
|
|
5719
|
+
userAppAppId: string;
|
|
5720
|
+
validatedAt: Date | null;
|
|
5642
5721
|
access: {
|
|
5643
5722
|
key: string;
|
|
5644
5723
|
sharedByPubKey: string;
|
|
@@ -5652,6 +5731,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5652
5731
|
storageType: "s3" | "lite";
|
|
5653
5732
|
sizeBefore: bigint;
|
|
5654
5733
|
md5Encrypted: string;
|
|
5734
|
+
userAppUserId: string;
|
|
5735
|
+
userAppAppId: string;
|
|
5736
|
+
validatedAt: Date | null;
|
|
5655
5737
|
access: {
|
|
5656
5738
|
key: string;
|
|
5657
5739
|
sharedByPubKey: string;
|
|
@@ -5666,7 +5748,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5666
5748
|
type: "FILE" | "FOLDER";
|
|
5667
5749
|
parentId: string | null;
|
|
5668
5750
|
isFavorite: boolean;
|
|
5669
|
-
|
|
5751
|
+
currentDataId: string | null;
|
|
5670
5752
|
} & {
|
|
5671
5753
|
users: [{
|
|
5672
5754
|
id: string;
|
|
@@ -5698,7 +5780,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5698
5780
|
type: "FILE" | "FOLDER";
|
|
5699
5781
|
parentId: string | null;
|
|
5700
5782
|
isFavorite: boolean;
|
|
5701
|
-
|
|
5783
|
+
currentDataId: string | null;
|
|
5702
5784
|
} & {
|
|
5703
5785
|
users: [{
|
|
5704
5786
|
id: string;
|
|
@@ -5854,7 +5936,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5854
5936
|
type: "FILE" | "FOLDER";
|
|
5855
5937
|
parentId: string | null;
|
|
5856
5938
|
isFavorite: boolean;
|
|
5857
|
-
|
|
5939
|
+
currentDataId: string | null;
|
|
5858
5940
|
} & {
|
|
5859
5941
|
users: [{
|
|
5860
5942
|
id: string;
|
|
@@ -5886,7 +5968,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5886
5968
|
type: "FILE" | "FOLDER";
|
|
5887
5969
|
parentId: string | null;
|
|
5888
5970
|
isFavorite: boolean;
|
|
5889
|
-
|
|
5971
|
+
currentDataId: string | null;
|
|
5890
5972
|
} & {
|
|
5891
5973
|
users: [{
|
|
5892
5974
|
id: string;
|
|
@@ -5972,7 +6054,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
5972
6054
|
type: "FILE" | "FOLDER";
|
|
5973
6055
|
parentId: string | null;
|
|
5974
6056
|
isFavorite: boolean;
|
|
5975
|
-
|
|
6057
|
+
currentDataId: string | null;
|
|
5976
6058
|
} & {
|
|
5977
6059
|
users: [{
|
|
5978
6060
|
id: string;
|
|
@@ -6004,7 +6086,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6004
6086
|
type: "FILE" | "FOLDER";
|
|
6005
6087
|
parentId: string | null;
|
|
6006
6088
|
isFavorite: boolean;
|
|
6007
|
-
|
|
6089
|
+
currentDataId: string | null;
|
|
6008
6090
|
} & {
|
|
6009
6091
|
users: [{
|
|
6010
6092
|
id: string;
|
|
@@ -6086,7 +6168,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6086
6168
|
type: "FILE" | "FOLDER";
|
|
6087
6169
|
parentId: string | null;
|
|
6088
6170
|
isFavorite: boolean;
|
|
6089
|
-
|
|
6171
|
+
currentDataId: string | null;
|
|
6090
6172
|
} & {
|
|
6091
6173
|
users: [{
|
|
6092
6174
|
id: string;
|
|
@@ -6118,7 +6200,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6118
6200
|
type: "FILE" | "FOLDER";
|
|
6119
6201
|
parentId: string | null;
|
|
6120
6202
|
isFavorite: boolean;
|
|
6121
|
-
|
|
6203
|
+
currentDataId: string | null;
|
|
6122
6204
|
} & {
|
|
6123
6205
|
users: [{
|
|
6124
6206
|
id: string;
|
|
@@ -6252,24 +6334,24 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6252
6334
|
_input_in: {
|
|
6253
6335
|
userId: string;
|
|
6254
6336
|
nodes: {
|
|
6255
|
-
|
|
6256
|
-
nameKey: string | null;
|
|
6257
|
-
files: {
|
|
6337
|
+
data: {
|
|
6258
6338
|
id: string;
|
|
6259
6339
|
key: string;
|
|
6260
6340
|
}[];
|
|
6341
|
+
id: string;
|
|
6342
|
+
nameKey: string | null;
|
|
6261
6343
|
}[];
|
|
6262
6344
|
rights: "admin" | "write" | "read";
|
|
6263
6345
|
};
|
|
6264
6346
|
_input_out: {
|
|
6265
6347
|
userId: string;
|
|
6266
6348
|
nodes: {
|
|
6267
|
-
|
|
6268
|
-
nameKey: string | null;
|
|
6269
|
-
files: {
|
|
6349
|
+
data: {
|
|
6270
6350
|
id: string;
|
|
6271
6351
|
key: string;
|
|
6272
6352
|
}[];
|
|
6353
|
+
id: string;
|
|
6354
|
+
nameKey: string | null;
|
|
6273
6355
|
}[];
|
|
6274
6356
|
rights: "admin" | "write" | "read";
|
|
6275
6357
|
};
|
|
@@ -6410,7 +6492,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6410
6492
|
type: "FILE" | "FOLDER";
|
|
6411
6493
|
parentId: string | null;
|
|
6412
6494
|
isFavorite: boolean;
|
|
6413
|
-
|
|
6495
|
+
currentDataId: string | null;
|
|
6414
6496
|
} & {
|
|
6415
6497
|
users: [{
|
|
6416
6498
|
id: string;
|
|
@@ -6446,6 +6528,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6446
6528
|
storageType: "s3" | "lite";
|
|
6447
6529
|
sizeBefore: bigint;
|
|
6448
6530
|
md5Encrypted: string;
|
|
6531
|
+
userAppUserId: string;
|
|
6532
|
+
userAppAppId: string;
|
|
6533
|
+
validatedAt: Date | null;
|
|
6449
6534
|
access: {
|
|
6450
6535
|
key: string;
|
|
6451
6536
|
sharedByPubKey: string;
|
|
@@ -6459,6 +6544,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6459
6544
|
storageType: "s3" | "lite";
|
|
6460
6545
|
sizeBefore: bigint;
|
|
6461
6546
|
md5Encrypted: string;
|
|
6547
|
+
userAppUserId: string;
|
|
6548
|
+
userAppAppId: string;
|
|
6549
|
+
validatedAt: Date | null;
|
|
6462
6550
|
access: {
|
|
6463
6551
|
key: string;
|
|
6464
6552
|
sharedByPubKey: string;
|
|
@@ -6473,7 +6561,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6473
6561
|
type: "FILE" | "FOLDER";
|
|
6474
6562
|
parentId: string | null;
|
|
6475
6563
|
isFavorite: boolean;
|
|
6476
|
-
|
|
6564
|
+
currentDataId: string | null;
|
|
6477
6565
|
} & {
|
|
6478
6566
|
users: [{
|
|
6479
6567
|
id: string;
|
|
@@ -6505,7 +6593,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6505
6593
|
type: "FILE" | "FOLDER";
|
|
6506
6594
|
parentId: string | null;
|
|
6507
6595
|
isFavorite: boolean;
|
|
6508
|
-
|
|
6596
|
+
currentDataId: string | null;
|
|
6509
6597
|
} & {
|
|
6510
6598
|
users: [{
|
|
6511
6599
|
id: string;
|
|
@@ -6549,7 +6637,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6549
6637
|
type: "FILE" | "FOLDER";
|
|
6550
6638
|
parentId: string | null;
|
|
6551
6639
|
isFavorite: boolean;
|
|
6552
|
-
|
|
6640
|
+
currentDataId: string | null;
|
|
6553
6641
|
} & {
|
|
6554
6642
|
users: [{
|
|
6555
6643
|
id: string;
|
|
@@ -6585,6 +6673,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6585
6673
|
storageType: "s3" | "lite";
|
|
6586
6674
|
sizeBefore: bigint;
|
|
6587
6675
|
md5Encrypted: string;
|
|
6676
|
+
userAppUserId: string;
|
|
6677
|
+
userAppAppId: string;
|
|
6678
|
+
validatedAt: Date | null;
|
|
6588
6679
|
access: {
|
|
6589
6680
|
key: string;
|
|
6590
6681
|
sharedByPubKey: string;
|
|
@@ -6598,6 +6689,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6598
6689
|
storageType: "s3" | "lite";
|
|
6599
6690
|
sizeBefore: bigint;
|
|
6600
6691
|
md5Encrypted: string;
|
|
6692
|
+
userAppUserId: string;
|
|
6693
|
+
userAppAppId: string;
|
|
6694
|
+
validatedAt: Date | null;
|
|
6601
6695
|
access: {
|
|
6602
6696
|
key: string;
|
|
6603
6697
|
sharedByPubKey: string;
|
|
@@ -6612,7 +6706,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6612
6706
|
type: "FILE" | "FOLDER";
|
|
6613
6707
|
parentId: string | null;
|
|
6614
6708
|
isFavorite: boolean;
|
|
6615
|
-
|
|
6709
|
+
currentDataId: string | null;
|
|
6616
6710
|
} & {
|
|
6617
6711
|
users: [{
|
|
6618
6712
|
id: string;
|
|
@@ -6644,7 +6738,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
6644
6738
|
type: "FILE" | "FOLDER";
|
|
6645
6739
|
parentId: string | null;
|
|
6646
6740
|
isFavorite: boolean;
|
|
6647
|
-
|
|
6741
|
+
currentDataId: string | null;
|
|
6648
6742
|
} & {
|
|
6649
6743
|
users: [{
|
|
6650
6744
|
id: string;
|
|
@@ -11261,6 +11355,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11261
11355
|
body: string;
|
|
11262
11356
|
openedAt: Date | null;
|
|
11263
11357
|
} & {
|
|
11358
|
+
data: {
|
|
11359
|
+
dataId: string;
|
|
11360
|
+
dataKey: string;
|
|
11361
|
+
dataName: string;
|
|
11362
|
+
}[];
|
|
11264
11363
|
mailIntegrity: {
|
|
11265
11364
|
id: string;
|
|
11266
11365
|
replyTo: {
|
|
@@ -11268,6 +11367,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11268
11367
|
} | null;
|
|
11269
11368
|
hashKey: string;
|
|
11270
11369
|
hash: string;
|
|
11370
|
+
temporaryRecipients: {
|
|
11371
|
+
email: string | null;
|
|
11372
|
+
}[];
|
|
11271
11373
|
recipients: {
|
|
11272
11374
|
id: string;
|
|
11273
11375
|
lastname: string;
|
|
@@ -11275,9 +11377,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11275
11377
|
avatar: string | null;
|
|
11276
11378
|
isSearchable: boolean;
|
|
11277
11379
|
}[];
|
|
11278
|
-
temporaryRecipients: {
|
|
11279
|
-
email: string | null;
|
|
11280
|
-
}[];
|
|
11281
11380
|
} | null;
|
|
11282
11381
|
mailIntegrityDraft: {
|
|
11283
11382
|
id: string;
|
|
@@ -11286,6 +11385,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11286
11385
|
} | null;
|
|
11287
11386
|
hashKey: string;
|
|
11288
11387
|
hash: string;
|
|
11388
|
+
temporaryRecipients: {
|
|
11389
|
+
email: string | null;
|
|
11390
|
+
}[];
|
|
11289
11391
|
recipients: {
|
|
11290
11392
|
id: string;
|
|
11291
11393
|
lastname: string;
|
|
@@ -11293,9 +11395,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11293
11395
|
avatar: string | null;
|
|
11294
11396
|
isSearchable: boolean;
|
|
11295
11397
|
}[];
|
|
11296
|
-
temporaryRecipients: {
|
|
11297
|
-
email: string | null;
|
|
11298
|
-
}[];
|
|
11299
11398
|
} | null;
|
|
11300
11399
|
sender: {
|
|
11301
11400
|
id: string;
|
|
@@ -11304,11 +11403,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11304
11403
|
avatar: string | null;
|
|
11305
11404
|
isSearchable: boolean;
|
|
11306
11405
|
};
|
|
11307
|
-
files: {
|
|
11308
|
-
fileId: string;
|
|
11309
|
-
filename: string;
|
|
11310
|
-
fileKey: string;
|
|
11311
|
-
}[];
|
|
11312
11406
|
};
|
|
11313
11407
|
_output_out: {
|
|
11314
11408
|
id: string;
|
|
@@ -11319,6 +11413,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11319
11413
|
body: string;
|
|
11320
11414
|
openedAt: Date | null;
|
|
11321
11415
|
} & {
|
|
11416
|
+
data: {
|
|
11417
|
+
dataId: string;
|
|
11418
|
+
dataKey: string;
|
|
11419
|
+
dataName: string;
|
|
11420
|
+
}[];
|
|
11322
11421
|
mailIntegrity: {
|
|
11323
11422
|
id: string;
|
|
11324
11423
|
replyTo: {
|
|
@@ -11326,6 +11425,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11326
11425
|
} | null;
|
|
11327
11426
|
hashKey: string;
|
|
11328
11427
|
hash: string;
|
|
11428
|
+
temporaryRecipients: {
|
|
11429
|
+
email: string | null;
|
|
11430
|
+
}[];
|
|
11329
11431
|
recipients: {
|
|
11330
11432
|
id: string;
|
|
11331
11433
|
lastname: string;
|
|
@@ -11333,9 +11435,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11333
11435
|
avatar: string | null;
|
|
11334
11436
|
isSearchable: boolean;
|
|
11335
11437
|
}[];
|
|
11336
|
-
temporaryRecipients: {
|
|
11337
|
-
email: string | null;
|
|
11338
|
-
}[];
|
|
11339
11438
|
} | null;
|
|
11340
11439
|
mailIntegrityDraft: {
|
|
11341
11440
|
id: string;
|
|
@@ -11344,6 +11443,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11344
11443
|
} | null;
|
|
11345
11444
|
hashKey: string;
|
|
11346
11445
|
hash: string;
|
|
11446
|
+
temporaryRecipients: {
|
|
11447
|
+
email: string | null;
|
|
11448
|
+
}[];
|
|
11347
11449
|
recipients: {
|
|
11348
11450
|
id: string;
|
|
11349
11451
|
lastname: string;
|
|
@@ -11351,9 +11453,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11351
11453
|
avatar: string | null;
|
|
11352
11454
|
isSearchable: boolean;
|
|
11353
11455
|
}[];
|
|
11354
|
-
temporaryRecipients: {
|
|
11355
|
-
email: string | null;
|
|
11356
|
-
}[];
|
|
11357
11456
|
} | null;
|
|
11358
11457
|
sender: {
|
|
11359
11458
|
id: string;
|
|
@@ -11362,11 +11461,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11362
11461
|
avatar: string | null;
|
|
11363
11462
|
isSearchable: boolean;
|
|
11364
11463
|
};
|
|
11365
|
-
files: {
|
|
11366
|
-
fileId: string;
|
|
11367
|
-
filename: string;
|
|
11368
|
-
fileKey: string;
|
|
11369
|
-
}[];
|
|
11370
11464
|
};
|
|
11371
11465
|
}, unknown>>;
|
|
11372
11466
|
};
|
|
@@ -11453,6 +11547,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11453
11547
|
body: string;
|
|
11454
11548
|
openedAt: Date | null;
|
|
11455
11549
|
} & {
|
|
11550
|
+
data: {
|
|
11551
|
+
dataId: string;
|
|
11552
|
+
dataKey: string;
|
|
11553
|
+
dataName: string;
|
|
11554
|
+
}[];
|
|
11456
11555
|
mailIntegrity: {
|
|
11457
11556
|
id: string;
|
|
11458
11557
|
replyTo: {
|
|
@@ -11460,6 +11559,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11460
11559
|
} | null;
|
|
11461
11560
|
hashKey: string;
|
|
11462
11561
|
hash: string;
|
|
11562
|
+
temporaryRecipients: {
|
|
11563
|
+
email: string | null;
|
|
11564
|
+
}[];
|
|
11463
11565
|
recipients: {
|
|
11464
11566
|
id: string;
|
|
11465
11567
|
lastname: string;
|
|
@@ -11467,9 +11569,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11467
11569
|
avatar: string | null;
|
|
11468
11570
|
isSearchable: boolean;
|
|
11469
11571
|
}[];
|
|
11470
|
-
temporaryRecipients: {
|
|
11471
|
-
email: string | null;
|
|
11472
|
-
}[];
|
|
11473
11572
|
} | null;
|
|
11474
11573
|
mailIntegrityDraft: {
|
|
11475
11574
|
id: string;
|
|
@@ -11478,6 +11577,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11478
11577
|
} | null;
|
|
11479
11578
|
hashKey: string;
|
|
11480
11579
|
hash: string;
|
|
11580
|
+
temporaryRecipients: {
|
|
11581
|
+
email: string | null;
|
|
11582
|
+
}[];
|
|
11481
11583
|
recipients: {
|
|
11482
11584
|
id: string;
|
|
11483
11585
|
lastname: string;
|
|
@@ -11485,9 +11587,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11485
11587
|
avatar: string | null;
|
|
11486
11588
|
isSearchable: boolean;
|
|
11487
11589
|
}[];
|
|
11488
|
-
temporaryRecipients: {
|
|
11489
|
-
email: string | null;
|
|
11490
|
-
}[];
|
|
11491
11590
|
} | null;
|
|
11492
11591
|
sender: {
|
|
11493
11592
|
id: string;
|
|
@@ -11496,11 +11595,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11496
11595
|
avatar: string | null;
|
|
11497
11596
|
isSearchable: boolean;
|
|
11498
11597
|
};
|
|
11499
|
-
files: {
|
|
11500
|
-
fileId: string;
|
|
11501
|
-
filename: string;
|
|
11502
|
-
fileKey: string;
|
|
11503
|
-
}[];
|
|
11504
11598
|
};
|
|
11505
11599
|
_output_out: {
|
|
11506
11600
|
id: string;
|
|
@@ -11511,6 +11605,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11511
11605
|
body: string;
|
|
11512
11606
|
openedAt: Date | null;
|
|
11513
11607
|
} & {
|
|
11608
|
+
data: {
|
|
11609
|
+
dataId: string;
|
|
11610
|
+
dataKey: string;
|
|
11611
|
+
dataName: string;
|
|
11612
|
+
}[];
|
|
11514
11613
|
mailIntegrity: {
|
|
11515
11614
|
id: string;
|
|
11516
11615
|
replyTo: {
|
|
@@ -11518,6 +11617,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11518
11617
|
} | null;
|
|
11519
11618
|
hashKey: string;
|
|
11520
11619
|
hash: string;
|
|
11620
|
+
temporaryRecipients: {
|
|
11621
|
+
email: string | null;
|
|
11622
|
+
}[];
|
|
11521
11623
|
recipients: {
|
|
11522
11624
|
id: string;
|
|
11523
11625
|
lastname: string;
|
|
@@ -11525,9 +11627,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11525
11627
|
avatar: string | null;
|
|
11526
11628
|
isSearchable: boolean;
|
|
11527
11629
|
}[];
|
|
11528
|
-
temporaryRecipients: {
|
|
11529
|
-
email: string | null;
|
|
11530
|
-
}[];
|
|
11531
11630
|
} | null;
|
|
11532
11631
|
mailIntegrityDraft: {
|
|
11533
11632
|
id: string;
|
|
@@ -11536,6 +11635,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11536
11635
|
} | null;
|
|
11537
11636
|
hashKey: string;
|
|
11538
11637
|
hash: string;
|
|
11638
|
+
temporaryRecipients: {
|
|
11639
|
+
email: string | null;
|
|
11640
|
+
}[];
|
|
11539
11641
|
recipients: {
|
|
11540
11642
|
id: string;
|
|
11541
11643
|
lastname: string;
|
|
@@ -11543,9 +11645,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11543
11645
|
avatar: string | null;
|
|
11544
11646
|
isSearchable: boolean;
|
|
11545
11647
|
}[];
|
|
11546
|
-
temporaryRecipients: {
|
|
11547
|
-
email: string | null;
|
|
11548
|
-
}[];
|
|
11549
11648
|
} | null;
|
|
11550
11649
|
sender: {
|
|
11551
11650
|
id: string;
|
|
@@ -11554,11 +11653,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11554
11653
|
avatar: string | null;
|
|
11555
11654
|
isSearchable: boolean;
|
|
11556
11655
|
};
|
|
11557
|
-
files: {
|
|
11558
|
-
fileId: string;
|
|
11559
|
-
filename: string;
|
|
11560
|
-
fileKey: string;
|
|
11561
|
-
}[];
|
|
11562
11656
|
};
|
|
11563
11657
|
}, unknown>>;
|
|
11564
11658
|
};
|
|
@@ -11803,6 +11897,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11803
11897
|
body: string;
|
|
11804
11898
|
openedAt: Date | null;
|
|
11805
11899
|
} & {
|
|
11900
|
+
data: {
|
|
11901
|
+
dataId: string;
|
|
11902
|
+
dataKey: string;
|
|
11903
|
+
dataName: string;
|
|
11904
|
+
}[];
|
|
11806
11905
|
mailIntegrity: {
|
|
11807
11906
|
id: string;
|
|
11808
11907
|
replyTo: {
|
|
@@ -11810,6 +11909,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11810
11909
|
} | null;
|
|
11811
11910
|
hashKey: string;
|
|
11812
11911
|
hash: string;
|
|
11912
|
+
temporaryRecipients: {
|
|
11913
|
+
email: string | null;
|
|
11914
|
+
}[];
|
|
11813
11915
|
recipients: {
|
|
11814
11916
|
id: string;
|
|
11815
11917
|
lastname: string;
|
|
@@ -11817,9 +11919,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11817
11919
|
avatar: string | null;
|
|
11818
11920
|
isSearchable: boolean;
|
|
11819
11921
|
}[];
|
|
11820
|
-
temporaryRecipients: {
|
|
11821
|
-
email: string | null;
|
|
11822
|
-
}[];
|
|
11823
11922
|
} | null;
|
|
11824
11923
|
mailIntegrityDraft: {
|
|
11825
11924
|
id: string;
|
|
@@ -11828,6 +11927,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11828
11927
|
} | null;
|
|
11829
11928
|
hashKey: string;
|
|
11830
11929
|
hash: string;
|
|
11930
|
+
temporaryRecipients: {
|
|
11931
|
+
email: string | null;
|
|
11932
|
+
}[];
|
|
11831
11933
|
recipients: {
|
|
11832
11934
|
id: string;
|
|
11833
11935
|
lastname: string;
|
|
@@ -11835,9 +11937,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11835
11937
|
avatar: string | null;
|
|
11836
11938
|
isSearchable: boolean;
|
|
11837
11939
|
}[];
|
|
11838
|
-
temporaryRecipients: {
|
|
11839
|
-
email: string | null;
|
|
11840
|
-
}[];
|
|
11841
11940
|
} | null;
|
|
11842
11941
|
sender: {
|
|
11843
11942
|
id: string;
|
|
@@ -11846,11 +11945,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11846
11945
|
avatar: string | null;
|
|
11847
11946
|
isSearchable: boolean;
|
|
11848
11947
|
};
|
|
11849
|
-
files: {
|
|
11850
|
-
fileId: string;
|
|
11851
|
-
filename: string;
|
|
11852
|
-
fileKey: string;
|
|
11853
|
-
}[];
|
|
11854
11948
|
})[];
|
|
11855
11949
|
_output_out: ({
|
|
11856
11950
|
id: string;
|
|
@@ -11861,6 +11955,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11861
11955
|
body: string;
|
|
11862
11956
|
openedAt: Date | null;
|
|
11863
11957
|
} & {
|
|
11958
|
+
data: {
|
|
11959
|
+
dataId: string;
|
|
11960
|
+
dataKey: string;
|
|
11961
|
+
dataName: string;
|
|
11962
|
+
}[];
|
|
11864
11963
|
mailIntegrity: {
|
|
11865
11964
|
id: string;
|
|
11866
11965
|
replyTo: {
|
|
@@ -11868,6 +11967,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11868
11967
|
} | null;
|
|
11869
11968
|
hashKey: string;
|
|
11870
11969
|
hash: string;
|
|
11970
|
+
temporaryRecipients: {
|
|
11971
|
+
email: string | null;
|
|
11972
|
+
}[];
|
|
11871
11973
|
recipients: {
|
|
11872
11974
|
id: string;
|
|
11873
11975
|
lastname: string;
|
|
@@ -11875,9 +11977,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11875
11977
|
avatar: string | null;
|
|
11876
11978
|
isSearchable: boolean;
|
|
11877
11979
|
}[];
|
|
11878
|
-
temporaryRecipients: {
|
|
11879
|
-
email: string | null;
|
|
11880
|
-
}[];
|
|
11881
11980
|
} | null;
|
|
11882
11981
|
mailIntegrityDraft: {
|
|
11883
11982
|
id: string;
|
|
@@ -11886,6 +11985,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11886
11985
|
} | null;
|
|
11887
11986
|
hashKey: string;
|
|
11888
11987
|
hash: string;
|
|
11988
|
+
temporaryRecipients: {
|
|
11989
|
+
email: string | null;
|
|
11990
|
+
}[];
|
|
11889
11991
|
recipients: {
|
|
11890
11992
|
id: string;
|
|
11891
11993
|
lastname: string;
|
|
@@ -11893,9 +11995,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11893
11995
|
avatar: string | null;
|
|
11894
11996
|
isSearchable: boolean;
|
|
11895
11997
|
}[];
|
|
11896
|
-
temporaryRecipients: {
|
|
11897
|
-
email: string | null;
|
|
11898
|
-
}[];
|
|
11899
11998
|
} | null;
|
|
11900
11999
|
sender: {
|
|
11901
12000
|
id: string;
|
|
@@ -11904,11 +12003,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11904
12003
|
avatar: string | null;
|
|
11905
12004
|
isSearchable: boolean;
|
|
11906
12005
|
};
|
|
11907
|
-
files: {
|
|
11908
|
-
fileId: string;
|
|
11909
|
-
filename: string;
|
|
11910
|
-
fileKey: string;
|
|
11911
|
-
}[];
|
|
11912
12006
|
})[];
|
|
11913
12007
|
}, unknown>>;
|
|
11914
12008
|
};
|
|
@@ -11969,6 +12063,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11969
12063
|
body: string;
|
|
11970
12064
|
openedAt: Date | null;
|
|
11971
12065
|
} & {
|
|
12066
|
+
data: {
|
|
12067
|
+
dataId: string;
|
|
12068
|
+
dataKey: string;
|
|
12069
|
+
dataName: string;
|
|
12070
|
+
}[];
|
|
11972
12071
|
mailIntegrity: {
|
|
11973
12072
|
id: string;
|
|
11974
12073
|
replyTo: {
|
|
@@ -11976,6 +12075,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11976
12075
|
} | null;
|
|
11977
12076
|
hashKey: string;
|
|
11978
12077
|
hash: string;
|
|
12078
|
+
temporaryRecipients: {
|
|
12079
|
+
email: string | null;
|
|
12080
|
+
}[];
|
|
11979
12081
|
recipients: {
|
|
11980
12082
|
id: string;
|
|
11981
12083
|
lastname: string;
|
|
@@ -11983,9 +12085,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11983
12085
|
avatar: string | null;
|
|
11984
12086
|
isSearchable: boolean;
|
|
11985
12087
|
}[];
|
|
11986
|
-
temporaryRecipients: {
|
|
11987
|
-
email: string | null;
|
|
11988
|
-
}[];
|
|
11989
12088
|
} | null;
|
|
11990
12089
|
mailIntegrityDraft: {
|
|
11991
12090
|
id: string;
|
|
@@ -11994,6 +12093,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
11994
12093
|
} | null;
|
|
11995
12094
|
hashKey: string;
|
|
11996
12095
|
hash: string;
|
|
12096
|
+
temporaryRecipients: {
|
|
12097
|
+
email: string | null;
|
|
12098
|
+
}[];
|
|
11997
12099
|
recipients: {
|
|
11998
12100
|
id: string;
|
|
11999
12101
|
lastname: string;
|
|
@@ -12001,9 +12103,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12001
12103
|
avatar: string | null;
|
|
12002
12104
|
isSearchable: boolean;
|
|
12003
12105
|
}[];
|
|
12004
|
-
temporaryRecipients: {
|
|
12005
|
-
email: string | null;
|
|
12006
|
-
}[];
|
|
12007
12106
|
} | null;
|
|
12008
12107
|
sender: {
|
|
12009
12108
|
id: string;
|
|
@@ -12012,11 +12111,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12012
12111
|
avatar: string | null;
|
|
12013
12112
|
isSearchable: boolean;
|
|
12014
12113
|
};
|
|
12015
|
-
files: {
|
|
12016
|
-
fileId: string;
|
|
12017
|
-
filename: string;
|
|
12018
|
-
fileKey: string;
|
|
12019
|
-
}[];
|
|
12020
12114
|
})[];
|
|
12021
12115
|
_output_out: ({
|
|
12022
12116
|
id: string;
|
|
@@ -12027,6 +12121,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12027
12121
|
body: string;
|
|
12028
12122
|
openedAt: Date | null;
|
|
12029
12123
|
} & {
|
|
12124
|
+
data: {
|
|
12125
|
+
dataId: string;
|
|
12126
|
+
dataKey: string;
|
|
12127
|
+
dataName: string;
|
|
12128
|
+
}[];
|
|
12030
12129
|
mailIntegrity: {
|
|
12031
12130
|
id: string;
|
|
12032
12131
|
replyTo: {
|
|
@@ -12034,6 +12133,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12034
12133
|
} | null;
|
|
12035
12134
|
hashKey: string;
|
|
12036
12135
|
hash: string;
|
|
12136
|
+
temporaryRecipients: {
|
|
12137
|
+
email: string | null;
|
|
12138
|
+
}[];
|
|
12037
12139
|
recipients: {
|
|
12038
12140
|
id: string;
|
|
12039
12141
|
lastname: string;
|
|
@@ -12041,9 +12143,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12041
12143
|
avatar: string | null;
|
|
12042
12144
|
isSearchable: boolean;
|
|
12043
12145
|
}[];
|
|
12044
|
-
temporaryRecipients: {
|
|
12045
|
-
email: string | null;
|
|
12046
|
-
}[];
|
|
12047
12146
|
} | null;
|
|
12048
12147
|
mailIntegrityDraft: {
|
|
12049
12148
|
id: string;
|
|
@@ -12052,6 +12151,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12052
12151
|
} | null;
|
|
12053
12152
|
hashKey: string;
|
|
12054
12153
|
hash: string;
|
|
12154
|
+
temporaryRecipients: {
|
|
12155
|
+
email: string | null;
|
|
12156
|
+
}[];
|
|
12055
12157
|
recipients: {
|
|
12056
12158
|
id: string;
|
|
12057
12159
|
lastname: string;
|
|
@@ -12059,9 +12161,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12059
12161
|
avatar: string | null;
|
|
12060
12162
|
isSearchable: boolean;
|
|
12061
12163
|
}[];
|
|
12062
|
-
temporaryRecipients: {
|
|
12063
|
-
email: string | null;
|
|
12064
|
-
}[];
|
|
12065
12164
|
} | null;
|
|
12066
12165
|
sender: {
|
|
12067
12166
|
id: string;
|
|
@@ -12070,11 +12169,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12070
12169
|
avatar: string | null;
|
|
12071
12170
|
isSearchable: boolean;
|
|
12072
12171
|
};
|
|
12073
|
-
files: {
|
|
12074
|
-
fileId: string;
|
|
12075
|
-
filename: string;
|
|
12076
|
-
fileKey: string;
|
|
12077
|
-
}[];
|
|
12078
12172
|
})[];
|
|
12079
12173
|
}, unknown>>;
|
|
12080
12174
|
};
|
|
@@ -12251,6 +12345,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12251
12345
|
body: string;
|
|
12252
12346
|
openedAt: Date | null;
|
|
12253
12347
|
} & {
|
|
12348
|
+
data: {
|
|
12349
|
+
dataId: string;
|
|
12350
|
+
dataKey: string;
|
|
12351
|
+
dataName: string;
|
|
12352
|
+
}[];
|
|
12254
12353
|
mailIntegrity: {
|
|
12255
12354
|
id: string;
|
|
12256
12355
|
replyTo: {
|
|
@@ -12258,6 +12357,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12258
12357
|
} | null;
|
|
12259
12358
|
hashKey: string;
|
|
12260
12359
|
hash: string;
|
|
12360
|
+
temporaryRecipients: {
|
|
12361
|
+
email: string | null;
|
|
12362
|
+
}[];
|
|
12261
12363
|
recipients: {
|
|
12262
12364
|
id: string;
|
|
12263
12365
|
lastname: string;
|
|
@@ -12265,9 +12367,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12265
12367
|
avatar: string | null;
|
|
12266
12368
|
isSearchable: boolean;
|
|
12267
12369
|
}[];
|
|
12268
|
-
temporaryRecipients: {
|
|
12269
|
-
email: string | null;
|
|
12270
|
-
}[];
|
|
12271
12370
|
} | null;
|
|
12272
12371
|
mailIntegrityDraft: {
|
|
12273
12372
|
id: string;
|
|
@@ -12276,6 +12375,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12276
12375
|
} | null;
|
|
12277
12376
|
hashKey: string;
|
|
12278
12377
|
hash: string;
|
|
12378
|
+
temporaryRecipients: {
|
|
12379
|
+
email: string | null;
|
|
12380
|
+
}[];
|
|
12279
12381
|
recipients: {
|
|
12280
12382
|
id: string;
|
|
12281
12383
|
lastname: string;
|
|
@@ -12283,9 +12385,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12283
12385
|
avatar: string | null;
|
|
12284
12386
|
isSearchable: boolean;
|
|
12285
12387
|
}[];
|
|
12286
|
-
temporaryRecipients: {
|
|
12287
|
-
email: string | null;
|
|
12288
|
-
}[];
|
|
12289
12388
|
} | null;
|
|
12290
12389
|
sender: {
|
|
12291
12390
|
id: string;
|
|
@@ -12294,11 +12393,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12294
12393
|
avatar: string | null;
|
|
12295
12394
|
isSearchable: boolean;
|
|
12296
12395
|
};
|
|
12297
|
-
files: {
|
|
12298
|
-
fileId: string;
|
|
12299
|
-
filename: string;
|
|
12300
|
-
fileKey: string;
|
|
12301
|
-
}[];
|
|
12302
12396
|
})[];
|
|
12303
12397
|
_output_out: ({
|
|
12304
12398
|
id: string;
|
|
@@ -12309,6 +12403,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12309
12403
|
body: string;
|
|
12310
12404
|
openedAt: Date | null;
|
|
12311
12405
|
} & {
|
|
12406
|
+
data: {
|
|
12407
|
+
dataId: string;
|
|
12408
|
+
dataKey: string;
|
|
12409
|
+
dataName: string;
|
|
12410
|
+
}[];
|
|
12312
12411
|
mailIntegrity: {
|
|
12313
12412
|
id: string;
|
|
12314
12413
|
replyTo: {
|
|
@@ -12316,6 +12415,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12316
12415
|
} | null;
|
|
12317
12416
|
hashKey: string;
|
|
12318
12417
|
hash: string;
|
|
12418
|
+
temporaryRecipients: {
|
|
12419
|
+
email: string | null;
|
|
12420
|
+
}[];
|
|
12319
12421
|
recipients: {
|
|
12320
12422
|
id: string;
|
|
12321
12423
|
lastname: string;
|
|
@@ -12323,9 +12425,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12323
12425
|
avatar: string | null;
|
|
12324
12426
|
isSearchable: boolean;
|
|
12325
12427
|
}[];
|
|
12326
|
-
temporaryRecipients: {
|
|
12327
|
-
email: string | null;
|
|
12328
|
-
}[];
|
|
12329
12428
|
} | null;
|
|
12330
12429
|
mailIntegrityDraft: {
|
|
12331
12430
|
id: string;
|
|
@@ -12334,6 +12433,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12334
12433
|
} | null;
|
|
12335
12434
|
hashKey: string;
|
|
12336
12435
|
hash: string;
|
|
12436
|
+
temporaryRecipients: {
|
|
12437
|
+
email: string | null;
|
|
12438
|
+
}[];
|
|
12337
12439
|
recipients: {
|
|
12338
12440
|
id: string;
|
|
12339
12441
|
lastname: string;
|
|
@@ -12341,9 +12443,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12341
12443
|
avatar: string | null;
|
|
12342
12444
|
isSearchable: boolean;
|
|
12343
12445
|
}[];
|
|
12344
|
-
temporaryRecipients: {
|
|
12345
|
-
email: string | null;
|
|
12346
|
-
}[];
|
|
12347
12446
|
} | null;
|
|
12348
12447
|
sender: {
|
|
12349
12448
|
id: string;
|
|
@@ -12352,11 +12451,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12352
12451
|
avatar: string | null;
|
|
12353
12452
|
isSearchable: boolean;
|
|
12354
12453
|
};
|
|
12355
|
-
files: {
|
|
12356
|
-
fileId: string;
|
|
12357
|
-
filename: string;
|
|
12358
|
-
fileKey: string;
|
|
12359
|
-
}[];
|
|
12360
12454
|
})[];
|
|
12361
12455
|
}, unknown>>;
|
|
12362
12456
|
};
|
|
@@ -12545,34 +12639,34 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12545
12639
|
_input_in: {
|
|
12546
12640
|
id: string;
|
|
12547
12641
|
customMessage: string | null;
|
|
12642
|
+
temporaryRecipients: string[];
|
|
12548
12643
|
recipients: ({
|
|
12549
12644
|
subject: string;
|
|
12550
12645
|
body: string;
|
|
12551
12646
|
} & {
|
|
12552
|
-
|
|
12553
|
-
files: {
|
|
12647
|
+
data: {
|
|
12554
12648
|
id: string;
|
|
12555
|
-
|
|
12556
|
-
|
|
12649
|
+
dataKey: string;
|
|
12650
|
+
dataName: string;
|
|
12557
12651
|
}[];
|
|
12652
|
+
recipientId: string;
|
|
12558
12653
|
})[];
|
|
12559
|
-
temporaryRecipients: string[];
|
|
12560
12654
|
};
|
|
12561
12655
|
_input_out: {
|
|
12562
12656
|
id: string;
|
|
12563
12657
|
customMessage: string | null;
|
|
12658
|
+
temporaryRecipients: string[];
|
|
12564
12659
|
recipients: ({
|
|
12565
12660
|
subject: string;
|
|
12566
12661
|
body: string;
|
|
12567
12662
|
} & {
|
|
12568
|
-
|
|
12569
|
-
files: {
|
|
12663
|
+
data: {
|
|
12570
12664
|
id: string;
|
|
12571
|
-
|
|
12572
|
-
|
|
12665
|
+
dataKey: string;
|
|
12666
|
+
dataName: string;
|
|
12573
12667
|
}[];
|
|
12668
|
+
recipientId: string;
|
|
12574
12669
|
})[];
|
|
12575
|
-
temporaryRecipients: string[];
|
|
12576
12670
|
};
|
|
12577
12671
|
_output_in: {
|
|
12578
12672
|
isSent: boolean;
|
|
@@ -12634,12 +12728,12 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12634
12728
|
subject: string;
|
|
12635
12729
|
body: string;
|
|
12636
12730
|
} & {
|
|
12637
|
-
|
|
12638
|
-
files: {
|
|
12731
|
+
data: {
|
|
12639
12732
|
id: string;
|
|
12640
|
-
|
|
12641
|
-
|
|
12733
|
+
dataKey: string;
|
|
12734
|
+
dataName: string;
|
|
12642
12735
|
}[];
|
|
12736
|
+
recipientId: string;
|
|
12643
12737
|
};
|
|
12644
12738
|
};
|
|
12645
12739
|
_input_out: {
|
|
@@ -12648,12 +12742,12 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12648
12742
|
subject: string;
|
|
12649
12743
|
body: string;
|
|
12650
12744
|
} & {
|
|
12651
|
-
|
|
12652
|
-
files: {
|
|
12745
|
+
data: {
|
|
12653
12746
|
id: string;
|
|
12654
|
-
|
|
12655
|
-
|
|
12747
|
+
dataKey: string;
|
|
12748
|
+
dataName: string;
|
|
12656
12749
|
}[];
|
|
12750
|
+
recipientId: string;
|
|
12657
12751
|
};
|
|
12658
12752
|
};
|
|
12659
12753
|
_output_in: {
|
|
@@ -12721,6 +12815,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12721
12815
|
body: string;
|
|
12722
12816
|
openedAt: Date | null;
|
|
12723
12817
|
} & {
|
|
12818
|
+
data: {
|
|
12819
|
+
dataId: string;
|
|
12820
|
+
dataKey: string;
|
|
12821
|
+
dataName: string;
|
|
12822
|
+
}[];
|
|
12724
12823
|
mailIntegrity: {
|
|
12725
12824
|
id: string;
|
|
12726
12825
|
replyTo: {
|
|
@@ -12728,6 +12827,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12728
12827
|
} | null;
|
|
12729
12828
|
hashKey: string;
|
|
12730
12829
|
hash: string;
|
|
12830
|
+
temporaryRecipients: {
|
|
12831
|
+
email: string | null;
|
|
12832
|
+
}[];
|
|
12731
12833
|
recipients: {
|
|
12732
12834
|
id: string;
|
|
12733
12835
|
lastname: string;
|
|
@@ -12735,9 +12837,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12735
12837
|
avatar: string | null;
|
|
12736
12838
|
isSearchable: boolean;
|
|
12737
12839
|
}[];
|
|
12738
|
-
temporaryRecipients: {
|
|
12739
|
-
email: string | null;
|
|
12740
|
-
}[];
|
|
12741
12840
|
} | null;
|
|
12742
12841
|
mailIntegrityDraft: {
|
|
12743
12842
|
id: string;
|
|
@@ -12746,6 +12845,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12746
12845
|
} | null;
|
|
12747
12846
|
hashKey: string;
|
|
12748
12847
|
hash: string;
|
|
12848
|
+
temporaryRecipients: {
|
|
12849
|
+
email: string | null;
|
|
12850
|
+
}[];
|
|
12749
12851
|
recipients: {
|
|
12750
12852
|
id: string;
|
|
12751
12853
|
lastname: string;
|
|
@@ -12753,9 +12855,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12753
12855
|
avatar: string | null;
|
|
12754
12856
|
isSearchable: boolean;
|
|
12755
12857
|
}[];
|
|
12756
|
-
temporaryRecipients: {
|
|
12757
|
-
email: string | null;
|
|
12758
|
-
}[];
|
|
12759
12858
|
} | null;
|
|
12760
12859
|
sender: {
|
|
12761
12860
|
id: string;
|
|
@@ -12764,11 +12863,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12764
12863
|
avatar: string | null;
|
|
12765
12864
|
isSearchable: boolean;
|
|
12766
12865
|
};
|
|
12767
|
-
files: {
|
|
12768
|
-
fileId: string;
|
|
12769
|
-
filename: string;
|
|
12770
|
-
fileKey: string;
|
|
12771
|
-
}[];
|
|
12772
12866
|
})[];
|
|
12773
12867
|
_output_out: ({
|
|
12774
12868
|
id: string;
|
|
@@ -12779,6 +12873,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12779
12873
|
body: string;
|
|
12780
12874
|
openedAt: Date | null;
|
|
12781
12875
|
} & {
|
|
12876
|
+
data: {
|
|
12877
|
+
dataId: string;
|
|
12878
|
+
dataKey: string;
|
|
12879
|
+
dataName: string;
|
|
12880
|
+
}[];
|
|
12782
12881
|
mailIntegrity: {
|
|
12783
12882
|
id: string;
|
|
12784
12883
|
replyTo: {
|
|
@@ -12786,6 +12885,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12786
12885
|
} | null;
|
|
12787
12886
|
hashKey: string;
|
|
12788
12887
|
hash: string;
|
|
12888
|
+
temporaryRecipients: {
|
|
12889
|
+
email: string | null;
|
|
12890
|
+
}[];
|
|
12789
12891
|
recipients: {
|
|
12790
12892
|
id: string;
|
|
12791
12893
|
lastname: string;
|
|
@@ -12793,9 +12895,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12793
12895
|
avatar: string | null;
|
|
12794
12896
|
isSearchable: boolean;
|
|
12795
12897
|
}[];
|
|
12796
|
-
temporaryRecipients: {
|
|
12797
|
-
email: string | null;
|
|
12798
|
-
}[];
|
|
12799
12898
|
} | null;
|
|
12800
12899
|
mailIntegrityDraft: {
|
|
12801
12900
|
id: string;
|
|
@@ -12804,6 +12903,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12804
12903
|
} | null;
|
|
12805
12904
|
hashKey: string;
|
|
12806
12905
|
hash: string;
|
|
12906
|
+
temporaryRecipients: {
|
|
12907
|
+
email: string | null;
|
|
12908
|
+
}[];
|
|
12807
12909
|
recipients: {
|
|
12808
12910
|
id: string;
|
|
12809
12911
|
lastname: string;
|
|
@@ -12811,9 +12913,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12811
12913
|
avatar: string | null;
|
|
12812
12914
|
isSearchable: boolean;
|
|
12813
12915
|
}[];
|
|
12814
|
-
temporaryRecipients: {
|
|
12815
|
-
email: string | null;
|
|
12816
|
-
}[];
|
|
12817
12916
|
} | null;
|
|
12818
12917
|
sender: {
|
|
12819
12918
|
id: string;
|
|
@@ -12822,11 +12921,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12822
12921
|
avatar: string | null;
|
|
12823
12922
|
isSearchable: boolean;
|
|
12824
12923
|
};
|
|
12825
|
-
files: {
|
|
12826
|
-
fileId: string;
|
|
12827
|
-
filename: string;
|
|
12828
|
-
fileKey: string;
|
|
12829
|
-
}[];
|
|
12830
12924
|
})[];
|
|
12831
12925
|
}, unknown>>;
|
|
12832
12926
|
};
|
|
@@ -13025,6 +13119,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13025
13119
|
body: string;
|
|
13026
13120
|
openedAt: Date | null;
|
|
13027
13121
|
} & {
|
|
13122
|
+
data: {
|
|
13123
|
+
dataId: string;
|
|
13124
|
+
dataKey: string;
|
|
13125
|
+
dataName: string;
|
|
13126
|
+
}[];
|
|
13028
13127
|
mailIntegrity: {
|
|
13029
13128
|
id: string;
|
|
13030
13129
|
replyTo: {
|
|
@@ -13032,6 +13131,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13032
13131
|
} | null;
|
|
13033
13132
|
hashKey: string;
|
|
13034
13133
|
hash: string;
|
|
13134
|
+
temporaryRecipients: {
|
|
13135
|
+
email: string | null;
|
|
13136
|
+
}[];
|
|
13035
13137
|
recipients: {
|
|
13036
13138
|
id: string;
|
|
13037
13139
|
lastname: string;
|
|
@@ -13039,9 +13141,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13039
13141
|
avatar: string | null;
|
|
13040
13142
|
isSearchable: boolean;
|
|
13041
13143
|
}[];
|
|
13042
|
-
temporaryRecipients: {
|
|
13043
|
-
email: string | null;
|
|
13044
|
-
}[];
|
|
13045
13144
|
} | null;
|
|
13046
13145
|
mailIntegrityDraft: {
|
|
13047
13146
|
id: string;
|
|
@@ -13050,6 +13149,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13050
13149
|
} | null;
|
|
13051
13150
|
hashKey: string;
|
|
13052
13151
|
hash: string;
|
|
13152
|
+
temporaryRecipients: {
|
|
13153
|
+
email: string | null;
|
|
13154
|
+
}[];
|
|
13053
13155
|
recipients: {
|
|
13054
13156
|
id: string;
|
|
13055
13157
|
lastname: string;
|
|
@@ -13057,9 +13159,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13057
13159
|
avatar: string | null;
|
|
13058
13160
|
isSearchable: boolean;
|
|
13059
13161
|
}[];
|
|
13060
|
-
temporaryRecipients: {
|
|
13061
|
-
email: string | null;
|
|
13062
|
-
}[];
|
|
13063
13162
|
} | null;
|
|
13064
13163
|
sender: {
|
|
13065
13164
|
id: string;
|
|
@@ -13068,11 +13167,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13068
13167
|
avatar: string | null;
|
|
13069
13168
|
isSearchable: boolean;
|
|
13070
13169
|
};
|
|
13071
|
-
files: {
|
|
13072
|
-
fileId: string;
|
|
13073
|
-
filename: string;
|
|
13074
|
-
fileKey: string;
|
|
13075
|
-
}[];
|
|
13076
13170
|
};
|
|
13077
13171
|
_output_out: {
|
|
13078
13172
|
id: string;
|
|
@@ -13083,6 +13177,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13083
13177
|
body: string;
|
|
13084
13178
|
openedAt: Date | null;
|
|
13085
13179
|
} & {
|
|
13180
|
+
data: {
|
|
13181
|
+
dataId: string;
|
|
13182
|
+
dataKey: string;
|
|
13183
|
+
dataName: string;
|
|
13184
|
+
}[];
|
|
13086
13185
|
mailIntegrity: {
|
|
13087
13186
|
id: string;
|
|
13088
13187
|
replyTo: {
|
|
@@ -13090,6 +13189,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13090
13189
|
} | null;
|
|
13091
13190
|
hashKey: string;
|
|
13092
13191
|
hash: string;
|
|
13192
|
+
temporaryRecipients: {
|
|
13193
|
+
email: string | null;
|
|
13194
|
+
}[];
|
|
13093
13195
|
recipients: {
|
|
13094
13196
|
id: string;
|
|
13095
13197
|
lastname: string;
|
|
@@ -13097,9 +13199,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13097
13199
|
avatar: string | null;
|
|
13098
13200
|
isSearchable: boolean;
|
|
13099
13201
|
}[];
|
|
13100
|
-
temporaryRecipients: {
|
|
13101
|
-
email: string | null;
|
|
13102
|
-
}[];
|
|
13103
13202
|
} | null;
|
|
13104
13203
|
mailIntegrityDraft: {
|
|
13105
13204
|
id: string;
|
|
@@ -13108,6 +13207,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13108
13207
|
} | null;
|
|
13109
13208
|
hashKey: string;
|
|
13110
13209
|
hash: string;
|
|
13210
|
+
temporaryRecipients: {
|
|
13211
|
+
email: string | null;
|
|
13212
|
+
}[];
|
|
13111
13213
|
recipients: {
|
|
13112
13214
|
id: string;
|
|
13113
13215
|
lastname: string;
|
|
@@ -13115,9 +13217,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13115
13217
|
avatar: string | null;
|
|
13116
13218
|
isSearchable: boolean;
|
|
13117
13219
|
}[];
|
|
13118
|
-
temporaryRecipients: {
|
|
13119
|
-
email: string | null;
|
|
13120
|
-
}[];
|
|
13121
13220
|
} | null;
|
|
13122
13221
|
sender: {
|
|
13123
13222
|
id: string;
|
|
@@ -13126,11 +13225,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13126
13225
|
avatar: string | null;
|
|
13127
13226
|
isSearchable: boolean;
|
|
13128
13227
|
};
|
|
13129
|
-
files: {
|
|
13130
|
-
fileId: string;
|
|
13131
|
-
filename: string;
|
|
13132
|
-
fileKey: string;
|
|
13133
|
-
}[];
|
|
13134
13228
|
};
|
|
13135
13229
|
}, unknown>>;
|
|
13136
13230
|
};
|
|
@@ -13191,6 +13285,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13191
13285
|
isSearchable: boolean;
|
|
13192
13286
|
};
|
|
13193
13287
|
date: Date;
|
|
13288
|
+
temporaryRecipients: {
|
|
13289
|
+
email: string | null;
|
|
13290
|
+
id: string;
|
|
13291
|
+
phone: string | null;
|
|
13292
|
+
}[];
|
|
13194
13293
|
recipients: {
|
|
13195
13294
|
id: string;
|
|
13196
13295
|
lastname: string;
|
|
@@ -13198,11 +13297,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13198
13297
|
avatar: string | null;
|
|
13199
13298
|
isSearchable: boolean;
|
|
13200
13299
|
}[];
|
|
13201
|
-
temporaryRecipients: {
|
|
13202
|
-
email: string | null;
|
|
13203
|
-
id: string;
|
|
13204
|
-
phone: string | null;
|
|
13205
|
-
}[];
|
|
13206
13300
|
attachmentsCount: number;
|
|
13207
13301
|
}[];
|
|
13208
13302
|
_output_out: {
|
|
@@ -13214,6 +13308,11 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13214
13308
|
isSearchable: boolean;
|
|
13215
13309
|
};
|
|
13216
13310
|
date: Date;
|
|
13311
|
+
temporaryRecipients: {
|
|
13312
|
+
email: string | null;
|
|
13313
|
+
id: string;
|
|
13314
|
+
phone: string | null;
|
|
13315
|
+
}[];
|
|
13217
13316
|
recipients: {
|
|
13218
13317
|
id: string;
|
|
13219
13318
|
lastname: string;
|
|
@@ -13221,11 +13320,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13221
13320
|
avatar: string | null;
|
|
13222
13321
|
isSearchable: boolean;
|
|
13223
13322
|
}[];
|
|
13224
|
-
temporaryRecipients: {
|
|
13225
|
-
email: string | null;
|
|
13226
|
-
id: string;
|
|
13227
|
-
phone: string | null;
|
|
13228
|
-
}[];
|
|
13229
13323
|
attachmentsCount: number;
|
|
13230
13324
|
}[];
|
|
13231
13325
|
}, unknown>>;
|
|
@@ -13561,28 +13655,28 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13561
13655
|
quotas: {
|
|
13562
13656
|
uploadCount: bigint | null;
|
|
13563
13657
|
downloadCount: bigint | null;
|
|
13564
|
-
|
|
13658
|
+
totalDataCount: bigint | null;
|
|
13565
13659
|
totalStorageSize: bigint | null;
|
|
13566
|
-
|
|
13660
|
+
perDataSize: bigint | null;
|
|
13567
13661
|
uploadBandwidth: bigint | null;
|
|
13568
13662
|
downloadBandwidth: bigint | null;
|
|
13569
13663
|
} & {
|
|
13570
13664
|
sentMails: {
|
|
13571
13665
|
count: bigint | null;
|
|
13572
|
-
|
|
13573
|
-
|
|
13666
|
+
dataSize: bigint | null;
|
|
13667
|
+
totalDataCount: bigint | null;
|
|
13574
13668
|
totalStorageSize: bigint | null;
|
|
13575
|
-
|
|
13576
|
-
|
|
13669
|
+
dataCount: bigint | null;
|
|
13670
|
+
perDataSize: bigint | null;
|
|
13577
13671
|
totalCount: bigint | null;
|
|
13578
13672
|
};
|
|
13579
13673
|
receivedMails: {
|
|
13580
13674
|
count: bigint | null;
|
|
13581
|
-
|
|
13582
|
-
|
|
13675
|
+
dataSize: bigint | null;
|
|
13676
|
+
totalDataCount: bigint | null;
|
|
13583
13677
|
totalStorageSize: bigint | null;
|
|
13584
|
-
|
|
13585
|
-
|
|
13678
|
+
dataCount: bigint | null;
|
|
13679
|
+
perDataSize: bigint | null;
|
|
13586
13680
|
totalCount: bigint | null;
|
|
13587
13681
|
};
|
|
13588
13682
|
};
|
|
@@ -13601,28 +13695,28 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13601
13695
|
quotas: {
|
|
13602
13696
|
uploadCount: bigint | null;
|
|
13603
13697
|
downloadCount: bigint | null;
|
|
13604
|
-
|
|
13698
|
+
totalDataCount: bigint | null;
|
|
13605
13699
|
totalStorageSize: bigint | null;
|
|
13606
|
-
|
|
13700
|
+
perDataSize: bigint | null;
|
|
13607
13701
|
uploadBandwidth: bigint | null;
|
|
13608
13702
|
downloadBandwidth: bigint | null;
|
|
13609
13703
|
} & {
|
|
13610
13704
|
sentMails: {
|
|
13611
13705
|
count: bigint | null;
|
|
13612
|
-
|
|
13613
|
-
|
|
13706
|
+
dataSize: bigint | null;
|
|
13707
|
+
totalDataCount: bigint | null;
|
|
13614
13708
|
totalStorageSize: bigint | null;
|
|
13615
|
-
|
|
13616
|
-
|
|
13709
|
+
dataCount: bigint | null;
|
|
13710
|
+
perDataSize: bigint | null;
|
|
13617
13711
|
totalCount: bigint | null;
|
|
13618
13712
|
};
|
|
13619
13713
|
receivedMails: {
|
|
13620
13714
|
count: bigint | null;
|
|
13621
|
-
|
|
13622
|
-
|
|
13715
|
+
dataSize: bigint | null;
|
|
13716
|
+
totalDataCount: bigint | null;
|
|
13623
13717
|
totalStorageSize: bigint | null;
|
|
13624
|
-
|
|
13625
|
-
|
|
13718
|
+
dataCount: bigint | null;
|
|
13719
|
+
perDataSize: bigint | null;
|
|
13626
13720
|
totalCount: bigint | null;
|
|
13627
13721
|
};
|
|
13628
13722
|
};
|
|
@@ -15988,9 +16082,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
15988
16082
|
usersBase: bigint | null;
|
|
15989
16083
|
usersUnit: bigint | null;
|
|
15990
16084
|
usersPrice: number | null;
|
|
15991
|
-
|
|
15992
|
-
|
|
15993
|
-
|
|
16085
|
+
perDataSizeBase: bigint | null;
|
|
16086
|
+
perDataSizeUnit: bigint | null;
|
|
16087
|
+
perDataSizePrice: number | null;
|
|
15994
16088
|
bandwidthBase: bigint | null;
|
|
15995
16089
|
bandwidthUnit: bigint | null;
|
|
15996
16090
|
bandwidthPrice: number | null;
|
|
@@ -15999,7 +16093,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
15999
16093
|
totalStorageSizePrice: number | null;
|
|
16000
16094
|
devsMax: bigint | null;
|
|
16001
16095
|
usersMax: bigint | null;
|
|
16002
|
-
|
|
16096
|
+
perDataSizeMax: bigint | null;
|
|
16003
16097
|
bandwidthMax: bigint | null;
|
|
16004
16098
|
totalStorageSizeMax: bigint | null;
|
|
16005
16099
|
};
|
|
@@ -16038,9 +16132,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16038
16132
|
usersBase: bigint | null;
|
|
16039
16133
|
usersUnit: bigint | null;
|
|
16040
16134
|
usersPrice: number | null;
|
|
16041
|
-
|
|
16042
|
-
|
|
16043
|
-
|
|
16135
|
+
perDataSizeBase: bigint | null;
|
|
16136
|
+
perDataSizeUnit: bigint | null;
|
|
16137
|
+
perDataSizePrice: number | null;
|
|
16044
16138
|
bandwidthBase: bigint | null;
|
|
16045
16139
|
bandwidthUnit: bigint | null;
|
|
16046
16140
|
bandwidthPrice: number | null;
|
|
@@ -16049,7 +16143,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16049
16143
|
totalStorageSizePrice: number | null;
|
|
16050
16144
|
devsMax: bigint | null;
|
|
16051
16145
|
usersMax: bigint | null;
|
|
16052
|
-
|
|
16146
|
+
perDataSizeMax: bigint | null;
|
|
16053
16147
|
bandwidthMax: bigint | null;
|
|
16054
16148
|
totalStorageSizeMax: bigint | null;
|
|
16055
16149
|
};
|
|
@@ -16070,9 +16164,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16070
16164
|
usersBase: bigint | null;
|
|
16071
16165
|
usersUnit: bigint | null;
|
|
16072
16166
|
usersPrice: number | null;
|
|
16073
|
-
|
|
16074
|
-
|
|
16075
|
-
|
|
16167
|
+
perDataSizeBase: bigint | null;
|
|
16168
|
+
perDataSizeUnit: bigint | null;
|
|
16169
|
+
perDataSizePrice: number | null;
|
|
16076
16170
|
bandwidthBase: bigint | null;
|
|
16077
16171
|
bandwidthUnit: bigint | null;
|
|
16078
16172
|
bandwidthPrice: number | null;
|
|
@@ -16081,7 +16175,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16081
16175
|
totalStorageSizePrice: number | null;
|
|
16082
16176
|
devsMax: bigint | null;
|
|
16083
16177
|
usersMax: bigint | null;
|
|
16084
|
-
|
|
16178
|
+
perDataSizeMax: bigint | null;
|
|
16085
16179
|
bandwidthMax: bigint | null;
|
|
16086
16180
|
totalStorageSizeMax: bigint | null;
|
|
16087
16181
|
};
|
|
@@ -16120,9 +16214,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16120
16214
|
usersBase: bigint | null;
|
|
16121
16215
|
usersUnit: bigint | null;
|
|
16122
16216
|
usersPrice: number | null;
|
|
16123
|
-
|
|
16124
|
-
|
|
16125
|
-
|
|
16217
|
+
perDataSizeBase: bigint | null;
|
|
16218
|
+
perDataSizeUnit: bigint | null;
|
|
16219
|
+
perDataSizePrice: number | null;
|
|
16126
16220
|
bandwidthBase: bigint | null;
|
|
16127
16221
|
bandwidthUnit: bigint | null;
|
|
16128
16222
|
bandwidthPrice: number | null;
|
|
@@ -16131,7 +16225,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16131
16225
|
totalStorageSizePrice: number | null;
|
|
16132
16226
|
devsMax: bigint | null;
|
|
16133
16227
|
usersMax: bigint | null;
|
|
16134
|
-
|
|
16228
|
+
perDataSizeMax: bigint | null;
|
|
16135
16229
|
bandwidthMax: bigint | null;
|
|
16136
16230
|
totalStorageSizeMax: bigint | null;
|
|
16137
16231
|
};
|
|
@@ -16206,9 +16300,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16206
16300
|
usersBase: bigint | null;
|
|
16207
16301
|
usersUnit: bigint | null;
|
|
16208
16302
|
usersPrice: number | null;
|
|
16209
|
-
|
|
16210
|
-
|
|
16211
|
-
|
|
16303
|
+
perDataSizeBase: bigint | null;
|
|
16304
|
+
perDataSizeUnit: bigint | null;
|
|
16305
|
+
perDataSizePrice: number | null;
|
|
16212
16306
|
bandwidthBase: bigint | null;
|
|
16213
16307
|
bandwidthUnit: bigint | null;
|
|
16214
16308
|
bandwidthPrice: number | null;
|
|
@@ -16217,7 +16311,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16217
16311
|
totalStorageSizePrice: number | null;
|
|
16218
16312
|
devsMax: bigint | null;
|
|
16219
16313
|
usersMax: bigint | null;
|
|
16220
|
-
|
|
16314
|
+
perDataSizeMax: bigint | null;
|
|
16221
16315
|
bandwidthMax: bigint | null;
|
|
16222
16316
|
totalStorageSizeMax: bigint | null;
|
|
16223
16317
|
};
|
|
@@ -16256,9 +16350,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16256
16350
|
usersBase: bigint | null;
|
|
16257
16351
|
usersUnit: bigint | null;
|
|
16258
16352
|
usersPrice: number | null;
|
|
16259
|
-
|
|
16260
|
-
|
|
16261
|
-
|
|
16353
|
+
perDataSizeBase: bigint | null;
|
|
16354
|
+
perDataSizeUnit: bigint | null;
|
|
16355
|
+
perDataSizePrice: number | null;
|
|
16262
16356
|
bandwidthBase: bigint | null;
|
|
16263
16357
|
bandwidthUnit: bigint | null;
|
|
16264
16358
|
bandwidthPrice: number | null;
|
|
@@ -16267,7 +16361,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16267
16361
|
totalStorageSizePrice: number | null;
|
|
16268
16362
|
devsMax: bigint | null;
|
|
16269
16363
|
usersMax: bigint | null;
|
|
16270
|
-
|
|
16364
|
+
perDataSizeMax: bigint | null;
|
|
16271
16365
|
bandwidthMax: bigint | null;
|
|
16272
16366
|
totalStorageSizeMax: bigint | null;
|
|
16273
16367
|
};
|
|
@@ -16288,9 +16382,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16288
16382
|
usersBase: bigint | null;
|
|
16289
16383
|
usersUnit: bigint | null;
|
|
16290
16384
|
usersPrice: number | null;
|
|
16291
|
-
|
|
16292
|
-
|
|
16293
|
-
|
|
16385
|
+
perDataSizeBase: bigint | null;
|
|
16386
|
+
perDataSizeUnit: bigint | null;
|
|
16387
|
+
perDataSizePrice: number | null;
|
|
16294
16388
|
bandwidthBase: bigint | null;
|
|
16295
16389
|
bandwidthUnit: bigint | null;
|
|
16296
16390
|
bandwidthPrice: number | null;
|
|
@@ -16299,7 +16393,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16299
16393
|
totalStorageSizePrice: number | null;
|
|
16300
16394
|
devsMax: bigint | null;
|
|
16301
16395
|
usersMax: bigint | null;
|
|
16302
|
-
|
|
16396
|
+
perDataSizeMax: bigint | null;
|
|
16303
16397
|
bandwidthMax: bigint | null;
|
|
16304
16398
|
totalStorageSizeMax: bigint | null;
|
|
16305
16399
|
};
|
|
@@ -16338,9 +16432,9 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16338
16432
|
usersBase: bigint | null;
|
|
16339
16433
|
usersUnit: bigint | null;
|
|
16340
16434
|
usersPrice: number | null;
|
|
16341
|
-
|
|
16342
|
-
|
|
16343
|
-
|
|
16435
|
+
perDataSizeBase: bigint | null;
|
|
16436
|
+
perDataSizeUnit: bigint | null;
|
|
16437
|
+
perDataSizePrice: number | null;
|
|
16344
16438
|
bandwidthBase: bigint | null;
|
|
16345
16439
|
bandwidthUnit: bigint | null;
|
|
16346
16440
|
bandwidthPrice: number | null;
|
|
@@ -16349,7 +16443,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
16349
16443
|
totalStorageSizePrice: number | null;
|
|
16350
16444
|
devsMax: bigint | null;
|
|
16351
16445
|
usersMax: bigint | null;
|
|
16352
|
-
|
|
16446
|
+
perDataSizeMax: bigint | null;
|
|
16353
16447
|
bandwidthMax: bigint | null;
|
|
16354
16448
|
totalStorageSizeMax: bigint | null;
|
|
16355
16449
|
};
|
|
@@ -17738,6 +17832,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17738
17832
|
_input_in: {} | undefined;
|
|
17739
17833
|
_input_out: {} | undefined;
|
|
17740
17834
|
_output_in: {
|
|
17835
|
+
accountId: string;
|
|
17741
17836
|
userId: string;
|
|
17742
17837
|
id: string;
|
|
17743
17838
|
createdAt: Date;
|
|
@@ -17757,12 +17852,10 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17757
17852
|
ip: string | null;
|
|
17758
17853
|
country: string | null;
|
|
17759
17854
|
city: string | null;
|
|
17760
|
-
name: string;
|
|
17761
|
-
logo: string | null;
|
|
17762
|
-
origin: string[];
|
|
17763
17855
|
}[];
|
|
17764
17856
|
}[];
|
|
17765
17857
|
_output_out: {
|
|
17858
|
+
accountId: string;
|
|
17766
17859
|
userId: string;
|
|
17767
17860
|
id: string;
|
|
17768
17861
|
createdAt: Date;
|
|
@@ -17782,9 +17875,6 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
17782
17875
|
ip: string | null;
|
|
17783
17876
|
country: string | null;
|
|
17784
17877
|
city: string | null;
|
|
17785
|
-
name: string;
|
|
17786
|
-
logo: string | null;
|
|
17787
|
-
origin: string[];
|
|
17788
17878
|
}[];
|
|
17789
17879
|
}[];
|
|
17790
17880
|
}, unknown>>;
|