nextjs-cms 0.9.22 → 0.9.24

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 (192) hide show
  1. package/README.md +65 -13
  2. package/dist/api/actions/files.d.ts +30 -0
  3. package/dist/api/actions/files.d.ts.map +1 -0
  4. package/dist/api/actions/files.js +234 -0
  5. package/dist/api/actions/index.d.ts +4 -0
  6. package/dist/api/actions/index.d.ts.map +1 -0
  7. package/dist/api/actions/index.js +3 -0
  8. package/dist/api/actions/pages.d.ts +297 -0
  9. package/dist/api/actions/pages.d.ts.map +1 -0
  10. package/dist/api/actions/pages.js +1215 -0
  11. package/dist/api/actions/privileges.d.ts +25 -0
  12. package/dist/api/actions/privileges.d.ts.map +1 -0
  13. package/dist/api/actions/privileges.js +98 -0
  14. package/dist/api/client/index.d.ts +4 -0
  15. package/dist/api/client/index.d.ts.map +1 -0
  16. package/dist/api/client/index.js +3 -0
  17. package/dist/api/client.d.ts +30 -0
  18. package/dist/api/client.d.ts.map +1 -0
  19. package/dist/api/client.js +82 -0
  20. package/dist/api/index.d.ts +1 -938
  21. package/dist/api/index.d.ts.map +1 -1
  22. package/dist/api/index.js +0 -13
  23. package/dist/api/plugin/index.d.ts +7 -0
  24. package/dist/api/plugin/index.d.ts.map +1 -0
  25. package/dist/api/plugin/index.js +5 -0
  26. package/dist/api/root.d.ts +18 -1844
  27. package/dist/api/root.d.ts.map +1 -1
  28. package/dist/api/root.js +18 -83
  29. package/dist/api/server/index.d.ts +8 -0
  30. package/dist/api/server/index.d.ts.map +1 -0
  31. package/dist/api/server/index.js +3 -0
  32. package/dist/api/server.d.ts +2748 -0
  33. package/dist/api/server.d.ts.map +1 -0
  34. package/dist/api/server.js +100 -0
  35. package/dist/api/trpc/client.d.ts +19 -3
  36. package/dist/api/trpc/client.d.ts.map +1 -1
  37. package/dist/api/trpc/client.js +55 -1
  38. package/dist/api/trpc/query-client.d.ts +3 -1
  39. package/dist/api/trpc/query-client.d.ts.map +1 -1
  40. package/dist/api/trpc/query-client.js +25 -20
  41. package/dist/api/trpc/root.d.ts +906 -0
  42. package/dist/api/trpc/root.d.ts.map +1 -0
  43. package/dist/api/trpc/root.js +47 -0
  44. package/dist/api/trpc/routers/accountSettings.d.ts +66 -0
  45. package/dist/api/trpc/routers/accountSettings.d.ts.map +1 -0
  46. package/dist/api/trpc/routers/accountSettings.js +200 -0
  47. package/dist/api/trpc/routers/admins.d.ts +112 -0
  48. package/dist/api/trpc/routers/admins.d.ts.map +1 -0
  49. package/dist/api/trpc/routers/admins.js +331 -0
  50. package/dist/api/trpc/routers/auth.d.ts +54 -0
  51. package/dist/api/trpc/routers/auth.d.ts.map +1 -0
  52. package/dist/api/trpc/routers/auth.js +50 -0
  53. package/dist/api/trpc/routers/categorySection.d.ts +105 -0
  54. package/dist/api/trpc/routers/categorySection.d.ts.map +1 -0
  55. package/dist/api/trpc/routers/categorySection.js +49 -0
  56. package/dist/api/trpc/routers/config.d.ts +48 -0
  57. package/dist/api/trpc/routers/config.d.ts.map +1 -0
  58. package/dist/api/trpc/routers/config.js +18 -0
  59. package/dist/api/trpc/routers/cpanel.d.ts +82 -0
  60. package/dist/api/trpc/routers/cpanel.d.ts.map +1 -0
  61. package/dist/api/trpc/routers/cpanel.js +216 -0
  62. package/dist/api/trpc/routers/fields.d.ts +35 -0
  63. package/dist/api/trpc/routers/fields.d.ts.map +1 -0
  64. package/dist/api/trpc/routers/fields.js +81 -0
  65. package/dist/api/trpc/routers/files.d.ts +34 -0
  66. package/dist/api/trpc/routers/files.d.ts.map +1 -0
  67. package/dist/api/trpc/routers/files.js +14 -0
  68. package/dist/api/trpc/routers/gallery.d.ts +35 -0
  69. package/dist/api/trpc/routers/gallery.d.ts.map +1 -0
  70. package/dist/api/trpc/routers/gallery.js +92 -0
  71. package/dist/api/trpc/routers/hasItemsSection.d.ts +194 -0
  72. package/dist/api/trpc/routers/hasItemsSection.d.ts.map +1 -0
  73. package/dist/api/trpc/routers/hasItemsSection.js +86 -0
  74. package/dist/api/trpc/routers/logs.d.ts +59 -0
  75. package/dist/api/trpc/routers/logs.d.ts.map +1 -0
  76. package/dist/api/trpc/routers/logs.js +79 -0
  77. package/dist/api/trpc/routers/navigation.d.ts +65 -0
  78. package/dist/api/trpc/routers/navigation.d.ts.map +1 -0
  79. package/dist/api/trpc/routers/navigation.js +11 -0
  80. package/dist/api/trpc/routers/simpleSection.d.ts +93 -0
  81. package/dist/api/trpc/routers/simpleSection.d.ts.map +1 -0
  82. package/dist/api/trpc/routers/simpleSection.js +54 -0
  83. package/dist/api/trpc/server.d.ts +2789 -5
  84. package/dist/api/trpc/server.d.ts.map +1 -1
  85. package/dist/api/trpc/server.js +91 -52
  86. package/dist/api/trpc/trpc.d.ts +111 -0
  87. package/dist/api/trpc/trpc.d.ts.map +1 -0
  88. package/dist/api/trpc/trpc.js +99 -0
  89. package/dist/api/trpc/utils/async-caller-proxy.d.ts +2 -0
  90. package/dist/api/trpc/utils/async-caller-proxy.d.ts.map +1 -0
  91. package/dist/api/trpc/utils/async-caller-proxy.js +38 -0
  92. package/dist/api/trpc/utils/refresh-token-link.d.ts +6 -0
  93. package/dist/api/trpc/utils/refresh-token-link.d.ts.map +1 -0
  94. package/dist/api/trpc/utils/refresh-token-link.js +81 -0
  95. package/dist/api/trpc/utils/router-types.d.ts +7 -0
  96. package/dist/api/trpc/utils/router-types.d.ts.map +1 -0
  97. package/dist/api/trpc/utils/router-types.js +0 -0
  98. package/dist/api/use-axios-private.d.ts +6 -0
  99. package/dist/api/use-axios-private.d.ts.map +1 -0
  100. package/dist/api/use-axios-private.js +57 -0
  101. package/dist/api/utils/async-caller-proxy.d.ts +2 -0
  102. package/dist/api/utils/async-caller-proxy.d.ts.map +1 -0
  103. package/dist/api/utils/async-caller-proxy.js +36 -0
  104. package/dist/api/utils/lazy-caller-proxy.d.ts +2 -0
  105. package/dist/api/utils/lazy-caller-proxy.d.ts.map +1 -0
  106. package/dist/api/utils/lazy-caller-proxy.js +36 -0
  107. package/dist/api/utils/router-types.d.ts +7 -0
  108. package/dist/api/utils/router-types.d.ts.map +1 -0
  109. package/dist/api/utils/router-types.js +0 -0
  110. package/dist/auth/hooks/index.d.ts +1 -2
  111. package/dist/auth/hooks/index.d.ts.map +1 -1
  112. package/dist/auth/hooks/index.js +1 -2
  113. package/dist/auth/react.d.ts +1 -2
  114. package/dist/auth/react.d.ts.map +1 -1
  115. package/dist/auth/react.js +1 -2
  116. package/dist/auth/trpc.d.ts +1 -1
  117. package/dist/auth/trpc.d.ts.map +1 -1
  118. package/dist/auth/trpc.js +0 -1
  119. package/dist/cli/lib/fix-master-admin.d.ts.map +1 -1
  120. package/dist/cli/lib/fix-master-admin.js +12 -25
  121. package/dist/cli/lib/update-sections.d.ts.map +1 -1
  122. package/dist/cli/lib/update-sections.js +29 -24
  123. package/dist/core/config/config-loader.d.ts +40 -16
  124. package/dist/core/config/config-loader.d.ts.map +1 -1
  125. package/dist/core/config/config-loader.js +58 -10
  126. package/dist/core/config/index.d.ts +1 -1
  127. package/dist/core/config/index.d.ts.map +1 -1
  128. package/dist/core/config/loader-with-jiti.d.ts.map +1 -1
  129. package/dist/core/config/loader-with-jiti.js +13 -12
  130. package/dist/core/factories/section-factory-with-jiti.d.ts.map +1 -1
  131. package/dist/core/factories/section-factory-with-jiti.js +2 -1
  132. package/dist/core/sections/category.d.ts +6 -6
  133. package/dist/core/sections/hasItems.d.ts +6 -6
  134. package/dist/core/sections/section.d.ts +4 -4
  135. package/dist/core/sections/simple.d.ts +2 -2
  136. package/dist/core/types/index.d.ts +17 -0
  137. package/dist/core/types/index.d.ts.map +1 -1
  138. package/dist/index.d.ts +0 -1
  139. package/dist/index.d.ts.map +1 -1
  140. package/dist/index.js +0 -1
  141. package/dist/plugins/client.d.ts +19 -0
  142. package/dist/plugins/client.d.ts.map +1 -0
  143. package/dist/plugins/client.js +24 -0
  144. package/dist/plugins/define.d.ts +6 -0
  145. package/dist/plugins/define.d.ts.map +1 -0
  146. package/dist/plugins/define.js +3 -0
  147. package/dist/plugins/derive.d.ts +32 -0
  148. package/dist/plugins/derive.d.ts.map +1 -0
  149. package/dist/plugins/derive.js +77 -0
  150. package/dist/plugins/index.d.ts +1 -1
  151. package/dist/plugins/index.d.ts.map +1 -1
  152. package/dist/plugins/loader.d.ts +43 -51
  153. package/dist/plugins/loader.d.ts.map +1 -1
  154. package/dist/plugins/loader.js +115 -58
  155. package/dist/plugins/manifest.d.ts +28 -0
  156. package/dist/plugins/manifest.d.ts.map +1 -0
  157. package/dist/plugins/manifest.js +83 -0
  158. package/dist/plugins/prefetch.d.ts +16 -0
  159. package/dist/plugins/prefetch.d.ts.map +1 -0
  160. package/dist/plugins/prefetch.js +40 -0
  161. package/dist/plugins/registry.d.ts +22 -0
  162. package/dist/plugins/registry.d.ts.map +1 -0
  163. package/dist/plugins/registry.js +25 -0
  164. package/dist/plugins/server.d.ts +2 -0
  165. package/dist/plugins/server.d.ts.map +1 -1
  166. package/dist/plugins/server.js +2 -0
  167. package/dist/plugins/types.d.ts +79 -0
  168. package/dist/plugins/types.d.ts.map +1 -0
  169. package/dist/plugins/types.js +0 -0
  170. package/dist/translations/base/en.d.ts +1 -0
  171. package/dist/translations/base/en.d.ts.map +1 -1
  172. package/dist/translations/base/en.js +1 -0
  173. package/dist/translations/client.d.ts +16 -4
  174. package/dist/translations/client.d.ts.map +1 -1
  175. package/dist/translations/server.d.ts +16 -4
  176. package/dist/translations/server.d.ts.map +1 -1
  177. package/dist/utils/console-log.d.ts +18 -0
  178. package/dist/utils/console-log.d.ts.map +1 -0
  179. package/dist/utils/console-log.js +28 -0
  180. package/dist/utils/index.d.ts +1 -0
  181. package/dist/utils/index.d.ts.map +1 -1
  182. package/dist/utils/index.js +1 -0
  183. package/dist/utils/log.d.ts +18 -0
  184. package/dist/utils/log.d.ts.map +1 -0
  185. package/dist/utils/log.js +28 -0
  186. package/dist/validators/index.d.ts +1 -0
  187. package/dist/validators/index.d.ts.map +1 -1
  188. package/dist/validators/index.js +1 -0
  189. package/dist/validators/tags.d.ts +4 -0
  190. package/dist/validators/tags.d.ts.map +1 -0
  191. package/dist/validators/tags.js +8 -0
  192. package/package.json +28 -18
@@ -1,939 +1,2 @@
1
- import type { inferRouterInputs, inferRouterOutputs } from '@trpc/server';
2
- import type { AppRouter } from './root.js';
3
- import { appRouter, createCallerWithPlugins, getAppRouter } from './root.js';
4
- import { createTRPCContext, privateProcedure, publicProcedure, router, pluginProcedure } from './trpc.js';
5
- /**
6
- * Create a server-side caller for the tRPC API
7
- * @example
8
- * const trpc = createCaller(createContext);
9
- * const res = await trpc.post.all();
10
- * ^? Post[]
11
- */
12
- declare const createCaller: import("@trpc/server").TRPCRouterCaller<{
13
- ctx: {
14
- headers: Headers;
15
- db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../db/schema.js")> & {
16
- $client: import("mysql2/promise").Pool;
17
- };
18
- session: import("../index.js").Session | null;
19
- };
20
- meta: object;
21
- errorShape: {
22
- data: {
23
- zodError: import("zod").ZodFlattenedError<unknown, string> | null;
24
- code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
25
- httpStatus: number;
26
- path?: string;
27
- stack?: string;
28
- };
29
- message: string;
30
- code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
31
- };
32
- transformer: true;
33
- }, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
34
- auth: import("@trpc/server").TRPCBuiltRouter<{
35
- ctx: {
36
- headers: Headers;
37
- db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../db/schema.js")> & {
38
- $client: import("mysql2/promise").Pool;
39
- };
40
- session: import("../index.js").Session | null;
41
- };
42
- meta: object;
43
- errorShape: {
44
- data: {
45
- zodError: import("zod").ZodFlattenedError<unknown, string> | null;
46
- code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
47
- httpStatus: number;
48
- path?: string;
49
- stack?: string;
50
- };
51
- message: string;
52
- code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
53
- };
54
- transformer: true;
55
- }, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
56
- login: import("@trpc/server").TRPCMutationProcedure<{
57
- input: {
58
- username: string;
59
- password: string;
60
- };
61
- output: {
62
- status: number;
63
- session: {
64
- user: {
65
- id: string;
66
- name: string;
67
- language: string;
68
- };
69
- };
70
- user: {
71
- id: string;
72
- username: string;
73
- lang: string;
74
- avatar: string | null;
75
- };
76
- accessToken: string;
77
- };
78
- meta: object;
79
- }>;
80
- logout: import("@trpc/server").TRPCMutationProcedure<{
81
- input: void;
82
- output: boolean;
83
- meta: object;
84
- }>;
85
- }>>;
86
- admins: import("@trpc/server").TRPCBuiltRouter<{
87
- ctx: {
88
- headers: Headers;
89
- db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../db/schema.js")> & {
90
- $client: import("mysql2/promise").Pool;
91
- };
92
- session: import("../index.js").Session | null;
93
- };
94
- meta: object;
95
- errorShape: {
96
- data: {
97
- zodError: import("zod").ZodFlattenedError<unknown, string> | null;
98
- code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
99
- httpStatus: number;
100
- path?: string;
101
- stack?: string;
102
- };
103
- message: string;
104
- code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
105
- };
106
- transformer: true;
107
- }, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
108
- list: import("@trpc/server").TRPCQueryProcedure<{
109
- input: void;
110
- output: {
111
- error: {
112
- message: string;
113
- };
114
- admins?: undefined;
115
- privileges?: undefined;
116
- } | {
117
- admins: {
118
- id: string;
119
- username: string;
120
- avatar: string | null;
121
- roles: {
122
- operations: "C" | "U" | "D" | "CU" | "CD" | "UD" | "CUD";
123
- publisher: boolean | null;
124
- sectionName: string;
125
- }[];
126
- }[];
127
- privileges: {
128
- title: string;
129
- order: number;
130
- sectionType: string;
131
- sectionName: string;
132
- }[];
133
- error?: undefined;
134
- };
135
- meta: object;
136
- }>;
137
- get: import("@trpc/server").TRPCQueryProcedure<{
138
- input: string;
139
- output: {
140
- admin: {
141
- id: string;
142
- user: string;
143
- };
144
- adminRoles: {
145
- sectionName: string;
146
- operations: "C" | "U" | "D" | "CU" | "CD" | "UD" | "CUD";
147
- publisher: boolean | null;
148
- }[];
149
- allRoles: {
150
- title: string;
151
- order: number;
152
- sectionType: string;
153
- sectionName: string;
154
- }[];
155
- };
156
- meta: object;
157
- }>;
158
- create: import("@trpc/server").TRPCMutationProcedure<{
159
- input: {
160
- username: string;
161
- password: string;
162
- privileges: {
163
- sectionName: string;
164
- publisher: boolean | null;
165
- operations: string;
166
- }[];
167
- };
168
- output: {
169
- status: string;
170
- id: string;
171
- };
172
- meta: object;
173
- }>;
174
- update: import("@trpc/server").TRPCMutationProcedure<{
175
- input: {
176
- id: string;
177
- privileges: {
178
- sectionName: string;
179
- publisher: boolean | null;
180
- operations: string;
181
- }[];
182
- };
183
- output: {
184
- status: string;
185
- };
186
- meta: object;
187
- }>;
188
- remove: import("@trpc/server").TRPCMutationProcedure<{
189
- input: {
190
- id: string;
191
- };
192
- output: boolean;
193
- meta: object;
194
- }>;
195
- }>>;
196
- config: import("@trpc/server").TRPCBuiltRouter<{
197
- ctx: {
198
- headers: Headers;
199
- db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../db/schema.js")> & {
200
- $client: import("mysql2/promise").Pool;
201
- };
202
- session: import("../index.js").Session | null;
203
- };
204
- meta: object;
205
- errorShape: {
206
- data: {
207
- zodError: import("zod").ZodFlattenedError<unknown, string> | null;
208
- code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
209
- httpStatus: number;
210
- path?: string;
211
- stack?: string;
212
- };
213
- message: string;
214
- code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
215
- };
216
- transformer: true;
217
- }, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
218
- getI18n: import("@trpc/server").TRPCQueryProcedure<{
219
- input: void;
220
- output: {
221
- supportedLanguages: readonly string[];
222
- fallbackLanguage: string;
223
- };
224
- meta: object;
225
- }>;
226
- getLocalization: import("@trpc/server").TRPCQueryProcedure<{
227
- input: void;
228
- output: {
229
- enabled: boolean;
230
- locales: {
231
- code: string;
232
- label: string;
233
- rtl?: boolean;
234
- }[];
235
- defaultLocale: string;
236
- } | null;
237
- meta: object;
238
- }>;
239
- }>>;
240
- hasItemsSections: import("@trpc/server").TRPCBuiltRouter<{
241
- ctx: {
242
- headers: Headers;
243
- db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../db/schema.js")> & {
244
- $client: import("mysql2/promise").Pool;
245
- };
246
- session: import("../index.js").Session | null;
247
- };
248
- meta: object;
249
- errorShape: {
250
- data: {
251
- zodError: import("zod").ZodFlattenedError<unknown, string> | null;
252
- code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
253
- httpStatus: number;
254
- path?: string;
255
- stack?: string;
256
- };
257
- message: string;
258
- code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
259
- };
260
- transformer: true;
261
- }, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
262
- listItems: import("@trpc/server").TRPCQueryProcedure<{
263
- input: {
264
- sectionName: string;
265
- page?: number | undefined;
266
- q?: string | undefined;
267
- };
268
- output: {
269
- error: {
270
- message: string;
271
- };
272
- section?: undefined;
273
- items?: undefined;
274
- totalCount?: undefined;
275
- } | {
276
- section: {
277
- hasSearch: boolean;
278
- name: string;
279
- title: string;
280
- };
281
- items: (Record<string, any> | {
282
- id: string | number;
283
- headingTitle: string;
284
- coverPhoto: string | null;
285
- createdAt: string;
286
- createdBy: string;
287
- permission: number;
288
- })[];
289
- totalCount: any;
290
- error?: undefined;
291
- };
292
- meta: object;
293
- }>;
294
- newItem: import("@trpc/server").TRPCQueryProcedure<{
295
- input: {
296
- sectionName: string;
297
- };
298
- output: {
299
- error: {
300
- message: any;
301
- };
302
- section?: undefined;
303
- inputGroups?: undefined;
304
- defaultLocale?: undefined;
305
- } | {
306
- section: {
307
- name: string;
308
- title: {
309
- section: string;
310
- singular: string;
311
- plural: string;
312
- };
313
- gallery: import("../index.js").SectionGallery | undefined;
314
- variants: import("../core/types/index.js").Variant[] | undefined;
315
- configFile: string;
316
- };
317
- inputGroups: {
318
- groupId: number;
319
- groupTitle: string;
320
- groupOrder: number;
321
- inputs: {
322
- type: import("../core/types/index.js").FieldType;
323
- name: string;
324
- label: string;
325
- required: boolean;
326
- localized?: boolean;
327
- conditionalFields: import("../core/types/index.js").ConditionalField[];
328
- readonly: boolean;
329
- defaultValue: any;
330
- value: any;
331
- }[];
332
- }[] | undefined;
333
- defaultLocale: {
334
- code: string;
335
- label: string;
336
- rtl?: boolean;
337
- } | null;
338
- error?: undefined;
339
- };
340
- meta: object;
341
- }>;
342
- editItem: import("@trpc/server").TRPCQueryProcedure<{
343
- input: {
344
- sectionName: string;
345
- sectionItemId: string | number;
346
- locale?: string | undefined;
347
- };
348
- output: {
349
- section: {
350
- name: string;
351
- title: {
352
- section: string;
353
- singular: string;
354
- plural: string;
355
- };
356
- gallery: import("../index.js").SectionGallery | undefined;
357
- variants: import("../core/types/index.js").Variant[] | undefined;
358
- configFile: string;
359
- };
360
- inputGroups: {
361
- groupId: number;
362
- groupTitle: string;
363
- groupOrder: number;
364
- inputs: {
365
- type: import("../core/types/index.js").FieldType;
366
- name: string;
367
- label: string;
368
- required: boolean;
369
- localized?: boolean;
370
- conditionalFields: import("../core/types/index.js").ConditionalField[];
371
- readonly: boolean;
372
- defaultValue: any;
373
- value: any;
374
- }[];
375
- }[] | undefined;
376
- gallery: {
377
- referenceId: string;
378
- photo: string;
379
- meta: any;
380
- locale?: string;
381
- }[];
382
- localization: {
383
- defaultLocale: {
384
- code: string;
385
- label: string;
386
- rtl?: boolean;
387
- };
388
- currentLocale: {
389
- code: string;
390
- label: string;
391
- rtl?: boolean;
392
- };
393
- existingTranslations: string[];
394
- locales: {
395
- code: string;
396
- label: string;
397
- rtl?: boolean;
398
- }[];
399
- localeSwitcherEnabled: boolean;
400
- developerNoteEnabled: boolean;
401
- } | null;
402
- error?: undefined;
403
- } | {
404
- error: {
405
- message: any;
406
- };
407
- section?: undefined;
408
- inputGroups?: undefined;
409
- gallery?: undefined;
410
- localization?: undefined;
411
- };
412
- meta: object;
413
- }>;
414
- deleteItem: import("@trpc/server").TRPCMutationProcedure<{
415
- input: {
416
- sectionName: string;
417
- sectionItemId: string | number;
418
- };
419
- output: boolean;
420
- meta: object;
421
- }>;
422
- deleteLocaleTranslation: import("@trpc/server").TRPCMutationProcedure<{
423
- input: {
424
- sectionName: string;
425
- sectionItemId: string | number;
426
- locale: string;
427
- };
428
- output: boolean;
429
- meta: object;
430
- }>;
431
- }>>;
432
- simpleSections: import("@trpc/server").TRPCBuiltRouter<{
433
- ctx: {
434
- headers: Headers;
435
- db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../db/schema.js")> & {
436
- $client: import("mysql2/promise").Pool;
437
- };
438
- session: import("../index.js").Session | null;
439
- };
440
- meta: object;
441
- errorShape: {
442
- data: {
443
- zodError: import("zod").ZodFlattenedError<unknown, string> | null;
444
- code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
445
- httpStatus: number;
446
- path?: string;
447
- stack?: string;
448
- };
449
- message: string;
450
- code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
451
- };
452
- transformer: true;
453
- }, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
454
- create: import("@trpc/server").TRPCQueryProcedure<{
455
- input: {
456
- sectionName: string;
457
- locale?: string | undefined;
458
- };
459
- output: {
460
- error: {
461
- message: string;
462
- };
463
- section?: undefined;
464
- inputGroups?: undefined;
465
- localization?: undefined;
466
- } | {
467
- section: {
468
- name: string;
469
- title: string;
470
- gallery: import("../index.js").SectionGallery | undefined;
471
- variants: import("../core/types/index.js").Variant[] | undefined;
472
- configFile: string;
473
- };
474
- inputGroups: {
475
- groupId: number;
476
- groupTitle: string;
477
- groupOrder: number;
478
- inputs: {
479
- type: import("../core/types/index.js").FieldType;
480
- name: string;
481
- label: string;
482
- required: boolean;
483
- localized?: boolean;
484
- conditionalFields: import("../core/types/index.js").ConditionalField[];
485
- readonly: boolean;
486
- defaultValue: any;
487
- value: any;
488
- }[];
489
- }[] | undefined;
490
- localization: {
491
- defaultLocale: {
492
- code: string;
493
- label: any;
494
- rtl?: boolean;
495
- };
496
- currentLocale: {
497
- code: string;
498
- label: any;
499
- rtl?: boolean;
500
- };
501
- existingTranslations: string[];
502
- locales: {
503
- code: string;
504
- label: any;
505
- rtl?: boolean;
506
- }[];
507
- localeSwitcherEnabled: boolean;
508
- developerNoteEnabled: boolean;
509
- } | null;
510
- error?: undefined;
511
- };
512
- meta: object;
513
- }>;
514
- deleteLocaleTranslation: import("@trpc/server").TRPCMutationProcedure<{
515
- input: {
516
- sectionName: string;
517
- locale: string;
518
- };
519
- output: boolean;
520
- meta: object;
521
- }>;
522
- }>>;
523
- categorySections: import("@trpc/server").TRPCBuiltRouter<{
524
- ctx: {
525
- headers: Headers;
526
- db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../db/schema.js")> & {
527
- $client: import("mysql2/promise").Pool;
528
- };
529
- session: import("../index.js").Session | null;
530
- };
531
- meta: object;
532
- errorShape: {
533
- data: {
534
- zodError: import("zod").ZodFlattenedError<unknown, string> | null;
535
- code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
536
- httpStatus: number;
537
- path?: string;
538
- stack?: string;
539
- };
540
- message: string;
541
- code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
542
- };
543
- transformer: true;
544
- }, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
545
- get: import("@trpc/server").TRPCQueryProcedure<{
546
- input: {
547
- sectionName: string;
548
- };
549
- output: {
550
- error: {
551
- message: string;
552
- };
553
- section?: undefined;
554
- data?: undefined;
555
- } | {
556
- section: {
557
- tableName: string;
558
- sectionName: string;
559
- title: {
560
- section: string;
561
- singular: string;
562
- plural: string;
563
- };
564
- };
565
- data: {
566
- options: {
567
- value: string | number;
568
- label: string;
569
- }[] | undefined;
570
- required: boolean;
571
- name: string;
572
- label: string;
573
- value: {
574
- value: string | number;
575
- label: string;
576
- }[] | undefined;
577
- parentId: string | number | undefined;
578
- level: number;
579
- depth: number | undefined;
580
- sectionName: string;
581
- allowRecursiveDelete: boolean | undefined;
582
- };
583
- error?: undefined;
584
- };
585
- meta: object;
586
- }>;
587
- getChildren: import("@trpc/server").TRPCMutationProcedure<{
588
- input: {
589
- sectionName: string;
590
- parentId: string | number | undefined;
591
- level: number;
592
- };
593
- output: {
594
- error: {
595
- message: string;
596
- };
597
- options?: undefined;
598
- parentId?: undefined;
599
- level?: undefined;
600
- } | {
601
- options: null;
602
- parentId: string | number;
603
- level: number;
604
- error?: undefined;
605
- } | {
606
- options: {
607
- value: any;
608
- label: any;
609
- }[];
610
- parentId: string | number;
611
- level: number;
612
- error?: undefined;
613
- } | undefined;
614
- meta: object;
615
- }>;
616
- deleteItem: import("@trpc/server").TRPCMutationProcedure<{
617
- input: {
618
- sectionName: string;
619
- sectionItemId: string | number;
620
- deleteChildren?: boolean | undefined;
621
- };
622
- output: boolean;
623
- meta: object;
624
- }>;
625
- }>>;
626
- files: import("@trpc/server").TRPCBuiltRouter<{
627
- ctx: {
628
- headers: Headers;
629
- db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../db/schema.js")> & {
630
- $client: import("mysql2/promise").Pool;
631
- };
632
- session: import("../index.js").Session | null;
633
- };
634
- meta: object;
635
- errorShape: {
636
- data: {
637
- zodError: import("zod").ZodFlattenedError<unknown, string> | null;
638
- code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
639
- httpStatus: number;
640
- path?: string;
641
- stack?: string;
642
- };
643
- message: string;
644
- code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
645
- };
646
- transformer: true;
647
- }, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
648
- getPhoto: import("@trpc/server").TRPCQueryProcedure<{
649
- input: {
650
- name: string;
651
- folder: string;
652
- isThumb?: boolean | undefined;
653
- };
654
- output: string;
655
- meta: object;
656
- }>;
657
- }>>;
658
- gallery: import("@trpc/server").TRPCBuiltRouter<{
659
- ctx: {
660
- headers: Headers;
661
- db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../db/schema.js")> & {
662
- $client: import("mysql2/promise").Pool;
663
- };
664
- session: import("../index.js").Session | null;
665
- };
666
- meta: object;
667
- errorShape: {
668
- data: {
669
- zodError: import("zod").ZodFlattenedError<unknown, string> | null;
670
- code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
671
- httpStatus: number;
672
- path?: string;
673
- stack?: string;
674
- };
675
- message: string;
676
- code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
677
- };
678
- transformer: true;
679
- }, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
680
- deletePhoto: import("@trpc/server").TRPCMutationProcedure<{
681
- input: {
682
- sectionName: string;
683
- photoName: string;
684
- referenceId: string;
685
- locale?: string | undefined;
686
- };
687
- output: boolean;
688
- meta: object;
689
- }>;
690
- }>>;
691
- navigation: import("@trpc/server").TRPCBuiltRouter<{
692
- ctx: {
693
- headers: Headers;
694
- db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../db/schema.js")> & {
695
- $client: import("mysql2/promise").Pool;
696
- };
697
- session: import("../index.js").Session | null;
698
- };
699
- meta: object;
700
- errorShape: {
701
- data: {
702
- zodError: import("zod").ZodFlattenedError<unknown, string> | null;
703
- code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
704
- httpStatus: number;
705
- path?: string;
706
- stack?: string;
707
- };
708
- message: string;
709
- code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
710
- };
711
- transformer: true;
712
- }, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
713
- getSidebar: import("@trpc/server").TRPCQueryProcedure<{
714
- input: void;
715
- output: {
716
- fixed_sections: {
717
- title: string;
718
- path: string;
719
- icon: string;
720
- }[];
721
- cat_sections: {
722
- title: string;
723
- path: string;
724
- icon: "section" | "delete" | "upload" | "contact" | "home" | "video" | "edit" | "save" | "logs" | "settings" | "undo" | "search" | "view" | "database" | "users" | "type" | "check" | "image" | "images" | "columns" | "file" | "map" | "package" | "code" | "slice" | "filter" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "anchor" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "badge" | "baggage-claim" | "balloon" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "baseline" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "birdhouse" | "bitcoin" | "blend" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bold" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-search" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "box" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "calendar" | "calendars" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis-off" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "chef-hat" | "cherry" | "chess-bishop" | "chess-king" | "chess-knight" | "chess-pawn" | "chess-queen" | "chess-rook" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chromium" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-pile" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-check" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-backup" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-sync" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "command" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "container" | "contrast" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copy" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "cross" | "crosshair" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "diamond" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "dot" | "download" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "ellipsis" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "ev-charger" | "expand" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-axis-3d" | "file-axis-3-d" | "file-badge" | "file-badge-2" | "file-box" | "file-braces-corner" | "file-json-2" | "file-braces" | "file-json" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-corner" | "file-check-2" | "file-check" | "file-clock" | "file-code-corner" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-exclamation-point" | "file-warning" | "file-headphone" | "file-audio" | "file-audio-2" | "file-heart" | "file-image" | "file-input" | "file-key" | "file-key-2" | "file-lock" | "file-lock-2" | "file-minus-corner" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-corner" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-corner" | "file-search-2" | "file-search" | "file-signal" | "file-volume-2" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-corner" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume" | "file-x-corner" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint-pattern" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "fishing-hook" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "focus" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "form" | "forward" | "frame" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad-directional" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "ghost" | "gift" | "git-branch-minus" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe-x" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "group" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hd" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "heading" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "helicopter" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-heart" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "import" | "inbox" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "italic" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "key" | "keyboard-music" | "keyboard-off" | "keyboard" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers-plus" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "link" | "linkedin" | "list-check" | "list-checks" | "list-chevrons-down-up" | "list-chevrons-up-down" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-indent-decrease" | "outdent" | "indent-decrease" | "list-indent-increase" | "indent" | "indent-increase" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "list" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "menu" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cloud" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "motorbike" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "mouse" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "move" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "navigation" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "option" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left-right-dashed" | "panel-left" | "sidebar" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-bottom-dashed" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "layout" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "pause" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "pen" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "percent" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "play" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "pointer" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "power" | "presentation" | "printer-check" | "printer-x" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "radio" | "radius" | "rail-symbol" | "rainbow" | "rat" | "ratio" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "repeat" | "replace-all" | "replace" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "scale-3d" | "scale-3-d" | "scale" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "scooter" | "screen-share-off" | "screen-share" | "scroll-text" | "scroll" | "search-alert" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "send" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "shapes" | "share-2" | "share" | "sheet" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrink" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "solar-panel" | "soup" | "space" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "split" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "star" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "stone" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "table" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "target" | "telescope" | "tent-tree" | "tent" | "terminal" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-align-center" | "align-center" | "text-align-end" | "align-right" | "text-align-justify" | "align-justify" | "text-align-start" | "text" | "align-left" | "text-cursor-input" | "text-cursor" | "text-initial" | "letter-text" | "text-quote" | "text-search" | "text-select" | "text-selection" | "text-wrap" | "wrap-text" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "timer" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "toolbox" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "triangle" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "underline" | "undo-2" | "undo-dot" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "user" | "users-round" | "users-2" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "van" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "vibrate" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-arrow-down" | "waves-arrow-up" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "weight-tilde" | "weight" | "wheat-off" | "wheat" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrench" | "x" | "youtube" | "zap-off" | "zap" | "zoom-in" | "zoom-out" | undefined;
725
- }[];
726
- has_items_sections: {
727
- title: string;
728
- path: string;
729
- icon: "section" | "delete" | "upload" | "contact" | "home" | "video" | "edit" | "save" | "logs" | "settings" | "undo" | "search" | "view" | "database" | "users" | "type" | "check" | "image" | "images" | "columns" | "file" | "map" | "package" | "code" | "slice" | "filter" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "anchor" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "badge" | "baggage-claim" | "balloon" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "baseline" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "birdhouse" | "bitcoin" | "blend" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bold" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-search" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "box" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "calendar" | "calendars" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis-off" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "chef-hat" | "cherry" | "chess-bishop" | "chess-king" | "chess-knight" | "chess-pawn" | "chess-queen" | "chess-rook" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chromium" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-pile" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-check" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-backup" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-sync" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "command" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "container" | "contrast" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copy" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "cross" | "crosshair" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "diamond" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "dot" | "download" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "ellipsis" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "ev-charger" | "expand" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-axis-3d" | "file-axis-3-d" | "file-badge" | "file-badge-2" | "file-box" | "file-braces-corner" | "file-json-2" | "file-braces" | "file-json" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-corner" | "file-check-2" | "file-check" | "file-clock" | "file-code-corner" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-exclamation-point" | "file-warning" | "file-headphone" | "file-audio" | "file-audio-2" | "file-heart" | "file-image" | "file-input" | "file-key" | "file-key-2" | "file-lock" | "file-lock-2" | "file-minus-corner" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-corner" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-corner" | "file-search-2" | "file-search" | "file-signal" | "file-volume-2" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-corner" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume" | "file-x-corner" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint-pattern" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "fishing-hook" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "focus" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "form" | "forward" | "frame" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad-directional" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "ghost" | "gift" | "git-branch-minus" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe-x" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "group" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hd" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "heading" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "helicopter" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-heart" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "import" | "inbox" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "italic" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "key" | "keyboard-music" | "keyboard-off" | "keyboard" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers-plus" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "link" | "linkedin" | "list-check" | "list-checks" | "list-chevrons-down-up" | "list-chevrons-up-down" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-indent-decrease" | "outdent" | "indent-decrease" | "list-indent-increase" | "indent" | "indent-increase" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "list" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "menu" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cloud" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "motorbike" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "mouse" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "move" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "navigation" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "option" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left-right-dashed" | "panel-left" | "sidebar" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-bottom-dashed" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "layout" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "pause" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "pen" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "percent" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "play" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "pointer" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "power" | "presentation" | "printer-check" | "printer-x" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "radio" | "radius" | "rail-symbol" | "rainbow" | "rat" | "ratio" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "repeat" | "replace-all" | "replace" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "scale-3d" | "scale-3-d" | "scale" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "scooter" | "screen-share-off" | "screen-share" | "scroll-text" | "scroll" | "search-alert" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "send" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "shapes" | "share-2" | "share" | "sheet" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrink" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "solar-panel" | "soup" | "space" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "split" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "star" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "stone" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "table" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "target" | "telescope" | "tent-tree" | "tent" | "terminal" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-align-center" | "align-center" | "text-align-end" | "align-right" | "text-align-justify" | "align-justify" | "text-align-start" | "text" | "align-left" | "text-cursor-input" | "text-cursor" | "text-initial" | "letter-text" | "text-quote" | "text-search" | "text-select" | "text-selection" | "text-wrap" | "wrap-text" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "timer" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "toolbox" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "triangle" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "underline" | "undo-2" | "undo-dot" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "user" | "users-round" | "users-2" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "van" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "vibrate" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-arrow-down" | "waves-arrow-up" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "weight-tilde" | "weight" | "wheat-off" | "wheat" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrench" | "x" | "youtube" | "zap-off" | "zap" | "zoom-in" | "zoom-out" | undefined;
730
- }[];
731
- simple_sections: {
732
- title: string;
733
- path: string;
734
- icon: "section" | "delete" | "upload" | "contact" | "home" | "video" | "edit" | "save" | "logs" | "settings" | "undo" | "search" | "view" | "database" | "users" | "type" | "check" | "image" | "images" | "columns" | "file" | "map" | "package" | "code" | "slice" | "filter" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "anchor" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "badge" | "baggage-claim" | "balloon" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "baseline" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "birdhouse" | "bitcoin" | "blend" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bold" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-search" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "box" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "calendar" | "calendars" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis-off" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "chef-hat" | "cherry" | "chess-bishop" | "chess-king" | "chess-knight" | "chess-pawn" | "chess-queen" | "chess-rook" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chromium" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-pile" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-check" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-backup" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-sync" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "command" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "container" | "contrast" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copy" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "cross" | "crosshair" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "diamond" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "dot" | "download" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "ellipsis" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "ev-charger" | "expand" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-axis-3d" | "file-axis-3-d" | "file-badge" | "file-badge-2" | "file-box" | "file-braces-corner" | "file-json-2" | "file-braces" | "file-json" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-corner" | "file-check-2" | "file-check" | "file-clock" | "file-code-corner" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-exclamation-point" | "file-warning" | "file-headphone" | "file-audio" | "file-audio-2" | "file-heart" | "file-image" | "file-input" | "file-key" | "file-key-2" | "file-lock" | "file-lock-2" | "file-minus-corner" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-corner" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-corner" | "file-search-2" | "file-search" | "file-signal" | "file-volume-2" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-corner" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume" | "file-x-corner" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint-pattern" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "fishing-hook" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "focus" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "form" | "forward" | "frame" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad-directional" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "ghost" | "gift" | "git-branch-minus" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe-x" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "group" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hd" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "heading" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "helicopter" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-heart" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "import" | "inbox" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "italic" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "key" | "keyboard-music" | "keyboard-off" | "keyboard" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers-plus" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "link" | "linkedin" | "list-check" | "list-checks" | "list-chevrons-down-up" | "list-chevrons-up-down" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-indent-decrease" | "outdent" | "indent-decrease" | "list-indent-increase" | "indent" | "indent-increase" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "list" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "menu" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cloud" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "motorbike" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "mouse" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "move" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "navigation" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "option" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left-right-dashed" | "panel-left" | "sidebar" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-bottom-dashed" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "layout" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "pause" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "pen" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "percent" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "play" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "pointer" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "power" | "presentation" | "printer-check" | "printer-x" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "radio" | "radius" | "rail-symbol" | "rainbow" | "rat" | "ratio" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "repeat" | "replace-all" | "replace" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "scale-3d" | "scale-3-d" | "scale" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "scooter" | "screen-share-off" | "screen-share" | "scroll-text" | "scroll" | "search-alert" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "send" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "shapes" | "share-2" | "share" | "sheet" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrink" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "solar-panel" | "soup" | "space" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "split" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "star" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "stone" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "table" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "target" | "telescope" | "tent-tree" | "tent" | "terminal" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-align-center" | "align-center" | "text-align-end" | "align-right" | "text-align-justify" | "align-justify" | "text-align-start" | "text" | "align-left" | "text-cursor-input" | "text-cursor" | "text-initial" | "letter-text" | "text-quote" | "text-search" | "text-select" | "text-selection" | "text-wrap" | "wrap-text" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "timer" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "toolbox" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "triangle" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "underline" | "undo-2" | "undo-dot" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "user" | "users-round" | "users-2" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "van" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "vibrate" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-arrow-down" | "waves-arrow-up" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "weight-tilde" | "weight" | "wheat-off" | "wheat" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrench" | "x" | "youtube" | "zap-off" | "zap" | "zoom-in" | "zoom-out" | undefined;
735
- }[];
736
- };
737
- meta: object;
738
- }>;
739
- }>>;
740
- accountSettings: import("@trpc/server").TRPCBuiltRouter<{
741
- ctx: {
742
- headers: Headers;
743
- db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../db/schema.js")> & {
744
- $client: import("mysql2/promise").Pool;
745
- };
746
- session: import("../index.js").Session | null;
747
- };
748
- meta: object;
749
- errorShape: {
750
- data: {
751
- zodError: import("zod").ZodFlattenedError<unknown, string> | null;
752
- code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
753
- httpStatus: number;
754
- path?: string;
755
- stack?: string;
756
- };
757
- message: string;
758
- code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
759
- };
760
- transformer: true;
761
- }, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
762
- get: import("@trpc/server").TRPCQueryProcedure<{
763
- input: void;
764
- output: {
765
- id: string;
766
- username: string;
767
- emailAddress: string | null;
768
- fullName: string | null;
769
- avatar: string | null;
770
- phoneNumber: string | null;
771
- } | undefined;
772
- meta: object;
773
- }>;
774
- save: import("@trpc/server").TRPCMutationProcedure<{
775
- input: {
776
- emailAddress: string;
777
- fullName: string;
778
- phoneNumber: string;
779
- };
780
- output: boolean;
781
- meta: object;
782
- }>;
783
- changePassword: import("@trpc/server").TRPCMutationProcedure<{
784
- input: {
785
- oldPassword: string;
786
- newPassword: string;
787
- confirmPassword: string;
788
- };
789
- output: boolean;
790
- meta: object;
791
- }>;
792
- updateLanguage: import("@trpc/server").TRPCMutationProcedure<{
793
- input: {
794
- language: string;
795
- };
796
- output: boolean;
797
- meta: object;
798
- }>;
799
- }>>;
800
- fields: import("@trpc/server").TRPCBuiltRouter<{
801
- ctx: {
802
- headers: Headers;
803
- db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../db/schema.js")> & {
804
- $client: import("mysql2/promise").Pool;
805
- };
806
- session: import("../index.js").Session | null;
807
- };
808
- meta: object;
809
- errorShape: {
810
- data: {
811
- zodError: import("zod").ZodFlattenedError<unknown, string> | null;
812
- code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
813
- httpStatus: number;
814
- path?: string;
815
- stack?: string;
816
- };
817
- message: string;
818
- code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
819
- };
820
- transformer: true;
821
- }, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
822
- tagsAutoComplete: import("@trpc/server").TRPCQueryProcedure<{
823
- input: {
824
- sectionName: string;
825
- fieldName: string;
826
- query: string;
827
- locale?: string | undefined;
828
- };
829
- output: string[];
830
- meta: object;
831
- }>;
832
- }>>;
833
- logs: import("@trpc/server").TRPCBuiltRouter<{
834
- ctx: {
835
- headers: Headers;
836
- db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../db/schema.js")> & {
837
- $client: import("mysql2/promise").Pool;
838
- };
839
- session: import("../index.js").Session | null;
840
- };
841
- meta: object;
842
- errorShape: {
843
- data: {
844
- zodError: import("zod").ZodFlattenedError<unknown, string> | null;
845
- code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
846
- httpStatus: number;
847
- path?: string;
848
- stack?: string;
849
- };
850
- message: string;
851
- code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
852
- };
853
- transformer: true;
854
- }, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
855
- list: import("@trpc/server").TRPCQueryProcedure<{
856
- input: {
857
- limit?: number | undefined;
858
- offset?: number | undefined;
859
- eventType?: string | undefined;
860
- actorId?: string | undefined;
861
- sectionName?: string | undefined;
862
- entityType?: string | undefined;
863
- entityId?: string | undefined;
864
- from?: string | undefined;
865
- to?: string | undefined;
866
- } | undefined;
867
- output: {
868
- items: {
869
- id: number;
870
- eventType: string;
871
- actorId: string | null;
872
- actorUsername: string | null;
873
- entityType: string | null;
874
- entityId: string | null;
875
- entityLabel: string | null;
876
- sectionName: string | null;
877
- metadata: string | null;
878
- ipAddress: string | null;
879
- userAgent: string | null;
880
- source: string | null;
881
- createdAt: Date;
882
- }[];
883
- total: number;
884
- limit: number;
885
- offset: number;
886
- };
887
- meta: object;
888
- }>;
889
- }>>;
890
- plugins: import("@trpc/server").TRPCBuiltRouter<{
891
- ctx: {
892
- headers: Headers;
893
- db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../db/schema.js")> & {
894
- $client: import("mysql2/promise").Pool;
895
- };
896
- session: import("../index.js").Session | null;
897
- };
898
- meta: object;
899
- errorShape: {
900
- data: {
901
- zodError: import("zod").ZodFlattenedError<unknown, string> | null;
902
- code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
903
- httpStatus: number;
904
- path?: string;
905
- stack?: string;
906
- };
907
- message: string;
908
- code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
909
- };
910
- transformer: true;
911
- }, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
912
- checkRoute: import("@trpc/server").TRPCQueryProcedure<{
913
- input: {
914
- path: string;
915
- };
916
- output: import("../plugins/loader.js").LoadedPluginRoute | null;
917
- meta: object;
918
- }>;
919
- }>>;
920
- }>>;
921
- /**
922
- * Inference helpers for input types
923
- * @example
924
- * type PostByIdInput = RouterInputs['post']['byId']
925
- * ^? { id: number }
926
- **/
927
- type RouterInputs = inferRouterInputs<AppRouter>;
928
- /**
929
- * Inference helpers for output types
930
- * @example
931
- * type AllPostsOutput = RouterOutputs['post']['all']
932
- * ^? Post[]
933
- **/
934
- type RouterOutputs = inferRouterOutputs<AppRouter>;
935
- export { createTRPCContext, appRouter, createCaller, createCallerWithPlugins, getAppRouter };
936
- export { router, publicProcedure, privateProcedure, pluginProcedure };
937
- export type { AppRouter, RouterInputs, RouterOutputs };
938
- export { axiosPrivate } from './axios/axiosInstance.js';
1
+ export type { RouterRecord, NonConflictingRouterRecord } from './trpc/utils/router-types.js';
939
2
  //# sourceMappingURL=index.d.ts.map