cmd-control-client-lib 3.0.376 → 3.0.379
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.
|
@@ -45,6 +45,24 @@ interface IUserInfo extends IKeyValue {
|
|
|
45
45
|
canOfferMedia?: EnumBooleanStringified;
|
|
46
46
|
canPurchaseMedia?: EnumBooleanStringified;
|
|
47
47
|
}
|
|
48
|
+
export declare type translationType = {
|
|
49
|
+
title: string;
|
|
50
|
+
description: string;
|
|
51
|
+
};
|
|
52
|
+
export declare type collectibleType = {
|
|
53
|
+
id: number;
|
|
54
|
+
imageUrl?: string;
|
|
55
|
+
translations: Map<string, translationType>;
|
|
56
|
+
};
|
|
57
|
+
export declare type profileType = {
|
|
58
|
+
name: string;
|
|
59
|
+
signupDate: string;
|
|
60
|
+
avatarUrl?: string;
|
|
61
|
+
isVip: boolean;
|
|
62
|
+
isVerified: boolean;
|
|
63
|
+
selectedFrame?: collectibleType;
|
|
64
|
+
selectedBadges?: collectibleType[];
|
|
65
|
+
};
|
|
48
66
|
/**
|
|
49
67
|
* product "VOne" extra information and abilities
|
|
50
68
|
*/
|
|
@@ -52,11 +70,12 @@ export interface IUserInfoVOne extends IUserInfo {
|
|
|
52
70
|
isVIP?: EnumBooleanStringified;
|
|
53
71
|
canCall0900?: EnumBooleanStringified;
|
|
54
72
|
canSingleSession?: EnumBooleanStringified;
|
|
55
|
-
canBuyShopContent
|
|
56
|
-
canBeDiscounted
|
|
57
|
-
canSendGifts
|
|
58
|
-
canControlToy
|
|
59
|
-
canBeBan
|
|
73
|
+
canBuyShopContent?: EnumBooleanStringified;
|
|
74
|
+
canBeDiscounted?: EnumBooleanStringified;
|
|
75
|
+
canSendGifts?: EnumBooleanStringified;
|
|
76
|
+
canControlToy?: EnumBooleanStringified;
|
|
77
|
+
canBeBan?: EnumBooleanStringified;
|
|
78
|
+
profile?: JSONString<profileType>;
|
|
60
79
|
}
|
|
61
80
|
/**
|
|
62
81
|
* B2B basic user information
|
|
@@ -144,6 +144,7 @@ export declare class CMDC_AICHANNELSUMMARY implements ICOMMAND {
|
|
|
144
144
|
state: EnumAiSummaryState;
|
|
145
145
|
summary?: JSONString<summarizedData>;
|
|
146
146
|
lastMsgAt?: string;
|
|
147
|
+
completedAt?: string;
|
|
147
148
|
};
|
|
148
149
|
}
|
|
149
150
|
export declare class CMDP_GETAICHANNELSUMMARY implements ICOMMAND {
|