@smartico/public-api 0.0.107 → 0.0.109
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/dist/Base/ClassId.d.ts +2 -0
- package/dist/Inbox/GetInboxMessagesResponse.d.ts +2 -0
- package/dist/Inbox/InboxMessage.d.ts +15 -12
- package/dist/Inbox/MarkInboxMessageDeletedResponse.d.ts +1 -0
- package/dist/Inbox/MarkInboxMessageReadResponse.d.ts +1 -0
- package/dist/Inbox/MarkInboxMessageStarredResponse.d.ts +1 -0
- package/dist/Missions/AchCategoryPublicMeta.d.ts +4 -0
- package/dist/Missions/AchievementCategory.d.ts +7 -0
- package/dist/Missions/AchievementPublicMeta.d.ts +2 -0
- package/dist/Missions/GetAchCategoriesRequest.d.ts +3 -0
- package/dist/Missions/GetAchCategoriesResponse.d.ts +5 -0
- package/dist/Missions/UserAchievement.d.ts +1 -0
- package/dist/Missions/index.d.ts +4 -0
- package/dist/SmarticoAPI.d.ts +17 -4
- package/dist/WSAPI/WSAPI.d.ts +34 -3
- package/dist/WSAPI/WSAPITypes.d.ts +50 -2
- package/dist/index.js +414 -87
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +262 -59
- package/dist/index.modern.mjs.map +1 -1
- package/docs/README.md +4 -0
- package/docs/classes/WSAPI.md +157 -27
- package/docs/interfaces/InboxMarkMessageAction.md +17 -0
- package/docs/interfaces/TAchCategory.md +21 -0
- package/docs/interfaces/TInboxMessage.md +33 -0
- package/docs/interfaces/TInboxMessageBody.md +52 -0
- package/docs/interfaces/TMissionOrBadge.md +12 -1
- package/docs/interfaces/TTournament.md +1 -1
- package/docs/interfaces/TTournamentDetailed.md +2 -2
- package/package.json +1 -1
- package/src/Base/ClassId.ts +2 -0
- package/src/Inbox/GetInboxMessagesResponse.ts +14 -0
- package/src/Inbox/InboxMessage.ts +35 -9
- package/src/Inbox/MarkInboxMessageDeletedResponse.ts +1 -0
- package/src/Inbox/MarkInboxMessageReadResponse.ts +1 -0
- package/src/Inbox/MarkInboxMessageStarredResponse.ts +1 -0
- package/src/Missions/AchCategoryPublicMeta.ts +5 -0
- package/src/Missions/AchievementCategory.ts +19 -0
- package/src/Missions/AchievementPublicMeta.ts +2 -0
- package/src/Missions/GetAchCategoriesRequest.ts +5 -0
- package/src/Missions/GetAchCategoriesResponse.ts +7 -0
- package/src/Missions/UserAchievement.ts +4 -1
- package/src/Missions/index.ts +5 -1
- package/src/SmarticoAPI.ts +105 -4
- package/src/WSAPI/WSAPI.ts +89 -4
- package/src/WSAPI/WSAPITypes.ts +56 -2
package/dist/Base/ClassId.d.ts
CHANGED
|
@@ -60,6 +60,8 @@ export declare enum ClassId {
|
|
|
60
60
|
MARK_INBOX_STARRED_RESPONSE = 532,
|
|
61
61
|
MARK_INBOX_DELETED_REQUEST = 535,
|
|
62
62
|
MARK_INBOX_DELETED_RESPONSE = 536,
|
|
63
|
+
GET_ACH_CATEGORIES_REQUEST = 537,
|
|
64
|
+
GET_ACH_CATEGORIES_RESPONSE = 538,
|
|
63
65
|
GET_BONUSES_REQUEST = 600,
|
|
64
66
|
GET_BONUSES_RESPONSE = 601,
|
|
65
67
|
CLAIM_BONUS_REQUEST = 602,
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import { TInboxMessage } from "src/WSAPI/WSAPITypes";
|
|
1
2
|
import { ProtocolResponse } from "../Base/ProtocolResponse";
|
|
2
3
|
import { InboxMessage } from "./InboxMessage";
|
|
3
4
|
export interface GetInboxMessagesResponse extends ProtocolResponse {
|
|
4
5
|
log: InboxMessage[];
|
|
5
6
|
}
|
|
7
|
+
export declare const InboxMessagesTransform: (items: InboxMessage[]) => TInboxMessage[];
|
|
@@ -1,20 +1,23 @@
|
|
|
1
|
+
import { TInboxMessageBody } from "src/WSAPI/WSAPITypes";
|
|
1
2
|
import { InboxMessageType } from "./InboxMessageType";
|
|
3
|
+
export interface InboxMessageBody {
|
|
4
|
+
action: string;
|
|
5
|
+
body: string;
|
|
6
|
+
type: InboxMessageType;
|
|
7
|
+
image: string;
|
|
8
|
+
title: string;
|
|
9
|
+
html_body: string;
|
|
10
|
+
additional_buttons?: {
|
|
11
|
+
inbox_cta_text: string;
|
|
12
|
+
action: string;
|
|
13
|
+
}[];
|
|
14
|
+
}
|
|
2
15
|
export interface InboxMessage {
|
|
3
16
|
createDate: string;
|
|
4
|
-
body:
|
|
5
|
-
action: string;
|
|
6
|
-
body: string;
|
|
7
|
-
type: InboxMessageType;
|
|
8
|
-
image: string;
|
|
9
|
-
title: string;
|
|
10
|
-
html_body: string;
|
|
11
|
-
additional_buttons?: {
|
|
12
|
-
inbox_cta_text: string;
|
|
13
|
-
action: string;
|
|
14
|
-
}[];
|
|
15
|
-
};
|
|
17
|
+
body: InboxMessageBody;
|
|
16
18
|
engagement_uid: string;
|
|
17
19
|
is_read: boolean;
|
|
18
20
|
is_starred: boolean;
|
|
19
21
|
is_deleted: boolean;
|
|
20
22
|
}
|
|
23
|
+
export declare const InboxMessageBodyTransform: (item: InboxMessageBody) => TInboxMessageBody;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { TAchCategory } from "../WSAPI/WSAPITypes";
|
|
2
|
+
import { AchCategoryPublicMeta } from "./AchCategoryPublicMeta";
|
|
3
|
+
export interface AchCategory {
|
|
4
|
+
id?: number;
|
|
5
|
+
publicMeta?: AchCategoryPublicMeta;
|
|
6
|
+
}
|
|
7
|
+
export declare const AchCategoryTransform: (items: AchCategory[]) => TAchCategory[];
|
|
@@ -26,5 +26,6 @@ export interface UserAchievement {
|
|
|
26
26
|
scheduledMissionType?: ScheduledMissionType;
|
|
27
27
|
related_games?: AchRelatedGame[];
|
|
28
28
|
active_from_ts?: number;
|
|
29
|
+
ach_categories?: number[];
|
|
29
30
|
}
|
|
30
31
|
export declare const UserAchievementTransform: (items: UserAchievement[]) => TMissionOrBadge[];
|
package/dist/Missions/index.d.ts
CHANGED
|
@@ -11,3 +11,7 @@ export * from "./ReloadAchievementsEvent";
|
|
|
11
11
|
export * from "./UserAchievement";
|
|
12
12
|
export * from "./UserAchievementTask";
|
|
13
13
|
export * from "./ScheduledMissionType";
|
|
14
|
+
export * from './AchCategoryPublicMeta';
|
|
15
|
+
export * from './AchievementCategory';
|
|
16
|
+
export * from './GetAchCategoriesResponse';
|
|
17
|
+
export * from './GetAchCategoriesRequest';
|
package/dist/SmarticoAPI.d.ts
CHANGED
|
@@ -2,20 +2,21 @@ import { ClassId } from "./Base/ClassId";
|
|
|
2
2
|
import { SAWGetTemplatesResponse } from './MiniGames/SAWGetTemplatesResponse';
|
|
3
3
|
import { ILogger } from './ILogger';
|
|
4
4
|
import { SAWDoAknowledgeResponse, SAWDoSpinResponse } from './MiniGames';
|
|
5
|
-
import { GetTranslationsResponse, ResponseIdentify, TranslationArea } from './Core';
|
|
5
|
+
import { GetTranslationsResponse, PublicLabelSettings, ResponseIdentify, TranslationArea } from './Core';
|
|
6
6
|
import { GetLabelInfoResponse } from './Core/GetLabelInfoResponse';
|
|
7
|
-
import { GetInboxMessagesResponse } from './Inbox';
|
|
7
|
+
import { GetInboxMessagesResponse, InboxMessageBody, MarkInboxMessageDeletedResponse, MarkInboxMessageReadResponse, MarkInboxMessageStarredResponse } from './Inbox';
|
|
8
8
|
import { BuyStoreItemResponse, GetCategoriesStoreResponse, GetStoreItemsResponse } from './Store';
|
|
9
|
-
import { AchievementOptinResponse, GetAchievementMapResponse } from './Missions';
|
|
9
|
+
import { AchievementOptinResponse, GetAchCategoriesResponse, GetAchievementMapResponse } from './Missions';
|
|
10
10
|
import { GetTournamentInfoResponse, GetTournamentsResponse, TournamentRegisterResponse } from './Tournaments';
|
|
11
11
|
import { LeaderBoardDetails, LeaderBoardPeriodType } from "./Leaderboard";
|
|
12
12
|
import { GetLevelMapResponse } from "./Level";
|
|
13
13
|
import { WSAPI } from "./WSAPI/WSAPI";
|
|
14
|
-
import { TLevel, TMiniGameTemplate, TMissionOrBadge, TStoreCategory, TStoreItem, TTournament, TTournamentDetailed } from "./WSAPI/WSAPITypes";
|
|
14
|
+
import { TInboxMessage, TInboxMessageBody, TLevel, TMiniGameTemplate, TMissionOrBadge, TStoreCategory, TAchCategory, TStoreItem, TTournament, TTournamentDetailed } from "./WSAPI/WSAPITypes";
|
|
15
15
|
interface Tracker {
|
|
16
16
|
label_api_key: string;
|
|
17
17
|
userPublicProps: any;
|
|
18
18
|
on: (callBackKey: ClassId, func: (data: any) => void) => void;
|
|
19
|
+
getLabelSetting: (key: PublicLabelSettings) => any;
|
|
19
20
|
}
|
|
20
21
|
interface IOptions {
|
|
21
22
|
logger?: ILogger;
|
|
@@ -30,6 +31,7 @@ declare class SmarticoAPI {
|
|
|
30
31
|
private messageSender;
|
|
31
32
|
private publicUrl;
|
|
32
33
|
private wsUrl;
|
|
34
|
+
private inboxCdnUrl;
|
|
33
35
|
private partnerUrl;
|
|
34
36
|
avatarDomain: string;
|
|
35
37
|
private logger;
|
|
@@ -66,6 +68,8 @@ declare class SmarticoAPI {
|
|
|
66
68
|
storeGetCategoriesT(user_ext_id: string): Promise<TStoreCategory[]>;
|
|
67
69
|
missionsGetItems(user_ext_id: string): Promise<GetAchievementMapResponse>;
|
|
68
70
|
missionsGetItemsT(user_ext_id: string): Promise<TMissionOrBadge[]>;
|
|
71
|
+
achGetCategories(user_ext_id: string): Promise<GetAchCategoriesResponse>;
|
|
72
|
+
achGetCategoriesT(user_ext_id: string): Promise<TAchCategory[]>;
|
|
69
73
|
badgetsGetItems(user_ext_id: string): Promise<GetAchievementMapResponse>;
|
|
70
74
|
badgetsGetItemsT(user_ext_id: string): Promise<TMissionOrBadge[]>;
|
|
71
75
|
tournamentsGetLobby(user_ext_id: string): Promise<GetTournamentsResponse>;
|
|
@@ -76,6 +80,15 @@ declare class SmarticoAPI {
|
|
|
76
80
|
levelsGet(user_ext_id: string): Promise<GetLevelMapResponse>;
|
|
77
81
|
levelsGetT(user_ext_id: string): Promise<TLevel[]>;
|
|
78
82
|
getTranslationsT(user_ext_id: string, lang_code: string, areas: TranslationArea[], cacheSec?: number): Promise<GetTranslationsResponse>;
|
|
83
|
+
getInboxMessages(user_ext_id: string, limit: number, offset: number, starred_only: boolean): Promise<GetInboxMessagesResponse>;
|
|
84
|
+
getInboxMessagesT(user_ext_id: string, from?: number, to?: number, favoriteOnly?: boolean): Promise<TInboxMessage[]>;
|
|
85
|
+
getInboxMessageBody(messageGuid: string): Promise<InboxMessageBody>;
|
|
86
|
+
getInboxMessageBodyT(messageGuid: string): Promise<TInboxMessageBody>;
|
|
87
|
+
markInboxMessageRead(user_ext_id: string, messageGuid: string): Promise<MarkInboxMessageReadResponse>;
|
|
88
|
+
markAllInboxMessageRead(user_ext_id: string): Promise<MarkInboxMessageReadResponse>;
|
|
89
|
+
markUnmarkInboxMessageAsFavorite(user_ext_id: string, messageGuid: string, mark: boolean): Promise<MarkInboxMessageStarredResponse>;
|
|
90
|
+
deleteInboxMessage(user_ext_id: string, messageGuid: string): Promise<MarkInboxMessageDeletedResponse>;
|
|
91
|
+
deleteAllInboxMessages(user_ext_id: string): Promise<MarkInboxMessageDeletedResponse>;
|
|
79
92
|
getWSCalls(): WSAPI;
|
|
80
93
|
}
|
|
81
94
|
export { SmarticoAPI, MessageSender };
|
package/dist/WSAPI/WSAPI.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SmarticoAPI } from "../SmarticoAPI";
|
|
2
|
-
import { TBuyStoreItemResult, TGetTranslations, TLevel, TMiniGamePlayResult, TMiniGameTemplate, TMissionOptInResult, TMissionOrBadge, TStoreItem, TTournament, TTournamentDetailed, TTournamentRegistrationResult, TUserProfile } from "./WSAPITypes";
|
|
2
|
+
import { InboxMarkMessageAction, TAchCategory, TBuyStoreItemResult, TGetTranslations, TInboxMessage, TInboxMessageBody, TLevel, TMiniGamePlayResult, TMiniGameTemplate, TMissionOptInResult, TMissionOrBadge, TStoreCategory, TStoreItem, TTournament, TTournamentDetailed, TTournamentRegistrationResult, TUserProfile } from "./WSAPITypes";
|
|
3
3
|
/** @group General API */
|
|
4
4
|
export declare class WSAPI {
|
|
5
5
|
private api;
|
|
@@ -26,7 +26,9 @@ export declare class WSAPI {
|
|
|
26
26
|
/** Buy the specific shop item by item_id. Returns the err_code.*/
|
|
27
27
|
buyStoreItem(item_id: number): Promise<TBuyStoreItemResult>;
|
|
28
28
|
/** Returns store categories */
|
|
29
|
-
getStoreCategories(): Promise<
|
|
29
|
+
getStoreCategories(): Promise<TStoreCategory[]>;
|
|
30
|
+
/** Returns ach categories */
|
|
31
|
+
getAchCategories(): Promise<TAchCategory[]>;
|
|
30
32
|
/** Returns the list of mini-games available for user
|
|
31
33
|
* The returned list of mini-games is cached for 30 seconds. But you can pass the onUpdate callback as a parameter. Note that each time you call getMiniGames with a new onUpdate callback, the old one will be overwritten by the new one.
|
|
32
34
|
* The onUpdate callback will be called on available spin count change, if mini-game has increasing jackpot per spin or wined prize is spin/jackpot and if max count of the available user spin equal one, also if the spins were issued to the user manually in the BO. Updated templates will be passed to onUpdate callback. */
|
|
@@ -50,10 +52,38 @@ export declare class WSAPI {
|
|
|
50
52
|
getTournamentsList({ onUpdate }?: {
|
|
51
53
|
onUpdate?: (data: TTournament[]) => void;
|
|
52
54
|
}): Promise<TTournament[]>;
|
|
53
|
-
/** Returns details information of specific tournament instance, the response will
|
|
55
|
+
/** Returns details information of specific tournament instance, the response will include tournament info and the leaderboard of players */
|
|
54
56
|
getTournamentInstanceInfo(tournamentInstanceId: number): Promise<TTournamentDetailed>;
|
|
55
57
|
/** Requests registration for the specified tournament instance. Returns the err_code. */
|
|
56
58
|
registerInTournament(tournamentInstanceId: number): Promise<TTournamentRegistrationResult>;
|
|
59
|
+
/** Returns inbox messages based on the provided parameters. "From" and "to" indicate the range of messages to be fetched.
|
|
60
|
+
* The maximum number of messages per request is limited to 20. An indicator "onlyFavorite" can be passed to get only messages marked as favorites.
|
|
61
|
+
* You can leave this params empty and by default it will return list of messages ranging from 0 to 20.
|
|
62
|
+
* This functions return list of messages without the body of the message.
|
|
63
|
+
* To get the body of the message you need to call getInboxMessageBody function and pass the message guid contained in each message of this request.
|
|
64
|
+
* All other action like mark as read, favorite, delete, etc. can be done using this message GUID.
|
|
65
|
+
* The "onUpdate" callback will be triggered when the user receives a new message. It will provide an updated list of messages, ranging from 0 to 20, to the onUpdate callback function. */
|
|
66
|
+
/**
|
|
67
|
+
* @param params
|
|
68
|
+
*/
|
|
69
|
+
getInboxMessages({ from, to, onlyFavorite, onUpdate }?: {
|
|
70
|
+
from?: number;
|
|
71
|
+
to?: number;
|
|
72
|
+
onlyFavorite?: boolean;
|
|
73
|
+
onUpdate?: (data: TInboxMessage[]) => void;
|
|
74
|
+
}): Promise<TInboxMessage[]>;
|
|
75
|
+
/** Returns the message body of the specified message guid. */
|
|
76
|
+
getInboxMessageBody(messageGuid: string): Promise<TInboxMessageBody>;
|
|
77
|
+
/** Requests to mark inbox message with specified guid as read */
|
|
78
|
+
markInboxMessageAsRead(messageGuid: string): Promise<InboxMarkMessageAction>;
|
|
79
|
+
/** Requests to mark all inbox messages as read */
|
|
80
|
+
markAllInboxMessagesAsRead(): Promise<InboxMarkMessageAction>;
|
|
81
|
+
/** Requests to mark inbox message with specified guid as favorite. Pass mark true to add message to favorite and false to remove. */
|
|
82
|
+
markUnmarkInboxMessageAsFavorite(messageGuid: string, mark: boolean): Promise<InboxMarkMessageAction>;
|
|
83
|
+
/** Requests to delete inbox message */
|
|
84
|
+
deleteInboxMessage(messageGuid: string): Promise<InboxMarkMessageAction>;
|
|
85
|
+
/** Requests to delete all inbox messages */
|
|
86
|
+
deleteAllInboxMessages(): Promise<InboxMarkMessageAction>;
|
|
57
87
|
/** Requests translations for the given language. Returns the object including translation key/translation value pairs. All possible translation keys defined in the back office. */
|
|
58
88
|
getTranslations(lang_code: string): Promise<TGetTranslations>;
|
|
59
89
|
private updateOnSpin;
|
|
@@ -61,5 +91,6 @@ export declare class WSAPI {
|
|
|
61
91
|
private updateOnPrizeWin;
|
|
62
92
|
private updateMissionsOnOptIn;
|
|
63
93
|
private updateTournamentsOnRegistration;
|
|
94
|
+
private updateInboxMessages;
|
|
64
95
|
private updateEntity;
|
|
65
96
|
}
|
|
@@ -317,11 +317,19 @@ export interface TStoreItem {
|
|
|
317
317
|
* This indicator is taking into account the segment conditions for the store item, the price of item towards users balance,
|
|
318
318
|
*/
|
|
319
319
|
can_buy: boolean;
|
|
320
|
-
/** The list of IDs of the categories where the store item is assigned, information about categories can be
|
|
320
|
+
/** The list of IDs of the categories where the store item is assigned, information about categories can be retrieved with getStoreCategories method */
|
|
321
321
|
category_ids: number[];
|
|
322
322
|
/** Number of items in the pool avaliable for the purchase.*/
|
|
323
323
|
pool?: number;
|
|
324
324
|
}
|
|
325
|
+
/**
|
|
326
|
+
* TAchCategory describes the badge category item. Each badge item can be assigned to 1 or more categories
|
|
327
|
+
*/
|
|
328
|
+
export interface TAchCategory {
|
|
329
|
+
id: number;
|
|
330
|
+
name: string;
|
|
331
|
+
order: number;
|
|
332
|
+
}
|
|
325
333
|
/**
|
|
326
334
|
* TMissionOrBadge describes the information of mission or badge defined in the system
|
|
327
335
|
*/
|
|
@@ -358,7 +366,7 @@ export interface TMissionOrBadge {
|
|
|
358
366
|
progress: number;
|
|
359
367
|
/**
|
|
360
368
|
* The action that should be performed when user clicks on the mission or badge
|
|
361
|
-
* Can be URL or deep link, e.g. 'dp:deposit'. The most safe to execute CTA is to pass it to _smartico.
|
|
369
|
+
* Can be URL or deep link, e.g. 'dp:deposit'. The most safe to execute CTA is to pass it to _smartico.dp(cta_action);
|
|
362
370
|
* The 'dp' function will handle the CTA and will execute it in the most safe way
|
|
363
371
|
*/
|
|
364
372
|
cta_action: string;
|
|
@@ -377,6 +385,8 @@ export interface TMissionOrBadge {
|
|
|
377
385
|
tasks: TMissionOrBadgeTask[];
|
|
378
386
|
/** List of casino games (or other types of entities) related to the mission or badge */
|
|
379
387
|
related_games?: AchRelatedGame[];
|
|
388
|
+
/** The list of IDs of the categories where the badge item is assigned, information about categories can be retrieved with getAchCategories method */
|
|
389
|
+
category_ids: number[];
|
|
380
390
|
}
|
|
381
391
|
export interface AchRelatedGame {
|
|
382
392
|
/** The ID of the related game */
|
|
@@ -438,4 +448,42 @@ export interface TGetTranslations {
|
|
|
438
448
|
[key: string]: string;
|
|
439
449
|
};
|
|
440
450
|
}
|
|
451
|
+
export interface TInboxMessage {
|
|
452
|
+
/** Uniq identifier of the message. It is needed to request the message body, mark the message as read/deleted/favorite. */
|
|
453
|
+
message_guid: string;
|
|
454
|
+
/** Date when the message was sent */
|
|
455
|
+
sent_date: string;
|
|
456
|
+
/** Indicator if a message is read */
|
|
457
|
+
read: boolean;
|
|
458
|
+
/** Indicator if a message is added to favorites */
|
|
459
|
+
favorite: boolean;
|
|
460
|
+
}
|
|
461
|
+
export interface TInboxMessageBody {
|
|
462
|
+
/** Message title */
|
|
463
|
+
title: string;
|
|
464
|
+
/** Short preview body of the message */
|
|
465
|
+
preview_body: string;
|
|
466
|
+
/** Message icon */
|
|
467
|
+
icon: string;
|
|
468
|
+
/** The action that should be performed when user clicks on the message.
|
|
469
|
+
* Can be URL or deep link, e.g. 'dp:deposit'. The most safe to execute CTA is to pass it to _smartico.dp(cta_action);
|
|
470
|
+
* The 'dp' function will handle the CTA and will execute it in the most safe way.
|
|
471
|
+
* If the message has a rich html body - the action will always be 'dp:inbox' which will open the inbox widget when triggered. */
|
|
472
|
+
action: string;
|
|
473
|
+
/** Rich HTML body of the message. */
|
|
474
|
+
html_body?: string;
|
|
475
|
+
/** Optional additional buttons to show in the message, available only if message has rich HTML body. Max count - 2. */
|
|
476
|
+
buttons?: {
|
|
477
|
+
/** The action that should be performed when user clicks on the button. The logic is the same as for message actions */
|
|
478
|
+
action: string;
|
|
479
|
+
/** Button text */
|
|
480
|
+
text: string;
|
|
481
|
+
}[];
|
|
482
|
+
}
|
|
483
|
+
export interface InboxMarkMessageAction {
|
|
484
|
+
/** An error code representing the result of marking a message as deleted, favorite or read. Successful marking action if err_code is 0 */
|
|
485
|
+
err_code: number;
|
|
486
|
+
/** Optional error message */
|
|
487
|
+
err_message: string;
|
|
488
|
+
}
|
|
441
489
|
export {};
|