@bkper/bkper-api-types 5.25.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.
- package/index.d.ts +4 -113
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -12,6 +12,10 @@ declare namespace bkper {
|
|
|
12
12
|
* The current account balance, when querying transactions.
|
|
13
13
|
*/
|
|
14
14
|
balance?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Whether the account balance has been verified/audited
|
|
17
|
+
*/
|
|
18
|
+
balanceVerified?: boolean;
|
|
15
19
|
/**
|
|
16
20
|
* The creation timestamp, in milliseconds
|
|
17
21
|
*/
|
|
@@ -512,43 +516,6 @@ declare namespace bkper {
|
|
|
512
516
|
*/
|
|
513
517
|
items?: Connection[];
|
|
514
518
|
}
|
|
515
|
-
export interface Conversation {
|
|
516
|
-
agent?: Agent;
|
|
517
|
-
/**
|
|
518
|
-
* The creation timestamp, in milliseconds
|
|
519
|
-
*/
|
|
520
|
-
createdAt?: string;
|
|
521
|
-
/**
|
|
522
|
-
* The creation date time on RFC3339 format
|
|
523
|
-
*/
|
|
524
|
-
createdOn?: string; // date-time
|
|
525
|
-
/**
|
|
526
|
-
* The unique id that identifies the Conversation
|
|
527
|
-
*/
|
|
528
|
-
id?: string;
|
|
529
|
-
/**
|
|
530
|
-
* The conversation messages
|
|
531
|
-
*/
|
|
532
|
-
messages?: Message[];
|
|
533
|
-
/**
|
|
534
|
-
* The title of the Conversation
|
|
535
|
-
*/
|
|
536
|
-
title?: string;
|
|
537
|
-
/**
|
|
538
|
-
* The last update timestamp, in milliseconds
|
|
539
|
-
*/
|
|
540
|
-
updatedAt?: string;
|
|
541
|
-
/**
|
|
542
|
-
* The last update date time on RFC3339 format
|
|
543
|
-
*/
|
|
544
|
-
updatedOn?: string; // date-time
|
|
545
|
-
}
|
|
546
|
-
export interface ConversationList {
|
|
547
|
-
/**
|
|
548
|
-
* List items
|
|
549
|
-
*/
|
|
550
|
-
items?: Conversation[];
|
|
551
|
-
}
|
|
552
519
|
export interface Count {
|
|
553
520
|
day?: number; // int32
|
|
554
521
|
fuzzyDate?: number; // int32
|
|
@@ -776,39 +743,6 @@ declare namespace bkper {
|
|
|
776
743
|
*/
|
|
777
744
|
items?: Integration[];
|
|
778
745
|
}
|
|
779
|
-
export interface Message {
|
|
780
|
-
agent?: Agent;
|
|
781
|
-
/**
|
|
782
|
-
* The content of the Message
|
|
783
|
-
*/
|
|
784
|
-
content?: string;
|
|
785
|
-
/**
|
|
786
|
-
* The creation timestamp, in milliseconds
|
|
787
|
-
*/
|
|
788
|
-
createdAt?: string;
|
|
789
|
-
/**
|
|
790
|
-
* The creation date time on RFC3339 format
|
|
791
|
-
*/
|
|
792
|
-
createdOn?: string; // date-time
|
|
793
|
-
/**
|
|
794
|
-
* The unique id that identifies the Message
|
|
795
|
-
*/
|
|
796
|
-
id?: string;
|
|
797
|
-
parent?: Message;
|
|
798
|
-
/**
|
|
799
|
-
* The key/value custom properties of the Message
|
|
800
|
-
*/
|
|
801
|
-
properties?: {
|
|
802
|
-
[name: string]: string;
|
|
803
|
-
};
|
|
804
|
-
user?: User;
|
|
805
|
-
}
|
|
806
|
-
export interface MessageList {
|
|
807
|
-
/**
|
|
808
|
-
* List items
|
|
809
|
-
*/
|
|
810
|
-
items?: Message[];
|
|
811
|
-
}
|
|
812
746
|
export interface Query {
|
|
813
747
|
/**
|
|
814
748
|
* The id of agent that created the resource
|
|
@@ -1146,17 +1080,6 @@ declare namespace Paths {
|
|
|
1146
1080
|
export type $200 = bkper.Connection;
|
|
1147
1081
|
}
|
|
1148
1082
|
}
|
|
1149
|
-
namespace BkperV5CreateConversation {
|
|
1150
|
-
export interface BodyParameters {
|
|
1151
|
-
Conversation: Parameters.Conversation;
|
|
1152
|
-
}
|
|
1153
|
-
namespace Parameters {
|
|
1154
|
-
export type Conversation = bkper.Conversation;
|
|
1155
|
-
}
|
|
1156
|
-
namespace Responses {
|
|
1157
|
-
export type $200 = bkper.Conversation;
|
|
1158
|
-
}
|
|
1159
|
-
}
|
|
1160
1083
|
namespace BkperV5CreateFile {
|
|
1161
1084
|
export interface BodyParameters {
|
|
1162
1085
|
File: Parameters.File;
|
|
@@ -1201,17 +1124,6 @@ declare namespace Paths {
|
|
|
1201
1124
|
export type $200 = bkper.Integration;
|
|
1202
1125
|
}
|
|
1203
1126
|
}
|
|
1204
|
-
namespace BkperV5CreateMessage {
|
|
1205
|
-
export interface BodyParameters {
|
|
1206
|
-
Message: Parameters.Message;
|
|
1207
|
-
}
|
|
1208
|
-
namespace Parameters {
|
|
1209
|
-
export type Message = bkper.Message;
|
|
1210
|
-
}
|
|
1211
|
-
namespace Responses {
|
|
1212
|
-
export type $200 = bkper.Message;
|
|
1213
|
-
}
|
|
1214
|
-
}
|
|
1215
1127
|
namespace BkperV5CreateNewBook {
|
|
1216
1128
|
export interface BodyParameters {
|
|
1217
1129
|
Book: Parameters.Book;
|
|
@@ -1380,11 +1292,6 @@ declare namespace Paths {
|
|
|
1380
1292
|
export type $200 = bkper.ConnectionList;
|
|
1381
1293
|
}
|
|
1382
1294
|
}
|
|
1383
|
-
namespace BkperV5ListConversations {
|
|
1384
|
-
namespace Responses {
|
|
1385
|
-
export type $200 = bkper.ConversationList;
|
|
1386
|
-
}
|
|
1387
|
-
}
|
|
1388
1295
|
namespace BkperV5ListEvents {
|
|
1389
1296
|
namespace Responses {
|
|
1390
1297
|
export type $200 = bkper.EventList;
|
|
@@ -1405,11 +1312,6 @@ declare namespace Paths {
|
|
|
1405
1312
|
export type $200 = bkper.IntegrationList;
|
|
1406
1313
|
}
|
|
1407
1314
|
}
|
|
1408
|
-
namespace BkperV5ListMessages {
|
|
1409
|
-
namespace Responses {
|
|
1410
|
-
export type $200 = bkper.MessageList;
|
|
1411
|
-
}
|
|
1412
|
-
}
|
|
1413
1315
|
namespace BkperV5ListQueries {
|
|
1414
1316
|
namespace Responses {
|
|
1415
1317
|
export type $200 = bkper.QueryList;
|
|
@@ -1517,17 +1419,6 @@ declare namespace Paths {
|
|
|
1517
1419
|
export type $200 = bkper.Query;
|
|
1518
1420
|
}
|
|
1519
1421
|
}
|
|
1520
|
-
namespace BkperV5StreamConversation {
|
|
1521
|
-
export interface BodyParameters {
|
|
1522
|
-
Message: Parameters.Message;
|
|
1523
|
-
}
|
|
1524
|
-
namespace Parameters {
|
|
1525
|
-
export type Message = bkper.Message;
|
|
1526
|
-
}
|
|
1527
|
-
namespace Responses {
|
|
1528
|
-
export type $200 = bkper.Message;
|
|
1529
|
-
}
|
|
1530
|
-
}
|
|
1531
1422
|
namespace BkperV5TrashTransaction {
|
|
1532
1423
|
export interface BodyParameters {
|
|
1533
1424
|
Transaction: Parameters.Transaction;
|