mezon-js 2.8.23 → 2.8.25
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/api.gen.ts +3 -256
- package/client.ts +2 -119
- package/dist/api.gen.d.ts +1 -27
- package/dist/api1.gen.d.ts +1157 -0
- package/dist/client.d.ts +1 -10
- package/dist/mezon-js.cjs.js +18 -283
- package/dist/mezon-js.esm.mjs +18 -283
- package/dist/socket.d.ts +36 -2
- package/package.json +1 -1
- package/socket.ts +71 -3
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,
|
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, ApiEvent, 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, ApiSetMuteNotificationRequest, ApiSearchMessageRequest, ApiSearchMessageResponse, ApiPinMessageRequest, ApiPinMessagesList, ApiDeleteChannelDescRequest, ApiChangeChannelPrivateRequest, ApiClanEmojiCreateRequest, MezonUpdateClanEmojiByIdBody, ApiWebhookCreateRequest, ApiWebhookListResponse, MezonUpdateWebhookByIdBody, ApiWebhookGenerateResponse, ApiCheckDuplicateClanNameResponse, ApiClanStickerAddRequest, MezonUpdateClanStickerByIdBody, MezonChangeChannelCategoryBody, ApiPermissionRoleChannelList, ApiUpdateRoleChannelRequest } from "./api.gen";
|
17
17
|
import { Session } from "./session";
|
18
18
|
import { Socket } from "./socket";
|
19
19
|
import { WebSocketAdapter } from "./web_socket_adapter";
|
@@ -420,8 +420,6 @@ export declare class Client {
|
|
420
420
|
deleteCategoryDesc(session: Session, creatorId: string): Promise<boolean>;
|
421
421
|
/** Delete one or more notifications */
|
422
422
|
deleteNotifications(session: Session, ids?: Array<string>): Promise<boolean>;
|
423
|
-
/** Delete one or more storage objects */
|
424
|
-
deleteStorageObjects(session: Session, request: ApiDeleteStorageObjectsRequest): Promise<boolean>;
|
425
423
|
/** Delete a role by ID. */
|
426
424
|
deleteRole(session: Session, roleId: string): Promise<boolean>;
|
427
425
|
/** Delete a event by ID. */
|
@@ -498,10 +496,6 @@ export declare class Client {
|
|
498
496
|
listFriends(session: Session, state?: number, limit?: number, cursor?: string): Promise<Friends>;
|
499
497
|
/** Fetch list of notifications. */
|
500
498
|
listNotifications(session: Session, clanId: string, limit?: number, cacheableCursor?: string): Promise<NotificationList>;
|
501
|
-
/** List storage objects. */
|
502
|
-
listStorageObjects(session: Session, collection: string, userId?: string, limit?: number, cursor?: string): Promise<StorageObjectList>;
|
503
|
-
/** Fetch storage objects. */
|
504
|
-
readStorageObjects(session: Session, request: ApiReadStorageObjectsRequest): Promise<StorageObjects>;
|
505
499
|
/** Execute an RPC function on the server. */
|
506
500
|
rpc(session: Session, basicAuthUsername: string, basicAuthPassword: string, id: string, input: object): Promise<RpcResponse>;
|
507
501
|
/** Execute an RPC function on the server. */
|
@@ -551,8 +545,6 @@ export declare class Client {
|
|
551
545
|
getPermissionOfUserInTheClan(session: Session, clanId: string): Promise<ApiPermissionList>;
|
552
546
|
/** invite user */
|
553
547
|
inviteUser(session: Session, inviteId: string): Promise<ApiInviteUserRes>;
|
554
|
-
/** Write storage objects. */
|
555
|
-
writeStorageObjects(session: Session, objects: Array<WriteStorageObject>): Promise<ApiStorageObjectAcks>;
|
556
548
|
/** Set default notification clan*/
|
557
549
|
setNotificationClan(session: Session, request: ApiSetDefaultNotificationRequest): Promise<boolean>;
|
558
550
|
/** get default notification clan */
|
@@ -582,7 +574,6 @@ export declare class Client {
|
|
582
574
|
/** */
|
583
575
|
createPinMessage(session: Session, request: ApiPinMessageRequest): Promise<boolean>;
|
584
576
|
pinMessagesList(session: Session, channelId: string): Promise<ApiPinMessagesList>;
|
585
|
-
hashtagDmVoiceList(session: Session, userId: Array<string>, limit?: number): Promise<ApiHashtagDmVoiceList>;
|
586
577
|
deletePinMessage(session: Session, message_id: string): Promise<boolean>;
|
587
578
|
/** create clan emoji */
|
588
579
|
createClanEmoji(session: Session, request: ApiClanEmojiCreateRequest): Promise<boolean>;
|
package/dist/mezon-js.cjs.js
CHANGED
@@ -2418,14 +2418,15 @@ var MezonApi = class {
|
|
2418
2418
|
]);
|
2419
2419
|
}
|
2420
2420
|
/** Delete a emoji by ID. */
|
2421
|
-
|
2421
|
+
deleteClanEmojiById(bearerToken, id, clanId, options = {}) {
|
2422
2422
|
if (id === null || id === void 0) {
|
2423
2423
|
throw new Error("'id' is a required parameter but is null or undefined.");
|
2424
2424
|
}
|
2425
2425
|
const urlPath = "/v2/emoji/{id}".replace("{id}", encodeURIComponent(String(id)));
|
2426
2426
|
const queryParams = /* @__PURE__ */ new Map();
|
2427
2427
|
queryParams.set("clan_id", clanId);
|
2428
|
-
|
2428
|
+
const body = { clan_id: clanId };
|
2429
|
+
let bodyJson = JSON.stringify(body || {});
|
2429
2430
|
const fullUrl = this.buildFullUrl(this.basePath, urlPath, queryParams);
|
2430
2431
|
const fetchOptions = buildFetchOptions("DELETE", options, bodyJson);
|
2431
2432
|
if (bearerToken) {
|
@@ -2877,33 +2878,6 @@ var MezonApi = class {
|
|
2877
2878
|
)
|
2878
2879
|
]);
|
2879
2880
|
}
|
2880
|
-
/** List channelvoices */
|
2881
|
-
hashtagDMVoiceList(bearerToken, userId, limit, options = {}) {
|
2882
|
-
const urlPath = "/v2/hashtagdmvoice";
|
2883
|
-
const queryParams = /* @__PURE__ */ new Map();
|
2884
|
-
queryParams.set("user_id", userId);
|
2885
|
-
queryParams.set("limit", limit);
|
2886
|
-
let bodyJson = "";
|
2887
|
-
const fullUrl = this.buildFullUrl(this.basePath, urlPath, queryParams);
|
2888
|
-
const fetchOptions = buildFetchOptions("GET", options, bodyJson);
|
2889
|
-
if (bearerToken) {
|
2890
|
-
fetchOptions.headers["Authorization"] = "Bearer " + bearerToken;
|
2891
|
-
}
|
2892
|
-
return Promise.race([
|
2893
|
-
fetch(fullUrl, fetchOptions).then((response) => {
|
2894
|
-
if (response.status == 204) {
|
2895
|
-
return response;
|
2896
|
-
} else if (response.status >= 200 && response.status < 300) {
|
2897
|
-
return response.json();
|
2898
|
-
} else {
|
2899
|
-
throw response;
|
2900
|
-
}
|
2901
|
-
}),
|
2902
|
-
new Promise(
|
2903
|
-
(_, reject) => setTimeout(reject, this.timeoutMs, "Request timed out.")
|
2904
|
-
)
|
2905
|
-
]);
|
2906
|
-
}
|
2907
2881
|
/** Add users to a channel. */
|
2908
2882
|
createLinkInviteUser(bearerToken, body, options = {}) {
|
2909
2883
|
if (body === null || body === void 0) {
|
@@ -4073,157 +4047,6 @@ var MezonApi = class {
|
|
4073
4047
|
)
|
4074
4048
|
]);
|
4075
4049
|
}
|
4076
|
-
/** Get storage objects. */
|
4077
|
-
readStorageObjects(bearerToken, body, options = {}) {
|
4078
|
-
if (body === null || body === void 0) {
|
4079
|
-
throw new Error("'body' is a required parameter but is null or undefined.");
|
4080
|
-
}
|
4081
|
-
const urlPath = "/v2/storage";
|
4082
|
-
const queryParams = /* @__PURE__ */ new Map();
|
4083
|
-
let bodyJson = "";
|
4084
|
-
bodyJson = JSON.stringify(body || {});
|
4085
|
-
const fullUrl = this.buildFullUrl(this.basePath, urlPath, queryParams);
|
4086
|
-
const fetchOptions = buildFetchOptions("POST", options, bodyJson);
|
4087
|
-
if (bearerToken) {
|
4088
|
-
fetchOptions.headers["Authorization"] = "Bearer " + bearerToken;
|
4089
|
-
}
|
4090
|
-
return Promise.race([
|
4091
|
-
fetch(fullUrl, fetchOptions).then((response) => {
|
4092
|
-
if (response.status == 204) {
|
4093
|
-
return response;
|
4094
|
-
} else if (response.status >= 200 && response.status < 300) {
|
4095
|
-
return response.json();
|
4096
|
-
} else {
|
4097
|
-
throw response;
|
4098
|
-
}
|
4099
|
-
}),
|
4100
|
-
new Promise(
|
4101
|
-
(_, reject) => setTimeout(reject, this.timeoutMs, "Request timed out.")
|
4102
|
-
)
|
4103
|
-
]);
|
4104
|
-
}
|
4105
|
-
/** Write objects into the storage engine. */
|
4106
|
-
writeStorageObjects(bearerToken, body, options = {}) {
|
4107
|
-
if (body === null || body === void 0) {
|
4108
|
-
throw new Error("'body' is a required parameter but is null or undefined.");
|
4109
|
-
}
|
4110
|
-
const urlPath = "/v2/storage";
|
4111
|
-
const queryParams = /* @__PURE__ */ new Map();
|
4112
|
-
let bodyJson = "";
|
4113
|
-
bodyJson = JSON.stringify(body || {});
|
4114
|
-
const fullUrl = this.buildFullUrl(this.basePath, urlPath, queryParams);
|
4115
|
-
const fetchOptions = buildFetchOptions("PUT", options, bodyJson);
|
4116
|
-
if (bearerToken) {
|
4117
|
-
fetchOptions.headers["Authorization"] = "Bearer " + bearerToken;
|
4118
|
-
}
|
4119
|
-
return Promise.race([
|
4120
|
-
fetch(fullUrl, fetchOptions).then((response) => {
|
4121
|
-
if (response.status == 204) {
|
4122
|
-
return response;
|
4123
|
-
} else if (response.status >= 200 && response.status < 300) {
|
4124
|
-
return response.json();
|
4125
|
-
} else {
|
4126
|
-
throw response;
|
4127
|
-
}
|
4128
|
-
}),
|
4129
|
-
new Promise(
|
4130
|
-
(_, reject) => setTimeout(reject, this.timeoutMs, "Request timed out.")
|
4131
|
-
)
|
4132
|
-
]);
|
4133
|
-
}
|
4134
|
-
/** Delete one or more objects by ID or username. */
|
4135
|
-
deleteStorageObjects(bearerToken, body, options = {}) {
|
4136
|
-
if (body === null || body === void 0) {
|
4137
|
-
throw new Error("'body' is a required parameter but is null or undefined.");
|
4138
|
-
}
|
4139
|
-
const urlPath = "/v2/storage/delete";
|
4140
|
-
const queryParams = /* @__PURE__ */ new Map();
|
4141
|
-
let bodyJson = "";
|
4142
|
-
bodyJson = JSON.stringify(body || {});
|
4143
|
-
const fullUrl = this.buildFullUrl(this.basePath, urlPath, queryParams);
|
4144
|
-
const fetchOptions = buildFetchOptions("PUT", options, bodyJson);
|
4145
|
-
if (bearerToken) {
|
4146
|
-
fetchOptions.headers["Authorization"] = "Bearer " + bearerToken;
|
4147
|
-
}
|
4148
|
-
return Promise.race([
|
4149
|
-
fetch(fullUrl, fetchOptions).then((response) => {
|
4150
|
-
if (response.status == 204) {
|
4151
|
-
return response;
|
4152
|
-
} else if (response.status >= 200 && response.status < 300) {
|
4153
|
-
return response.json();
|
4154
|
-
} else {
|
4155
|
-
throw response;
|
4156
|
-
}
|
4157
|
-
}),
|
4158
|
-
new Promise(
|
4159
|
-
(_, reject) => setTimeout(reject, this.timeoutMs, "Request timed out.")
|
4160
|
-
)
|
4161
|
-
]);
|
4162
|
-
}
|
4163
|
-
/** List publicly readable storage objects in a given collection. */
|
4164
|
-
listStorageObjects(bearerToken, collection, userId, limit, cursor, options = {}) {
|
4165
|
-
if (collection === null || collection === void 0) {
|
4166
|
-
throw new Error("'collection' is a required parameter but is null or undefined.");
|
4167
|
-
}
|
4168
|
-
const urlPath = "/v2/storage/{collection}".replace("{collection}", encodeURIComponent(String(collection)));
|
4169
|
-
const queryParams = /* @__PURE__ */ new Map();
|
4170
|
-
queryParams.set("user_id", userId);
|
4171
|
-
queryParams.set("limit", limit);
|
4172
|
-
queryParams.set("cursor", cursor);
|
4173
|
-
let bodyJson = "";
|
4174
|
-
const fullUrl = this.buildFullUrl(this.basePath, urlPath, queryParams);
|
4175
|
-
const fetchOptions = buildFetchOptions("GET", options, bodyJson);
|
4176
|
-
if (bearerToken) {
|
4177
|
-
fetchOptions.headers["Authorization"] = "Bearer " + bearerToken;
|
4178
|
-
}
|
4179
|
-
return Promise.race([
|
4180
|
-
fetch(fullUrl, fetchOptions).then((response) => {
|
4181
|
-
if (response.status == 204) {
|
4182
|
-
return response;
|
4183
|
-
} else if (response.status >= 200 && response.status < 300) {
|
4184
|
-
return response.json();
|
4185
|
-
} else {
|
4186
|
-
throw response;
|
4187
|
-
}
|
4188
|
-
}),
|
4189
|
-
new Promise(
|
4190
|
-
(_, reject) => setTimeout(reject, this.timeoutMs, "Request timed out.")
|
4191
|
-
)
|
4192
|
-
]);
|
4193
|
-
}
|
4194
|
-
/** List publicly readable storage objects in a given collection. */
|
4195
|
-
listStorageObjects2(bearerToken, collection, userId, limit, cursor, options = {}) {
|
4196
|
-
if (collection === null || collection === void 0) {
|
4197
|
-
throw new Error("'collection' is a required parameter but is null or undefined.");
|
4198
|
-
}
|
4199
|
-
if (userId === null || userId === void 0) {
|
4200
|
-
throw new Error("'userId' is a required parameter but is null or undefined.");
|
4201
|
-
}
|
4202
|
-
const urlPath = "/v2/storage/{collection}/{userId}".replace("{collection}", encodeURIComponent(String(collection))).replace("{userId}", encodeURIComponent(String(userId)));
|
4203
|
-
const queryParams = /* @__PURE__ */ new Map();
|
4204
|
-
queryParams.set("limit", limit);
|
4205
|
-
queryParams.set("cursor", cursor);
|
4206
|
-
let bodyJson = "";
|
4207
|
-
const fullUrl = this.buildFullUrl(this.basePath, urlPath, queryParams);
|
4208
|
-
const fetchOptions = buildFetchOptions("GET", options, bodyJson);
|
4209
|
-
if (bearerToken) {
|
4210
|
-
fetchOptions.headers["Authorization"] = "Bearer " + bearerToken;
|
4211
|
-
}
|
4212
|
-
return Promise.race([
|
4213
|
-
fetch(fullUrl, fetchOptions).then((response) => {
|
4214
|
-
if (response.status == 204) {
|
4215
|
-
return response;
|
4216
|
-
} else if (response.status >= 200 && response.status < 300) {
|
4217
|
-
return response.json();
|
4218
|
-
} else {
|
4219
|
-
throw response;
|
4220
|
-
}
|
4221
|
-
}),
|
4222
|
-
new Promise(
|
4223
|
-
(_, reject) => setTimeout(reject, this.timeoutMs, "Request timed out.")
|
4224
|
-
)
|
4225
|
-
]);
|
4226
|
-
}
|
4227
4050
|
/** Update fields in a given category. */
|
4228
4051
|
updateCategory(bearerToken, body, options = {}) {
|
4229
4052
|
if (body === null || body === void 0) {
|
@@ -5093,9 +4916,9 @@ var _DefaultSocket = class _DefaultSocket {
|
|
5093
4916
|
unfollowUsers(user_ids) {
|
5094
4917
|
return this.send({ status_unfollow: { user_ids } });
|
5095
4918
|
}
|
5096
|
-
updateChatMessage(clan_id, channel_id, mode, message_id, content, mentions) {
|
4919
|
+
updateChatMessage(clan_id, channel_id, mode, message_id, content, mentions, attachments) {
|
5097
4920
|
return __async(this, null, function* () {
|
5098
|
-
const response = yield this.send({ channel_message_update: { clan_id, channel_id, message_id, content, mentions, mode } });
|
4921
|
+
const response = yield this.send({ channel_message_update: { clan_id, channel_id, message_id, content, mentions, attachments, mode } });
|
5099
4922
|
return response.channel_message_ack;
|
5100
4923
|
});
|
5101
4924
|
}
|
@@ -5162,6 +4985,18 @@ var _DefaultSocket = class _DefaultSocket {
|
|
5162
4985
|
return response.emojis_listed_event;
|
5163
4986
|
});
|
5164
4987
|
}
|
4988
|
+
ListChannelByUserId() {
|
4989
|
+
return __async(this, null, function* () {
|
4990
|
+
const response = yield this.send({ channel_desc_list_event: {} });
|
4991
|
+
return response.channel_desc_list_event;
|
4992
|
+
});
|
4993
|
+
}
|
4994
|
+
hashtagDMList(user_id, limit) {
|
4995
|
+
return __async(this, null, function* () {
|
4996
|
+
const response = yield this.send({ hashtag_dm_list_event: { user_id, limit } });
|
4997
|
+
return response.hashtag_dm_list_event;
|
4998
|
+
});
|
4999
|
+
}
|
5165
5000
|
listClanStickersByClanId(clan_id) {
|
5166
5001
|
return __async(this, null, function* () {
|
5167
5002
|
const response = yield this.send({ sticker_listed_event: { clan_id } });
|
@@ -5546,17 +5381,6 @@ var Client = class {
|
|
5546
5381
|
});
|
5547
5382
|
});
|
5548
5383
|
}
|
5549
|
-
/** Delete one or more storage objects */
|
5550
|
-
deleteStorageObjects(session, request) {
|
5551
|
-
return __async(this, null, function* () {
|
5552
|
-
if (this.autoRefreshSession && session.refresh_token && session.isexpired((Date.now() + this.expiredTimespanMs) / 1e3)) {
|
5553
|
-
yield this.sessionRefresh(session);
|
5554
|
-
}
|
5555
|
-
return this.apiClient.deleteStorageObjects(session.token, request).then((response) => {
|
5556
|
-
return Promise.resolve(response != void 0);
|
5557
|
-
});
|
5558
|
-
});
|
5559
|
-
}
|
5560
5384
|
/** Delete a role by ID. */
|
5561
5385
|
deleteRole(session, roleId) {
|
5562
5386
|
return __async(this, null, function* () {
|
@@ -6248,65 +6072,6 @@ var Client = class {
|
|
6248
6072
|
});
|
6249
6073
|
});
|
6250
6074
|
}
|
6251
|
-
/** List storage objects. */
|
6252
|
-
listStorageObjects(session, collection, userId, limit, cursor) {
|
6253
|
-
return __async(this, null, function* () {
|
6254
|
-
if (this.autoRefreshSession && session.refresh_token && session.isexpired((Date.now() + this.expiredTimespanMs) / 1e3)) {
|
6255
|
-
yield this.sessionRefresh(session);
|
6256
|
-
}
|
6257
|
-
return this.apiClient.listStorageObjects(session.token, collection, userId, limit, cursor).then((response) => {
|
6258
|
-
var result = {
|
6259
|
-
objects: [],
|
6260
|
-
cursor: response.cursor
|
6261
|
-
};
|
6262
|
-
if (response.objects == null) {
|
6263
|
-
return Promise.resolve(result);
|
6264
|
-
}
|
6265
|
-
response.objects.forEach((o) => {
|
6266
|
-
result.objects.push({
|
6267
|
-
collection: o.collection,
|
6268
|
-
key: o.key,
|
6269
|
-
permission_read: o.permission_read ? Number(o.permission_read) : 0,
|
6270
|
-
permission_write: o.permission_write ? Number(o.permission_write) : 0,
|
6271
|
-
value: o.value ? JSON.parse(o.value) : void 0,
|
6272
|
-
version: o.version,
|
6273
|
-
user_id: o.user_id,
|
6274
|
-
create_time: o.create_time,
|
6275
|
-
update_time: o.update_time
|
6276
|
-
});
|
6277
|
-
});
|
6278
|
-
return Promise.resolve(result);
|
6279
|
-
});
|
6280
|
-
});
|
6281
|
-
}
|
6282
|
-
/** Fetch storage objects. */
|
6283
|
-
readStorageObjects(session, request) {
|
6284
|
-
return __async(this, null, function* () {
|
6285
|
-
if (this.autoRefreshSession && session.refresh_token && session.isexpired((Date.now() + this.expiredTimespanMs) / 1e3)) {
|
6286
|
-
yield this.sessionRefresh(session);
|
6287
|
-
}
|
6288
|
-
return this.apiClient.readStorageObjects(session.token, request).then((response) => {
|
6289
|
-
var result = { objects: [] };
|
6290
|
-
if (response.objects == null) {
|
6291
|
-
return Promise.resolve(result);
|
6292
|
-
}
|
6293
|
-
response.objects.forEach((o) => {
|
6294
|
-
result.objects.push({
|
6295
|
-
collection: o.collection,
|
6296
|
-
key: o.key,
|
6297
|
-
permission_read: o.permission_read ? Number(o.permission_read) : 0,
|
6298
|
-
permission_write: o.permission_write ? Number(o.permission_write) : 0,
|
6299
|
-
value: o.value ? JSON.parse(o.value) : void 0,
|
6300
|
-
version: o.version,
|
6301
|
-
user_id: o.user_id,
|
6302
|
-
create_time: o.create_time,
|
6303
|
-
update_time: o.update_time
|
6304
|
-
});
|
6305
|
-
});
|
6306
|
-
return Promise.resolve(result);
|
6307
|
-
});
|
6308
|
-
});
|
6309
|
-
}
|
6310
6075
|
/** Execute an RPC function on the server. */
|
6311
6076
|
rpc(session, basicAuthUsername, basicAuthPassword, id, input) {
|
6312
6077
|
return __async(this, null, function* () {
|
@@ -6593,26 +6358,6 @@ var Client = class {
|
|
6593
6358
|
});
|
6594
6359
|
});
|
6595
6360
|
}
|
6596
|
-
/** Write storage objects. */
|
6597
|
-
writeStorageObjects(session, objects) {
|
6598
|
-
return __async(this, null, function* () {
|
6599
|
-
if (this.autoRefreshSession && session.refresh_token && session.isexpired((Date.now() + this.expiredTimespanMs) / 1e3)) {
|
6600
|
-
yield this.sessionRefresh(session);
|
6601
|
-
}
|
6602
|
-
var request = { objects: [] };
|
6603
|
-
objects.forEach((o) => {
|
6604
|
-
request.objects.push({
|
6605
|
-
collection: o.collection,
|
6606
|
-
key: o.key,
|
6607
|
-
permission_read: o.permission_read,
|
6608
|
-
permission_write: o.permission_write,
|
6609
|
-
value: JSON.stringify(o.value),
|
6610
|
-
version: o.version
|
6611
|
-
});
|
6612
|
-
});
|
6613
|
-
return this.apiClient.writeStorageObjects(session.token, request);
|
6614
|
-
});
|
6615
|
-
}
|
6616
6361
|
/** Set default notification clan*/
|
6617
6362
|
setNotificationClan(session, request) {
|
6618
6363
|
return __async(this, null, function* () {
|
@@ -6796,16 +6541,6 @@ var Client = class {
|
|
6796
6541
|
});
|
6797
6542
|
});
|
6798
6543
|
}
|
6799
|
-
hashtagDmVoiceList(session, userId, limit) {
|
6800
|
-
return __async(this, null, function* () {
|
6801
|
-
if (this.autoRefreshSession && session.refresh_token && session.isexpired((Date.now() + this.expiredTimespanMs) / 1e3)) {
|
6802
|
-
yield this.sessionRefresh(session);
|
6803
|
-
}
|
6804
|
-
return this.apiClient.hashtagDMVoiceList(session.token, userId, limit).then((response) => {
|
6805
|
-
return Promise.resolve(response);
|
6806
|
-
});
|
6807
|
-
});
|
6808
|
-
}
|
6809
6544
|
//** */
|
6810
6545
|
deletePinMessage(session, message_id) {
|
6811
6546
|
return __async(this, null, function* () {
|
@@ -6845,7 +6580,7 @@ var Client = class {
|
|
6845
6580
|
if (this.autoRefreshSession && session.refresh_token && session.isexpired((Date.now() + this.expiredTimespanMs) / 1e3)) {
|
6846
6581
|
yield this.sessionRefresh(session);
|
6847
6582
|
}
|
6848
|
-
return this.apiClient.
|
6583
|
+
return this.apiClient.deleteClanEmojiById(session.token, id, clan_id).then((response) => {
|
6849
6584
|
return response !== void 0;
|
6850
6585
|
});
|
6851
6586
|
});
|