@bkper/bkper-api-types 5.15.0 → 5.15.2
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/index.d.ts +9 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -495,13 +495,21 @@ declare namespace bkper {
|
|
|
495
495
|
*/
|
|
496
496
|
id?: string;
|
|
497
497
|
/**
|
|
498
|
-
* The
|
|
498
|
+
* The conversation messages
|
|
499
499
|
*/
|
|
500
500
|
messages?: Message[];
|
|
501
501
|
/**
|
|
502
502
|
* The title of the Conversation
|
|
503
503
|
*/
|
|
504
504
|
title?: string;
|
|
505
|
+
/**
|
|
506
|
+
* The last update timestamp, in milliseconds
|
|
507
|
+
*/
|
|
508
|
+
updatedAt?: string;
|
|
509
|
+
/**
|
|
510
|
+
* The last update date time on RFC3339 format
|
|
511
|
+
*/
|
|
512
|
+
updatedOn?: string; // date-time
|
|
505
513
|
}
|
|
506
514
|
export interface ConversationList {
|
|
507
515
|
/**
|