@bkper/bkper-api-types 5.17.1 → 5.18.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 +21 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -88,6 +88,10 @@ declare namespace bkper {
|
|
|
88
88
|
* The agent logo. Public url or Base64 encoded
|
|
89
89
|
*/
|
|
90
90
|
logo?: string;
|
|
91
|
+
/**
|
|
92
|
+
* The agent logo on dark mode. Public url or Base64 encoded
|
|
93
|
+
*/
|
|
94
|
+
logoDark?: string;
|
|
91
95
|
/**
|
|
92
96
|
* The agent name
|
|
93
97
|
*/
|
|
@@ -814,11 +818,15 @@ declare namespace bkper {
|
|
|
814
818
|
*/
|
|
815
819
|
agentId?: string;
|
|
816
820
|
/**
|
|
817
|
-
* The agent
|
|
821
|
+
* The logo of the agent that created the transaction
|
|
818
822
|
*/
|
|
819
823
|
agentLogo?: string;
|
|
820
824
|
/**
|
|
821
|
-
* The agent
|
|
825
|
+
* The logo in dark mode, of the agent that created the transaction
|
|
826
|
+
*/
|
|
827
|
+
agentLogoDark?: string;
|
|
828
|
+
/**
|
|
829
|
+
* The name of the agent that created the transaction
|
|
822
830
|
*/
|
|
823
831
|
agentName?: string;
|
|
824
832
|
/**
|
|
@@ -1426,6 +1434,17 @@ declare namespace Paths {
|
|
|
1426
1434
|
export type $200 = bkper.TransactionOperation;
|
|
1427
1435
|
}
|
|
1428
1436
|
}
|
|
1437
|
+
namespace BkperV5StreamConversation {
|
|
1438
|
+
export interface BodyParameters {
|
|
1439
|
+
Message: Parameters.Message;
|
|
1440
|
+
}
|
|
1441
|
+
namespace Parameters {
|
|
1442
|
+
export type Message = bkper.Message;
|
|
1443
|
+
}
|
|
1444
|
+
namespace Responses {
|
|
1445
|
+
export type $200 = bkper.Message;
|
|
1446
|
+
}
|
|
1447
|
+
}
|
|
1429
1448
|
namespace BkperV5TrashTransaction {
|
|
1430
1449
|
export interface BodyParameters {
|
|
1431
1450
|
Transaction: Parameters.Transaction;
|