@wildix/stream-client 0.0.6 → 0.0.7
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.
|
@@ -48,12 +48,10 @@ declare const CreateSectionCommand_base: {
|
|
|
48
48
|
* // name: "STRING_VALUE", // required
|
|
49
49
|
* // type: "system" || "custom", // required
|
|
50
50
|
* // channelCount: Number("int"), // required
|
|
51
|
-
* //
|
|
52
|
-
* //
|
|
53
|
-
* //
|
|
54
|
-
* //
|
|
55
|
-
* // unreadMentionCount: Number("int"), // required
|
|
56
|
-
* // },
|
|
51
|
+
* // unmutedUnreadChannelCount: Number("int"), // required
|
|
52
|
+
* // unmutedUnreadMessageCount: Number("int"), // required
|
|
53
|
+
* // mutedUnreadMessageCount: Number("int"), // required
|
|
54
|
+
* // unreadMentionCount: Number("int"), // required
|
|
57
55
|
* // },
|
|
58
56
|
* // };
|
|
59
57
|
*
|
|
@@ -127,12 +127,10 @@ declare const GetInboxCommand_base: {
|
|
|
127
127
|
* // name: "STRING_VALUE", // required
|
|
128
128
|
* // type: "system" || "custom", // required
|
|
129
129
|
* // channelCount: Number("int"), // required
|
|
130
|
-
* //
|
|
131
|
-
* //
|
|
132
|
-
* //
|
|
133
|
-
* //
|
|
134
|
-
* // unreadMentionCount: Number("int"), // required
|
|
135
|
-
* // },
|
|
130
|
+
* // unmutedUnreadChannelCount: Number("int"), // required
|
|
131
|
+
* // unmutedUnreadMessageCount: Number("int"), // required
|
|
132
|
+
* // mutedUnreadMessageCount: Number("int"), // required
|
|
133
|
+
* // unreadMentionCount: Number("int"), // required
|
|
136
134
|
* // },
|
|
137
135
|
* // ],
|
|
138
136
|
* // };
|
|
@@ -48,12 +48,10 @@ declare const RenameSectionCommand_base: {
|
|
|
48
48
|
* // name: "STRING_VALUE", // required
|
|
49
49
|
* // type: "system" || "custom", // required
|
|
50
50
|
* // channelCount: Number("int"), // required
|
|
51
|
-
* //
|
|
52
|
-
* //
|
|
53
|
-
* //
|
|
54
|
-
* //
|
|
55
|
-
* // unreadMentionCount: Number("int"), // required
|
|
56
|
-
* // },
|
|
51
|
+
* // unmutedUnreadChannelCount: Number("int"), // required
|
|
52
|
+
* // unmutedUnreadMessageCount: Number("int"), // required
|
|
53
|
+
* // mutedUnreadMessageCount: Number("int"), // required
|
|
54
|
+
* // unreadMentionCount: Number("int"), // required
|
|
57
55
|
* // },
|
|
58
56
|
* // };
|
|
59
57
|
*
|
|
@@ -1235,32 +1235,6 @@ export declare const SectionType: {
|
|
|
1235
1235
|
* @public
|
|
1236
1236
|
*/
|
|
1237
1237
|
export type SectionType = typeof SectionType[keyof typeof SectionType];
|
|
1238
|
-
/**
|
|
1239
|
-
* Aggregated unread counters for an inbox section.
|
|
1240
|
-
* @public
|
|
1241
|
-
*/
|
|
1242
|
-
export interface SectionUnreadCounters {
|
|
1243
|
-
/**
|
|
1244
|
-
* Unmuted channels with at least one unread message.
|
|
1245
|
-
* @public
|
|
1246
|
-
*/
|
|
1247
|
-
unmutedUnreadChannelCount: number;
|
|
1248
|
-
/**
|
|
1249
|
-
* Total unread messages across unmuted channels.
|
|
1250
|
-
* @public
|
|
1251
|
-
*/
|
|
1252
|
-
unmutedUnreadMessageCount: number;
|
|
1253
|
-
/**
|
|
1254
|
-
* Total unread messages across muted channels.
|
|
1255
|
-
* @public
|
|
1256
|
-
*/
|
|
1257
|
-
mutedUnreadMessageCount: number;
|
|
1258
|
-
/**
|
|
1259
|
-
* Unread direct mentions of the current user.
|
|
1260
|
-
* @public
|
|
1261
|
-
*/
|
|
1262
|
-
unreadMentionCount: number;
|
|
1263
|
-
}
|
|
1264
1238
|
/**
|
|
1265
1239
|
* Inbox section with metadata, channel count, and unread counters.
|
|
1266
1240
|
* @public
|
|
@@ -1287,10 +1261,25 @@ export interface Section {
|
|
|
1287
1261
|
*/
|
|
1288
1262
|
channelCount: number;
|
|
1289
1263
|
/**
|
|
1290
|
-
*
|
|
1264
|
+
* Unmuted channels with at least one unread message.
|
|
1265
|
+
* @public
|
|
1266
|
+
*/
|
|
1267
|
+
unmutedUnreadChannelCount: number;
|
|
1268
|
+
/**
|
|
1269
|
+
* Total unread messages across unmuted channels.
|
|
1270
|
+
* @public
|
|
1271
|
+
*/
|
|
1272
|
+
unmutedUnreadMessageCount: number;
|
|
1273
|
+
/**
|
|
1274
|
+
* Total unread messages across muted channels.
|
|
1275
|
+
* @public
|
|
1276
|
+
*/
|
|
1277
|
+
mutedUnreadMessageCount: number;
|
|
1278
|
+
/**
|
|
1279
|
+
* Unread direct mentions of the current user.
|
|
1291
1280
|
* @public
|
|
1292
1281
|
*/
|
|
1293
|
-
|
|
1282
|
+
unreadMentionCount: number;
|
|
1294
1283
|
}
|
|
1295
1284
|
/**
|
|
1296
1285
|
* @public
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/stream-client",
|
|
3
3
|
"description": "@wildix/stream-client client",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.7",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|