@hipnation-truth/sdk 0.21.0 → 0.22.0
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/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/react.d.ts +7 -0
- package/dist/react.js +2 -2
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
package/dist/react.d.ts
CHANGED
|
@@ -213,6 +213,8 @@ interface ConversationMessageRow {
|
|
|
213
213
|
duration: number | null;
|
|
214
214
|
/** Voicemail/call transcript — Dialpad delivers `{ text }` (B5). */
|
|
215
215
|
transcript: unknown | null;
|
|
216
|
+
/** AI-generated Dialpad recap summary (calls only; null for SMS). */
|
|
217
|
+
recapSummary: string | null;
|
|
216
218
|
text: string | null;
|
|
217
219
|
mms: boolean;
|
|
218
220
|
mmsUrl: string | null;
|
|
@@ -673,6 +675,8 @@ interface ConversationMessage {
|
|
|
673
675
|
duration: number | null;
|
|
674
676
|
/** Voicemail/call transcript — Dialpad delivers `{ text }` (B5). */
|
|
675
677
|
transcript: unknown | null;
|
|
678
|
+
/** AI-generated Dialpad recap summary (calls only; null for SMS). */
|
|
679
|
+
recapSummary: string | null;
|
|
676
680
|
text: string | null;
|
|
677
681
|
mms: boolean;
|
|
678
682
|
mmsUrl: string | null;
|
|
@@ -1336,6 +1340,8 @@ interface CreateConversationNoteInput extends ConversationAddress {
|
|
|
1336
1340
|
interface CreateConversationTaskInput extends ConversationAddress {
|
|
1337
1341
|
eventId?: string;
|
|
1338
1342
|
author: string;
|
|
1343
|
+
/** Optional short headline, distinct from `description`. */
|
|
1344
|
+
title?: string;
|
|
1339
1345
|
description: string;
|
|
1340
1346
|
status?: ConversationTaskStatus;
|
|
1341
1347
|
priority?: ConversationTaskPriority;
|
|
@@ -1355,6 +1361,7 @@ interface UpdateConversationTaskInput {
|
|
|
1355
1361
|
author: string;
|
|
1356
1362
|
description: string;
|
|
1357
1363
|
/** Optional patch fields — pass only the ones you want to change. */
|
|
1364
|
+
title?: string;
|
|
1358
1365
|
priority?: ConversationTaskPriority;
|
|
1359
1366
|
status?: ConversationTaskStatus;
|
|
1360
1367
|
assignee?: string;
|
package/dist/react.js
CHANGED
|
@@ -619,12 +619,12 @@ var ConversationTasksSubresource = class {
|
|
|
619
619
|
return __async(this, null, function* () {
|
|
620
620
|
return this.patch(
|
|
621
621
|
`/conversations/tasks/${encodeURIComponent(input.taskId)}`,
|
|
622
|
-
__spreadValues(__spreadValues(__spreadValues(__spreadValues({
|
|
622
|
+
__spreadValues(__spreadValues(__spreadValues(__spreadValues(__spreadValues({
|
|
623
623
|
id: input.taskId,
|
|
624
624
|
conversationId: input.conversationId,
|
|
625
625
|
author: input.author,
|
|
626
626
|
description: input.description
|
|
627
|
-
}, input.priority ? { priority: input.priority } : {}), input.status ? { status: input.status } : {}), input.assignee !== void 0 ? { assignee: input.assignee } : {}), input.type !== void 0 ? { type: input.type } : {})
|
|
627
|
+
}, input.title !== void 0 ? { title: input.title } : {}), input.priority ? { priority: input.priority } : {}), input.status ? { status: input.status } : {}), input.assignee !== void 0 ? { assignee: input.assignee } : {}), input.type !== void 0 ? { type: input.type } : {})
|
|
628
628
|
);
|
|
629
629
|
});
|
|
630
630
|
}
|