cmd-control-client-lib 3.0.369 → 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.
@@ -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
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cmd-control-client-lib",
3
3
  "description": "Cmd-Client-Library",
4
- "version": "3.0.369",
4
+ "version": "3.0.372",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },