@bkper/bkper-api-types 5.26.0 → 5.27.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 +0 -113
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -516,43 +516,6 @@ declare namespace bkper {
516
516
  */
517
517
  items?: Connection[];
518
518
  }
519
- export interface Conversation {
520
- agent?: Agent;
521
- /**
522
- * The creation timestamp, in milliseconds
523
- */
524
- createdAt?: string;
525
- /**
526
- * The creation date time on RFC3339 format
527
- */
528
- createdOn?: string; // date-time
529
- /**
530
- * The unique id that identifies the Conversation
531
- */
532
- id?: string;
533
- /**
534
- * The conversation messages
535
- */
536
- messages?: Message[];
537
- /**
538
- * The title of the Conversation
539
- */
540
- title?: string;
541
- /**
542
- * The last update timestamp, in milliseconds
543
- */
544
- updatedAt?: string;
545
- /**
546
- * The last update date time on RFC3339 format
547
- */
548
- updatedOn?: string; // date-time
549
- }
550
- export interface ConversationList {
551
- /**
552
- * List items
553
- */
554
- items?: Conversation[];
555
- }
556
519
  export interface Count {
557
520
  day?: number; // int32
558
521
  fuzzyDate?: number; // int32
@@ -780,39 +743,6 @@ declare namespace bkper {
780
743
  */
781
744
  items?: Integration[];
782
745
  }
783
- export interface Message {
784
- agent?: Agent;
785
- /**
786
- * The content of the Message
787
- */
788
- content?: string;
789
- /**
790
- * The creation timestamp, in milliseconds
791
- */
792
- createdAt?: string;
793
- /**
794
- * The creation date time on RFC3339 format
795
- */
796
- createdOn?: string; // date-time
797
- /**
798
- * The unique id that identifies the Message
799
- */
800
- id?: string;
801
- parent?: Message;
802
- /**
803
- * The key/value custom properties of the Message
804
- */
805
- properties?: {
806
- [name: string]: string;
807
- };
808
- user?: User;
809
- }
810
- export interface MessageList {
811
- /**
812
- * List items
813
- */
814
- items?: Message[];
815
- }
816
746
  export interface Query {
817
747
  /**
818
748
  * The id of agent that created the resource
@@ -1150,17 +1080,6 @@ declare namespace Paths {
1150
1080
  export type $200 = bkper.Connection;
1151
1081
  }
1152
1082
  }
1153
- namespace BkperV5CreateConversation {
1154
- export interface BodyParameters {
1155
- Conversation: Parameters.Conversation;
1156
- }
1157
- namespace Parameters {
1158
- export type Conversation = bkper.Conversation;
1159
- }
1160
- namespace Responses {
1161
- export type $200 = bkper.Conversation;
1162
- }
1163
- }
1164
1083
  namespace BkperV5CreateFile {
1165
1084
  export interface BodyParameters {
1166
1085
  File: Parameters.File;
@@ -1205,17 +1124,6 @@ declare namespace Paths {
1205
1124
  export type $200 = bkper.Integration;
1206
1125
  }
1207
1126
  }
1208
- namespace BkperV5CreateMessage {
1209
- export interface BodyParameters {
1210
- Message: Parameters.Message;
1211
- }
1212
- namespace Parameters {
1213
- export type Message = bkper.Message;
1214
- }
1215
- namespace Responses {
1216
- export type $200 = bkper.Message;
1217
- }
1218
- }
1219
1127
  namespace BkperV5CreateNewBook {
1220
1128
  export interface BodyParameters {
1221
1129
  Book: Parameters.Book;
@@ -1384,11 +1292,6 @@ declare namespace Paths {
1384
1292
  export type $200 = bkper.ConnectionList;
1385
1293
  }
1386
1294
  }
1387
- namespace BkperV5ListConversations {
1388
- namespace Responses {
1389
- export type $200 = bkper.ConversationList;
1390
- }
1391
- }
1392
1295
  namespace BkperV5ListEvents {
1393
1296
  namespace Responses {
1394
1297
  export type $200 = bkper.EventList;
@@ -1409,11 +1312,6 @@ declare namespace Paths {
1409
1312
  export type $200 = bkper.IntegrationList;
1410
1313
  }
1411
1314
  }
1412
- namespace BkperV5ListMessages {
1413
- namespace Responses {
1414
- export type $200 = bkper.MessageList;
1415
- }
1416
- }
1417
1315
  namespace BkperV5ListQueries {
1418
1316
  namespace Responses {
1419
1317
  export type $200 = bkper.QueryList;
@@ -1521,17 +1419,6 @@ declare namespace Paths {
1521
1419
  export type $200 = bkper.Query;
1522
1420
  }
1523
1421
  }
1524
- namespace BkperV5StreamConversation {
1525
- export interface BodyParameters {
1526
- Message: Parameters.Message;
1527
- }
1528
- namespace Parameters {
1529
- export type Message = bkper.Message;
1530
- }
1531
- namespace Responses {
1532
- export type $200 = bkper.Message;
1533
- }
1534
- }
1535
1422
  namespace BkperV5TrashTransaction {
1536
1423
  export interface BodyParameters {
1537
1424
  Transaction: Parameters.Transaction;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bkper/bkper-api-types",
3
- "version": "5.26.0",
3
+ "version": "5.27.0",
4
4
  "description": "Typescript definitions for Bkper REST API",
5
5
  "homepage": "https://api.bkper.com",
6
6
  "repository": {