@bkper/bkper-api-types 5.7.0 → 5.8.1
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 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -385,6 +385,11 @@ declare namespace bkper {
|
|
|
385
385
|
*/
|
|
386
386
|
items?: Book[];
|
|
387
387
|
}
|
|
388
|
+
export interface BotResponse {
|
|
389
|
+
agentId?: string;
|
|
390
|
+
message?: string;
|
|
391
|
+
type?: "INFO" | "WARNING" | "ERROR";
|
|
392
|
+
}
|
|
388
393
|
export interface Collaborator {
|
|
389
394
|
/**
|
|
390
395
|
* The id of agent that created the resource
|
|
@@ -478,6 +483,10 @@ declare namespace bkper {
|
|
|
478
483
|
* The id of the Book associated to the Event
|
|
479
484
|
*/
|
|
480
485
|
bookId?: string;
|
|
486
|
+
/**
|
|
487
|
+
* The list of bot responses associated to the Event
|
|
488
|
+
*/
|
|
489
|
+
botResponses?: BotResponse[];
|
|
481
490
|
/**
|
|
482
491
|
* The creation timestamp, in milliseconds
|
|
483
492
|
*/
|