@sublay/core 7.4.0 → 7.4.2
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/helpers/markCommentAsDeletedInTree.js +1 -1
- package/dist/cjs/helpers/markCommentAsDeletedInTree.js.map +1 -1
- package/dist/cjs/hooks/chat/messages/useSendMessage.js +1 -1
- package/dist/cjs/hooks/chat/messages/useSendMessage.js.map +1 -1
- package/dist/cjs/hooks/comments/useCommentSectionData.js +4 -4
- package/dist/cjs/hooks/comments/useCommentSectionData.js.map +1 -1
- package/dist/cjs/hooks/reports/useFetchModeratedReports.d.ts +4 -4
- package/dist/cjs/hooks/user/useUserActions.js +3 -1
- package/dist/cjs/hooks/user/useUserActions.js.map +1 -1
- package/dist/cjs/interfaces/models/ChatMessage.d.ts +5 -5
- package/dist/cjs/interfaces/models/Collection.d.ts +2 -2
- package/dist/cjs/interfaces/models/Comment.d.ts +8 -8
- package/dist/cjs/interfaces/models/Conversation.d.ts +3 -3
- package/dist/cjs/interfaces/models/ConversationMember.d.ts +5 -5
- package/dist/cjs/interfaces/models/Entity.d.ts +5 -5
- package/dist/cjs/interfaces/models/File.d.ts +4 -4
- package/dist/cjs/interfaces/models/Follow.d.ts +1 -1
- package/dist/cjs/interfaces/models/Project.d.ts +3 -3
- package/dist/cjs/interfaces/models/Rule.d.ts +2 -2
- package/dist/cjs/interfaces/models/Space.d.ts +8 -8
- package/dist/cjs/interfaces/models/SpaceMember.d.ts +3 -3
- package/dist/cjs/interfaces/models/User.d.ts +6 -6
- package/dist/cjs/store/slices/chatSlice.js +1 -1
- package/dist/cjs/store/slices/chatSlice.js.map +1 -1
- package/dist/cjs/store/slices/collectionsSlice.d.ts +798 -798
- package/dist/cjs/store/slices/entityListsSlice.d.ts +480 -480
- package/dist/cjs/store/slices/spaceListsSlice.d.ts +132 -132
- package/dist/cjs/store/slices/userSlice.d.ts +112 -112
- package/dist/cjs/types/socket.d.ts +2 -2
- package/dist/esm/helpers/markCommentAsDeletedInTree.js +1 -1
- package/dist/esm/helpers/markCommentAsDeletedInTree.js.map +1 -1
- package/dist/esm/hooks/chat/messages/useSendMessage.js +1 -1
- package/dist/esm/hooks/chat/messages/useSendMessage.js.map +1 -1
- package/dist/esm/hooks/comments/useCommentSectionData.js +4 -4
- package/dist/esm/hooks/comments/useCommentSectionData.js.map +1 -1
- package/dist/esm/hooks/reports/useFetchModeratedReports.d.ts +4 -4
- package/dist/esm/hooks/user/useUserActions.js +3 -1
- package/dist/esm/hooks/user/useUserActions.js.map +1 -1
- package/dist/esm/interfaces/models/ChatMessage.d.ts +5 -5
- package/dist/esm/interfaces/models/Collection.d.ts +2 -2
- package/dist/esm/interfaces/models/Comment.d.ts +8 -8
- package/dist/esm/interfaces/models/Conversation.d.ts +3 -3
- package/dist/esm/interfaces/models/ConversationMember.d.ts +5 -5
- package/dist/esm/interfaces/models/Entity.d.ts +5 -5
- package/dist/esm/interfaces/models/File.d.ts +4 -4
- package/dist/esm/interfaces/models/Follow.d.ts +1 -1
- package/dist/esm/interfaces/models/Project.d.ts +3 -3
- package/dist/esm/interfaces/models/Rule.d.ts +2 -2
- package/dist/esm/interfaces/models/Space.d.ts +8 -8
- package/dist/esm/interfaces/models/SpaceMember.d.ts +3 -3
- package/dist/esm/interfaces/models/User.d.ts +6 -6
- package/dist/esm/store/slices/chatSlice.js +1 -1
- package/dist/esm/store/slices/chatSlice.js.map +1 -1
- package/dist/esm/store/slices/collectionsSlice.d.ts +798 -798
- package/dist/esm/store/slices/entityListsSlice.d.ts +480 -480
- package/dist/esm/store/slices/spaceListsSlice.d.ts +132 -132
- package/dist/esm/store/slices/userSlice.d.ts +112 -112
- package/dist/esm/types/socket.d.ts +2 -2
- package/package.json +1 -1
|
@@ -25,8 +25,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
25
25
|
parentId: string | null;
|
|
26
26
|
name: string;
|
|
27
27
|
entityCount: number;
|
|
28
|
-
createdAt:
|
|
29
|
-
updatedAt:
|
|
28
|
+
createdAt: string;
|
|
29
|
+
updatedAt: string;
|
|
30
30
|
};
|
|
31
31
|
};
|
|
32
32
|
subcollectionsMap: {
|
|
@@ -62,9 +62,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
62
62
|
metadata: {
|
|
63
63
|
[x: string]: any;
|
|
64
64
|
};
|
|
65
|
-
createdAt:
|
|
66
|
-
updatedAt:
|
|
67
|
-
deletedAt:
|
|
65
|
+
createdAt: string;
|
|
66
|
+
updatedAt: string;
|
|
67
|
+
deletedAt: string | null;
|
|
68
68
|
membersCount: number;
|
|
69
69
|
childSpacesCount: number;
|
|
70
70
|
isMember?: boolean | undefined;
|
|
@@ -103,11 +103,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
103
103
|
format: string;
|
|
104
104
|
quality: number;
|
|
105
105
|
exifStripped: boolean;
|
|
106
|
-
createdAt:
|
|
107
|
-
updatedAt:
|
|
106
|
+
createdAt: string;
|
|
107
|
+
updatedAt: string;
|
|
108
108
|
} | undefined;
|
|
109
|
-
createdAt:
|
|
110
|
-
updatedAt:
|
|
109
|
+
createdAt: string;
|
|
110
|
+
updatedAt: string;
|
|
111
111
|
} | undefined;
|
|
112
112
|
bannerFile?: {
|
|
113
113
|
id: string;
|
|
@@ -144,11 +144,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
144
144
|
format: string;
|
|
145
145
|
quality: number;
|
|
146
146
|
exifStripped: boolean;
|
|
147
|
-
createdAt:
|
|
148
|
-
updatedAt:
|
|
147
|
+
createdAt: string;
|
|
148
|
+
updatedAt: string;
|
|
149
149
|
} | undefined;
|
|
150
|
-
createdAt:
|
|
151
|
-
updatedAt:
|
|
150
|
+
createdAt: string;
|
|
151
|
+
updatedAt: string;
|
|
152
152
|
} | undefined;
|
|
153
153
|
} | null | undefined;
|
|
154
154
|
userId: string | null;
|
|
@@ -197,11 +197,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
197
197
|
format: string;
|
|
198
198
|
quality: number;
|
|
199
199
|
exifStripped: boolean;
|
|
200
|
-
createdAt:
|
|
201
|
-
updatedAt:
|
|
200
|
+
createdAt: string;
|
|
201
|
+
updatedAt: string;
|
|
202
202
|
} | undefined;
|
|
203
|
-
createdAt:
|
|
204
|
-
updatedAt:
|
|
203
|
+
createdAt: string;
|
|
204
|
+
updatedAt: string;
|
|
205
205
|
} | null | undefined;
|
|
206
206
|
bannerFile?: {
|
|
207
207
|
id: string;
|
|
@@ -238,14 +238,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
238
238
|
format: string;
|
|
239
239
|
quality: number;
|
|
240
240
|
exifStripped: boolean;
|
|
241
|
-
createdAt:
|
|
242
|
-
updatedAt:
|
|
241
|
+
createdAt: string;
|
|
242
|
+
updatedAt: string;
|
|
243
243
|
} | undefined;
|
|
244
|
-
createdAt:
|
|
245
|
-
updatedAt:
|
|
244
|
+
createdAt: string;
|
|
245
|
+
updatedAt: string;
|
|
246
246
|
} | null | undefined;
|
|
247
247
|
bio: string | null;
|
|
248
|
-
birthdate:
|
|
248
|
+
birthdate: string | null;
|
|
249
249
|
location: {
|
|
250
250
|
type: "Point";
|
|
251
251
|
coordinates: [number, number];
|
|
@@ -255,7 +255,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
255
255
|
};
|
|
256
256
|
reputation: number;
|
|
257
257
|
spaceReputation?: number | undefined;
|
|
258
|
-
createdAt:
|
|
258
|
+
createdAt: string;
|
|
259
259
|
} | null | undefined;
|
|
260
260
|
title: string | null;
|
|
261
261
|
content: string | null;
|
|
@@ -307,11 +307,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
307
307
|
format: string;
|
|
308
308
|
quality: number;
|
|
309
309
|
exifStripped: boolean;
|
|
310
|
-
createdAt:
|
|
311
|
-
updatedAt:
|
|
310
|
+
createdAt: string;
|
|
311
|
+
updatedAt: string;
|
|
312
312
|
} | undefined;
|
|
313
|
-
createdAt:
|
|
314
|
-
updatedAt:
|
|
313
|
+
createdAt: string;
|
|
314
|
+
updatedAt: string;
|
|
315
315
|
}[] | undefined;
|
|
316
316
|
keywords: string[];
|
|
317
317
|
upvotes: string[];
|
|
@@ -330,7 +330,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
330
330
|
repliesCount: number;
|
|
331
331
|
views: number;
|
|
332
332
|
score: number;
|
|
333
|
-
scoreUpdatedAt:
|
|
333
|
+
scoreUpdatedAt: string;
|
|
334
334
|
location: {
|
|
335
335
|
type: "Point";
|
|
336
336
|
coordinates: [number, number];
|
|
@@ -385,11 +385,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
385
385
|
format: string;
|
|
386
386
|
quality: number;
|
|
387
387
|
exifStripped: boolean;
|
|
388
|
-
createdAt:
|
|
389
|
-
updatedAt:
|
|
388
|
+
createdAt: string;
|
|
389
|
+
updatedAt: string;
|
|
390
390
|
} | undefined;
|
|
391
|
-
createdAt:
|
|
392
|
-
updatedAt:
|
|
391
|
+
createdAt: string;
|
|
392
|
+
updatedAt: string;
|
|
393
393
|
} | null | undefined;
|
|
394
394
|
bannerFile?: {
|
|
395
395
|
id: string;
|
|
@@ -426,14 +426,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
426
426
|
format: string;
|
|
427
427
|
quality: number;
|
|
428
428
|
exifStripped: boolean;
|
|
429
|
-
createdAt:
|
|
430
|
-
updatedAt:
|
|
429
|
+
createdAt: string;
|
|
430
|
+
updatedAt: string;
|
|
431
431
|
} | undefined;
|
|
432
|
-
createdAt:
|
|
433
|
-
updatedAt:
|
|
432
|
+
createdAt: string;
|
|
433
|
+
updatedAt: string;
|
|
434
434
|
} | null | undefined;
|
|
435
435
|
bio: string | null;
|
|
436
|
-
birthdate:
|
|
436
|
+
birthdate: string | null;
|
|
437
437
|
location: {
|
|
438
438
|
type: "Point";
|
|
439
439
|
coordinates: [number, number];
|
|
@@ -443,19 +443,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
443
443
|
};
|
|
444
444
|
reputation: number;
|
|
445
445
|
spaceReputation?: number | undefined;
|
|
446
|
-
createdAt:
|
|
446
|
+
createdAt: string;
|
|
447
447
|
};
|
|
448
448
|
upvotesCount: number;
|
|
449
449
|
content: string;
|
|
450
450
|
createdAt: string;
|
|
451
451
|
} | null;
|
|
452
452
|
isSaved?: boolean | undefined;
|
|
453
|
-
createdAt:
|
|
454
|
-
updatedAt:
|
|
455
|
-
deletedAt:
|
|
453
|
+
createdAt: string;
|
|
454
|
+
updatedAt: string;
|
|
455
|
+
deletedAt: string | null;
|
|
456
456
|
isDraft: boolean | null;
|
|
457
457
|
moderationStatus: "approved" | "removed" | null;
|
|
458
|
-
moderatedAt:
|
|
458
|
+
moderatedAt: string | null;
|
|
459
459
|
moderatedById: string | null;
|
|
460
460
|
moderatedByType: "client" | "user" | null;
|
|
461
461
|
moderationReason: string | null;
|
|
@@ -471,8 +471,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
471
471
|
parentId: string | null;
|
|
472
472
|
name: string;
|
|
473
473
|
entityCount: number;
|
|
474
|
-
createdAt:
|
|
475
|
-
updatedAt:
|
|
474
|
+
createdAt: string;
|
|
475
|
+
updatedAt: string;
|
|
476
476
|
};
|
|
477
477
|
};
|
|
478
478
|
subcollectionsMap: {
|
|
@@ -508,9 +508,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
508
508
|
metadata: {
|
|
509
509
|
[x: string]: any;
|
|
510
510
|
};
|
|
511
|
-
createdAt:
|
|
512
|
-
updatedAt:
|
|
513
|
-
deletedAt:
|
|
511
|
+
createdAt: string;
|
|
512
|
+
updatedAt: string;
|
|
513
|
+
deletedAt: string | null;
|
|
514
514
|
membersCount: number;
|
|
515
515
|
childSpacesCount: number;
|
|
516
516
|
isMember?: boolean | undefined;
|
|
@@ -549,11 +549,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
549
549
|
format: string;
|
|
550
550
|
quality: number;
|
|
551
551
|
exifStripped: boolean;
|
|
552
|
-
createdAt:
|
|
553
|
-
updatedAt:
|
|
552
|
+
createdAt: string;
|
|
553
|
+
updatedAt: string;
|
|
554
554
|
} | undefined;
|
|
555
|
-
createdAt:
|
|
556
|
-
updatedAt:
|
|
555
|
+
createdAt: string;
|
|
556
|
+
updatedAt: string;
|
|
557
557
|
} | undefined;
|
|
558
558
|
bannerFile?: {
|
|
559
559
|
id: string;
|
|
@@ -590,11 +590,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
590
590
|
format: string;
|
|
591
591
|
quality: number;
|
|
592
592
|
exifStripped: boolean;
|
|
593
|
-
createdAt:
|
|
594
|
-
updatedAt:
|
|
593
|
+
createdAt: string;
|
|
594
|
+
updatedAt: string;
|
|
595
595
|
} | undefined;
|
|
596
|
-
createdAt:
|
|
597
|
-
updatedAt:
|
|
596
|
+
createdAt: string;
|
|
597
|
+
updatedAt: string;
|
|
598
598
|
} | undefined;
|
|
599
599
|
} | null | undefined;
|
|
600
600
|
userId: string | null;
|
|
@@ -643,11 +643,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
643
643
|
format: string;
|
|
644
644
|
quality: number;
|
|
645
645
|
exifStripped: boolean;
|
|
646
|
-
createdAt:
|
|
647
|
-
updatedAt:
|
|
646
|
+
createdAt: string;
|
|
647
|
+
updatedAt: string;
|
|
648
648
|
} | undefined;
|
|
649
|
-
createdAt:
|
|
650
|
-
updatedAt:
|
|
649
|
+
createdAt: string;
|
|
650
|
+
updatedAt: string;
|
|
651
651
|
} | null | undefined;
|
|
652
652
|
bannerFile?: {
|
|
653
653
|
id: string;
|
|
@@ -684,14 +684,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
684
684
|
format: string;
|
|
685
685
|
quality: number;
|
|
686
686
|
exifStripped: boolean;
|
|
687
|
-
createdAt:
|
|
688
|
-
updatedAt:
|
|
687
|
+
createdAt: string;
|
|
688
|
+
updatedAt: string;
|
|
689
689
|
} | undefined;
|
|
690
|
-
createdAt:
|
|
691
|
-
updatedAt:
|
|
690
|
+
createdAt: string;
|
|
691
|
+
updatedAt: string;
|
|
692
692
|
} | null | undefined;
|
|
693
693
|
bio: string | null;
|
|
694
|
-
birthdate:
|
|
694
|
+
birthdate: string | null;
|
|
695
695
|
location: {
|
|
696
696
|
type: "Point";
|
|
697
697
|
coordinates: [number, number];
|
|
@@ -701,7 +701,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
701
701
|
};
|
|
702
702
|
reputation: number;
|
|
703
703
|
spaceReputation?: number | undefined;
|
|
704
|
-
createdAt:
|
|
704
|
+
createdAt: string;
|
|
705
705
|
} | null | undefined;
|
|
706
706
|
title: string | null;
|
|
707
707
|
content: string | null;
|
|
@@ -753,11 +753,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
753
753
|
format: string;
|
|
754
754
|
quality: number;
|
|
755
755
|
exifStripped: boolean;
|
|
756
|
-
createdAt:
|
|
757
|
-
updatedAt:
|
|
756
|
+
createdAt: string;
|
|
757
|
+
updatedAt: string;
|
|
758
758
|
} | undefined;
|
|
759
|
-
createdAt:
|
|
760
|
-
updatedAt:
|
|
759
|
+
createdAt: string;
|
|
760
|
+
updatedAt: string;
|
|
761
761
|
}[] | undefined;
|
|
762
762
|
keywords: string[];
|
|
763
763
|
upvotes: string[];
|
|
@@ -776,7 +776,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
776
776
|
repliesCount: number;
|
|
777
777
|
views: number;
|
|
778
778
|
score: number;
|
|
779
|
-
scoreUpdatedAt:
|
|
779
|
+
scoreUpdatedAt: string;
|
|
780
780
|
location: {
|
|
781
781
|
type: "Point";
|
|
782
782
|
coordinates: [number, number];
|
|
@@ -831,11 +831,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
831
831
|
format: string;
|
|
832
832
|
quality: number;
|
|
833
833
|
exifStripped: boolean;
|
|
834
|
-
createdAt:
|
|
835
|
-
updatedAt:
|
|
834
|
+
createdAt: string;
|
|
835
|
+
updatedAt: string;
|
|
836
836
|
} | undefined;
|
|
837
|
-
createdAt:
|
|
838
|
-
updatedAt:
|
|
837
|
+
createdAt: string;
|
|
838
|
+
updatedAt: string;
|
|
839
839
|
} | null | undefined;
|
|
840
840
|
bannerFile?: {
|
|
841
841
|
id: string;
|
|
@@ -872,14 +872,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
872
872
|
format: string;
|
|
873
873
|
quality: number;
|
|
874
874
|
exifStripped: boolean;
|
|
875
|
-
createdAt:
|
|
876
|
-
updatedAt:
|
|
875
|
+
createdAt: string;
|
|
876
|
+
updatedAt: string;
|
|
877
877
|
} | undefined;
|
|
878
|
-
createdAt:
|
|
879
|
-
updatedAt:
|
|
878
|
+
createdAt: string;
|
|
879
|
+
updatedAt: string;
|
|
880
880
|
} | null | undefined;
|
|
881
881
|
bio: string | null;
|
|
882
|
-
birthdate:
|
|
882
|
+
birthdate: string | null;
|
|
883
883
|
location: {
|
|
884
884
|
type: "Point";
|
|
885
885
|
coordinates: [number, number];
|
|
@@ -889,19 +889,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
889
889
|
};
|
|
890
890
|
reputation: number;
|
|
891
891
|
spaceReputation?: number | undefined;
|
|
892
|
-
createdAt:
|
|
892
|
+
createdAt: string;
|
|
893
893
|
};
|
|
894
894
|
upvotesCount: number;
|
|
895
895
|
content: string;
|
|
896
896
|
createdAt: string;
|
|
897
897
|
} | null;
|
|
898
898
|
isSaved?: boolean | undefined;
|
|
899
|
-
createdAt:
|
|
900
|
-
updatedAt:
|
|
901
|
-
deletedAt:
|
|
899
|
+
createdAt: string;
|
|
900
|
+
updatedAt: string;
|
|
901
|
+
deletedAt: string | null;
|
|
902
902
|
isDraft: boolean | null;
|
|
903
903
|
moderationStatus: "approved" | "removed" | null;
|
|
904
|
-
moderatedAt:
|
|
904
|
+
moderatedAt: string | null;
|
|
905
905
|
moderatedById: string | null;
|
|
906
906
|
moderatedByType: "client" | "user" | null;
|
|
907
907
|
moderationReason: string | null;
|
|
@@ -917,8 +917,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
917
917
|
parentId: string | null;
|
|
918
918
|
name: string;
|
|
919
919
|
entityCount: number;
|
|
920
|
-
createdAt:
|
|
921
|
-
updatedAt:
|
|
920
|
+
createdAt: string;
|
|
921
|
+
updatedAt: string;
|
|
922
922
|
};
|
|
923
923
|
};
|
|
924
924
|
subcollectionsMap: {
|
|
@@ -954,9 +954,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
954
954
|
metadata: {
|
|
955
955
|
[x: string]: any;
|
|
956
956
|
};
|
|
957
|
-
createdAt:
|
|
958
|
-
updatedAt:
|
|
959
|
-
deletedAt:
|
|
957
|
+
createdAt: string;
|
|
958
|
+
updatedAt: string;
|
|
959
|
+
deletedAt: string | null;
|
|
960
960
|
membersCount: number;
|
|
961
961
|
childSpacesCount: number;
|
|
962
962
|
isMember?: boolean | undefined;
|
|
@@ -995,11 +995,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
995
995
|
format: string;
|
|
996
996
|
quality: number;
|
|
997
997
|
exifStripped: boolean;
|
|
998
|
-
createdAt:
|
|
999
|
-
updatedAt:
|
|
998
|
+
createdAt: string;
|
|
999
|
+
updatedAt: string;
|
|
1000
1000
|
} | undefined;
|
|
1001
|
-
createdAt:
|
|
1002
|
-
updatedAt:
|
|
1001
|
+
createdAt: string;
|
|
1002
|
+
updatedAt: string;
|
|
1003
1003
|
} | undefined;
|
|
1004
1004
|
bannerFile?: {
|
|
1005
1005
|
id: string;
|
|
@@ -1036,11 +1036,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1036
1036
|
format: string;
|
|
1037
1037
|
quality: number;
|
|
1038
1038
|
exifStripped: boolean;
|
|
1039
|
-
createdAt:
|
|
1040
|
-
updatedAt:
|
|
1039
|
+
createdAt: string;
|
|
1040
|
+
updatedAt: string;
|
|
1041
1041
|
} | undefined;
|
|
1042
|
-
createdAt:
|
|
1043
|
-
updatedAt:
|
|
1042
|
+
createdAt: string;
|
|
1043
|
+
updatedAt: string;
|
|
1044
1044
|
} | undefined;
|
|
1045
1045
|
} | null | undefined;
|
|
1046
1046
|
userId: string | null;
|
|
@@ -1089,11 +1089,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1089
1089
|
format: string;
|
|
1090
1090
|
quality: number;
|
|
1091
1091
|
exifStripped: boolean;
|
|
1092
|
-
createdAt:
|
|
1093
|
-
updatedAt:
|
|
1092
|
+
createdAt: string;
|
|
1093
|
+
updatedAt: string;
|
|
1094
1094
|
} | undefined;
|
|
1095
|
-
createdAt:
|
|
1096
|
-
updatedAt:
|
|
1095
|
+
createdAt: string;
|
|
1096
|
+
updatedAt: string;
|
|
1097
1097
|
} | null | undefined;
|
|
1098
1098
|
bannerFile?: {
|
|
1099
1099
|
id: string;
|
|
@@ -1130,14 +1130,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1130
1130
|
format: string;
|
|
1131
1131
|
quality: number;
|
|
1132
1132
|
exifStripped: boolean;
|
|
1133
|
-
createdAt:
|
|
1134
|
-
updatedAt:
|
|
1133
|
+
createdAt: string;
|
|
1134
|
+
updatedAt: string;
|
|
1135
1135
|
} | undefined;
|
|
1136
|
-
createdAt:
|
|
1137
|
-
updatedAt:
|
|
1136
|
+
createdAt: string;
|
|
1137
|
+
updatedAt: string;
|
|
1138
1138
|
} | null | undefined;
|
|
1139
1139
|
bio: string | null;
|
|
1140
|
-
birthdate:
|
|
1140
|
+
birthdate: string | null;
|
|
1141
1141
|
location: {
|
|
1142
1142
|
type: "Point";
|
|
1143
1143
|
coordinates: [number, number];
|
|
@@ -1147,7 +1147,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1147
1147
|
};
|
|
1148
1148
|
reputation: number;
|
|
1149
1149
|
spaceReputation?: number | undefined;
|
|
1150
|
-
createdAt:
|
|
1150
|
+
createdAt: string;
|
|
1151
1151
|
} | null | undefined;
|
|
1152
1152
|
title: string | null;
|
|
1153
1153
|
content: string | null;
|
|
@@ -1199,11 +1199,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1199
1199
|
format: string;
|
|
1200
1200
|
quality: number;
|
|
1201
1201
|
exifStripped: boolean;
|
|
1202
|
-
createdAt:
|
|
1203
|
-
updatedAt:
|
|
1202
|
+
createdAt: string;
|
|
1203
|
+
updatedAt: string;
|
|
1204
1204
|
} | undefined;
|
|
1205
|
-
createdAt:
|
|
1206
|
-
updatedAt:
|
|
1205
|
+
createdAt: string;
|
|
1206
|
+
updatedAt: string;
|
|
1207
1207
|
}[] | undefined;
|
|
1208
1208
|
keywords: string[];
|
|
1209
1209
|
upvotes: string[];
|
|
@@ -1222,7 +1222,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1222
1222
|
repliesCount: number;
|
|
1223
1223
|
views: number;
|
|
1224
1224
|
score: number;
|
|
1225
|
-
scoreUpdatedAt:
|
|
1225
|
+
scoreUpdatedAt: string;
|
|
1226
1226
|
location: {
|
|
1227
1227
|
type: "Point";
|
|
1228
1228
|
coordinates: [number, number];
|
|
@@ -1277,11 +1277,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1277
1277
|
format: string;
|
|
1278
1278
|
quality: number;
|
|
1279
1279
|
exifStripped: boolean;
|
|
1280
|
-
createdAt:
|
|
1281
|
-
updatedAt:
|
|
1280
|
+
createdAt: string;
|
|
1281
|
+
updatedAt: string;
|
|
1282
1282
|
} | undefined;
|
|
1283
|
-
createdAt:
|
|
1284
|
-
updatedAt:
|
|
1283
|
+
createdAt: string;
|
|
1284
|
+
updatedAt: string;
|
|
1285
1285
|
} | null | undefined;
|
|
1286
1286
|
bannerFile?: {
|
|
1287
1287
|
id: string;
|
|
@@ -1318,14 +1318,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1318
1318
|
format: string;
|
|
1319
1319
|
quality: number;
|
|
1320
1320
|
exifStripped: boolean;
|
|
1321
|
-
createdAt:
|
|
1322
|
-
updatedAt:
|
|
1321
|
+
createdAt: string;
|
|
1322
|
+
updatedAt: string;
|
|
1323
1323
|
} | undefined;
|
|
1324
|
-
createdAt:
|
|
1325
|
-
updatedAt:
|
|
1324
|
+
createdAt: string;
|
|
1325
|
+
updatedAt: string;
|
|
1326
1326
|
} | null | undefined;
|
|
1327
1327
|
bio: string | null;
|
|
1328
|
-
birthdate:
|
|
1328
|
+
birthdate: string | null;
|
|
1329
1329
|
location: {
|
|
1330
1330
|
type: "Point";
|
|
1331
1331
|
coordinates: [number, number];
|
|
@@ -1335,19 +1335,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1335
1335
|
};
|
|
1336
1336
|
reputation: number;
|
|
1337
1337
|
spaceReputation?: number | undefined;
|
|
1338
|
-
createdAt:
|
|
1338
|
+
createdAt: string;
|
|
1339
1339
|
};
|
|
1340
1340
|
upvotesCount: number;
|
|
1341
1341
|
content: string;
|
|
1342
1342
|
createdAt: string;
|
|
1343
1343
|
} | null;
|
|
1344
1344
|
isSaved?: boolean | undefined;
|
|
1345
|
-
createdAt:
|
|
1346
|
-
updatedAt:
|
|
1347
|
-
deletedAt:
|
|
1345
|
+
createdAt: string;
|
|
1346
|
+
updatedAt: string;
|
|
1347
|
+
deletedAt: string | null;
|
|
1348
1348
|
isDraft: boolean | null;
|
|
1349
1349
|
moderationStatus: "approved" | "removed" | null;
|
|
1350
|
-
moderatedAt:
|
|
1350
|
+
moderatedAt: string | null;
|
|
1351
1351
|
moderatedById: string | null;
|
|
1352
1352
|
moderatedByType: "client" | "user" | null;
|
|
1353
1353
|
moderationReason: string | null;
|
|
@@ -1363,8 +1363,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1363
1363
|
parentId: string | null;
|
|
1364
1364
|
name: string;
|
|
1365
1365
|
entityCount: number;
|
|
1366
|
-
createdAt:
|
|
1367
|
-
updatedAt:
|
|
1366
|
+
createdAt: string;
|
|
1367
|
+
updatedAt: string;
|
|
1368
1368
|
};
|
|
1369
1369
|
};
|
|
1370
1370
|
subcollectionsMap: {
|
|
@@ -1400,9 +1400,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1400
1400
|
metadata: {
|
|
1401
1401
|
[x: string]: any;
|
|
1402
1402
|
};
|
|
1403
|
-
createdAt:
|
|
1404
|
-
updatedAt:
|
|
1405
|
-
deletedAt:
|
|
1403
|
+
createdAt: string;
|
|
1404
|
+
updatedAt: string;
|
|
1405
|
+
deletedAt: string | null;
|
|
1406
1406
|
membersCount: number;
|
|
1407
1407
|
childSpacesCount: number;
|
|
1408
1408
|
isMember?: boolean | undefined;
|
|
@@ -1441,11 +1441,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1441
1441
|
format: string;
|
|
1442
1442
|
quality: number;
|
|
1443
1443
|
exifStripped: boolean;
|
|
1444
|
-
createdAt:
|
|
1445
|
-
updatedAt:
|
|
1444
|
+
createdAt: string;
|
|
1445
|
+
updatedAt: string;
|
|
1446
1446
|
} | undefined;
|
|
1447
|
-
createdAt:
|
|
1448
|
-
updatedAt:
|
|
1447
|
+
createdAt: string;
|
|
1448
|
+
updatedAt: string;
|
|
1449
1449
|
} | undefined;
|
|
1450
1450
|
bannerFile?: {
|
|
1451
1451
|
id: string;
|
|
@@ -1482,11 +1482,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1482
1482
|
format: string;
|
|
1483
1483
|
quality: number;
|
|
1484
1484
|
exifStripped: boolean;
|
|
1485
|
-
createdAt:
|
|
1486
|
-
updatedAt:
|
|
1485
|
+
createdAt: string;
|
|
1486
|
+
updatedAt: string;
|
|
1487
1487
|
} | undefined;
|
|
1488
|
-
createdAt:
|
|
1489
|
-
updatedAt:
|
|
1488
|
+
createdAt: string;
|
|
1489
|
+
updatedAt: string;
|
|
1490
1490
|
} | undefined;
|
|
1491
1491
|
} | null | undefined;
|
|
1492
1492
|
userId: string | null;
|
|
@@ -1535,11 +1535,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1535
1535
|
format: string;
|
|
1536
1536
|
quality: number;
|
|
1537
1537
|
exifStripped: boolean;
|
|
1538
|
-
createdAt:
|
|
1539
|
-
updatedAt:
|
|
1538
|
+
createdAt: string;
|
|
1539
|
+
updatedAt: string;
|
|
1540
1540
|
} | undefined;
|
|
1541
|
-
createdAt:
|
|
1542
|
-
updatedAt:
|
|
1541
|
+
createdAt: string;
|
|
1542
|
+
updatedAt: string;
|
|
1543
1543
|
} | null | undefined;
|
|
1544
1544
|
bannerFile?: {
|
|
1545
1545
|
id: string;
|
|
@@ -1576,14 +1576,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1576
1576
|
format: string;
|
|
1577
1577
|
quality: number;
|
|
1578
1578
|
exifStripped: boolean;
|
|
1579
|
-
createdAt:
|
|
1580
|
-
updatedAt:
|
|
1579
|
+
createdAt: string;
|
|
1580
|
+
updatedAt: string;
|
|
1581
1581
|
} | undefined;
|
|
1582
|
-
createdAt:
|
|
1583
|
-
updatedAt:
|
|
1582
|
+
createdAt: string;
|
|
1583
|
+
updatedAt: string;
|
|
1584
1584
|
} | null | undefined;
|
|
1585
1585
|
bio: string | null;
|
|
1586
|
-
birthdate:
|
|
1586
|
+
birthdate: string | null;
|
|
1587
1587
|
location: {
|
|
1588
1588
|
type: "Point";
|
|
1589
1589
|
coordinates: [number, number];
|
|
@@ -1593,7 +1593,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1593
1593
|
};
|
|
1594
1594
|
reputation: number;
|
|
1595
1595
|
spaceReputation?: number | undefined;
|
|
1596
|
-
createdAt:
|
|
1596
|
+
createdAt: string;
|
|
1597
1597
|
} | null | undefined;
|
|
1598
1598
|
title: string | null;
|
|
1599
1599
|
content: string | null;
|
|
@@ -1645,11 +1645,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1645
1645
|
format: string;
|
|
1646
1646
|
quality: number;
|
|
1647
1647
|
exifStripped: boolean;
|
|
1648
|
-
createdAt:
|
|
1649
|
-
updatedAt:
|
|
1648
|
+
createdAt: string;
|
|
1649
|
+
updatedAt: string;
|
|
1650
1650
|
} | undefined;
|
|
1651
|
-
createdAt:
|
|
1652
|
-
updatedAt:
|
|
1651
|
+
createdAt: string;
|
|
1652
|
+
updatedAt: string;
|
|
1653
1653
|
}[] | undefined;
|
|
1654
1654
|
keywords: string[];
|
|
1655
1655
|
upvotes: string[];
|
|
@@ -1668,7 +1668,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1668
1668
|
repliesCount: number;
|
|
1669
1669
|
views: number;
|
|
1670
1670
|
score: number;
|
|
1671
|
-
scoreUpdatedAt:
|
|
1671
|
+
scoreUpdatedAt: string;
|
|
1672
1672
|
location: {
|
|
1673
1673
|
type: "Point";
|
|
1674
1674
|
coordinates: [number, number];
|
|
@@ -1723,11 +1723,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1723
1723
|
format: string;
|
|
1724
1724
|
quality: number;
|
|
1725
1725
|
exifStripped: boolean;
|
|
1726
|
-
createdAt:
|
|
1727
|
-
updatedAt:
|
|
1726
|
+
createdAt: string;
|
|
1727
|
+
updatedAt: string;
|
|
1728
1728
|
} | undefined;
|
|
1729
|
-
createdAt:
|
|
1730
|
-
updatedAt:
|
|
1729
|
+
createdAt: string;
|
|
1730
|
+
updatedAt: string;
|
|
1731
1731
|
} | null | undefined;
|
|
1732
1732
|
bannerFile?: {
|
|
1733
1733
|
id: string;
|
|
@@ -1764,14 +1764,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1764
1764
|
format: string;
|
|
1765
1765
|
quality: number;
|
|
1766
1766
|
exifStripped: boolean;
|
|
1767
|
-
createdAt:
|
|
1768
|
-
updatedAt:
|
|
1767
|
+
createdAt: string;
|
|
1768
|
+
updatedAt: string;
|
|
1769
1769
|
} | undefined;
|
|
1770
|
-
createdAt:
|
|
1771
|
-
updatedAt:
|
|
1770
|
+
createdAt: string;
|
|
1771
|
+
updatedAt: string;
|
|
1772
1772
|
} | null | undefined;
|
|
1773
1773
|
bio: string | null;
|
|
1774
|
-
birthdate:
|
|
1774
|
+
birthdate: string | null;
|
|
1775
1775
|
location: {
|
|
1776
1776
|
type: "Point";
|
|
1777
1777
|
coordinates: [number, number];
|
|
@@ -1781,19 +1781,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1781
1781
|
};
|
|
1782
1782
|
reputation: number;
|
|
1783
1783
|
spaceReputation?: number | undefined;
|
|
1784
|
-
createdAt:
|
|
1784
|
+
createdAt: string;
|
|
1785
1785
|
};
|
|
1786
1786
|
upvotesCount: number;
|
|
1787
1787
|
content: string;
|
|
1788
1788
|
createdAt: string;
|
|
1789
1789
|
} | null;
|
|
1790
1790
|
isSaved?: boolean | undefined;
|
|
1791
|
-
createdAt:
|
|
1792
|
-
updatedAt:
|
|
1793
|
-
deletedAt:
|
|
1791
|
+
createdAt: string;
|
|
1792
|
+
updatedAt: string;
|
|
1793
|
+
deletedAt: string | null;
|
|
1794
1794
|
isDraft: boolean | null;
|
|
1795
1795
|
moderationStatus: "approved" | "removed" | null;
|
|
1796
|
-
moderatedAt:
|
|
1796
|
+
moderatedAt: string | null;
|
|
1797
1797
|
moderatedById: string | null;
|
|
1798
1798
|
moderatedByType: "client" | "user" | null;
|
|
1799
1799
|
moderationReason: string | null;
|
|
@@ -1809,8 +1809,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1809
1809
|
parentId: string | null;
|
|
1810
1810
|
name: string;
|
|
1811
1811
|
entityCount: number;
|
|
1812
|
-
createdAt:
|
|
1813
|
-
updatedAt:
|
|
1812
|
+
createdAt: string;
|
|
1813
|
+
updatedAt: string;
|
|
1814
1814
|
};
|
|
1815
1815
|
};
|
|
1816
1816
|
subcollectionsMap: {
|
|
@@ -1846,9 +1846,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1846
1846
|
metadata: {
|
|
1847
1847
|
[x: string]: any;
|
|
1848
1848
|
};
|
|
1849
|
-
createdAt:
|
|
1850
|
-
updatedAt:
|
|
1851
|
-
deletedAt:
|
|
1849
|
+
createdAt: string;
|
|
1850
|
+
updatedAt: string;
|
|
1851
|
+
deletedAt: string | null;
|
|
1852
1852
|
membersCount: number;
|
|
1853
1853
|
childSpacesCount: number;
|
|
1854
1854
|
isMember?: boolean | undefined;
|
|
@@ -1887,11 +1887,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1887
1887
|
format: string;
|
|
1888
1888
|
quality: number;
|
|
1889
1889
|
exifStripped: boolean;
|
|
1890
|
-
createdAt:
|
|
1891
|
-
updatedAt:
|
|
1890
|
+
createdAt: string;
|
|
1891
|
+
updatedAt: string;
|
|
1892
1892
|
} | undefined;
|
|
1893
|
-
createdAt:
|
|
1894
|
-
updatedAt:
|
|
1893
|
+
createdAt: string;
|
|
1894
|
+
updatedAt: string;
|
|
1895
1895
|
} | undefined;
|
|
1896
1896
|
bannerFile?: {
|
|
1897
1897
|
id: string;
|
|
@@ -1928,11 +1928,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1928
1928
|
format: string;
|
|
1929
1929
|
quality: number;
|
|
1930
1930
|
exifStripped: boolean;
|
|
1931
|
-
createdAt:
|
|
1932
|
-
updatedAt:
|
|
1931
|
+
createdAt: string;
|
|
1932
|
+
updatedAt: string;
|
|
1933
1933
|
} | undefined;
|
|
1934
|
-
createdAt:
|
|
1935
|
-
updatedAt:
|
|
1934
|
+
createdAt: string;
|
|
1935
|
+
updatedAt: string;
|
|
1936
1936
|
} | undefined;
|
|
1937
1937
|
} | null | undefined;
|
|
1938
1938
|
userId: string | null;
|
|
@@ -1981,11 +1981,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
1981
1981
|
format: string;
|
|
1982
1982
|
quality: number;
|
|
1983
1983
|
exifStripped: boolean;
|
|
1984
|
-
createdAt:
|
|
1985
|
-
updatedAt:
|
|
1984
|
+
createdAt: string;
|
|
1985
|
+
updatedAt: string;
|
|
1986
1986
|
} | undefined;
|
|
1987
|
-
createdAt:
|
|
1988
|
-
updatedAt:
|
|
1987
|
+
createdAt: string;
|
|
1988
|
+
updatedAt: string;
|
|
1989
1989
|
} | null | undefined;
|
|
1990
1990
|
bannerFile?: {
|
|
1991
1991
|
id: string;
|
|
@@ -2022,14 +2022,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2022
2022
|
format: string;
|
|
2023
2023
|
quality: number;
|
|
2024
2024
|
exifStripped: boolean;
|
|
2025
|
-
createdAt:
|
|
2026
|
-
updatedAt:
|
|
2025
|
+
createdAt: string;
|
|
2026
|
+
updatedAt: string;
|
|
2027
2027
|
} | undefined;
|
|
2028
|
-
createdAt:
|
|
2029
|
-
updatedAt:
|
|
2028
|
+
createdAt: string;
|
|
2029
|
+
updatedAt: string;
|
|
2030
2030
|
} | null | undefined;
|
|
2031
2031
|
bio: string | null;
|
|
2032
|
-
birthdate:
|
|
2032
|
+
birthdate: string | null;
|
|
2033
2033
|
location: {
|
|
2034
2034
|
type: "Point";
|
|
2035
2035
|
coordinates: [number, number];
|
|
@@ -2039,7 +2039,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2039
2039
|
};
|
|
2040
2040
|
reputation: number;
|
|
2041
2041
|
spaceReputation?: number | undefined;
|
|
2042
|
-
createdAt:
|
|
2042
|
+
createdAt: string;
|
|
2043
2043
|
} | null | undefined;
|
|
2044
2044
|
title: string | null;
|
|
2045
2045
|
content: string | null;
|
|
@@ -2091,11 +2091,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2091
2091
|
format: string;
|
|
2092
2092
|
quality: number;
|
|
2093
2093
|
exifStripped: boolean;
|
|
2094
|
-
createdAt:
|
|
2095
|
-
updatedAt:
|
|
2094
|
+
createdAt: string;
|
|
2095
|
+
updatedAt: string;
|
|
2096
2096
|
} | undefined;
|
|
2097
|
-
createdAt:
|
|
2098
|
-
updatedAt:
|
|
2097
|
+
createdAt: string;
|
|
2098
|
+
updatedAt: string;
|
|
2099
2099
|
}[] | undefined;
|
|
2100
2100
|
keywords: string[];
|
|
2101
2101
|
upvotes: string[];
|
|
@@ -2114,7 +2114,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2114
2114
|
repliesCount: number;
|
|
2115
2115
|
views: number;
|
|
2116
2116
|
score: number;
|
|
2117
|
-
scoreUpdatedAt:
|
|
2117
|
+
scoreUpdatedAt: string;
|
|
2118
2118
|
location: {
|
|
2119
2119
|
type: "Point";
|
|
2120
2120
|
coordinates: [number, number];
|
|
@@ -2169,11 +2169,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2169
2169
|
format: string;
|
|
2170
2170
|
quality: number;
|
|
2171
2171
|
exifStripped: boolean;
|
|
2172
|
-
createdAt:
|
|
2173
|
-
updatedAt:
|
|
2172
|
+
createdAt: string;
|
|
2173
|
+
updatedAt: string;
|
|
2174
2174
|
} | undefined;
|
|
2175
|
-
createdAt:
|
|
2176
|
-
updatedAt:
|
|
2175
|
+
createdAt: string;
|
|
2176
|
+
updatedAt: string;
|
|
2177
2177
|
} | null | undefined;
|
|
2178
2178
|
bannerFile?: {
|
|
2179
2179
|
id: string;
|
|
@@ -2210,14 +2210,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2210
2210
|
format: string;
|
|
2211
2211
|
quality: number;
|
|
2212
2212
|
exifStripped: boolean;
|
|
2213
|
-
createdAt:
|
|
2214
|
-
updatedAt:
|
|
2213
|
+
createdAt: string;
|
|
2214
|
+
updatedAt: string;
|
|
2215
2215
|
} | undefined;
|
|
2216
|
-
createdAt:
|
|
2217
|
-
updatedAt:
|
|
2216
|
+
createdAt: string;
|
|
2217
|
+
updatedAt: string;
|
|
2218
2218
|
} | null | undefined;
|
|
2219
2219
|
bio: string | null;
|
|
2220
|
-
birthdate:
|
|
2220
|
+
birthdate: string | null;
|
|
2221
2221
|
location: {
|
|
2222
2222
|
type: "Point";
|
|
2223
2223
|
coordinates: [number, number];
|
|
@@ -2227,19 +2227,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2227
2227
|
};
|
|
2228
2228
|
reputation: number;
|
|
2229
2229
|
spaceReputation?: number | undefined;
|
|
2230
|
-
createdAt:
|
|
2230
|
+
createdAt: string;
|
|
2231
2231
|
};
|
|
2232
2232
|
upvotesCount: number;
|
|
2233
2233
|
content: string;
|
|
2234
2234
|
createdAt: string;
|
|
2235
2235
|
} | null;
|
|
2236
2236
|
isSaved?: boolean | undefined;
|
|
2237
|
-
createdAt:
|
|
2238
|
-
updatedAt:
|
|
2239
|
-
deletedAt:
|
|
2237
|
+
createdAt: string;
|
|
2238
|
+
updatedAt: string;
|
|
2239
|
+
deletedAt: string | null;
|
|
2240
2240
|
isDraft: boolean | null;
|
|
2241
2241
|
moderationStatus: "approved" | "removed" | null;
|
|
2242
|
-
moderatedAt:
|
|
2242
|
+
moderatedAt: string | null;
|
|
2243
2243
|
moderatedById: string | null;
|
|
2244
2244
|
moderatedByType: "client" | "user" | null;
|
|
2245
2245
|
moderationReason: string | null;
|
|
@@ -2255,8 +2255,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2255
2255
|
parentId: string | null;
|
|
2256
2256
|
name: string;
|
|
2257
2257
|
entityCount: number;
|
|
2258
|
-
createdAt:
|
|
2259
|
-
updatedAt:
|
|
2258
|
+
createdAt: string;
|
|
2259
|
+
updatedAt: string;
|
|
2260
2260
|
};
|
|
2261
2261
|
};
|
|
2262
2262
|
subcollectionsMap: {
|
|
@@ -2292,9 +2292,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2292
2292
|
metadata: {
|
|
2293
2293
|
[x: string]: any;
|
|
2294
2294
|
};
|
|
2295
|
-
createdAt:
|
|
2296
|
-
updatedAt:
|
|
2297
|
-
deletedAt:
|
|
2295
|
+
createdAt: string;
|
|
2296
|
+
updatedAt: string;
|
|
2297
|
+
deletedAt: string | null;
|
|
2298
2298
|
membersCount: number;
|
|
2299
2299
|
childSpacesCount: number;
|
|
2300
2300
|
isMember?: boolean | undefined;
|
|
@@ -2333,11 +2333,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2333
2333
|
format: string;
|
|
2334
2334
|
quality: number;
|
|
2335
2335
|
exifStripped: boolean;
|
|
2336
|
-
createdAt:
|
|
2337
|
-
updatedAt:
|
|
2336
|
+
createdAt: string;
|
|
2337
|
+
updatedAt: string;
|
|
2338
2338
|
} | undefined;
|
|
2339
|
-
createdAt:
|
|
2340
|
-
updatedAt:
|
|
2339
|
+
createdAt: string;
|
|
2340
|
+
updatedAt: string;
|
|
2341
2341
|
} | undefined;
|
|
2342
2342
|
bannerFile?: {
|
|
2343
2343
|
id: string;
|
|
@@ -2374,11 +2374,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2374
2374
|
format: string;
|
|
2375
2375
|
quality: number;
|
|
2376
2376
|
exifStripped: boolean;
|
|
2377
|
-
createdAt:
|
|
2378
|
-
updatedAt:
|
|
2377
|
+
createdAt: string;
|
|
2378
|
+
updatedAt: string;
|
|
2379
2379
|
} | undefined;
|
|
2380
|
-
createdAt:
|
|
2381
|
-
updatedAt:
|
|
2380
|
+
createdAt: string;
|
|
2381
|
+
updatedAt: string;
|
|
2382
2382
|
} | undefined;
|
|
2383
2383
|
} | null | undefined;
|
|
2384
2384
|
userId: string | null;
|
|
@@ -2427,11 +2427,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2427
2427
|
format: string;
|
|
2428
2428
|
quality: number;
|
|
2429
2429
|
exifStripped: boolean;
|
|
2430
|
-
createdAt:
|
|
2431
|
-
updatedAt:
|
|
2430
|
+
createdAt: string;
|
|
2431
|
+
updatedAt: string;
|
|
2432
2432
|
} | undefined;
|
|
2433
|
-
createdAt:
|
|
2434
|
-
updatedAt:
|
|
2433
|
+
createdAt: string;
|
|
2434
|
+
updatedAt: string;
|
|
2435
2435
|
} | null | undefined;
|
|
2436
2436
|
bannerFile?: {
|
|
2437
2437
|
id: string;
|
|
@@ -2468,14 +2468,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2468
2468
|
format: string;
|
|
2469
2469
|
quality: number;
|
|
2470
2470
|
exifStripped: boolean;
|
|
2471
|
-
createdAt:
|
|
2472
|
-
updatedAt:
|
|
2471
|
+
createdAt: string;
|
|
2472
|
+
updatedAt: string;
|
|
2473
2473
|
} | undefined;
|
|
2474
|
-
createdAt:
|
|
2475
|
-
updatedAt:
|
|
2474
|
+
createdAt: string;
|
|
2475
|
+
updatedAt: string;
|
|
2476
2476
|
} | null | undefined;
|
|
2477
2477
|
bio: string | null;
|
|
2478
|
-
birthdate:
|
|
2478
|
+
birthdate: string | null;
|
|
2479
2479
|
location: {
|
|
2480
2480
|
type: "Point";
|
|
2481
2481
|
coordinates: [number, number];
|
|
@@ -2485,7 +2485,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2485
2485
|
};
|
|
2486
2486
|
reputation: number;
|
|
2487
2487
|
spaceReputation?: number | undefined;
|
|
2488
|
-
createdAt:
|
|
2488
|
+
createdAt: string;
|
|
2489
2489
|
} | null | undefined;
|
|
2490
2490
|
title: string | null;
|
|
2491
2491
|
content: string | null;
|
|
@@ -2537,11 +2537,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2537
2537
|
format: string;
|
|
2538
2538
|
quality: number;
|
|
2539
2539
|
exifStripped: boolean;
|
|
2540
|
-
createdAt:
|
|
2541
|
-
updatedAt:
|
|
2540
|
+
createdAt: string;
|
|
2541
|
+
updatedAt: string;
|
|
2542
2542
|
} | undefined;
|
|
2543
|
-
createdAt:
|
|
2544
|
-
updatedAt:
|
|
2543
|
+
createdAt: string;
|
|
2544
|
+
updatedAt: string;
|
|
2545
2545
|
}[] | undefined;
|
|
2546
2546
|
keywords: string[];
|
|
2547
2547
|
upvotes: string[];
|
|
@@ -2560,7 +2560,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2560
2560
|
repliesCount: number;
|
|
2561
2561
|
views: number;
|
|
2562
2562
|
score: number;
|
|
2563
|
-
scoreUpdatedAt:
|
|
2563
|
+
scoreUpdatedAt: string;
|
|
2564
2564
|
location: {
|
|
2565
2565
|
type: "Point";
|
|
2566
2566
|
coordinates: [number, number];
|
|
@@ -2615,11 +2615,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2615
2615
|
format: string;
|
|
2616
2616
|
quality: number;
|
|
2617
2617
|
exifStripped: boolean;
|
|
2618
|
-
createdAt:
|
|
2619
|
-
updatedAt:
|
|
2618
|
+
createdAt: string;
|
|
2619
|
+
updatedAt: string;
|
|
2620
2620
|
} | undefined;
|
|
2621
|
-
createdAt:
|
|
2622
|
-
updatedAt:
|
|
2621
|
+
createdAt: string;
|
|
2622
|
+
updatedAt: string;
|
|
2623
2623
|
} | null | undefined;
|
|
2624
2624
|
bannerFile?: {
|
|
2625
2625
|
id: string;
|
|
@@ -2656,14 +2656,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2656
2656
|
format: string;
|
|
2657
2657
|
quality: number;
|
|
2658
2658
|
exifStripped: boolean;
|
|
2659
|
-
createdAt:
|
|
2660
|
-
updatedAt:
|
|
2659
|
+
createdAt: string;
|
|
2660
|
+
updatedAt: string;
|
|
2661
2661
|
} | undefined;
|
|
2662
|
-
createdAt:
|
|
2663
|
-
updatedAt:
|
|
2662
|
+
createdAt: string;
|
|
2663
|
+
updatedAt: string;
|
|
2664
2664
|
} | null | undefined;
|
|
2665
2665
|
bio: string | null;
|
|
2666
|
-
birthdate:
|
|
2666
|
+
birthdate: string | null;
|
|
2667
2667
|
location: {
|
|
2668
2668
|
type: "Point";
|
|
2669
2669
|
coordinates: [number, number];
|
|
@@ -2673,19 +2673,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2673
2673
|
};
|
|
2674
2674
|
reputation: number;
|
|
2675
2675
|
spaceReputation?: number | undefined;
|
|
2676
|
-
createdAt:
|
|
2676
|
+
createdAt: string;
|
|
2677
2677
|
};
|
|
2678
2678
|
upvotesCount: number;
|
|
2679
2679
|
content: string;
|
|
2680
2680
|
createdAt: string;
|
|
2681
2681
|
} | null;
|
|
2682
2682
|
isSaved?: boolean | undefined;
|
|
2683
|
-
createdAt:
|
|
2684
|
-
updatedAt:
|
|
2685
|
-
deletedAt:
|
|
2683
|
+
createdAt: string;
|
|
2684
|
+
updatedAt: string;
|
|
2685
|
+
deletedAt: string | null;
|
|
2686
2686
|
isDraft: boolean | null;
|
|
2687
2687
|
moderationStatus: "approved" | "removed" | null;
|
|
2688
|
-
moderatedAt:
|
|
2688
|
+
moderatedAt: string | null;
|
|
2689
2689
|
moderatedById: string | null;
|
|
2690
2690
|
moderatedByType: "client" | "user" | null;
|
|
2691
2691
|
moderationReason: string | null;
|
|
@@ -2701,8 +2701,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2701
2701
|
parentId: string | null;
|
|
2702
2702
|
name: string;
|
|
2703
2703
|
entityCount: number;
|
|
2704
|
-
createdAt:
|
|
2705
|
-
updatedAt:
|
|
2704
|
+
createdAt: string;
|
|
2705
|
+
updatedAt: string;
|
|
2706
2706
|
};
|
|
2707
2707
|
};
|
|
2708
2708
|
subcollectionsMap: {
|
|
@@ -2738,9 +2738,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2738
2738
|
metadata: {
|
|
2739
2739
|
[x: string]: any;
|
|
2740
2740
|
};
|
|
2741
|
-
createdAt:
|
|
2742
|
-
updatedAt:
|
|
2743
|
-
deletedAt:
|
|
2741
|
+
createdAt: string;
|
|
2742
|
+
updatedAt: string;
|
|
2743
|
+
deletedAt: string | null;
|
|
2744
2744
|
membersCount: number;
|
|
2745
2745
|
childSpacesCount: number;
|
|
2746
2746
|
isMember?: boolean | undefined;
|
|
@@ -2779,11 +2779,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2779
2779
|
format: string;
|
|
2780
2780
|
quality: number;
|
|
2781
2781
|
exifStripped: boolean;
|
|
2782
|
-
createdAt:
|
|
2783
|
-
updatedAt:
|
|
2782
|
+
createdAt: string;
|
|
2783
|
+
updatedAt: string;
|
|
2784
2784
|
} | undefined;
|
|
2785
|
-
createdAt:
|
|
2786
|
-
updatedAt:
|
|
2785
|
+
createdAt: string;
|
|
2786
|
+
updatedAt: string;
|
|
2787
2787
|
} | undefined;
|
|
2788
2788
|
bannerFile?: {
|
|
2789
2789
|
id: string;
|
|
@@ -2820,11 +2820,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2820
2820
|
format: string;
|
|
2821
2821
|
quality: number;
|
|
2822
2822
|
exifStripped: boolean;
|
|
2823
|
-
createdAt:
|
|
2824
|
-
updatedAt:
|
|
2823
|
+
createdAt: string;
|
|
2824
|
+
updatedAt: string;
|
|
2825
2825
|
} | undefined;
|
|
2826
|
-
createdAt:
|
|
2827
|
-
updatedAt:
|
|
2826
|
+
createdAt: string;
|
|
2827
|
+
updatedAt: string;
|
|
2828
2828
|
} | undefined;
|
|
2829
2829
|
} | null | undefined;
|
|
2830
2830
|
userId: string | null;
|
|
@@ -2873,11 +2873,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2873
2873
|
format: string;
|
|
2874
2874
|
quality: number;
|
|
2875
2875
|
exifStripped: boolean;
|
|
2876
|
-
createdAt:
|
|
2877
|
-
updatedAt:
|
|
2876
|
+
createdAt: string;
|
|
2877
|
+
updatedAt: string;
|
|
2878
2878
|
} | undefined;
|
|
2879
|
-
createdAt:
|
|
2880
|
-
updatedAt:
|
|
2879
|
+
createdAt: string;
|
|
2880
|
+
updatedAt: string;
|
|
2881
2881
|
} | null | undefined;
|
|
2882
2882
|
bannerFile?: {
|
|
2883
2883
|
id: string;
|
|
@@ -2914,14 +2914,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2914
2914
|
format: string;
|
|
2915
2915
|
quality: number;
|
|
2916
2916
|
exifStripped: boolean;
|
|
2917
|
-
createdAt:
|
|
2918
|
-
updatedAt:
|
|
2917
|
+
createdAt: string;
|
|
2918
|
+
updatedAt: string;
|
|
2919
2919
|
} | undefined;
|
|
2920
|
-
createdAt:
|
|
2921
|
-
updatedAt:
|
|
2920
|
+
createdAt: string;
|
|
2921
|
+
updatedAt: string;
|
|
2922
2922
|
} | null | undefined;
|
|
2923
2923
|
bio: string | null;
|
|
2924
|
-
birthdate:
|
|
2924
|
+
birthdate: string | null;
|
|
2925
2925
|
location: {
|
|
2926
2926
|
type: "Point";
|
|
2927
2927
|
coordinates: [number, number];
|
|
@@ -2931,7 +2931,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2931
2931
|
};
|
|
2932
2932
|
reputation: number;
|
|
2933
2933
|
spaceReputation?: number | undefined;
|
|
2934
|
-
createdAt:
|
|
2934
|
+
createdAt: string;
|
|
2935
2935
|
} | null | undefined;
|
|
2936
2936
|
title: string | null;
|
|
2937
2937
|
content: string | null;
|
|
@@ -2983,11 +2983,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
2983
2983
|
format: string;
|
|
2984
2984
|
quality: number;
|
|
2985
2985
|
exifStripped: boolean;
|
|
2986
|
-
createdAt:
|
|
2987
|
-
updatedAt:
|
|
2986
|
+
createdAt: string;
|
|
2987
|
+
updatedAt: string;
|
|
2988
2988
|
} | undefined;
|
|
2989
|
-
createdAt:
|
|
2990
|
-
updatedAt:
|
|
2989
|
+
createdAt: string;
|
|
2990
|
+
updatedAt: string;
|
|
2991
2991
|
}[] | undefined;
|
|
2992
2992
|
keywords: string[];
|
|
2993
2993
|
upvotes: string[];
|
|
@@ -3006,7 +3006,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3006
3006
|
repliesCount: number;
|
|
3007
3007
|
views: number;
|
|
3008
3008
|
score: number;
|
|
3009
|
-
scoreUpdatedAt:
|
|
3009
|
+
scoreUpdatedAt: string;
|
|
3010
3010
|
location: {
|
|
3011
3011
|
type: "Point";
|
|
3012
3012
|
coordinates: [number, number];
|
|
@@ -3061,11 +3061,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3061
3061
|
format: string;
|
|
3062
3062
|
quality: number;
|
|
3063
3063
|
exifStripped: boolean;
|
|
3064
|
-
createdAt:
|
|
3065
|
-
updatedAt:
|
|
3064
|
+
createdAt: string;
|
|
3065
|
+
updatedAt: string;
|
|
3066
3066
|
} | undefined;
|
|
3067
|
-
createdAt:
|
|
3068
|
-
updatedAt:
|
|
3067
|
+
createdAt: string;
|
|
3068
|
+
updatedAt: string;
|
|
3069
3069
|
} | null | undefined;
|
|
3070
3070
|
bannerFile?: {
|
|
3071
3071
|
id: string;
|
|
@@ -3102,14 +3102,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3102
3102
|
format: string;
|
|
3103
3103
|
quality: number;
|
|
3104
3104
|
exifStripped: boolean;
|
|
3105
|
-
createdAt:
|
|
3106
|
-
updatedAt:
|
|
3105
|
+
createdAt: string;
|
|
3106
|
+
updatedAt: string;
|
|
3107
3107
|
} | undefined;
|
|
3108
|
-
createdAt:
|
|
3109
|
-
updatedAt:
|
|
3108
|
+
createdAt: string;
|
|
3109
|
+
updatedAt: string;
|
|
3110
3110
|
} | null | undefined;
|
|
3111
3111
|
bio: string | null;
|
|
3112
|
-
birthdate:
|
|
3112
|
+
birthdate: string | null;
|
|
3113
3113
|
location: {
|
|
3114
3114
|
type: "Point";
|
|
3115
3115
|
coordinates: [number, number];
|
|
@@ -3119,19 +3119,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3119
3119
|
};
|
|
3120
3120
|
reputation: number;
|
|
3121
3121
|
spaceReputation?: number | undefined;
|
|
3122
|
-
createdAt:
|
|
3122
|
+
createdAt: string;
|
|
3123
3123
|
};
|
|
3124
3124
|
upvotesCount: number;
|
|
3125
3125
|
content: string;
|
|
3126
3126
|
createdAt: string;
|
|
3127
3127
|
} | null;
|
|
3128
3128
|
isSaved?: boolean | undefined;
|
|
3129
|
-
createdAt:
|
|
3130
|
-
updatedAt:
|
|
3131
|
-
deletedAt:
|
|
3129
|
+
createdAt: string;
|
|
3130
|
+
updatedAt: string;
|
|
3131
|
+
deletedAt: string | null;
|
|
3132
3132
|
isDraft: boolean | null;
|
|
3133
3133
|
moderationStatus: "approved" | "removed" | null;
|
|
3134
|
-
moderatedAt:
|
|
3134
|
+
moderatedAt: string | null;
|
|
3135
3135
|
moderatedById: string | null;
|
|
3136
3136
|
moderatedByType: "client" | "user" | null;
|
|
3137
3137
|
moderationReason: string | null;
|
|
@@ -3150,8 +3150,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3150
3150
|
parentId: string | null;
|
|
3151
3151
|
name: string;
|
|
3152
3152
|
entityCount: number;
|
|
3153
|
-
createdAt:
|
|
3154
|
-
updatedAt:
|
|
3153
|
+
createdAt: string;
|
|
3154
|
+
updatedAt: string;
|
|
3155
3155
|
};
|
|
3156
3156
|
};
|
|
3157
3157
|
subcollectionsMap: {
|
|
@@ -3187,9 +3187,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3187
3187
|
metadata: {
|
|
3188
3188
|
[x: string]: any;
|
|
3189
3189
|
};
|
|
3190
|
-
createdAt:
|
|
3191
|
-
updatedAt:
|
|
3192
|
-
deletedAt:
|
|
3190
|
+
createdAt: string;
|
|
3191
|
+
updatedAt: string;
|
|
3192
|
+
deletedAt: string | null;
|
|
3193
3193
|
membersCount: number;
|
|
3194
3194
|
childSpacesCount: number;
|
|
3195
3195
|
isMember?: boolean | undefined;
|
|
@@ -3228,11 +3228,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3228
3228
|
format: string;
|
|
3229
3229
|
quality: number;
|
|
3230
3230
|
exifStripped: boolean;
|
|
3231
|
-
createdAt:
|
|
3232
|
-
updatedAt:
|
|
3231
|
+
createdAt: string;
|
|
3232
|
+
updatedAt: string;
|
|
3233
3233
|
} | undefined;
|
|
3234
|
-
createdAt:
|
|
3235
|
-
updatedAt:
|
|
3234
|
+
createdAt: string;
|
|
3235
|
+
updatedAt: string;
|
|
3236
3236
|
} | undefined;
|
|
3237
3237
|
bannerFile?: {
|
|
3238
3238
|
id: string;
|
|
@@ -3269,11 +3269,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3269
3269
|
format: string;
|
|
3270
3270
|
quality: number;
|
|
3271
3271
|
exifStripped: boolean;
|
|
3272
|
-
createdAt:
|
|
3273
|
-
updatedAt:
|
|
3272
|
+
createdAt: string;
|
|
3273
|
+
updatedAt: string;
|
|
3274
3274
|
} | undefined;
|
|
3275
|
-
createdAt:
|
|
3276
|
-
updatedAt:
|
|
3275
|
+
createdAt: string;
|
|
3276
|
+
updatedAt: string;
|
|
3277
3277
|
} | undefined;
|
|
3278
3278
|
} | null | undefined;
|
|
3279
3279
|
userId: string | null;
|
|
@@ -3322,11 +3322,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3322
3322
|
format: string;
|
|
3323
3323
|
quality: number;
|
|
3324
3324
|
exifStripped: boolean;
|
|
3325
|
-
createdAt:
|
|
3326
|
-
updatedAt:
|
|
3325
|
+
createdAt: string;
|
|
3326
|
+
updatedAt: string;
|
|
3327
3327
|
} | undefined;
|
|
3328
|
-
createdAt:
|
|
3329
|
-
updatedAt:
|
|
3328
|
+
createdAt: string;
|
|
3329
|
+
updatedAt: string;
|
|
3330
3330
|
} | null | undefined;
|
|
3331
3331
|
bannerFile?: {
|
|
3332
3332
|
id: string;
|
|
@@ -3363,14 +3363,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3363
3363
|
format: string;
|
|
3364
3364
|
quality: number;
|
|
3365
3365
|
exifStripped: boolean;
|
|
3366
|
-
createdAt:
|
|
3367
|
-
updatedAt:
|
|
3366
|
+
createdAt: string;
|
|
3367
|
+
updatedAt: string;
|
|
3368
3368
|
} | undefined;
|
|
3369
|
-
createdAt:
|
|
3370
|
-
updatedAt:
|
|
3369
|
+
createdAt: string;
|
|
3370
|
+
updatedAt: string;
|
|
3371
3371
|
} | null | undefined;
|
|
3372
3372
|
bio: string | null;
|
|
3373
|
-
birthdate:
|
|
3373
|
+
birthdate: string | null;
|
|
3374
3374
|
location: {
|
|
3375
3375
|
type: "Point";
|
|
3376
3376
|
coordinates: [number, number];
|
|
@@ -3380,7 +3380,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3380
3380
|
};
|
|
3381
3381
|
reputation: number;
|
|
3382
3382
|
spaceReputation?: number | undefined;
|
|
3383
|
-
createdAt:
|
|
3383
|
+
createdAt: string;
|
|
3384
3384
|
} | null | undefined;
|
|
3385
3385
|
title: string | null;
|
|
3386
3386
|
content: string | null;
|
|
@@ -3432,11 +3432,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3432
3432
|
format: string;
|
|
3433
3433
|
quality: number;
|
|
3434
3434
|
exifStripped: boolean;
|
|
3435
|
-
createdAt:
|
|
3436
|
-
updatedAt:
|
|
3435
|
+
createdAt: string;
|
|
3436
|
+
updatedAt: string;
|
|
3437
3437
|
} | undefined;
|
|
3438
|
-
createdAt:
|
|
3439
|
-
updatedAt:
|
|
3438
|
+
createdAt: string;
|
|
3439
|
+
updatedAt: string;
|
|
3440
3440
|
}[] | undefined;
|
|
3441
3441
|
keywords: string[];
|
|
3442
3442
|
upvotes: string[];
|
|
@@ -3455,7 +3455,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3455
3455
|
repliesCount: number;
|
|
3456
3456
|
views: number;
|
|
3457
3457
|
score: number;
|
|
3458
|
-
scoreUpdatedAt:
|
|
3458
|
+
scoreUpdatedAt: string;
|
|
3459
3459
|
location: {
|
|
3460
3460
|
type: "Point";
|
|
3461
3461
|
coordinates: [number, number];
|
|
@@ -3510,11 +3510,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3510
3510
|
format: string;
|
|
3511
3511
|
quality: number;
|
|
3512
3512
|
exifStripped: boolean;
|
|
3513
|
-
createdAt:
|
|
3514
|
-
updatedAt:
|
|
3513
|
+
createdAt: string;
|
|
3514
|
+
updatedAt: string;
|
|
3515
3515
|
} | undefined;
|
|
3516
|
-
createdAt:
|
|
3517
|
-
updatedAt:
|
|
3516
|
+
createdAt: string;
|
|
3517
|
+
updatedAt: string;
|
|
3518
3518
|
} | null | undefined;
|
|
3519
3519
|
bannerFile?: {
|
|
3520
3520
|
id: string;
|
|
@@ -3551,14 +3551,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3551
3551
|
format: string;
|
|
3552
3552
|
quality: number;
|
|
3553
3553
|
exifStripped: boolean;
|
|
3554
|
-
createdAt:
|
|
3555
|
-
updatedAt:
|
|
3554
|
+
createdAt: string;
|
|
3555
|
+
updatedAt: string;
|
|
3556
3556
|
} | undefined;
|
|
3557
|
-
createdAt:
|
|
3558
|
-
updatedAt:
|
|
3557
|
+
createdAt: string;
|
|
3558
|
+
updatedAt: string;
|
|
3559
3559
|
} | null | undefined;
|
|
3560
3560
|
bio: string | null;
|
|
3561
|
-
birthdate:
|
|
3561
|
+
birthdate: string | null;
|
|
3562
3562
|
location: {
|
|
3563
3563
|
type: "Point";
|
|
3564
3564
|
coordinates: [number, number];
|
|
@@ -3568,19 +3568,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3568
3568
|
};
|
|
3569
3569
|
reputation: number;
|
|
3570
3570
|
spaceReputation?: number | undefined;
|
|
3571
|
-
createdAt:
|
|
3571
|
+
createdAt: string;
|
|
3572
3572
|
};
|
|
3573
3573
|
upvotesCount: number;
|
|
3574
3574
|
content: string;
|
|
3575
3575
|
createdAt: string;
|
|
3576
3576
|
} | null;
|
|
3577
3577
|
isSaved?: boolean | undefined;
|
|
3578
|
-
createdAt:
|
|
3579
|
-
updatedAt:
|
|
3580
|
-
deletedAt:
|
|
3578
|
+
createdAt: string;
|
|
3579
|
+
updatedAt: string;
|
|
3580
|
+
deletedAt: string | null;
|
|
3581
3581
|
isDraft: boolean | null;
|
|
3582
3582
|
moderationStatus: "approved" | "removed" | null;
|
|
3583
|
-
moderatedAt:
|
|
3583
|
+
moderatedAt: string | null;
|
|
3584
3584
|
moderatedById: string | null;
|
|
3585
3585
|
moderatedByType: "client" | "user" | null;
|
|
3586
3586
|
moderationReason: string | null;
|
|
@@ -3596,8 +3596,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3596
3596
|
parentId: string | null;
|
|
3597
3597
|
name: string;
|
|
3598
3598
|
entityCount: number;
|
|
3599
|
-
createdAt:
|
|
3600
|
-
updatedAt:
|
|
3599
|
+
createdAt: string;
|
|
3600
|
+
updatedAt: string;
|
|
3601
3601
|
};
|
|
3602
3602
|
};
|
|
3603
3603
|
subcollectionsMap: {
|
|
@@ -3633,9 +3633,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3633
3633
|
metadata: {
|
|
3634
3634
|
[x: string]: any;
|
|
3635
3635
|
};
|
|
3636
|
-
createdAt:
|
|
3637
|
-
updatedAt:
|
|
3638
|
-
deletedAt:
|
|
3636
|
+
createdAt: string;
|
|
3637
|
+
updatedAt: string;
|
|
3638
|
+
deletedAt: string | null;
|
|
3639
3639
|
membersCount: number;
|
|
3640
3640
|
childSpacesCount: number;
|
|
3641
3641
|
isMember?: boolean | undefined;
|
|
@@ -3674,11 +3674,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3674
3674
|
format: string;
|
|
3675
3675
|
quality: number;
|
|
3676
3676
|
exifStripped: boolean;
|
|
3677
|
-
createdAt:
|
|
3678
|
-
updatedAt:
|
|
3677
|
+
createdAt: string;
|
|
3678
|
+
updatedAt: string;
|
|
3679
3679
|
} | undefined;
|
|
3680
|
-
createdAt:
|
|
3681
|
-
updatedAt:
|
|
3680
|
+
createdAt: string;
|
|
3681
|
+
updatedAt: string;
|
|
3682
3682
|
} | undefined;
|
|
3683
3683
|
bannerFile?: {
|
|
3684
3684
|
id: string;
|
|
@@ -3715,11 +3715,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3715
3715
|
format: string;
|
|
3716
3716
|
quality: number;
|
|
3717
3717
|
exifStripped: boolean;
|
|
3718
|
-
createdAt:
|
|
3719
|
-
updatedAt:
|
|
3718
|
+
createdAt: string;
|
|
3719
|
+
updatedAt: string;
|
|
3720
3720
|
} | undefined;
|
|
3721
|
-
createdAt:
|
|
3722
|
-
updatedAt:
|
|
3721
|
+
createdAt: string;
|
|
3722
|
+
updatedAt: string;
|
|
3723
3723
|
} | undefined;
|
|
3724
3724
|
} | null | undefined;
|
|
3725
3725
|
userId: string | null;
|
|
@@ -3768,11 +3768,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3768
3768
|
format: string;
|
|
3769
3769
|
quality: number;
|
|
3770
3770
|
exifStripped: boolean;
|
|
3771
|
-
createdAt:
|
|
3772
|
-
updatedAt:
|
|
3771
|
+
createdAt: string;
|
|
3772
|
+
updatedAt: string;
|
|
3773
3773
|
} | undefined;
|
|
3774
|
-
createdAt:
|
|
3775
|
-
updatedAt:
|
|
3774
|
+
createdAt: string;
|
|
3775
|
+
updatedAt: string;
|
|
3776
3776
|
} | null | undefined;
|
|
3777
3777
|
bannerFile?: {
|
|
3778
3778
|
id: string;
|
|
@@ -3809,14 +3809,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3809
3809
|
format: string;
|
|
3810
3810
|
quality: number;
|
|
3811
3811
|
exifStripped: boolean;
|
|
3812
|
-
createdAt:
|
|
3813
|
-
updatedAt:
|
|
3812
|
+
createdAt: string;
|
|
3813
|
+
updatedAt: string;
|
|
3814
3814
|
} | undefined;
|
|
3815
|
-
createdAt:
|
|
3816
|
-
updatedAt:
|
|
3815
|
+
createdAt: string;
|
|
3816
|
+
updatedAt: string;
|
|
3817
3817
|
} | null | undefined;
|
|
3818
3818
|
bio: string | null;
|
|
3819
|
-
birthdate:
|
|
3819
|
+
birthdate: string | null;
|
|
3820
3820
|
location: {
|
|
3821
3821
|
type: "Point";
|
|
3822
3822
|
coordinates: [number, number];
|
|
@@ -3826,7 +3826,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3826
3826
|
};
|
|
3827
3827
|
reputation: number;
|
|
3828
3828
|
spaceReputation?: number | undefined;
|
|
3829
|
-
createdAt:
|
|
3829
|
+
createdAt: string;
|
|
3830
3830
|
} | null | undefined;
|
|
3831
3831
|
title: string | null;
|
|
3832
3832
|
content: string | null;
|
|
@@ -3878,11 +3878,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3878
3878
|
format: string;
|
|
3879
3879
|
quality: number;
|
|
3880
3880
|
exifStripped: boolean;
|
|
3881
|
-
createdAt:
|
|
3882
|
-
updatedAt:
|
|
3881
|
+
createdAt: string;
|
|
3882
|
+
updatedAt: string;
|
|
3883
3883
|
} | undefined;
|
|
3884
|
-
createdAt:
|
|
3885
|
-
updatedAt:
|
|
3884
|
+
createdAt: string;
|
|
3885
|
+
updatedAt: string;
|
|
3886
3886
|
}[] | undefined;
|
|
3887
3887
|
keywords: string[];
|
|
3888
3888
|
upvotes: string[];
|
|
@@ -3901,7 +3901,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3901
3901
|
repliesCount: number;
|
|
3902
3902
|
views: number;
|
|
3903
3903
|
score: number;
|
|
3904
|
-
scoreUpdatedAt:
|
|
3904
|
+
scoreUpdatedAt: string;
|
|
3905
3905
|
location: {
|
|
3906
3906
|
type: "Point";
|
|
3907
3907
|
coordinates: [number, number];
|
|
@@ -3956,11 +3956,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3956
3956
|
format: string;
|
|
3957
3957
|
quality: number;
|
|
3958
3958
|
exifStripped: boolean;
|
|
3959
|
-
createdAt:
|
|
3960
|
-
updatedAt:
|
|
3959
|
+
createdAt: string;
|
|
3960
|
+
updatedAt: string;
|
|
3961
3961
|
} | undefined;
|
|
3962
|
-
createdAt:
|
|
3963
|
-
updatedAt:
|
|
3962
|
+
createdAt: string;
|
|
3963
|
+
updatedAt: string;
|
|
3964
3964
|
} | null | undefined;
|
|
3965
3965
|
bannerFile?: {
|
|
3966
3966
|
id: string;
|
|
@@ -3997,14 +3997,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
3997
3997
|
format: string;
|
|
3998
3998
|
quality: number;
|
|
3999
3999
|
exifStripped: boolean;
|
|
4000
|
-
createdAt:
|
|
4001
|
-
updatedAt:
|
|
4000
|
+
createdAt: string;
|
|
4001
|
+
updatedAt: string;
|
|
4002
4002
|
} | undefined;
|
|
4003
|
-
createdAt:
|
|
4004
|
-
updatedAt:
|
|
4003
|
+
createdAt: string;
|
|
4004
|
+
updatedAt: string;
|
|
4005
4005
|
} | null | undefined;
|
|
4006
4006
|
bio: string | null;
|
|
4007
|
-
birthdate:
|
|
4007
|
+
birthdate: string | null;
|
|
4008
4008
|
location: {
|
|
4009
4009
|
type: "Point";
|
|
4010
4010
|
coordinates: [number, number];
|
|
@@ -4014,19 +4014,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4014
4014
|
};
|
|
4015
4015
|
reputation: number;
|
|
4016
4016
|
spaceReputation?: number | undefined;
|
|
4017
|
-
createdAt:
|
|
4017
|
+
createdAt: string;
|
|
4018
4018
|
};
|
|
4019
4019
|
upvotesCount: number;
|
|
4020
4020
|
content: string;
|
|
4021
4021
|
createdAt: string;
|
|
4022
4022
|
} | null;
|
|
4023
4023
|
isSaved?: boolean | undefined;
|
|
4024
|
-
createdAt:
|
|
4025
|
-
updatedAt:
|
|
4026
|
-
deletedAt:
|
|
4024
|
+
createdAt: string;
|
|
4025
|
+
updatedAt: string;
|
|
4026
|
+
deletedAt: string | null;
|
|
4027
4027
|
isDraft: boolean | null;
|
|
4028
4028
|
moderationStatus: "approved" | "removed" | null;
|
|
4029
|
-
moderatedAt:
|
|
4029
|
+
moderatedAt: string | null;
|
|
4030
4030
|
moderatedById: string | null;
|
|
4031
4031
|
moderatedByType: "client" | "user" | null;
|
|
4032
4032
|
moderationReason: string | null;
|
|
@@ -4042,8 +4042,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4042
4042
|
parentId: string | null;
|
|
4043
4043
|
name: string;
|
|
4044
4044
|
entityCount: number;
|
|
4045
|
-
createdAt:
|
|
4046
|
-
updatedAt:
|
|
4045
|
+
createdAt: string;
|
|
4046
|
+
updatedAt: string;
|
|
4047
4047
|
};
|
|
4048
4048
|
};
|
|
4049
4049
|
subcollectionsMap: {
|
|
@@ -4079,9 +4079,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4079
4079
|
metadata: {
|
|
4080
4080
|
[x: string]: any;
|
|
4081
4081
|
};
|
|
4082
|
-
createdAt:
|
|
4083
|
-
updatedAt:
|
|
4084
|
-
deletedAt:
|
|
4082
|
+
createdAt: string;
|
|
4083
|
+
updatedAt: string;
|
|
4084
|
+
deletedAt: string | null;
|
|
4085
4085
|
membersCount: number;
|
|
4086
4086
|
childSpacesCount: number;
|
|
4087
4087
|
isMember?: boolean | undefined;
|
|
@@ -4120,11 +4120,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4120
4120
|
format: string;
|
|
4121
4121
|
quality: number;
|
|
4122
4122
|
exifStripped: boolean;
|
|
4123
|
-
createdAt:
|
|
4124
|
-
updatedAt:
|
|
4123
|
+
createdAt: string;
|
|
4124
|
+
updatedAt: string;
|
|
4125
4125
|
} | undefined;
|
|
4126
|
-
createdAt:
|
|
4127
|
-
updatedAt:
|
|
4126
|
+
createdAt: string;
|
|
4127
|
+
updatedAt: string;
|
|
4128
4128
|
} | undefined;
|
|
4129
4129
|
bannerFile?: {
|
|
4130
4130
|
id: string;
|
|
@@ -4161,11 +4161,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4161
4161
|
format: string;
|
|
4162
4162
|
quality: number;
|
|
4163
4163
|
exifStripped: boolean;
|
|
4164
|
-
createdAt:
|
|
4165
|
-
updatedAt:
|
|
4164
|
+
createdAt: string;
|
|
4165
|
+
updatedAt: string;
|
|
4166
4166
|
} | undefined;
|
|
4167
|
-
createdAt:
|
|
4168
|
-
updatedAt:
|
|
4167
|
+
createdAt: string;
|
|
4168
|
+
updatedAt: string;
|
|
4169
4169
|
} | undefined;
|
|
4170
4170
|
} | null | undefined;
|
|
4171
4171
|
userId: string | null;
|
|
@@ -4214,11 +4214,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4214
4214
|
format: string;
|
|
4215
4215
|
quality: number;
|
|
4216
4216
|
exifStripped: boolean;
|
|
4217
|
-
createdAt:
|
|
4218
|
-
updatedAt:
|
|
4217
|
+
createdAt: string;
|
|
4218
|
+
updatedAt: string;
|
|
4219
4219
|
} | undefined;
|
|
4220
|
-
createdAt:
|
|
4221
|
-
updatedAt:
|
|
4220
|
+
createdAt: string;
|
|
4221
|
+
updatedAt: string;
|
|
4222
4222
|
} | null | undefined;
|
|
4223
4223
|
bannerFile?: {
|
|
4224
4224
|
id: string;
|
|
@@ -4255,14 +4255,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4255
4255
|
format: string;
|
|
4256
4256
|
quality: number;
|
|
4257
4257
|
exifStripped: boolean;
|
|
4258
|
-
createdAt:
|
|
4259
|
-
updatedAt:
|
|
4258
|
+
createdAt: string;
|
|
4259
|
+
updatedAt: string;
|
|
4260
4260
|
} | undefined;
|
|
4261
|
-
createdAt:
|
|
4262
|
-
updatedAt:
|
|
4261
|
+
createdAt: string;
|
|
4262
|
+
updatedAt: string;
|
|
4263
4263
|
} | null | undefined;
|
|
4264
4264
|
bio: string | null;
|
|
4265
|
-
birthdate:
|
|
4265
|
+
birthdate: string | null;
|
|
4266
4266
|
location: {
|
|
4267
4267
|
type: "Point";
|
|
4268
4268
|
coordinates: [number, number];
|
|
@@ -4272,7 +4272,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4272
4272
|
};
|
|
4273
4273
|
reputation: number;
|
|
4274
4274
|
spaceReputation?: number | undefined;
|
|
4275
|
-
createdAt:
|
|
4275
|
+
createdAt: string;
|
|
4276
4276
|
} | null | undefined;
|
|
4277
4277
|
title: string | null;
|
|
4278
4278
|
content: string | null;
|
|
@@ -4324,11 +4324,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4324
4324
|
format: string;
|
|
4325
4325
|
quality: number;
|
|
4326
4326
|
exifStripped: boolean;
|
|
4327
|
-
createdAt:
|
|
4328
|
-
updatedAt:
|
|
4327
|
+
createdAt: string;
|
|
4328
|
+
updatedAt: string;
|
|
4329
4329
|
} | undefined;
|
|
4330
|
-
createdAt:
|
|
4331
|
-
updatedAt:
|
|
4330
|
+
createdAt: string;
|
|
4331
|
+
updatedAt: string;
|
|
4332
4332
|
}[] | undefined;
|
|
4333
4333
|
keywords: string[];
|
|
4334
4334
|
upvotes: string[];
|
|
@@ -4347,7 +4347,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4347
4347
|
repliesCount: number;
|
|
4348
4348
|
views: number;
|
|
4349
4349
|
score: number;
|
|
4350
|
-
scoreUpdatedAt:
|
|
4350
|
+
scoreUpdatedAt: string;
|
|
4351
4351
|
location: {
|
|
4352
4352
|
type: "Point";
|
|
4353
4353
|
coordinates: [number, number];
|
|
@@ -4402,11 +4402,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4402
4402
|
format: string;
|
|
4403
4403
|
quality: number;
|
|
4404
4404
|
exifStripped: boolean;
|
|
4405
|
-
createdAt:
|
|
4406
|
-
updatedAt:
|
|
4405
|
+
createdAt: string;
|
|
4406
|
+
updatedAt: string;
|
|
4407
4407
|
} | undefined;
|
|
4408
|
-
createdAt:
|
|
4409
|
-
updatedAt:
|
|
4408
|
+
createdAt: string;
|
|
4409
|
+
updatedAt: string;
|
|
4410
4410
|
} | null | undefined;
|
|
4411
4411
|
bannerFile?: {
|
|
4412
4412
|
id: string;
|
|
@@ -4443,14 +4443,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4443
4443
|
format: string;
|
|
4444
4444
|
quality: number;
|
|
4445
4445
|
exifStripped: boolean;
|
|
4446
|
-
createdAt:
|
|
4447
|
-
updatedAt:
|
|
4446
|
+
createdAt: string;
|
|
4447
|
+
updatedAt: string;
|
|
4448
4448
|
} | undefined;
|
|
4449
|
-
createdAt:
|
|
4450
|
-
updatedAt:
|
|
4449
|
+
createdAt: string;
|
|
4450
|
+
updatedAt: string;
|
|
4451
4451
|
} | null | undefined;
|
|
4452
4452
|
bio: string | null;
|
|
4453
|
-
birthdate:
|
|
4453
|
+
birthdate: string | null;
|
|
4454
4454
|
location: {
|
|
4455
4455
|
type: "Point";
|
|
4456
4456
|
coordinates: [number, number];
|
|
@@ -4460,19 +4460,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4460
4460
|
};
|
|
4461
4461
|
reputation: number;
|
|
4462
4462
|
spaceReputation?: number | undefined;
|
|
4463
|
-
createdAt:
|
|
4463
|
+
createdAt: string;
|
|
4464
4464
|
};
|
|
4465
4465
|
upvotesCount: number;
|
|
4466
4466
|
content: string;
|
|
4467
4467
|
createdAt: string;
|
|
4468
4468
|
} | null;
|
|
4469
4469
|
isSaved?: boolean | undefined;
|
|
4470
|
-
createdAt:
|
|
4471
|
-
updatedAt:
|
|
4472
|
-
deletedAt:
|
|
4470
|
+
createdAt: string;
|
|
4471
|
+
updatedAt: string;
|
|
4472
|
+
deletedAt: string | null;
|
|
4473
4473
|
isDraft: boolean | null;
|
|
4474
4474
|
moderationStatus: "approved" | "removed" | null;
|
|
4475
|
-
moderatedAt:
|
|
4475
|
+
moderatedAt: string | null;
|
|
4476
4476
|
moderatedById: string | null;
|
|
4477
4477
|
moderatedByType: "client" | "user" | null;
|
|
4478
4478
|
moderationReason: string | null;
|
|
@@ -4488,8 +4488,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4488
4488
|
parentId: string | null;
|
|
4489
4489
|
name: string;
|
|
4490
4490
|
entityCount: number;
|
|
4491
|
-
createdAt:
|
|
4492
|
-
updatedAt:
|
|
4491
|
+
createdAt: string;
|
|
4492
|
+
updatedAt: string;
|
|
4493
4493
|
};
|
|
4494
4494
|
};
|
|
4495
4495
|
subcollectionsMap: {
|
|
@@ -4525,9 +4525,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4525
4525
|
metadata: {
|
|
4526
4526
|
[x: string]: any;
|
|
4527
4527
|
};
|
|
4528
|
-
createdAt:
|
|
4529
|
-
updatedAt:
|
|
4530
|
-
deletedAt:
|
|
4528
|
+
createdAt: string;
|
|
4529
|
+
updatedAt: string;
|
|
4530
|
+
deletedAt: string | null;
|
|
4531
4531
|
membersCount: number;
|
|
4532
4532
|
childSpacesCount: number;
|
|
4533
4533
|
isMember?: boolean | undefined;
|
|
@@ -4566,11 +4566,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4566
4566
|
format: string;
|
|
4567
4567
|
quality: number;
|
|
4568
4568
|
exifStripped: boolean;
|
|
4569
|
-
createdAt:
|
|
4570
|
-
updatedAt:
|
|
4569
|
+
createdAt: string;
|
|
4570
|
+
updatedAt: string;
|
|
4571
4571
|
} | undefined;
|
|
4572
|
-
createdAt:
|
|
4573
|
-
updatedAt:
|
|
4572
|
+
createdAt: string;
|
|
4573
|
+
updatedAt: string;
|
|
4574
4574
|
} | undefined;
|
|
4575
4575
|
bannerFile?: {
|
|
4576
4576
|
id: string;
|
|
@@ -4607,11 +4607,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4607
4607
|
format: string;
|
|
4608
4608
|
quality: number;
|
|
4609
4609
|
exifStripped: boolean;
|
|
4610
|
-
createdAt:
|
|
4611
|
-
updatedAt:
|
|
4610
|
+
createdAt: string;
|
|
4611
|
+
updatedAt: string;
|
|
4612
4612
|
} | undefined;
|
|
4613
|
-
createdAt:
|
|
4614
|
-
updatedAt:
|
|
4613
|
+
createdAt: string;
|
|
4614
|
+
updatedAt: string;
|
|
4615
4615
|
} | undefined;
|
|
4616
4616
|
} | null | undefined;
|
|
4617
4617
|
userId: string | null;
|
|
@@ -4660,11 +4660,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4660
4660
|
format: string;
|
|
4661
4661
|
quality: number;
|
|
4662
4662
|
exifStripped: boolean;
|
|
4663
|
-
createdAt:
|
|
4664
|
-
updatedAt:
|
|
4663
|
+
createdAt: string;
|
|
4664
|
+
updatedAt: string;
|
|
4665
4665
|
} | undefined;
|
|
4666
|
-
createdAt:
|
|
4667
|
-
updatedAt:
|
|
4666
|
+
createdAt: string;
|
|
4667
|
+
updatedAt: string;
|
|
4668
4668
|
} | null | undefined;
|
|
4669
4669
|
bannerFile?: {
|
|
4670
4670
|
id: string;
|
|
@@ -4701,14 +4701,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4701
4701
|
format: string;
|
|
4702
4702
|
quality: number;
|
|
4703
4703
|
exifStripped: boolean;
|
|
4704
|
-
createdAt:
|
|
4705
|
-
updatedAt:
|
|
4704
|
+
createdAt: string;
|
|
4705
|
+
updatedAt: string;
|
|
4706
4706
|
} | undefined;
|
|
4707
|
-
createdAt:
|
|
4708
|
-
updatedAt:
|
|
4707
|
+
createdAt: string;
|
|
4708
|
+
updatedAt: string;
|
|
4709
4709
|
} | null | undefined;
|
|
4710
4710
|
bio: string | null;
|
|
4711
|
-
birthdate:
|
|
4711
|
+
birthdate: string | null;
|
|
4712
4712
|
location: {
|
|
4713
4713
|
type: "Point";
|
|
4714
4714
|
coordinates: [number, number];
|
|
@@ -4718,7 +4718,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4718
4718
|
};
|
|
4719
4719
|
reputation: number;
|
|
4720
4720
|
spaceReputation?: number | undefined;
|
|
4721
|
-
createdAt:
|
|
4721
|
+
createdAt: string;
|
|
4722
4722
|
} | null | undefined;
|
|
4723
4723
|
title: string | null;
|
|
4724
4724
|
content: string | null;
|
|
@@ -4770,11 +4770,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4770
4770
|
format: string;
|
|
4771
4771
|
quality: number;
|
|
4772
4772
|
exifStripped: boolean;
|
|
4773
|
-
createdAt:
|
|
4774
|
-
updatedAt:
|
|
4773
|
+
createdAt: string;
|
|
4774
|
+
updatedAt: string;
|
|
4775
4775
|
} | undefined;
|
|
4776
|
-
createdAt:
|
|
4777
|
-
updatedAt:
|
|
4776
|
+
createdAt: string;
|
|
4777
|
+
updatedAt: string;
|
|
4778
4778
|
}[] | undefined;
|
|
4779
4779
|
keywords: string[];
|
|
4780
4780
|
upvotes: string[];
|
|
@@ -4793,7 +4793,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4793
4793
|
repliesCount: number;
|
|
4794
4794
|
views: number;
|
|
4795
4795
|
score: number;
|
|
4796
|
-
scoreUpdatedAt:
|
|
4796
|
+
scoreUpdatedAt: string;
|
|
4797
4797
|
location: {
|
|
4798
4798
|
type: "Point";
|
|
4799
4799
|
coordinates: [number, number];
|
|
@@ -4848,11 +4848,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4848
4848
|
format: string;
|
|
4849
4849
|
quality: number;
|
|
4850
4850
|
exifStripped: boolean;
|
|
4851
|
-
createdAt:
|
|
4852
|
-
updatedAt:
|
|
4851
|
+
createdAt: string;
|
|
4852
|
+
updatedAt: string;
|
|
4853
4853
|
} | undefined;
|
|
4854
|
-
createdAt:
|
|
4855
|
-
updatedAt:
|
|
4854
|
+
createdAt: string;
|
|
4855
|
+
updatedAt: string;
|
|
4856
4856
|
} | null | undefined;
|
|
4857
4857
|
bannerFile?: {
|
|
4858
4858
|
id: string;
|
|
@@ -4889,14 +4889,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4889
4889
|
format: string;
|
|
4890
4890
|
quality: number;
|
|
4891
4891
|
exifStripped: boolean;
|
|
4892
|
-
createdAt:
|
|
4893
|
-
updatedAt:
|
|
4892
|
+
createdAt: string;
|
|
4893
|
+
updatedAt: string;
|
|
4894
4894
|
} | undefined;
|
|
4895
|
-
createdAt:
|
|
4896
|
-
updatedAt:
|
|
4895
|
+
createdAt: string;
|
|
4896
|
+
updatedAt: string;
|
|
4897
4897
|
} | null | undefined;
|
|
4898
4898
|
bio: string | null;
|
|
4899
|
-
birthdate:
|
|
4899
|
+
birthdate: string | null;
|
|
4900
4900
|
location: {
|
|
4901
4901
|
type: "Point";
|
|
4902
4902
|
coordinates: [number, number];
|
|
@@ -4906,19 +4906,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4906
4906
|
};
|
|
4907
4907
|
reputation: number;
|
|
4908
4908
|
spaceReputation?: number | undefined;
|
|
4909
|
-
createdAt:
|
|
4909
|
+
createdAt: string;
|
|
4910
4910
|
};
|
|
4911
4911
|
upvotesCount: number;
|
|
4912
4912
|
content: string;
|
|
4913
4913
|
createdAt: string;
|
|
4914
4914
|
} | null;
|
|
4915
4915
|
isSaved?: boolean | undefined;
|
|
4916
|
-
createdAt:
|
|
4917
|
-
updatedAt:
|
|
4918
|
-
deletedAt:
|
|
4916
|
+
createdAt: string;
|
|
4917
|
+
updatedAt: string;
|
|
4918
|
+
deletedAt: string | null;
|
|
4919
4919
|
isDraft: boolean | null;
|
|
4920
4920
|
moderationStatus: "approved" | "removed" | null;
|
|
4921
|
-
moderatedAt:
|
|
4921
|
+
moderatedAt: string | null;
|
|
4922
4922
|
moderatedById: string | null;
|
|
4923
4923
|
moderatedByType: "client" | "user" | null;
|
|
4924
4924
|
moderationReason: string | null;
|
|
@@ -4934,8 +4934,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4934
4934
|
parentId: string | null;
|
|
4935
4935
|
name: string;
|
|
4936
4936
|
entityCount: number;
|
|
4937
|
-
createdAt:
|
|
4938
|
-
updatedAt:
|
|
4937
|
+
createdAt: string;
|
|
4938
|
+
updatedAt: string;
|
|
4939
4939
|
};
|
|
4940
4940
|
};
|
|
4941
4941
|
subcollectionsMap: {
|
|
@@ -4971,9 +4971,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
4971
4971
|
metadata: {
|
|
4972
4972
|
[x: string]: any;
|
|
4973
4973
|
};
|
|
4974
|
-
createdAt:
|
|
4975
|
-
updatedAt:
|
|
4976
|
-
deletedAt:
|
|
4974
|
+
createdAt: string;
|
|
4975
|
+
updatedAt: string;
|
|
4976
|
+
deletedAt: string | null;
|
|
4977
4977
|
membersCount: number;
|
|
4978
4978
|
childSpacesCount: number;
|
|
4979
4979
|
isMember?: boolean | undefined;
|
|
@@ -5012,11 +5012,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5012
5012
|
format: string;
|
|
5013
5013
|
quality: number;
|
|
5014
5014
|
exifStripped: boolean;
|
|
5015
|
-
createdAt:
|
|
5016
|
-
updatedAt:
|
|
5015
|
+
createdAt: string;
|
|
5016
|
+
updatedAt: string;
|
|
5017
5017
|
} | undefined;
|
|
5018
|
-
createdAt:
|
|
5019
|
-
updatedAt:
|
|
5018
|
+
createdAt: string;
|
|
5019
|
+
updatedAt: string;
|
|
5020
5020
|
} | undefined;
|
|
5021
5021
|
bannerFile?: {
|
|
5022
5022
|
id: string;
|
|
@@ -5053,11 +5053,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5053
5053
|
format: string;
|
|
5054
5054
|
quality: number;
|
|
5055
5055
|
exifStripped: boolean;
|
|
5056
|
-
createdAt:
|
|
5057
|
-
updatedAt:
|
|
5056
|
+
createdAt: string;
|
|
5057
|
+
updatedAt: string;
|
|
5058
5058
|
} | undefined;
|
|
5059
|
-
createdAt:
|
|
5060
|
-
updatedAt:
|
|
5059
|
+
createdAt: string;
|
|
5060
|
+
updatedAt: string;
|
|
5061
5061
|
} | undefined;
|
|
5062
5062
|
} | null | undefined;
|
|
5063
5063
|
userId: string | null;
|
|
@@ -5106,11 +5106,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5106
5106
|
format: string;
|
|
5107
5107
|
quality: number;
|
|
5108
5108
|
exifStripped: boolean;
|
|
5109
|
-
createdAt:
|
|
5110
|
-
updatedAt:
|
|
5109
|
+
createdAt: string;
|
|
5110
|
+
updatedAt: string;
|
|
5111
5111
|
} | undefined;
|
|
5112
|
-
createdAt:
|
|
5113
|
-
updatedAt:
|
|
5112
|
+
createdAt: string;
|
|
5113
|
+
updatedAt: string;
|
|
5114
5114
|
} | null | undefined;
|
|
5115
5115
|
bannerFile?: {
|
|
5116
5116
|
id: string;
|
|
@@ -5147,14 +5147,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5147
5147
|
format: string;
|
|
5148
5148
|
quality: number;
|
|
5149
5149
|
exifStripped: boolean;
|
|
5150
|
-
createdAt:
|
|
5151
|
-
updatedAt:
|
|
5150
|
+
createdAt: string;
|
|
5151
|
+
updatedAt: string;
|
|
5152
5152
|
} | undefined;
|
|
5153
|
-
createdAt:
|
|
5154
|
-
updatedAt:
|
|
5153
|
+
createdAt: string;
|
|
5154
|
+
updatedAt: string;
|
|
5155
5155
|
} | null | undefined;
|
|
5156
5156
|
bio: string | null;
|
|
5157
|
-
birthdate:
|
|
5157
|
+
birthdate: string | null;
|
|
5158
5158
|
location: {
|
|
5159
5159
|
type: "Point";
|
|
5160
5160
|
coordinates: [number, number];
|
|
@@ -5164,7 +5164,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5164
5164
|
};
|
|
5165
5165
|
reputation: number;
|
|
5166
5166
|
spaceReputation?: number | undefined;
|
|
5167
|
-
createdAt:
|
|
5167
|
+
createdAt: string;
|
|
5168
5168
|
} | null | undefined;
|
|
5169
5169
|
title: string | null;
|
|
5170
5170
|
content: string | null;
|
|
@@ -5216,11 +5216,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5216
5216
|
format: string;
|
|
5217
5217
|
quality: number;
|
|
5218
5218
|
exifStripped: boolean;
|
|
5219
|
-
createdAt:
|
|
5220
|
-
updatedAt:
|
|
5219
|
+
createdAt: string;
|
|
5220
|
+
updatedAt: string;
|
|
5221
5221
|
} | undefined;
|
|
5222
|
-
createdAt:
|
|
5223
|
-
updatedAt:
|
|
5222
|
+
createdAt: string;
|
|
5223
|
+
updatedAt: string;
|
|
5224
5224
|
}[] | undefined;
|
|
5225
5225
|
keywords: string[];
|
|
5226
5226
|
upvotes: string[];
|
|
@@ -5239,7 +5239,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5239
5239
|
repliesCount: number;
|
|
5240
5240
|
views: number;
|
|
5241
5241
|
score: number;
|
|
5242
|
-
scoreUpdatedAt:
|
|
5242
|
+
scoreUpdatedAt: string;
|
|
5243
5243
|
location: {
|
|
5244
5244
|
type: "Point";
|
|
5245
5245
|
coordinates: [number, number];
|
|
@@ -5294,11 +5294,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5294
5294
|
format: string;
|
|
5295
5295
|
quality: number;
|
|
5296
5296
|
exifStripped: boolean;
|
|
5297
|
-
createdAt:
|
|
5298
|
-
updatedAt:
|
|
5297
|
+
createdAt: string;
|
|
5298
|
+
updatedAt: string;
|
|
5299
5299
|
} | undefined;
|
|
5300
|
-
createdAt:
|
|
5301
|
-
updatedAt:
|
|
5300
|
+
createdAt: string;
|
|
5301
|
+
updatedAt: string;
|
|
5302
5302
|
} | null | undefined;
|
|
5303
5303
|
bannerFile?: {
|
|
5304
5304
|
id: string;
|
|
@@ -5335,14 +5335,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5335
5335
|
format: string;
|
|
5336
5336
|
quality: number;
|
|
5337
5337
|
exifStripped: boolean;
|
|
5338
|
-
createdAt:
|
|
5339
|
-
updatedAt:
|
|
5338
|
+
createdAt: string;
|
|
5339
|
+
updatedAt: string;
|
|
5340
5340
|
} | undefined;
|
|
5341
|
-
createdAt:
|
|
5342
|
-
updatedAt:
|
|
5341
|
+
createdAt: string;
|
|
5342
|
+
updatedAt: string;
|
|
5343
5343
|
} | null | undefined;
|
|
5344
5344
|
bio: string | null;
|
|
5345
|
-
birthdate:
|
|
5345
|
+
birthdate: string | null;
|
|
5346
5346
|
location: {
|
|
5347
5347
|
type: "Point";
|
|
5348
5348
|
coordinates: [number, number];
|
|
@@ -5352,19 +5352,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5352
5352
|
};
|
|
5353
5353
|
reputation: number;
|
|
5354
5354
|
spaceReputation?: number | undefined;
|
|
5355
|
-
createdAt:
|
|
5355
|
+
createdAt: string;
|
|
5356
5356
|
};
|
|
5357
5357
|
upvotesCount: number;
|
|
5358
5358
|
content: string;
|
|
5359
5359
|
createdAt: string;
|
|
5360
5360
|
} | null;
|
|
5361
5361
|
isSaved?: boolean | undefined;
|
|
5362
|
-
createdAt:
|
|
5363
|
-
updatedAt:
|
|
5364
|
-
deletedAt:
|
|
5362
|
+
createdAt: string;
|
|
5363
|
+
updatedAt: string;
|
|
5364
|
+
deletedAt: string | null;
|
|
5365
5365
|
isDraft: boolean | null;
|
|
5366
5366
|
moderationStatus: "approved" | "removed" | null;
|
|
5367
|
-
moderatedAt:
|
|
5367
|
+
moderatedAt: string | null;
|
|
5368
5368
|
moderatedById: string | null;
|
|
5369
5369
|
moderatedByType: "client" | "user" | null;
|
|
5370
5370
|
moderationReason: string | null;
|
|
@@ -5383,8 +5383,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5383
5383
|
parentId: string | null;
|
|
5384
5384
|
name: string;
|
|
5385
5385
|
entityCount: number;
|
|
5386
|
-
createdAt:
|
|
5387
|
-
updatedAt:
|
|
5386
|
+
createdAt: string;
|
|
5387
|
+
updatedAt: string;
|
|
5388
5388
|
};
|
|
5389
5389
|
};
|
|
5390
5390
|
subcollectionsMap: {
|
|
@@ -5420,9 +5420,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5420
5420
|
metadata: {
|
|
5421
5421
|
[x: string]: any;
|
|
5422
5422
|
};
|
|
5423
|
-
createdAt:
|
|
5424
|
-
updatedAt:
|
|
5425
|
-
deletedAt:
|
|
5423
|
+
createdAt: string;
|
|
5424
|
+
updatedAt: string;
|
|
5425
|
+
deletedAt: string | null;
|
|
5426
5426
|
membersCount: number;
|
|
5427
5427
|
childSpacesCount: number;
|
|
5428
5428
|
isMember?: boolean | undefined;
|
|
@@ -5461,11 +5461,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5461
5461
|
format: string;
|
|
5462
5462
|
quality: number;
|
|
5463
5463
|
exifStripped: boolean;
|
|
5464
|
-
createdAt:
|
|
5465
|
-
updatedAt:
|
|
5464
|
+
createdAt: string;
|
|
5465
|
+
updatedAt: string;
|
|
5466
5466
|
} | undefined;
|
|
5467
|
-
createdAt:
|
|
5468
|
-
updatedAt:
|
|
5467
|
+
createdAt: string;
|
|
5468
|
+
updatedAt: string;
|
|
5469
5469
|
} | undefined;
|
|
5470
5470
|
bannerFile?: {
|
|
5471
5471
|
id: string;
|
|
@@ -5502,11 +5502,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5502
5502
|
format: string;
|
|
5503
5503
|
quality: number;
|
|
5504
5504
|
exifStripped: boolean;
|
|
5505
|
-
createdAt:
|
|
5506
|
-
updatedAt:
|
|
5505
|
+
createdAt: string;
|
|
5506
|
+
updatedAt: string;
|
|
5507
5507
|
} | undefined;
|
|
5508
|
-
createdAt:
|
|
5509
|
-
updatedAt:
|
|
5508
|
+
createdAt: string;
|
|
5509
|
+
updatedAt: string;
|
|
5510
5510
|
} | undefined;
|
|
5511
5511
|
} | null | undefined;
|
|
5512
5512
|
userId: string | null;
|
|
@@ -5555,11 +5555,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5555
5555
|
format: string;
|
|
5556
5556
|
quality: number;
|
|
5557
5557
|
exifStripped: boolean;
|
|
5558
|
-
createdAt:
|
|
5559
|
-
updatedAt:
|
|
5558
|
+
createdAt: string;
|
|
5559
|
+
updatedAt: string;
|
|
5560
5560
|
} | undefined;
|
|
5561
|
-
createdAt:
|
|
5562
|
-
updatedAt:
|
|
5561
|
+
createdAt: string;
|
|
5562
|
+
updatedAt: string;
|
|
5563
5563
|
} | null | undefined;
|
|
5564
5564
|
bannerFile?: {
|
|
5565
5565
|
id: string;
|
|
@@ -5596,14 +5596,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5596
5596
|
format: string;
|
|
5597
5597
|
quality: number;
|
|
5598
5598
|
exifStripped: boolean;
|
|
5599
|
-
createdAt:
|
|
5600
|
-
updatedAt:
|
|
5599
|
+
createdAt: string;
|
|
5600
|
+
updatedAt: string;
|
|
5601
5601
|
} | undefined;
|
|
5602
|
-
createdAt:
|
|
5603
|
-
updatedAt:
|
|
5602
|
+
createdAt: string;
|
|
5603
|
+
updatedAt: string;
|
|
5604
5604
|
} | null | undefined;
|
|
5605
5605
|
bio: string | null;
|
|
5606
|
-
birthdate:
|
|
5606
|
+
birthdate: string | null;
|
|
5607
5607
|
location: {
|
|
5608
5608
|
type: "Point";
|
|
5609
5609
|
coordinates: [number, number];
|
|
@@ -5613,7 +5613,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5613
5613
|
};
|
|
5614
5614
|
reputation: number;
|
|
5615
5615
|
spaceReputation?: number | undefined;
|
|
5616
|
-
createdAt:
|
|
5616
|
+
createdAt: string;
|
|
5617
5617
|
} | null | undefined;
|
|
5618
5618
|
title: string | null;
|
|
5619
5619
|
content: string | null;
|
|
@@ -5665,11 +5665,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5665
5665
|
format: string;
|
|
5666
5666
|
quality: number;
|
|
5667
5667
|
exifStripped: boolean;
|
|
5668
|
-
createdAt:
|
|
5669
|
-
updatedAt:
|
|
5668
|
+
createdAt: string;
|
|
5669
|
+
updatedAt: string;
|
|
5670
5670
|
} | undefined;
|
|
5671
|
-
createdAt:
|
|
5672
|
-
updatedAt:
|
|
5671
|
+
createdAt: string;
|
|
5672
|
+
updatedAt: string;
|
|
5673
5673
|
}[] | undefined;
|
|
5674
5674
|
keywords: string[];
|
|
5675
5675
|
upvotes: string[];
|
|
@@ -5688,7 +5688,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5688
5688
|
repliesCount: number;
|
|
5689
5689
|
views: number;
|
|
5690
5690
|
score: number;
|
|
5691
|
-
scoreUpdatedAt:
|
|
5691
|
+
scoreUpdatedAt: string;
|
|
5692
5692
|
location: {
|
|
5693
5693
|
type: "Point";
|
|
5694
5694
|
coordinates: [number, number];
|
|
@@ -5743,11 +5743,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5743
5743
|
format: string;
|
|
5744
5744
|
quality: number;
|
|
5745
5745
|
exifStripped: boolean;
|
|
5746
|
-
createdAt:
|
|
5747
|
-
updatedAt:
|
|
5746
|
+
createdAt: string;
|
|
5747
|
+
updatedAt: string;
|
|
5748
5748
|
} | undefined;
|
|
5749
|
-
createdAt:
|
|
5750
|
-
updatedAt:
|
|
5749
|
+
createdAt: string;
|
|
5750
|
+
updatedAt: string;
|
|
5751
5751
|
} | null | undefined;
|
|
5752
5752
|
bannerFile?: {
|
|
5753
5753
|
id: string;
|
|
@@ -5784,14 +5784,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5784
5784
|
format: string;
|
|
5785
5785
|
quality: number;
|
|
5786
5786
|
exifStripped: boolean;
|
|
5787
|
-
createdAt:
|
|
5788
|
-
updatedAt:
|
|
5787
|
+
createdAt: string;
|
|
5788
|
+
updatedAt: string;
|
|
5789
5789
|
} | undefined;
|
|
5790
|
-
createdAt:
|
|
5791
|
-
updatedAt:
|
|
5790
|
+
createdAt: string;
|
|
5791
|
+
updatedAt: string;
|
|
5792
5792
|
} | null | undefined;
|
|
5793
5793
|
bio: string | null;
|
|
5794
|
-
birthdate:
|
|
5794
|
+
birthdate: string | null;
|
|
5795
5795
|
location: {
|
|
5796
5796
|
type: "Point";
|
|
5797
5797
|
coordinates: [number, number];
|
|
@@ -5801,19 +5801,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5801
5801
|
};
|
|
5802
5802
|
reputation: number;
|
|
5803
5803
|
spaceReputation?: number | undefined;
|
|
5804
|
-
createdAt:
|
|
5804
|
+
createdAt: string;
|
|
5805
5805
|
};
|
|
5806
5806
|
upvotesCount: number;
|
|
5807
5807
|
content: string;
|
|
5808
5808
|
createdAt: string;
|
|
5809
5809
|
} | null;
|
|
5810
5810
|
isSaved?: boolean | undefined;
|
|
5811
|
-
createdAt:
|
|
5812
|
-
updatedAt:
|
|
5813
|
-
deletedAt:
|
|
5811
|
+
createdAt: string;
|
|
5812
|
+
updatedAt: string;
|
|
5813
|
+
deletedAt: string | null;
|
|
5814
5814
|
isDraft: boolean | null;
|
|
5815
5815
|
moderationStatus: "approved" | "removed" | null;
|
|
5816
|
-
moderatedAt:
|
|
5816
|
+
moderatedAt: string | null;
|
|
5817
5817
|
moderatedById: string | null;
|
|
5818
5818
|
moderatedByType: "client" | "user" | null;
|
|
5819
5819
|
moderationReason: string | null;
|
|
@@ -5832,8 +5832,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5832
5832
|
parentId: string | null;
|
|
5833
5833
|
name: string;
|
|
5834
5834
|
entityCount: number;
|
|
5835
|
-
createdAt:
|
|
5836
|
-
updatedAt:
|
|
5835
|
+
createdAt: string;
|
|
5836
|
+
updatedAt: string;
|
|
5837
5837
|
};
|
|
5838
5838
|
};
|
|
5839
5839
|
subcollectionsMap: {
|
|
@@ -5869,9 +5869,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5869
5869
|
metadata: {
|
|
5870
5870
|
[x: string]: any;
|
|
5871
5871
|
};
|
|
5872
|
-
createdAt:
|
|
5873
|
-
updatedAt:
|
|
5874
|
-
deletedAt:
|
|
5872
|
+
createdAt: string;
|
|
5873
|
+
updatedAt: string;
|
|
5874
|
+
deletedAt: string | null;
|
|
5875
5875
|
membersCount: number;
|
|
5876
5876
|
childSpacesCount: number;
|
|
5877
5877
|
isMember?: boolean | undefined;
|
|
@@ -5910,11 +5910,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5910
5910
|
format: string;
|
|
5911
5911
|
quality: number;
|
|
5912
5912
|
exifStripped: boolean;
|
|
5913
|
-
createdAt:
|
|
5914
|
-
updatedAt:
|
|
5913
|
+
createdAt: string;
|
|
5914
|
+
updatedAt: string;
|
|
5915
5915
|
} | undefined;
|
|
5916
|
-
createdAt:
|
|
5917
|
-
updatedAt:
|
|
5916
|
+
createdAt: string;
|
|
5917
|
+
updatedAt: string;
|
|
5918
5918
|
} | undefined;
|
|
5919
5919
|
bannerFile?: {
|
|
5920
5920
|
id: string;
|
|
@@ -5951,11 +5951,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
5951
5951
|
format: string;
|
|
5952
5952
|
quality: number;
|
|
5953
5953
|
exifStripped: boolean;
|
|
5954
|
-
createdAt:
|
|
5955
|
-
updatedAt:
|
|
5954
|
+
createdAt: string;
|
|
5955
|
+
updatedAt: string;
|
|
5956
5956
|
} | undefined;
|
|
5957
|
-
createdAt:
|
|
5958
|
-
updatedAt:
|
|
5957
|
+
createdAt: string;
|
|
5958
|
+
updatedAt: string;
|
|
5959
5959
|
} | undefined;
|
|
5960
5960
|
} | null | undefined;
|
|
5961
5961
|
userId: string | null;
|
|
@@ -6004,11 +6004,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6004
6004
|
format: string;
|
|
6005
6005
|
quality: number;
|
|
6006
6006
|
exifStripped: boolean;
|
|
6007
|
-
createdAt:
|
|
6008
|
-
updatedAt:
|
|
6007
|
+
createdAt: string;
|
|
6008
|
+
updatedAt: string;
|
|
6009
6009
|
} | undefined;
|
|
6010
|
-
createdAt:
|
|
6011
|
-
updatedAt:
|
|
6010
|
+
createdAt: string;
|
|
6011
|
+
updatedAt: string;
|
|
6012
6012
|
} | null | undefined;
|
|
6013
6013
|
bannerFile?: {
|
|
6014
6014
|
id: string;
|
|
@@ -6045,14 +6045,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6045
6045
|
format: string;
|
|
6046
6046
|
quality: number;
|
|
6047
6047
|
exifStripped: boolean;
|
|
6048
|
-
createdAt:
|
|
6049
|
-
updatedAt:
|
|
6048
|
+
createdAt: string;
|
|
6049
|
+
updatedAt: string;
|
|
6050
6050
|
} | undefined;
|
|
6051
|
-
createdAt:
|
|
6052
|
-
updatedAt:
|
|
6051
|
+
createdAt: string;
|
|
6052
|
+
updatedAt: string;
|
|
6053
6053
|
} | null | undefined;
|
|
6054
6054
|
bio: string | null;
|
|
6055
|
-
birthdate:
|
|
6055
|
+
birthdate: string | null;
|
|
6056
6056
|
location: {
|
|
6057
6057
|
type: "Point";
|
|
6058
6058
|
coordinates: [number, number];
|
|
@@ -6062,7 +6062,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6062
6062
|
};
|
|
6063
6063
|
reputation: number;
|
|
6064
6064
|
spaceReputation?: number | undefined;
|
|
6065
|
-
createdAt:
|
|
6065
|
+
createdAt: string;
|
|
6066
6066
|
} | null | undefined;
|
|
6067
6067
|
title: string | null;
|
|
6068
6068
|
content: string | null;
|
|
@@ -6114,11 +6114,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6114
6114
|
format: string;
|
|
6115
6115
|
quality: number;
|
|
6116
6116
|
exifStripped: boolean;
|
|
6117
|
-
createdAt:
|
|
6118
|
-
updatedAt:
|
|
6117
|
+
createdAt: string;
|
|
6118
|
+
updatedAt: string;
|
|
6119
6119
|
} | undefined;
|
|
6120
|
-
createdAt:
|
|
6121
|
-
updatedAt:
|
|
6120
|
+
createdAt: string;
|
|
6121
|
+
updatedAt: string;
|
|
6122
6122
|
}[] | undefined;
|
|
6123
6123
|
keywords: string[];
|
|
6124
6124
|
upvotes: string[];
|
|
@@ -6137,7 +6137,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6137
6137
|
repliesCount: number;
|
|
6138
6138
|
views: number;
|
|
6139
6139
|
score: number;
|
|
6140
|
-
scoreUpdatedAt:
|
|
6140
|
+
scoreUpdatedAt: string;
|
|
6141
6141
|
location: {
|
|
6142
6142
|
type: "Point";
|
|
6143
6143
|
coordinates: [number, number];
|
|
@@ -6192,11 +6192,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6192
6192
|
format: string;
|
|
6193
6193
|
quality: number;
|
|
6194
6194
|
exifStripped: boolean;
|
|
6195
|
-
createdAt:
|
|
6196
|
-
updatedAt:
|
|
6195
|
+
createdAt: string;
|
|
6196
|
+
updatedAt: string;
|
|
6197
6197
|
} | undefined;
|
|
6198
|
-
createdAt:
|
|
6199
|
-
updatedAt:
|
|
6198
|
+
createdAt: string;
|
|
6199
|
+
updatedAt: string;
|
|
6200
6200
|
} | null | undefined;
|
|
6201
6201
|
bannerFile?: {
|
|
6202
6202
|
id: string;
|
|
@@ -6233,14 +6233,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6233
6233
|
format: string;
|
|
6234
6234
|
quality: number;
|
|
6235
6235
|
exifStripped: boolean;
|
|
6236
|
-
createdAt:
|
|
6237
|
-
updatedAt:
|
|
6236
|
+
createdAt: string;
|
|
6237
|
+
updatedAt: string;
|
|
6238
6238
|
} | undefined;
|
|
6239
|
-
createdAt:
|
|
6240
|
-
updatedAt:
|
|
6239
|
+
createdAt: string;
|
|
6240
|
+
updatedAt: string;
|
|
6241
6241
|
} | null | undefined;
|
|
6242
6242
|
bio: string | null;
|
|
6243
|
-
birthdate:
|
|
6243
|
+
birthdate: string | null;
|
|
6244
6244
|
location: {
|
|
6245
6245
|
type: "Point";
|
|
6246
6246
|
coordinates: [number, number];
|
|
@@ -6250,19 +6250,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6250
6250
|
};
|
|
6251
6251
|
reputation: number;
|
|
6252
6252
|
spaceReputation?: number | undefined;
|
|
6253
|
-
createdAt:
|
|
6253
|
+
createdAt: string;
|
|
6254
6254
|
};
|
|
6255
6255
|
upvotesCount: number;
|
|
6256
6256
|
content: string;
|
|
6257
6257
|
createdAt: string;
|
|
6258
6258
|
} | null;
|
|
6259
6259
|
isSaved?: boolean | undefined;
|
|
6260
|
-
createdAt:
|
|
6261
|
-
updatedAt:
|
|
6262
|
-
deletedAt:
|
|
6260
|
+
createdAt: string;
|
|
6261
|
+
updatedAt: string;
|
|
6262
|
+
deletedAt: string | null;
|
|
6263
6263
|
isDraft: boolean | null;
|
|
6264
6264
|
moderationStatus: "approved" | "removed" | null;
|
|
6265
|
-
moderatedAt:
|
|
6265
|
+
moderatedAt: string | null;
|
|
6266
6266
|
moderatedById: string | null;
|
|
6267
6267
|
moderatedByType: "client" | "user" | null;
|
|
6268
6268
|
moderationReason: string | null;
|
|
@@ -6281,8 +6281,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6281
6281
|
parentId: string | null;
|
|
6282
6282
|
name: string;
|
|
6283
6283
|
entityCount: number;
|
|
6284
|
-
createdAt:
|
|
6285
|
-
updatedAt:
|
|
6284
|
+
createdAt: string;
|
|
6285
|
+
updatedAt: string;
|
|
6286
6286
|
};
|
|
6287
6287
|
};
|
|
6288
6288
|
subcollectionsMap: {
|
|
@@ -6318,9 +6318,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6318
6318
|
metadata: {
|
|
6319
6319
|
[x: string]: any;
|
|
6320
6320
|
};
|
|
6321
|
-
createdAt:
|
|
6322
|
-
updatedAt:
|
|
6323
|
-
deletedAt:
|
|
6321
|
+
createdAt: string;
|
|
6322
|
+
updatedAt: string;
|
|
6323
|
+
deletedAt: string | null;
|
|
6324
6324
|
membersCount: number;
|
|
6325
6325
|
childSpacesCount: number;
|
|
6326
6326
|
isMember?: boolean | undefined;
|
|
@@ -6359,11 +6359,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6359
6359
|
format: string;
|
|
6360
6360
|
quality: number;
|
|
6361
6361
|
exifStripped: boolean;
|
|
6362
|
-
createdAt:
|
|
6363
|
-
updatedAt:
|
|
6362
|
+
createdAt: string;
|
|
6363
|
+
updatedAt: string;
|
|
6364
6364
|
} | undefined;
|
|
6365
|
-
createdAt:
|
|
6366
|
-
updatedAt:
|
|
6365
|
+
createdAt: string;
|
|
6366
|
+
updatedAt: string;
|
|
6367
6367
|
} | undefined;
|
|
6368
6368
|
bannerFile?: {
|
|
6369
6369
|
id: string;
|
|
@@ -6400,11 +6400,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6400
6400
|
format: string;
|
|
6401
6401
|
quality: number;
|
|
6402
6402
|
exifStripped: boolean;
|
|
6403
|
-
createdAt:
|
|
6404
|
-
updatedAt:
|
|
6403
|
+
createdAt: string;
|
|
6404
|
+
updatedAt: string;
|
|
6405
6405
|
} | undefined;
|
|
6406
|
-
createdAt:
|
|
6407
|
-
updatedAt:
|
|
6406
|
+
createdAt: string;
|
|
6407
|
+
updatedAt: string;
|
|
6408
6408
|
} | undefined;
|
|
6409
6409
|
} | null | undefined;
|
|
6410
6410
|
userId: string | null;
|
|
@@ -6453,11 +6453,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6453
6453
|
format: string;
|
|
6454
6454
|
quality: number;
|
|
6455
6455
|
exifStripped: boolean;
|
|
6456
|
-
createdAt:
|
|
6457
|
-
updatedAt:
|
|
6456
|
+
createdAt: string;
|
|
6457
|
+
updatedAt: string;
|
|
6458
6458
|
} | undefined;
|
|
6459
|
-
createdAt:
|
|
6460
|
-
updatedAt:
|
|
6459
|
+
createdAt: string;
|
|
6460
|
+
updatedAt: string;
|
|
6461
6461
|
} | null | undefined;
|
|
6462
6462
|
bannerFile?: {
|
|
6463
6463
|
id: string;
|
|
@@ -6494,14 +6494,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6494
6494
|
format: string;
|
|
6495
6495
|
quality: number;
|
|
6496
6496
|
exifStripped: boolean;
|
|
6497
|
-
createdAt:
|
|
6498
|
-
updatedAt:
|
|
6497
|
+
createdAt: string;
|
|
6498
|
+
updatedAt: string;
|
|
6499
6499
|
} | undefined;
|
|
6500
|
-
createdAt:
|
|
6501
|
-
updatedAt:
|
|
6500
|
+
createdAt: string;
|
|
6501
|
+
updatedAt: string;
|
|
6502
6502
|
} | null | undefined;
|
|
6503
6503
|
bio: string | null;
|
|
6504
|
-
birthdate:
|
|
6504
|
+
birthdate: string | null;
|
|
6505
6505
|
location: {
|
|
6506
6506
|
type: "Point";
|
|
6507
6507
|
coordinates: [number, number];
|
|
@@ -6511,7 +6511,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6511
6511
|
};
|
|
6512
6512
|
reputation: number;
|
|
6513
6513
|
spaceReputation?: number | undefined;
|
|
6514
|
-
createdAt:
|
|
6514
|
+
createdAt: string;
|
|
6515
6515
|
} | null | undefined;
|
|
6516
6516
|
title: string | null;
|
|
6517
6517
|
content: string | null;
|
|
@@ -6563,11 +6563,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6563
6563
|
format: string;
|
|
6564
6564
|
quality: number;
|
|
6565
6565
|
exifStripped: boolean;
|
|
6566
|
-
createdAt:
|
|
6567
|
-
updatedAt:
|
|
6566
|
+
createdAt: string;
|
|
6567
|
+
updatedAt: string;
|
|
6568
6568
|
} | undefined;
|
|
6569
|
-
createdAt:
|
|
6570
|
-
updatedAt:
|
|
6569
|
+
createdAt: string;
|
|
6570
|
+
updatedAt: string;
|
|
6571
6571
|
}[] | undefined;
|
|
6572
6572
|
keywords: string[];
|
|
6573
6573
|
upvotes: string[];
|
|
@@ -6586,7 +6586,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6586
6586
|
repliesCount: number;
|
|
6587
6587
|
views: number;
|
|
6588
6588
|
score: number;
|
|
6589
|
-
scoreUpdatedAt:
|
|
6589
|
+
scoreUpdatedAt: string;
|
|
6590
6590
|
location: {
|
|
6591
6591
|
type: "Point";
|
|
6592
6592
|
coordinates: [number, number];
|
|
@@ -6641,11 +6641,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6641
6641
|
format: string;
|
|
6642
6642
|
quality: number;
|
|
6643
6643
|
exifStripped: boolean;
|
|
6644
|
-
createdAt:
|
|
6645
|
-
updatedAt:
|
|
6644
|
+
createdAt: string;
|
|
6645
|
+
updatedAt: string;
|
|
6646
6646
|
} | undefined;
|
|
6647
|
-
createdAt:
|
|
6648
|
-
updatedAt:
|
|
6647
|
+
createdAt: string;
|
|
6648
|
+
updatedAt: string;
|
|
6649
6649
|
} | null | undefined;
|
|
6650
6650
|
bannerFile?: {
|
|
6651
6651
|
id: string;
|
|
@@ -6682,14 +6682,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6682
6682
|
format: string;
|
|
6683
6683
|
quality: number;
|
|
6684
6684
|
exifStripped: boolean;
|
|
6685
|
-
createdAt:
|
|
6686
|
-
updatedAt:
|
|
6685
|
+
createdAt: string;
|
|
6686
|
+
updatedAt: string;
|
|
6687
6687
|
} | undefined;
|
|
6688
|
-
createdAt:
|
|
6689
|
-
updatedAt:
|
|
6688
|
+
createdAt: string;
|
|
6689
|
+
updatedAt: string;
|
|
6690
6690
|
} | null | undefined;
|
|
6691
6691
|
bio: string | null;
|
|
6692
|
-
birthdate:
|
|
6692
|
+
birthdate: string | null;
|
|
6693
6693
|
location: {
|
|
6694
6694
|
type: "Point";
|
|
6695
6695
|
coordinates: [number, number];
|
|
@@ -6699,19 +6699,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6699
6699
|
};
|
|
6700
6700
|
reputation: number;
|
|
6701
6701
|
spaceReputation?: number | undefined;
|
|
6702
|
-
createdAt:
|
|
6702
|
+
createdAt: string;
|
|
6703
6703
|
};
|
|
6704
6704
|
upvotesCount: number;
|
|
6705
6705
|
content: string;
|
|
6706
6706
|
createdAt: string;
|
|
6707
6707
|
} | null;
|
|
6708
6708
|
isSaved?: boolean | undefined;
|
|
6709
|
-
createdAt:
|
|
6710
|
-
updatedAt:
|
|
6711
|
-
deletedAt:
|
|
6709
|
+
createdAt: string;
|
|
6710
|
+
updatedAt: string;
|
|
6711
|
+
deletedAt: string | null;
|
|
6712
6712
|
isDraft: boolean | null;
|
|
6713
6713
|
moderationStatus: "approved" | "removed" | null;
|
|
6714
|
-
moderatedAt:
|
|
6714
|
+
moderatedAt: string | null;
|
|
6715
6715
|
moderatedById: string | null;
|
|
6716
6716
|
moderatedByType: "client" | "user" | null;
|
|
6717
6717
|
moderationReason: string | null;
|
|
@@ -6730,8 +6730,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6730
6730
|
parentId: string | null;
|
|
6731
6731
|
name: string;
|
|
6732
6732
|
entityCount: number;
|
|
6733
|
-
createdAt:
|
|
6734
|
-
updatedAt:
|
|
6733
|
+
createdAt: string;
|
|
6734
|
+
updatedAt: string;
|
|
6735
6735
|
};
|
|
6736
6736
|
};
|
|
6737
6737
|
subcollectionsMap: {
|
|
@@ -6767,9 +6767,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6767
6767
|
metadata: {
|
|
6768
6768
|
[x: string]: any;
|
|
6769
6769
|
};
|
|
6770
|
-
createdAt:
|
|
6771
|
-
updatedAt:
|
|
6772
|
-
deletedAt:
|
|
6770
|
+
createdAt: string;
|
|
6771
|
+
updatedAt: string;
|
|
6772
|
+
deletedAt: string | null;
|
|
6773
6773
|
membersCount: number;
|
|
6774
6774
|
childSpacesCount: number;
|
|
6775
6775
|
isMember?: boolean | undefined;
|
|
@@ -6808,11 +6808,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6808
6808
|
format: string;
|
|
6809
6809
|
quality: number;
|
|
6810
6810
|
exifStripped: boolean;
|
|
6811
|
-
createdAt:
|
|
6812
|
-
updatedAt:
|
|
6811
|
+
createdAt: string;
|
|
6812
|
+
updatedAt: string;
|
|
6813
6813
|
} | undefined;
|
|
6814
|
-
createdAt:
|
|
6815
|
-
updatedAt:
|
|
6814
|
+
createdAt: string;
|
|
6815
|
+
updatedAt: string;
|
|
6816
6816
|
} | undefined;
|
|
6817
6817
|
bannerFile?: {
|
|
6818
6818
|
id: string;
|
|
@@ -6849,11 +6849,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6849
6849
|
format: string;
|
|
6850
6850
|
quality: number;
|
|
6851
6851
|
exifStripped: boolean;
|
|
6852
|
-
createdAt:
|
|
6853
|
-
updatedAt:
|
|
6852
|
+
createdAt: string;
|
|
6853
|
+
updatedAt: string;
|
|
6854
6854
|
} | undefined;
|
|
6855
|
-
createdAt:
|
|
6856
|
-
updatedAt:
|
|
6855
|
+
createdAt: string;
|
|
6856
|
+
updatedAt: string;
|
|
6857
6857
|
} | undefined;
|
|
6858
6858
|
} | null | undefined;
|
|
6859
6859
|
userId: string | null;
|
|
@@ -6902,11 +6902,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6902
6902
|
format: string;
|
|
6903
6903
|
quality: number;
|
|
6904
6904
|
exifStripped: boolean;
|
|
6905
|
-
createdAt:
|
|
6906
|
-
updatedAt:
|
|
6905
|
+
createdAt: string;
|
|
6906
|
+
updatedAt: string;
|
|
6907
6907
|
} | undefined;
|
|
6908
|
-
createdAt:
|
|
6909
|
-
updatedAt:
|
|
6908
|
+
createdAt: string;
|
|
6909
|
+
updatedAt: string;
|
|
6910
6910
|
} | null | undefined;
|
|
6911
6911
|
bannerFile?: {
|
|
6912
6912
|
id: string;
|
|
@@ -6943,14 +6943,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6943
6943
|
format: string;
|
|
6944
6944
|
quality: number;
|
|
6945
6945
|
exifStripped: boolean;
|
|
6946
|
-
createdAt:
|
|
6947
|
-
updatedAt:
|
|
6946
|
+
createdAt: string;
|
|
6947
|
+
updatedAt: string;
|
|
6948
6948
|
} | undefined;
|
|
6949
|
-
createdAt:
|
|
6950
|
-
updatedAt:
|
|
6949
|
+
createdAt: string;
|
|
6950
|
+
updatedAt: string;
|
|
6951
6951
|
} | null | undefined;
|
|
6952
6952
|
bio: string | null;
|
|
6953
|
-
birthdate:
|
|
6953
|
+
birthdate: string | null;
|
|
6954
6954
|
location: {
|
|
6955
6955
|
type: "Point";
|
|
6956
6956
|
coordinates: [number, number];
|
|
@@ -6960,7 +6960,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
6960
6960
|
};
|
|
6961
6961
|
reputation: number;
|
|
6962
6962
|
spaceReputation?: number | undefined;
|
|
6963
|
-
createdAt:
|
|
6963
|
+
createdAt: string;
|
|
6964
6964
|
} | null | undefined;
|
|
6965
6965
|
title: string | null;
|
|
6966
6966
|
content: string | null;
|
|
@@ -7012,11 +7012,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7012
7012
|
format: string;
|
|
7013
7013
|
quality: number;
|
|
7014
7014
|
exifStripped: boolean;
|
|
7015
|
-
createdAt:
|
|
7016
|
-
updatedAt:
|
|
7015
|
+
createdAt: string;
|
|
7016
|
+
updatedAt: string;
|
|
7017
7017
|
} | undefined;
|
|
7018
|
-
createdAt:
|
|
7019
|
-
updatedAt:
|
|
7018
|
+
createdAt: string;
|
|
7019
|
+
updatedAt: string;
|
|
7020
7020
|
}[] | undefined;
|
|
7021
7021
|
keywords: string[];
|
|
7022
7022
|
upvotes: string[];
|
|
@@ -7035,7 +7035,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7035
7035
|
repliesCount: number;
|
|
7036
7036
|
views: number;
|
|
7037
7037
|
score: number;
|
|
7038
|
-
scoreUpdatedAt:
|
|
7038
|
+
scoreUpdatedAt: string;
|
|
7039
7039
|
location: {
|
|
7040
7040
|
type: "Point";
|
|
7041
7041
|
coordinates: [number, number];
|
|
@@ -7090,11 +7090,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7090
7090
|
format: string;
|
|
7091
7091
|
quality: number;
|
|
7092
7092
|
exifStripped: boolean;
|
|
7093
|
-
createdAt:
|
|
7094
|
-
updatedAt:
|
|
7093
|
+
createdAt: string;
|
|
7094
|
+
updatedAt: string;
|
|
7095
7095
|
} | undefined;
|
|
7096
|
-
createdAt:
|
|
7097
|
-
updatedAt:
|
|
7096
|
+
createdAt: string;
|
|
7097
|
+
updatedAt: string;
|
|
7098
7098
|
} | null | undefined;
|
|
7099
7099
|
bannerFile?: {
|
|
7100
7100
|
id: string;
|
|
@@ -7131,14 +7131,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7131
7131
|
format: string;
|
|
7132
7132
|
quality: number;
|
|
7133
7133
|
exifStripped: boolean;
|
|
7134
|
-
createdAt:
|
|
7135
|
-
updatedAt:
|
|
7134
|
+
createdAt: string;
|
|
7135
|
+
updatedAt: string;
|
|
7136
7136
|
} | undefined;
|
|
7137
|
-
createdAt:
|
|
7138
|
-
updatedAt:
|
|
7137
|
+
createdAt: string;
|
|
7138
|
+
updatedAt: string;
|
|
7139
7139
|
} | null | undefined;
|
|
7140
7140
|
bio: string | null;
|
|
7141
|
-
birthdate:
|
|
7141
|
+
birthdate: string | null;
|
|
7142
7142
|
location: {
|
|
7143
7143
|
type: "Point";
|
|
7144
7144
|
coordinates: [number, number];
|
|
@@ -7148,19 +7148,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7148
7148
|
};
|
|
7149
7149
|
reputation: number;
|
|
7150
7150
|
spaceReputation?: number | undefined;
|
|
7151
|
-
createdAt:
|
|
7151
|
+
createdAt: string;
|
|
7152
7152
|
};
|
|
7153
7153
|
upvotesCount: number;
|
|
7154
7154
|
content: string;
|
|
7155
7155
|
createdAt: string;
|
|
7156
7156
|
} | null;
|
|
7157
7157
|
isSaved?: boolean | undefined;
|
|
7158
|
-
createdAt:
|
|
7159
|
-
updatedAt:
|
|
7160
|
-
deletedAt:
|
|
7158
|
+
createdAt: string;
|
|
7159
|
+
updatedAt: string;
|
|
7160
|
+
deletedAt: string | null;
|
|
7161
7161
|
isDraft: boolean | null;
|
|
7162
7162
|
moderationStatus: "approved" | "removed" | null;
|
|
7163
|
-
moderatedAt:
|
|
7163
|
+
moderatedAt: string | null;
|
|
7164
7164
|
moderatedById: string | null;
|
|
7165
7165
|
moderatedByType: "client" | "user" | null;
|
|
7166
7166
|
moderationReason: string | null;
|
|
@@ -7179,8 +7179,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7179
7179
|
parentId: string | null;
|
|
7180
7180
|
name: string;
|
|
7181
7181
|
entityCount: number;
|
|
7182
|
-
createdAt:
|
|
7183
|
-
updatedAt:
|
|
7182
|
+
createdAt: string;
|
|
7183
|
+
updatedAt: string;
|
|
7184
7184
|
};
|
|
7185
7185
|
};
|
|
7186
7186
|
subcollectionsMap: {
|
|
@@ -7216,9 +7216,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7216
7216
|
metadata: {
|
|
7217
7217
|
[x: string]: any;
|
|
7218
7218
|
};
|
|
7219
|
-
createdAt:
|
|
7220
|
-
updatedAt:
|
|
7221
|
-
deletedAt:
|
|
7219
|
+
createdAt: string;
|
|
7220
|
+
updatedAt: string;
|
|
7221
|
+
deletedAt: string | null;
|
|
7222
7222
|
membersCount: number;
|
|
7223
7223
|
childSpacesCount: number;
|
|
7224
7224
|
isMember?: boolean | undefined;
|
|
@@ -7257,11 +7257,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7257
7257
|
format: string;
|
|
7258
7258
|
quality: number;
|
|
7259
7259
|
exifStripped: boolean;
|
|
7260
|
-
createdAt:
|
|
7261
|
-
updatedAt:
|
|
7260
|
+
createdAt: string;
|
|
7261
|
+
updatedAt: string;
|
|
7262
7262
|
} | undefined;
|
|
7263
|
-
createdAt:
|
|
7264
|
-
updatedAt:
|
|
7263
|
+
createdAt: string;
|
|
7264
|
+
updatedAt: string;
|
|
7265
7265
|
} | undefined;
|
|
7266
7266
|
bannerFile?: {
|
|
7267
7267
|
id: string;
|
|
@@ -7298,11 +7298,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7298
7298
|
format: string;
|
|
7299
7299
|
quality: number;
|
|
7300
7300
|
exifStripped: boolean;
|
|
7301
|
-
createdAt:
|
|
7302
|
-
updatedAt:
|
|
7301
|
+
createdAt: string;
|
|
7302
|
+
updatedAt: string;
|
|
7303
7303
|
} | undefined;
|
|
7304
|
-
createdAt:
|
|
7305
|
-
updatedAt:
|
|
7304
|
+
createdAt: string;
|
|
7305
|
+
updatedAt: string;
|
|
7306
7306
|
} | undefined;
|
|
7307
7307
|
} | null | undefined;
|
|
7308
7308
|
userId: string | null;
|
|
@@ -7351,11 +7351,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7351
7351
|
format: string;
|
|
7352
7352
|
quality: number;
|
|
7353
7353
|
exifStripped: boolean;
|
|
7354
|
-
createdAt:
|
|
7355
|
-
updatedAt:
|
|
7354
|
+
createdAt: string;
|
|
7355
|
+
updatedAt: string;
|
|
7356
7356
|
} | undefined;
|
|
7357
|
-
createdAt:
|
|
7358
|
-
updatedAt:
|
|
7357
|
+
createdAt: string;
|
|
7358
|
+
updatedAt: string;
|
|
7359
7359
|
} | null | undefined;
|
|
7360
7360
|
bannerFile?: {
|
|
7361
7361
|
id: string;
|
|
@@ -7392,14 +7392,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7392
7392
|
format: string;
|
|
7393
7393
|
quality: number;
|
|
7394
7394
|
exifStripped: boolean;
|
|
7395
|
-
createdAt:
|
|
7396
|
-
updatedAt:
|
|
7395
|
+
createdAt: string;
|
|
7396
|
+
updatedAt: string;
|
|
7397
7397
|
} | undefined;
|
|
7398
|
-
createdAt:
|
|
7399
|
-
updatedAt:
|
|
7398
|
+
createdAt: string;
|
|
7399
|
+
updatedAt: string;
|
|
7400
7400
|
} | null | undefined;
|
|
7401
7401
|
bio: string | null;
|
|
7402
|
-
birthdate:
|
|
7402
|
+
birthdate: string | null;
|
|
7403
7403
|
location: {
|
|
7404
7404
|
type: "Point";
|
|
7405
7405
|
coordinates: [number, number];
|
|
@@ -7409,7 +7409,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7409
7409
|
};
|
|
7410
7410
|
reputation: number;
|
|
7411
7411
|
spaceReputation?: number | undefined;
|
|
7412
|
-
createdAt:
|
|
7412
|
+
createdAt: string;
|
|
7413
7413
|
} | null | undefined;
|
|
7414
7414
|
title: string | null;
|
|
7415
7415
|
content: string | null;
|
|
@@ -7461,11 +7461,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7461
7461
|
format: string;
|
|
7462
7462
|
quality: number;
|
|
7463
7463
|
exifStripped: boolean;
|
|
7464
|
-
createdAt:
|
|
7465
|
-
updatedAt:
|
|
7464
|
+
createdAt: string;
|
|
7465
|
+
updatedAt: string;
|
|
7466
7466
|
} | undefined;
|
|
7467
|
-
createdAt:
|
|
7468
|
-
updatedAt:
|
|
7467
|
+
createdAt: string;
|
|
7468
|
+
updatedAt: string;
|
|
7469
7469
|
}[] | undefined;
|
|
7470
7470
|
keywords: string[];
|
|
7471
7471
|
upvotes: string[];
|
|
@@ -7484,7 +7484,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7484
7484
|
repliesCount: number;
|
|
7485
7485
|
views: number;
|
|
7486
7486
|
score: number;
|
|
7487
|
-
scoreUpdatedAt:
|
|
7487
|
+
scoreUpdatedAt: string;
|
|
7488
7488
|
location: {
|
|
7489
7489
|
type: "Point";
|
|
7490
7490
|
coordinates: [number, number];
|
|
@@ -7539,11 +7539,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7539
7539
|
format: string;
|
|
7540
7540
|
quality: number;
|
|
7541
7541
|
exifStripped: boolean;
|
|
7542
|
-
createdAt:
|
|
7543
|
-
updatedAt:
|
|
7542
|
+
createdAt: string;
|
|
7543
|
+
updatedAt: string;
|
|
7544
7544
|
} | undefined;
|
|
7545
|
-
createdAt:
|
|
7546
|
-
updatedAt:
|
|
7545
|
+
createdAt: string;
|
|
7546
|
+
updatedAt: string;
|
|
7547
7547
|
} | null | undefined;
|
|
7548
7548
|
bannerFile?: {
|
|
7549
7549
|
id: string;
|
|
@@ -7580,14 +7580,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7580
7580
|
format: string;
|
|
7581
7581
|
quality: number;
|
|
7582
7582
|
exifStripped: boolean;
|
|
7583
|
-
createdAt:
|
|
7584
|
-
updatedAt:
|
|
7583
|
+
createdAt: string;
|
|
7584
|
+
updatedAt: string;
|
|
7585
7585
|
} | undefined;
|
|
7586
|
-
createdAt:
|
|
7587
|
-
updatedAt:
|
|
7586
|
+
createdAt: string;
|
|
7587
|
+
updatedAt: string;
|
|
7588
7588
|
} | null | undefined;
|
|
7589
7589
|
bio: string | null;
|
|
7590
|
-
birthdate:
|
|
7590
|
+
birthdate: string | null;
|
|
7591
7591
|
location: {
|
|
7592
7592
|
type: "Point";
|
|
7593
7593
|
coordinates: [number, number];
|
|
@@ -7597,19 +7597,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7597
7597
|
};
|
|
7598
7598
|
reputation: number;
|
|
7599
7599
|
spaceReputation?: number | undefined;
|
|
7600
|
-
createdAt:
|
|
7600
|
+
createdAt: string;
|
|
7601
7601
|
};
|
|
7602
7602
|
upvotesCount: number;
|
|
7603
7603
|
content: string;
|
|
7604
7604
|
createdAt: string;
|
|
7605
7605
|
} | null;
|
|
7606
7606
|
isSaved?: boolean | undefined;
|
|
7607
|
-
createdAt:
|
|
7608
|
-
updatedAt:
|
|
7609
|
-
deletedAt:
|
|
7607
|
+
createdAt: string;
|
|
7608
|
+
updatedAt: string;
|
|
7609
|
+
deletedAt: string | null;
|
|
7610
7610
|
isDraft: boolean | null;
|
|
7611
7611
|
moderationStatus: "approved" | "removed" | null;
|
|
7612
|
-
moderatedAt:
|
|
7612
|
+
moderatedAt: string | null;
|
|
7613
7613
|
moderatedById: string | null;
|
|
7614
7614
|
moderatedByType: "client" | "user" | null;
|
|
7615
7615
|
moderationReason: string | null;
|
|
@@ -7629,8 +7629,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7629
7629
|
parentId: string | null;
|
|
7630
7630
|
name: string;
|
|
7631
7631
|
entityCount: number;
|
|
7632
|
-
createdAt:
|
|
7633
|
-
updatedAt:
|
|
7632
|
+
createdAt: string;
|
|
7633
|
+
updatedAt: string;
|
|
7634
7634
|
};
|
|
7635
7635
|
};
|
|
7636
7636
|
subcollectionsMap: {
|
|
@@ -7666,9 +7666,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7666
7666
|
metadata: {
|
|
7667
7667
|
[x: string]: any;
|
|
7668
7668
|
};
|
|
7669
|
-
createdAt:
|
|
7670
|
-
updatedAt:
|
|
7671
|
-
deletedAt:
|
|
7669
|
+
createdAt: string;
|
|
7670
|
+
updatedAt: string;
|
|
7671
|
+
deletedAt: string | null;
|
|
7672
7672
|
membersCount: number;
|
|
7673
7673
|
childSpacesCount: number;
|
|
7674
7674
|
isMember?: boolean | undefined;
|
|
@@ -7707,11 +7707,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7707
7707
|
format: string;
|
|
7708
7708
|
quality: number;
|
|
7709
7709
|
exifStripped: boolean;
|
|
7710
|
-
createdAt:
|
|
7711
|
-
updatedAt:
|
|
7710
|
+
createdAt: string;
|
|
7711
|
+
updatedAt: string;
|
|
7712
7712
|
} | undefined;
|
|
7713
|
-
createdAt:
|
|
7714
|
-
updatedAt:
|
|
7713
|
+
createdAt: string;
|
|
7714
|
+
updatedAt: string;
|
|
7715
7715
|
} | undefined;
|
|
7716
7716
|
bannerFile?: {
|
|
7717
7717
|
id: string;
|
|
@@ -7748,11 +7748,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7748
7748
|
format: string;
|
|
7749
7749
|
quality: number;
|
|
7750
7750
|
exifStripped: boolean;
|
|
7751
|
-
createdAt:
|
|
7752
|
-
updatedAt:
|
|
7751
|
+
createdAt: string;
|
|
7752
|
+
updatedAt: string;
|
|
7753
7753
|
} | undefined;
|
|
7754
|
-
createdAt:
|
|
7755
|
-
updatedAt:
|
|
7754
|
+
createdAt: string;
|
|
7755
|
+
updatedAt: string;
|
|
7756
7756
|
} | undefined;
|
|
7757
7757
|
} | null | undefined;
|
|
7758
7758
|
userId: string | null;
|
|
@@ -7801,11 +7801,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7801
7801
|
format: string;
|
|
7802
7802
|
quality: number;
|
|
7803
7803
|
exifStripped: boolean;
|
|
7804
|
-
createdAt:
|
|
7805
|
-
updatedAt:
|
|
7804
|
+
createdAt: string;
|
|
7805
|
+
updatedAt: string;
|
|
7806
7806
|
} | undefined;
|
|
7807
|
-
createdAt:
|
|
7808
|
-
updatedAt:
|
|
7807
|
+
createdAt: string;
|
|
7808
|
+
updatedAt: string;
|
|
7809
7809
|
} | null | undefined;
|
|
7810
7810
|
bannerFile?: {
|
|
7811
7811
|
id: string;
|
|
@@ -7842,14 +7842,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7842
7842
|
format: string;
|
|
7843
7843
|
quality: number;
|
|
7844
7844
|
exifStripped: boolean;
|
|
7845
|
-
createdAt:
|
|
7846
|
-
updatedAt:
|
|
7845
|
+
createdAt: string;
|
|
7846
|
+
updatedAt: string;
|
|
7847
7847
|
} | undefined;
|
|
7848
|
-
createdAt:
|
|
7849
|
-
updatedAt:
|
|
7848
|
+
createdAt: string;
|
|
7849
|
+
updatedAt: string;
|
|
7850
7850
|
} | null | undefined;
|
|
7851
7851
|
bio: string | null;
|
|
7852
|
-
birthdate:
|
|
7852
|
+
birthdate: string | null;
|
|
7853
7853
|
location: {
|
|
7854
7854
|
type: "Point";
|
|
7855
7855
|
coordinates: [number, number];
|
|
@@ -7859,7 +7859,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7859
7859
|
};
|
|
7860
7860
|
reputation: number;
|
|
7861
7861
|
spaceReputation?: number | undefined;
|
|
7862
|
-
createdAt:
|
|
7862
|
+
createdAt: string;
|
|
7863
7863
|
} | null | undefined;
|
|
7864
7864
|
title: string | null;
|
|
7865
7865
|
content: string | null;
|
|
@@ -7911,11 +7911,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7911
7911
|
format: string;
|
|
7912
7912
|
quality: number;
|
|
7913
7913
|
exifStripped: boolean;
|
|
7914
|
-
createdAt:
|
|
7915
|
-
updatedAt:
|
|
7914
|
+
createdAt: string;
|
|
7915
|
+
updatedAt: string;
|
|
7916
7916
|
} | undefined;
|
|
7917
|
-
createdAt:
|
|
7918
|
-
updatedAt:
|
|
7917
|
+
createdAt: string;
|
|
7918
|
+
updatedAt: string;
|
|
7919
7919
|
}[] | undefined;
|
|
7920
7920
|
keywords: string[];
|
|
7921
7921
|
upvotes: string[];
|
|
@@ -7934,7 +7934,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7934
7934
|
repliesCount: number;
|
|
7935
7935
|
views: number;
|
|
7936
7936
|
score: number;
|
|
7937
|
-
scoreUpdatedAt:
|
|
7937
|
+
scoreUpdatedAt: string;
|
|
7938
7938
|
location: {
|
|
7939
7939
|
type: "Point";
|
|
7940
7940
|
coordinates: [number, number];
|
|
@@ -7989,11 +7989,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
7989
7989
|
format: string;
|
|
7990
7990
|
quality: number;
|
|
7991
7991
|
exifStripped: boolean;
|
|
7992
|
-
createdAt:
|
|
7993
|
-
updatedAt:
|
|
7992
|
+
createdAt: string;
|
|
7993
|
+
updatedAt: string;
|
|
7994
7994
|
} | undefined;
|
|
7995
|
-
createdAt:
|
|
7996
|
-
updatedAt:
|
|
7995
|
+
createdAt: string;
|
|
7996
|
+
updatedAt: string;
|
|
7997
7997
|
} | null | undefined;
|
|
7998
7998
|
bannerFile?: {
|
|
7999
7999
|
id: string;
|
|
@@ -8030,14 +8030,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
8030
8030
|
format: string;
|
|
8031
8031
|
quality: number;
|
|
8032
8032
|
exifStripped: boolean;
|
|
8033
|
-
createdAt:
|
|
8034
|
-
updatedAt:
|
|
8033
|
+
createdAt: string;
|
|
8034
|
+
updatedAt: string;
|
|
8035
8035
|
} | undefined;
|
|
8036
|
-
createdAt:
|
|
8037
|
-
updatedAt:
|
|
8036
|
+
createdAt: string;
|
|
8037
|
+
updatedAt: string;
|
|
8038
8038
|
} | null | undefined;
|
|
8039
8039
|
bio: string | null;
|
|
8040
|
-
birthdate:
|
|
8040
|
+
birthdate: string | null;
|
|
8041
8041
|
location: {
|
|
8042
8042
|
type: "Point";
|
|
8043
8043
|
coordinates: [number, number];
|
|
@@ -8047,19 +8047,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
8047
8047
|
};
|
|
8048
8048
|
reputation: number;
|
|
8049
8049
|
spaceReputation?: number | undefined;
|
|
8050
|
-
createdAt:
|
|
8050
|
+
createdAt: string;
|
|
8051
8051
|
};
|
|
8052
8052
|
upvotesCount: number;
|
|
8053
8053
|
content: string;
|
|
8054
8054
|
createdAt: string;
|
|
8055
8055
|
} | null;
|
|
8056
8056
|
isSaved?: boolean | undefined;
|
|
8057
|
-
createdAt:
|
|
8058
|
-
updatedAt:
|
|
8059
|
-
deletedAt:
|
|
8057
|
+
createdAt: string;
|
|
8058
|
+
updatedAt: string;
|
|
8059
|
+
deletedAt: string | null;
|
|
8060
8060
|
isDraft: boolean | null;
|
|
8061
8061
|
moderationStatus: "approved" | "removed" | null;
|
|
8062
|
-
moderatedAt:
|
|
8062
|
+
moderatedAt: string | null;
|
|
8063
8063
|
moderatedById: string | null;
|
|
8064
8064
|
moderatedByType: "client" | "user" | null;
|
|
8065
8065
|
moderationReason: string | null;
|
|
@@ -8075,8 +8075,8 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
8075
8075
|
parentId: string | null;
|
|
8076
8076
|
name: string;
|
|
8077
8077
|
entityCount: number;
|
|
8078
|
-
createdAt:
|
|
8079
|
-
updatedAt:
|
|
8078
|
+
createdAt: string;
|
|
8079
|
+
updatedAt: string;
|
|
8080
8080
|
};
|
|
8081
8081
|
};
|
|
8082
8082
|
subcollectionsMap: {
|
|
@@ -8112,9 +8112,9 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
8112
8112
|
metadata: {
|
|
8113
8113
|
[x: string]: any;
|
|
8114
8114
|
};
|
|
8115
|
-
createdAt:
|
|
8116
|
-
updatedAt:
|
|
8117
|
-
deletedAt:
|
|
8115
|
+
createdAt: string;
|
|
8116
|
+
updatedAt: string;
|
|
8117
|
+
deletedAt: string | null;
|
|
8118
8118
|
membersCount: number;
|
|
8119
8119
|
childSpacesCount: number;
|
|
8120
8120
|
isMember?: boolean | undefined;
|
|
@@ -8153,11 +8153,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
8153
8153
|
format: string;
|
|
8154
8154
|
quality: number;
|
|
8155
8155
|
exifStripped: boolean;
|
|
8156
|
-
createdAt:
|
|
8157
|
-
updatedAt:
|
|
8156
|
+
createdAt: string;
|
|
8157
|
+
updatedAt: string;
|
|
8158
8158
|
} | undefined;
|
|
8159
|
-
createdAt:
|
|
8160
|
-
updatedAt:
|
|
8159
|
+
createdAt: string;
|
|
8160
|
+
updatedAt: string;
|
|
8161
8161
|
} | undefined;
|
|
8162
8162
|
bannerFile?: {
|
|
8163
8163
|
id: string;
|
|
@@ -8194,11 +8194,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
8194
8194
|
format: string;
|
|
8195
8195
|
quality: number;
|
|
8196
8196
|
exifStripped: boolean;
|
|
8197
|
-
createdAt:
|
|
8198
|
-
updatedAt:
|
|
8197
|
+
createdAt: string;
|
|
8198
|
+
updatedAt: string;
|
|
8199
8199
|
} | undefined;
|
|
8200
|
-
createdAt:
|
|
8201
|
-
updatedAt:
|
|
8200
|
+
createdAt: string;
|
|
8201
|
+
updatedAt: string;
|
|
8202
8202
|
} | undefined;
|
|
8203
8203
|
} | null | undefined;
|
|
8204
8204
|
userId: string | null;
|
|
@@ -8247,11 +8247,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
8247
8247
|
format: string;
|
|
8248
8248
|
quality: number;
|
|
8249
8249
|
exifStripped: boolean;
|
|
8250
|
-
createdAt:
|
|
8251
|
-
updatedAt:
|
|
8250
|
+
createdAt: string;
|
|
8251
|
+
updatedAt: string;
|
|
8252
8252
|
} | undefined;
|
|
8253
|
-
createdAt:
|
|
8254
|
-
updatedAt:
|
|
8253
|
+
createdAt: string;
|
|
8254
|
+
updatedAt: string;
|
|
8255
8255
|
} | null | undefined;
|
|
8256
8256
|
bannerFile?: {
|
|
8257
8257
|
id: string;
|
|
@@ -8288,14 +8288,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
8288
8288
|
format: string;
|
|
8289
8289
|
quality: number;
|
|
8290
8290
|
exifStripped: boolean;
|
|
8291
|
-
createdAt:
|
|
8292
|
-
updatedAt:
|
|
8291
|
+
createdAt: string;
|
|
8292
|
+
updatedAt: string;
|
|
8293
8293
|
} | undefined;
|
|
8294
|
-
createdAt:
|
|
8295
|
-
updatedAt:
|
|
8294
|
+
createdAt: string;
|
|
8295
|
+
updatedAt: string;
|
|
8296
8296
|
} | null | undefined;
|
|
8297
8297
|
bio: string | null;
|
|
8298
|
-
birthdate:
|
|
8298
|
+
birthdate: string | null;
|
|
8299
8299
|
location: {
|
|
8300
8300
|
type: "Point";
|
|
8301
8301
|
coordinates: [number, number];
|
|
@@ -8305,7 +8305,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
8305
8305
|
};
|
|
8306
8306
|
reputation: number;
|
|
8307
8307
|
spaceReputation?: number | undefined;
|
|
8308
|
-
createdAt:
|
|
8308
|
+
createdAt: string;
|
|
8309
8309
|
} | null | undefined;
|
|
8310
8310
|
title: string | null;
|
|
8311
8311
|
content: string | null;
|
|
@@ -8357,11 +8357,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
8357
8357
|
format: string;
|
|
8358
8358
|
quality: number;
|
|
8359
8359
|
exifStripped: boolean;
|
|
8360
|
-
createdAt:
|
|
8361
|
-
updatedAt:
|
|
8360
|
+
createdAt: string;
|
|
8361
|
+
updatedAt: string;
|
|
8362
8362
|
} | undefined;
|
|
8363
|
-
createdAt:
|
|
8364
|
-
updatedAt:
|
|
8363
|
+
createdAt: string;
|
|
8364
|
+
updatedAt: string;
|
|
8365
8365
|
}[] | undefined;
|
|
8366
8366
|
keywords: string[];
|
|
8367
8367
|
upvotes: string[];
|
|
@@ -8380,7 +8380,7 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
8380
8380
|
repliesCount: number;
|
|
8381
8381
|
views: number;
|
|
8382
8382
|
score: number;
|
|
8383
|
-
scoreUpdatedAt:
|
|
8383
|
+
scoreUpdatedAt: string;
|
|
8384
8384
|
location: {
|
|
8385
8385
|
type: "Point";
|
|
8386
8386
|
coordinates: [number, number];
|
|
@@ -8435,11 +8435,11 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
8435
8435
|
format: string;
|
|
8436
8436
|
quality: number;
|
|
8437
8437
|
exifStripped: boolean;
|
|
8438
|
-
createdAt:
|
|
8439
|
-
updatedAt:
|
|
8438
|
+
createdAt: string;
|
|
8439
|
+
updatedAt: string;
|
|
8440
8440
|
} | undefined;
|
|
8441
|
-
createdAt:
|
|
8442
|
-
updatedAt:
|
|
8441
|
+
createdAt: string;
|
|
8442
|
+
updatedAt: string;
|
|
8443
8443
|
} | null | undefined;
|
|
8444
8444
|
bannerFile?: {
|
|
8445
8445
|
id: string;
|
|
@@ -8476,14 +8476,14 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
8476
8476
|
format: string;
|
|
8477
8477
|
quality: number;
|
|
8478
8478
|
exifStripped: boolean;
|
|
8479
|
-
createdAt:
|
|
8480
|
-
updatedAt:
|
|
8479
|
+
createdAt: string;
|
|
8480
|
+
updatedAt: string;
|
|
8481
8481
|
} | undefined;
|
|
8482
|
-
createdAt:
|
|
8483
|
-
updatedAt:
|
|
8482
|
+
createdAt: string;
|
|
8483
|
+
updatedAt: string;
|
|
8484
8484
|
} | null | undefined;
|
|
8485
8485
|
bio: string | null;
|
|
8486
|
-
birthdate:
|
|
8486
|
+
birthdate: string | null;
|
|
8487
8487
|
location: {
|
|
8488
8488
|
type: "Point";
|
|
8489
8489
|
coordinates: [number, number];
|
|
@@ -8493,19 +8493,19 @@ export declare const collectionsSlice: import("@reduxjs/toolkit").Slice<Collecti
|
|
|
8493
8493
|
};
|
|
8494
8494
|
reputation: number;
|
|
8495
8495
|
spaceReputation?: number | undefined;
|
|
8496
|
-
createdAt:
|
|
8496
|
+
createdAt: string;
|
|
8497
8497
|
};
|
|
8498
8498
|
upvotesCount: number;
|
|
8499
8499
|
content: string;
|
|
8500
8500
|
createdAt: string;
|
|
8501
8501
|
} | null;
|
|
8502
8502
|
isSaved?: boolean | undefined;
|
|
8503
|
-
createdAt:
|
|
8504
|
-
updatedAt:
|
|
8505
|
-
deletedAt:
|
|
8503
|
+
createdAt: string;
|
|
8504
|
+
updatedAt: string;
|
|
8505
|
+
deletedAt: string | null;
|
|
8506
8506
|
isDraft: boolean | null;
|
|
8507
8507
|
moderationStatus: "approved" | "removed" | null;
|
|
8508
|
-
moderatedAt:
|
|
8508
|
+
moderatedAt: string | null;
|
|
8509
8509
|
moderatedById: string | null;
|
|
8510
8510
|
moderatedByType: "client" | "user" | null;
|
|
8511
8511
|
moderationReason: string | null;
|