@amityco/ts-sdk 7.3.0 → 7.3.1-0d19ad9.0
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/.env +26 -26
- package/.eslintrc.json +2 -1
- package/dist/@types/core/payload.d.ts +21 -1
- package/dist/@types/core/payload.d.ts.map +1 -1
- package/dist/@types/domains/content.d.ts +12 -0
- package/dist/@types/domains/content.d.ts.map +1 -1
- package/dist/@types/domains/file.d.ts +1 -20
- package/dist/@types/domains/file.d.ts.map +1 -1
- package/dist/@types/domains/post.d.ts +4 -0
- package/dist/@types/domains/post.d.ts.map +1 -1
- package/dist/commentRepository/api/flagComment.d.ts +3 -2
- package/dist/commentRepository/api/flagComment.d.ts.map +1 -1
- package/dist/fileRepository/api/index.d.ts +1 -0
- package/dist/fileRepository/api/index.d.ts.map +1 -1
- package/dist/fileRepository/api/updateAltText.d.ts +17 -0
- package/dist/fileRepository/api/updateAltText.d.ts.map +1 -0
- package/dist/fileRepository/api/uploadImage.d.ts +2 -1
- package/dist/fileRepository/api/uploadImage.d.ts.map +1 -1
- package/dist/index.cjs.js +128 -13
- package/dist/index.esm.js +129 -14
- package/dist/index.umd.js +4 -4
- package/dist/messageRepository/api/flagMessage.d.ts.map +1 -1
- package/dist/postRepository/api/flagPost.d.ts +3 -2
- package/dist/postRepository/api/flagPost.d.ts.map +1 -1
- package/dist/utils/linkedObject/postLinkedObject.d.ts.map +1 -1
- package/dist/utils/postTypePredicate.d.ts +4 -0
- package/dist/utils/postTypePredicate.d.ts.map +1 -0
- package/package.json +1 -1
- package/src/@types/core/payload.ts +23 -1
- package/src/@types/domains/content.ts +16 -0
- package/src/@types/domains/file.ts +1 -21
- package/src/@types/domains/post.ts +4 -0
- package/src/commentRepository/api/flagComment.ts +20 -3
- package/src/fileRepository/api/index.ts +1 -0
- package/src/fileRepository/api/updateAltText.ts +39 -0
- package/src/fileRepository/api/uploadImage.ts +22 -3
- package/src/messageRepository/api/flagMessage.ts +2 -4
- package/src/postRepository/api/flagPost.ts +19 -3
- package/src/utils/linkedObject/postLinkedObject.ts +29 -0
- package/src/utils/postTypePredicate.ts +27 -0
package/dist/index.esm.js
CHANGED
|
@@ -65,7 +65,19 @@ const ContentFeedType = Object.freeze({
|
|
|
65
65
|
CHAT: 'chat',
|
|
66
66
|
POST: 'post',
|
|
67
67
|
MESSAGE: 'message',
|
|
68
|
-
});
|
|
68
|
+
});
|
|
69
|
+
var ContentFlagReasonEnum;
|
|
70
|
+
(function (ContentFlagReasonEnum) {
|
|
71
|
+
ContentFlagReasonEnum["CommunityGuidelines"] = "Against community guidelines";
|
|
72
|
+
ContentFlagReasonEnum["HarassmentOrBullying"] = "Harassment or bullying";
|
|
73
|
+
ContentFlagReasonEnum["SelfHarmOrSuicide"] = "Self-harm or suicide";
|
|
74
|
+
ContentFlagReasonEnum["ViolenceOrThreateningContent"] = "Violence or threatening content";
|
|
75
|
+
ContentFlagReasonEnum["SellingRestrictedItems"] = "Selling and promoting restricted items";
|
|
76
|
+
ContentFlagReasonEnum["SexualContentOrNudity"] = "Sexual message or nudity";
|
|
77
|
+
ContentFlagReasonEnum["SpamOrScams"] = "Spam or scams";
|
|
78
|
+
ContentFlagReasonEnum["FalseInformation"] = "False information or misinformation";
|
|
79
|
+
ContentFlagReasonEnum["Others"] = "Others";
|
|
80
|
+
})(ContentFlagReasonEnum || (ContentFlagReasonEnum = {}));
|
|
69
81
|
|
|
70
82
|
const MessageContentType = Object.freeze({
|
|
71
83
|
TEXT: 'text',
|
|
@@ -21626,6 +21638,26 @@ const commentLinkedObject = (comment) => {
|
|
|
21626
21638
|
} });
|
|
21627
21639
|
};
|
|
21628
21640
|
|
|
21641
|
+
function isAmityImagePost(post) {
|
|
21642
|
+
return !!(post.data &&
|
|
21643
|
+
typeof post.data !== 'string' &&
|
|
21644
|
+
'fileId' in post.data &&
|
|
21645
|
+
post.dataType === 'image');
|
|
21646
|
+
}
|
|
21647
|
+
function isAmityFilePost(post) {
|
|
21648
|
+
return !!(post.data &&
|
|
21649
|
+
typeof post.data !== 'string' &&
|
|
21650
|
+
'fileId' in post.data &&
|
|
21651
|
+
post.dataType === 'file');
|
|
21652
|
+
}
|
|
21653
|
+
function isAmityVideoPost(post) {
|
|
21654
|
+
return !!(post.data &&
|
|
21655
|
+
typeof post.data !== 'string' &&
|
|
21656
|
+
'videoFileId' in post.data &&
|
|
21657
|
+
'thumbnailFileId' in post.data &&
|
|
21658
|
+
post.dataType === 'video');
|
|
21659
|
+
}
|
|
21660
|
+
|
|
21629
21661
|
const postLinkedObject = (post) => {
|
|
21630
21662
|
return Object.assign(Object.assign({}, post), { analytics: {
|
|
21631
21663
|
markAsViewed: () => {
|
|
@@ -21654,6 +21686,30 @@ const postLinkedObject = (post) => {
|
|
|
21654
21686
|
if (!(cacheData === null || cacheData === void 0 ? void 0 : cacheData.data))
|
|
21655
21687
|
return;
|
|
21656
21688
|
return userLinkedObject(cacheData.data);
|
|
21689
|
+
},
|
|
21690
|
+
getImageInfo() {
|
|
21691
|
+
var _a, _b;
|
|
21692
|
+
return isAmityImagePost(post)
|
|
21693
|
+
? (_b = pullFromCache(['file', 'get', (_a = post === null || post === void 0 ? void 0 : post.data) === null || _a === void 0 ? void 0 : _a.fileId])) === null || _b === void 0 ? void 0 : _b.data
|
|
21694
|
+
: undefined;
|
|
21695
|
+
},
|
|
21696
|
+
getVideoInfo() {
|
|
21697
|
+
var _a, _b, _c;
|
|
21698
|
+
return isAmityVideoPost(post)
|
|
21699
|
+
? (_c = pullFromCache(['file', 'get', (_b = (_a = post === null || post === void 0 ? void 0 : post.data) === null || _a === void 0 ? void 0 : _a.videoFileId) === null || _b === void 0 ? void 0 : _b.original])) === null || _c === void 0 ? void 0 : _c.data
|
|
21700
|
+
: undefined;
|
|
21701
|
+
},
|
|
21702
|
+
getVideoThumbnailInfo() {
|
|
21703
|
+
var _a, _b;
|
|
21704
|
+
return isAmityVideoPost(post)
|
|
21705
|
+
? (_b = pullFromCache(['file', 'get', (_a = post === null || post === void 0 ? void 0 : post.data) === null || _a === void 0 ? void 0 : _a.thumbnailFileId])) === null || _b === void 0 ? void 0 : _b.data
|
|
21706
|
+
: undefined;
|
|
21707
|
+
},
|
|
21708
|
+
getFileInfo() {
|
|
21709
|
+
var _a, _b;
|
|
21710
|
+
return isAmityFilePost(post)
|
|
21711
|
+
? (_b = pullFromCache(['file', 'get', (_a = post === null || post === void 0 ? void 0 : post.data) === null || _a === void 0 ? void 0 : _a.fileId])) === null || _b === void 0 ? void 0 : _b.data
|
|
21712
|
+
: undefined;
|
|
21657
21713
|
} });
|
|
21658
21714
|
};
|
|
21659
21715
|
|
|
@@ -28693,20 +28749,33 @@ const uploadVideo = async (formData, feedType, onProgress) => {
|
|
|
28693
28749
|
*
|
|
28694
28750
|
* @param formData The data necessary to create a new {@link Amity.File<'image'>}
|
|
28695
28751
|
* @param onProgress The callback to track the upload progress
|
|
28752
|
+
* @param altText The alt text for the image
|
|
28696
28753
|
* @returns The newly created {@link Amity.File<'image'>}
|
|
28697
28754
|
*
|
|
28698
28755
|
* @category File API
|
|
28699
28756
|
* @async
|
|
28700
28757
|
*/
|
|
28701
|
-
const uploadImage = async (formData, onProgress) => {
|
|
28758
|
+
const uploadImage = async (formData, onProgress, altText) => {
|
|
28702
28759
|
const client = getActiveClient();
|
|
28703
28760
|
client.log('file/uploadImage', formData);
|
|
28704
28761
|
const files = formData.getAll('files');
|
|
28705
|
-
if (
|
|
28706
|
-
|
|
28762
|
+
if (files === null || files === void 0 ? void 0 : files.length) {
|
|
28763
|
+
console.warn('Deprecation Warning: `files` is deprecated, please use `file` instead.');
|
|
28764
|
+
formData.append('preferredFilename', files[0].name);
|
|
28765
|
+
}
|
|
28766
|
+
else {
|
|
28767
|
+
const file = formData.get('file');
|
|
28768
|
+
if (!file) {
|
|
28769
|
+
throw new Error('The formData object must have a `file` or `files` key');
|
|
28770
|
+
}
|
|
28771
|
+
formData.append('preferredFilename', file.name);
|
|
28772
|
+
// alt is for single image
|
|
28773
|
+
if (altText) {
|
|
28774
|
+
formData.append('altText', altText);
|
|
28775
|
+
}
|
|
28776
|
+
}
|
|
28707
28777
|
const accessType = GlobalFileAccessType$1.getInstance().getFileAccessType();
|
|
28708
28778
|
formData.append('accessType', accessType);
|
|
28709
|
-
formData.append('preferredFilename', files[0].name);
|
|
28710
28779
|
const headers = 'getHeaders' in formData
|
|
28711
28780
|
? formData.getHeaders()
|
|
28712
28781
|
: { 'content-type': 'multipart/form-data' };
|
|
@@ -28728,6 +28797,37 @@ const uploadImage = async (formData, onProgress) => {
|
|
|
28728
28797
|
};
|
|
28729
28798
|
/* end_public_function */
|
|
28730
28799
|
|
|
28800
|
+
/* begin_public_function
|
|
28801
|
+
id: file.update.altText
|
|
28802
|
+
*/
|
|
28803
|
+
/**
|
|
28804
|
+
* ```js
|
|
28805
|
+
* import { FileRepository } from '@amityco/ts-sdk'
|
|
28806
|
+
* const updated = await FileRepository.updateAltText(fileId, altText)
|
|
28807
|
+
* ```
|
|
28808
|
+
*
|
|
28809
|
+
* Updates an {@link Amity.File<'image'>['altText']}.
|
|
28810
|
+
*
|
|
28811
|
+
* @param fileId The ID of the {@link Amity.File<'image'>} to edit
|
|
28812
|
+
* @param altText The new alt text for the {@link Amity.File<'image'>}
|
|
28813
|
+
* @returns the updated {@link Amity.File<'image'>} object
|
|
28814
|
+
*
|
|
28815
|
+
* @category File API
|
|
28816
|
+
* @async
|
|
28817
|
+
*/
|
|
28818
|
+
const updateAltText = async (fileId, altText) => {
|
|
28819
|
+
const client = getActiveClient();
|
|
28820
|
+
client.log('file/updateAltText', altText);
|
|
28821
|
+
const { data } = await client.http.put(`/api/v3/files/${fileId}`, {
|
|
28822
|
+
altText,
|
|
28823
|
+
});
|
|
28824
|
+
const cachedAt = client.cache && Date.now();
|
|
28825
|
+
if (client.cache)
|
|
28826
|
+
ingestInCache({ files: [data] }, { cachedAt });
|
|
28827
|
+
return true;
|
|
28828
|
+
};
|
|
28829
|
+
/* end_public_function */
|
|
28830
|
+
|
|
28731
28831
|
var index$j = /*#__PURE__*/Object.freeze({
|
|
28732
28832
|
__proto__: null,
|
|
28733
28833
|
getFile: getFile,
|
|
@@ -28735,7 +28835,8 @@ var index$j = /*#__PURE__*/Object.freeze({
|
|
|
28735
28835
|
deleteFile: deleteFile,
|
|
28736
28836
|
fileUrlWithSize: fileUrlWithSize,
|
|
28737
28837
|
uploadVideo: uploadVideo,
|
|
28738
|
-
uploadImage: uploadImage
|
|
28838
|
+
uploadImage: uploadImage,
|
|
28839
|
+
updateAltText: updateAltText
|
|
28739
28840
|
});
|
|
28740
28841
|
|
|
28741
28842
|
/**
|
|
@@ -37657,19 +37758,26 @@ const declinePost = async (postId) => {
|
|
|
37657
37758
|
/**
|
|
37658
37759
|
* ```js
|
|
37659
37760
|
* import { PostRepository } from '@amityco/ts-sdk'
|
|
37660
|
-
* const flagged = await PostRepository.flagPost(postId)
|
|
37761
|
+
* const flagged = await PostRepository.flagPost(postId, reason)
|
|
37661
37762
|
* ```
|
|
37662
37763
|
*
|
|
37663
37764
|
* @param postId of the post to flag
|
|
37765
|
+
* @param reason the reason to flag the post
|
|
37664
37766
|
* @returns a boolean
|
|
37665
37767
|
*
|
|
37666
37768
|
* @category Post API
|
|
37667
37769
|
* @async
|
|
37668
37770
|
* */
|
|
37669
|
-
const flagPost = async (postId) => {
|
|
37771
|
+
const flagPost = async (postId, reason) => {
|
|
37670
37772
|
const client = getActiveClient();
|
|
37671
37773
|
client.log('post/flagPost', postId);
|
|
37672
|
-
const
|
|
37774
|
+
const isPredefinedReason = reason &&
|
|
37775
|
+
Object.entries(ContentFlagReasonEnum).some(([key, value]) => key !== ContentFlagReasonEnum.Others && value === reason);
|
|
37776
|
+
const body = {
|
|
37777
|
+
reason: reason && isPredefinedReason ? reason : ContentFlagReasonEnum.Others,
|
|
37778
|
+
detail: reason && !isPredefinedReason ? reason : '',
|
|
37779
|
+
};
|
|
37780
|
+
const { data: payload } = await client.http.post(`/api/v3/posts/${encodeURIComponent(postId)}/flag`, body);
|
|
37673
37781
|
if (client.cache) {
|
|
37674
37782
|
ingestInCache(prepareMembershipPayload(payload, 'communityUsers'));
|
|
37675
37783
|
}
|
|
@@ -38132,19 +38240,26 @@ const hardDeleteComment = async (commentId) => {
|
|
|
38132
38240
|
/**
|
|
38133
38241
|
* ```js
|
|
38134
38242
|
* import { CommentRepository } from '@amityco/ts-sdk'
|
|
38135
|
-
* const flagged = await CommentRepository.flagComment(
|
|
38243
|
+
* const flagged = await CommentRepository.flagComment(commentId, reason)
|
|
38136
38244
|
* ```
|
|
38137
38245
|
*
|
|
38138
38246
|
* @param commentId The ID of the comment to flag
|
|
38247
|
+
* @param reason the reason to flag the comment
|
|
38139
38248
|
* @returns the created report result
|
|
38140
38249
|
*
|
|
38141
38250
|
* @category Comment API
|
|
38142
38251
|
* @async
|
|
38143
38252
|
* */
|
|
38144
|
-
const flagComment = async (commentId) => {
|
|
38253
|
+
const flagComment = async (commentId, reason) => {
|
|
38145
38254
|
const client = getActiveClient();
|
|
38146
38255
|
client.log('comment/flagComment', commentId);
|
|
38147
|
-
const
|
|
38256
|
+
const isPredefinedReason = reason &&
|
|
38257
|
+
Object.entries(ContentFlagReasonEnum).some(([key, value]) => key !== ContentFlagReasonEnum.Others && value === reason);
|
|
38258
|
+
const body = {
|
|
38259
|
+
reason: reason && isPredefinedReason ? reason : ContentFlagReasonEnum.Others,
|
|
38260
|
+
detail: reason && !isPredefinedReason ? reason : '',
|
|
38261
|
+
};
|
|
38262
|
+
const { data: payload } = await client.http.post(`/api/v3/comments/${encodeURIComponent(commentId)}/flag`, body);
|
|
38148
38263
|
if (client.cache) {
|
|
38149
38264
|
ingestInCache(payload);
|
|
38150
38265
|
}
|
|
@@ -40438,7 +40553,7 @@ var index$4 = /*#__PURE__*/Object.freeze({
|
|
|
40438
40553
|
getPoll: getPoll
|
|
40439
40554
|
});
|
|
40440
40555
|
|
|
40441
|
-
const privateKey = "-----BEGIN PRIVATE KEY-----\
|
|
40556
|
+
const privateKey = "-----BEGIN PRIVATE KEY-----\nMIIEvwIBADANBgkqhkiG9w0BAQEFAASCBKkwggSlAgEAAoIBAQDAARz+hmBgi8pJ\nQb8LeY41gtHhk+ACMwRfhsn7GqpqRQNG2qU0755mzZuVDUqjQMGSo8THJB7O+OJs\nflbZRkFXlFoFOVNw1UpNOgwEQZ6wB9oRwzepTJAfF1sVhm/o/ixvXh1zDFNDy6yZ\npXyiiJHUVxqyjllZhxnwdvjoVtDs6hW6awG09bB9nh/TTejlUKXoAgzqVwu/1QMu\nUVViET495elEe19aUarEy+oL2iKeXCEvqda/pWNBdbieFyJvvZ08HN8dPuT88wq2\njZLEAth1vrwQ2IAa4ktaLcBQdLJgIkrbDvAiVZ8lQAjS/bq5vXQikTGvoPlC5bbn\nvuOM/3eLAgMBAAECggEAVZ+peHAghq2QVj71nX5lxsNCKaCyYwixSJBpfouTt7Rz\nE6PpzMOXFi1W1o+I22jDakuSM2SOQKqI/u0QefB0r0O/KVk5NrZHXk0mkrdYtxOp\nUgaGyf8UvmjB+8VqHrNKyZdk9qtmbnNj01kTTcAtmE4H39zPR7eR/8Rul94vaZbs\nwCnKJS3mLT3JxyGug6lxanveKkjG+CKC1nJQYWaxCJxaFSzbwXQPvDhB+TvrIbee\npd5v4EAyEJohpr+T9oDGGJkb/KARBZCtwLyB976PKJwwBA8MRVL1i5QwawuMiMq5\nUtnOnbGKtCeFzaLbNU0Qi8bqyims84EQxC6DOu1fkQKBgQDdvsoBsEhsOXV7hlIJ\naEd0eSJZVkdqimxH8uGoMM2FeNaOrcB6yBXqTSP0R3OIyf8eaY6yjRvP30ZNXcll\n/gD3O1Mu6YmWQdt1W2WA6pKOsUuPXasf0pdOF7IiFZKlSabz5YHXFqwVuqm8loaj\nsXel3YWqPVdHiankE7tz+3ssnQKBgQDdqi4TNdD1MdEpihx19jr0QjUiXW3939FK\nqp30HESPEGDGQzXdmJgif9HhZb+cJSuWaHEbjgBrYahvgCF+y6LbEpOD+D/dmT+s\nDEAQaR84sah6dokwPjV8fjBSrcVFjCS+doxv0d3p/9OUEeyUhFrY03nxtIEYkLIE\n/Zvn37b4RwKBgQCLENVFe9XfsaVhQ5r9dV2iyTlmh7qgMZG5CbTFs12hQGhm8McO\n+Z7s41YSJCFr/yq1WwP4LJDtrBw99vyQr1zRsG35tNLp3gGRNzGQSQyC2uQFVHw2\np+7mNewsfhUK/gbrXNsyFnDz6635rPlhfbII3sWuP2wWXFqkxE9CbMwR7QKBgQC6\nawDMzxmo2/iYArrkyevSuEuPVxvFwpF1RgAI6C0QVCnPE38dmdN4UB7mfHekje4W\nVEercMURidPp0cxZolCYBQtilUjAyL0vqC3In1/Ogjq6oy3FEMxSop1pKxMY5j+Q\nnoqFD+6deLUrddeNH7J3X4LSr4dSbX4JjG+tlgt+yQKBgQCuwTL4hA6KqeInQ0Ta\n9VQX5Qr8hFlqJz1gpymi/k63tW/Ob8yedbg3WWNWyShwRMFYyY9S81ITFWM95uL6\nvF3x9rmRjwElJw9PMwVu6dmf/CO0Z1wzXSp2VVD12gbrUD/0/d7MUoJ9LgC8X8f/\nn0txLHYGHbx+nf95+JUg6lV3hg==\n-----END PRIVATE KEY-----";
|
|
40442
40557
|
/*
|
|
40443
40558
|
* The crypto algorithm used for importing key and signing string
|
|
40444
40559
|
*/
|
|
@@ -42408,4 +42523,4 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
42408
42523
|
onNotificationTraySeenUpdated: onNotificationTraySeenUpdated
|
|
42409
42524
|
});
|
|
42410
42525
|
|
|
42411
|
-
export { API_REGIONS, index$1 as AdRepository, index$9 as CategoryRepository, index$d as ChannelRepository, index$m as Client, index$7 as CommentRepository, CommunityPostSettingMaps, CommunityPostSettings, index$a as CommunityRepository, ContentFeedType, DefaultCommunityPostSetting, index$8 as FeedRepository, FileAccessTypeEnum, index$j as FileRepository, FileType, index$3 as LiveStreamPlayer, MessageContentType, index$h as MessageRepository, index$4 as PollRepository, PostContentType, index$6 as PostRepository, index$i as ReactionRepository, index$2 as StoryRepository, index$5 as StreamRepository, index$g as SubChannelRepository, SubscriptionLevels, index$k as UserRepository, VERSION, VideoResolution, VideoSize, VideoTranscodingStatus, backupCache, createQuery, createReport, createUserToken, deleteReport, disableCache, dropFromCache, enableCache, filterByChannelMembership, filterByCommunityMembership, filterByFeedType, filterByPostDataTypes, filterByPropEquality, filterByPropInclusion, filterByPropIntersection, filterBySearchTerm, filterByStringComparePartially, getChannelTopic, getCommentTopic, getCommunityStoriesTopic, getCommunityTopic, getLiveStreamTopic, getMarkedMessageTopic, getMarkerUserFeedTopic, getMessageTopic, getMyFollowersTopic, getMyFollowingsTopic, getNetworkTopic, getPostTopic, getRole, getSmartFeedChannelTopic, getSmartFeedMessageTopic, getSmartFeedSubChannelTopic, getStoryTopic, getSubChannelTopic, getUserTopic, isAfterBefore, isAfterBeforeRaw, isCachable, isFetcher, isFresh, isLocal, isMutator, isOffline, isPaged, isReportedByMe, isSkip, mergeInCache, index as notificationTray, onChannelMarkerFetched, onFeedMarkerFetched, onFeedMarkerUpdated, onMessageMarked, onMessageMarkerFetched, onSubChannelMarkerFetched, onSubChannelMarkerUpdated, onUserMarkerFetched, onUserMarkerFetchedLegacy, pullFromCache, pushToCache, queryCache, queryOptions, queryRoles, restoreCache, runQuery, sortByChannelSegment, sortByDisplayName, sortByFirstCreated, sortByFirstUpdated, sortByLastActivity, sortByLastCreated, sortByLastUpdated, sortByLocalSortingDate, sortByName, sortBySegmentNumber, subscribeTopic, toPage, toPageRaw, toToken, upsertInCache, wipeCache };
|
|
42526
|
+
export { API_REGIONS, index$1 as AdRepository, index$9 as CategoryRepository, index$d as ChannelRepository, index$m as Client, index$7 as CommentRepository, CommunityPostSettingMaps, CommunityPostSettings, index$a as CommunityRepository, ContentFeedType, ContentFlagReasonEnum, DefaultCommunityPostSetting, index$8 as FeedRepository, FileAccessTypeEnum, index$j as FileRepository, FileType, index$3 as LiveStreamPlayer, MessageContentType, index$h as MessageRepository, index$4 as PollRepository, PostContentType, index$6 as PostRepository, index$i as ReactionRepository, index$2 as StoryRepository, index$5 as StreamRepository, index$g as SubChannelRepository, SubscriptionLevels, index$k as UserRepository, VERSION, VideoResolution, VideoSize, VideoTranscodingStatus, backupCache, createQuery, createReport, createUserToken, deleteReport, disableCache, dropFromCache, enableCache, filterByChannelMembership, filterByCommunityMembership, filterByFeedType, filterByPostDataTypes, filterByPropEquality, filterByPropInclusion, filterByPropIntersection, filterBySearchTerm, filterByStringComparePartially, getChannelTopic, getCommentTopic, getCommunityStoriesTopic, getCommunityTopic, getLiveStreamTopic, getMarkedMessageTopic, getMarkerUserFeedTopic, getMessageTopic, getMyFollowersTopic, getMyFollowingsTopic, getNetworkTopic, getPostTopic, getRole, getSmartFeedChannelTopic, getSmartFeedMessageTopic, getSmartFeedSubChannelTopic, getStoryTopic, getSubChannelTopic, getUserTopic, isAfterBefore, isAfterBeforeRaw, isCachable, isFetcher, isFresh, isLocal, isMutator, isOffline, isPaged, isReportedByMe, isSkip, mergeInCache, index as notificationTray, onChannelMarkerFetched, onFeedMarkerFetched, onFeedMarkerUpdated, onMessageMarked, onMessageMarkerFetched, onSubChannelMarkerFetched, onSubChannelMarkerUpdated, onUserMarkerFetched, onUserMarkerFetchedLegacy, pullFromCache, pushToCache, queryCache, queryOptions, queryRoles, restoreCache, runQuery, sortByChannelSegment, sortByDisplayName, sortByFirstCreated, sortByFirstUpdated, sortByLastActivity, sortByLastCreated, sortByLastUpdated, sortByLocalSortingDate, sortByName, sortBySegmentNumber, subscribeTopic, toPage, toPageRaw, toToken, upsertInCache, wipeCache };
|