@secrecy/trpc-api-types 1.18.0 → 1.18.1-dev.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.
Files changed (2) hide show
  1. package/dist/index.d.cts +356 -98
  2. package/package.json +1 -1
package/dist/index.d.cts CHANGED
@@ -613,13 +613,13 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
613
613
  _ctx_out: {};
614
614
  _input_in: {
615
615
  cloudNodeDaysForDelete?: number | null | undefined;
616
- historyFileDaysForDelete?: number | null | undefined;
617
616
  historyMaxFileCount?: number | null | undefined;
617
+ historyFileDaysForDelete?: number | null | undefined;
618
618
  };
619
619
  _input_out: {
620
620
  cloudNodeDaysForDelete?: number | null | undefined;
621
- historyFileDaysForDelete?: number | null | undefined;
622
621
  historyMaxFileCount?: number | null | undefined;
622
+ historyFileDaysForDelete?: number | null | undefined;
623
623
  };
624
624
  _output_in: {
625
625
  id: string;
@@ -1174,6 +1174,10 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
1174
1174
  _input_in: {};
1175
1175
  _input_out: {};
1176
1176
  _output_in: {
1177
+ cryptoWallets: {
1178
+ address: string;
1179
+ encryptedKeystore: string;
1180
+ }[];
1177
1181
  masterKeySalt: string;
1178
1182
  keyPairs: {
1179
1183
  pub: string;
@@ -1181,6 +1185,10 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
1181
1185
  }[];
1182
1186
  };
1183
1187
  _output_out: {
1188
+ cryptoWallets: {
1189
+ address: string;
1190
+ encryptedKeystore: string;
1191
+ }[];
1184
1192
  masterKeySalt: string;
1185
1193
  keyPairs: {
1186
1194
  pub: string;
@@ -1905,6 +1913,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
1905
1913
  type: "FILE" | "FOLDER";
1906
1914
  parentId: string | null;
1907
1915
  isFavorite: boolean;
1916
+ currentFileId: string | null;
1908
1917
  } & {
1909
1918
  users: [{
1910
1919
  id: string;
@@ -1914,8 +1923,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
1914
1923
  isSearchable: boolean;
1915
1924
  }, "admin" | "write" | "read"][];
1916
1925
  createdBy: {
1917
- appId: string;
1918
- userId: string;
1926
+ id: string;
1927
+ lastname: string;
1928
+ firstname: string;
1929
+ avatar: string | null;
1930
+ isSearchable: boolean;
1919
1931
  };
1920
1932
  access: {
1921
1933
  rights: "admin" | "write" | "read";
@@ -1966,6 +1978,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
1966
1978
  type: "FILE" | "FOLDER";
1967
1979
  parentId: string | null;
1968
1980
  isFavorite: boolean;
1981
+ currentFileId: string | null;
1969
1982
  } & {
1970
1983
  users: [{
1971
1984
  id: string;
@@ -1975,8 +1988,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
1975
1988
  isSearchable: boolean;
1976
1989
  }, "admin" | "write" | "read"][];
1977
1990
  createdBy: {
1978
- appId: string;
1979
- userId: string;
1991
+ id: string;
1992
+ lastname: string;
1993
+ firstname: string;
1994
+ avatar: string | null;
1995
+ isSearchable: boolean;
1980
1996
  };
1981
1997
  access: {
1982
1998
  rights: "admin" | "write" | "read";
@@ -1994,6 +2010,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
1994
2010
  type: "FILE" | "FOLDER";
1995
2011
  parentId: string | null;
1996
2012
  isFavorite: boolean;
2013
+ currentFileId: string | null;
1997
2014
  } & {
1998
2015
  users: [{
1999
2016
  id: string;
@@ -2003,8 +2020,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2003
2020
  isSearchable: boolean;
2004
2021
  }, "admin" | "write" | "read"][];
2005
2022
  createdBy: {
2006
- appId: string;
2007
- userId: string;
2023
+ id: string;
2024
+ lastname: string;
2025
+ firstname: string;
2026
+ avatar: string | null;
2027
+ isSearchable: boolean;
2008
2028
  };
2009
2029
  access: {
2010
2030
  rights: "admin" | "write" | "read";
@@ -2012,6 +2032,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2012
2032
  isRoot: boolean;
2013
2033
  sharedByPubKey: string;
2014
2034
  };
2035
+ } & {
2036
+ sizes: {
2037
+ size: bigint;
2038
+ sizeBefore: bigint;
2039
+ };
2015
2040
  })[];
2016
2041
  breadcrumb: {
2017
2042
  id: string;
@@ -2029,6 +2054,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2029
2054
  type: "FILE" | "FOLDER";
2030
2055
  parentId: string | null;
2031
2056
  isFavorite: boolean;
2057
+ currentFileId: string | null;
2032
2058
  } & {
2033
2059
  users: [{
2034
2060
  id: string;
@@ -2038,8 +2064,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2038
2064
  isSearchable: boolean;
2039
2065
  }, "admin" | "write" | "read"][];
2040
2066
  createdBy: {
2041
- appId: string;
2042
- userId: string;
2067
+ id: string;
2068
+ lastname: string;
2069
+ firstname: string;
2070
+ avatar: string | null;
2071
+ isSearchable: boolean;
2043
2072
  };
2044
2073
  access: {
2045
2074
  rights: "admin" | "write" | "read";
@@ -2090,6 +2119,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2090
2119
  type: "FILE" | "FOLDER";
2091
2120
  parentId: string | null;
2092
2121
  isFavorite: boolean;
2122
+ currentFileId: string | null;
2093
2123
  } & {
2094
2124
  users: [{
2095
2125
  id: string;
@@ -2099,8 +2129,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2099
2129
  isSearchable: boolean;
2100
2130
  }, "admin" | "write" | "read"][];
2101
2131
  createdBy: {
2102
- appId: string;
2103
- userId: string;
2132
+ id: string;
2133
+ lastname: string;
2134
+ firstname: string;
2135
+ avatar: string | null;
2136
+ isSearchable: boolean;
2104
2137
  };
2105
2138
  access: {
2106
2139
  rights: "admin" | "write" | "read";
@@ -2118,6 +2151,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2118
2151
  type: "FILE" | "FOLDER";
2119
2152
  parentId: string | null;
2120
2153
  isFavorite: boolean;
2154
+ currentFileId: string | null;
2121
2155
  } & {
2122
2156
  users: [{
2123
2157
  id: string;
@@ -2127,8 +2161,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2127
2161
  isSearchable: boolean;
2128
2162
  }, "admin" | "write" | "read"][];
2129
2163
  createdBy: {
2130
- appId: string;
2131
- userId: string;
2164
+ id: string;
2165
+ lastname: string;
2166
+ firstname: string;
2167
+ avatar: string | null;
2168
+ isSearchable: boolean;
2132
2169
  };
2133
2170
  access: {
2134
2171
  rights: "admin" | "write" | "read";
@@ -2136,6 +2173,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2136
2173
  isRoot: boolean;
2137
2174
  sharedByPubKey: string;
2138
2175
  };
2176
+ } & {
2177
+ sizes: {
2178
+ size: bigint;
2179
+ sizeBefore: bigint;
2180
+ };
2139
2181
  })[];
2140
2182
  breadcrumb: {
2141
2183
  id: string;
@@ -2579,6 +2621,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2579
2621
  type: "FILE" | "FOLDER";
2580
2622
  parentId: string | null;
2581
2623
  isFavorite: boolean;
2624
+ currentFileId: string | null;
2582
2625
  } & {
2583
2626
  users: [{
2584
2627
  id: string;
@@ -2588,8 +2631,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2588
2631
  isSearchable: boolean;
2589
2632
  }, "admin" | "write" | "read"][];
2590
2633
  createdBy: {
2591
- appId: string;
2592
- userId: string;
2634
+ id: string;
2635
+ lastname: string;
2636
+ firstname: string;
2637
+ avatar: string | null;
2638
+ isSearchable: boolean;
2593
2639
  };
2594
2640
  access: {
2595
2641
  rights: "admin" | "write" | "read";
@@ -2640,6 +2686,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2640
2686
  type: "FILE" | "FOLDER";
2641
2687
  parentId: string | null;
2642
2688
  isFavorite: boolean;
2689
+ currentFileId: string | null;
2643
2690
  } & {
2644
2691
  users: [{
2645
2692
  id: string;
@@ -2649,8 +2696,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2649
2696
  isSearchable: boolean;
2650
2697
  }, "admin" | "write" | "read"][];
2651
2698
  createdBy: {
2652
- appId: string;
2653
- userId: string;
2699
+ id: string;
2700
+ lastname: string;
2701
+ firstname: string;
2702
+ avatar: string | null;
2703
+ isSearchable: boolean;
2654
2704
  };
2655
2705
  access: {
2656
2706
  rights: "admin" | "write" | "read";
@@ -2668,6 +2718,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2668
2718
  type: "FILE" | "FOLDER";
2669
2719
  parentId: string | null;
2670
2720
  isFavorite: boolean;
2721
+ currentFileId: string | null;
2671
2722
  } & {
2672
2723
  users: [{
2673
2724
  id: string;
@@ -2677,8 +2728,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2677
2728
  isSearchable: boolean;
2678
2729
  }, "admin" | "write" | "read"][];
2679
2730
  createdBy: {
2680
- appId: string;
2681
- userId: string;
2731
+ id: string;
2732
+ lastname: string;
2733
+ firstname: string;
2734
+ avatar: string | null;
2735
+ isSearchable: boolean;
2682
2736
  };
2683
2737
  access: {
2684
2738
  rights: "admin" | "write" | "read";
@@ -2686,6 +2740,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2686
2740
  isRoot: boolean;
2687
2741
  sharedByPubKey: string;
2688
2742
  };
2743
+ } & {
2744
+ sizes: {
2745
+ size: bigint;
2746
+ sizeBefore: bigint;
2747
+ };
2689
2748
  })[];
2690
2749
  breadcrumb: {
2691
2750
  id: string;
@@ -2703,6 +2762,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2703
2762
  type: "FILE" | "FOLDER";
2704
2763
  parentId: string | null;
2705
2764
  isFavorite: boolean;
2765
+ currentFileId: string | null;
2706
2766
  } & {
2707
2767
  users: [{
2708
2768
  id: string;
@@ -2712,8 +2772,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2712
2772
  isSearchable: boolean;
2713
2773
  }, "admin" | "write" | "read"][];
2714
2774
  createdBy: {
2715
- appId: string;
2716
- userId: string;
2775
+ id: string;
2776
+ lastname: string;
2777
+ firstname: string;
2778
+ avatar: string | null;
2779
+ isSearchable: boolean;
2717
2780
  };
2718
2781
  access: {
2719
2782
  rights: "admin" | "write" | "read";
@@ -2764,6 +2827,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2764
2827
  type: "FILE" | "FOLDER";
2765
2828
  parentId: string | null;
2766
2829
  isFavorite: boolean;
2830
+ currentFileId: string | null;
2767
2831
  } & {
2768
2832
  users: [{
2769
2833
  id: string;
@@ -2773,8 +2837,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2773
2837
  isSearchable: boolean;
2774
2838
  }, "admin" | "write" | "read"][];
2775
2839
  createdBy: {
2776
- appId: string;
2777
- userId: string;
2840
+ id: string;
2841
+ lastname: string;
2842
+ firstname: string;
2843
+ avatar: string | null;
2844
+ isSearchable: boolean;
2778
2845
  };
2779
2846
  access: {
2780
2847
  rights: "admin" | "write" | "read";
@@ -2792,6 +2859,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2792
2859
  type: "FILE" | "FOLDER";
2793
2860
  parentId: string | null;
2794
2861
  isFavorite: boolean;
2862
+ currentFileId: string | null;
2795
2863
  } & {
2796
2864
  users: [{
2797
2865
  id: string;
@@ -2801,8 +2869,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2801
2869
  isSearchable: boolean;
2802
2870
  }, "admin" | "write" | "read"][];
2803
2871
  createdBy: {
2804
- appId: string;
2805
- userId: string;
2872
+ id: string;
2873
+ lastname: string;
2874
+ firstname: string;
2875
+ avatar: string | null;
2876
+ isSearchable: boolean;
2806
2877
  };
2807
2878
  access: {
2808
2879
  rights: "admin" | "write" | "read";
@@ -2810,6 +2881,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
2810
2881
  isRoot: boolean;
2811
2882
  sharedByPubKey: string;
2812
2883
  };
2884
+ } & {
2885
+ sizes: {
2886
+ size: bigint;
2887
+ sizeBefore: bigint;
2888
+ };
2813
2889
  })[];
2814
2890
  breadcrumb: {
2815
2891
  id: string;
@@ -3085,6 +3161,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3085
3161
  type: "FILE" | "FOLDER";
3086
3162
  parentId: string | null;
3087
3163
  isFavorite: boolean;
3164
+ currentFileId: string | null;
3088
3165
  } & {
3089
3166
  users: [{
3090
3167
  id: string;
@@ -3094,8 +3171,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3094
3171
  isSearchable: boolean;
3095
3172
  }, "admin" | "write" | "read"][];
3096
3173
  createdBy: {
3097
- appId: string;
3098
- userId: string;
3174
+ id: string;
3175
+ lastname: string;
3176
+ firstname: string;
3177
+ avatar: string | null;
3178
+ isSearchable: boolean;
3099
3179
  };
3100
3180
  access: {
3101
3181
  rights: "admin" | "write" | "read";
@@ -3146,6 +3226,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3146
3226
  type: "FILE" | "FOLDER";
3147
3227
  parentId: string | null;
3148
3228
  isFavorite: boolean;
3229
+ currentFileId: string | null;
3149
3230
  } & {
3150
3231
  users: [{
3151
3232
  id: string;
@@ -3155,8 +3236,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3155
3236
  isSearchable: boolean;
3156
3237
  }, "admin" | "write" | "read"][];
3157
3238
  createdBy: {
3158
- appId: string;
3159
- userId: string;
3239
+ id: string;
3240
+ lastname: string;
3241
+ firstname: string;
3242
+ avatar: string | null;
3243
+ isSearchable: boolean;
3160
3244
  };
3161
3245
  access: {
3162
3246
  rights: "admin" | "write" | "read";
@@ -3174,6 +3258,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3174
3258
  type: "FILE" | "FOLDER";
3175
3259
  parentId: string | null;
3176
3260
  isFavorite: boolean;
3261
+ currentFileId: string | null;
3177
3262
  } & {
3178
3263
  users: [{
3179
3264
  id: string;
@@ -3183,8 +3268,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3183
3268
  isSearchable: boolean;
3184
3269
  }, "admin" | "write" | "read"][];
3185
3270
  createdBy: {
3186
- appId: string;
3187
- userId: string;
3271
+ id: string;
3272
+ lastname: string;
3273
+ firstname: string;
3274
+ avatar: string | null;
3275
+ isSearchable: boolean;
3188
3276
  };
3189
3277
  access: {
3190
3278
  rights: "admin" | "write" | "read";
@@ -3192,6 +3280,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3192
3280
  isRoot: boolean;
3193
3281
  sharedByPubKey: string;
3194
3282
  };
3283
+ } & {
3284
+ sizes: {
3285
+ size: bigint;
3286
+ sizeBefore: bigint;
3287
+ };
3195
3288
  })[];
3196
3289
  breadcrumb: {
3197
3290
  id: string;
@@ -3209,6 +3302,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3209
3302
  type: "FILE" | "FOLDER";
3210
3303
  parentId: string | null;
3211
3304
  isFavorite: boolean;
3305
+ currentFileId: string | null;
3212
3306
  } & {
3213
3307
  users: [{
3214
3308
  id: string;
@@ -3218,8 +3312,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3218
3312
  isSearchable: boolean;
3219
3313
  }, "admin" | "write" | "read"][];
3220
3314
  createdBy: {
3221
- appId: string;
3222
- userId: string;
3315
+ id: string;
3316
+ lastname: string;
3317
+ firstname: string;
3318
+ avatar: string | null;
3319
+ isSearchable: boolean;
3223
3320
  };
3224
3321
  access: {
3225
3322
  rights: "admin" | "write" | "read";
@@ -3270,6 +3367,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3270
3367
  type: "FILE" | "FOLDER";
3271
3368
  parentId: string | null;
3272
3369
  isFavorite: boolean;
3370
+ currentFileId: string | null;
3273
3371
  } & {
3274
3372
  users: [{
3275
3373
  id: string;
@@ -3279,8 +3377,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3279
3377
  isSearchable: boolean;
3280
3378
  }, "admin" | "write" | "read"][];
3281
3379
  createdBy: {
3282
- appId: string;
3283
- userId: string;
3380
+ id: string;
3381
+ lastname: string;
3382
+ firstname: string;
3383
+ avatar: string | null;
3384
+ isSearchable: boolean;
3284
3385
  };
3285
3386
  access: {
3286
3387
  rights: "admin" | "write" | "read";
@@ -3298,6 +3399,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3298
3399
  type: "FILE" | "FOLDER";
3299
3400
  parentId: string | null;
3300
3401
  isFavorite: boolean;
3402
+ currentFileId: string | null;
3301
3403
  } & {
3302
3404
  users: [{
3303
3405
  id: string;
@@ -3307,8 +3409,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3307
3409
  isSearchable: boolean;
3308
3410
  }, "admin" | "write" | "read"][];
3309
3411
  createdBy: {
3310
- appId: string;
3311
- userId: string;
3412
+ id: string;
3413
+ lastname: string;
3414
+ firstname: string;
3415
+ avatar: string | null;
3416
+ isSearchable: boolean;
3312
3417
  };
3313
3418
  access: {
3314
3419
  rights: "admin" | "write" | "read";
@@ -3316,6 +3421,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3316
3421
  isRoot: boolean;
3317
3422
  sharedByPubKey: string;
3318
3423
  };
3424
+ } & {
3425
+ sizes: {
3426
+ size: bigint;
3427
+ sizeBefore: bigint;
3428
+ };
3319
3429
  })[];
3320
3430
  breadcrumb: {
3321
3431
  id: string;
@@ -3677,6 +3787,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3677
3787
  type: "FILE" | "FOLDER";
3678
3788
  parentId: string | null;
3679
3789
  isFavorite: boolean;
3790
+ currentFileId: string | null;
3680
3791
  } & {
3681
3792
  users: [{
3682
3793
  id: string;
@@ -3686,8 +3797,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3686
3797
  isSearchable: boolean;
3687
3798
  }, "admin" | "write" | "read"][];
3688
3799
  createdBy: {
3689
- appId: string;
3690
- userId: string;
3800
+ id: string;
3801
+ lastname: string;
3802
+ firstname: string;
3803
+ avatar: string | null;
3804
+ isSearchable: boolean;
3691
3805
  };
3692
3806
  access: {
3693
3807
  rights: "admin" | "write" | "read";
@@ -3695,6 +3809,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3695
3809
  isRoot: boolean;
3696
3810
  sharedByPubKey: string;
3697
3811
  };
3812
+ } & {
3813
+ sizes: {
3814
+ size: bigint;
3815
+ sizeBefore: bigint;
3816
+ };
3698
3817
  };
3699
3818
  _output_out: {
3700
3819
  id: string;
@@ -3705,6 +3824,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3705
3824
  type: "FILE" | "FOLDER";
3706
3825
  parentId: string | null;
3707
3826
  isFavorite: boolean;
3827
+ currentFileId: string | null;
3708
3828
  } & {
3709
3829
  users: [{
3710
3830
  id: string;
@@ -3714,8 +3834,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3714
3834
  isSearchable: boolean;
3715
3835
  }, "admin" | "write" | "read"][];
3716
3836
  createdBy: {
3717
- appId: string;
3718
- userId: string;
3837
+ id: string;
3838
+ lastname: string;
3839
+ firstname: string;
3840
+ avatar: string | null;
3841
+ isSearchable: boolean;
3719
3842
  };
3720
3843
  access: {
3721
3844
  rights: "admin" | "write" | "read";
@@ -3723,6 +3846,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3723
3846
  isRoot: boolean;
3724
3847
  sharedByPubKey: string;
3725
3848
  };
3849
+ } & {
3850
+ sizes: {
3851
+ size: bigint;
3852
+ sizeBefore: bigint;
3853
+ };
3726
3854
  };
3727
3855
  }, unknown>;
3728
3856
  nodeFullById: _trpc_server.BuildProcedure<"query", {
@@ -3765,6 +3893,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3765
3893
  type: "FILE" | "FOLDER";
3766
3894
  parentId: string | null;
3767
3895
  isFavorite: boolean;
3896
+ currentFileId: string | null;
3768
3897
  } & {
3769
3898
  users: [{
3770
3899
  id: string;
@@ -3774,8 +3903,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3774
3903
  isSearchable: boolean;
3775
3904
  }, "admin" | "write" | "read"][];
3776
3905
  createdBy: {
3777
- appId: string;
3778
- userId: string;
3906
+ id: string;
3907
+ lastname: string;
3908
+ firstname: string;
3909
+ avatar: string | null;
3910
+ isSearchable: boolean;
3779
3911
  };
3780
3912
  access: {
3781
3913
  rights: "admin" | "write" | "read";
@@ -3826,6 +3958,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3826
3958
  type: "FILE" | "FOLDER";
3827
3959
  parentId: string | null;
3828
3960
  isFavorite: boolean;
3961
+ currentFileId: string | null;
3829
3962
  } & {
3830
3963
  users: [{
3831
3964
  id: string;
@@ -3835,8 +3968,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3835
3968
  isSearchable: boolean;
3836
3969
  }, "admin" | "write" | "read"][];
3837
3970
  createdBy: {
3838
- appId: string;
3839
- userId: string;
3971
+ id: string;
3972
+ lastname: string;
3973
+ firstname: string;
3974
+ avatar: string | null;
3975
+ isSearchable: boolean;
3840
3976
  };
3841
3977
  access: {
3842
3978
  rights: "admin" | "write" | "read";
@@ -3854,6 +3990,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3854
3990
  type: "FILE" | "FOLDER";
3855
3991
  parentId: string | null;
3856
3992
  isFavorite: boolean;
3993
+ currentFileId: string | null;
3857
3994
  } & {
3858
3995
  users: [{
3859
3996
  id: string;
@@ -3863,8 +4000,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3863
4000
  isSearchable: boolean;
3864
4001
  }, "admin" | "write" | "read"][];
3865
4002
  createdBy: {
3866
- appId: string;
3867
- userId: string;
4003
+ id: string;
4004
+ lastname: string;
4005
+ firstname: string;
4006
+ avatar: string | null;
4007
+ isSearchable: boolean;
3868
4008
  };
3869
4009
  access: {
3870
4010
  rights: "admin" | "write" | "read";
@@ -3872,6 +4012,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3872
4012
  isRoot: boolean;
3873
4013
  sharedByPubKey: string;
3874
4014
  };
4015
+ } & {
4016
+ sizes: {
4017
+ size: bigint;
4018
+ sizeBefore: bigint;
4019
+ };
3875
4020
  })[];
3876
4021
  breadcrumb: {
3877
4022
  id: string;
@@ -3889,6 +4034,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3889
4034
  type: "FILE" | "FOLDER";
3890
4035
  parentId: string | null;
3891
4036
  isFavorite: boolean;
4037
+ currentFileId: string | null;
3892
4038
  } & {
3893
4039
  users: [{
3894
4040
  id: string;
@@ -3898,8 +4044,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3898
4044
  isSearchable: boolean;
3899
4045
  }, "admin" | "write" | "read"][];
3900
4046
  createdBy: {
3901
- appId: string;
3902
- userId: string;
4047
+ id: string;
4048
+ lastname: string;
4049
+ firstname: string;
4050
+ avatar: string | null;
4051
+ isSearchable: boolean;
3903
4052
  };
3904
4053
  access: {
3905
4054
  rights: "admin" | "write" | "read";
@@ -3950,6 +4099,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3950
4099
  type: "FILE" | "FOLDER";
3951
4100
  parentId: string | null;
3952
4101
  isFavorite: boolean;
4102
+ currentFileId: string | null;
3953
4103
  } & {
3954
4104
  users: [{
3955
4105
  id: string;
@@ -3959,8 +4109,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3959
4109
  isSearchable: boolean;
3960
4110
  }, "admin" | "write" | "read"][];
3961
4111
  createdBy: {
3962
- appId: string;
3963
- userId: string;
4112
+ id: string;
4113
+ lastname: string;
4114
+ firstname: string;
4115
+ avatar: string | null;
4116
+ isSearchable: boolean;
3964
4117
  };
3965
4118
  access: {
3966
4119
  rights: "admin" | "write" | "read";
@@ -3978,6 +4131,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3978
4131
  type: "FILE" | "FOLDER";
3979
4132
  parentId: string | null;
3980
4133
  isFavorite: boolean;
4134
+ currentFileId: string | null;
3981
4135
  } & {
3982
4136
  users: [{
3983
4137
  id: string;
@@ -3987,8 +4141,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3987
4141
  isSearchable: boolean;
3988
4142
  }, "admin" | "write" | "read"][];
3989
4143
  createdBy: {
3990
- appId: string;
3991
- userId: string;
4144
+ id: string;
4145
+ lastname: string;
4146
+ firstname: string;
4147
+ avatar: string | null;
4148
+ isSearchable: boolean;
3992
4149
  };
3993
4150
  access: {
3994
4151
  rights: "admin" | "write" | "read";
@@ -3996,6 +4153,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
3996
4153
  isRoot: boolean;
3997
4154
  sharedByPubKey: string;
3998
4155
  };
4156
+ } & {
4157
+ sizes: {
4158
+ size: bigint;
4159
+ sizeBefore: bigint;
4160
+ };
3999
4161
  })[];
4000
4162
  breadcrumb: {
4001
4163
  id: string;
@@ -4077,6 +4239,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4077
4239
  type: "FILE" | "FOLDER";
4078
4240
  parentId: string | null;
4079
4241
  isFavorite: boolean;
4242
+ currentFileId: string | null;
4080
4243
  } & {
4081
4244
  users: [{
4082
4245
  id: string;
@@ -4086,8 +4249,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4086
4249
  isSearchable: boolean;
4087
4250
  }, "admin" | "write" | "read"][];
4088
4251
  createdBy: {
4089
- appId: string;
4090
- userId: string;
4252
+ id: string;
4253
+ lastname: string;
4254
+ firstname: string;
4255
+ avatar: string | null;
4256
+ isSearchable: boolean;
4091
4257
  };
4092
4258
  access: {
4093
4259
  rights: "admin" | "write" | "read";
@@ -4105,6 +4271,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4105
4271
  type: "FILE" | "FOLDER";
4106
4272
  parentId: string | null;
4107
4273
  isFavorite: boolean;
4274
+ currentFileId: string | null;
4108
4275
  } & {
4109
4276
  users: [{
4110
4277
  id: string;
@@ -4114,8 +4281,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4114
4281
  isSearchable: boolean;
4115
4282
  }, "admin" | "write" | "read"][];
4116
4283
  createdBy: {
4117
- appId: string;
4118
- userId: string;
4284
+ id: string;
4285
+ lastname: string;
4286
+ firstname: string;
4287
+ avatar: string | null;
4288
+ isSearchable: boolean;
4119
4289
  };
4120
4290
  access: {
4121
4291
  rights: "admin" | "write" | "read";
@@ -4163,6 +4333,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4163
4333
  type: "FILE" | "FOLDER";
4164
4334
  parentId: string | null;
4165
4335
  isFavorite: boolean;
4336
+ currentFileId: string | null;
4166
4337
  } & {
4167
4338
  users: [{
4168
4339
  id: string;
@@ -4172,8 +4343,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4172
4343
  isSearchable: boolean;
4173
4344
  }, "admin" | "write" | "read"][];
4174
4345
  createdBy: {
4175
- appId: string;
4176
- userId: string;
4346
+ id: string;
4347
+ lastname: string;
4348
+ firstname: string;
4349
+ avatar: string | null;
4350
+ isSearchable: boolean;
4177
4351
  };
4178
4352
  access: {
4179
4353
  rights: "admin" | "write" | "read";
@@ -4191,6 +4365,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4191
4365
  type: "FILE" | "FOLDER";
4192
4366
  parentId: string | null;
4193
4367
  isFavorite: boolean;
4368
+ currentFileId: string | null;
4194
4369
  } & {
4195
4370
  users: [{
4196
4371
  id: string;
@@ -4200,8 +4375,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4200
4375
  isSearchable: boolean;
4201
4376
  }, "admin" | "write" | "read"][];
4202
4377
  createdBy: {
4203
- appId: string;
4204
- userId: string;
4378
+ id: string;
4379
+ lastname: string;
4380
+ firstname: string;
4381
+ avatar: string | null;
4382
+ isSearchable: boolean;
4205
4383
  };
4206
4384
  access: {
4207
4385
  rights: "admin" | "write" | "read";
@@ -4245,6 +4423,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4245
4423
  type: "FILE" | "FOLDER";
4246
4424
  parentId: string | null;
4247
4425
  isFavorite: boolean;
4426
+ currentFileId: string | null;
4248
4427
  } & {
4249
4428
  users: [{
4250
4429
  id: string;
@@ -4254,8 +4433,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4254
4433
  isSearchable: boolean;
4255
4434
  }, "admin" | "write" | "read"][];
4256
4435
  createdBy: {
4257
- appId: string;
4258
- userId: string;
4436
+ id: string;
4437
+ lastname: string;
4438
+ firstname: string;
4439
+ avatar: string | null;
4440
+ isSearchable: boolean;
4259
4441
  };
4260
4442
  access: {
4261
4443
  rights: "admin" | "write" | "read";
@@ -4273,6 +4455,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4273
4455
  type: "FILE" | "FOLDER";
4274
4456
  parentId: string | null;
4275
4457
  isFavorite: boolean;
4458
+ currentFileId: string | null;
4276
4459
  } & {
4277
4460
  users: [{
4278
4461
  id: string;
@@ -4282,8 +4465,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4282
4465
  isSearchable: boolean;
4283
4466
  }, "admin" | "write" | "read"][];
4284
4467
  createdBy: {
4285
- appId: string;
4286
- userId: string;
4468
+ id: string;
4469
+ lastname: string;
4470
+ firstname: string;
4471
+ avatar: string | null;
4472
+ isSearchable: boolean;
4287
4473
  };
4288
4474
  access: {
4289
4475
  rights: "admin" | "write" | "read";
@@ -4465,6 +4651,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4465
4651
  type: "FILE" | "FOLDER";
4466
4652
  parentId: string | null;
4467
4653
  isFavorite: boolean;
4654
+ currentFileId: string | null;
4468
4655
  } & {
4469
4656
  users: [{
4470
4657
  id: string;
@@ -4474,8 +4661,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4474
4661
  isSearchable: boolean;
4475
4662
  }, "admin" | "write" | "read"][];
4476
4663
  createdBy: {
4477
- appId: string;
4478
- userId: string;
4664
+ id: string;
4665
+ lastname: string;
4666
+ firstname: string;
4667
+ avatar: string | null;
4668
+ isSearchable: boolean;
4479
4669
  };
4480
4670
  access: {
4481
4671
  rights: "admin" | "write" | "read";
@@ -4526,6 +4716,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4526
4716
  type: "FILE" | "FOLDER";
4527
4717
  parentId: string | null;
4528
4718
  isFavorite: boolean;
4719
+ currentFileId: string | null;
4529
4720
  } & {
4530
4721
  users: [{
4531
4722
  id: string;
@@ -4535,8 +4726,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4535
4726
  isSearchable: boolean;
4536
4727
  }, "admin" | "write" | "read"][];
4537
4728
  createdBy: {
4538
- appId: string;
4539
- userId: string;
4729
+ id: string;
4730
+ lastname: string;
4731
+ firstname: string;
4732
+ avatar: string | null;
4733
+ isSearchable: boolean;
4540
4734
  };
4541
4735
  access: {
4542
4736
  rights: "admin" | "write" | "read";
@@ -4554,6 +4748,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4554
4748
  type: "FILE" | "FOLDER";
4555
4749
  parentId: string | null;
4556
4750
  isFavorite: boolean;
4751
+ currentFileId: string | null;
4557
4752
  } & {
4558
4753
  users: [{
4559
4754
  id: string;
@@ -4563,8 +4758,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4563
4758
  isSearchable: boolean;
4564
4759
  }, "admin" | "write" | "read"][];
4565
4760
  createdBy: {
4566
- appId: string;
4567
- userId: string;
4761
+ id: string;
4762
+ lastname: string;
4763
+ firstname: string;
4764
+ avatar: string | null;
4765
+ isSearchable: boolean;
4568
4766
  };
4569
4767
  access: {
4570
4768
  rights: "admin" | "write" | "read";
@@ -4572,6 +4770,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4572
4770
  isRoot: boolean;
4573
4771
  sharedByPubKey: string;
4574
4772
  };
4773
+ } & {
4774
+ sizes: {
4775
+ size: bigint;
4776
+ sizeBefore: bigint;
4777
+ };
4575
4778
  })[];
4576
4779
  breadcrumb: {
4577
4780
  id: string;
@@ -4589,6 +4792,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4589
4792
  type: "FILE" | "FOLDER";
4590
4793
  parentId: string | null;
4591
4794
  isFavorite: boolean;
4795
+ currentFileId: string | null;
4592
4796
  } & {
4593
4797
  users: [{
4594
4798
  id: string;
@@ -4598,8 +4802,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4598
4802
  isSearchable: boolean;
4599
4803
  }, "admin" | "write" | "read"][];
4600
4804
  createdBy: {
4601
- appId: string;
4602
- userId: string;
4805
+ id: string;
4806
+ lastname: string;
4807
+ firstname: string;
4808
+ avatar: string | null;
4809
+ isSearchable: boolean;
4603
4810
  };
4604
4811
  access: {
4605
4812
  rights: "admin" | "write" | "read";
@@ -4650,6 +4857,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4650
4857
  type: "FILE" | "FOLDER";
4651
4858
  parentId: string | null;
4652
4859
  isFavorite: boolean;
4860
+ currentFileId: string | null;
4653
4861
  } & {
4654
4862
  users: [{
4655
4863
  id: string;
@@ -4659,8 +4867,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4659
4867
  isSearchable: boolean;
4660
4868
  }, "admin" | "write" | "read"][];
4661
4869
  createdBy: {
4662
- appId: string;
4663
- userId: string;
4870
+ id: string;
4871
+ lastname: string;
4872
+ firstname: string;
4873
+ avatar: string | null;
4874
+ isSearchable: boolean;
4664
4875
  };
4665
4876
  access: {
4666
4877
  rights: "admin" | "write" | "read";
@@ -4678,6 +4889,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4678
4889
  type: "FILE" | "FOLDER";
4679
4890
  parentId: string | null;
4680
4891
  isFavorite: boolean;
4892
+ currentFileId: string | null;
4681
4893
  } & {
4682
4894
  users: [{
4683
4895
  id: string;
@@ -4687,8 +4899,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4687
4899
  isSearchable: boolean;
4688
4900
  }, "admin" | "write" | "read"][];
4689
4901
  createdBy: {
4690
- appId: string;
4691
- userId: string;
4902
+ id: string;
4903
+ lastname: string;
4904
+ firstname: string;
4905
+ avatar: string | null;
4906
+ isSearchable: boolean;
4692
4907
  };
4693
4908
  access: {
4694
4909
  rights: "admin" | "write" | "read";
@@ -4696,6 +4911,11 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
4696
4911
  isRoot: boolean;
4697
4912
  sharedByPubKey: string;
4698
4913
  };
4914
+ } & {
4915
+ sizes: {
4916
+ size: bigint;
4917
+ sizeBefore: bigint;
4918
+ };
4699
4919
  })[];
4700
4920
  breadcrumb: {
4701
4921
  id: string;
@@ -5049,12 +5269,50 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
5049
5269
  createdAt: Date;
5050
5270
  address: string;
5051
5271
  encryptedKeystore: string;
5052
- };
5272
+ } | null;
5053
5273
  _output_out: {
5054
5274
  userId: string;
5055
5275
  createdAt: Date;
5056
5276
  address: string;
5057
5277
  encryptedKeystore: string;
5278
+ } | null;
5279
+ }, unknown>;
5280
+ updateWallets: _trpc_server.BuildProcedure<"mutation", {
5281
+ _config: _trpc_server.RootConfig<{
5282
+ ctx: {};
5283
+ meta: object;
5284
+ errorShape: {
5285
+ message: string;
5286
+ code: _trpc_server_rpc.TRPC_ERROR_CODE_NUMBER;
5287
+ data: _trpc_server_dist_error_formatter.DefaultErrorData;
5288
+ } | {
5289
+ data: {
5290
+ zodError: zod.typeToFlattenedError<any, string> | null;
5291
+ code: "PARSE_ERROR" | "BAD_REQUEST" | "INTERNAL_SERVER_ERROR" | "NOT_IMPLEMENTED" | "UNAUTHORIZED" | "FORBIDDEN" | "NOT_FOUND" | "METHOD_NOT_SUPPORTED" | "TIMEOUT" | "CONFLICT" | "PRECONDITION_FAILED" | "PAYLOAD_TOO_LARGE" | "UNPROCESSABLE_CONTENT" | "TOO_MANY_REQUESTS" | "CLIENT_CLOSED_REQUEST";
5292
+ httpStatus: number;
5293
+ path?: string | undefined;
5294
+ stack?: string | undefined;
5295
+ };
5296
+ message: string;
5297
+ code: _trpc_server_rpc.TRPC_ERROR_CODE_NUMBER;
5298
+ };
5299
+ transformer: typeof superjson.default;
5300
+ }>;
5301
+ _meta: object;
5302
+ _ctx_out: {};
5303
+ _input_in: {
5304
+ address: string;
5305
+ encryptedKeystore: string;
5306
+ }[];
5307
+ _input_out: {
5308
+ address: string;
5309
+ encryptedKeystore: string;
5310
+ }[];
5311
+ _output_in: {
5312
+ isDone: boolean;
5313
+ };
5314
+ _output_out: {
5315
+ isDone: boolean;
5058
5316
  };
5059
5317
  }, unknown>;
5060
5318
  isTransactionDone: _trpc_server.BuildProcedure<"query", {
@@ -5173,7 +5431,7 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
5173
5431
  amount: string;
5174
5432
  };
5175
5433
  }, unknown>;
5176
- myWallet: _trpc_server.BuildProcedure<"query", {
5434
+ myWallets: _trpc_server.BuildProcedure<"query", {
5177
5435
  _config: _trpc_server.RootConfig<{
5178
5436
  ctx: {};
5179
5437
  meta: object;
@@ -5203,13 +5461,13 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
5203
5461
  createdAt: Date;
5204
5462
  address: string;
5205
5463
  encryptedKeystore: string;
5206
- };
5464
+ }[];
5207
5465
  _output_out: {
5208
5466
  userId: string;
5209
5467
  createdAt: Date;
5210
5468
  address: string;
5211
5469
  encryptedKeystore: string;
5212
- };
5470
+ }[];
5213
5471
  }, unknown>;
5214
5472
  }>;
5215
5473
  database: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<{
@@ -5786,9 +6044,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
5786
6044
  action: _neondatabase_api_client.OperationAction;
5787
6045
  failuresCount: number;
5788
6046
  totalDurationMs: number;
6047
+ error?: string | undefined;
5789
6048
  branchId?: string | undefined;
5790
6049
  endpointId?: string | undefined;
5791
- error?: string | undefined;
5792
6050
  retryAt?: string | undefined;
5793
6051
  };
5794
6052
  _output_out: {
@@ -5799,9 +6057,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
5799
6057
  action: _neondatabase_api_client.OperationAction;
5800
6058
  failuresCount: number;
5801
6059
  totalDurationMs: number;
6060
+ error?: string | undefined;
5802
6061
  branchId?: string | undefined;
5803
6062
  endpointId?: string | undefined;
5804
- error?: string | undefined;
5805
6063
  retryAt?: string | undefined;
5806
6064
  };
5807
6065
  }, unknown>;
@@ -5870,9 +6128,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
5870
6128
  action: _neondatabase_api_client.OperationAction;
5871
6129
  failuresCount: number;
5872
6130
  totalDurationMs: number;
6131
+ error?: string | undefined;
5873
6132
  branchId?: string | undefined;
5874
6133
  endpointId?: string | undefined;
5875
- error?: string | undefined;
5876
6134
  retryAt?: string | undefined;
5877
6135
  }[];
5878
6136
  pagination?: {
@@ -5888,9 +6146,9 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
5888
6146
  action: _neondatabase_api_client.OperationAction;
5889
6147
  failuresCount: number;
5890
6148
  totalDurationMs: number;
6149
+ error?: string | undefined;
5891
6150
  branchId?: string | undefined;
5892
6151
  endpointId?: string | undefined;
5893
- error?: string | undefined;
5894
6152
  retryAt?: string | undefined;
5895
6153
  }[];
5896
6154
  pagination?: {
@@ -6020,16 +6278,16 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
6020
6278
  _output_in: {
6021
6279
  activeTimeSeconds?: number | undefined;
6022
6280
  computeTimeSeconds?: number | undefined;
6281
+ writtenDataBytes?: number | undefined;
6023
6282
  dataTransferBytes?: number | undefined;
6024
6283
  logicalSizeBytes?: number | undefined;
6025
- writtenDataBytes?: number | undefined;
6026
6284
  };
6027
6285
  _output_out: {
6028
6286
  activeTimeSeconds?: number | undefined;
6029
6287
  computeTimeSeconds?: number | undefined;
6288
+ writtenDataBytes?: number | undefined;
6030
6289
  dataTransferBytes?: number | undefined;
6031
6290
  logicalSizeBytes?: number | undefined;
6032
- writtenDataBytes?: number | undefined;
6033
6291
  };
6034
6292
  }, unknown>;
6035
6293
  }>;
@@ -10743,18 +11001,18 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
10743
11001
  state: string;
10744
11002
  collectionMethod: string;
10745
11003
  plan?: string | null | undefined;
10746
- planCode?: string | null | undefined;
11004
+ createdAt?: Date | null | undefined;
11005
+ updatedAt?: Date | null | undefined;
10747
11006
  total?: number | null | undefined;
11007
+ planCode?: string | null | undefined;
10748
11008
  activatedAt?: Date | null | undefined;
10749
11009
  currentPeriodEndsAt?: Date | null | undefined;
10750
11010
  currentPeriodStartedAt?: Date | null | undefined;
10751
11011
  canceledAt?: Date | null | undefined;
10752
- createdAt?: Date | null | undefined;
10753
11012
  expiresAt?: Date | null | undefined;
10754
11013
  pausedAt?: Date | null | undefined;
10755
11014
  trialEndsAt?: Date | null | undefined;
10756
11015
  trialStartedAt?: Date | null | undefined;
10757
- updatedAt?: Date | null | undefined;
10758
11016
  };
10759
11017
  } | null;
10760
11018
  _output_out: {
@@ -10773,18 +11031,18 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
10773
11031
  state: string;
10774
11032
  collectionMethod: string;
10775
11033
  plan?: string | null | undefined;
10776
- planCode?: string | null | undefined;
11034
+ createdAt?: Date | null | undefined;
11035
+ updatedAt?: Date | null | undefined;
10777
11036
  total?: number | null | undefined;
11037
+ planCode?: string | null | undefined;
10778
11038
  activatedAt?: Date | null | undefined;
10779
11039
  currentPeriodEndsAt?: Date | null | undefined;
10780
11040
  currentPeriodStartedAt?: Date | null | undefined;
10781
11041
  canceledAt?: Date | null | undefined;
10782
- createdAt?: Date | null | undefined;
10783
11042
  expiresAt?: Date | null | undefined;
10784
11043
  pausedAt?: Date | null | undefined;
10785
11044
  trialEndsAt?: Date | null | undefined;
10786
11045
  trialStartedAt?: Date | null | undefined;
10787
- updatedAt?: Date | null | undefined;
10788
11046
  };
10789
11047
  } | null;
10790
11048
  }, unknown>;
@@ -12430,16 +12688,16 @@ declare const appRouter: _trpc_server.CreateRouterInner<_trpc_server.RootConfig<
12430
12688
  _meta: object;
12431
12689
  _ctx_out: {};
12432
12690
  _input_in: {
12433
- firstname?: string | null | undefined;
12434
12691
  lastname?: string | null | undefined;
12435
- lang?: "fr" | "en" | null | undefined;
12692
+ firstname?: string | null | undefined;
12436
12693
  isSearchable?: boolean | undefined;
12694
+ lang?: "fr" | "en" | null | undefined;
12437
12695
  };
12438
12696
  _input_out: {
12439
- firstname?: string | null | undefined;
12440
12697
  lastname?: string | null | undefined;
12441
- lang?: "fr" | "en" | null | undefined;
12698
+ firstname?: string | null | undefined;
12442
12699
  isSearchable?: boolean | undefined;
12700
+ lang?: "fr" | "en" | null | undefined;
12443
12701
  };
12444
12702
  _output_in: {
12445
12703
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secrecy/trpc-api-types",
3
- "version": "1.18.0",
3
+ "version": "1.18.1-dev.1",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "access": "public"