@replyke/core 7.0.0-beta.36 → 7.0.0-beta.37
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/index.d.ts +1 -0
- package/dist/cjs/interfaces/models/Entity.d.ts +2 -38
- package/dist/cjs/interfaces/models/File.d.ts +38 -0
- package/dist/cjs/interfaces/models/File.js +3 -0
- package/dist/cjs/interfaces/models/File.js.map +1 -0
- package/dist/cjs/interfaces/models/Space.d.ts +7 -3
- package/dist/cjs/store/slices/entityListsSlice.d.ts +1032 -72
- package/dist/cjs/store/slices/spaceListsSlice.d.ts +984 -24
- package/dist/esm/index.d.ts +1 -0
- package/dist/esm/interfaces/models/Entity.d.ts +2 -38
- package/dist/esm/interfaces/models/File.d.ts +38 -0
- package/dist/esm/interfaces/models/File.js +2 -0
- package/dist/esm/interfaces/models/File.js.map +1 -0
- package/dist/esm/interfaces/models/Space.d.ts +7 -3
- package/dist/esm/store/slices/entityListsSlice.d.ts +1032 -72
- package/dist/esm/store/slices/spaceListsSlice.d.ts +984 -24
- package/package.json +1 -1
|
@@ -113,8 +113,8 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
113
113
|
slug: string | null;
|
|
114
114
|
name: string;
|
|
115
115
|
description: string | null;
|
|
116
|
-
|
|
117
|
-
|
|
116
|
+
avatarFileId: string | null;
|
|
117
|
+
bannerFileId: string | null;
|
|
118
118
|
userId: string;
|
|
119
119
|
readingPermission: import("../..").ReadingPermission;
|
|
120
120
|
postingPermission: import("../..").PostingPermission;
|
|
@@ -130,6 +130,86 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
130
130
|
membersCount: number;
|
|
131
131
|
childSpacesCount: number;
|
|
132
132
|
isMember?: boolean | undefined;
|
|
133
|
+
avatarFile?: {
|
|
134
|
+
id: string;
|
|
135
|
+
projectId: string;
|
|
136
|
+
userId: string | null;
|
|
137
|
+
entityId: string | null;
|
|
138
|
+
commentId: string | null;
|
|
139
|
+
spaceId: string | null;
|
|
140
|
+
type: "image" | "video" | "document" | "other";
|
|
141
|
+
originalPath: string;
|
|
142
|
+
originalSize: number;
|
|
143
|
+
originalMimeType: string;
|
|
144
|
+
position: number;
|
|
145
|
+
metadata: {
|
|
146
|
+
[x: string]: any;
|
|
147
|
+
};
|
|
148
|
+
image?: {
|
|
149
|
+
fileId: string;
|
|
150
|
+
originalWidth: number;
|
|
151
|
+
originalHeight: number;
|
|
152
|
+
variants: {
|
|
153
|
+
[x: string]: {
|
|
154
|
+
path: string;
|
|
155
|
+
publicPath: string;
|
|
156
|
+
width: number;
|
|
157
|
+
height: number;
|
|
158
|
+
size: number;
|
|
159
|
+
format: string;
|
|
160
|
+
};
|
|
161
|
+
};
|
|
162
|
+
processingStatus: "completed" | "failed";
|
|
163
|
+
processingError: string | null;
|
|
164
|
+
format: string;
|
|
165
|
+
quality: number;
|
|
166
|
+
exifStripped: boolean;
|
|
167
|
+
createdAt: Date;
|
|
168
|
+
updatedAt: Date;
|
|
169
|
+
} | undefined;
|
|
170
|
+
createdAt: Date;
|
|
171
|
+
updatedAt: Date;
|
|
172
|
+
} | undefined;
|
|
173
|
+
bannerFile?: {
|
|
174
|
+
id: string;
|
|
175
|
+
projectId: string;
|
|
176
|
+
userId: string | null;
|
|
177
|
+
entityId: string | null;
|
|
178
|
+
commentId: string | null;
|
|
179
|
+
spaceId: string | null;
|
|
180
|
+
type: "image" | "video" | "document" | "other";
|
|
181
|
+
originalPath: string;
|
|
182
|
+
originalSize: number;
|
|
183
|
+
originalMimeType: string;
|
|
184
|
+
position: number;
|
|
185
|
+
metadata: {
|
|
186
|
+
[x: string]: any;
|
|
187
|
+
};
|
|
188
|
+
image?: {
|
|
189
|
+
fileId: string;
|
|
190
|
+
originalWidth: number;
|
|
191
|
+
originalHeight: number;
|
|
192
|
+
variants: {
|
|
193
|
+
[x: string]: {
|
|
194
|
+
path: string;
|
|
195
|
+
publicPath: string;
|
|
196
|
+
width: number;
|
|
197
|
+
height: number;
|
|
198
|
+
size: number;
|
|
199
|
+
format: string;
|
|
200
|
+
};
|
|
201
|
+
};
|
|
202
|
+
processingStatus: "completed" | "failed";
|
|
203
|
+
processingError: string | null;
|
|
204
|
+
format: string;
|
|
205
|
+
quality: number;
|
|
206
|
+
exifStripped: boolean;
|
|
207
|
+
createdAt: Date;
|
|
208
|
+
updatedAt: Date;
|
|
209
|
+
} | undefined;
|
|
210
|
+
createdAt: Date;
|
|
211
|
+
updatedAt: Date;
|
|
212
|
+
} | undefined;
|
|
133
213
|
} | null | undefined;
|
|
134
214
|
user?: {
|
|
135
215
|
id: string;
|
|
@@ -195,11 +275,11 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
195
275
|
format: string;
|
|
196
276
|
quality: number;
|
|
197
277
|
exifStripped: boolean;
|
|
198
|
-
createdAt:
|
|
199
|
-
updatedAt:
|
|
278
|
+
createdAt: Date;
|
|
279
|
+
updatedAt: Date;
|
|
200
280
|
} | undefined;
|
|
201
|
-
createdAt:
|
|
202
|
-
updatedAt:
|
|
281
|
+
createdAt: Date;
|
|
282
|
+
updatedAt: Date;
|
|
203
283
|
}[] | undefined;
|
|
204
284
|
keywords: string[];
|
|
205
285
|
upvotes: string[];
|
|
@@ -327,8 +407,8 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
327
407
|
slug: string | null;
|
|
328
408
|
name: string;
|
|
329
409
|
description: string | null;
|
|
330
|
-
|
|
331
|
-
|
|
410
|
+
avatarFileId: string | null;
|
|
411
|
+
bannerFileId: string | null;
|
|
332
412
|
userId: string;
|
|
333
413
|
readingPermission: import("../..").ReadingPermission;
|
|
334
414
|
postingPermission: import("../..").PostingPermission;
|
|
@@ -344,6 +424,86 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
344
424
|
membersCount: number;
|
|
345
425
|
childSpacesCount: number;
|
|
346
426
|
isMember?: boolean | undefined;
|
|
427
|
+
avatarFile?: {
|
|
428
|
+
id: string;
|
|
429
|
+
projectId: string;
|
|
430
|
+
userId: string | null;
|
|
431
|
+
entityId: string | null;
|
|
432
|
+
commentId: string | null;
|
|
433
|
+
spaceId: string | null;
|
|
434
|
+
type: "image" | "video" | "document" | "other";
|
|
435
|
+
originalPath: string;
|
|
436
|
+
originalSize: number;
|
|
437
|
+
originalMimeType: string;
|
|
438
|
+
position: number;
|
|
439
|
+
metadata: {
|
|
440
|
+
[x: string]: any;
|
|
441
|
+
};
|
|
442
|
+
image?: {
|
|
443
|
+
fileId: string;
|
|
444
|
+
originalWidth: number;
|
|
445
|
+
originalHeight: number;
|
|
446
|
+
variants: {
|
|
447
|
+
[x: string]: {
|
|
448
|
+
path: string;
|
|
449
|
+
publicPath: string;
|
|
450
|
+
width: number;
|
|
451
|
+
height: number;
|
|
452
|
+
size: number;
|
|
453
|
+
format: string;
|
|
454
|
+
};
|
|
455
|
+
};
|
|
456
|
+
processingStatus: "completed" | "failed";
|
|
457
|
+
processingError: string | null;
|
|
458
|
+
format: string;
|
|
459
|
+
quality: number;
|
|
460
|
+
exifStripped: boolean;
|
|
461
|
+
createdAt: Date;
|
|
462
|
+
updatedAt: Date;
|
|
463
|
+
} | undefined;
|
|
464
|
+
createdAt: Date;
|
|
465
|
+
updatedAt: Date;
|
|
466
|
+
} | undefined;
|
|
467
|
+
bannerFile?: {
|
|
468
|
+
id: string;
|
|
469
|
+
projectId: string;
|
|
470
|
+
userId: string | null;
|
|
471
|
+
entityId: string | null;
|
|
472
|
+
commentId: string | null;
|
|
473
|
+
spaceId: string | null;
|
|
474
|
+
type: "image" | "video" | "document" | "other";
|
|
475
|
+
originalPath: string;
|
|
476
|
+
originalSize: number;
|
|
477
|
+
originalMimeType: string;
|
|
478
|
+
position: number;
|
|
479
|
+
metadata: {
|
|
480
|
+
[x: string]: any;
|
|
481
|
+
};
|
|
482
|
+
image?: {
|
|
483
|
+
fileId: string;
|
|
484
|
+
originalWidth: number;
|
|
485
|
+
originalHeight: number;
|
|
486
|
+
variants: {
|
|
487
|
+
[x: string]: {
|
|
488
|
+
path: string;
|
|
489
|
+
publicPath: string;
|
|
490
|
+
width: number;
|
|
491
|
+
height: number;
|
|
492
|
+
size: number;
|
|
493
|
+
format: string;
|
|
494
|
+
};
|
|
495
|
+
};
|
|
496
|
+
processingStatus: "completed" | "failed";
|
|
497
|
+
processingError: string | null;
|
|
498
|
+
format: string;
|
|
499
|
+
quality: number;
|
|
500
|
+
exifStripped: boolean;
|
|
501
|
+
createdAt: Date;
|
|
502
|
+
updatedAt: Date;
|
|
503
|
+
} | undefined;
|
|
504
|
+
createdAt: Date;
|
|
505
|
+
updatedAt: Date;
|
|
506
|
+
} | undefined;
|
|
347
507
|
} | null | undefined;
|
|
348
508
|
user?: {
|
|
349
509
|
id: string;
|
|
@@ -409,11 +569,11 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
409
569
|
format: string;
|
|
410
570
|
quality: number;
|
|
411
571
|
exifStripped: boolean;
|
|
412
|
-
createdAt:
|
|
413
|
-
updatedAt:
|
|
572
|
+
createdAt: Date;
|
|
573
|
+
updatedAt: Date;
|
|
414
574
|
} | undefined;
|
|
415
|
-
createdAt:
|
|
416
|
-
updatedAt:
|
|
575
|
+
createdAt: Date;
|
|
576
|
+
updatedAt: Date;
|
|
417
577
|
}[] | undefined;
|
|
418
578
|
keywords: string[];
|
|
419
579
|
upvotes: string[];
|
|
@@ -541,8 +701,8 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
541
701
|
slug: string | null;
|
|
542
702
|
name: string;
|
|
543
703
|
description: string | null;
|
|
544
|
-
|
|
545
|
-
|
|
704
|
+
avatarFileId: string | null;
|
|
705
|
+
bannerFileId: string | null;
|
|
546
706
|
userId: string;
|
|
547
707
|
readingPermission: import("../..").ReadingPermission;
|
|
548
708
|
postingPermission: import("../..").PostingPermission;
|
|
@@ -558,6 +718,86 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
558
718
|
membersCount: number;
|
|
559
719
|
childSpacesCount: number;
|
|
560
720
|
isMember?: boolean | undefined;
|
|
721
|
+
avatarFile?: {
|
|
722
|
+
id: string;
|
|
723
|
+
projectId: string;
|
|
724
|
+
userId: string | null;
|
|
725
|
+
entityId: string | null;
|
|
726
|
+
commentId: string | null;
|
|
727
|
+
spaceId: string | null;
|
|
728
|
+
type: "image" | "video" | "document" | "other";
|
|
729
|
+
originalPath: string;
|
|
730
|
+
originalSize: number;
|
|
731
|
+
originalMimeType: string;
|
|
732
|
+
position: number;
|
|
733
|
+
metadata: {
|
|
734
|
+
[x: string]: any;
|
|
735
|
+
};
|
|
736
|
+
image?: {
|
|
737
|
+
fileId: string;
|
|
738
|
+
originalWidth: number;
|
|
739
|
+
originalHeight: number;
|
|
740
|
+
variants: {
|
|
741
|
+
[x: string]: {
|
|
742
|
+
path: string;
|
|
743
|
+
publicPath: string;
|
|
744
|
+
width: number;
|
|
745
|
+
height: number;
|
|
746
|
+
size: number;
|
|
747
|
+
format: string;
|
|
748
|
+
};
|
|
749
|
+
};
|
|
750
|
+
processingStatus: "completed" | "failed";
|
|
751
|
+
processingError: string | null;
|
|
752
|
+
format: string;
|
|
753
|
+
quality: number;
|
|
754
|
+
exifStripped: boolean;
|
|
755
|
+
createdAt: Date;
|
|
756
|
+
updatedAt: Date;
|
|
757
|
+
} | undefined;
|
|
758
|
+
createdAt: Date;
|
|
759
|
+
updatedAt: Date;
|
|
760
|
+
} | undefined;
|
|
761
|
+
bannerFile?: {
|
|
762
|
+
id: string;
|
|
763
|
+
projectId: string;
|
|
764
|
+
userId: string | null;
|
|
765
|
+
entityId: string | null;
|
|
766
|
+
commentId: string | null;
|
|
767
|
+
spaceId: string | null;
|
|
768
|
+
type: "image" | "video" | "document" | "other";
|
|
769
|
+
originalPath: string;
|
|
770
|
+
originalSize: number;
|
|
771
|
+
originalMimeType: string;
|
|
772
|
+
position: number;
|
|
773
|
+
metadata: {
|
|
774
|
+
[x: string]: any;
|
|
775
|
+
};
|
|
776
|
+
image?: {
|
|
777
|
+
fileId: string;
|
|
778
|
+
originalWidth: number;
|
|
779
|
+
originalHeight: number;
|
|
780
|
+
variants: {
|
|
781
|
+
[x: string]: {
|
|
782
|
+
path: string;
|
|
783
|
+
publicPath: string;
|
|
784
|
+
width: number;
|
|
785
|
+
height: number;
|
|
786
|
+
size: number;
|
|
787
|
+
format: string;
|
|
788
|
+
};
|
|
789
|
+
};
|
|
790
|
+
processingStatus: "completed" | "failed";
|
|
791
|
+
processingError: string | null;
|
|
792
|
+
format: string;
|
|
793
|
+
quality: number;
|
|
794
|
+
exifStripped: boolean;
|
|
795
|
+
createdAt: Date;
|
|
796
|
+
updatedAt: Date;
|
|
797
|
+
} | undefined;
|
|
798
|
+
createdAt: Date;
|
|
799
|
+
updatedAt: Date;
|
|
800
|
+
} | undefined;
|
|
561
801
|
} | null | undefined;
|
|
562
802
|
user?: {
|
|
563
803
|
id: string;
|
|
@@ -623,11 +863,11 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
623
863
|
format: string;
|
|
624
864
|
quality: number;
|
|
625
865
|
exifStripped: boolean;
|
|
626
|
-
createdAt:
|
|
627
|
-
updatedAt:
|
|
866
|
+
createdAt: Date;
|
|
867
|
+
updatedAt: Date;
|
|
628
868
|
} | undefined;
|
|
629
|
-
createdAt:
|
|
630
|
-
updatedAt:
|
|
869
|
+
createdAt: Date;
|
|
870
|
+
updatedAt: Date;
|
|
631
871
|
}[] | undefined;
|
|
632
872
|
keywords: string[];
|
|
633
873
|
upvotes: string[];
|
|
@@ -758,8 +998,8 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
758
998
|
slug: string | null;
|
|
759
999
|
name: string;
|
|
760
1000
|
description: string | null;
|
|
761
|
-
|
|
762
|
-
|
|
1001
|
+
avatarFileId: string | null;
|
|
1002
|
+
bannerFileId: string | null;
|
|
763
1003
|
userId: string;
|
|
764
1004
|
readingPermission: import("../..").ReadingPermission;
|
|
765
1005
|
postingPermission: import("../..").PostingPermission;
|
|
@@ -775,6 +1015,86 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
775
1015
|
membersCount: number;
|
|
776
1016
|
childSpacesCount: number;
|
|
777
1017
|
isMember?: boolean | undefined;
|
|
1018
|
+
avatarFile?: {
|
|
1019
|
+
id: string;
|
|
1020
|
+
projectId: string;
|
|
1021
|
+
userId: string | null;
|
|
1022
|
+
entityId: string | null;
|
|
1023
|
+
commentId: string | null;
|
|
1024
|
+
spaceId: string | null;
|
|
1025
|
+
type: "image" | "video" | "document" | "other";
|
|
1026
|
+
originalPath: string;
|
|
1027
|
+
originalSize: number;
|
|
1028
|
+
originalMimeType: string;
|
|
1029
|
+
position: number;
|
|
1030
|
+
metadata: {
|
|
1031
|
+
[x: string]: any;
|
|
1032
|
+
};
|
|
1033
|
+
image?: {
|
|
1034
|
+
fileId: string;
|
|
1035
|
+
originalWidth: number;
|
|
1036
|
+
originalHeight: number;
|
|
1037
|
+
variants: {
|
|
1038
|
+
[x: string]: {
|
|
1039
|
+
path: string;
|
|
1040
|
+
publicPath: string;
|
|
1041
|
+
width: number;
|
|
1042
|
+
height: number;
|
|
1043
|
+
size: number;
|
|
1044
|
+
format: string;
|
|
1045
|
+
};
|
|
1046
|
+
};
|
|
1047
|
+
processingStatus: "completed" | "failed";
|
|
1048
|
+
processingError: string | null;
|
|
1049
|
+
format: string;
|
|
1050
|
+
quality: number;
|
|
1051
|
+
exifStripped: boolean;
|
|
1052
|
+
createdAt: Date;
|
|
1053
|
+
updatedAt: Date;
|
|
1054
|
+
} | undefined;
|
|
1055
|
+
createdAt: Date;
|
|
1056
|
+
updatedAt: Date;
|
|
1057
|
+
} | undefined;
|
|
1058
|
+
bannerFile?: {
|
|
1059
|
+
id: string;
|
|
1060
|
+
projectId: string;
|
|
1061
|
+
userId: string | null;
|
|
1062
|
+
entityId: string | null;
|
|
1063
|
+
commentId: string | null;
|
|
1064
|
+
spaceId: string | null;
|
|
1065
|
+
type: "image" | "video" | "document" | "other";
|
|
1066
|
+
originalPath: string;
|
|
1067
|
+
originalSize: number;
|
|
1068
|
+
originalMimeType: string;
|
|
1069
|
+
position: number;
|
|
1070
|
+
metadata: {
|
|
1071
|
+
[x: string]: any;
|
|
1072
|
+
};
|
|
1073
|
+
image?: {
|
|
1074
|
+
fileId: string;
|
|
1075
|
+
originalWidth: number;
|
|
1076
|
+
originalHeight: number;
|
|
1077
|
+
variants: {
|
|
1078
|
+
[x: string]: {
|
|
1079
|
+
path: string;
|
|
1080
|
+
publicPath: string;
|
|
1081
|
+
width: number;
|
|
1082
|
+
height: number;
|
|
1083
|
+
size: number;
|
|
1084
|
+
format: string;
|
|
1085
|
+
};
|
|
1086
|
+
};
|
|
1087
|
+
processingStatus: "completed" | "failed";
|
|
1088
|
+
processingError: string | null;
|
|
1089
|
+
format: string;
|
|
1090
|
+
quality: number;
|
|
1091
|
+
exifStripped: boolean;
|
|
1092
|
+
createdAt: Date;
|
|
1093
|
+
updatedAt: Date;
|
|
1094
|
+
} | undefined;
|
|
1095
|
+
createdAt: Date;
|
|
1096
|
+
updatedAt: Date;
|
|
1097
|
+
} | undefined;
|
|
778
1098
|
} | null | undefined;
|
|
779
1099
|
user?: {
|
|
780
1100
|
id: string;
|
|
@@ -840,11 +1160,11 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
840
1160
|
format: string;
|
|
841
1161
|
quality: number;
|
|
842
1162
|
exifStripped: boolean;
|
|
843
|
-
createdAt:
|
|
844
|
-
updatedAt:
|
|
1163
|
+
createdAt: Date;
|
|
1164
|
+
updatedAt: Date;
|
|
845
1165
|
} | undefined;
|
|
846
|
-
createdAt:
|
|
847
|
-
updatedAt:
|
|
1166
|
+
createdAt: Date;
|
|
1167
|
+
updatedAt: Date;
|
|
848
1168
|
}[] | undefined;
|
|
849
1169
|
keywords: string[];
|
|
850
1170
|
upvotes: string[];
|
|
@@ -972,8 +1292,8 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
972
1292
|
slug: string | null;
|
|
973
1293
|
name: string;
|
|
974
1294
|
description: string | null;
|
|
975
|
-
|
|
976
|
-
|
|
1295
|
+
avatarFileId: string | null;
|
|
1296
|
+
bannerFileId: string | null;
|
|
977
1297
|
userId: string;
|
|
978
1298
|
readingPermission: import("../..").ReadingPermission;
|
|
979
1299
|
postingPermission: import("../..").PostingPermission;
|
|
@@ -989,6 +1309,86 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
989
1309
|
membersCount: number;
|
|
990
1310
|
childSpacesCount: number;
|
|
991
1311
|
isMember?: boolean | undefined;
|
|
1312
|
+
avatarFile?: {
|
|
1313
|
+
id: string;
|
|
1314
|
+
projectId: string;
|
|
1315
|
+
userId: string | null;
|
|
1316
|
+
entityId: string | null;
|
|
1317
|
+
commentId: string | null;
|
|
1318
|
+
spaceId: string | null;
|
|
1319
|
+
type: "image" | "video" | "document" | "other";
|
|
1320
|
+
originalPath: string;
|
|
1321
|
+
originalSize: number;
|
|
1322
|
+
originalMimeType: string;
|
|
1323
|
+
position: number;
|
|
1324
|
+
metadata: {
|
|
1325
|
+
[x: string]: any;
|
|
1326
|
+
};
|
|
1327
|
+
image?: {
|
|
1328
|
+
fileId: string;
|
|
1329
|
+
originalWidth: number;
|
|
1330
|
+
originalHeight: number;
|
|
1331
|
+
variants: {
|
|
1332
|
+
[x: string]: {
|
|
1333
|
+
path: string;
|
|
1334
|
+
publicPath: string;
|
|
1335
|
+
width: number;
|
|
1336
|
+
height: number;
|
|
1337
|
+
size: number;
|
|
1338
|
+
format: string;
|
|
1339
|
+
};
|
|
1340
|
+
};
|
|
1341
|
+
processingStatus: "completed" | "failed";
|
|
1342
|
+
processingError: string | null;
|
|
1343
|
+
format: string;
|
|
1344
|
+
quality: number;
|
|
1345
|
+
exifStripped: boolean;
|
|
1346
|
+
createdAt: Date;
|
|
1347
|
+
updatedAt: Date;
|
|
1348
|
+
} | undefined;
|
|
1349
|
+
createdAt: Date;
|
|
1350
|
+
updatedAt: Date;
|
|
1351
|
+
} | undefined;
|
|
1352
|
+
bannerFile?: {
|
|
1353
|
+
id: string;
|
|
1354
|
+
projectId: string;
|
|
1355
|
+
userId: string | null;
|
|
1356
|
+
entityId: string | null;
|
|
1357
|
+
commentId: string | null;
|
|
1358
|
+
spaceId: string | null;
|
|
1359
|
+
type: "image" | "video" | "document" | "other";
|
|
1360
|
+
originalPath: string;
|
|
1361
|
+
originalSize: number;
|
|
1362
|
+
originalMimeType: string;
|
|
1363
|
+
position: number;
|
|
1364
|
+
metadata: {
|
|
1365
|
+
[x: string]: any;
|
|
1366
|
+
};
|
|
1367
|
+
image?: {
|
|
1368
|
+
fileId: string;
|
|
1369
|
+
originalWidth: number;
|
|
1370
|
+
originalHeight: number;
|
|
1371
|
+
variants: {
|
|
1372
|
+
[x: string]: {
|
|
1373
|
+
path: string;
|
|
1374
|
+
publicPath: string;
|
|
1375
|
+
width: number;
|
|
1376
|
+
height: number;
|
|
1377
|
+
size: number;
|
|
1378
|
+
format: string;
|
|
1379
|
+
};
|
|
1380
|
+
};
|
|
1381
|
+
processingStatus: "completed" | "failed";
|
|
1382
|
+
processingError: string | null;
|
|
1383
|
+
format: string;
|
|
1384
|
+
quality: number;
|
|
1385
|
+
exifStripped: boolean;
|
|
1386
|
+
createdAt: Date;
|
|
1387
|
+
updatedAt: Date;
|
|
1388
|
+
} | undefined;
|
|
1389
|
+
createdAt: Date;
|
|
1390
|
+
updatedAt: Date;
|
|
1391
|
+
} | undefined;
|
|
992
1392
|
} | null | undefined;
|
|
993
1393
|
user?: {
|
|
994
1394
|
id: string;
|
|
@@ -1054,11 +1454,11 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1054
1454
|
format: string;
|
|
1055
1455
|
quality: number;
|
|
1056
1456
|
exifStripped: boolean;
|
|
1057
|
-
createdAt:
|
|
1058
|
-
updatedAt:
|
|
1457
|
+
createdAt: Date;
|
|
1458
|
+
updatedAt: Date;
|
|
1059
1459
|
} | undefined;
|
|
1060
|
-
createdAt:
|
|
1061
|
-
updatedAt:
|
|
1460
|
+
createdAt: Date;
|
|
1461
|
+
updatedAt: Date;
|
|
1062
1462
|
}[] | undefined;
|
|
1063
1463
|
keywords: string[];
|
|
1064
1464
|
upvotes: string[];
|
|
@@ -1186,8 +1586,8 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1186
1586
|
slug: string | null;
|
|
1187
1587
|
name: string;
|
|
1188
1588
|
description: string | null;
|
|
1189
|
-
|
|
1190
|
-
|
|
1589
|
+
avatarFileId: string | null;
|
|
1590
|
+
bannerFileId: string | null;
|
|
1191
1591
|
userId: string;
|
|
1192
1592
|
readingPermission: import("../..").ReadingPermission;
|
|
1193
1593
|
postingPermission: import("../..").PostingPermission;
|
|
@@ -1203,6 +1603,86 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1203
1603
|
membersCount: number;
|
|
1204
1604
|
childSpacesCount: number;
|
|
1205
1605
|
isMember?: boolean | undefined;
|
|
1606
|
+
avatarFile?: {
|
|
1607
|
+
id: string;
|
|
1608
|
+
projectId: string;
|
|
1609
|
+
userId: string | null;
|
|
1610
|
+
entityId: string | null;
|
|
1611
|
+
commentId: string | null;
|
|
1612
|
+
spaceId: string | null;
|
|
1613
|
+
type: "image" | "video" | "document" | "other";
|
|
1614
|
+
originalPath: string;
|
|
1615
|
+
originalSize: number;
|
|
1616
|
+
originalMimeType: string;
|
|
1617
|
+
position: number;
|
|
1618
|
+
metadata: {
|
|
1619
|
+
[x: string]: any;
|
|
1620
|
+
};
|
|
1621
|
+
image?: {
|
|
1622
|
+
fileId: string;
|
|
1623
|
+
originalWidth: number;
|
|
1624
|
+
originalHeight: number;
|
|
1625
|
+
variants: {
|
|
1626
|
+
[x: string]: {
|
|
1627
|
+
path: string;
|
|
1628
|
+
publicPath: string;
|
|
1629
|
+
width: number;
|
|
1630
|
+
height: number;
|
|
1631
|
+
size: number;
|
|
1632
|
+
format: string;
|
|
1633
|
+
};
|
|
1634
|
+
};
|
|
1635
|
+
processingStatus: "completed" | "failed";
|
|
1636
|
+
processingError: string | null;
|
|
1637
|
+
format: string;
|
|
1638
|
+
quality: number;
|
|
1639
|
+
exifStripped: boolean;
|
|
1640
|
+
createdAt: Date;
|
|
1641
|
+
updatedAt: Date;
|
|
1642
|
+
} | undefined;
|
|
1643
|
+
createdAt: Date;
|
|
1644
|
+
updatedAt: Date;
|
|
1645
|
+
} | undefined;
|
|
1646
|
+
bannerFile?: {
|
|
1647
|
+
id: string;
|
|
1648
|
+
projectId: string;
|
|
1649
|
+
userId: string | null;
|
|
1650
|
+
entityId: string | null;
|
|
1651
|
+
commentId: string | null;
|
|
1652
|
+
spaceId: string | null;
|
|
1653
|
+
type: "image" | "video" | "document" | "other";
|
|
1654
|
+
originalPath: string;
|
|
1655
|
+
originalSize: number;
|
|
1656
|
+
originalMimeType: string;
|
|
1657
|
+
position: number;
|
|
1658
|
+
metadata: {
|
|
1659
|
+
[x: string]: any;
|
|
1660
|
+
};
|
|
1661
|
+
image?: {
|
|
1662
|
+
fileId: string;
|
|
1663
|
+
originalWidth: number;
|
|
1664
|
+
originalHeight: number;
|
|
1665
|
+
variants: {
|
|
1666
|
+
[x: string]: {
|
|
1667
|
+
path: string;
|
|
1668
|
+
publicPath: string;
|
|
1669
|
+
width: number;
|
|
1670
|
+
height: number;
|
|
1671
|
+
size: number;
|
|
1672
|
+
format: string;
|
|
1673
|
+
};
|
|
1674
|
+
};
|
|
1675
|
+
processingStatus: "completed" | "failed";
|
|
1676
|
+
processingError: string | null;
|
|
1677
|
+
format: string;
|
|
1678
|
+
quality: number;
|
|
1679
|
+
exifStripped: boolean;
|
|
1680
|
+
createdAt: Date;
|
|
1681
|
+
updatedAt: Date;
|
|
1682
|
+
} | undefined;
|
|
1683
|
+
createdAt: Date;
|
|
1684
|
+
updatedAt: Date;
|
|
1685
|
+
} | undefined;
|
|
1206
1686
|
} | null | undefined;
|
|
1207
1687
|
user?: {
|
|
1208
1688
|
id: string;
|
|
@@ -1268,11 +1748,11 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1268
1748
|
format: string;
|
|
1269
1749
|
quality: number;
|
|
1270
1750
|
exifStripped: boolean;
|
|
1271
|
-
createdAt:
|
|
1272
|
-
updatedAt:
|
|
1751
|
+
createdAt: Date;
|
|
1752
|
+
updatedAt: Date;
|
|
1273
1753
|
} | undefined;
|
|
1274
|
-
createdAt:
|
|
1275
|
-
updatedAt:
|
|
1754
|
+
createdAt: Date;
|
|
1755
|
+
updatedAt: Date;
|
|
1276
1756
|
}[] | undefined;
|
|
1277
1757
|
keywords: string[];
|
|
1278
1758
|
upvotes: string[];
|
|
@@ -1403,8 +1883,8 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1403
1883
|
slug: string | null;
|
|
1404
1884
|
name: string;
|
|
1405
1885
|
description: string | null;
|
|
1406
|
-
|
|
1407
|
-
|
|
1886
|
+
avatarFileId: string | null;
|
|
1887
|
+
bannerFileId: string | null;
|
|
1408
1888
|
userId: string;
|
|
1409
1889
|
readingPermission: import("../..").ReadingPermission;
|
|
1410
1890
|
postingPermission: import("../..").PostingPermission;
|
|
@@ -1420,6 +1900,86 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1420
1900
|
membersCount: number;
|
|
1421
1901
|
childSpacesCount: number;
|
|
1422
1902
|
isMember?: boolean | undefined;
|
|
1903
|
+
avatarFile?: {
|
|
1904
|
+
id: string;
|
|
1905
|
+
projectId: string;
|
|
1906
|
+
userId: string | null;
|
|
1907
|
+
entityId: string | null;
|
|
1908
|
+
commentId: string | null;
|
|
1909
|
+
spaceId: string | null;
|
|
1910
|
+
type: "image" | "video" | "document" | "other";
|
|
1911
|
+
originalPath: string;
|
|
1912
|
+
originalSize: number;
|
|
1913
|
+
originalMimeType: string;
|
|
1914
|
+
position: number;
|
|
1915
|
+
metadata: {
|
|
1916
|
+
[x: string]: any;
|
|
1917
|
+
};
|
|
1918
|
+
image?: {
|
|
1919
|
+
fileId: string;
|
|
1920
|
+
originalWidth: number;
|
|
1921
|
+
originalHeight: number;
|
|
1922
|
+
variants: {
|
|
1923
|
+
[x: string]: {
|
|
1924
|
+
path: string;
|
|
1925
|
+
publicPath: string;
|
|
1926
|
+
width: number;
|
|
1927
|
+
height: number;
|
|
1928
|
+
size: number;
|
|
1929
|
+
format: string;
|
|
1930
|
+
};
|
|
1931
|
+
};
|
|
1932
|
+
processingStatus: "completed" | "failed";
|
|
1933
|
+
processingError: string | null;
|
|
1934
|
+
format: string;
|
|
1935
|
+
quality: number;
|
|
1936
|
+
exifStripped: boolean;
|
|
1937
|
+
createdAt: Date;
|
|
1938
|
+
updatedAt: Date;
|
|
1939
|
+
} | undefined;
|
|
1940
|
+
createdAt: Date;
|
|
1941
|
+
updatedAt: Date;
|
|
1942
|
+
} | undefined;
|
|
1943
|
+
bannerFile?: {
|
|
1944
|
+
id: string;
|
|
1945
|
+
projectId: string;
|
|
1946
|
+
userId: string | null;
|
|
1947
|
+
entityId: string | null;
|
|
1948
|
+
commentId: string | null;
|
|
1949
|
+
spaceId: string | null;
|
|
1950
|
+
type: "image" | "video" | "document" | "other";
|
|
1951
|
+
originalPath: string;
|
|
1952
|
+
originalSize: number;
|
|
1953
|
+
originalMimeType: string;
|
|
1954
|
+
position: number;
|
|
1955
|
+
metadata: {
|
|
1956
|
+
[x: string]: any;
|
|
1957
|
+
};
|
|
1958
|
+
image?: {
|
|
1959
|
+
fileId: string;
|
|
1960
|
+
originalWidth: number;
|
|
1961
|
+
originalHeight: number;
|
|
1962
|
+
variants: {
|
|
1963
|
+
[x: string]: {
|
|
1964
|
+
path: string;
|
|
1965
|
+
publicPath: string;
|
|
1966
|
+
width: number;
|
|
1967
|
+
height: number;
|
|
1968
|
+
size: number;
|
|
1969
|
+
format: string;
|
|
1970
|
+
};
|
|
1971
|
+
};
|
|
1972
|
+
processingStatus: "completed" | "failed";
|
|
1973
|
+
processingError: string | null;
|
|
1974
|
+
format: string;
|
|
1975
|
+
quality: number;
|
|
1976
|
+
exifStripped: boolean;
|
|
1977
|
+
createdAt: Date;
|
|
1978
|
+
updatedAt: Date;
|
|
1979
|
+
} | undefined;
|
|
1980
|
+
createdAt: Date;
|
|
1981
|
+
updatedAt: Date;
|
|
1982
|
+
} | undefined;
|
|
1423
1983
|
} | null | undefined;
|
|
1424
1984
|
user?: {
|
|
1425
1985
|
id: string;
|
|
@@ -1485,11 +2045,11 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1485
2045
|
format: string;
|
|
1486
2046
|
quality: number;
|
|
1487
2047
|
exifStripped: boolean;
|
|
1488
|
-
createdAt:
|
|
1489
|
-
updatedAt:
|
|
2048
|
+
createdAt: Date;
|
|
2049
|
+
updatedAt: Date;
|
|
1490
2050
|
} | undefined;
|
|
1491
|
-
createdAt:
|
|
1492
|
-
updatedAt:
|
|
2051
|
+
createdAt: Date;
|
|
2052
|
+
updatedAt: Date;
|
|
1493
2053
|
}[] | undefined;
|
|
1494
2054
|
keywords: string[];
|
|
1495
2055
|
upvotes: string[];
|
|
@@ -1620,8 +2180,8 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1620
2180
|
slug: string | null;
|
|
1621
2181
|
name: string;
|
|
1622
2182
|
description: string | null;
|
|
1623
|
-
|
|
1624
|
-
|
|
2183
|
+
avatarFileId: string | null;
|
|
2184
|
+
bannerFileId: string | null;
|
|
1625
2185
|
userId: string;
|
|
1626
2186
|
readingPermission: import("../..").ReadingPermission;
|
|
1627
2187
|
postingPermission: import("../..").PostingPermission;
|
|
@@ -1637,6 +2197,86 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1637
2197
|
membersCount: number;
|
|
1638
2198
|
childSpacesCount: number;
|
|
1639
2199
|
isMember?: boolean | undefined;
|
|
2200
|
+
avatarFile?: {
|
|
2201
|
+
id: string;
|
|
2202
|
+
projectId: string;
|
|
2203
|
+
userId: string | null;
|
|
2204
|
+
entityId: string | null;
|
|
2205
|
+
commentId: string | null;
|
|
2206
|
+
spaceId: string | null;
|
|
2207
|
+
type: "image" | "video" | "document" | "other";
|
|
2208
|
+
originalPath: string;
|
|
2209
|
+
originalSize: number;
|
|
2210
|
+
originalMimeType: string;
|
|
2211
|
+
position: number;
|
|
2212
|
+
metadata: {
|
|
2213
|
+
[x: string]: any;
|
|
2214
|
+
};
|
|
2215
|
+
image?: {
|
|
2216
|
+
fileId: string;
|
|
2217
|
+
originalWidth: number;
|
|
2218
|
+
originalHeight: number;
|
|
2219
|
+
variants: {
|
|
2220
|
+
[x: string]: {
|
|
2221
|
+
path: string;
|
|
2222
|
+
publicPath: string;
|
|
2223
|
+
width: number;
|
|
2224
|
+
height: number;
|
|
2225
|
+
size: number;
|
|
2226
|
+
format: string;
|
|
2227
|
+
};
|
|
2228
|
+
};
|
|
2229
|
+
processingStatus: "completed" | "failed";
|
|
2230
|
+
processingError: string | null;
|
|
2231
|
+
format: string;
|
|
2232
|
+
quality: number;
|
|
2233
|
+
exifStripped: boolean;
|
|
2234
|
+
createdAt: Date;
|
|
2235
|
+
updatedAt: Date;
|
|
2236
|
+
} | undefined;
|
|
2237
|
+
createdAt: Date;
|
|
2238
|
+
updatedAt: Date;
|
|
2239
|
+
} | undefined;
|
|
2240
|
+
bannerFile?: {
|
|
2241
|
+
id: string;
|
|
2242
|
+
projectId: string;
|
|
2243
|
+
userId: string | null;
|
|
2244
|
+
entityId: string | null;
|
|
2245
|
+
commentId: string | null;
|
|
2246
|
+
spaceId: string | null;
|
|
2247
|
+
type: "image" | "video" | "document" | "other";
|
|
2248
|
+
originalPath: string;
|
|
2249
|
+
originalSize: number;
|
|
2250
|
+
originalMimeType: string;
|
|
2251
|
+
position: number;
|
|
2252
|
+
metadata: {
|
|
2253
|
+
[x: string]: any;
|
|
2254
|
+
};
|
|
2255
|
+
image?: {
|
|
2256
|
+
fileId: string;
|
|
2257
|
+
originalWidth: number;
|
|
2258
|
+
originalHeight: number;
|
|
2259
|
+
variants: {
|
|
2260
|
+
[x: string]: {
|
|
2261
|
+
path: string;
|
|
2262
|
+
publicPath: string;
|
|
2263
|
+
width: number;
|
|
2264
|
+
height: number;
|
|
2265
|
+
size: number;
|
|
2266
|
+
format: string;
|
|
2267
|
+
};
|
|
2268
|
+
};
|
|
2269
|
+
processingStatus: "completed" | "failed";
|
|
2270
|
+
processingError: string | null;
|
|
2271
|
+
format: string;
|
|
2272
|
+
quality: number;
|
|
2273
|
+
exifStripped: boolean;
|
|
2274
|
+
createdAt: Date;
|
|
2275
|
+
updatedAt: Date;
|
|
2276
|
+
} | undefined;
|
|
2277
|
+
createdAt: Date;
|
|
2278
|
+
updatedAt: Date;
|
|
2279
|
+
} | undefined;
|
|
1640
2280
|
} | null | undefined;
|
|
1641
2281
|
user?: {
|
|
1642
2282
|
id: string;
|
|
@@ -1702,11 +2342,11 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1702
2342
|
format: string;
|
|
1703
2343
|
quality: number;
|
|
1704
2344
|
exifStripped: boolean;
|
|
1705
|
-
createdAt:
|
|
1706
|
-
updatedAt:
|
|
2345
|
+
createdAt: Date;
|
|
2346
|
+
updatedAt: Date;
|
|
1707
2347
|
} | undefined;
|
|
1708
|
-
createdAt:
|
|
1709
|
-
updatedAt:
|
|
2348
|
+
createdAt: Date;
|
|
2349
|
+
updatedAt: Date;
|
|
1710
2350
|
}[] | undefined;
|
|
1711
2351
|
keywords: string[];
|
|
1712
2352
|
upvotes: string[];
|
|
@@ -1834,8 +2474,8 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1834
2474
|
slug: string | null;
|
|
1835
2475
|
name: string;
|
|
1836
2476
|
description: string | null;
|
|
1837
|
-
|
|
1838
|
-
|
|
2477
|
+
avatarFileId: string | null;
|
|
2478
|
+
bannerFileId: string | null;
|
|
1839
2479
|
userId: string;
|
|
1840
2480
|
readingPermission: import("../..").ReadingPermission;
|
|
1841
2481
|
postingPermission: import("../..").PostingPermission;
|
|
@@ -1851,6 +2491,86 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1851
2491
|
membersCount: number;
|
|
1852
2492
|
childSpacesCount: number;
|
|
1853
2493
|
isMember?: boolean | undefined;
|
|
2494
|
+
avatarFile?: {
|
|
2495
|
+
id: string;
|
|
2496
|
+
projectId: string;
|
|
2497
|
+
userId: string | null;
|
|
2498
|
+
entityId: string | null;
|
|
2499
|
+
commentId: string | null;
|
|
2500
|
+
spaceId: string | null;
|
|
2501
|
+
type: "image" | "video" | "document" | "other";
|
|
2502
|
+
originalPath: string;
|
|
2503
|
+
originalSize: number;
|
|
2504
|
+
originalMimeType: string;
|
|
2505
|
+
position: number;
|
|
2506
|
+
metadata: {
|
|
2507
|
+
[x: string]: any;
|
|
2508
|
+
};
|
|
2509
|
+
image?: {
|
|
2510
|
+
fileId: string;
|
|
2511
|
+
originalWidth: number;
|
|
2512
|
+
originalHeight: number;
|
|
2513
|
+
variants: {
|
|
2514
|
+
[x: string]: {
|
|
2515
|
+
path: string;
|
|
2516
|
+
publicPath: string;
|
|
2517
|
+
width: number;
|
|
2518
|
+
height: number;
|
|
2519
|
+
size: number;
|
|
2520
|
+
format: string;
|
|
2521
|
+
};
|
|
2522
|
+
};
|
|
2523
|
+
processingStatus: "completed" | "failed";
|
|
2524
|
+
processingError: string | null;
|
|
2525
|
+
format: string;
|
|
2526
|
+
quality: number;
|
|
2527
|
+
exifStripped: boolean;
|
|
2528
|
+
createdAt: Date;
|
|
2529
|
+
updatedAt: Date;
|
|
2530
|
+
} | undefined;
|
|
2531
|
+
createdAt: Date;
|
|
2532
|
+
updatedAt: Date;
|
|
2533
|
+
} | undefined;
|
|
2534
|
+
bannerFile?: {
|
|
2535
|
+
id: string;
|
|
2536
|
+
projectId: string;
|
|
2537
|
+
userId: string | null;
|
|
2538
|
+
entityId: string | null;
|
|
2539
|
+
commentId: string | null;
|
|
2540
|
+
spaceId: string | null;
|
|
2541
|
+
type: "image" | "video" | "document" | "other";
|
|
2542
|
+
originalPath: string;
|
|
2543
|
+
originalSize: number;
|
|
2544
|
+
originalMimeType: string;
|
|
2545
|
+
position: number;
|
|
2546
|
+
metadata: {
|
|
2547
|
+
[x: string]: any;
|
|
2548
|
+
};
|
|
2549
|
+
image?: {
|
|
2550
|
+
fileId: string;
|
|
2551
|
+
originalWidth: number;
|
|
2552
|
+
originalHeight: number;
|
|
2553
|
+
variants: {
|
|
2554
|
+
[x: string]: {
|
|
2555
|
+
path: string;
|
|
2556
|
+
publicPath: string;
|
|
2557
|
+
width: number;
|
|
2558
|
+
height: number;
|
|
2559
|
+
size: number;
|
|
2560
|
+
format: string;
|
|
2561
|
+
};
|
|
2562
|
+
};
|
|
2563
|
+
processingStatus: "completed" | "failed";
|
|
2564
|
+
processingError: string | null;
|
|
2565
|
+
format: string;
|
|
2566
|
+
quality: number;
|
|
2567
|
+
exifStripped: boolean;
|
|
2568
|
+
createdAt: Date;
|
|
2569
|
+
updatedAt: Date;
|
|
2570
|
+
} | undefined;
|
|
2571
|
+
createdAt: Date;
|
|
2572
|
+
updatedAt: Date;
|
|
2573
|
+
} | undefined;
|
|
1854
2574
|
} | null | undefined;
|
|
1855
2575
|
user?: {
|
|
1856
2576
|
id: string;
|
|
@@ -1916,11 +2636,11 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
1916
2636
|
format: string;
|
|
1917
2637
|
quality: number;
|
|
1918
2638
|
exifStripped: boolean;
|
|
1919
|
-
createdAt:
|
|
1920
|
-
updatedAt:
|
|
2639
|
+
createdAt: Date;
|
|
2640
|
+
updatedAt: Date;
|
|
1921
2641
|
} | undefined;
|
|
1922
|
-
createdAt:
|
|
1923
|
-
updatedAt:
|
|
2642
|
+
createdAt: Date;
|
|
2643
|
+
updatedAt: Date;
|
|
1924
2644
|
}[] | undefined;
|
|
1925
2645
|
keywords: string[];
|
|
1926
2646
|
upvotes: string[];
|
|
@@ -2048,8 +2768,8 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2048
2768
|
slug: string | null;
|
|
2049
2769
|
name: string;
|
|
2050
2770
|
description: string | null;
|
|
2051
|
-
|
|
2052
|
-
|
|
2771
|
+
avatarFileId: string | null;
|
|
2772
|
+
bannerFileId: string | null;
|
|
2053
2773
|
userId: string;
|
|
2054
2774
|
readingPermission: import("../..").ReadingPermission;
|
|
2055
2775
|
postingPermission: import("../..").PostingPermission;
|
|
@@ -2065,6 +2785,86 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2065
2785
|
membersCount: number;
|
|
2066
2786
|
childSpacesCount: number;
|
|
2067
2787
|
isMember?: boolean | undefined;
|
|
2788
|
+
avatarFile?: {
|
|
2789
|
+
id: string;
|
|
2790
|
+
projectId: string;
|
|
2791
|
+
userId: string | null;
|
|
2792
|
+
entityId: string | null;
|
|
2793
|
+
commentId: string | null;
|
|
2794
|
+
spaceId: string | null;
|
|
2795
|
+
type: "image" | "video" | "document" | "other";
|
|
2796
|
+
originalPath: string;
|
|
2797
|
+
originalSize: number;
|
|
2798
|
+
originalMimeType: string;
|
|
2799
|
+
position: number;
|
|
2800
|
+
metadata: {
|
|
2801
|
+
[x: string]: any;
|
|
2802
|
+
};
|
|
2803
|
+
image?: {
|
|
2804
|
+
fileId: string;
|
|
2805
|
+
originalWidth: number;
|
|
2806
|
+
originalHeight: number;
|
|
2807
|
+
variants: {
|
|
2808
|
+
[x: string]: {
|
|
2809
|
+
path: string;
|
|
2810
|
+
publicPath: string;
|
|
2811
|
+
width: number;
|
|
2812
|
+
height: number;
|
|
2813
|
+
size: number;
|
|
2814
|
+
format: string;
|
|
2815
|
+
};
|
|
2816
|
+
};
|
|
2817
|
+
processingStatus: "completed" | "failed";
|
|
2818
|
+
processingError: string | null;
|
|
2819
|
+
format: string;
|
|
2820
|
+
quality: number;
|
|
2821
|
+
exifStripped: boolean;
|
|
2822
|
+
createdAt: Date;
|
|
2823
|
+
updatedAt: Date;
|
|
2824
|
+
} | undefined;
|
|
2825
|
+
createdAt: Date;
|
|
2826
|
+
updatedAt: Date;
|
|
2827
|
+
} | undefined;
|
|
2828
|
+
bannerFile?: {
|
|
2829
|
+
id: string;
|
|
2830
|
+
projectId: string;
|
|
2831
|
+
userId: string | null;
|
|
2832
|
+
entityId: string | null;
|
|
2833
|
+
commentId: string | null;
|
|
2834
|
+
spaceId: string | null;
|
|
2835
|
+
type: "image" | "video" | "document" | "other";
|
|
2836
|
+
originalPath: string;
|
|
2837
|
+
originalSize: number;
|
|
2838
|
+
originalMimeType: string;
|
|
2839
|
+
position: number;
|
|
2840
|
+
metadata: {
|
|
2841
|
+
[x: string]: any;
|
|
2842
|
+
};
|
|
2843
|
+
image?: {
|
|
2844
|
+
fileId: string;
|
|
2845
|
+
originalWidth: number;
|
|
2846
|
+
originalHeight: number;
|
|
2847
|
+
variants: {
|
|
2848
|
+
[x: string]: {
|
|
2849
|
+
path: string;
|
|
2850
|
+
publicPath: string;
|
|
2851
|
+
width: number;
|
|
2852
|
+
height: number;
|
|
2853
|
+
size: number;
|
|
2854
|
+
format: string;
|
|
2855
|
+
};
|
|
2856
|
+
};
|
|
2857
|
+
processingStatus: "completed" | "failed";
|
|
2858
|
+
processingError: string | null;
|
|
2859
|
+
format: string;
|
|
2860
|
+
quality: number;
|
|
2861
|
+
exifStripped: boolean;
|
|
2862
|
+
createdAt: Date;
|
|
2863
|
+
updatedAt: Date;
|
|
2864
|
+
} | undefined;
|
|
2865
|
+
createdAt: Date;
|
|
2866
|
+
updatedAt: Date;
|
|
2867
|
+
} | undefined;
|
|
2068
2868
|
} | null | undefined;
|
|
2069
2869
|
user?: {
|
|
2070
2870
|
id: string;
|
|
@@ -2130,11 +2930,11 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2130
2930
|
format: string;
|
|
2131
2931
|
quality: number;
|
|
2132
2932
|
exifStripped: boolean;
|
|
2133
|
-
createdAt:
|
|
2134
|
-
updatedAt:
|
|
2933
|
+
createdAt: Date;
|
|
2934
|
+
updatedAt: Date;
|
|
2135
2935
|
} | undefined;
|
|
2136
|
-
createdAt:
|
|
2137
|
-
updatedAt:
|
|
2936
|
+
createdAt: Date;
|
|
2937
|
+
updatedAt: Date;
|
|
2138
2938
|
}[] | undefined;
|
|
2139
2939
|
keywords: string[];
|
|
2140
2940
|
upvotes: string[];
|
|
@@ -2262,8 +3062,8 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2262
3062
|
slug: string | null;
|
|
2263
3063
|
name: string;
|
|
2264
3064
|
description: string | null;
|
|
2265
|
-
|
|
2266
|
-
|
|
3065
|
+
avatarFileId: string | null;
|
|
3066
|
+
bannerFileId: string | null;
|
|
2267
3067
|
userId: string;
|
|
2268
3068
|
readingPermission: import("../..").ReadingPermission;
|
|
2269
3069
|
postingPermission: import("../..").PostingPermission;
|
|
@@ -2279,6 +3079,86 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2279
3079
|
membersCount: number;
|
|
2280
3080
|
childSpacesCount: number;
|
|
2281
3081
|
isMember?: boolean | undefined;
|
|
3082
|
+
avatarFile?: {
|
|
3083
|
+
id: string;
|
|
3084
|
+
projectId: string;
|
|
3085
|
+
userId: string | null;
|
|
3086
|
+
entityId: string | null;
|
|
3087
|
+
commentId: string | null;
|
|
3088
|
+
spaceId: string | null;
|
|
3089
|
+
type: "image" | "video" | "document" | "other";
|
|
3090
|
+
originalPath: string;
|
|
3091
|
+
originalSize: number;
|
|
3092
|
+
originalMimeType: string;
|
|
3093
|
+
position: number;
|
|
3094
|
+
metadata: {
|
|
3095
|
+
[x: string]: any;
|
|
3096
|
+
};
|
|
3097
|
+
image?: {
|
|
3098
|
+
fileId: string;
|
|
3099
|
+
originalWidth: number;
|
|
3100
|
+
originalHeight: number;
|
|
3101
|
+
variants: {
|
|
3102
|
+
[x: string]: {
|
|
3103
|
+
path: string;
|
|
3104
|
+
publicPath: string;
|
|
3105
|
+
width: number;
|
|
3106
|
+
height: number;
|
|
3107
|
+
size: number;
|
|
3108
|
+
format: string;
|
|
3109
|
+
};
|
|
3110
|
+
};
|
|
3111
|
+
processingStatus: "completed" | "failed";
|
|
3112
|
+
processingError: string | null;
|
|
3113
|
+
format: string;
|
|
3114
|
+
quality: number;
|
|
3115
|
+
exifStripped: boolean;
|
|
3116
|
+
createdAt: Date;
|
|
3117
|
+
updatedAt: Date;
|
|
3118
|
+
} | undefined;
|
|
3119
|
+
createdAt: Date;
|
|
3120
|
+
updatedAt: Date;
|
|
3121
|
+
} | undefined;
|
|
3122
|
+
bannerFile?: {
|
|
3123
|
+
id: string;
|
|
3124
|
+
projectId: string;
|
|
3125
|
+
userId: string | null;
|
|
3126
|
+
entityId: string | null;
|
|
3127
|
+
commentId: string | null;
|
|
3128
|
+
spaceId: string | null;
|
|
3129
|
+
type: "image" | "video" | "document" | "other";
|
|
3130
|
+
originalPath: string;
|
|
3131
|
+
originalSize: number;
|
|
3132
|
+
originalMimeType: string;
|
|
3133
|
+
position: number;
|
|
3134
|
+
metadata: {
|
|
3135
|
+
[x: string]: any;
|
|
3136
|
+
};
|
|
3137
|
+
image?: {
|
|
3138
|
+
fileId: string;
|
|
3139
|
+
originalWidth: number;
|
|
3140
|
+
originalHeight: number;
|
|
3141
|
+
variants: {
|
|
3142
|
+
[x: string]: {
|
|
3143
|
+
path: string;
|
|
3144
|
+
publicPath: string;
|
|
3145
|
+
width: number;
|
|
3146
|
+
height: number;
|
|
3147
|
+
size: number;
|
|
3148
|
+
format: string;
|
|
3149
|
+
};
|
|
3150
|
+
};
|
|
3151
|
+
processingStatus: "completed" | "failed";
|
|
3152
|
+
processingError: string | null;
|
|
3153
|
+
format: string;
|
|
3154
|
+
quality: number;
|
|
3155
|
+
exifStripped: boolean;
|
|
3156
|
+
createdAt: Date;
|
|
3157
|
+
updatedAt: Date;
|
|
3158
|
+
} | undefined;
|
|
3159
|
+
createdAt: Date;
|
|
3160
|
+
updatedAt: Date;
|
|
3161
|
+
} | undefined;
|
|
2282
3162
|
} | null | undefined;
|
|
2283
3163
|
user?: {
|
|
2284
3164
|
id: string;
|
|
@@ -2344,11 +3224,11 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2344
3224
|
format: string;
|
|
2345
3225
|
quality: number;
|
|
2346
3226
|
exifStripped: boolean;
|
|
2347
|
-
createdAt:
|
|
2348
|
-
updatedAt:
|
|
3227
|
+
createdAt: Date;
|
|
3228
|
+
updatedAt: Date;
|
|
2349
3229
|
} | undefined;
|
|
2350
|
-
createdAt:
|
|
2351
|
-
updatedAt:
|
|
3230
|
+
createdAt: Date;
|
|
3231
|
+
updatedAt: Date;
|
|
2352
3232
|
}[] | undefined;
|
|
2353
3233
|
keywords: string[];
|
|
2354
3234
|
upvotes: string[];
|
|
@@ -2476,8 +3356,8 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2476
3356
|
slug: string | null;
|
|
2477
3357
|
name: string;
|
|
2478
3358
|
description: string | null;
|
|
2479
|
-
|
|
2480
|
-
|
|
3359
|
+
avatarFileId: string | null;
|
|
3360
|
+
bannerFileId: string | null;
|
|
2481
3361
|
userId: string;
|
|
2482
3362
|
readingPermission: import("../..").ReadingPermission;
|
|
2483
3363
|
postingPermission: import("../..").PostingPermission;
|
|
@@ -2493,6 +3373,86 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2493
3373
|
membersCount: number;
|
|
2494
3374
|
childSpacesCount: number;
|
|
2495
3375
|
isMember?: boolean | undefined;
|
|
3376
|
+
avatarFile?: {
|
|
3377
|
+
id: string;
|
|
3378
|
+
projectId: string;
|
|
3379
|
+
userId: string | null;
|
|
3380
|
+
entityId: string | null;
|
|
3381
|
+
commentId: string | null;
|
|
3382
|
+
spaceId: string | null;
|
|
3383
|
+
type: "image" | "video" | "document" | "other";
|
|
3384
|
+
originalPath: string;
|
|
3385
|
+
originalSize: number;
|
|
3386
|
+
originalMimeType: string;
|
|
3387
|
+
position: number;
|
|
3388
|
+
metadata: {
|
|
3389
|
+
[x: string]: any;
|
|
3390
|
+
};
|
|
3391
|
+
image?: {
|
|
3392
|
+
fileId: string;
|
|
3393
|
+
originalWidth: number;
|
|
3394
|
+
originalHeight: number;
|
|
3395
|
+
variants: {
|
|
3396
|
+
[x: string]: {
|
|
3397
|
+
path: string;
|
|
3398
|
+
publicPath: string;
|
|
3399
|
+
width: number;
|
|
3400
|
+
height: number;
|
|
3401
|
+
size: number;
|
|
3402
|
+
format: string;
|
|
3403
|
+
};
|
|
3404
|
+
};
|
|
3405
|
+
processingStatus: "completed" | "failed";
|
|
3406
|
+
processingError: string | null;
|
|
3407
|
+
format: string;
|
|
3408
|
+
quality: number;
|
|
3409
|
+
exifStripped: boolean;
|
|
3410
|
+
createdAt: Date;
|
|
3411
|
+
updatedAt: Date;
|
|
3412
|
+
} | undefined;
|
|
3413
|
+
createdAt: Date;
|
|
3414
|
+
updatedAt: Date;
|
|
3415
|
+
} | undefined;
|
|
3416
|
+
bannerFile?: {
|
|
3417
|
+
id: string;
|
|
3418
|
+
projectId: string;
|
|
3419
|
+
userId: string | null;
|
|
3420
|
+
entityId: string | null;
|
|
3421
|
+
commentId: string | null;
|
|
3422
|
+
spaceId: string | null;
|
|
3423
|
+
type: "image" | "video" | "document" | "other";
|
|
3424
|
+
originalPath: string;
|
|
3425
|
+
originalSize: number;
|
|
3426
|
+
originalMimeType: string;
|
|
3427
|
+
position: number;
|
|
3428
|
+
metadata: {
|
|
3429
|
+
[x: string]: any;
|
|
3430
|
+
};
|
|
3431
|
+
image?: {
|
|
3432
|
+
fileId: string;
|
|
3433
|
+
originalWidth: number;
|
|
3434
|
+
originalHeight: number;
|
|
3435
|
+
variants: {
|
|
3436
|
+
[x: string]: {
|
|
3437
|
+
path: string;
|
|
3438
|
+
publicPath: string;
|
|
3439
|
+
width: number;
|
|
3440
|
+
height: number;
|
|
3441
|
+
size: number;
|
|
3442
|
+
format: string;
|
|
3443
|
+
};
|
|
3444
|
+
};
|
|
3445
|
+
processingStatus: "completed" | "failed";
|
|
3446
|
+
processingError: string | null;
|
|
3447
|
+
format: string;
|
|
3448
|
+
quality: number;
|
|
3449
|
+
exifStripped: boolean;
|
|
3450
|
+
createdAt: Date;
|
|
3451
|
+
updatedAt: Date;
|
|
3452
|
+
} | undefined;
|
|
3453
|
+
createdAt: Date;
|
|
3454
|
+
updatedAt: Date;
|
|
3455
|
+
} | undefined;
|
|
2496
3456
|
} | null | undefined;
|
|
2497
3457
|
user?: {
|
|
2498
3458
|
id: string;
|
|
@@ -2558,11 +3518,11 @@ export declare const entityListsSlice: import("@reduxjs/toolkit").Slice<EntityLi
|
|
|
2558
3518
|
format: string;
|
|
2559
3519
|
quality: number;
|
|
2560
3520
|
exifStripped: boolean;
|
|
2561
|
-
createdAt:
|
|
2562
|
-
updatedAt:
|
|
3521
|
+
createdAt: Date;
|
|
3522
|
+
updatedAt: Date;
|
|
2563
3523
|
} | undefined;
|
|
2564
|
-
createdAt:
|
|
2565
|
-
updatedAt:
|
|
3524
|
+
createdAt: Date;
|
|
3525
|
+
updatedAt: Date;
|
|
2566
3526
|
}[] | undefined;
|
|
2567
3527
|
keywords: string[];
|
|
2568
3528
|
upvotes: string[];
|