@replyke/core 7.0.0-beta.47 → 7.0.0-beta.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/context/replyke-store-context.js +3 -2
- package/dist/cjs/context/replyke-store-context.js.map +1 -1
- package/dist/cjs/hooks/app-notifications/useAppNotifications.js +9 -9
- package/dist/cjs/hooks/app-notifications/useAppNotifications.js.map +1 -1
- package/dist/cjs/hooks/app-notifications/useAppNotificationsActions.js +6 -6
- package/dist/cjs/hooks/app-notifications/useAppNotificationsActions.js.map +1 -1
- package/dist/cjs/hooks/auth/useAuth.js +5 -5
- package/dist/cjs/hooks/auth/useAuth.js.map +1 -1
- package/dist/cjs/hooks/collections/useCollections.js +8 -8
- package/dist/cjs/hooks/collections/useCollections.js.map +1 -1
- package/dist/cjs/hooks/collections/useCollectionsActions.js +2 -2
- package/dist/cjs/hooks/collections/useCollectionsActions.js.map +1 -1
- package/dist/cjs/hooks/entity-lists/useEntityList.js +9 -9
- package/dist/cjs/hooks/entity-lists/useEntityList.js.map +1 -1
- package/dist/cjs/hooks/entity-lists/useEntityListActions.js +2 -2
- package/dist/cjs/hooks/entity-lists/useEntityListActions.js.map +1 -1
- package/dist/cjs/hooks/space-lists/useSpaceList.js +8 -8
- package/dist/cjs/hooks/space-lists/useSpaceList.js.map +1 -1
- package/dist/cjs/hooks/space-lists/useSpaceListActions.js +2 -2
- package/dist/cjs/hooks/space-lists/useSpaceListActions.js.map +1 -1
- package/dist/cjs/hooks/user/index.d.ts +1 -0
- package/dist/cjs/hooks/user/useUser.js +8 -8
- package/dist/cjs/hooks/user/useUser.js.map +1 -1
- package/dist/cjs/hooks/user/useUserActions.js +21 -4
- package/dist/cjs/hooks/user/useUserActions.js.map +1 -1
- package/dist/cjs/hooks/users/index.d.ts +0 -1
- package/dist/cjs/hooks/users/index.js +1 -3
- package/dist/cjs/hooks/users/index.js.map +1 -1
- package/dist/cjs/index.d.ts +2 -2
- package/dist/cjs/index.js +2 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/interfaces/models/User.d.ts +1 -1
- package/dist/cjs/store/api/userApi.d.ts +9 -1
- package/dist/cjs/store/api/userApi.js +61 -10
- package/dist/cjs/store/api/userApi.js.map +1 -1
- package/dist/cjs/store/replykeReduxContext.d.ts +5 -0
- package/dist/cjs/store/replykeReduxContext.js +15 -0
- package/dist/cjs/store/replykeReduxContext.js.map +1 -0
- package/dist/cjs/store/slices/entityListsSlice.d.ts +168 -168
- package/dist/cjs/store/slices/userSlice.d.ts +696 -0
- package/dist/esm/context/replyke-store-context.js +4 -3
- package/dist/esm/context/replyke-store-context.js.map +1 -1
- package/dist/esm/hooks/app-notifications/useAppNotifications.js +9 -9
- package/dist/esm/hooks/app-notifications/useAppNotifications.js.map +1 -1
- package/dist/esm/hooks/app-notifications/useAppNotificationsActions.js +6 -6
- package/dist/esm/hooks/app-notifications/useAppNotificationsActions.js.map +1 -1
- package/dist/esm/hooks/auth/useAuth.js +5 -5
- package/dist/esm/hooks/auth/useAuth.js.map +1 -1
- package/dist/esm/hooks/collections/useCollections.js +8 -8
- package/dist/esm/hooks/collections/useCollections.js.map +1 -1
- package/dist/esm/hooks/collections/useCollectionsActions.js +2 -2
- package/dist/esm/hooks/collections/useCollectionsActions.js.map +1 -1
- package/dist/esm/hooks/entity-lists/useEntityList.js +9 -9
- package/dist/esm/hooks/entity-lists/useEntityList.js.map +1 -1
- package/dist/esm/hooks/entity-lists/useEntityListActions.js +2 -2
- package/dist/esm/hooks/entity-lists/useEntityListActions.js.map +1 -1
- package/dist/esm/hooks/space-lists/useSpaceList.js +8 -8
- package/dist/esm/hooks/space-lists/useSpaceList.js.map +1 -1
- package/dist/esm/hooks/space-lists/useSpaceListActions.js +2 -2
- package/dist/esm/hooks/space-lists/useSpaceListActions.js.map +1 -1
- package/dist/esm/hooks/user/index.d.ts +1 -0
- package/dist/esm/hooks/user/useUser.js +8 -8
- package/dist/esm/hooks/user/useUser.js.map +1 -1
- package/dist/esm/hooks/user/useUserActions.js +21 -4
- package/dist/esm/hooks/user/useUserActions.js.map +1 -1
- package/dist/esm/hooks/users/index.d.ts +0 -1
- package/dist/esm/hooks/users/index.js +0 -1
- package/dist/esm/hooks/users/index.js.map +1 -1
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/interfaces/models/User.d.ts +1 -1
- package/dist/esm/store/api/userApi.d.ts +9 -1
- package/dist/esm/store/api/userApi.js +61 -10
- package/dist/esm/store/api/userApi.js.map +1 -1
- package/dist/esm/store/replykeReduxContext.d.ts +5 -0
- package/dist/esm/store/replykeReduxContext.js +12 -0
- package/dist/esm/store/replykeReduxContext.js.map +1 -0
- package/dist/esm/store/slices/entityListsSlice.d.ts +168 -168
- package/dist/esm/store/slices/userSlice.d.ts +696 -0
- package/package.json +1 -1
- package/dist/cjs/hooks/users/useUpdateUser.d.ts +0 -26
- package/dist/cjs/hooks/users/useUpdateUser.js +0 -124
- package/dist/cjs/hooks/users/useUpdateUser.js.map +0 -1
- package/dist/esm/hooks/users/useUpdateUser.d.ts +0 -26
- package/dist/esm/hooks/users/useUpdateUser.js +0 -119
- package/dist/esm/hooks/users/useUpdateUser.js.map +0 -1
|
@@ -219,13 +219,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
219
219
|
name: string | null;
|
|
220
220
|
username: string | null;
|
|
221
221
|
avatar: string | null;
|
|
222
|
-
bio: string | null;
|
|
223
|
-
birthdate: Date | null;
|
|
224
|
-
metadata: {
|
|
225
|
-
[x: string]: any;
|
|
226
|
-
};
|
|
227
|
-
reputation: number;
|
|
228
|
-
createdAt: Date;
|
|
229
222
|
avatarFileId: string | null;
|
|
230
223
|
bannerFileId: string | null;
|
|
231
224
|
avatarFile?: {
|
|
@@ -308,10 +301,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
308
301
|
createdAt: Date;
|
|
309
302
|
updatedAt: Date;
|
|
310
303
|
} | null | undefined;
|
|
304
|
+
bio: string | null;
|
|
305
|
+
birthdate: Date | null;
|
|
311
306
|
location: {
|
|
312
307
|
type: "Point";
|
|
313
308
|
coordinates: [number, number];
|
|
314
309
|
} | null;
|
|
310
|
+
metadata: {
|
|
311
|
+
[x: string]: any;
|
|
312
|
+
};
|
|
313
|
+
reputation: number;
|
|
314
|
+
createdAt: Date;
|
|
315
315
|
} | null | undefined;
|
|
316
316
|
title: string | null;
|
|
317
317
|
content: string | null;
|
|
@@ -398,13 +398,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
398
398
|
name: string | null;
|
|
399
399
|
username: string | null;
|
|
400
400
|
avatar: string | null;
|
|
401
|
-
bio: string | null;
|
|
402
|
-
birthdate: Date | null;
|
|
403
|
-
metadata: {
|
|
404
|
-
[x: string]: any;
|
|
405
|
-
};
|
|
406
|
-
reputation: number;
|
|
407
|
-
createdAt: Date;
|
|
408
401
|
avatarFileId: string | null;
|
|
409
402
|
bannerFileId: string | null;
|
|
410
403
|
avatarFile?: {
|
|
@@ -487,10 +480,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
487
480
|
createdAt: Date;
|
|
488
481
|
updatedAt: Date;
|
|
489
482
|
} | null | undefined;
|
|
483
|
+
bio: string | null;
|
|
484
|
+
birthdate: Date | null;
|
|
490
485
|
location: {
|
|
491
486
|
type: "Point";
|
|
492
487
|
coordinates: [number, number];
|
|
493
488
|
} | null;
|
|
489
|
+
metadata: {
|
|
490
|
+
[x: string]: any;
|
|
491
|
+
};
|
|
492
|
+
reputation: number;
|
|
493
|
+
createdAt: Date;
|
|
494
494
|
};
|
|
495
495
|
upvotesCount: number;
|
|
496
496
|
content: string;
|
|
@@ -677,13 +677,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
677
677
|
name: string | null;
|
|
678
678
|
username: string | null;
|
|
679
679
|
avatar: string | null;
|
|
680
|
-
bio: string | null;
|
|
681
|
-
birthdate: Date | null;
|
|
682
|
-
metadata: {
|
|
683
|
-
[x: string]: any;
|
|
684
|
-
};
|
|
685
|
-
reputation: number;
|
|
686
|
-
createdAt: Date;
|
|
687
680
|
avatarFileId: string | null;
|
|
688
681
|
bannerFileId: string | null;
|
|
689
682
|
avatarFile?: {
|
|
@@ -766,10 +759,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
766
759
|
createdAt: Date;
|
|
767
760
|
updatedAt: Date;
|
|
768
761
|
} | null | undefined;
|
|
762
|
+
bio: string | null;
|
|
763
|
+
birthdate: Date | null;
|
|
769
764
|
location: {
|
|
770
765
|
type: "Point";
|
|
771
766
|
coordinates: [number, number];
|
|
772
767
|
} | null;
|
|
768
|
+
metadata: {
|
|
769
|
+
[x: string]: any;
|
|
770
|
+
};
|
|
771
|
+
reputation: number;
|
|
772
|
+
createdAt: Date;
|
|
773
773
|
} | null | undefined;
|
|
774
774
|
title: string | null;
|
|
775
775
|
content: string | null;
|
|
@@ -856,13 +856,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
856
856
|
name: string | null;
|
|
857
857
|
username: string | null;
|
|
858
858
|
avatar: string | null;
|
|
859
|
-
bio: string | null;
|
|
860
|
-
birthdate: Date | null;
|
|
861
|
-
metadata: {
|
|
862
|
-
[x: string]: any;
|
|
863
|
-
};
|
|
864
|
-
reputation: number;
|
|
865
|
-
createdAt: Date;
|
|
866
859
|
avatarFileId: string | null;
|
|
867
860
|
bannerFileId: string | null;
|
|
868
861
|
avatarFile?: {
|
|
@@ -945,10 +938,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
945
938
|
createdAt: Date;
|
|
946
939
|
updatedAt: Date;
|
|
947
940
|
} | null | undefined;
|
|
941
|
+
bio: string | null;
|
|
942
|
+
birthdate: Date | null;
|
|
948
943
|
location: {
|
|
949
944
|
type: "Point";
|
|
950
945
|
coordinates: [number, number];
|
|
951
946
|
} | null;
|
|
947
|
+
metadata: {
|
|
948
|
+
[x: string]: any;
|
|
949
|
+
};
|
|
950
|
+
reputation: number;
|
|
951
|
+
createdAt: Date;
|
|
952
952
|
};
|
|
953
953
|
upvotesCount: number;
|
|
954
954
|
content: string;
|
|
@@ -1135,13 +1135,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1135
1135
|
name: string | null;
|
|
1136
1136
|
username: string | null;
|
|
1137
1137
|
avatar: string | null;
|
|
1138
|
-
bio: string | null;
|
|
1139
|
-
birthdate: Date | null;
|
|
1140
|
-
metadata: {
|
|
1141
|
-
[x: string]: any;
|
|
1142
|
-
};
|
|
1143
|
-
reputation: number;
|
|
1144
|
-
createdAt: Date;
|
|
1145
1138
|
avatarFileId: string | null;
|
|
1146
1139
|
bannerFileId: string | null;
|
|
1147
1140
|
avatarFile?: {
|
|
@@ -1224,10 +1217,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1224
1217
|
createdAt: Date;
|
|
1225
1218
|
updatedAt: Date;
|
|
1226
1219
|
} | null | undefined;
|
|
1220
|
+
bio: string | null;
|
|
1221
|
+
birthdate: Date | null;
|
|
1227
1222
|
location: {
|
|
1228
1223
|
type: "Point";
|
|
1229
1224
|
coordinates: [number, number];
|
|
1230
1225
|
} | null;
|
|
1226
|
+
metadata: {
|
|
1227
|
+
[x: string]: any;
|
|
1228
|
+
};
|
|
1229
|
+
reputation: number;
|
|
1230
|
+
createdAt: Date;
|
|
1231
1231
|
} | null | undefined;
|
|
1232
1232
|
title: string | null;
|
|
1233
1233
|
content: string | null;
|
|
@@ -1314,13 +1314,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1314
1314
|
name: string | null;
|
|
1315
1315
|
username: string | null;
|
|
1316
1316
|
avatar: string | null;
|
|
1317
|
-
bio: string | null;
|
|
1318
|
-
birthdate: Date | null;
|
|
1319
|
-
metadata: {
|
|
1320
|
-
[x: string]: any;
|
|
1321
|
-
};
|
|
1322
|
-
reputation: number;
|
|
1323
|
-
createdAt: Date;
|
|
1324
1317
|
avatarFileId: string | null;
|
|
1325
1318
|
bannerFileId: string | null;
|
|
1326
1319
|
avatarFile?: {
|
|
@@ -1403,10 +1396,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1403
1396
|
createdAt: Date;
|
|
1404
1397
|
updatedAt: Date;
|
|
1405
1398
|
} | null | undefined;
|
|
1399
|
+
bio: string | null;
|
|
1400
|
+
birthdate: Date | null;
|
|
1406
1401
|
location: {
|
|
1407
1402
|
type: "Point";
|
|
1408
1403
|
coordinates: [number, number];
|
|
1409
1404
|
} | null;
|
|
1405
|
+
metadata: {
|
|
1406
|
+
[x: string]: any;
|
|
1407
|
+
};
|
|
1408
|
+
reputation: number;
|
|
1409
|
+
createdAt: Date;
|
|
1410
1410
|
};
|
|
1411
1411
|
upvotesCount: number;
|
|
1412
1412
|
content: string;
|
|
@@ -1596,13 +1596,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1596
1596
|
name: string | null;
|
|
1597
1597
|
username: string | null;
|
|
1598
1598
|
avatar: string | null;
|
|
1599
|
-
bio: string | null;
|
|
1600
|
-
birthdate: Date | null;
|
|
1601
|
-
metadata: {
|
|
1602
|
-
[x: string]: any;
|
|
1603
|
-
};
|
|
1604
|
-
reputation: number;
|
|
1605
|
-
createdAt: Date;
|
|
1606
1599
|
avatarFileId: string | null;
|
|
1607
1600
|
bannerFileId: string | null;
|
|
1608
1601
|
avatarFile?: {
|
|
@@ -1685,10 +1678,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1685
1678
|
createdAt: Date;
|
|
1686
1679
|
updatedAt: Date;
|
|
1687
1680
|
} | null | undefined;
|
|
1681
|
+
bio: string | null;
|
|
1682
|
+
birthdate: Date | null;
|
|
1688
1683
|
location: {
|
|
1689
1684
|
type: "Point";
|
|
1690
1685
|
coordinates: [number, number];
|
|
1691
1686
|
} | null;
|
|
1687
|
+
metadata: {
|
|
1688
|
+
[x: string]: any;
|
|
1689
|
+
};
|
|
1690
|
+
reputation: number;
|
|
1691
|
+
createdAt: Date;
|
|
1692
1692
|
} | null | undefined;
|
|
1693
1693
|
title: string | null;
|
|
1694
1694
|
content: string | null;
|
|
@@ -1775,13 +1775,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1775
1775
|
name: string | null;
|
|
1776
1776
|
username: string | null;
|
|
1777
1777
|
avatar: string | null;
|
|
1778
|
-
bio: string | null;
|
|
1779
|
-
birthdate: Date | null;
|
|
1780
|
-
metadata: {
|
|
1781
|
-
[x: string]: any;
|
|
1782
|
-
};
|
|
1783
|
-
reputation: number;
|
|
1784
|
-
createdAt: Date;
|
|
1785
1778
|
avatarFileId: string | null;
|
|
1786
1779
|
bannerFileId: string | null;
|
|
1787
1780
|
avatarFile?: {
|
|
@@ -1864,10 +1857,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1864
1857
|
createdAt: Date;
|
|
1865
1858
|
updatedAt: Date;
|
|
1866
1859
|
} | null | undefined;
|
|
1860
|
+
bio: string | null;
|
|
1861
|
+
birthdate: Date | null;
|
|
1867
1862
|
location: {
|
|
1868
1863
|
type: "Point";
|
|
1869
1864
|
coordinates: [number, number];
|
|
1870
1865
|
} | null;
|
|
1866
|
+
metadata: {
|
|
1867
|
+
[x: string]: any;
|
|
1868
|
+
};
|
|
1869
|
+
reputation: number;
|
|
1870
|
+
createdAt: Date;
|
|
1871
1871
|
};
|
|
1872
1872
|
upvotesCount: number;
|
|
1873
1873
|
content: string;
|
|
@@ -2054,13 +2054,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2054
2054
|
name: string | null;
|
|
2055
2055
|
username: string | null;
|
|
2056
2056
|
avatar: string | null;
|
|
2057
|
-
bio: string | null;
|
|
2058
|
-
birthdate: Date | null;
|
|
2059
|
-
metadata: {
|
|
2060
|
-
[x: string]: any;
|
|
2061
|
-
};
|
|
2062
|
-
reputation: number;
|
|
2063
|
-
createdAt: Date;
|
|
2064
2057
|
avatarFileId: string | null;
|
|
2065
2058
|
bannerFileId: string | null;
|
|
2066
2059
|
avatarFile?: {
|
|
@@ -2143,10 +2136,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2143
2136
|
createdAt: Date;
|
|
2144
2137
|
updatedAt: Date;
|
|
2145
2138
|
} | null | undefined;
|
|
2139
|
+
bio: string | null;
|
|
2140
|
+
birthdate: Date | null;
|
|
2146
2141
|
location: {
|
|
2147
2142
|
type: "Point";
|
|
2148
2143
|
coordinates: [number, number];
|
|
2149
2144
|
} | null;
|
|
2145
|
+
metadata: {
|
|
2146
|
+
[x: string]: any;
|
|
2147
|
+
};
|
|
2148
|
+
reputation: number;
|
|
2149
|
+
createdAt: Date;
|
|
2150
2150
|
} | null | undefined;
|
|
2151
2151
|
title: string | null;
|
|
2152
2152
|
content: string | null;
|
|
@@ -2233,13 +2233,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2233
2233
|
name: string | null;
|
|
2234
2234
|
username: string | null;
|
|
2235
2235
|
avatar: string | null;
|
|
2236
|
-
bio: string | null;
|
|
2237
|
-
birthdate: Date | null;
|
|
2238
|
-
metadata: {
|
|
2239
|
-
[x: string]: any;
|
|
2240
|
-
};
|
|
2241
|
-
reputation: number;
|
|
2242
|
-
createdAt: Date;
|
|
2243
2236
|
avatarFileId: string | null;
|
|
2244
2237
|
bannerFileId: string | null;
|
|
2245
2238
|
avatarFile?: {
|
|
@@ -2322,10 +2315,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2322
2315
|
createdAt: Date;
|
|
2323
2316
|
updatedAt: Date;
|
|
2324
2317
|
} | null | undefined;
|
|
2318
|
+
bio: string | null;
|
|
2319
|
+
birthdate: Date | null;
|
|
2325
2320
|
location: {
|
|
2326
2321
|
type: "Point";
|
|
2327
2322
|
coordinates: [number, number];
|
|
2328
2323
|
} | null;
|
|
2324
|
+
metadata: {
|
|
2325
|
+
[x: string]: any;
|
|
2326
|
+
};
|
|
2327
|
+
reputation: number;
|
|
2328
|
+
createdAt: Date;
|
|
2329
2329
|
};
|
|
2330
2330
|
upvotesCount: number;
|
|
2331
2331
|
content: string;
|
|
@@ -2512,13 +2512,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2512
2512
|
name: string | null;
|
|
2513
2513
|
username: string | null;
|
|
2514
2514
|
avatar: string | null;
|
|
2515
|
-
bio: string | null;
|
|
2516
|
-
birthdate: Date | null;
|
|
2517
|
-
metadata: {
|
|
2518
|
-
[x: string]: any;
|
|
2519
|
-
};
|
|
2520
|
-
reputation: number;
|
|
2521
|
-
createdAt: Date;
|
|
2522
2515
|
avatarFileId: string | null;
|
|
2523
2516
|
bannerFileId: string | null;
|
|
2524
2517
|
avatarFile?: {
|
|
@@ -2601,10 +2594,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2601
2594
|
createdAt: Date;
|
|
2602
2595
|
updatedAt: Date;
|
|
2603
2596
|
} | null | undefined;
|
|
2597
|
+
bio: string | null;
|
|
2598
|
+
birthdate: Date | null;
|
|
2604
2599
|
location: {
|
|
2605
2600
|
type: "Point";
|
|
2606
2601
|
coordinates: [number, number];
|
|
2607
2602
|
} | null;
|
|
2603
|
+
metadata: {
|
|
2604
|
+
[x: string]: any;
|
|
2605
|
+
};
|
|
2606
|
+
reputation: number;
|
|
2607
|
+
createdAt: Date;
|
|
2608
2608
|
} | null | undefined;
|
|
2609
2609
|
title: string | null;
|
|
2610
2610
|
content: string | null;
|
|
@@ -2691,13 +2691,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2691
2691
|
name: string | null;
|
|
2692
2692
|
username: string | null;
|
|
2693
2693
|
avatar: string | null;
|
|
2694
|
-
bio: string | null;
|
|
2695
|
-
birthdate: Date | null;
|
|
2696
|
-
metadata: {
|
|
2697
|
-
[x: string]: any;
|
|
2698
|
-
};
|
|
2699
|
-
reputation: number;
|
|
2700
|
-
createdAt: Date;
|
|
2701
2694
|
avatarFileId: string | null;
|
|
2702
2695
|
bannerFileId: string | null;
|
|
2703
2696
|
avatarFile?: {
|
|
@@ -2780,10 +2773,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2780
2773
|
createdAt: Date;
|
|
2781
2774
|
updatedAt: Date;
|
|
2782
2775
|
} | null | undefined;
|
|
2776
|
+
bio: string | null;
|
|
2777
|
+
birthdate: Date | null;
|
|
2783
2778
|
location: {
|
|
2784
2779
|
type: "Point";
|
|
2785
2780
|
coordinates: [number, number];
|
|
2786
2781
|
} | null;
|
|
2782
|
+
metadata: {
|
|
2783
|
+
[x: string]: any;
|
|
2784
|
+
};
|
|
2785
|
+
reputation: number;
|
|
2786
|
+
createdAt: Date;
|
|
2787
2787
|
};
|
|
2788
2788
|
upvotesCount: number;
|
|
2789
2789
|
content: string;
|
|
@@ -2973,13 +2973,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2973
2973
|
name: string | null;
|
|
2974
2974
|
username: string | null;
|
|
2975
2975
|
avatar: string | null;
|
|
2976
|
-
bio: string | null;
|
|
2977
|
-
birthdate: Date | null;
|
|
2978
|
-
metadata: {
|
|
2979
|
-
[x: string]: any;
|
|
2980
|
-
};
|
|
2981
|
-
reputation: number;
|
|
2982
|
-
createdAt: Date;
|
|
2983
2976
|
avatarFileId: string | null;
|
|
2984
2977
|
bannerFileId: string | null;
|
|
2985
2978
|
avatarFile?: {
|
|
@@ -3062,10 +3055,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3062
3055
|
createdAt: Date;
|
|
3063
3056
|
updatedAt: Date;
|
|
3064
3057
|
} | null | undefined;
|
|
3058
|
+
bio: string | null;
|
|
3059
|
+
birthdate: Date | null;
|
|
3065
3060
|
location: {
|
|
3066
3061
|
type: "Point";
|
|
3067
3062
|
coordinates: [number, number];
|
|
3068
3063
|
} | null;
|
|
3064
|
+
metadata: {
|
|
3065
|
+
[x: string]: any;
|
|
3066
|
+
};
|
|
3067
|
+
reputation: number;
|
|
3068
|
+
createdAt: Date;
|
|
3069
3069
|
} | null | undefined;
|
|
3070
3070
|
title: string | null;
|
|
3071
3071
|
content: string | null;
|
|
@@ -3152,13 +3152,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3152
3152
|
name: string | null;
|
|
3153
3153
|
username: string | null;
|
|
3154
3154
|
avatar: string | null;
|
|
3155
|
-
bio: string | null;
|
|
3156
|
-
birthdate: Date | null;
|
|
3157
|
-
metadata: {
|
|
3158
|
-
[x: string]: any;
|
|
3159
|
-
};
|
|
3160
|
-
reputation: number;
|
|
3161
|
-
createdAt: Date;
|
|
3162
3155
|
avatarFileId: string | null;
|
|
3163
3156
|
bannerFileId: string | null;
|
|
3164
3157
|
avatarFile?: {
|
|
@@ -3241,10 +3234,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3241
3234
|
createdAt: Date;
|
|
3242
3235
|
updatedAt: Date;
|
|
3243
3236
|
} | null | undefined;
|
|
3237
|
+
bio: string | null;
|
|
3238
|
+
birthdate: Date | null;
|
|
3244
3239
|
location: {
|
|
3245
3240
|
type: "Point";
|
|
3246
3241
|
coordinates: [number, number];
|
|
3247
3242
|
} | null;
|
|
3243
|
+
metadata: {
|
|
3244
|
+
[x: string]: any;
|
|
3245
|
+
};
|
|
3246
|
+
reputation: number;
|
|
3247
|
+
createdAt: Date;
|
|
3248
3248
|
};
|
|
3249
3249
|
upvotesCount: number;
|
|
3250
3250
|
content: string;
|
|
@@ -3434,13 +3434,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3434
3434
|
name: string | null;
|
|
3435
3435
|
username: string | null;
|
|
3436
3436
|
avatar: string | null;
|
|
3437
|
-
bio: string | null;
|
|
3438
|
-
birthdate: Date | null;
|
|
3439
|
-
metadata: {
|
|
3440
|
-
[x: string]: any;
|
|
3441
|
-
};
|
|
3442
|
-
reputation: number;
|
|
3443
|
-
createdAt: Date;
|
|
3444
3437
|
avatarFileId: string | null;
|
|
3445
3438
|
bannerFileId: string | null;
|
|
3446
3439
|
avatarFile?: {
|
|
@@ -3523,10 +3516,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3523
3516
|
createdAt: Date;
|
|
3524
3517
|
updatedAt: Date;
|
|
3525
3518
|
} | null | undefined;
|
|
3519
|
+
bio: string | null;
|
|
3520
|
+
birthdate: Date | null;
|
|
3526
3521
|
location: {
|
|
3527
3522
|
type: "Point";
|
|
3528
3523
|
coordinates: [number, number];
|
|
3529
3524
|
} | null;
|
|
3525
|
+
metadata: {
|
|
3526
|
+
[x: string]: any;
|
|
3527
|
+
};
|
|
3528
|
+
reputation: number;
|
|
3529
|
+
createdAt: Date;
|
|
3530
3530
|
} | null | undefined;
|
|
3531
3531
|
title: string | null;
|
|
3532
3532
|
content: string | null;
|
|
@@ -3613,13 +3613,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3613
3613
|
name: string | null;
|
|
3614
3614
|
username: string | null;
|
|
3615
3615
|
avatar: string | null;
|
|
3616
|
-
bio: string | null;
|
|
3617
|
-
birthdate: Date | null;
|
|
3618
|
-
metadata: {
|
|
3619
|
-
[x: string]: any;
|
|
3620
|
-
};
|
|
3621
|
-
reputation: number;
|
|
3622
|
-
createdAt: Date;
|
|
3623
3616
|
avatarFileId: string | null;
|
|
3624
3617
|
bannerFileId: string | null;
|
|
3625
3618
|
avatarFile?: {
|
|
@@ -3702,10 +3695,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3702
3695
|
createdAt: Date;
|
|
3703
3696
|
updatedAt: Date;
|
|
3704
3697
|
} | null | undefined;
|
|
3698
|
+
bio: string | null;
|
|
3699
|
+
birthdate: Date | null;
|
|
3705
3700
|
location: {
|
|
3706
3701
|
type: "Point";
|
|
3707
3702
|
coordinates: [number, number];
|
|
3708
3703
|
} | null;
|
|
3704
|
+
metadata: {
|
|
3705
|
+
[x: string]: any;
|
|
3706
|
+
};
|
|
3707
|
+
reputation: number;
|
|
3708
|
+
createdAt: Date;
|
|
3709
3709
|
};
|
|
3710
3710
|
upvotesCount: number;
|
|
3711
3711
|
content: string;
|
|
@@ -3892,13 +3892,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3892
3892
|
name: string | null;
|
|
3893
3893
|
username: string | null;
|
|
3894
3894
|
avatar: string | null;
|
|
3895
|
-
bio: string | null;
|
|
3896
|
-
birthdate: Date | null;
|
|
3897
|
-
metadata: {
|
|
3898
|
-
[x: string]: any;
|
|
3899
|
-
};
|
|
3900
|
-
reputation: number;
|
|
3901
|
-
createdAt: Date;
|
|
3902
3895
|
avatarFileId: string | null;
|
|
3903
3896
|
bannerFileId: string | null;
|
|
3904
3897
|
avatarFile?: {
|
|
@@ -3981,10 +3974,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
3981
3974
|
createdAt: Date;
|
|
3982
3975
|
updatedAt: Date;
|
|
3983
3976
|
} | null | undefined;
|
|
3977
|
+
bio: string | null;
|
|
3978
|
+
birthdate: Date | null;
|
|
3984
3979
|
location: {
|
|
3985
3980
|
type: "Point";
|
|
3986
3981
|
coordinates: [number, number];
|
|
3987
3982
|
} | null;
|
|
3983
|
+
metadata: {
|
|
3984
|
+
[x: string]: any;
|
|
3985
|
+
};
|
|
3986
|
+
reputation: number;
|
|
3987
|
+
createdAt: Date;
|
|
3988
3988
|
} | null | undefined;
|
|
3989
3989
|
title: string | null;
|
|
3990
3990
|
content: string | null;
|
|
@@ -4071,13 +4071,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4071
4071
|
name: string | null;
|
|
4072
4072
|
username: string | null;
|
|
4073
4073
|
avatar: string | null;
|
|
4074
|
-
bio: string | null;
|
|
4075
|
-
birthdate: Date | null;
|
|
4076
|
-
metadata: {
|
|
4077
|
-
[x: string]: any;
|
|
4078
|
-
};
|
|
4079
|
-
reputation: number;
|
|
4080
|
-
createdAt: Date;
|
|
4081
4074
|
avatarFileId: string | null;
|
|
4082
4075
|
bannerFileId: string | null;
|
|
4083
4076
|
avatarFile?: {
|
|
@@ -4160,10 +4153,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4160
4153
|
createdAt: Date;
|
|
4161
4154
|
updatedAt: Date;
|
|
4162
4155
|
} | null | undefined;
|
|
4156
|
+
bio: string | null;
|
|
4157
|
+
birthdate: Date | null;
|
|
4163
4158
|
location: {
|
|
4164
4159
|
type: "Point";
|
|
4165
4160
|
coordinates: [number, number];
|
|
4166
4161
|
} | null;
|
|
4162
|
+
metadata: {
|
|
4163
|
+
[x: string]: any;
|
|
4164
|
+
};
|
|
4165
|
+
reputation: number;
|
|
4166
|
+
createdAt: Date;
|
|
4167
4167
|
};
|
|
4168
4168
|
upvotesCount: number;
|
|
4169
4169
|
content: string;
|
|
@@ -4350,13 +4350,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4350
4350
|
name: string | null;
|
|
4351
4351
|
username: string | null;
|
|
4352
4352
|
avatar: string | null;
|
|
4353
|
-
bio: string | null;
|
|
4354
|
-
birthdate: Date | null;
|
|
4355
|
-
metadata: {
|
|
4356
|
-
[x: string]: any;
|
|
4357
|
-
};
|
|
4358
|
-
reputation: number;
|
|
4359
|
-
createdAt: Date;
|
|
4360
4353
|
avatarFileId: string | null;
|
|
4361
4354
|
bannerFileId: string | null;
|
|
4362
4355
|
avatarFile?: {
|
|
@@ -4439,10 +4432,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4439
4432
|
createdAt: Date;
|
|
4440
4433
|
updatedAt: Date;
|
|
4441
4434
|
} | null | undefined;
|
|
4435
|
+
bio: string | null;
|
|
4436
|
+
birthdate: Date | null;
|
|
4442
4437
|
location: {
|
|
4443
4438
|
type: "Point";
|
|
4444
4439
|
coordinates: [number, number];
|
|
4445
4440
|
} | null;
|
|
4441
|
+
metadata: {
|
|
4442
|
+
[x: string]: any;
|
|
4443
|
+
};
|
|
4444
|
+
reputation: number;
|
|
4445
|
+
createdAt: Date;
|
|
4446
4446
|
} | null | undefined;
|
|
4447
4447
|
title: string | null;
|
|
4448
4448
|
content: string | null;
|
|
@@ -4529,13 +4529,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4529
4529
|
name: string | null;
|
|
4530
4530
|
username: string | null;
|
|
4531
4531
|
avatar: string | null;
|
|
4532
|
-
bio: string | null;
|
|
4533
|
-
birthdate: Date | null;
|
|
4534
|
-
metadata: {
|
|
4535
|
-
[x: string]: any;
|
|
4536
|
-
};
|
|
4537
|
-
reputation: number;
|
|
4538
|
-
createdAt: Date;
|
|
4539
4532
|
avatarFileId: string | null;
|
|
4540
4533
|
bannerFileId: string | null;
|
|
4541
4534
|
avatarFile?: {
|
|
@@ -4618,10 +4611,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4618
4611
|
createdAt: Date;
|
|
4619
4612
|
updatedAt: Date;
|
|
4620
4613
|
} | null | undefined;
|
|
4614
|
+
bio: string | null;
|
|
4615
|
+
birthdate: Date | null;
|
|
4621
4616
|
location: {
|
|
4622
4617
|
type: "Point";
|
|
4623
4618
|
coordinates: [number, number];
|
|
4624
4619
|
} | null;
|
|
4620
|
+
metadata: {
|
|
4621
|
+
[x: string]: any;
|
|
4622
|
+
};
|
|
4623
|
+
reputation: number;
|
|
4624
|
+
createdAt: Date;
|
|
4625
4625
|
};
|
|
4626
4626
|
upvotesCount: number;
|
|
4627
4627
|
content: string;
|
|
@@ -4808,13 +4808,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4808
4808
|
name: string | null;
|
|
4809
4809
|
username: string | null;
|
|
4810
4810
|
avatar: string | null;
|
|
4811
|
-
bio: string | null;
|
|
4812
|
-
birthdate: Date | null;
|
|
4813
|
-
metadata: {
|
|
4814
|
-
[x: string]: any;
|
|
4815
|
-
};
|
|
4816
|
-
reputation: number;
|
|
4817
|
-
createdAt: Date;
|
|
4818
4811
|
avatarFileId: string | null;
|
|
4819
4812
|
bannerFileId: string | null;
|
|
4820
4813
|
avatarFile?: {
|
|
@@ -4897,10 +4890,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4897
4890
|
createdAt: Date;
|
|
4898
4891
|
updatedAt: Date;
|
|
4899
4892
|
} | null | undefined;
|
|
4893
|
+
bio: string | null;
|
|
4894
|
+
birthdate: Date | null;
|
|
4900
4895
|
location: {
|
|
4901
4896
|
type: "Point";
|
|
4902
4897
|
coordinates: [number, number];
|
|
4903
4898
|
} | null;
|
|
4899
|
+
metadata: {
|
|
4900
|
+
[x: string]: any;
|
|
4901
|
+
};
|
|
4902
|
+
reputation: number;
|
|
4903
|
+
createdAt: Date;
|
|
4904
4904
|
} | null | undefined;
|
|
4905
4905
|
title: string | null;
|
|
4906
4906
|
content: string | null;
|
|
@@ -4987,13 +4987,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
4987
4987
|
name: string | null;
|
|
4988
4988
|
username: string | null;
|
|
4989
4989
|
avatar: string | null;
|
|
4990
|
-
bio: string | null;
|
|
4991
|
-
birthdate: Date | null;
|
|
4992
|
-
metadata: {
|
|
4993
|
-
[x: string]: any;
|
|
4994
|
-
};
|
|
4995
|
-
reputation: number;
|
|
4996
|
-
createdAt: Date;
|
|
4997
4990
|
avatarFileId: string | null;
|
|
4998
4991
|
bannerFileId: string | null;
|
|
4999
4992
|
avatarFile?: {
|
|
@@ -5076,10 +5069,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
5076
5069
|
createdAt: Date;
|
|
5077
5070
|
updatedAt: Date;
|
|
5078
5071
|
} | null | undefined;
|
|
5072
|
+
bio: string | null;
|
|
5073
|
+
birthdate: Date | null;
|
|
5079
5074
|
location: {
|
|
5080
5075
|
type: "Point";
|
|
5081
5076
|
coordinates: [number, number];
|
|
5082
5077
|
} | null;
|
|
5078
|
+
metadata: {
|
|
5079
|
+
[x: string]: any;
|
|
5080
|
+
};
|
|
5081
|
+
reputation: number;
|
|
5082
|
+
createdAt: Date;
|
|
5083
5083
|
};
|
|
5084
5084
|
upvotesCount: number;
|
|
5085
5085
|
content: string;
|
|
@@ -5266,13 +5266,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
5266
5266
|
name: string | null;
|
|
5267
5267
|
username: string | null;
|
|
5268
5268
|
avatar: string | null;
|
|
5269
|
-
bio: string | null;
|
|
5270
|
-
birthdate: Date | null;
|
|
5271
|
-
metadata: {
|
|
5272
|
-
[x: string]: any;
|
|
5273
|
-
};
|
|
5274
|
-
reputation: number;
|
|
5275
|
-
createdAt: Date;
|
|
5276
5269
|
avatarFileId: string | null;
|
|
5277
5270
|
bannerFileId: string | null;
|
|
5278
5271
|
avatarFile?: {
|
|
@@ -5355,10 +5348,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
5355
5348
|
createdAt: Date;
|
|
5356
5349
|
updatedAt: Date;
|
|
5357
5350
|
} | null | undefined;
|
|
5351
|
+
bio: string | null;
|
|
5352
|
+
birthdate: Date | null;
|
|
5358
5353
|
location: {
|
|
5359
5354
|
type: "Point";
|
|
5360
5355
|
coordinates: [number, number];
|
|
5361
5356
|
} | null;
|
|
5357
|
+
metadata: {
|
|
5358
|
+
[x: string]: any;
|
|
5359
|
+
};
|
|
5360
|
+
reputation: number;
|
|
5361
|
+
createdAt: Date;
|
|
5362
5362
|
} | null | undefined;
|
|
5363
5363
|
title: string | null;
|
|
5364
5364
|
content: string | null;
|
|
@@ -5445,13 +5445,6 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
5445
5445
|
name: string | null;
|
|
5446
5446
|
username: string | null;
|
|
5447
5447
|
avatar: string | null;
|
|
5448
|
-
bio: string | null;
|
|
5449
|
-
birthdate: Date | null;
|
|
5450
|
-
metadata: {
|
|
5451
|
-
[x: string]: any;
|
|
5452
|
-
};
|
|
5453
|
-
reputation: number;
|
|
5454
|
-
createdAt: Date;
|
|
5455
5448
|
avatarFileId: string | null;
|
|
5456
5449
|
bannerFileId: string | null;
|
|
5457
5450
|
avatarFile?: {
|
|
@@ -5534,10 +5527,17 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
5534
5527
|
createdAt: Date;
|
|
5535
5528
|
updatedAt: Date;
|
|
5536
5529
|
} | null | undefined;
|
|
5530
|
+
bio: string | null;
|
|
5531
|
+
birthdate: Date | null;
|
|
5537
5532
|
location: {
|
|
5538
5533
|
type: "Point";
|
|
5539
5534
|
coordinates: [number, number];
|
|
5540
5535
|
} | null;
|
|
5536
|
+
metadata: {
|
|
5537
|
+
[x: string]: any;
|
|
5538
|
+
};
|
|
5539
|
+
reputation: number;
|
|
5540
|
+
createdAt: Date;
|
|
5541
5541
|
};
|
|
5542
5542
|
upvotesCount: number;
|
|
5543
5543
|
content: string;
|