@secrecy/lib 1.13.1-feat-project-neon-endpoints.2 → 1.13.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/types/cache.d.ts +1 -1
- package/dist/types/client.d.ts +140 -140
- package/package.json +2 -2
package/dist/types/cache.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export declare const nodesCache: Map<string, InternalNode | InternalNodeFull>;
|
|
|
5
5
|
export declare const usersCache: Map<string, {
|
|
6
6
|
id: string;
|
|
7
7
|
lastname: string;
|
|
8
|
-
firstname: string;
|
|
8
|
+
firstname: string | null;
|
|
9
9
|
avatar: string | null;
|
|
10
10
|
isSearchable: boolean;
|
|
11
11
|
}>;
|
package/dist/types/client.d.ts
CHANGED
|
@@ -778,7 +778,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
778
778
|
_output_in: {
|
|
779
779
|
id: string;
|
|
780
780
|
lastname: string;
|
|
781
|
-
firstname: string;
|
|
781
|
+
firstname: string | null;
|
|
782
782
|
avatar: string | null;
|
|
783
783
|
isSearchable: boolean;
|
|
784
784
|
} & {
|
|
@@ -789,7 +789,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
789
789
|
_output_out: {
|
|
790
790
|
id: string;
|
|
791
791
|
lastname: string;
|
|
792
|
-
firstname: string;
|
|
792
|
+
firstname: string | null;
|
|
793
793
|
avatar: string | null;
|
|
794
794
|
isSearchable: boolean;
|
|
795
795
|
} & {
|
|
@@ -1030,7 +1030,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
1030
1030
|
users: {
|
|
1031
1031
|
id: string;
|
|
1032
1032
|
lastname: string;
|
|
1033
|
-
firstname: string;
|
|
1033
|
+
firstname: string | null;
|
|
1034
1034
|
}[];
|
|
1035
1035
|
loginToken: string;
|
|
1036
1036
|
};
|
|
@@ -1038,7 +1038,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
1038
1038
|
users: {
|
|
1039
1039
|
id: string;
|
|
1040
1040
|
lastname: string;
|
|
1041
|
-
firstname: string;
|
|
1041
|
+
firstname: string | null;
|
|
1042
1042
|
}[];
|
|
1043
1043
|
loginToken: string;
|
|
1044
1044
|
};
|
|
@@ -1804,14 +1804,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
1804
1804
|
users: [{
|
|
1805
1805
|
id: string;
|
|
1806
1806
|
lastname: string;
|
|
1807
|
-
firstname: string;
|
|
1807
|
+
firstname: string | null;
|
|
1808
1808
|
avatar: string | null;
|
|
1809
1809
|
isSearchable: boolean;
|
|
1810
1810
|
}, "admin" | "write" | "read"][];
|
|
1811
1811
|
createdBy: {
|
|
1812
1812
|
id: string;
|
|
1813
1813
|
lastname: string;
|
|
1814
|
-
firstname: string;
|
|
1814
|
+
firstname: string | null;
|
|
1815
1815
|
avatar: string | null;
|
|
1816
1816
|
isSearchable: boolean;
|
|
1817
1817
|
};
|
|
@@ -1869,14 +1869,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
1869
1869
|
users: [{
|
|
1870
1870
|
id: string;
|
|
1871
1871
|
lastname: string;
|
|
1872
|
-
firstname: string;
|
|
1872
|
+
firstname: string | null;
|
|
1873
1873
|
avatar: string | null;
|
|
1874
1874
|
isSearchable: boolean;
|
|
1875
1875
|
}, "admin" | "write" | "read"][];
|
|
1876
1876
|
createdBy: {
|
|
1877
1877
|
id: string;
|
|
1878
1878
|
lastname: string;
|
|
1879
|
-
firstname: string;
|
|
1879
|
+
firstname: string | null;
|
|
1880
1880
|
avatar: string | null;
|
|
1881
1881
|
isSearchable: boolean;
|
|
1882
1882
|
};
|
|
@@ -1901,14 +1901,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
1901
1901
|
users: [{
|
|
1902
1902
|
id: string;
|
|
1903
1903
|
lastname: string;
|
|
1904
|
-
firstname: string;
|
|
1904
|
+
firstname: string | null;
|
|
1905
1905
|
avatar: string | null;
|
|
1906
1906
|
isSearchable: boolean;
|
|
1907
1907
|
}, "admin" | "write" | "read"][];
|
|
1908
1908
|
createdBy: {
|
|
1909
1909
|
id: string;
|
|
1910
1910
|
lastname: string;
|
|
1911
|
-
firstname: string;
|
|
1911
|
+
firstname: string | null;
|
|
1912
1912
|
avatar: string | null;
|
|
1913
1913
|
isSearchable: boolean;
|
|
1914
1914
|
};
|
|
@@ -1945,14 +1945,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
1945
1945
|
users: [{
|
|
1946
1946
|
id: string;
|
|
1947
1947
|
lastname: string;
|
|
1948
|
-
firstname: string;
|
|
1948
|
+
firstname: string | null;
|
|
1949
1949
|
avatar: string | null;
|
|
1950
1950
|
isSearchable: boolean;
|
|
1951
1951
|
}, "admin" | "write" | "read"][];
|
|
1952
1952
|
createdBy: {
|
|
1953
1953
|
id: string;
|
|
1954
1954
|
lastname: string;
|
|
1955
|
-
firstname: string;
|
|
1955
|
+
firstname: string | null;
|
|
1956
1956
|
avatar: string | null;
|
|
1957
1957
|
isSearchable: boolean;
|
|
1958
1958
|
};
|
|
@@ -2010,14 +2010,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2010
2010
|
users: [{
|
|
2011
2011
|
id: string;
|
|
2012
2012
|
lastname: string;
|
|
2013
|
-
firstname: string;
|
|
2013
|
+
firstname: string | null;
|
|
2014
2014
|
avatar: string | null;
|
|
2015
2015
|
isSearchable: boolean;
|
|
2016
2016
|
}, "admin" | "write" | "read"][];
|
|
2017
2017
|
createdBy: {
|
|
2018
2018
|
id: string;
|
|
2019
2019
|
lastname: string;
|
|
2020
|
-
firstname: string;
|
|
2020
|
+
firstname: string | null;
|
|
2021
2021
|
avatar: string | null;
|
|
2022
2022
|
isSearchable: boolean;
|
|
2023
2023
|
};
|
|
@@ -2042,14 +2042,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2042
2042
|
users: [{
|
|
2043
2043
|
id: string;
|
|
2044
2044
|
lastname: string;
|
|
2045
|
-
firstname: string;
|
|
2045
|
+
firstname: string | null;
|
|
2046
2046
|
avatar: string | null;
|
|
2047
2047
|
isSearchable: boolean;
|
|
2048
2048
|
}, "admin" | "write" | "read"][];
|
|
2049
2049
|
createdBy: {
|
|
2050
2050
|
id: string;
|
|
2051
2051
|
lastname: string;
|
|
2052
|
-
firstname: string;
|
|
2052
|
+
firstname: string | null;
|
|
2053
2053
|
avatar: string | null;
|
|
2054
2054
|
isSearchable: boolean;
|
|
2055
2055
|
};
|
|
@@ -2524,14 +2524,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2524
2524
|
users: [{
|
|
2525
2525
|
id: string;
|
|
2526
2526
|
lastname: string;
|
|
2527
|
-
firstname: string;
|
|
2527
|
+
firstname: string | null;
|
|
2528
2528
|
avatar: string | null;
|
|
2529
2529
|
isSearchable: boolean;
|
|
2530
2530
|
}, "admin" | "write" | "read"][];
|
|
2531
2531
|
createdBy: {
|
|
2532
2532
|
id: string;
|
|
2533
2533
|
lastname: string;
|
|
2534
|
-
firstname: string;
|
|
2534
|
+
firstname: string | null;
|
|
2535
2535
|
avatar: string | null;
|
|
2536
2536
|
isSearchable: boolean;
|
|
2537
2537
|
};
|
|
@@ -2589,14 +2589,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2589
2589
|
users: [{
|
|
2590
2590
|
id: string;
|
|
2591
2591
|
lastname: string;
|
|
2592
|
-
firstname: string;
|
|
2592
|
+
firstname: string | null;
|
|
2593
2593
|
avatar: string | null;
|
|
2594
2594
|
isSearchable: boolean;
|
|
2595
2595
|
}, "admin" | "write" | "read"][];
|
|
2596
2596
|
createdBy: {
|
|
2597
2597
|
id: string;
|
|
2598
2598
|
lastname: string;
|
|
2599
|
-
firstname: string;
|
|
2599
|
+
firstname: string | null;
|
|
2600
2600
|
avatar: string | null;
|
|
2601
2601
|
isSearchable: boolean;
|
|
2602
2602
|
};
|
|
@@ -2621,14 +2621,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2621
2621
|
users: [{
|
|
2622
2622
|
id: string;
|
|
2623
2623
|
lastname: string;
|
|
2624
|
-
firstname: string;
|
|
2624
|
+
firstname: string | null;
|
|
2625
2625
|
avatar: string | null;
|
|
2626
2626
|
isSearchable: boolean;
|
|
2627
2627
|
}, "admin" | "write" | "read"][];
|
|
2628
2628
|
createdBy: {
|
|
2629
2629
|
id: string;
|
|
2630
2630
|
lastname: string;
|
|
2631
|
-
firstname: string;
|
|
2631
|
+
firstname: string | null;
|
|
2632
2632
|
avatar: string | null;
|
|
2633
2633
|
isSearchable: boolean;
|
|
2634
2634
|
};
|
|
@@ -2665,14 +2665,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2665
2665
|
users: [{
|
|
2666
2666
|
id: string;
|
|
2667
2667
|
lastname: string;
|
|
2668
|
-
firstname: string;
|
|
2668
|
+
firstname: string | null;
|
|
2669
2669
|
avatar: string | null;
|
|
2670
2670
|
isSearchable: boolean;
|
|
2671
2671
|
}, "admin" | "write" | "read"][];
|
|
2672
2672
|
createdBy: {
|
|
2673
2673
|
id: string;
|
|
2674
2674
|
lastname: string;
|
|
2675
|
-
firstname: string;
|
|
2675
|
+
firstname: string | null;
|
|
2676
2676
|
avatar: string | null;
|
|
2677
2677
|
isSearchable: boolean;
|
|
2678
2678
|
};
|
|
@@ -2730,14 +2730,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2730
2730
|
users: [{
|
|
2731
2731
|
id: string;
|
|
2732
2732
|
lastname: string;
|
|
2733
|
-
firstname: string;
|
|
2733
|
+
firstname: string | null;
|
|
2734
2734
|
avatar: string | null;
|
|
2735
2735
|
isSearchable: boolean;
|
|
2736
2736
|
}, "admin" | "write" | "read"][];
|
|
2737
2737
|
createdBy: {
|
|
2738
2738
|
id: string;
|
|
2739
2739
|
lastname: string;
|
|
2740
|
-
firstname: string;
|
|
2740
|
+
firstname: string | null;
|
|
2741
2741
|
avatar: string | null;
|
|
2742
2742
|
isSearchable: boolean;
|
|
2743
2743
|
};
|
|
@@ -2762,14 +2762,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
2762
2762
|
users: [{
|
|
2763
2763
|
id: string;
|
|
2764
2764
|
lastname: string;
|
|
2765
|
-
firstname: string;
|
|
2765
|
+
firstname: string | null;
|
|
2766
2766
|
avatar: string | null;
|
|
2767
2767
|
isSearchable: boolean;
|
|
2768
2768
|
}, "admin" | "write" | "read"][];
|
|
2769
2769
|
createdBy: {
|
|
2770
2770
|
id: string;
|
|
2771
2771
|
lastname: string;
|
|
2772
|
-
firstname: string;
|
|
2772
|
+
firstname: string | null;
|
|
2773
2773
|
avatar: string | null;
|
|
2774
2774
|
isSearchable: boolean;
|
|
2775
2775
|
};
|
|
@@ -3076,14 +3076,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3076
3076
|
users: [{
|
|
3077
3077
|
id: string;
|
|
3078
3078
|
lastname: string;
|
|
3079
|
-
firstname: string;
|
|
3079
|
+
firstname: string | null;
|
|
3080
3080
|
avatar: string | null;
|
|
3081
3081
|
isSearchable: boolean;
|
|
3082
3082
|
}, "admin" | "write" | "read"][];
|
|
3083
3083
|
createdBy: {
|
|
3084
3084
|
id: string;
|
|
3085
3085
|
lastname: string;
|
|
3086
|
-
firstname: string;
|
|
3086
|
+
firstname: string | null;
|
|
3087
3087
|
avatar: string | null;
|
|
3088
3088
|
isSearchable: boolean;
|
|
3089
3089
|
};
|
|
@@ -3141,14 +3141,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3141
3141
|
users: [{
|
|
3142
3142
|
id: string;
|
|
3143
3143
|
lastname: string;
|
|
3144
|
-
firstname: string;
|
|
3144
|
+
firstname: string | null;
|
|
3145
3145
|
avatar: string | null;
|
|
3146
3146
|
isSearchable: boolean;
|
|
3147
3147
|
}, "admin" | "write" | "read"][];
|
|
3148
3148
|
createdBy: {
|
|
3149
3149
|
id: string;
|
|
3150
3150
|
lastname: string;
|
|
3151
|
-
firstname: string;
|
|
3151
|
+
firstname: string | null;
|
|
3152
3152
|
avatar: string | null;
|
|
3153
3153
|
isSearchable: boolean;
|
|
3154
3154
|
};
|
|
@@ -3173,14 +3173,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3173
3173
|
users: [{
|
|
3174
3174
|
id: string;
|
|
3175
3175
|
lastname: string;
|
|
3176
|
-
firstname: string;
|
|
3176
|
+
firstname: string | null;
|
|
3177
3177
|
avatar: string | null;
|
|
3178
3178
|
isSearchable: boolean;
|
|
3179
3179
|
}, "admin" | "write" | "read"][];
|
|
3180
3180
|
createdBy: {
|
|
3181
3181
|
id: string;
|
|
3182
3182
|
lastname: string;
|
|
3183
|
-
firstname: string;
|
|
3183
|
+
firstname: string | null;
|
|
3184
3184
|
avatar: string | null;
|
|
3185
3185
|
isSearchable: boolean;
|
|
3186
3186
|
};
|
|
@@ -3217,14 +3217,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3217
3217
|
users: [{
|
|
3218
3218
|
id: string;
|
|
3219
3219
|
lastname: string;
|
|
3220
|
-
firstname: string;
|
|
3220
|
+
firstname: string | null;
|
|
3221
3221
|
avatar: string | null;
|
|
3222
3222
|
isSearchable: boolean;
|
|
3223
3223
|
}, "admin" | "write" | "read"][];
|
|
3224
3224
|
createdBy: {
|
|
3225
3225
|
id: string;
|
|
3226
3226
|
lastname: string;
|
|
3227
|
-
firstname: string;
|
|
3227
|
+
firstname: string | null;
|
|
3228
3228
|
avatar: string | null;
|
|
3229
3229
|
isSearchable: boolean;
|
|
3230
3230
|
};
|
|
@@ -3282,14 +3282,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3282
3282
|
users: [{
|
|
3283
3283
|
id: string;
|
|
3284
3284
|
lastname: string;
|
|
3285
|
-
firstname: string;
|
|
3285
|
+
firstname: string | null;
|
|
3286
3286
|
avatar: string | null;
|
|
3287
3287
|
isSearchable: boolean;
|
|
3288
3288
|
}, "admin" | "write" | "read"][];
|
|
3289
3289
|
createdBy: {
|
|
3290
3290
|
id: string;
|
|
3291
3291
|
lastname: string;
|
|
3292
|
-
firstname: string;
|
|
3292
|
+
firstname: string | null;
|
|
3293
3293
|
avatar: string | null;
|
|
3294
3294
|
isSearchable: boolean;
|
|
3295
3295
|
};
|
|
@@ -3314,14 +3314,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3314
3314
|
users: [{
|
|
3315
3315
|
id: string;
|
|
3316
3316
|
lastname: string;
|
|
3317
|
-
firstname: string;
|
|
3317
|
+
firstname: string | null;
|
|
3318
3318
|
avatar: string | null;
|
|
3319
3319
|
isSearchable: boolean;
|
|
3320
3320
|
}, "admin" | "write" | "read"][];
|
|
3321
3321
|
createdBy: {
|
|
3322
3322
|
id: string;
|
|
3323
3323
|
lastname: string;
|
|
3324
|
-
firstname: string;
|
|
3324
|
+
firstname: string | null;
|
|
3325
3325
|
avatar: string | null;
|
|
3326
3326
|
isSearchable: boolean;
|
|
3327
3327
|
};
|
|
@@ -3720,14 +3720,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3720
3720
|
users: [{
|
|
3721
3721
|
id: string;
|
|
3722
3722
|
lastname: string;
|
|
3723
|
-
firstname: string;
|
|
3723
|
+
firstname: string | null;
|
|
3724
3724
|
avatar: string | null;
|
|
3725
3725
|
isSearchable: boolean;
|
|
3726
3726
|
}, "admin" | "write" | "read"][];
|
|
3727
3727
|
createdBy: {
|
|
3728
3728
|
id: string;
|
|
3729
3729
|
lastname: string;
|
|
3730
|
-
firstname: string;
|
|
3730
|
+
firstname: string | null;
|
|
3731
3731
|
avatar: string | null;
|
|
3732
3732
|
isSearchable: boolean;
|
|
3733
3733
|
};
|
|
@@ -3757,14 +3757,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3757
3757
|
users: [{
|
|
3758
3758
|
id: string;
|
|
3759
3759
|
lastname: string;
|
|
3760
|
-
firstname: string;
|
|
3760
|
+
firstname: string | null;
|
|
3761
3761
|
avatar: string | null;
|
|
3762
3762
|
isSearchable: boolean;
|
|
3763
3763
|
}, "admin" | "write" | "read"][];
|
|
3764
3764
|
createdBy: {
|
|
3765
3765
|
id: string;
|
|
3766
3766
|
lastname: string;
|
|
3767
|
-
firstname: string;
|
|
3767
|
+
firstname: string | null;
|
|
3768
3768
|
avatar: string | null;
|
|
3769
3769
|
isSearchable: boolean;
|
|
3770
3770
|
};
|
|
@@ -3828,14 +3828,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3828
3828
|
users: [{
|
|
3829
3829
|
id: string;
|
|
3830
3830
|
lastname: string;
|
|
3831
|
-
firstname: string;
|
|
3831
|
+
firstname: string | null;
|
|
3832
3832
|
avatar: string | null;
|
|
3833
3833
|
isSearchable: boolean;
|
|
3834
3834
|
}, "admin" | "write" | "read"][];
|
|
3835
3835
|
createdBy: {
|
|
3836
3836
|
id: string;
|
|
3837
3837
|
lastname: string;
|
|
3838
|
-
firstname: string;
|
|
3838
|
+
firstname: string | null;
|
|
3839
3839
|
avatar: string | null;
|
|
3840
3840
|
isSearchable: boolean;
|
|
3841
3841
|
};
|
|
@@ -3893,14 +3893,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3893
3893
|
users: [{
|
|
3894
3894
|
id: string;
|
|
3895
3895
|
lastname: string;
|
|
3896
|
-
firstname: string;
|
|
3896
|
+
firstname: string | null;
|
|
3897
3897
|
avatar: string | null;
|
|
3898
3898
|
isSearchable: boolean;
|
|
3899
3899
|
}, "admin" | "write" | "read"][];
|
|
3900
3900
|
createdBy: {
|
|
3901
3901
|
id: string;
|
|
3902
3902
|
lastname: string;
|
|
3903
|
-
firstname: string;
|
|
3903
|
+
firstname: string | null;
|
|
3904
3904
|
avatar: string | null;
|
|
3905
3905
|
isSearchable: boolean;
|
|
3906
3906
|
};
|
|
@@ -3925,14 +3925,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3925
3925
|
users: [{
|
|
3926
3926
|
id: string;
|
|
3927
3927
|
lastname: string;
|
|
3928
|
-
firstname: string;
|
|
3928
|
+
firstname: string | null;
|
|
3929
3929
|
avatar: string | null;
|
|
3930
3930
|
isSearchable: boolean;
|
|
3931
3931
|
}, "admin" | "write" | "read"][];
|
|
3932
3932
|
createdBy: {
|
|
3933
3933
|
id: string;
|
|
3934
3934
|
lastname: string;
|
|
3935
|
-
firstname: string;
|
|
3935
|
+
firstname: string | null;
|
|
3936
3936
|
avatar: string | null;
|
|
3937
3937
|
isSearchable: boolean;
|
|
3938
3938
|
};
|
|
@@ -3969,14 +3969,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
3969
3969
|
users: [{
|
|
3970
3970
|
id: string;
|
|
3971
3971
|
lastname: string;
|
|
3972
|
-
firstname: string;
|
|
3972
|
+
firstname: string | null;
|
|
3973
3973
|
avatar: string | null;
|
|
3974
3974
|
isSearchable: boolean;
|
|
3975
3975
|
}, "admin" | "write" | "read"][];
|
|
3976
3976
|
createdBy: {
|
|
3977
3977
|
id: string;
|
|
3978
3978
|
lastname: string;
|
|
3979
|
-
firstname: string;
|
|
3979
|
+
firstname: string | null;
|
|
3980
3980
|
avatar: string | null;
|
|
3981
3981
|
isSearchable: boolean;
|
|
3982
3982
|
};
|
|
@@ -4034,14 +4034,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4034
4034
|
users: [{
|
|
4035
4035
|
id: string;
|
|
4036
4036
|
lastname: string;
|
|
4037
|
-
firstname: string;
|
|
4037
|
+
firstname: string | null;
|
|
4038
4038
|
avatar: string | null;
|
|
4039
4039
|
isSearchable: boolean;
|
|
4040
4040
|
}, "admin" | "write" | "read"][];
|
|
4041
4041
|
createdBy: {
|
|
4042
4042
|
id: string;
|
|
4043
4043
|
lastname: string;
|
|
4044
|
-
firstname: string;
|
|
4044
|
+
firstname: string | null;
|
|
4045
4045
|
avatar: string | null;
|
|
4046
4046
|
isSearchable: boolean;
|
|
4047
4047
|
};
|
|
@@ -4066,14 +4066,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4066
4066
|
users: [{
|
|
4067
4067
|
id: string;
|
|
4068
4068
|
lastname: string;
|
|
4069
|
-
firstname: string;
|
|
4069
|
+
firstname: string | null;
|
|
4070
4070
|
avatar: string | null;
|
|
4071
4071
|
isSearchable: boolean;
|
|
4072
4072
|
}, "admin" | "write" | "read"][];
|
|
4073
4073
|
createdBy: {
|
|
4074
4074
|
id: string;
|
|
4075
4075
|
lastname: string;
|
|
4076
|
-
firstname: string;
|
|
4076
|
+
firstname: string | null;
|
|
4077
4077
|
avatar: string | null;
|
|
4078
4078
|
isSearchable: boolean;
|
|
4079
4079
|
};
|
|
@@ -4178,14 +4178,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4178
4178
|
users: [{
|
|
4179
4179
|
id: string;
|
|
4180
4180
|
lastname: string;
|
|
4181
|
-
firstname: string;
|
|
4181
|
+
firstname: string | null;
|
|
4182
4182
|
avatar: string | null;
|
|
4183
4183
|
isSearchable: boolean;
|
|
4184
4184
|
}, "admin" | "write" | "read"][];
|
|
4185
4185
|
createdBy: {
|
|
4186
4186
|
id: string;
|
|
4187
4187
|
lastname: string;
|
|
4188
|
-
firstname: string;
|
|
4188
|
+
firstname: string | null;
|
|
4189
4189
|
avatar: string | null;
|
|
4190
4190
|
isSearchable: boolean;
|
|
4191
4191
|
};
|
|
@@ -4210,14 +4210,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4210
4210
|
users: [{
|
|
4211
4211
|
id: string;
|
|
4212
4212
|
lastname: string;
|
|
4213
|
-
firstname: string;
|
|
4213
|
+
firstname: string | null;
|
|
4214
4214
|
avatar: string | null;
|
|
4215
4215
|
isSearchable: boolean;
|
|
4216
4216
|
}, "admin" | "write" | "read"][];
|
|
4217
4217
|
createdBy: {
|
|
4218
4218
|
id: string;
|
|
4219
4219
|
lastname: string;
|
|
4220
|
-
firstname: string;
|
|
4220
|
+
firstname: string | null;
|
|
4221
4221
|
avatar: string | null;
|
|
4222
4222
|
isSearchable: boolean;
|
|
4223
4223
|
};
|
|
@@ -4274,14 +4274,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4274
4274
|
users: [{
|
|
4275
4275
|
id: string;
|
|
4276
4276
|
lastname: string;
|
|
4277
|
-
firstname: string;
|
|
4277
|
+
firstname: string | null;
|
|
4278
4278
|
avatar: string | null;
|
|
4279
4279
|
isSearchable: boolean;
|
|
4280
4280
|
}, "admin" | "write" | "read"][];
|
|
4281
4281
|
createdBy: {
|
|
4282
4282
|
id: string;
|
|
4283
4283
|
lastname: string;
|
|
4284
|
-
firstname: string;
|
|
4284
|
+
firstname: string | null;
|
|
4285
4285
|
avatar: string | null;
|
|
4286
4286
|
isSearchable: boolean;
|
|
4287
4287
|
};
|
|
@@ -4306,14 +4306,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4306
4306
|
users: [{
|
|
4307
4307
|
id: string;
|
|
4308
4308
|
lastname: string;
|
|
4309
|
-
firstname: string;
|
|
4309
|
+
firstname: string | null;
|
|
4310
4310
|
avatar: string | null;
|
|
4311
4311
|
isSearchable: boolean;
|
|
4312
4312
|
}, "admin" | "write" | "read"][];
|
|
4313
4313
|
createdBy: {
|
|
4314
4314
|
id: string;
|
|
4315
4315
|
lastname: string;
|
|
4316
|
-
firstname: string;
|
|
4316
|
+
firstname: string | null;
|
|
4317
4317
|
avatar: string | null;
|
|
4318
4318
|
isSearchable: boolean;
|
|
4319
4319
|
};
|
|
@@ -4366,14 +4366,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4366
4366
|
users: [{
|
|
4367
4367
|
id: string;
|
|
4368
4368
|
lastname: string;
|
|
4369
|
-
firstname: string;
|
|
4369
|
+
firstname: string | null;
|
|
4370
4370
|
avatar: string | null;
|
|
4371
4371
|
isSearchable: boolean;
|
|
4372
4372
|
}, "admin" | "write" | "read"][];
|
|
4373
4373
|
createdBy: {
|
|
4374
4374
|
id: string;
|
|
4375
4375
|
lastname: string;
|
|
4376
|
-
firstname: string;
|
|
4376
|
+
firstname: string | null;
|
|
4377
4377
|
avatar: string | null;
|
|
4378
4378
|
isSearchable: boolean;
|
|
4379
4379
|
};
|
|
@@ -4398,14 +4398,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4398
4398
|
users: [{
|
|
4399
4399
|
id: string;
|
|
4400
4400
|
lastname: string;
|
|
4401
|
-
firstname: string;
|
|
4401
|
+
firstname: string | null;
|
|
4402
4402
|
avatar: string | null;
|
|
4403
4403
|
isSearchable: boolean;
|
|
4404
4404
|
}, "admin" | "write" | "read"][];
|
|
4405
4405
|
createdBy: {
|
|
4406
4406
|
id: string;
|
|
4407
4407
|
lastname: string;
|
|
4408
|
-
firstname: string;
|
|
4408
|
+
firstname: string | null;
|
|
4409
4409
|
avatar: string | null;
|
|
4410
4410
|
isSearchable: boolean;
|
|
4411
4411
|
};
|
|
@@ -4602,14 +4602,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4602
4602
|
users: [{
|
|
4603
4603
|
id: string;
|
|
4604
4604
|
lastname: string;
|
|
4605
|
-
firstname: string;
|
|
4605
|
+
firstname: string | null;
|
|
4606
4606
|
avatar: string | null;
|
|
4607
4607
|
isSearchable: boolean;
|
|
4608
4608
|
}, "admin" | "write" | "read"][];
|
|
4609
4609
|
createdBy: {
|
|
4610
4610
|
id: string;
|
|
4611
4611
|
lastname: string;
|
|
4612
|
-
firstname: string;
|
|
4612
|
+
firstname: string | null;
|
|
4613
4613
|
avatar: string | null;
|
|
4614
4614
|
isSearchable: boolean;
|
|
4615
4615
|
};
|
|
@@ -4667,14 +4667,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4667
4667
|
users: [{
|
|
4668
4668
|
id: string;
|
|
4669
4669
|
lastname: string;
|
|
4670
|
-
firstname: string;
|
|
4670
|
+
firstname: string | null;
|
|
4671
4671
|
avatar: string | null;
|
|
4672
4672
|
isSearchable: boolean;
|
|
4673
4673
|
}, "admin" | "write" | "read"][];
|
|
4674
4674
|
createdBy: {
|
|
4675
4675
|
id: string;
|
|
4676
4676
|
lastname: string;
|
|
4677
|
-
firstname: string;
|
|
4677
|
+
firstname: string | null;
|
|
4678
4678
|
avatar: string | null;
|
|
4679
4679
|
isSearchable: boolean;
|
|
4680
4680
|
};
|
|
@@ -4699,14 +4699,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4699
4699
|
users: [{
|
|
4700
4700
|
id: string;
|
|
4701
4701
|
lastname: string;
|
|
4702
|
-
firstname: string;
|
|
4702
|
+
firstname: string | null;
|
|
4703
4703
|
avatar: string | null;
|
|
4704
4704
|
isSearchable: boolean;
|
|
4705
4705
|
}, "admin" | "write" | "read"][];
|
|
4706
4706
|
createdBy: {
|
|
4707
4707
|
id: string;
|
|
4708
4708
|
lastname: string;
|
|
4709
|
-
firstname: string;
|
|
4709
|
+
firstname: string | null;
|
|
4710
4710
|
avatar: string | null;
|
|
4711
4711
|
isSearchable: boolean;
|
|
4712
4712
|
};
|
|
@@ -4743,14 +4743,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4743
4743
|
users: [{
|
|
4744
4744
|
id: string;
|
|
4745
4745
|
lastname: string;
|
|
4746
|
-
firstname: string;
|
|
4746
|
+
firstname: string | null;
|
|
4747
4747
|
avatar: string | null;
|
|
4748
4748
|
isSearchable: boolean;
|
|
4749
4749
|
}, "admin" | "write" | "read"][];
|
|
4750
4750
|
createdBy: {
|
|
4751
4751
|
id: string;
|
|
4752
4752
|
lastname: string;
|
|
4753
|
-
firstname: string;
|
|
4753
|
+
firstname: string | null;
|
|
4754
4754
|
avatar: string | null;
|
|
4755
4755
|
isSearchable: boolean;
|
|
4756
4756
|
};
|
|
@@ -4808,14 +4808,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4808
4808
|
users: [{
|
|
4809
4809
|
id: string;
|
|
4810
4810
|
lastname: string;
|
|
4811
|
-
firstname: string;
|
|
4811
|
+
firstname: string | null;
|
|
4812
4812
|
avatar: string | null;
|
|
4813
4813
|
isSearchable: boolean;
|
|
4814
4814
|
}, "admin" | "write" | "read"][];
|
|
4815
4815
|
createdBy: {
|
|
4816
4816
|
id: string;
|
|
4817
4817
|
lastname: string;
|
|
4818
|
-
firstname: string;
|
|
4818
|
+
firstname: string | null;
|
|
4819
4819
|
avatar: string | null;
|
|
4820
4820
|
isSearchable: boolean;
|
|
4821
4821
|
};
|
|
@@ -4840,14 +4840,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4840
4840
|
users: [{
|
|
4841
4841
|
id: string;
|
|
4842
4842
|
lastname: string;
|
|
4843
|
-
firstname: string;
|
|
4843
|
+
firstname: string | null;
|
|
4844
4844
|
avatar: string | null;
|
|
4845
4845
|
isSearchable: boolean;
|
|
4846
4846
|
}, "admin" | "write" | "read"][];
|
|
4847
4847
|
createdBy: {
|
|
4848
4848
|
id: string;
|
|
4849
4849
|
lastname: string;
|
|
4850
|
-
firstname: string;
|
|
4850
|
+
firstname: string | null;
|
|
4851
4851
|
avatar: string | null;
|
|
4852
4852
|
isSearchable: boolean;
|
|
4853
4853
|
};
|
|
@@ -4903,14 +4903,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4903
4903
|
_output_in: {
|
|
4904
4904
|
id: string;
|
|
4905
4905
|
lastname: string;
|
|
4906
|
-
firstname: string;
|
|
4906
|
+
firstname: string | null;
|
|
4907
4907
|
avatar: string | null;
|
|
4908
4908
|
isSearchable: boolean;
|
|
4909
4909
|
}[];
|
|
4910
4910
|
_output_out: {
|
|
4911
4911
|
id: string;
|
|
4912
4912
|
lastname: string;
|
|
4913
|
-
firstname: string;
|
|
4913
|
+
firstname: string | null;
|
|
4914
4914
|
avatar: string | null;
|
|
4915
4915
|
isSearchable: boolean;
|
|
4916
4916
|
}[];
|
|
@@ -4945,14 +4945,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4945
4945
|
_output_in: {
|
|
4946
4946
|
id: string;
|
|
4947
4947
|
lastname: string;
|
|
4948
|
-
firstname: string;
|
|
4948
|
+
firstname: string | null;
|
|
4949
4949
|
avatar: string | null;
|
|
4950
4950
|
isSearchable: boolean;
|
|
4951
4951
|
}[];
|
|
4952
4952
|
_output_out: {
|
|
4953
4953
|
id: string;
|
|
4954
4954
|
lastname: string;
|
|
4955
|
-
firstname: string;
|
|
4955
|
+
firstname: string | null;
|
|
4956
4956
|
avatar: string | null;
|
|
4957
4957
|
isSearchable: boolean;
|
|
4958
4958
|
}[];
|
|
@@ -4987,14 +4987,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
4987
4987
|
_output_in: {
|
|
4988
4988
|
id: string;
|
|
4989
4989
|
lastname: string;
|
|
4990
|
-
firstname: string;
|
|
4990
|
+
firstname: string | null;
|
|
4991
4991
|
avatar: string | null;
|
|
4992
4992
|
isSearchable: boolean;
|
|
4993
4993
|
}[];
|
|
4994
4994
|
_output_out: {
|
|
4995
4995
|
id: string;
|
|
4996
4996
|
lastname: string;
|
|
4997
|
-
firstname: string;
|
|
4997
|
+
firstname: string | null;
|
|
4998
4998
|
avatar: string | null;
|
|
4999
4999
|
isSearchable: boolean;
|
|
5000
5000
|
}[];
|
|
@@ -8623,7 +8623,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
8623
8623
|
recipients: {
|
|
8624
8624
|
id: string;
|
|
8625
8625
|
lastname: string;
|
|
8626
|
-
firstname: string;
|
|
8626
|
+
firstname: string | null;
|
|
8627
8627
|
avatar: string | null;
|
|
8628
8628
|
isSearchable: boolean;
|
|
8629
8629
|
}[];
|
|
@@ -8641,7 +8641,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
8641
8641
|
recipients: {
|
|
8642
8642
|
id: string;
|
|
8643
8643
|
lastname: string;
|
|
8644
|
-
firstname: string;
|
|
8644
|
+
firstname: string | null;
|
|
8645
8645
|
avatar: string | null;
|
|
8646
8646
|
isSearchable: boolean;
|
|
8647
8647
|
}[];
|
|
@@ -8652,7 +8652,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
8652
8652
|
sender: {
|
|
8653
8653
|
id: string;
|
|
8654
8654
|
lastname: string;
|
|
8655
|
-
firstname: string;
|
|
8655
|
+
firstname: string | null;
|
|
8656
8656
|
avatar: string | null;
|
|
8657
8657
|
isSearchable: boolean;
|
|
8658
8658
|
};
|
|
@@ -8681,7 +8681,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
8681
8681
|
recipients: {
|
|
8682
8682
|
id: string;
|
|
8683
8683
|
lastname: string;
|
|
8684
|
-
firstname: string;
|
|
8684
|
+
firstname: string | null;
|
|
8685
8685
|
avatar: string | null;
|
|
8686
8686
|
isSearchable: boolean;
|
|
8687
8687
|
}[];
|
|
@@ -8699,7 +8699,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
8699
8699
|
recipients: {
|
|
8700
8700
|
id: string;
|
|
8701
8701
|
lastname: string;
|
|
8702
|
-
firstname: string;
|
|
8702
|
+
firstname: string | null;
|
|
8703
8703
|
avatar: string | null;
|
|
8704
8704
|
isSearchable: boolean;
|
|
8705
8705
|
}[];
|
|
@@ -8710,7 +8710,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
8710
8710
|
sender: {
|
|
8711
8711
|
id: string;
|
|
8712
8712
|
lastname: string;
|
|
8713
|
-
firstname: string;
|
|
8713
|
+
firstname: string | null;
|
|
8714
8714
|
avatar: string | null;
|
|
8715
8715
|
isSearchable: boolean;
|
|
8716
8716
|
};
|
|
@@ -8793,7 +8793,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
8793
8793
|
recipients: {
|
|
8794
8794
|
id: string;
|
|
8795
8795
|
lastname: string;
|
|
8796
|
-
firstname: string;
|
|
8796
|
+
firstname: string | null;
|
|
8797
8797
|
avatar: string | null;
|
|
8798
8798
|
isSearchable: boolean;
|
|
8799
8799
|
}[];
|
|
@@ -8811,7 +8811,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
8811
8811
|
recipients: {
|
|
8812
8812
|
id: string;
|
|
8813
8813
|
lastname: string;
|
|
8814
|
-
firstname: string;
|
|
8814
|
+
firstname: string | null;
|
|
8815
8815
|
avatar: string | null;
|
|
8816
8816
|
isSearchable: boolean;
|
|
8817
8817
|
}[];
|
|
@@ -8822,7 +8822,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
8822
8822
|
sender: {
|
|
8823
8823
|
id: string;
|
|
8824
8824
|
lastname: string;
|
|
8825
|
-
firstname: string;
|
|
8825
|
+
firstname: string | null;
|
|
8826
8826
|
avatar: string | null;
|
|
8827
8827
|
isSearchable: boolean;
|
|
8828
8828
|
};
|
|
@@ -8851,7 +8851,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
8851
8851
|
recipients: {
|
|
8852
8852
|
id: string;
|
|
8853
8853
|
lastname: string;
|
|
8854
|
-
firstname: string;
|
|
8854
|
+
firstname: string | null;
|
|
8855
8855
|
avatar: string | null;
|
|
8856
8856
|
isSearchable: boolean;
|
|
8857
8857
|
}[];
|
|
@@ -8869,7 +8869,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
8869
8869
|
recipients: {
|
|
8870
8870
|
id: string;
|
|
8871
8871
|
lastname: string;
|
|
8872
|
-
firstname: string;
|
|
8872
|
+
firstname: string | null;
|
|
8873
8873
|
avatar: string | null;
|
|
8874
8874
|
isSearchable: boolean;
|
|
8875
8875
|
}[];
|
|
@@ -8880,7 +8880,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
8880
8880
|
sender: {
|
|
8881
8881
|
id: string;
|
|
8882
8882
|
lastname: string;
|
|
8883
|
-
firstname: string;
|
|
8883
|
+
firstname: string | null;
|
|
8884
8884
|
avatar: string | null;
|
|
8885
8885
|
isSearchable: boolean;
|
|
8886
8886
|
};
|
|
@@ -9055,7 +9055,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9055
9055
|
recipients: {
|
|
9056
9056
|
id: string;
|
|
9057
9057
|
lastname: string;
|
|
9058
|
-
firstname: string;
|
|
9058
|
+
firstname: string | null;
|
|
9059
9059
|
avatar: string | null;
|
|
9060
9060
|
isSearchable: boolean;
|
|
9061
9061
|
}[];
|
|
@@ -9073,7 +9073,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9073
9073
|
recipients: {
|
|
9074
9074
|
id: string;
|
|
9075
9075
|
lastname: string;
|
|
9076
|
-
firstname: string;
|
|
9076
|
+
firstname: string | null;
|
|
9077
9077
|
avatar: string | null;
|
|
9078
9078
|
isSearchable: boolean;
|
|
9079
9079
|
}[];
|
|
@@ -9084,7 +9084,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9084
9084
|
sender: {
|
|
9085
9085
|
id: string;
|
|
9086
9086
|
lastname: string;
|
|
9087
|
-
firstname: string;
|
|
9087
|
+
firstname: string | null;
|
|
9088
9088
|
avatar: string | null;
|
|
9089
9089
|
isSearchable: boolean;
|
|
9090
9090
|
};
|
|
@@ -9113,7 +9113,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9113
9113
|
recipients: {
|
|
9114
9114
|
id: string;
|
|
9115
9115
|
lastname: string;
|
|
9116
|
-
firstname: string;
|
|
9116
|
+
firstname: string | null;
|
|
9117
9117
|
avatar: string | null;
|
|
9118
9118
|
isSearchable: boolean;
|
|
9119
9119
|
}[];
|
|
@@ -9131,7 +9131,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9131
9131
|
recipients: {
|
|
9132
9132
|
id: string;
|
|
9133
9133
|
lastname: string;
|
|
9134
|
-
firstname: string;
|
|
9134
|
+
firstname: string | null;
|
|
9135
9135
|
avatar: string | null;
|
|
9136
9136
|
isSearchable: boolean;
|
|
9137
9137
|
}[];
|
|
@@ -9142,7 +9142,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9142
9142
|
sender: {
|
|
9143
9143
|
id: string;
|
|
9144
9144
|
lastname: string;
|
|
9145
|
-
firstname: string;
|
|
9145
|
+
firstname: string | null;
|
|
9146
9146
|
avatar: string | null;
|
|
9147
9147
|
isSearchable: boolean;
|
|
9148
9148
|
};
|
|
@@ -9199,7 +9199,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9199
9199
|
recipients: {
|
|
9200
9200
|
id: string;
|
|
9201
9201
|
lastname: string;
|
|
9202
|
-
firstname: string;
|
|
9202
|
+
firstname: string | null;
|
|
9203
9203
|
avatar: string | null;
|
|
9204
9204
|
isSearchable: boolean;
|
|
9205
9205
|
}[];
|
|
@@ -9217,7 +9217,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9217
9217
|
recipients: {
|
|
9218
9218
|
id: string;
|
|
9219
9219
|
lastname: string;
|
|
9220
|
-
firstname: string;
|
|
9220
|
+
firstname: string | null;
|
|
9221
9221
|
avatar: string | null;
|
|
9222
9222
|
isSearchable: boolean;
|
|
9223
9223
|
}[];
|
|
@@ -9228,7 +9228,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9228
9228
|
sender: {
|
|
9229
9229
|
id: string;
|
|
9230
9230
|
lastname: string;
|
|
9231
|
-
firstname: string;
|
|
9231
|
+
firstname: string | null;
|
|
9232
9232
|
avatar: string | null;
|
|
9233
9233
|
isSearchable: boolean;
|
|
9234
9234
|
};
|
|
@@ -9257,7 +9257,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9257
9257
|
recipients: {
|
|
9258
9258
|
id: string;
|
|
9259
9259
|
lastname: string;
|
|
9260
|
-
firstname: string;
|
|
9260
|
+
firstname: string | null;
|
|
9261
9261
|
avatar: string | null;
|
|
9262
9262
|
isSearchable: boolean;
|
|
9263
9263
|
}[];
|
|
@@ -9275,7 +9275,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9275
9275
|
recipients: {
|
|
9276
9276
|
id: string;
|
|
9277
9277
|
lastname: string;
|
|
9278
|
-
firstname: string;
|
|
9278
|
+
firstname: string | null;
|
|
9279
9279
|
avatar: string | null;
|
|
9280
9280
|
isSearchable: boolean;
|
|
9281
9281
|
}[];
|
|
@@ -9286,7 +9286,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9286
9286
|
sender: {
|
|
9287
9287
|
id: string;
|
|
9288
9288
|
lastname: string;
|
|
9289
|
-
firstname: string;
|
|
9289
|
+
firstname: string | null;
|
|
9290
9290
|
avatar: string | null;
|
|
9291
9291
|
isSearchable: boolean;
|
|
9292
9292
|
};
|
|
@@ -9415,7 +9415,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9415
9415
|
recipients: {
|
|
9416
9416
|
id: string;
|
|
9417
9417
|
lastname: string;
|
|
9418
|
-
firstname: string;
|
|
9418
|
+
firstname: string | null;
|
|
9419
9419
|
avatar: string | null;
|
|
9420
9420
|
isSearchable: boolean;
|
|
9421
9421
|
}[];
|
|
@@ -9433,7 +9433,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9433
9433
|
recipients: {
|
|
9434
9434
|
id: string;
|
|
9435
9435
|
lastname: string;
|
|
9436
|
-
firstname: string;
|
|
9436
|
+
firstname: string | null;
|
|
9437
9437
|
avatar: string | null;
|
|
9438
9438
|
isSearchable: boolean;
|
|
9439
9439
|
}[];
|
|
@@ -9444,7 +9444,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9444
9444
|
sender: {
|
|
9445
9445
|
id: string;
|
|
9446
9446
|
lastname: string;
|
|
9447
|
-
firstname: string;
|
|
9447
|
+
firstname: string | null;
|
|
9448
9448
|
avatar: string | null;
|
|
9449
9449
|
isSearchable: boolean;
|
|
9450
9450
|
};
|
|
@@ -9473,7 +9473,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9473
9473
|
recipients: {
|
|
9474
9474
|
id: string;
|
|
9475
9475
|
lastname: string;
|
|
9476
|
-
firstname: string;
|
|
9476
|
+
firstname: string | null;
|
|
9477
9477
|
avatar: string | null;
|
|
9478
9478
|
isSearchable: boolean;
|
|
9479
9479
|
}[];
|
|
@@ -9491,7 +9491,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9491
9491
|
recipients: {
|
|
9492
9492
|
id: string;
|
|
9493
9493
|
lastname: string;
|
|
9494
|
-
firstname: string;
|
|
9494
|
+
firstname: string | null;
|
|
9495
9495
|
avatar: string | null;
|
|
9496
9496
|
isSearchable: boolean;
|
|
9497
9497
|
}[];
|
|
@@ -9502,7 +9502,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9502
9502
|
sender: {
|
|
9503
9503
|
id: string;
|
|
9504
9504
|
lastname: string;
|
|
9505
|
-
firstname: string;
|
|
9505
|
+
firstname: string | null;
|
|
9506
9506
|
avatar: string | null;
|
|
9507
9507
|
isSearchable: boolean;
|
|
9508
9508
|
};
|
|
@@ -9785,7 +9785,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9785
9785
|
recipients: {
|
|
9786
9786
|
id: string;
|
|
9787
9787
|
lastname: string;
|
|
9788
|
-
firstname: string;
|
|
9788
|
+
firstname: string | null;
|
|
9789
9789
|
avatar: string | null;
|
|
9790
9790
|
isSearchable: boolean;
|
|
9791
9791
|
}[];
|
|
@@ -9803,7 +9803,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9803
9803
|
recipients: {
|
|
9804
9804
|
id: string;
|
|
9805
9805
|
lastname: string;
|
|
9806
|
-
firstname: string;
|
|
9806
|
+
firstname: string | null;
|
|
9807
9807
|
avatar: string | null;
|
|
9808
9808
|
isSearchable: boolean;
|
|
9809
9809
|
}[];
|
|
@@ -9814,7 +9814,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9814
9814
|
sender: {
|
|
9815
9815
|
id: string;
|
|
9816
9816
|
lastname: string;
|
|
9817
|
-
firstname: string;
|
|
9817
|
+
firstname: string | null;
|
|
9818
9818
|
avatar: string | null;
|
|
9819
9819
|
isSearchable: boolean;
|
|
9820
9820
|
};
|
|
@@ -9843,7 +9843,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9843
9843
|
recipients: {
|
|
9844
9844
|
id: string;
|
|
9845
9845
|
lastname: string;
|
|
9846
|
-
firstname: string;
|
|
9846
|
+
firstname: string | null;
|
|
9847
9847
|
avatar: string | null;
|
|
9848
9848
|
isSearchable: boolean;
|
|
9849
9849
|
}[];
|
|
@@ -9861,7 +9861,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9861
9861
|
recipients: {
|
|
9862
9862
|
id: string;
|
|
9863
9863
|
lastname: string;
|
|
9864
|
-
firstname: string;
|
|
9864
|
+
firstname: string | null;
|
|
9865
9865
|
avatar: string | null;
|
|
9866
9866
|
isSearchable: boolean;
|
|
9867
9867
|
}[];
|
|
@@ -9872,7 +9872,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
9872
9872
|
sender: {
|
|
9873
9873
|
id: string;
|
|
9874
9874
|
lastname: string;
|
|
9875
|
-
firstname: string;
|
|
9875
|
+
firstname: string | null;
|
|
9876
9876
|
avatar: string | null;
|
|
9877
9877
|
isSearchable: boolean;
|
|
9878
9878
|
};
|
|
@@ -10023,7 +10023,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
10023
10023
|
recipients: {
|
|
10024
10024
|
id: string;
|
|
10025
10025
|
lastname: string;
|
|
10026
|
-
firstname: string;
|
|
10026
|
+
firstname: string | null;
|
|
10027
10027
|
avatar: string | null;
|
|
10028
10028
|
isSearchable: boolean;
|
|
10029
10029
|
}[];
|
|
@@ -10041,7 +10041,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
10041
10041
|
recipients: {
|
|
10042
10042
|
id: string;
|
|
10043
10043
|
lastname: string;
|
|
10044
|
-
firstname: string;
|
|
10044
|
+
firstname: string | null;
|
|
10045
10045
|
avatar: string | null;
|
|
10046
10046
|
isSearchable: boolean;
|
|
10047
10047
|
}[];
|
|
@@ -10052,7 +10052,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
10052
10052
|
sender: {
|
|
10053
10053
|
id: string;
|
|
10054
10054
|
lastname: string;
|
|
10055
|
-
firstname: string;
|
|
10055
|
+
firstname: string | null;
|
|
10056
10056
|
avatar: string | null;
|
|
10057
10057
|
isSearchable: boolean;
|
|
10058
10058
|
};
|
|
@@ -10081,7 +10081,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
10081
10081
|
recipients: {
|
|
10082
10082
|
id: string;
|
|
10083
10083
|
lastname: string;
|
|
10084
|
-
firstname: string;
|
|
10084
|
+
firstname: string | null;
|
|
10085
10085
|
avatar: string | null;
|
|
10086
10086
|
isSearchable: boolean;
|
|
10087
10087
|
}[];
|
|
@@ -10099,7 +10099,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
10099
10099
|
recipients: {
|
|
10100
10100
|
id: string;
|
|
10101
10101
|
lastname: string;
|
|
10102
|
-
firstname: string;
|
|
10102
|
+
firstname: string | null;
|
|
10103
10103
|
avatar: string | null;
|
|
10104
10104
|
isSearchable: boolean;
|
|
10105
10105
|
}[];
|
|
@@ -10110,7 +10110,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
10110
10110
|
sender: {
|
|
10111
10111
|
id: string;
|
|
10112
10112
|
lastname: string;
|
|
10113
|
-
firstname: string;
|
|
10113
|
+
firstname: string | null;
|
|
10114
10114
|
avatar: string | null;
|
|
10115
10115
|
isSearchable: boolean;
|
|
10116
10116
|
};
|
|
@@ -10152,7 +10152,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
10152
10152
|
sender: {
|
|
10153
10153
|
id: string;
|
|
10154
10154
|
lastname: string;
|
|
10155
|
-
firstname: string;
|
|
10155
|
+
firstname: string | null;
|
|
10156
10156
|
avatar: string | null;
|
|
10157
10157
|
isSearchable: boolean;
|
|
10158
10158
|
};
|
|
@@ -10160,7 +10160,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
10160
10160
|
recipients: {
|
|
10161
10161
|
id: string;
|
|
10162
10162
|
lastname: string;
|
|
10163
|
-
firstname: string;
|
|
10163
|
+
firstname: string | null;
|
|
10164
10164
|
avatar: string | null;
|
|
10165
10165
|
isSearchable: boolean;
|
|
10166
10166
|
}[];
|
|
@@ -10175,7 +10175,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
10175
10175
|
sender: {
|
|
10176
10176
|
id: string;
|
|
10177
10177
|
lastname: string;
|
|
10178
|
-
firstname: string;
|
|
10178
|
+
firstname: string | null;
|
|
10179
10179
|
avatar: string | null;
|
|
10180
10180
|
isSearchable: boolean;
|
|
10181
10181
|
};
|
|
@@ -10183,7 +10183,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
10183
10183
|
recipients: {
|
|
10184
10184
|
id: string;
|
|
10185
10185
|
lastname: string;
|
|
10186
|
-
firstname: string;
|
|
10186
|
+
firstname: string | null;
|
|
10187
10187
|
avatar: string | null;
|
|
10188
10188
|
isSearchable: boolean;
|
|
10189
10189
|
}[];
|
|
@@ -12943,14 +12943,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12943
12943
|
_output_in: {
|
|
12944
12944
|
id: string;
|
|
12945
12945
|
lastname: string;
|
|
12946
|
-
firstname: string;
|
|
12946
|
+
firstname: string | null;
|
|
12947
12947
|
avatar: string | null;
|
|
12948
12948
|
isSearchable: boolean;
|
|
12949
12949
|
};
|
|
12950
12950
|
_output_out: {
|
|
12951
12951
|
id: string;
|
|
12952
12952
|
lastname: string;
|
|
12953
|
-
firstname: string;
|
|
12953
|
+
firstname: string | null;
|
|
12954
12954
|
avatar: string | null;
|
|
12955
12955
|
isSearchable: boolean;
|
|
12956
12956
|
};
|
|
@@ -12989,14 +12989,14 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
12989
12989
|
_output_in: {
|
|
12990
12990
|
id: string;
|
|
12991
12991
|
lastname: string;
|
|
12992
|
-
firstname: string;
|
|
12992
|
+
firstname: string | null;
|
|
12993
12993
|
avatar: string | null;
|
|
12994
12994
|
isSearchable: boolean;
|
|
12995
12995
|
}[];
|
|
12996
12996
|
_output_out: {
|
|
12997
12997
|
id: string;
|
|
12998
12998
|
lastname: string;
|
|
12999
|
-
firstname: string;
|
|
12999
|
+
firstname: string | null;
|
|
13000
13000
|
avatar: string | null;
|
|
13001
13001
|
isSearchable: boolean;
|
|
13002
13002
|
}[];
|
|
@@ -13137,7 +13137,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13137
13137
|
_output_in: {
|
|
13138
13138
|
id: string;
|
|
13139
13139
|
lastname: string;
|
|
13140
|
-
firstname: string;
|
|
13140
|
+
firstname: string | null;
|
|
13141
13141
|
avatar: string | null;
|
|
13142
13142
|
isSearchable: boolean;
|
|
13143
13143
|
} & {
|
|
@@ -13162,7 +13162,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13162
13162
|
_output_out: {
|
|
13163
13163
|
id: string;
|
|
13164
13164
|
lastname: string;
|
|
13165
|
-
firstname: string;
|
|
13165
|
+
firstname: string | null;
|
|
13166
13166
|
avatar: string | null;
|
|
13167
13167
|
isSearchable: boolean;
|
|
13168
13168
|
} & {
|
|
@@ -13263,7 +13263,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13263
13263
|
_output_in: {
|
|
13264
13264
|
id: string;
|
|
13265
13265
|
lastname: string;
|
|
13266
|
-
firstname: string;
|
|
13266
|
+
firstname: string | null;
|
|
13267
13267
|
avatar: string | null;
|
|
13268
13268
|
isSearchable: boolean;
|
|
13269
13269
|
} & {
|
|
@@ -13274,7 +13274,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
|
|
|
13274
13274
|
_output_out: {
|
|
13275
13275
|
id: string;
|
|
13276
13276
|
lastname: string;
|
|
13277
|
-
firstname: string;
|
|
13277
|
+
firstname: string | null;
|
|
13278
13278
|
avatar: string | null;
|
|
13279
13279
|
isSearchable: boolean;
|
|
13280
13280
|
} & {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@secrecy/lib",
|
|
3
3
|
"author": "Anonymize <anonymize@gmail.com>",
|
|
4
4
|
"description": "Anonymize Secrecy Library",
|
|
5
|
-
"version": "1.13.1
|
|
5
|
+
"version": "1.13.1",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/anonymize-org/lib.git"
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
76
|
"@secrecy/lib-utils": "^1.0.18",
|
|
77
|
-
"@secrecy/trpc-api-types": "1.19.0-feat-project-neon-endpoint.
|
|
77
|
+
"@secrecy/trpc-api-types": "1.19.0-feat-project-neon-endpoint.1",
|
|
78
78
|
"@trpc/client": "10.45.2",
|
|
79
79
|
"@trpc/server": "10.45.2",
|
|
80
80
|
"@types/libsodium-wrappers-sumo": "^0.7.8",
|