mezon-js 2.7.24 → 2.7.26
Sign up to get free protection for your applications and to get access to all the features.
- package/api.gen.ts +121 -0
- package/client.ts +36 -0
- package/dist/api.gen.d.ts +17 -0
- package/dist/client.d.ts +6 -1
- package/dist/mezon-js.cjs.js +7 -0
- package/dist/mezon-js.esm.mjs +114 -0
- package/package.json +1 -1
package/api.gen.ts
CHANGED
@@ -228,6 +228,10 @@ export interface ApiChannelDescription {
|
|
228
228
|
last_seen_message?: ApiChannelMessageHeader;
|
229
229
|
//
|
230
230
|
last_sent_message?: ApiChannelMessageHeader;
|
231
|
+
//
|
232
|
+
meeting_code?: string;
|
233
|
+
//
|
234
|
+
meeting_uri?: string;
|
231
235
|
//The parrent channel this message belongs to.
|
232
236
|
parrent_id?: string;
|
233
237
|
//The channel type.
|
@@ -616,6 +620,15 @@ export interface ApiLinkSteamRequest {
|
|
616
620
|
sync?: boolean;
|
617
621
|
}
|
618
622
|
|
623
|
+
export interface ApiNotifiReactMessage {
|
624
|
+
//
|
625
|
+
channel_id?: string;
|
626
|
+
//
|
627
|
+
id?: string;
|
628
|
+
//
|
629
|
+
user_id?: string;
|
630
|
+
}
|
631
|
+
|
619
632
|
/** */
|
620
633
|
export interface ApiMessageAttachment {
|
621
634
|
//
|
@@ -704,6 +717,12 @@ export interface ApiNotification {
|
|
704
717
|
subject?: string;
|
705
718
|
}
|
706
719
|
|
720
|
+
/** */
|
721
|
+
export interface ApiNotificationChannel {
|
722
|
+
//
|
723
|
+
channel_id?: string;
|
724
|
+
}
|
725
|
+
|
707
726
|
/** */
|
708
727
|
export interface ApiNotificationChannelCategoySetting {
|
709
728
|
//
|
@@ -4116,6 +4135,108 @@ return Promise.race([
|
|
4116
4135
|
]);
|
4117
4136
|
}
|
4118
4137
|
|
4138
|
+
/** */
|
4139
|
+
deleteNotiReactMessage(bearerToken: string,
|
4140
|
+
channelId?:string,
|
4141
|
+
options: any = {}): Promise<any> {
|
4142
|
+
|
4143
|
+
const urlPath = "/v2/notifireactmessage/delete";
|
4144
|
+
const queryParams = new Map<string, any>();
|
4145
|
+
queryParams.set("channel_id", channelId);
|
4146
|
+
|
4147
|
+
let bodyJson : string = "";
|
4148
|
+
|
4149
|
+
const fullUrl = this.buildFullUrl(this.basePath, urlPath, queryParams);
|
4150
|
+
const fetchOptions = buildFetchOptions("DELETE", options, bodyJson);
|
4151
|
+
if (bearerToken) {
|
4152
|
+
fetchOptions.headers["Authorization"] = "Bearer " + bearerToken;
|
4153
|
+
}
|
4154
|
+
|
4155
|
+
return Promise.race([
|
4156
|
+
fetch(fullUrl, fetchOptions).then((response) => {
|
4157
|
+
if (response.status == 204) {
|
4158
|
+
return response;
|
4159
|
+
} else if (response.status >= 200 && response.status < 300) {
|
4160
|
+
return response.json();
|
4161
|
+
} else {
|
4162
|
+
throw response;
|
4163
|
+
}
|
4164
|
+
}),
|
4165
|
+
new Promise((_, reject) =>
|
4166
|
+
setTimeout(reject, this.timeoutMs, "Request timed out.")
|
4167
|
+
),
|
4168
|
+
]);
|
4169
|
+
}
|
4170
|
+
|
4171
|
+
/** */
|
4172
|
+
getNotificationReactMessage(bearerToken: string,
|
4173
|
+
channelId?:string,
|
4174
|
+
options: any = {}): Promise<ApiNotifiReactMessage> {
|
4175
|
+
|
4176
|
+
const urlPath = "/v2/notifireactmessage/get";
|
4177
|
+
const queryParams = new Map<string, any>();
|
4178
|
+
queryParams.set("channel_id", channelId);
|
4179
|
+
|
4180
|
+
let bodyJson : string = "";
|
4181
|
+
|
4182
|
+
const fullUrl = this.buildFullUrl(this.basePath, urlPath, queryParams);
|
4183
|
+
const fetchOptions = buildFetchOptions("GET", options, bodyJson);
|
4184
|
+
if (bearerToken) {
|
4185
|
+
fetchOptions.headers["Authorization"] = "Bearer " + bearerToken;
|
4186
|
+
}
|
4187
|
+
|
4188
|
+
return Promise.race([
|
4189
|
+
fetch(fullUrl, fetchOptions).then((response) => {
|
4190
|
+
if (response.status == 204) {
|
4191
|
+
return response;
|
4192
|
+
} else if (response.status >= 200 && response.status < 300) {
|
4193
|
+
return response.json();
|
4194
|
+
} else {
|
4195
|
+
throw response;
|
4196
|
+
}
|
4197
|
+
}),
|
4198
|
+
new Promise((_, reject) =>
|
4199
|
+
setTimeout(reject, this.timeoutMs, "Request timed out.")
|
4200
|
+
),
|
4201
|
+
]);
|
4202
|
+
}
|
4203
|
+
|
4204
|
+
/** */
|
4205
|
+
setNotificationReactMessage(bearerToken: string,
|
4206
|
+
body:ApiNotificationChannel,
|
4207
|
+
options: any = {}): Promise<any> {
|
4208
|
+
|
4209
|
+
if (body === null || body === undefined) {
|
4210
|
+
throw new Error("'body' is a required parameter but is null or undefined.");
|
4211
|
+
}
|
4212
|
+
const urlPath = "/v2/notifireactmessage/set";
|
4213
|
+
const queryParams = new Map<string, any>();
|
4214
|
+
|
4215
|
+
let bodyJson : string = "";
|
4216
|
+
bodyJson = JSON.stringify(body || {});
|
4217
|
+
|
4218
|
+
const fullUrl = this.buildFullUrl(this.basePath, urlPath, queryParams);
|
4219
|
+
const fetchOptions = buildFetchOptions("POST", options, bodyJson);
|
4220
|
+
if (bearerToken) {
|
4221
|
+
fetchOptions.headers["Authorization"] = "Bearer " + bearerToken;
|
4222
|
+
}
|
4223
|
+
|
4224
|
+
return Promise.race([
|
4225
|
+
fetch(fullUrl, fetchOptions).then((response) => {
|
4226
|
+
if (response.status == 204) {
|
4227
|
+
return response;
|
4228
|
+
} else if (response.status >= 200 && response.status < 300) {
|
4229
|
+
return response.json();
|
4230
|
+
} else {
|
4231
|
+
throw response;
|
4232
|
+
}
|
4233
|
+
}),
|
4234
|
+
new Promise((_, reject) =>
|
4235
|
+
setTimeout(reject, this.timeoutMs, "Request timed out.")
|
4236
|
+
),
|
4237
|
+
]);
|
4238
|
+
}
|
4239
|
+
|
4119
4240
|
/** Get permission list */
|
4120
4241
|
getListPermission(bearerToken: string,
|
4121
4242
|
options: any = {}): Promise<ApiPermissionList> {
|
package/client.ts
CHANGED
@@ -84,6 +84,7 @@ import {
|
|
84
84
|
ApiSetDefaultNotificationRequest,
|
85
85
|
ApiNotificationUserChannel,
|
86
86
|
ApiSetNotificationRequest,
|
87
|
+
ApiNotifiReactMessage,
|
87
88
|
} from "./api.gen";
|
88
89
|
|
89
90
|
import { Session } from "./session";
|
@@ -2053,6 +2054,41 @@ async deleteNotificationChannel(session: Session, channel_id: string): Promise<b
|
|
2053
2054
|
return response !== undefined;
|
2054
2055
|
});
|
2055
2056
|
}
|
2057
|
+
|
2058
|
+
/** */
|
2059
|
+
async setNotificationReactMessage(session: Session, channel_id: string): Promise<boolean> {
|
2060
|
+
if (this.autoRefreshSession && session.refresh_token &&
|
2061
|
+
session.isexpired((Date.now() + this.expiredTimespanMs)/1000)) {
|
2062
|
+
await this.sessionRefresh(session);
|
2063
|
+
}
|
2064
|
+
|
2065
|
+
return this.apiClient.setNotificationReactMessage(session.token, {channel_id}).then((response: any) => {
|
2066
|
+
return response !== undefined;
|
2067
|
+
});
|
2068
|
+
}
|
2069
|
+
|
2070
|
+
/** */
|
2071
|
+
async getNotificationReactMessage(session: Session, channelId: string): Promise<ApiNotifiReactMessage> {
|
2072
|
+
if (this.autoRefreshSession && session.refresh_token &&
|
2073
|
+
session.isexpired((Date.now() + this.expiredTimespanMs)/1000)) {
|
2074
|
+
await this.sessionRefresh(session);
|
2075
|
+
}
|
2076
|
+
|
2077
|
+
return this.apiClient.getNotificationReactMessage(session.token, channelId).then((response: ApiNotifiReactMessage) => {
|
2078
|
+
return Promise.resolve(response);
|
2079
|
+
});
|
2080
|
+
}
|
2081
|
+
//** */
|
2082
|
+
async deleteNotiReactMessage(session: Session, channel_id: string): Promise<boolean> {
|
2083
|
+
if (this.autoRefreshSession && session.refresh_token &&
|
2084
|
+
session.isexpired((Date.now() + this.expiredTimespanMs)/1000)) {
|
2085
|
+
await this.sessionRefresh(session);
|
2086
|
+
}
|
2087
|
+
|
2088
|
+
return this.apiClient.deleteNotiReactMessage(session.token, channel_id).then((response: any) => {
|
2089
|
+
return response !== undefined;
|
2090
|
+
});
|
2091
|
+
}
|
2056
2092
|
};
|
2057
2093
|
|
2058
2094
|
|
package/dist/api.gen.d.ts
CHANGED
@@ -131,6 +131,8 @@ export interface ApiChannelDescription {
|
|
131
131
|
creator_id?: string;
|
132
132
|
last_seen_message?: ApiChannelMessageHeader;
|
133
133
|
last_sent_message?: ApiChannelMessageHeader;
|
134
|
+
meeting_code?: string;
|
135
|
+
meeting_uri?: string;
|
134
136
|
parrent_id?: string;
|
135
137
|
type?: number;
|
136
138
|
user_id?: Array<string>;
|
@@ -353,6 +355,11 @@ export interface ApiLinkSteamRequest {
|
|
353
355
|
account?: ApiAccountSteam;
|
354
356
|
sync?: boolean;
|
355
357
|
}
|
358
|
+
export interface ApiNotifiReactMessage {
|
359
|
+
channel_id?: string;
|
360
|
+
id?: string;
|
361
|
+
user_id?: string;
|
362
|
+
}
|
356
363
|
/** */
|
357
364
|
export interface ApiMessageAttachment {
|
358
365
|
filename?: string;
|
@@ -404,6 +411,10 @@ export interface ApiNotification {
|
|
404
411
|
subject?: string;
|
405
412
|
}
|
406
413
|
/** */
|
414
|
+
export interface ApiNotificationChannel {
|
415
|
+
channel_id?: string;
|
416
|
+
}
|
417
|
+
/** */
|
407
418
|
export interface ApiNotificationChannelCategoySetting {
|
408
419
|
channel_category_label?: string;
|
409
420
|
channel_category_title?: string;
|
@@ -809,6 +820,12 @@ export declare class MezonApi {
|
|
809
820
|
getNotificationClanSetting(bearerToken: string, clanId?: string, options?: any): Promise<ApiNotificationSetting>;
|
810
821
|
/** notification category, channel selected */
|
811
822
|
getChannelCategoryNotiSettingsList(bearerToken: string, clanId?: string, options?: any): Promise<ApiNotificationChannelCategoySettingsList>;
|
823
|
+
/** */
|
824
|
+
deleteNotiReactMessage(bearerToken: string, channelId?: string, options?: any): Promise<any>;
|
825
|
+
/** */
|
826
|
+
getNotificationReactMessage(bearerToken: string, channelId?: string, options?: any): Promise<ApiNotifiReactMessage>;
|
827
|
+
/** */
|
828
|
+
setNotificationReactMessage(bearerToken: string, body: ApiNotificationChannel, options?: any): Promise<any>;
|
812
829
|
/** Get permission list */
|
813
830
|
getListPermission(bearerToken: string, options?: any): Promise<ApiPermissionList>;
|
814
831
|
/** */
|
package/dist/client.d.ts
CHANGED
@@ -13,7 +13,7 @@
|
|
13
13
|
* See the License for the specific language governing permissions and
|
14
14
|
* limitations under the License.
|
15
15
|
*/
|
16
|
-
import { ApiAccount, ApiAccountCustom, ApiAccountDevice, ApiAccountEmail, ApiAccountFacebook, ApiAccountFacebookInstantGame, ApiAccountGoogle, ApiAccountGameCenter, ApiAccountSteam, ApiChannelDescList, ApiChannelDescription, ApiCreateChannelDescRequest, ApiDeleteRoleRequest, ApiClanDescList, ApiCreateClanDescRequest, ApiClanDesc, ApiCategoryDesc, ApiCategoryDescList, ApiRoleList, ApiPermissionList, ApiRoleUserList, ApiRole, ApiCreateRoleRequest, ApiAddRoleChannelDescRequest, ApiCreateCategoryDescRequest, ApiUpdateCategoryDescRequest, ApiDeleteStorageObjectsRequest, ApiEvent, ApiReadStorageObjectsRequest, ApiStorageObjectAcks, ApiUpdateAccountRequest, ApiAccountApple, ApiLinkSteamRequest, ApiClanDescProfile, ApiClanProfile, ApiChannelUserList, ApiClanUserList, ApiLinkInviteUserRequest, ApiUpdateEventRequest, ApiLinkInviteUser, ApiInviteUserRes, ApiUploadAttachmentRequest, ApiUploadAttachment, ApiMessageReaction, ApiMessageMention, ApiMessageAttachment, ApiMessageRef, ApiChannelMessageHeader, ApiVoiceChannelUserList, ApiChannelAttachmentList, ApiCreateEventRequest, ApiEventManagement, ApiEventList, ApiDeleteEventRequest, ApiNotificationChannelCategoySettingsList, ApiNotificationSetting, ApiSetDefaultNotificationRequest, ApiNotificationUserChannel, ApiSetNotificationRequest } from "./api.gen";
|
16
|
+
import { ApiAccount, ApiAccountCustom, ApiAccountDevice, ApiAccountEmail, ApiAccountFacebook, ApiAccountFacebookInstantGame, ApiAccountGoogle, ApiAccountGameCenter, ApiAccountSteam, ApiChannelDescList, ApiChannelDescription, ApiCreateChannelDescRequest, ApiDeleteRoleRequest, ApiClanDescList, ApiCreateClanDescRequest, ApiClanDesc, ApiCategoryDesc, ApiCategoryDescList, ApiRoleList, ApiPermissionList, ApiRoleUserList, ApiRole, ApiCreateRoleRequest, ApiAddRoleChannelDescRequest, ApiCreateCategoryDescRequest, ApiUpdateCategoryDescRequest, ApiDeleteStorageObjectsRequest, ApiEvent, ApiReadStorageObjectsRequest, ApiStorageObjectAcks, ApiUpdateAccountRequest, ApiAccountApple, ApiLinkSteamRequest, ApiClanDescProfile, ApiClanProfile, ApiChannelUserList, ApiClanUserList, ApiLinkInviteUserRequest, ApiUpdateEventRequest, ApiLinkInviteUser, ApiInviteUserRes, ApiUploadAttachmentRequest, ApiUploadAttachment, ApiMessageReaction, ApiMessageMention, ApiMessageAttachment, ApiMessageRef, ApiChannelMessageHeader, ApiVoiceChannelUserList, ApiChannelAttachmentList, ApiCreateEventRequest, ApiEventManagement, ApiEventList, ApiDeleteEventRequest, ApiNotificationChannelCategoySettingsList, ApiNotificationSetting, ApiSetDefaultNotificationRequest, ApiNotificationUserChannel, ApiSetNotificationRequest, ApiNotifiReactMessage } from "./api.gen";
|
17
17
|
import { Session } from "./session";
|
18
18
|
import { Socket } from "./socket";
|
19
19
|
import { WebSocketAdapter } from "./web_socket_adapter";
|
@@ -556,4 +556,9 @@ export declare class Client {
|
|
556
556
|
deleteNotificationCategory(session: Session, category_id: string): Promise<boolean>;
|
557
557
|
getChannelCategoryNotiSettingsList(session: Session, clan_id: string): Promise<ApiNotificationChannelCategoySettingsList>;
|
558
558
|
deleteNotificationChannel(session: Session, channel_id: string): Promise<boolean>;
|
559
|
+
/** */
|
560
|
+
setNotificationReactMessage(session: Session, channel_id: string): Promise<boolean>;
|
561
|
+
/** */
|
562
|
+
getNotificationReactMessage(session: Session, channelId: string): Promise<ApiNotifiReactMessage>;
|
563
|
+
deleteNotiReactMessage(session: Session, channel_id: string): Promise<boolean>;
|
559
564
|
}
|
package/dist/mezon-js.cjs.js
CHANGED
@@ -58,6 +58,7 @@ __export(mezon_js_exports, {
|
|
58
58
|
ChannelType: () => ChannelType,
|
59
59
|
Client: () => Client,
|
60
60
|
DefaultSocket: () => DefaultSocket,
|
61
|
+
NotificationType: () => NotificationType,
|
61
62
|
Session: () => Session,
|
62
63
|
WebSocketAdapterText: () => WebSocketAdapterText
|
63
64
|
});
|
@@ -4398,6 +4399,12 @@ var ChannelStreamMode = /* @__PURE__ */ ((ChannelStreamMode2) => {
|
|
4398
4399
|
ChannelStreamMode2[ChannelStreamMode2["STREAM_MODE_DM"] = 4] = "STREAM_MODE_DM";
|
4399
4400
|
return ChannelStreamMode2;
|
4400
4401
|
})(ChannelStreamMode || {});
|
4402
|
+
var NotificationType = /* @__PURE__ */ ((NotificationType2) => {
|
4403
|
+
NotificationType2["ALL_MESSAGE"] = "ALL";
|
4404
|
+
NotificationType2["NOTHING_MESSAGE"] = "NOTHING";
|
4405
|
+
NotificationType2["MENTION_MESSAGE"] = "MENTION";
|
4406
|
+
return NotificationType2;
|
4407
|
+
})(NotificationType || {});
|
4401
4408
|
var Client = class {
|
4402
4409
|
constructor(serverkey = DEFAULT_SERVER_KEY, host = DEFAULT_HOST, port = DEFAULT_PORT, useSSL = false, timeout = DEFAULT_TIMEOUT_MS, autoRefreshSession = true) {
|
4403
4410
|
this.serverkey = serverkey;
|
package/dist/mezon-js.esm.mjs
CHANGED
@@ -2984,6 +2984,87 @@ var MezonApi = class {
|
|
2984
2984
|
)
|
2985
2985
|
]);
|
2986
2986
|
}
|
2987
|
+
/** */
|
2988
|
+
deleteNotiReactMessage(bearerToken, channelId, options = {}) {
|
2989
|
+
const urlPath = "/v2/notifireactmessage/delete";
|
2990
|
+
const queryParams = /* @__PURE__ */ new Map();
|
2991
|
+
queryParams.set("channel_id", channelId);
|
2992
|
+
let bodyJson = "";
|
2993
|
+
const fullUrl = this.buildFullUrl(this.basePath, urlPath, queryParams);
|
2994
|
+
const fetchOptions = buildFetchOptions("DELETE", options, bodyJson);
|
2995
|
+
if (bearerToken) {
|
2996
|
+
fetchOptions.headers["Authorization"] = "Bearer " + bearerToken;
|
2997
|
+
}
|
2998
|
+
return Promise.race([
|
2999
|
+
fetch(fullUrl, fetchOptions).then((response) => {
|
3000
|
+
if (response.status == 204) {
|
3001
|
+
return response;
|
3002
|
+
} else if (response.status >= 200 && response.status < 300) {
|
3003
|
+
return response.json();
|
3004
|
+
} else {
|
3005
|
+
throw response;
|
3006
|
+
}
|
3007
|
+
}),
|
3008
|
+
new Promise(
|
3009
|
+
(_, reject) => setTimeout(reject, this.timeoutMs, "Request timed out.")
|
3010
|
+
)
|
3011
|
+
]);
|
3012
|
+
}
|
3013
|
+
/** */
|
3014
|
+
getNotificationReactMessage(bearerToken, channelId, options = {}) {
|
3015
|
+
const urlPath = "/v2/notifireactmessage/get";
|
3016
|
+
const queryParams = /* @__PURE__ */ new Map();
|
3017
|
+
queryParams.set("channel_id", channelId);
|
3018
|
+
let bodyJson = "";
|
3019
|
+
const fullUrl = this.buildFullUrl(this.basePath, urlPath, queryParams);
|
3020
|
+
const fetchOptions = buildFetchOptions("GET", options, bodyJson);
|
3021
|
+
if (bearerToken) {
|
3022
|
+
fetchOptions.headers["Authorization"] = "Bearer " + bearerToken;
|
3023
|
+
}
|
3024
|
+
return Promise.race([
|
3025
|
+
fetch(fullUrl, fetchOptions).then((response) => {
|
3026
|
+
if (response.status == 204) {
|
3027
|
+
return response;
|
3028
|
+
} else if (response.status >= 200 && response.status < 300) {
|
3029
|
+
return response.json();
|
3030
|
+
} else {
|
3031
|
+
throw response;
|
3032
|
+
}
|
3033
|
+
}),
|
3034
|
+
new Promise(
|
3035
|
+
(_, reject) => setTimeout(reject, this.timeoutMs, "Request timed out.")
|
3036
|
+
)
|
3037
|
+
]);
|
3038
|
+
}
|
3039
|
+
/** */
|
3040
|
+
setNotificationReactMessage(bearerToken, body, options = {}) {
|
3041
|
+
if (body === null || body === void 0) {
|
3042
|
+
throw new Error("'body' is a required parameter but is null or undefined.");
|
3043
|
+
}
|
3044
|
+
const urlPath = "/v2/notifireactmessage/set";
|
3045
|
+
const queryParams = /* @__PURE__ */ new Map();
|
3046
|
+
let bodyJson = "";
|
3047
|
+
bodyJson = JSON.stringify(body || {});
|
3048
|
+
const fullUrl = this.buildFullUrl(this.basePath, urlPath, queryParams);
|
3049
|
+
const fetchOptions = buildFetchOptions("POST", options, bodyJson);
|
3050
|
+
if (bearerToken) {
|
3051
|
+
fetchOptions.headers["Authorization"] = "Bearer " + bearerToken;
|
3052
|
+
}
|
3053
|
+
return Promise.race([
|
3054
|
+
fetch(fullUrl, fetchOptions).then((response) => {
|
3055
|
+
if (response.status == 204) {
|
3056
|
+
return response;
|
3057
|
+
} else if (response.status >= 200 && response.status < 300) {
|
3058
|
+
return response.json();
|
3059
|
+
} else {
|
3060
|
+
throw response;
|
3061
|
+
}
|
3062
|
+
}),
|
3063
|
+
new Promise(
|
3064
|
+
(_, reject) => setTimeout(reject, this.timeoutMs, "Request timed out.")
|
3065
|
+
)
|
3066
|
+
]);
|
3067
|
+
}
|
2987
3068
|
/** Get permission list */
|
2988
3069
|
getListPermission(bearerToken, options = {}) {
|
2989
3070
|
const urlPath = "/v2/permissions";
|
@@ -5795,6 +5876,39 @@ var Client = class {
|
|
5795
5876
|
});
|
5796
5877
|
});
|
5797
5878
|
}
|
5879
|
+
/** */
|
5880
|
+
setNotificationReactMessage(session, channel_id) {
|
5881
|
+
return __async(this, null, function* () {
|
5882
|
+
if (this.autoRefreshSession && session.refresh_token && session.isexpired((Date.now() + this.expiredTimespanMs) / 1e3)) {
|
5883
|
+
yield this.sessionRefresh(session);
|
5884
|
+
}
|
5885
|
+
return this.apiClient.setNotificationReactMessage(session.token, { channel_id }).then((response) => {
|
5886
|
+
return response !== void 0;
|
5887
|
+
});
|
5888
|
+
});
|
5889
|
+
}
|
5890
|
+
/** */
|
5891
|
+
getNotificationReactMessage(session, channelId) {
|
5892
|
+
return __async(this, null, function* () {
|
5893
|
+
if (this.autoRefreshSession && session.refresh_token && session.isexpired((Date.now() + this.expiredTimespanMs) / 1e3)) {
|
5894
|
+
yield this.sessionRefresh(session);
|
5895
|
+
}
|
5896
|
+
return this.apiClient.getNotificationReactMessage(session.token, channelId).then((response) => {
|
5897
|
+
return Promise.resolve(response);
|
5898
|
+
});
|
5899
|
+
});
|
5900
|
+
}
|
5901
|
+
//** */
|
5902
|
+
deleteNotiReactMessage(session, channel_id) {
|
5903
|
+
return __async(this, null, function* () {
|
5904
|
+
if (this.autoRefreshSession && session.refresh_token && session.isexpired((Date.now() + this.expiredTimespanMs) / 1e3)) {
|
5905
|
+
yield this.sessionRefresh(session);
|
5906
|
+
}
|
5907
|
+
return this.apiClient.deleteNotiReactMessage(session.token, channel_id).then((response) => {
|
5908
|
+
return response !== void 0;
|
5909
|
+
});
|
5910
|
+
});
|
5911
|
+
}
|
5798
5912
|
};
|
5799
5913
|
export {
|
5800
5914
|
ChannelStreamMode,
|