@bkper/bkper-api-types 5.7.0 → 5.8.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.
Files changed (2) hide show
  1. package/index.d.ts +9 -0
  2. 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
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bkper/bkper-api-types",
3
- "version": "5.7.0",
3
+ "version": "5.8.0",
4
4
  "description": "Typescript definitions for Bkper REST API",
5
5
  "homepage": "https://api.bkper.com",
6
6
  "repository": {