cmd-control-client-lib 3.0.368 → 3.0.372
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.
|
@@ -151,6 +151,10 @@ export declare type channelIdSelector = {
|
|
|
151
151
|
selectGroupId?: ComaSeparatedValues<string> | string;
|
|
152
152
|
selectBadges?: ComaSeparatedValues<EnumBadge> | string;
|
|
153
153
|
selectFollowMe?: EnumBooleanStringified;
|
|
154
|
+
selectOnline?: EnumBooleanStringified;
|
|
155
|
+
/**
|
|
156
|
+
* @deprecated
|
|
157
|
+
*/
|
|
154
158
|
groupId?: ComaSeparatedValues<string> | string;
|
|
155
159
|
/**
|
|
156
160
|
* @deprecated/ignored
|
|
@@ -201,7 +205,7 @@ export declare type channelIdFilter = {
|
|
|
201
205
|
/** filter by group id, coma separated */
|
|
202
206
|
filterGroupId?: string;
|
|
203
207
|
/** filter by badges */
|
|
204
|
-
|
|
208
|
+
filterBadges?: ComaSeparatedValues<EnumBadge> | string;
|
|
205
209
|
/** filterActive */
|
|
206
210
|
filterActive?: EnumChannelFilterValues;
|
|
207
211
|
/** filter channels to exclude */
|
|
@@ -113,3 +113,47 @@ export declare class CMDP_SETCHANNELINFO_RESPONSE extends CMDP_SETCHANNELINFO im
|
|
|
113
113
|
/** the backend info for the channel */
|
|
114
114
|
payload?: unknown;
|
|
115
115
|
}
|
|
116
|
+
export declare type summarizedData = {
|
|
117
|
+
firstname?: string;
|
|
118
|
+
nickname?: string;
|
|
119
|
+
age?: string;
|
|
120
|
+
birthday?: string;
|
|
121
|
+
job?: string;
|
|
122
|
+
payday?: string;
|
|
123
|
+
tattoos?: string;
|
|
124
|
+
location?: string;
|
|
125
|
+
relationship_status?: string;
|
|
126
|
+
hobbies?: string;
|
|
127
|
+
family?: string;
|
|
128
|
+
sexual_likes?: string;
|
|
129
|
+
sexual_dislikes?: string;
|
|
130
|
+
recommendation_likes?: string;
|
|
131
|
+
recommendation_dislikes?: string;
|
|
132
|
+
last_session_summary?: string;
|
|
133
|
+
summary?: string;
|
|
134
|
+
};
|
|
135
|
+
export declare enum EnumAiSummaryState {
|
|
136
|
+
QUEUD = "queued",
|
|
137
|
+
READY = "ready",
|
|
138
|
+
ERROR = "error"
|
|
139
|
+
}
|
|
140
|
+
export declare class CMDC_AICHANNELSUMMARY implements ICOMMAND {
|
|
141
|
+
action: ACTION;
|
|
142
|
+
params: {
|
|
143
|
+
channelId: string;
|
|
144
|
+
status: EnumAiSummaryState;
|
|
145
|
+
summary?: JSONString<summarizedData>;
|
|
146
|
+
lastMsgAt?: string;
|
|
147
|
+
};
|
|
148
|
+
}
|
|
149
|
+
export declare class CMDP_GETAICHANNELSUMMARY implements ICOMMAND {
|
|
150
|
+
action: ACTION;
|
|
151
|
+
params: baseParamsType & channelIdType & {
|
|
152
|
+
update?: EnumBooleanStringified;
|
|
153
|
+
};
|
|
154
|
+
}
|
|
155
|
+
export declare class CMDP_GETAICHANNELSUMMARY_RESPONSE extends CMDP_GETAICHANNELSUMMARY implements IRESPONSE {
|
|
156
|
+
result: RESULT;
|
|
157
|
+
commands: CMDC_AICHANNELSUMMARY[];
|
|
158
|
+
values: IKeyMaybeValue;
|
|
159
|
+
}
|
|
@@ -217,5 +217,7 @@ export declare enum ACTION {
|
|
|
217
217
|
CMDP_SGETCHANNELMESSAGE = "CMDP_SGETCHANNELMESSAGE",
|
|
218
218
|
CMDP_SGETMEDIAHISTORY = "CMDP_SGETMEDIAHISTORY",
|
|
219
219
|
CMDP_SGETMEDIAHISTORYSUMMARY = "CMDP_SGETMEDIAHISTORYSUMMARY",
|
|
220
|
-
CMDC_CLIPSTATUS = "CMDC_CLIPSTATUS"
|
|
220
|
+
CMDC_CLIPSTATUS = "CMDC_CLIPSTATUS",
|
|
221
|
+
CMDC_AICHANNELSUMMARY = "CMDC_AICHANNELSUMMARY",
|
|
222
|
+
CMDP_GETAICHANNELSUMMARY = "CMDP_GETAICHANNELSUMMARY"
|
|
221
223
|
}
|