mezon-js 2.9.42 → 2.9.43
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/client.ts +3 -2
- package/dist/client.d.ts +2 -2
- package/dist/mezon-js.cjs.js +1 -1
- package/dist/mezon-js.esm.mjs +1 -1
- package/package.json +1 -1
package/client.ts
CHANGED
@@ -125,6 +125,7 @@ import {
|
|
125
125
|
ApiEditChannelCanvasRequest,
|
126
126
|
ApiChannelSettingListResponse,
|
127
127
|
ApiAddFavoriteChannelResponse,
|
128
|
+
ApiRegistFcmDeviceTokenResponse,
|
128
129
|
} from "./api.gen";
|
129
130
|
|
130
131
|
import { Session } from "./session";
|
@@ -1838,7 +1839,7 @@ export class Client {
|
|
1838
1839
|
tokenId: string,
|
1839
1840
|
deviceId: string,
|
1840
1841
|
platform: string
|
1841
|
-
): Promise<
|
1842
|
+
): Promise<ApiRegistFcmDeviceTokenResponse> {
|
1842
1843
|
if (
|
1843
1844
|
this.autoRefreshSession &&
|
1844
1845
|
session.refresh_token &&
|
@@ -1850,7 +1851,7 @@ export class Client {
|
|
1850
1851
|
return this.apiClient
|
1851
1852
|
.registFCMDeviceToken(session.token, tokenId, deviceId, platform)
|
1852
1853
|
.then((response: any) => {
|
1853
|
-
return response
|
1854
|
+
return Promise.resolve(response);
|
1854
1855
|
});
|
1855
1856
|
}
|
1856
1857
|
|
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, 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, ApiSetDefaultNotificationRequest, ApiSetNotificationRequest, ApiSetMuteNotificationRequest, ApiSearchMessageRequest, ApiSearchMessageResponse, ApiPinMessageRequest, ApiPinMessagesList, ApiDeleteChannelDescRequest, ApiChangeChannelPrivateRequest, ApiClanEmojiCreateRequest, MezonUpdateClanEmojiByIdBody, ApiWebhookCreateRequest, ApiWebhookListResponse, MezonUpdateWebhookByIdBody, ApiWebhookGenerateResponse, ApiCheckDuplicateClanNameResponse, ApiClanStickerAddRequest, MezonUpdateClanStickerByIdBody, MezonChangeChannelCategoryBody, ApiUpdateRoleChannelRequest, ApiAddAppRequest, ApiAppList, ApiApp, MezonUpdateAppBody, ApiSystemMessagesList, ApiSystemMessage, ApiSystemMessageRequest, MezonUpdateSystemMessageBody, ApiUpdateCategoryOrderRequest, ApiGiveCoffeeEvent, ApiListStreamingChannelsResponse, ApiStreamingChannelUserList, ApiRegisterStreamingChannelRequest, ApiRoleList, ApiListChannelAppsResponse, ApiNotificationChannelCategorySettingList, ApiNotificationUserChannel, ApiNotificationSetting, ApiNotifiReactMessage, ApiHashtagDmList, ApiEmojiListedResponse, ApiStickerListedResponse, ApiAllUsersAddChannelResponse, ApiRoleListEventResponse, ApiAllUserClans, ApiUserPermissionInChannelListResponse, ApiPermissionRoleChannelListEventResponse, ApiMarkAsReadRequest, ApiEditChannelCanvasRequest, ApiChannelSettingListResponse, ApiAddFavoriteChannelResponse } from "./api.gen";
|
16
|
+
import { ApiAccount, ApiAccountCustom, ApiAccountDevice, ApiAccountEmail, ApiAccountFacebook, ApiAccountFacebookInstantGame, ApiAccountGoogle, ApiAccountGameCenter, ApiAccountSteam, ApiChannelDescList, ApiChannelDescription, ApiCreateChannelDescRequest, ApiDeleteRoleRequest, ApiClanDescList, ApiCreateClanDescRequest, ApiClanDesc, ApiCategoryDesc, ApiCategoryDescList, 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, ApiSetDefaultNotificationRequest, ApiSetNotificationRequest, ApiSetMuteNotificationRequest, ApiSearchMessageRequest, ApiSearchMessageResponse, ApiPinMessageRequest, ApiPinMessagesList, ApiDeleteChannelDescRequest, ApiChangeChannelPrivateRequest, ApiClanEmojiCreateRequest, MezonUpdateClanEmojiByIdBody, ApiWebhookCreateRequest, ApiWebhookListResponse, MezonUpdateWebhookByIdBody, ApiWebhookGenerateResponse, ApiCheckDuplicateClanNameResponse, ApiClanStickerAddRequest, MezonUpdateClanStickerByIdBody, MezonChangeChannelCategoryBody, ApiUpdateRoleChannelRequest, ApiAddAppRequest, ApiAppList, ApiApp, MezonUpdateAppBody, ApiSystemMessagesList, ApiSystemMessage, ApiSystemMessageRequest, MezonUpdateSystemMessageBody, ApiUpdateCategoryOrderRequest, ApiGiveCoffeeEvent, ApiListStreamingChannelsResponse, ApiStreamingChannelUserList, ApiRegisterStreamingChannelRequest, ApiRoleList, ApiListChannelAppsResponse, ApiNotificationChannelCategorySettingList, ApiNotificationUserChannel, ApiNotificationSetting, ApiNotifiReactMessage, ApiHashtagDmList, ApiEmojiListedResponse, ApiStickerListedResponse, ApiAllUsersAddChannelResponse, ApiRoleListEventResponse, ApiAllUserClans, ApiUserPermissionInChannelListResponse, ApiPermissionRoleChannelListEventResponse, ApiMarkAsReadRequest, ApiEditChannelCanvasRequest, ApiChannelSettingListResponse, ApiAddFavoriteChannelResponse, ApiRegistFcmDeviceTokenResponse } from "./api.gen";
|
17
17
|
import { Session } from "./session";
|
18
18
|
import { Socket } from "./socket";
|
19
19
|
import { WebSocketAdapter } from "./web_socket_adapter";
|
@@ -427,7 +427,7 @@ export declare class Client {
|
|
427
427
|
listRolePermissions(session: Session, roleId: string): Promise<ApiPermissionList>;
|
428
428
|
/** List user roles */
|
429
429
|
listRoleUsers(session: Session, roleId: string, limit?: number, cursor?: string): Promise<ApiRoleUserList>;
|
430
|
-
registFCMDeviceToken(session: Session, tokenId: string, deviceId: string, platform: string): Promise<
|
430
|
+
registFCMDeviceToken(session: Session, tokenId: string, deviceId: string, platform: string): Promise<ApiRegistFcmDeviceTokenResponse>;
|
431
431
|
/** Get a clan desc profile */
|
432
432
|
getClanDescProfile(session: Session, clanId: string): Promise<ApiClanDescProfile>;
|
433
433
|
getUserProfileOnClan(session: Session, clanId: string): Promise<ApiClanProfile>;
|
package/dist/mezon-js.cjs.js
CHANGED
@@ -7573,7 +7573,7 @@ var Client = class {
|
|
7573
7573
|
yield this.sessionRefresh(session);
|
7574
7574
|
}
|
7575
7575
|
return this.apiClient.registFCMDeviceToken(session.token, tokenId, deviceId, platform).then((response) => {
|
7576
|
-
return response
|
7576
|
+
return Promise.resolve(response);
|
7577
7577
|
});
|
7578
7578
|
});
|
7579
7579
|
}
|
package/dist/mezon-js.esm.mjs
CHANGED
@@ -7544,7 +7544,7 @@ var Client = class {
|
|
7544
7544
|
yield this.sessionRefresh(session);
|
7545
7545
|
}
|
7546
7546
|
return this.apiClient.registFCMDeviceToken(session.token, tokenId, deviceId, platform).then((response) => {
|
7547
|
-
return response
|
7547
|
+
return Promise.resolve(response);
|
7548
7548
|
});
|
7549
7549
|
});
|
7550
7550
|
}
|