@replyke/core 7.0.0-beta.37 → 7.0.0-beta.39

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 (33) hide show
  1. package/dist/cjs/hooks/auth/useAuth.d.ts +4 -0
  2. package/dist/cjs/hooks/auth/useAuth.js.map +1 -1
  3. package/dist/cjs/hooks/comments/useCommentSectionData.js +1 -1
  4. package/dist/cjs/hooks/comments/useCommentSectionData.js.map +1 -1
  5. package/dist/cjs/hooks/entities/useUpdateEntity.js +6 -2
  6. package/dist/cjs/hooks/entities/useUpdateEntity.js.map +1 -1
  7. package/dist/cjs/hooks/spaces/useUpdateSpace.js +7 -3
  8. package/dist/cjs/hooks/spaces/useUpdateSpace.js.map +1 -1
  9. package/dist/cjs/hooks/users/useUpdateUser.d.ts +4 -0
  10. package/dist/cjs/hooks/users/useUpdateUser.js +43 -5
  11. package/dist/cjs/hooks/users/useUpdateUser.js.map +1 -1
  12. package/dist/cjs/interfaces/models/User.d.ts +5 -0
  13. package/dist/cjs/store/slices/authThunks.d.ts +4 -0
  14. package/dist/cjs/store/slices/authThunks.js +51 -10
  15. package/dist/cjs/store/slices/authThunks.js.map +1 -1
  16. package/dist/cjs/store/slices/entityListsSlice.d.ts +2133 -165
  17. package/dist/esm/hooks/auth/useAuth.d.ts +4 -0
  18. package/dist/esm/hooks/auth/useAuth.js.map +1 -1
  19. package/dist/esm/hooks/comments/useCommentSectionData.js +1 -1
  20. package/dist/esm/hooks/comments/useCommentSectionData.js.map +1 -1
  21. package/dist/esm/hooks/entities/useUpdateEntity.js +6 -2
  22. package/dist/esm/hooks/entities/useUpdateEntity.js.map +1 -1
  23. package/dist/esm/hooks/spaces/useUpdateSpace.js +7 -3
  24. package/dist/esm/hooks/spaces/useUpdateSpace.js.map +1 -1
  25. package/dist/esm/hooks/users/useUpdateUser.d.ts +4 -0
  26. package/dist/esm/hooks/users/useUpdateUser.js +43 -5
  27. package/dist/esm/hooks/users/useUpdateUser.js.map +1 -1
  28. package/dist/esm/interfaces/models/User.d.ts +5 -0
  29. package/dist/esm/store/slices/authThunks.d.ts +4 -0
  30. package/dist/esm/store/slices/authThunks.js +51 -10
  31. package/dist/esm/store/slices/authThunks.js.map +1 -1
  32. package/dist/esm/store/slices/entityListsSlice.d.ts +2133 -165
  33. package/package.json +1 -1
@@ -226,6 +226,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
226
226
  };
227
227
  reputation: number;
228
228
  createdAt: Date;
229
+ avatarFileId: string | null;
230
+ bannerFileId: string | null;
231
+ avatarFile?: {
232
+ id: string;
233
+ projectId: string;
234
+ userId: string | null;
235
+ entityId: string | null;
236
+ commentId: string | null;
237
+ spaceId: string | null;
238
+ type: "image" | "video" | "document" | "other";
239
+ originalPath: string;
240
+ originalSize: number;
241
+ originalMimeType: string;
242
+ position: number;
243
+ metadata: {
244
+ [x: string]: any;
245
+ };
246
+ image?: {
247
+ fileId: string;
248
+ originalWidth: number;
249
+ originalHeight: number;
250
+ variants: {
251
+ [x: string]: {
252
+ path: string;
253
+ publicPath: string;
254
+ width: number;
255
+ height: number;
256
+ size: number;
257
+ format: string;
258
+ };
259
+ };
260
+ processingStatus: "completed" | "failed";
261
+ processingError: string | null;
262
+ format: string;
263
+ quality: number;
264
+ exifStripped: boolean;
265
+ createdAt: Date;
266
+ updatedAt: Date;
267
+ } | undefined;
268
+ createdAt: Date;
269
+ updatedAt: Date;
270
+ } | null | undefined;
271
+ bannerFile?: {
272
+ id: string;
273
+ projectId: string;
274
+ userId: string | null;
275
+ entityId: string | null;
276
+ commentId: string | null;
277
+ spaceId: string | null;
278
+ type: "image" | "video" | "document" | "other";
279
+ originalPath: string;
280
+ originalSize: number;
281
+ originalMimeType: string;
282
+ position: number;
283
+ metadata: {
284
+ [x: string]: any;
285
+ };
286
+ image?: {
287
+ fileId: string;
288
+ originalWidth: number;
289
+ originalHeight: number;
290
+ variants: {
291
+ [x: string]: {
292
+ path: string;
293
+ publicPath: string;
294
+ width: number;
295
+ height: number;
296
+ size: number;
297
+ format: string;
298
+ };
299
+ };
300
+ processingStatus: "completed" | "failed";
301
+ processingError: string | null;
302
+ format: string;
303
+ quality: number;
304
+ exifStripped: boolean;
305
+ createdAt: Date;
306
+ updatedAt: Date;
307
+ } | undefined;
308
+ createdAt: Date;
309
+ updatedAt: Date;
310
+ } | null | undefined;
229
311
  location: {
230
312
  type: "Point";
231
313
  coordinates: [number, number];
@@ -323,6 +405,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
323
405
  };
324
406
  reputation: number;
325
407
  createdAt: Date;
408
+ avatarFileId: string | null;
409
+ bannerFileId: string | null;
410
+ avatarFile?: {
411
+ id: string;
412
+ projectId: string;
413
+ userId: string | null;
414
+ entityId: string | null;
415
+ commentId: string | null;
416
+ spaceId: string | null;
417
+ type: "image" | "video" | "document" | "other";
418
+ originalPath: string;
419
+ originalSize: number;
420
+ originalMimeType: string;
421
+ position: number;
422
+ metadata: {
423
+ [x: string]: any;
424
+ };
425
+ image?: {
426
+ fileId: string;
427
+ originalWidth: number;
428
+ originalHeight: number;
429
+ variants: {
430
+ [x: string]: {
431
+ path: string;
432
+ publicPath: string;
433
+ width: number;
434
+ height: number;
435
+ size: number;
436
+ format: string;
437
+ };
438
+ };
439
+ processingStatus: "completed" | "failed";
440
+ processingError: string | null;
441
+ format: string;
442
+ quality: number;
443
+ exifStripped: boolean;
444
+ createdAt: Date;
445
+ updatedAt: Date;
446
+ } | undefined;
447
+ createdAt: Date;
448
+ updatedAt: Date;
449
+ } | null | undefined;
450
+ bannerFile?: {
451
+ id: string;
452
+ projectId: string;
453
+ userId: string | null;
454
+ entityId: string | null;
455
+ commentId: string | null;
456
+ spaceId: string | null;
457
+ type: "image" | "video" | "document" | "other";
458
+ originalPath: string;
459
+ originalSize: number;
460
+ originalMimeType: string;
461
+ position: number;
462
+ metadata: {
463
+ [x: string]: any;
464
+ };
465
+ image?: {
466
+ fileId: string;
467
+ originalWidth: number;
468
+ originalHeight: number;
469
+ variants: {
470
+ [x: string]: {
471
+ path: string;
472
+ publicPath: string;
473
+ width: number;
474
+ height: number;
475
+ size: number;
476
+ format: string;
477
+ };
478
+ };
479
+ processingStatus: "completed" | "failed";
480
+ processingError: string | null;
481
+ format: string;
482
+ quality: number;
483
+ exifStripped: boolean;
484
+ createdAt: Date;
485
+ updatedAt: Date;
486
+ } | undefined;
487
+ createdAt: Date;
488
+ updatedAt: Date;
489
+ } | null | undefined;
326
490
  location: {
327
491
  type: "Point";
328
492
  coordinates: [number, number];
@@ -520,6 +684,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
520
684
  };
521
685
  reputation: number;
522
686
  createdAt: Date;
687
+ avatarFileId: string | null;
688
+ bannerFileId: string | null;
689
+ avatarFile?: {
690
+ id: string;
691
+ projectId: string;
692
+ userId: string | null;
693
+ entityId: string | null;
694
+ commentId: string | null;
695
+ spaceId: string | null;
696
+ type: "image" | "video" | "document" | "other";
697
+ originalPath: string;
698
+ originalSize: number;
699
+ originalMimeType: string;
700
+ position: number;
701
+ metadata: {
702
+ [x: string]: any;
703
+ };
704
+ image?: {
705
+ fileId: string;
706
+ originalWidth: number;
707
+ originalHeight: number;
708
+ variants: {
709
+ [x: string]: {
710
+ path: string;
711
+ publicPath: string;
712
+ width: number;
713
+ height: number;
714
+ size: number;
715
+ format: string;
716
+ };
717
+ };
718
+ processingStatus: "completed" | "failed";
719
+ processingError: string | null;
720
+ format: string;
721
+ quality: number;
722
+ exifStripped: boolean;
723
+ createdAt: Date;
724
+ updatedAt: Date;
725
+ } | undefined;
726
+ createdAt: Date;
727
+ updatedAt: Date;
728
+ } | null | undefined;
729
+ bannerFile?: {
730
+ id: string;
731
+ projectId: string;
732
+ userId: string | null;
733
+ entityId: string | null;
734
+ commentId: string | null;
735
+ spaceId: string | null;
736
+ type: "image" | "video" | "document" | "other";
737
+ originalPath: string;
738
+ originalSize: number;
739
+ originalMimeType: string;
740
+ position: number;
741
+ metadata: {
742
+ [x: string]: any;
743
+ };
744
+ image?: {
745
+ fileId: string;
746
+ originalWidth: number;
747
+ originalHeight: number;
748
+ variants: {
749
+ [x: string]: {
750
+ path: string;
751
+ publicPath: string;
752
+ width: number;
753
+ height: number;
754
+ size: number;
755
+ format: string;
756
+ };
757
+ };
758
+ processingStatus: "completed" | "failed";
759
+ processingError: string | null;
760
+ format: string;
761
+ quality: number;
762
+ exifStripped: boolean;
763
+ createdAt: Date;
764
+ updatedAt: Date;
765
+ } | undefined;
766
+ createdAt: Date;
767
+ updatedAt: Date;
768
+ } | null | undefined;
523
769
  location: {
524
770
  type: "Point";
525
771
  coordinates: [number, number];
@@ -617,6 +863,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
617
863
  };
618
864
  reputation: number;
619
865
  createdAt: Date;
866
+ avatarFileId: string | null;
867
+ bannerFileId: string | null;
868
+ avatarFile?: {
869
+ id: string;
870
+ projectId: string;
871
+ userId: string | null;
872
+ entityId: string | null;
873
+ commentId: string | null;
874
+ spaceId: string | null;
875
+ type: "image" | "video" | "document" | "other";
876
+ originalPath: string;
877
+ originalSize: number;
878
+ originalMimeType: string;
879
+ position: number;
880
+ metadata: {
881
+ [x: string]: any;
882
+ };
883
+ image?: {
884
+ fileId: string;
885
+ originalWidth: number;
886
+ originalHeight: number;
887
+ variants: {
888
+ [x: string]: {
889
+ path: string;
890
+ publicPath: string;
891
+ width: number;
892
+ height: number;
893
+ size: number;
894
+ format: string;
895
+ };
896
+ };
897
+ processingStatus: "completed" | "failed";
898
+ processingError: string | null;
899
+ format: string;
900
+ quality: number;
901
+ exifStripped: boolean;
902
+ createdAt: Date;
903
+ updatedAt: Date;
904
+ } | undefined;
905
+ createdAt: Date;
906
+ updatedAt: Date;
907
+ } | null | undefined;
908
+ bannerFile?: {
909
+ id: string;
910
+ projectId: string;
911
+ userId: string | null;
912
+ entityId: string | null;
913
+ commentId: string | null;
914
+ spaceId: string | null;
915
+ type: "image" | "video" | "document" | "other";
916
+ originalPath: string;
917
+ originalSize: number;
918
+ originalMimeType: string;
919
+ position: number;
920
+ metadata: {
921
+ [x: string]: any;
922
+ };
923
+ image?: {
924
+ fileId: string;
925
+ originalWidth: number;
926
+ originalHeight: number;
927
+ variants: {
928
+ [x: string]: {
929
+ path: string;
930
+ publicPath: string;
931
+ width: number;
932
+ height: number;
933
+ size: number;
934
+ format: string;
935
+ };
936
+ };
937
+ processingStatus: "completed" | "failed";
938
+ processingError: string | null;
939
+ format: string;
940
+ quality: number;
941
+ exifStripped: boolean;
942
+ createdAt: Date;
943
+ updatedAt: Date;
944
+ } | undefined;
945
+ createdAt: Date;
946
+ updatedAt: Date;
947
+ } | null | undefined;
620
948
  location: {
621
949
  type: "Point";
622
950
  coordinates: [number, number];
@@ -814,67 +1142,149 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
814
1142
  };
815
1143
  reputation: number;
816
1144
  createdAt: Date;
817
- location: {
818
- type: "Point";
819
- coordinates: [number, number];
820
- } | null;
821
- } | null | undefined;
822
- title: string | null;
823
- content: string | null;
824
- mentions: {
825
- id: string;
826
- foreignId?: string | null | undefined;
827
- username: string;
828
- }[];
829
- attachments: {
830
- [x: string]: any;
831
- }[];
832
- files?: {
833
- id: string;
834
- projectId: string;
835
- userId: string | null;
836
- entityId: string | null;
837
- commentId: string | null;
838
- spaceId: string | null;
839
- type: "image" | "video" | "document" | "other";
840
- originalPath: string;
841
- originalSize: number;
842
- originalMimeType: string;
843
- position: number;
844
- metadata: {
845
- [x: string]: any;
846
- };
847
- image?: {
848
- fileId: string;
849
- originalWidth: number;
850
- originalHeight: number;
851
- variants: {
852
- [x: string]: {
853
- path: string;
854
- publicPath: string;
855
- width: number;
856
- height: number;
857
- size: number;
858
- format: string;
859
- };
1145
+ avatarFileId: string | null;
1146
+ bannerFileId: string | null;
1147
+ avatarFile?: {
1148
+ id: string;
1149
+ projectId: string;
1150
+ userId: string | null;
1151
+ entityId: string | null;
1152
+ commentId: string | null;
1153
+ spaceId: string | null;
1154
+ type: "image" | "video" | "document" | "other";
1155
+ originalPath: string;
1156
+ originalSize: number;
1157
+ originalMimeType: string;
1158
+ position: number;
1159
+ metadata: {
1160
+ [x: string]: any;
860
1161
  };
861
- processingStatus: "completed" | "failed";
862
- processingError: string | null;
863
- format: string;
864
- quality: number;
865
- exifStripped: boolean;
866
- createdAt: Date;
867
- updatedAt: Date;
868
- } | undefined;
869
- createdAt: Date;
870
- updatedAt: Date;
871
- }[] | undefined;
872
- keywords: string[];
873
- upvotes: string[];
874
- downvotes: string[];
875
- reactionCounts: {
876
- upvote: number;
877
- downvote: number;
1162
+ image?: {
1163
+ fileId: string;
1164
+ originalWidth: number;
1165
+ originalHeight: number;
1166
+ variants: {
1167
+ [x: string]: {
1168
+ path: string;
1169
+ publicPath: string;
1170
+ width: number;
1171
+ height: number;
1172
+ size: number;
1173
+ format: string;
1174
+ };
1175
+ };
1176
+ processingStatus: "completed" | "failed";
1177
+ processingError: string | null;
1178
+ format: string;
1179
+ quality: number;
1180
+ exifStripped: boolean;
1181
+ createdAt: Date;
1182
+ updatedAt: Date;
1183
+ } | undefined;
1184
+ createdAt: Date;
1185
+ updatedAt: Date;
1186
+ } | null | undefined;
1187
+ bannerFile?: {
1188
+ id: string;
1189
+ projectId: string;
1190
+ userId: string | null;
1191
+ entityId: string | null;
1192
+ commentId: string | null;
1193
+ spaceId: string | null;
1194
+ type: "image" | "video" | "document" | "other";
1195
+ originalPath: string;
1196
+ originalSize: number;
1197
+ originalMimeType: string;
1198
+ position: number;
1199
+ metadata: {
1200
+ [x: string]: any;
1201
+ };
1202
+ image?: {
1203
+ fileId: string;
1204
+ originalWidth: number;
1205
+ originalHeight: number;
1206
+ variants: {
1207
+ [x: string]: {
1208
+ path: string;
1209
+ publicPath: string;
1210
+ width: number;
1211
+ height: number;
1212
+ size: number;
1213
+ format: string;
1214
+ };
1215
+ };
1216
+ processingStatus: "completed" | "failed";
1217
+ processingError: string | null;
1218
+ format: string;
1219
+ quality: number;
1220
+ exifStripped: boolean;
1221
+ createdAt: Date;
1222
+ updatedAt: Date;
1223
+ } | undefined;
1224
+ createdAt: Date;
1225
+ updatedAt: Date;
1226
+ } | null | undefined;
1227
+ location: {
1228
+ type: "Point";
1229
+ coordinates: [number, number];
1230
+ } | null;
1231
+ } | null | undefined;
1232
+ title: string | null;
1233
+ content: string | null;
1234
+ mentions: {
1235
+ id: string;
1236
+ foreignId?: string | null | undefined;
1237
+ username: string;
1238
+ }[];
1239
+ attachments: {
1240
+ [x: string]: any;
1241
+ }[];
1242
+ files?: {
1243
+ id: string;
1244
+ projectId: string;
1245
+ userId: string | null;
1246
+ entityId: string | null;
1247
+ commentId: string | null;
1248
+ spaceId: string | null;
1249
+ type: "image" | "video" | "document" | "other";
1250
+ originalPath: string;
1251
+ originalSize: number;
1252
+ originalMimeType: string;
1253
+ position: number;
1254
+ metadata: {
1255
+ [x: string]: any;
1256
+ };
1257
+ image?: {
1258
+ fileId: string;
1259
+ originalWidth: number;
1260
+ originalHeight: number;
1261
+ variants: {
1262
+ [x: string]: {
1263
+ path: string;
1264
+ publicPath: string;
1265
+ width: number;
1266
+ height: number;
1267
+ size: number;
1268
+ format: string;
1269
+ };
1270
+ };
1271
+ processingStatus: "completed" | "failed";
1272
+ processingError: string | null;
1273
+ format: string;
1274
+ quality: number;
1275
+ exifStripped: boolean;
1276
+ createdAt: Date;
1277
+ updatedAt: Date;
1278
+ } | undefined;
1279
+ createdAt: Date;
1280
+ updatedAt: Date;
1281
+ }[] | undefined;
1282
+ keywords: string[];
1283
+ upvotes: string[];
1284
+ downvotes: string[];
1285
+ reactionCounts: {
1286
+ upvote: number;
1287
+ downvote: number;
878
1288
  like: number;
879
1289
  love: number;
880
1290
  wow: number;
@@ -911,6 +1321,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
911
1321
  };
912
1322
  reputation: number;
913
1323
  createdAt: Date;
1324
+ avatarFileId: string | null;
1325
+ bannerFileId: string | null;
1326
+ avatarFile?: {
1327
+ id: string;
1328
+ projectId: string;
1329
+ userId: string | null;
1330
+ entityId: string | null;
1331
+ commentId: string | null;
1332
+ spaceId: string | null;
1333
+ type: "image" | "video" | "document" | "other";
1334
+ originalPath: string;
1335
+ originalSize: number;
1336
+ originalMimeType: string;
1337
+ position: number;
1338
+ metadata: {
1339
+ [x: string]: any;
1340
+ };
1341
+ image?: {
1342
+ fileId: string;
1343
+ originalWidth: number;
1344
+ originalHeight: number;
1345
+ variants: {
1346
+ [x: string]: {
1347
+ path: string;
1348
+ publicPath: string;
1349
+ width: number;
1350
+ height: number;
1351
+ size: number;
1352
+ format: string;
1353
+ };
1354
+ };
1355
+ processingStatus: "completed" | "failed";
1356
+ processingError: string | null;
1357
+ format: string;
1358
+ quality: number;
1359
+ exifStripped: boolean;
1360
+ createdAt: Date;
1361
+ updatedAt: Date;
1362
+ } | undefined;
1363
+ createdAt: Date;
1364
+ updatedAt: Date;
1365
+ } | null | undefined;
1366
+ bannerFile?: {
1367
+ id: string;
1368
+ projectId: string;
1369
+ userId: string | null;
1370
+ entityId: string | null;
1371
+ commentId: string | null;
1372
+ spaceId: string | null;
1373
+ type: "image" | "video" | "document" | "other";
1374
+ originalPath: string;
1375
+ originalSize: number;
1376
+ originalMimeType: string;
1377
+ position: number;
1378
+ metadata: {
1379
+ [x: string]: any;
1380
+ };
1381
+ image?: {
1382
+ fileId: string;
1383
+ originalWidth: number;
1384
+ originalHeight: number;
1385
+ variants: {
1386
+ [x: string]: {
1387
+ path: string;
1388
+ publicPath: string;
1389
+ width: number;
1390
+ height: number;
1391
+ size: number;
1392
+ format: string;
1393
+ };
1394
+ };
1395
+ processingStatus: "completed" | "failed";
1396
+ processingError: string | null;
1397
+ format: string;
1398
+ quality: number;
1399
+ exifStripped: boolean;
1400
+ createdAt: Date;
1401
+ updatedAt: Date;
1402
+ } | undefined;
1403
+ createdAt: Date;
1404
+ updatedAt: Date;
1405
+ } | null | undefined;
914
1406
  location: {
915
1407
  type: "Point";
916
1408
  coordinates: [number, number];
@@ -1111,6 +1603,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
1111
1603
  };
1112
1604
  reputation: number;
1113
1605
  createdAt: Date;
1606
+ avatarFileId: string | null;
1607
+ bannerFileId: string | null;
1608
+ avatarFile?: {
1609
+ id: string;
1610
+ projectId: string;
1611
+ userId: string | null;
1612
+ entityId: string | null;
1613
+ commentId: string | null;
1614
+ spaceId: string | null;
1615
+ type: "image" | "video" | "document" | "other";
1616
+ originalPath: string;
1617
+ originalSize: number;
1618
+ originalMimeType: string;
1619
+ position: number;
1620
+ metadata: {
1621
+ [x: string]: any;
1622
+ };
1623
+ image?: {
1624
+ fileId: string;
1625
+ originalWidth: number;
1626
+ originalHeight: number;
1627
+ variants: {
1628
+ [x: string]: {
1629
+ path: string;
1630
+ publicPath: string;
1631
+ width: number;
1632
+ height: number;
1633
+ size: number;
1634
+ format: string;
1635
+ };
1636
+ };
1637
+ processingStatus: "completed" | "failed";
1638
+ processingError: string | null;
1639
+ format: string;
1640
+ quality: number;
1641
+ exifStripped: boolean;
1642
+ createdAt: Date;
1643
+ updatedAt: Date;
1644
+ } | undefined;
1645
+ createdAt: Date;
1646
+ updatedAt: Date;
1647
+ } | null | undefined;
1648
+ bannerFile?: {
1649
+ id: string;
1650
+ projectId: string;
1651
+ userId: string | null;
1652
+ entityId: string | null;
1653
+ commentId: string | null;
1654
+ spaceId: string | null;
1655
+ type: "image" | "video" | "document" | "other";
1656
+ originalPath: string;
1657
+ originalSize: number;
1658
+ originalMimeType: string;
1659
+ position: number;
1660
+ metadata: {
1661
+ [x: string]: any;
1662
+ };
1663
+ image?: {
1664
+ fileId: string;
1665
+ originalWidth: number;
1666
+ originalHeight: number;
1667
+ variants: {
1668
+ [x: string]: {
1669
+ path: string;
1670
+ publicPath: string;
1671
+ width: number;
1672
+ height: number;
1673
+ size: number;
1674
+ format: string;
1675
+ };
1676
+ };
1677
+ processingStatus: "completed" | "failed";
1678
+ processingError: string | null;
1679
+ format: string;
1680
+ quality: number;
1681
+ exifStripped: boolean;
1682
+ createdAt: Date;
1683
+ updatedAt: Date;
1684
+ } | undefined;
1685
+ createdAt: Date;
1686
+ updatedAt: Date;
1687
+ } | null | undefined;
1114
1688
  location: {
1115
1689
  type: "Point";
1116
1690
  coordinates: [number, number];
@@ -1208,6 +1782,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
1208
1782
  };
1209
1783
  reputation: number;
1210
1784
  createdAt: Date;
1785
+ avatarFileId: string | null;
1786
+ bannerFileId: string | null;
1787
+ avatarFile?: {
1788
+ id: string;
1789
+ projectId: string;
1790
+ userId: string | null;
1791
+ entityId: string | null;
1792
+ commentId: string | null;
1793
+ spaceId: string | null;
1794
+ type: "image" | "video" | "document" | "other";
1795
+ originalPath: string;
1796
+ originalSize: number;
1797
+ originalMimeType: string;
1798
+ position: number;
1799
+ metadata: {
1800
+ [x: string]: any;
1801
+ };
1802
+ image?: {
1803
+ fileId: string;
1804
+ originalWidth: number;
1805
+ originalHeight: number;
1806
+ variants: {
1807
+ [x: string]: {
1808
+ path: string;
1809
+ publicPath: string;
1810
+ width: number;
1811
+ height: number;
1812
+ size: number;
1813
+ format: string;
1814
+ };
1815
+ };
1816
+ processingStatus: "completed" | "failed";
1817
+ processingError: string | null;
1818
+ format: string;
1819
+ quality: number;
1820
+ exifStripped: boolean;
1821
+ createdAt: Date;
1822
+ updatedAt: Date;
1823
+ } | undefined;
1824
+ createdAt: Date;
1825
+ updatedAt: Date;
1826
+ } | null | undefined;
1827
+ bannerFile?: {
1828
+ id: string;
1829
+ projectId: string;
1830
+ userId: string | null;
1831
+ entityId: string | null;
1832
+ commentId: string | null;
1833
+ spaceId: string | null;
1834
+ type: "image" | "video" | "document" | "other";
1835
+ originalPath: string;
1836
+ originalSize: number;
1837
+ originalMimeType: string;
1838
+ position: number;
1839
+ metadata: {
1840
+ [x: string]: any;
1841
+ };
1842
+ image?: {
1843
+ fileId: string;
1844
+ originalWidth: number;
1845
+ originalHeight: number;
1846
+ variants: {
1847
+ [x: string]: {
1848
+ path: string;
1849
+ publicPath: string;
1850
+ width: number;
1851
+ height: number;
1852
+ size: number;
1853
+ format: string;
1854
+ };
1855
+ };
1856
+ processingStatus: "completed" | "failed";
1857
+ processingError: string | null;
1858
+ format: string;
1859
+ quality: number;
1860
+ exifStripped: boolean;
1861
+ createdAt: Date;
1862
+ updatedAt: Date;
1863
+ } | undefined;
1864
+ createdAt: Date;
1865
+ updatedAt: Date;
1866
+ } | null | undefined;
1211
1867
  location: {
1212
1868
  type: "Point";
1213
1869
  coordinates: [number, number];
@@ -1405,6 +2061,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
1405
2061
  };
1406
2062
  reputation: number;
1407
2063
  createdAt: Date;
2064
+ avatarFileId: string | null;
2065
+ bannerFileId: string | null;
2066
+ avatarFile?: {
2067
+ id: string;
2068
+ projectId: string;
2069
+ userId: string | null;
2070
+ entityId: string | null;
2071
+ commentId: string | null;
2072
+ spaceId: string | null;
2073
+ type: "image" | "video" | "document" | "other";
2074
+ originalPath: string;
2075
+ originalSize: number;
2076
+ originalMimeType: string;
2077
+ position: number;
2078
+ metadata: {
2079
+ [x: string]: any;
2080
+ };
2081
+ image?: {
2082
+ fileId: string;
2083
+ originalWidth: number;
2084
+ originalHeight: number;
2085
+ variants: {
2086
+ [x: string]: {
2087
+ path: string;
2088
+ publicPath: string;
2089
+ width: number;
2090
+ height: number;
2091
+ size: number;
2092
+ format: string;
2093
+ };
2094
+ };
2095
+ processingStatus: "completed" | "failed";
2096
+ processingError: string | null;
2097
+ format: string;
2098
+ quality: number;
2099
+ exifStripped: boolean;
2100
+ createdAt: Date;
2101
+ updatedAt: Date;
2102
+ } | undefined;
2103
+ createdAt: Date;
2104
+ updatedAt: Date;
2105
+ } | null | undefined;
2106
+ bannerFile?: {
2107
+ id: string;
2108
+ projectId: string;
2109
+ userId: string | null;
2110
+ entityId: string | null;
2111
+ commentId: string | null;
2112
+ spaceId: string | null;
2113
+ type: "image" | "video" | "document" | "other";
2114
+ originalPath: string;
2115
+ originalSize: number;
2116
+ originalMimeType: string;
2117
+ position: number;
2118
+ metadata: {
2119
+ [x: string]: any;
2120
+ };
2121
+ image?: {
2122
+ fileId: string;
2123
+ originalWidth: number;
2124
+ originalHeight: number;
2125
+ variants: {
2126
+ [x: string]: {
2127
+ path: string;
2128
+ publicPath: string;
2129
+ width: number;
2130
+ height: number;
2131
+ size: number;
2132
+ format: string;
2133
+ };
2134
+ };
2135
+ processingStatus: "completed" | "failed";
2136
+ processingError: string | null;
2137
+ format: string;
2138
+ quality: number;
2139
+ exifStripped: boolean;
2140
+ createdAt: Date;
2141
+ updatedAt: Date;
2142
+ } | undefined;
2143
+ createdAt: Date;
2144
+ updatedAt: Date;
2145
+ } | null | undefined;
1408
2146
  location: {
1409
2147
  type: "Point";
1410
2148
  coordinates: [number, number];
@@ -1502,6 +2240,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
1502
2240
  };
1503
2241
  reputation: number;
1504
2242
  createdAt: Date;
2243
+ avatarFileId: string | null;
2244
+ bannerFileId: string | null;
2245
+ avatarFile?: {
2246
+ id: string;
2247
+ projectId: string;
2248
+ userId: string | null;
2249
+ entityId: string | null;
2250
+ commentId: string | null;
2251
+ spaceId: string | null;
2252
+ type: "image" | "video" | "document" | "other";
2253
+ originalPath: string;
2254
+ originalSize: number;
2255
+ originalMimeType: string;
2256
+ position: number;
2257
+ metadata: {
2258
+ [x: string]: any;
2259
+ };
2260
+ image?: {
2261
+ fileId: string;
2262
+ originalWidth: number;
2263
+ originalHeight: number;
2264
+ variants: {
2265
+ [x: string]: {
2266
+ path: string;
2267
+ publicPath: string;
2268
+ width: number;
2269
+ height: number;
2270
+ size: number;
2271
+ format: string;
2272
+ };
2273
+ };
2274
+ processingStatus: "completed" | "failed";
2275
+ processingError: string | null;
2276
+ format: string;
2277
+ quality: number;
2278
+ exifStripped: boolean;
2279
+ createdAt: Date;
2280
+ updatedAt: Date;
2281
+ } | undefined;
2282
+ createdAt: Date;
2283
+ updatedAt: Date;
2284
+ } | null | undefined;
2285
+ bannerFile?: {
2286
+ id: string;
2287
+ projectId: string;
2288
+ userId: string | null;
2289
+ entityId: string | null;
2290
+ commentId: string | null;
2291
+ spaceId: string | null;
2292
+ type: "image" | "video" | "document" | "other";
2293
+ originalPath: string;
2294
+ originalSize: number;
2295
+ originalMimeType: string;
2296
+ position: number;
2297
+ metadata: {
2298
+ [x: string]: any;
2299
+ };
2300
+ image?: {
2301
+ fileId: string;
2302
+ originalWidth: number;
2303
+ originalHeight: number;
2304
+ variants: {
2305
+ [x: string]: {
2306
+ path: string;
2307
+ publicPath: string;
2308
+ width: number;
2309
+ height: number;
2310
+ size: number;
2311
+ format: string;
2312
+ };
2313
+ };
2314
+ processingStatus: "completed" | "failed";
2315
+ processingError: string | null;
2316
+ format: string;
2317
+ quality: number;
2318
+ exifStripped: boolean;
2319
+ createdAt: Date;
2320
+ updatedAt: Date;
2321
+ } | undefined;
2322
+ createdAt: Date;
2323
+ updatedAt: Date;
2324
+ } | null | undefined;
1505
2325
  location: {
1506
2326
  type: "Point";
1507
2327
  coordinates: [number, number];
@@ -1582,27 +2402,125 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
1582
2402
  space?: {
1583
2403
  id: string;
1584
2404
  projectId: string;
1585
- shortId: string;
1586
- slug: string | null;
1587
- name: string;
1588
- description: string | null;
1589
- avatarFileId: string | null;
1590
- bannerFileId: string | null;
1591
- userId: string;
1592
- readingPermission: import("../..").ReadingPermission;
1593
- postingPermission: import("../..").PostingPermission;
1594
- requireJoinApproval: boolean;
1595
- parentSpaceId: string | null;
1596
- depth: number;
2405
+ shortId: string;
2406
+ slug: string | null;
2407
+ name: string;
2408
+ description: string | null;
2409
+ avatarFileId: string | null;
2410
+ bannerFileId: string | null;
2411
+ userId: string;
2412
+ readingPermission: import("../..").ReadingPermission;
2413
+ postingPermission: import("../..").PostingPermission;
2414
+ requireJoinApproval: boolean;
2415
+ parentSpaceId: string | null;
2416
+ depth: number;
2417
+ metadata: {
2418
+ [x: string]: any;
2419
+ };
2420
+ createdAt: Date;
2421
+ updatedAt: Date;
2422
+ deletedAt: Date | null;
2423
+ membersCount: number;
2424
+ childSpacesCount: number;
2425
+ isMember?: boolean | undefined;
2426
+ avatarFile?: {
2427
+ id: string;
2428
+ projectId: string;
2429
+ userId: string | null;
2430
+ entityId: string | null;
2431
+ commentId: string | null;
2432
+ spaceId: string | null;
2433
+ type: "image" | "video" | "document" | "other";
2434
+ originalPath: string;
2435
+ originalSize: number;
2436
+ originalMimeType: string;
2437
+ position: number;
2438
+ metadata: {
2439
+ [x: string]: any;
2440
+ };
2441
+ image?: {
2442
+ fileId: string;
2443
+ originalWidth: number;
2444
+ originalHeight: number;
2445
+ variants: {
2446
+ [x: string]: {
2447
+ path: string;
2448
+ publicPath: string;
2449
+ width: number;
2450
+ height: number;
2451
+ size: number;
2452
+ format: string;
2453
+ };
2454
+ };
2455
+ processingStatus: "completed" | "failed";
2456
+ processingError: string | null;
2457
+ format: string;
2458
+ quality: number;
2459
+ exifStripped: boolean;
2460
+ createdAt: Date;
2461
+ updatedAt: Date;
2462
+ } | undefined;
2463
+ createdAt: Date;
2464
+ updatedAt: Date;
2465
+ } | undefined;
2466
+ bannerFile?: {
2467
+ id: string;
2468
+ projectId: string;
2469
+ userId: string | null;
2470
+ entityId: string | null;
2471
+ commentId: string | null;
2472
+ spaceId: string | null;
2473
+ type: "image" | "video" | "document" | "other";
2474
+ originalPath: string;
2475
+ originalSize: number;
2476
+ originalMimeType: string;
2477
+ position: number;
2478
+ metadata: {
2479
+ [x: string]: any;
2480
+ };
2481
+ image?: {
2482
+ fileId: string;
2483
+ originalWidth: number;
2484
+ originalHeight: number;
2485
+ variants: {
2486
+ [x: string]: {
2487
+ path: string;
2488
+ publicPath: string;
2489
+ width: number;
2490
+ height: number;
2491
+ size: number;
2492
+ format: string;
2493
+ };
2494
+ };
2495
+ processingStatus: "completed" | "failed";
2496
+ processingError: string | null;
2497
+ format: string;
2498
+ quality: number;
2499
+ exifStripped: boolean;
2500
+ createdAt: Date;
2501
+ updatedAt: Date;
2502
+ } | undefined;
2503
+ createdAt: Date;
2504
+ updatedAt: Date;
2505
+ } | undefined;
2506
+ } | null | undefined;
2507
+ user?: {
2508
+ id: string;
2509
+ projectId: string;
2510
+ foreignId: string | null;
2511
+ role: import("../..").UserRole;
2512
+ name: string | null;
2513
+ username: string | null;
2514
+ avatar: string | null;
2515
+ bio: string | null;
2516
+ birthdate: Date | null;
1597
2517
  metadata: {
1598
2518
  [x: string]: any;
1599
2519
  };
2520
+ reputation: number;
1600
2521
  createdAt: Date;
1601
- updatedAt: Date;
1602
- deletedAt: Date | null;
1603
- membersCount: number;
1604
- childSpacesCount: number;
1605
- isMember?: boolean | undefined;
2522
+ avatarFileId: string | null;
2523
+ bannerFileId: string | null;
1606
2524
  avatarFile?: {
1607
2525
  id: string;
1608
2526
  projectId: string;
@@ -1642,7 +2560,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
1642
2560
  } | undefined;
1643
2561
  createdAt: Date;
1644
2562
  updatedAt: Date;
1645
- } | undefined;
2563
+ } | null | undefined;
1646
2564
  bannerFile?: {
1647
2565
  id: string;
1648
2566
  projectId: string;
@@ -1682,23 +2600,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
1682
2600
  } | undefined;
1683
2601
  createdAt: Date;
1684
2602
  updatedAt: Date;
1685
- } | undefined;
1686
- } | null | undefined;
1687
- user?: {
1688
- id: string;
1689
- projectId: string;
1690
- foreignId: string | null;
1691
- role: import("../..").UserRole;
1692
- name: string | null;
1693
- username: string | null;
1694
- avatar: string | null;
1695
- bio: string | null;
1696
- birthdate: Date | null;
1697
- metadata: {
1698
- [x: string]: any;
1699
- };
1700
- reputation: number;
1701
- createdAt: Date;
2603
+ } | null | undefined;
1702
2604
  location: {
1703
2605
  type: "Point";
1704
2606
  coordinates: [number, number];
@@ -1796,6 +2698,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
1796
2698
  };
1797
2699
  reputation: number;
1798
2700
  createdAt: Date;
2701
+ avatarFileId: string | null;
2702
+ bannerFileId: string | null;
2703
+ avatarFile?: {
2704
+ id: string;
2705
+ projectId: string;
2706
+ userId: string | null;
2707
+ entityId: string | null;
2708
+ commentId: string | null;
2709
+ spaceId: string | null;
2710
+ type: "image" | "video" | "document" | "other";
2711
+ originalPath: string;
2712
+ originalSize: number;
2713
+ originalMimeType: string;
2714
+ position: number;
2715
+ metadata: {
2716
+ [x: string]: any;
2717
+ };
2718
+ image?: {
2719
+ fileId: string;
2720
+ originalWidth: number;
2721
+ originalHeight: number;
2722
+ variants: {
2723
+ [x: string]: {
2724
+ path: string;
2725
+ publicPath: string;
2726
+ width: number;
2727
+ height: number;
2728
+ size: number;
2729
+ format: string;
2730
+ };
2731
+ };
2732
+ processingStatus: "completed" | "failed";
2733
+ processingError: string | null;
2734
+ format: string;
2735
+ quality: number;
2736
+ exifStripped: boolean;
2737
+ createdAt: Date;
2738
+ updatedAt: Date;
2739
+ } | undefined;
2740
+ createdAt: Date;
2741
+ updatedAt: Date;
2742
+ } | null | undefined;
2743
+ bannerFile?: {
2744
+ id: string;
2745
+ projectId: string;
2746
+ userId: string | null;
2747
+ entityId: string | null;
2748
+ commentId: string | null;
2749
+ spaceId: string | null;
2750
+ type: "image" | "video" | "document" | "other";
2751
+ originalPath: string;
2752
+ originalSize: number;
2753
+ originalMimeType: string;
2754
+ position: number;
2755
+ metadata: {
2756
+ [x: string]: any;
2757
+ };
2758
+ image?: {
2759
+ fileId: string;
2760
+ originalWidth: number;
2761
+ originalHeight: number;
2762
+ variants: {
2763
+ [x: string]: {
2764
+ path: string;
2765
+ publicPath: string;
2766
+ width: number;
2767
+ height: number;
2768
+ size: number;
2769
+ format: string;
2770
+ };
2771
+ };
2772
+ processingStatus: "completed" | "failed";
2773
+ processingError: string | null;
2774
+ format: string;
2775
+ quality: number;
2776
+ exifStripped: boolean;
2777
+ createdAt: Date;
2778
+ updatedAt: Date;
2779
+ } | undefined;
2780
+ createdAt: Date;
2781
+ updatedAt: Date;
2782
+ } | null | undefined;
1799
2783
  location: {
1800
2784
  type: "Point";
1801
2785
  coordinates: [number, number];
@@ -1996,6 +2980,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
1996
2980
  };
1997
2981
  reputation: number;
1998
2982
  createdAt: Date;
2983
+ avatarFileId: string | null;
2984
+ bannerFileId: string | null;
2985
+ avatarFile?: {
2986
+ id: string;
2987
+ projectId: string;
2988
+ userId: string | null;
2989
+ entityId: string | null;
2990
+ commentId: string | null;
2991
+ spaceId: string | null;
2992
+ type: "image" | "video" | "document" | "other";
2993
+ originalPath: string;
2994
+ originalSize: number;
2995
+ originalMimeType: string;
2996
+ position: number;
2997
+ metadata: {
2998
+ [x: string]: any;
2999
+ };
3000
+ image?: {
3001
+ fileId: string;
3002
+ originalWidth: number;
3003
+ originalHeight: number;
3004
+ variants: {
3005
+ [x: string]: {
3006
+ path: string;
3007
+ publicPath: string;
3008
+ width: number;
3009
+ height: number;
3010
+ size: number;
3011
+ format: string;
3012
+ };
3013
+ };
3014
+ processingStatus: "completed" | "failed";
3015
+ processingError: string | null;
3016
+ format: string;
3017
+ quality: number;
3018
+ exifStripped: boolean;
3019
+ createdAt: Date;
3020
+ updatedAt: Date;
3021
+ } | undefined;
3022
+ createdAt: Date;
3023
+ updatedAt: Date;
3024
+ } | null | undefined;
3025
+ bannerFile?: {
3026
+ id: string;
3027
+ projectId: string;
3028
+ userId: string | null;
3029
+ entityId: string | null;
3030
+ commentId: string | null;
3031
+ spaceId: string | null;
3032
+ type: "image" | "video" | "document" | "other";
3033
+ originalPath: string;
3034
+ originalSize: number;
3035
+ originalMimeType: string;
3036
+ position: number;
3037
+ metadata: {
3038
+ [x: string]: any;
3039
+ };
3040
+ image?: {
3041
+ fileId: string;
3042
+ originalWidth: number;
3043
+ originalHeight: number;
3044
+ variants: {
3045
+ [x: string]: {
3046
+ path: string;
3047
+ publicPath: string;
3048
+ width: number;
3049
+ height: number;
3050
+ size: number;
3051
+ format: string;
3052
+ };
3053
+ };
3054
+ processingStatus: "completed" | "failed";
3055
+ processingError: string | null;
3056
+ format: string;
3057
+ quality: number;
3058
+ exifStripped: boolean;
3059
+ createdAt: Date;
3060
+ updatedAt: Date;
3061
+ } | undefined;
3062
+ createdAt: Date;
3063
+ updatedAt: Date;
3064
+ } | null | undefined;
1999
3065
  location: {
2000
3066
  type: "Point";
2001
3067
  coordinates: [number, number];
@@ -2093,6 +3159,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
2093
3159
  };
2094
3160
  reputation: number;
2095
3161
  createdAt: Date;
3162
+ avatarFileId: string | null;
3163
+ bannerFileId: string | null;
3164
+ avatarFile?: {
3165
+ id: string;
3166
+ projectId: string;
3167
+ userId: string | null;
3168
+ entityId: string | null;
3169
+ commentId: string | null;
3170
+ spaceId: string | null;
3171
+ type: "image" | "video" | "document" | "other";
3172
+ originalPath: string;
3173
+ originalSize: number;
3174
+ originalMimeType: string;
3175
+ position: number;
3176
+ metadata: {
3177
+ [x: string]: any;
3178
+ };
3179
+ image?: {
3180
+ fileId: string;
3181
+ originalWidth: number;
3182
+ originalHeight: number;
3183
+ variants: {
3184
+ [x: string]: {
3185
+ path: string;
3186
+ publicPath: string;
3187
+ width: number;
3188
+ height: number;
3189
+ size: number;
3190
+ format: string;
3191
+ };
3192
+ };
3193
+ processingStatus: "completed" | "failed";
3194
+ processingError: string | null;
3195
+ format: string;
3196
+ quality: number;
3197
+ exifStripped: boolean;
3198
+ createdAt: Date;
3199
+ updatedAt: Date;
3200
+ } | undefined;
3201
+ createdAt: Date;
3202
+ updatedAt: Date;
3203
+ } | null | undefined;
3204
+ bannerFile?: {
3205
+ id: string;
3206
+ projectId: string;
3207
+ userId: string | null;
3208
+ entityId: string | null;
3209
+ commentId: string | null;
3210
+ spaceId: string | null;
3211
+ type: "image" | "video" | "document" | "other";
3212
+ originalPath: string;
3213
+ originalSize: number;
3214
+ originalMimeType: string;
3215
+ position: number;
3216
+ metadata: {
3217
+ [x: string]: any;
3218
+ };
3219
+ image?: {
3220
+ fileId: string;
3221
+ originalWidth: number;
3222
+ originalHeight: number;
3223
+ variants: {
3224
+ [x: string]: {
3225
+ path: string;
3226
+ publicPath: string;
3227
+ width: number;
3228
+ height: number;
3229
+ size: number;
3230
+ format: string;
3231
+ };
3232
+ };
3233
+ processingStatus: "completed" | "failed";
3234
+ processingError: string | null;
3235
+ format: string;
3236
+ quality: number;
3237
+ exifStripped: boolean;
3238
+ createdAt: Date;
3239
+ updatedAt: Date;
3240
+ } | undefined;
3241
+ createdAt: Date;
3242
+ updatedAt: Date;
3243
+ } | null | undefined;
2096
3244
  location: {
2097
3245
  type: "Point";
2098
3246
  coordinates: [number, number];
@@ -2176,27 +3324,125 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
2176
3324
  space?: {
2177
3325
  id: string;
2178
3326
  projectId: string;
2179
- shortId: string;
2180
- slug: string | null;
2181
- name: string;
2182
- description: string | null;
2183
- avatarFileId: string | null;
2184
- bannerFileId: string | null;
2185
- userId: string;
2186
- readingPermission: import("../..").ReadingPermission;
2187
- postingPermission: import("../..").PostingPermission;
2188
- requireJoinApproval: boolean;
2189
- parentSpaceId: string | null;
2190
- depth: number;
3327
+ shortId: string;
3328
+ slug: string | null;
3329
+ name: string;
3330
+ description: string | null;
3331
+ avatarFileId: string | null;
3332
+ bannerFileId: string | null;
3333
+ userId: string;
3334
+ readingPermission: import("../..").ReadingPermission;
3335
+ postingPermission: import("../..").PostingPermission;
3336
+ requireJoinApproval: boolean;
3337
+ parentSpaceId: string | null;
3338
+ depth: number;
3339
+ metadata: {
3340
+ [x: string]: any;
3341
+ };
3342
+ createdAt: Date;
3343
+ updatedAt: Date;
3344
+ deletedAt: Date | null;
3345
+ membersCount: number;
3346
+ childSpacesCount: number;
3347
+ isMember?: boolean | undefined;
3348
+ avatarFile?: {
3349
+ id: string;
3350
+ projectId: string;
3351
+ userId: string | null;
3352
+ entityId: string | null;
3353
+ commentId: string | null;
3354
+ spaceId: string | null;
3355
+ type: "image" | "video" | "document" | "other";
3356
+ originalPath: string;
3357
+ originalSize: number;
3358
+ originalMimeType: string;
3359
+ position: number;
3360
+ metadata: {
3361
+ [x: string]: any;
3362
+ };
3363
+ image?: {
3364
+ fileId: string;
3365
+ originalWidth: number;
3366
+ originalHeight: number;
3367
+ variants: {
3368
+ [x: string]: {
3369
+ path: string;
3370
+ publicPath: string;
3371
+ width: number;
3372
+ height: number;
3373
+ size: number;
3374
+ format: string;
3375
+ };
3376
+ };
3377
+ processingStatus: "completed" | "failed";
3378
+ processingError: string | null;
3379
+ format: string;
3380
+ quality: number;
3381
+ exifStripped: boolean;
3382
+ createdAt: Date;
3383
+ updatedAt: Date;
3384
+ } | undefined;
3385
+ createdAt: Date;
3386
+ updatedAt: Date;
3387
+ } | undefined;
3388
+ bannerFile?: {
3389
+ id: string;
3390
+ projectId: string;
3391
+ userId: string | null;
3392
+ entityId: string | null;
3393
+ commentId: string | null;
3394
+ spaceId: string | null;
3395
+ type: "image" | "video" | "document" | "other";
3396
+ originalPath: string;
3397
+ originalSize: number;
3398
+ originalMimeType: string;
3399
+ position: number;
3400
+ metadata: {
3401
+ [x: string]: any;
3402
+ };
3403
+ image?: {
3404
+ fileId: string;
3405
+ originalWidth: number;
3406
+ originalHeight: number;
3407
+ variants: {
3408
+ [x: string]: {
3409
+ path: string;
3410
+ publicPath: string;
3411
+ width: number;
3412
+ height: number;
3413
+ size: number;
3414
+ format: string;
3415
+ };
3416
+ };
3417
+ processingStatus: "completed" | "failed";
3418
+ processingError: string | null;
3419
+ format: string;
3420
+ quality: number;
3421
+ exifStripped: boolean;
3422
+ createdAt: Date;
3423
+ updatedAt: Date;
3424
+ } | undefined;
3425
+ createdAt: Date;
3426
+ updatedAt: Date;
3427
+ } | undefined;
3428
+ } | null | undefined;
3429
+ user?: {
3430
+ id: string;
3431
+ projectId: string;
3432
+ foreignId: string | null;
3433
+ role: import("../..").UserRole;
3434
+ name: string | null;
3435
+ username: string | null;
3436
+ avatar: string | null;
3437
+ bio: string | null;
3438
+ birthdate: Date | null;
2191
3439
  metadata: {
2192
3440
  [x: string]: any;
2193
3441
  };
3442
+ reputation: number;
2194
3443
  createdAt: Date;
2195
- updatedAt: Date;
2196
- deletedAt: Date | null;
2197
- membersCount: number;
2198
- childSpacesCount: number;
2199
- isMember?: boolean | undefined;
3444
+ avatarFileId: string | null;
3445
+ bannerFileId: string | null;
2200
3446
  avatarFile?: {
2201
3447
  id: string;
2202
3448
  projectId: string;
@@ -2236,7 +3482,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
2236
3482
  } | undefined;
2237
3483
  createdAt: Date;
2238
3484
  updatedAt: Date;
2239
- } | undefined;
3485
+ } | null | undefined;
2240
3486
  bannerFile?: {
2241
3487
  id: string;
2242
3488
  projectId: string;
@@ -2276,23 +3522,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
2276
3522
  } | undefined;
2277
3523
  createdAt: Date;
2278
3524
  updatedAt: Date;
2279
- } | undefined;
2280
- } | null | undefined;
2281
- user?: {
2282
- id: string;
2283
- projectId: string;
2284
- foreignId: string | null;
2285
- role: import("../..").UserRole;
2286
- name: string | null;
2287
- username: string | null;
2288
- avatar: string | null;
2289
- bio: string | null;
2290
- birthdate: Date | null;
2291
- metadata: {
2292
- [x: string]: any;
2293
- };
2294
- reputation: number;
2295
- createdAt: Date;
3525
+ } | null | undefined;
2296
3526
  location: {
2297
3527
  type: "Point";
2298
3528
  coordinates: [number, number];
@@ -2390,6 +3620,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
2390
3620
  };
2391
3621
  reputation: number;
2392
3622
  createdAt: Date;
3623
+ avatarFileId: string | null;
3624
+ bannerFileId: string | null;
3625
+ avatarFile?: {
3626
+ id: string;
3627
+ projectId: string;
3628
+ userId: string | null;
3629
+ entityId: string | null;
3630
+ commentId: string | null;
3631
+ spaceId: string | null;
3632
+ type: "image" | "video" | "document" | "other";
3633
+ originalPath: string;
3634
+ originalSize: number;
3635
+ originalMimeType: string;
3636
+ position: number;
3637
+ metadata: {
3638
+ [x: string]: any;
3639
+ };
3640
+ image?: {
3641
+ fileId: string;
3642
+ originalWidth: number;
3643
+ originalHeight: number;
3644
+ variants: {
3645
+ [x: string]: {
3646
+ path: string;
3647
+ publicPath: string;
3648
+ width: number;
3649
+ height: number;
3650
+ size: number;
3651
+ format: string;
3652
+ };
3653
+ };
3654
+ processingStatus: "completed" | "failed";
3655
+ processingError: string | null;
3656
+ format: string;
3657
+ quality: number;
3658
+ exifStripped: boolean;
3659
+ createdAt: Date;
3660
+ updatedAt: Date;
3661
+ } | undefined;
3662
+ createdAt: Date;
3663
+ updatedAt: Date;
3664
+ } | null | undefined;
3665
+ bannerFile?: {
3666
+ id: string;
3667
+ projectId: string;
3668
+ userId: string | null;
3669
+ entityId: string | null;
3670
+ commentId: string | null;
3671
+ spaceId: string | null;
3672
+ type: "image" | "video" | "document" | "other";
3673
+ originalPath: string;
3674
+ originalSize: number;
3675
+ originalMimeType: string;
3676
+ position: number;
3677
+ metadata: {
3678
+ [x: string]: any;
3679
+ };
3680
+ image?: {
3681
+ fileId: string;
3682
+ originalWidth: number;
3683
+ originalHeight: number;
3684
+ variants: {
3685
+ [x: string]: {
3686
+ path: string;
3687
+ publicPath: string;
3688
+ width: number;
3689
+ height: number;
3690
+ size: number;
3691
+ format: string;
3692
+ };
3693
+ };
3694
+ processingStatus: "completed" | "failed";
3695
+ processingError: string | null;
3696
+ format: string;
3697
+ quality: number;
3698
+ exifStripped: boolean;
3699
+ createdAt: Date;
3700
+ updatedAt: Date;
3701
+ } | undefined;
3702
+ createdAt: Date;
3703
+ updatedAt: Date;
3704
+ } | null | undefined;
2393
3705
  location: {
2394
3706
  type: "Point";
2395
3707
  coordinates: [number, number];
@@ -2587,6 +3899,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
2587
3899
  };
2588
3900
  reputation: number;
2589
3901
  createdAt: Date;
3902
+ avatarFileId: string | null;
3903
+ bannerFileId: string | null;
3904
+ avatarFile?: {
3905
+ id: string;
3906
+ projectId: string;
3907
+ userId: string | null;
3908
+ entityId: string | null;
3909
+ commentId: string | null;
3910
+ spaceId: string | null;
3911
+ type: "image" | "video" | "document" | "other";
3912
+ originalPath: string;
3913
+ originalSize: number;
3914
+ originalMimeType: string;
3915
+ position: number;
3916
+ metadata: {
3917
+ [x: string]: any;
3918
+ };
3919
+ image?: {
3920
+ fileId: string;
3921
+ originalWidth: number;
3922
+ originalHeight: number;
3923
+ variants: {
3924
+ [x: string]: {
3925
+ path: string;
3926
+ publicPath: string;
3927
+ width: number;
3928
+ height: number;
3929
+ size: number;
3930
+ format: string;
3931
+ };
3932
+ };
3933
+ processingStatus: "completed" | "failed";
3934
+ processingError: string | null;
3935
+ format: string;
3936
+ quality: number;
3937
+ exifStripped: boolean;
3938
+ createdAt: Date;
3939
+ updatedAt: Date;
3940
+ } | undefined;
3941
+ createdAt: Date;
3942
+ updatedAt: Date;
3943
+ } | null | undefined;
3944
+ bannerFile?: {
3945
+ id: string;
3946
+ projectId: string;
3947
+ userId: string | null;
3948
+ entityId: string | null;
3949
+ commentId: string | null;
3950
+ spaceId: string | null;
3951
+ type: "image" | "video" | "document" | "other";
3952
+ originalPath: string;
3953
+ originalSize: number;
3954
+ originalMimeType: string;
3955
+ position: number;
3956
+ metadata: {
3957
+ [x: string]: any;
3958
+ };
3959
+ image?: {
3960
+ fileId: string;
3961
+ originalWidth: number;
3962
+ originalHeight: number;
3963
+ variants: {
3964
+ [x: string]: {
3965
+ path: string;
3966
+ publicPath: string;
3967
+ width: number;
3968
+ height: number;
3969
+ size: number;
3970
+ format: string;
3971
+ };
3972
+ };
3973
+ processingStatus: "completed" | "failed";
3974
+ processingError: string | null;
3975
+ format: string;
3976
+ quality: number;
3977
+ exifStripped: boolean;
3978
+ createdAt: Date;
3979
+ updatedAt: Date;
3980
+ } | undefined;
3981
+ createdAt: Date;
3982
+ updatedAt: Date;
3983
+ } | null | undefined;
2590
3984
  location: {
2591
3985
  type: "Point";
2592
3986
  coordinates: [number, number];
@@ -2684,6 +4078,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
2684
4078
  };
2685
4079
  reputation: number;
2686
4080
  createdAt: Date;
4081
+ avatarFileId: string | null;
4082
+ bannerFileId: string | null;
4083
+ avatarFile?: {
4084
+ id: string;
4085
+ projectId: string;
4086
+ userId: string | null;
4087
+ entityId: string | null;
4088
+ commentId: string | null;
4089
+ spaceId: string | null;
4090
+ type: "image" | "video" | "document" | "other";
4091
+ originalPath: string;
4092
+ originalSize: number;
4093
+ originalMimeType: string;
4094
+ position: number;
4095
+ metadata: {
4096
+ [x: string]: any;
4097
+ };
4098
+ image?: {
4099
+ fileId: string;
4100
+ originalWidth: number;
4101
+ originalHeight: number;
4102
+ variants: {
4103
+ [x: string]: {
4104
+ path: string;
4105
+ publicPath: string;
4106
+ width: number;
4107
+ height: number;
4108
+ size: number;
4109
+ format: string;
4110
+ };
4111
+ };
4112
+ processingStatus: "completed" | "failed";
4113
+ processingError: string | null;
4114
+ format: string;
4115
+ quality: number;
4116
+ exifStripped: boolean;
4117
+ createdAt: Date;
4118
+ updatedAt: Date;
4119
+ } | undefined;
4120
+ createdAt: Date;
4121
+ updatedAt: Date;
4122
+ } | null | undefined;
4123
+ bannerFile?: {
4124
+ id: string;
4125
+ projectId: string;
4126
+ userId: string | null;
4127
+ entityId: string | null;
4128
+ commentId: string | null;
4129
+ spaceId: string | null;
4130
+ type: "image" | "video" | "document" | "other";
4131
+ originalPath: string;
4132
+ originalSize: number;
4133
+ originalMimeType: string;
4134
+ position: number;
4135
+ metadata: {
4136
+ [x: string]: any;
4137
+ };
4138
+ image?: {
4139
+ fileId: string;
4140
+ originalWidth: number;
4141
+ originalHeight: number;
4142
+ variants: {
4143
+ [x: string]: {
4144
+ path: string;
4145
+ publicPath: string;
4146
+ width: number;
4147
+ height: number;
4148
+ size: number;
4149
+ format: string;
4150
+ };
4151
+ };
4152
+ processingStatus: "completed" | "failed";
4153
+ processingError: string | null;
4154
+ format: string;
4155
+ quality: number;
4156
+ exifStripped: boolean;
4157
+ createdAt: Date;
4158
+ updatedAt: Date;
4159
+ } | undefined;
4160
+ createdAt: Date;
4161
+ updatedAt: Date;
4162
+ } | null | undefined;
2687
4163
  location: {
2688
4164
  type: "Point";
2689
4165
  coordinates: [number, number];
@@ -2764,27 +4240,125 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
2764
4240
  space?: {
2765
4241
  id: string;
2766
4242
  projectId: string;
2767
- shortId: string;
2768
- slug: string | null;
2769
- name: string;
2770
- description: string | null;
2771
- avatarFileId: string | null;
2772
- bannerFileId: string | null;
2773
- userId: string;
2774
- readingPermission: import("../..").ReadingPermission;
2775
- postingPermission: import("../..").PostingPermission;
2776
- requireJoinApproval: boolean;
2777
- parentSpaceId: string | null;
2778
- depth: number;
4243
+ shortId: string;
4244
+ slug: string | null;
4245
+ name: string;
4246
+ description: string | null;
4247
+ avatarFileId: string | null;
4248
+ bannerFileId: string | null;
4249
+ userId: string;
4250
+ readingPermission: import("../..").ReadingPermission;
4251
+ postingPermission: import("../..").PostingPermission;
4252
+ requireJoinApproval: boolean;
4253
+ parentSpaceId: string | null;
4254
+ depth: number;
4255
+ metadata: {
4256
+ [x: string]: any;
4257
+ };
4258
+ createdAt: Date;
4259
+ updatedAt: Date;
4260
+ deletedAt: Date | null;
4261
+ membersCount: number;
4262
+ childSpacesCount: number;
4263
+ isMember?: boolean | undefined;
4264
+ avatarFile?: {
4265
+ id: string;
4266
+ projectId: string;
4267
+ userId: string | null;
4268
+ entityId: string | null;
4269
+ commentId: string | null;
4270
+ spaceId: string | null;
4271
+ type: "image" | "video" | "document" | "other";
4272
+ originalPath: string;
4273
+ originalSize: number;
4274
+ originalMimeType: string;
4275
+ position: number;
4276
+ metadata: {
4277
+ [x: string]: any;
4278
+ };
4279
+ image?: {
4280
+ fileId: string;
4281
+ originalWidth: number;
4282
+ originalHeight: number;
4283
+ variants: {
4284
+ [x: string]: {
4285
+ path: string;
4286
+ publicPath: string;
4287
+ width: number;
4288
+ height: number;
4289
+ size: number;
4290
+ format: string;
4291
+ };
4292
+ };
4293
+ processingStatus: "completed" | "failed";
4294
+ processingError: string | null;
4295
+ format: string;
4296
+ quality: number;
4297
+ exifStripped: boolean;
4298
+ createdAt: Date;
4299
+ updatedAt: Date;
4300
+ } | undefined;
4301
+ createdAt: Date;
4302
+ updatedAt: Date;
4303
+ } | undefined;
4304
+ bannerFile?: {
4305
+ id: string;
4306
+ projectId: string;
4307
+ userId: string | null;
4308
+ entityId: string | null;
4309
+ commentId: string | null;
4310
+ spaceId: string | null;
4311
+ type: "image" | "video" | "document" | "other";
4312
+ originalPath: string;
4313
+ originalSize: number;
4314
+ originalMimeType: string;
4315
+ position: number;
4316
+ metadata: {
4317
+ [x: string]: any;
4318
+ };
4319
+ image?: {
4320
+ fileId: string;
4321
+ originalWidth: number;
4322
+ originalHeight: number;
4323
+ variants: {
4324
+ [x: string]: {
4325
+ path: string;
4326
+ publicPath: string;
4327
+ width: number;
4328
+ height: number;
4329
+ size: number;
4330
+ format: string;
4331
+ };
4332
+ };
4333
+ processingStatus: "completed" | "failed";
4334
+ processingError: string | null;
4335
+ format: string;
4336
+ quality: number;
4337
+ exifStripped: boolean;
4338
+ createdAt: Date;
4339
+ updatedAt: Date;
4340
+ } | undefined;
4341
+ createdAt: Date;
4342
+ updatedAt: Date;
4343
+ } | undefined;
4344
+ } | null | undefined;
4345
+ user?: {
4346
+ id: string;
4347
+ projectId: string;
4348
+ foreignId: string | null;
4349
+ role: import("../..").UserRole;
4350
+ name: string | null;
4351
+ username: string | null;
4352
+ avatar: string | null;
4353
+ bio: string | null;
4354
+ birthdate: Date | null;
2779
4355
  metadata: {
2780
4356
  [x: string]: any;
2781
4357
  };
4358
+ reputation: number;
2782
4359
  createdAt: Date;
2783
- updatedAt: Date;
2784
- deletedAt: Date | null;
2785
- membersCount: number;
2786
- childSpacesCount: number;
2787
- isMember?: boolean | undefined;
4360
+ avatarFileId: string | null;
4361
+ bannerFileId: string | null;
2788
4362
  avatarFile?: {
2789
4363
  id: string;
2790
4364
  projectId: string;
@@ -2824,7 +4398,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
2824
4398
  } | undefined;
2825
4399
  createdAt: Date;
2826
4400
  updatedAt: Date;
2827
- } | undefined;
4401
+ } | null | undefined;
2828
4402
  bannerFile?: {
2829
4403
  id: string;
2830
4404
  projectId: string;
@@ -2864,23 +4438,7 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
2864
4438
  } | undefined;
2865
4439
  createdAt: Date;
2866
4440
  updatedAt: Date;
2867
- } | undefined;
2868
- } | null | undefined;
2869
- user?: {
2870
- id: string;
2871
- projectId: string;
2872
- foreignId: string | null;
2873
- role: import("../..").UserRole;
2874
- name: string | null;
2875
- username: string | null;
2876
- avatar: string | null;
2877
- bio: string | null;
2878
- birthdate: Date | null;
2879
- metadata: {
2880
- [x: string]: any;
2881
- };
2882
- reputation: number;
2883
- createdAt: Date;
4441
+ } | null | undefined;
2884
4442
  location: {
2885
4443
  type: "Point";
2886
4444
  coordinates: [number, number];
@@ -2978,6 +4536,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
2978
4536
  };
2979
4537
  reputation: number;
2980
4538
  createdAt: Date;
4539
+ avatarFileId: string | null;
4540
+ bannerFileId: string | null;
4541
+ avatarFile?: {
4542
+ id: string;
4543
+ projectId: string;
4544
+ userId: string | null;
4545
+ entityId: string | null;
4546
+ commentId: string | null;
4547
+ spaceId: string | null;
4548
+ type: "image" | "video" | "document" | "other";
4549
+ originalPath: string;
4550
+ originalSize: number;
4551
+ originalMimeType: string;
4552
+ position: number;
4553
+ metadata: {
4554
+ [x: string]: any;
4555
+ };
4556
+ image?: {
4557
+ fileId: string;
4558
+ originalWidth: number;
4559
+ originalHeight: number;
4560
+ variants: {
4561
+ [x: string]: {
4562
+ path: string;
4563
+ publicPath: string;
4564
+ width: number;
4565
+ height: number;
4566
+ size: number;
4567
+ format: string;
4568
+ };
4569
+ };
4570
+ processingStatus: "completed" | "failed";
4571
+ processingError: string | null;
4572
+ format: string;
4573
+ quality: number;
4574
+ exifStripped: boolean;
4575
+ createdAt: Date;
4576
+ updatedAt: Date;
4577
+ } | undefined;
4578
+ createdAt: Date;
4579
+ updatedAt: Date;
4580
+ } | null | undefined;
4581
+ bannerFile?: {
4582
+ id: string;
4583
+ projectId: string;
4584
+ userId: string | null;
4585
+ entityId: string | null;
4586
+ commentId: string | null;
4587
+ spaceId: string | null;
4588
+ type: "image" | "video" | "document" | "other";
4589
+ originalPath: string;
4590
+ originalSize: number;
4591
+ originalMimeType: string;
4592
+ position: number;
4593
+ metadata: {
4594
+ [x: string]: any;
4595
+ };
4596
+ image?: {
4597
+ fileId: string;
4598
+ originalWidth: number;
4599
+ originalHeight: number;
4600
+ variants: {
4601
+ [x: string]: {
4602
+ path: string;
4603
+ publicPath: string;
4604
+ width: number;
4605
+ height: number;
4606
+ size: number;
4607
+ format: string;
4608
+ };
4609
+ };
4610
+ processingStatus: "completed" | "failed";
4611
+ processingError: string | null;
4612
+ format: string;
4613
+ quality: number;
4614
+ exifStripped: boolean;
4615
+ createdAt: Date;
4616
+ updatedAt: Date;
4617
+ } | undefined;
4618
+ createdAt: Date;
4619
+ updatedAt: Date;
4620
+ } | null | undefined;
2981
4621
  location: {
2982
4622
  type: "Point";
2983
4623
  coordinates: [number, number];
@@ -3175,6 +4815,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
3175
4815
  };
3176
4816
  reputation: number;
3177
4817
  createdAt: Date;
4818
+ avatarFileId: string | null;
4819
+ bannerFileId: string | null;
4820
+ avatarFile?: {
4821
+ id: string;
4822
+ projectId: string;
4823
+ userId: string | null;
4824
+ entityId: string | null;
4825
+ commentId: string | null;
4826
+ spaceId: string | null;
4827
+ type: "image" | "video" | "document" | "other";
4828
+ originalPath: string;
4829
+ originalSize: number;
4830
+ originalMimeType: string;
4831
+ position: number;
4832
+ metadata: {
4833
+ [x: string]: any;
4834
+ };
4835
+ image?: {
4836
+ fileId: string;
4837
+ originalWidth: number;
4838
+ originalHeight: number;
4839
+ variants: {
4840
+ [x: string]: {
4841
+ path: string;
4842
+ publicPath: string;
4843
+ width: number;
4844
+ height: number;
4845
+ size: number;
4846
+ format: string;
4847
+ };
4848
+ };
4849
+ processingStatus: "completed" | "failed";
4850
+ processingError: string | null;
4851
+ format: string;
4852
+ quality: number;
4853
+ exifStripped: boolean;
4854
+ createdAt: Date;
4855
+ updatedAt: Date;
4856
+ } | undefined;
4857
+ createdAt: Date;
4858
+ updatedAt: Date;
4859
+ } | null | undefined;
4860
+ bannerFile?: {
4861
+ id: string;
4862
+ projectId: string;
4863
+ userId: string | null;
4864
+ entityId: string | null;
4865
+ commentId: string | null;
4866
+ spaceId: string | null;
4867
+ type: "image" | "video" | "document" | "other";
4868
+ originalPath: string;
4869
+ originalSize: number;
4870
+ originalMimeType: string;
4871
+ position: number;
4872
+ metadata: {
4873
+ [x: string]: any;
4874
+ };
4875
+ image?: {
4876
+ fileId: string;
4877
+ originalWidth: number;
4878
+ originalHeight: number;
4879
+ variants: {
4880
+ [x: string]: {
4881
+ path: string;
4882
+ publicPath: string;
4883
+ width: number;
4884
+ height: number;
4885
+ size: number;
4886
+ format: string;
4887
+ };
4888
+ };
4889
+ processingStatus: "completed" | "failed";
4890
+ processingError: string | null;
4891
+ format: string;
4892
+ quality: number;
4893
+ exifStripped: boolean;
4894
+ createdAt: Date;
4895
+ updatedAt: Date;
4896
+ } | undefined;
4897
+ createdAt: Date;
4898
+ updatedAt: Date;
4899
+ } | null | undefined;
3178
4900
  location: {
3179
4901
  type: "Point";
3180
4902
  coordinates: [number, number];
@@ -3272,6 +4994,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
3272
4994
  };
3273
4995
  reputation: number;
3274
4996
  createdAt: Date;
4997
+ avatarFileId: string | null;
4998
+ bannerFileId: string | null;
4999
+ avatarFile?: {
5000
+ id: string;
5001
+ projectId: string;
5002
+ userId: string | null;
5003
+ entityId: string | null;
5004
+ commentId: string | null;
5005
+ spaceId: string | null;
5006
+ type: "image" | "video" | "document" | "other";
5007
+ originalPath: string;
5008
+ originalSize: number;
5009
+ originalMimeType: string;
5010
+ position: number;
5011
+ metadata: {
5012
+ [x: string]: any;
5013
+ };
5014
+ image?: {
5015
+ fileId: string;
5016
+ originalWidth: number;
5017
+ originalHeight: number;
5018
+ variants: {
5019
+ [x: string]: {
5020
+ path: string;
5021
+ publicPath: string;
5022
+ width: number;
5023
+ height: number;
5024
+ size: number;
5025
+ format: string;
5026
+ };
5027
+ };
5028
+ processingStatus: "completed" | "failed";
5029
+ processingError: string | null;
5030
+ format: string;
5031
+ quality: number;
5032
+ exifStripped: boolean;
5033
+ createdAt: Date;
5034
+ updatedAt: Date;
5035
+ } | undefined;
5036
+ createdAt: Date;
5037
+ updatedAt: Date;
5038
+ } | null | undefined;
5039
+ bannerFile?: {
5040
+ id: string;
5041
+ projectId: string;
5042
+ userId: string | null;
5043
+ entityId: string | null;
5044
+ commentId: string | null;
5045
+ spaceId: string | null;
5046
+ type: "image" | "video" | "document" | "other";
5047
+ originalPath: string;
5048
+ originalSize: number;
5049
+ originalMimeType: string;
5050
+ position: number;
5051
+ metadata: {
5052
+ [x: string]: any;
5053
+ };
5054
+ image?: {
5055
+ fileId: string;
5056
+ originalWidth: number;
5057
+ originalHeight: number;
5058
+ variants: {
5059
+ [x: string]: {
5060
+ path: string;
5061
+ publicPath: string;
5062
+ width: number;
5063
+ height: number;
5064
+ size: number;
5065
+ format: string;
5066
+ };
5067
+ };
5068
+ processingStatus: "completed" | "failed";
5069
+ processingError: string | null;
5070
+ format: string;
5071
+ quality: number;
5072
+ exifStripped: boolean;
5073
+ createdAt: Date;
5074
+ updatedAt: Date;
5075
+ } | undefined;
5076
+ createdAt: Date;
5077
+ updatedAt: Date;
5078
+ } | null | undefined;
3275
5079
  location: {
3276
5080
  type: "Point";
3277
5081
  coordinates: [number, number];
@@ -3469,6 +5273,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
3469
5273
  };
3470
5274
  reputation: number;
3471
5275
  createdAt: Date;
5276
+ avatarFileId: string | null;
5277
+ bannerFileId: string | null;
5278
+ avatarFile?: {
5279
+ id: string;
5280
+ projectId: string;
5281
+ userId: string | null;
5282
+ entityId: string | null;
5283
+ commentId: string | null;
5284
+ spaceId: string | null;
5285
+ type: "image" | "video" | "document" | "other";
5286
+ originalPath: string;
5287
+ originalSize: number;
5288
+ originalMimeType: string;
5289
+ position: number;
5290
+ metadata: {
5291
+ [x: string]: any;
5292
+ };
5293
+ image?: {
5294
+ fileId: string;
5295
+ originalWidth: number;
5296
+ originalHeight: number;
5297
+ variants: {
5298
+ [x: string]: {
5299
+ path: string;
5300
+ publicPath: string;
5301
+ width: number;
5302
+ height: number;
5303
+ size: number;
5304
+ format: string;
5305
+ };
5306
+ };
5307
+ processingStatus: "completed" | "failed";
5308
+ processingError: string | null;
5309
+ format: string;
5310
+ quality: number;
5311
+ exifStripped: boolean;
5312
+ createdAt: Date;
5313
+ updatedAt: Date;
5314
+ } | undefined;
5315
+ createdAt: Date;
5316
+ updatedAt: Date;
5317
+ } | null | undefined;
5318
+ bannerFile?: {
5319
+ id: string;
5320
+ projectId: string;
5321
+ userId: string | null;
5322
+ entityId: string | null;
5323
+ commentId: string | null;
5324
+ spaceId: string | null;
5325
+ type: "image" | "video" | "document" | "other";
5326
+ originalPath: string;
5327
+ originalSize: number;
5328
+ originalMimeType: string;
5329
+ position: number;
5330
+ metadata: {
5331
+ [x: string]: any;
5332
+ };
5333
+ image?: {
5334
+ fileId: string;
5335
+ originalWidth: number;
5336
+ originalHeight: number;
5337
+ variants: {
5338
+ [x: string]: {
5339
+ path: string;
5340
+ publicPath: string;
5341
+ width: number;
5342
+ height: number;
5343
+ size: number;
5344
+ format: string;
5345
+ };
5346
+ };
5347
+ processingStatus: "completed" | "failed";
5348
+ processingError: string | null;
5349
+ format: string;
5350
+ quality: number;
5351
+ exifStripped: boolean;
5352
+ createdAt: Date;
5353
+ updatedAt: Date;
5354
+ } | undefined;
5355
+ createdAt: Date;
5356
+ updatedAt: Date;
5357
+ } | null | undefined;
3472
5358
  location: {
3473
5359
  type: "Point";
3474
5360
  coordinates: [number, number];
@@ -3566,6 +5452,88 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
3566
5452
  };
3567
5453
  reputation: number;
3568
5454
  createdAt: Date;
5455
+ avatarFileId: string | null;
5456
+ bannerFileId: string | null;
5457
+ avatarFile?: {
5458
+ id: string;
5459
+ projectId: string;
5460
+ userId: string | null;
5461
+ entityId: string | null;
5462
+ commentId: string | null;
5463
+ spaceId: string | null;
5464
+ type: "image" | "video" | "document" | "other";
5465
+ originalPath: string;
5466
+ originalSize: number;
5467
+ originalMimeType: string;
5468
+ position: number;
5469
+ metadata: {
5470
+ [x: string]: any;
5471
+ };
5472
+ image?: {
5473
+ fileId: string;
5474
+ originalWidth: number;
5475
+ originalHeight: number;
5476
+ variants: {
5477
+ [x: string]: {
5478
+ path: string;
5479
+ publicPath: string;
5480
+ width: number;
5481
+ height: number;
5482
+ size: number;
5483
+ format: string;
5484
+ };
5485
+ };
5486
+ processingStatus: "completed" | "failed";
5487
+ processingError: string | null;
5488
+ format: string;
5489
+ quality: number;
5490
+ exifStripped: boolean;
5491
+ createdAt: Date;
5492
+ updatedAt: Date;
5493
+ } | undefined;
5494
+ createdAt: Date;
5495
+ updatedAt: Date;
5496
+ } | null | undefined;
5497
+ bannerFile?: {
5498
+ id: string;
5499
+ projectId: string;
5500
+ userId: string | null;
5501
+ entityId: string | null;
5502
+ commentId: string | null;
5503
+ spaceId: string | null;
5504
+ type: "image" | "video" | "document" | "other";
5505
+ originalPath: string;
5506
+ originalSize: number;
5507
+ originalMimeType: string;
5508
+ position: number;
5509
+ metadata: {
5510
+ [x: string]: any;
5511
+ };
5512
+ image?: {
5513
+ fileId: string;
5514
+ originalWidth: number;
5515
+ originalHeight: number;
5516
+ variants: {
5517
+ [x: string]: {
5518
+ path: string;
5519
+ publicPath: string;
5520
+ width: number;
5521
+ height: number;
5522
+ size: number;
5523
+ format: string;
5524
+ };
5525
+ };
5526
+ processingStatus: "completed" | "failed";
5527
+ processingError: string | null;
5528
+ format: string;
5529
+ quality: number;
5530
+ exifStripped: boolean;
5531
+ createdAt: Date;
5532
+ updatedAt: Date;
5533
+ } | undefined;
5534
+ createdAt: Date;
5535
+ updatedAt: Date;
5536
+ } | null | undefined;
3569
5537
  location: {
3570
5538
  type: "Point";
3571
5539
  coordinates: [number, number];