@bkper/bkper-api-types 5.6.0 → 5.7.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 +25 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -461,7 +461,15 @@ declare namespace bkper {
|
|
|
461
461
|
items?: Connection[];
|
|
462
462
|
}
|
|
463
463
|
export interface Count {
|
|
464
|
+
day?: number; // int32
|
|
465
|
+
fuzzyDate?: number; // int32
|
|
466
|
+
month?: number; // int32
|
|
464
467
|
total?: number; // int64
|
|
468
|
+
year?: number; // int32
|
|
469
|
+
}
|
|
470
|
+
export interface Counts {
|
|
471
|
+
posted?: Count[];
|
|
472
|
+
trashed?: Count[];
|
|
465
473
|
}
|
|
466
474
|
export interface Event {
|
|
467
475
|
agent?: Agent;
|
|
@@ -474,6 +482,10 @@ declare namespace bkper {
|
|
|
474
482
|
* The creation timestamp, in milliseconds
|
|
475
483
|
*/
|
|
476
484
|
createdAt?: string;
|
|
485
|
+
/**
|
|
486
|
+
* The creation date time on RFC3339 format
|
|
487
|
+
*/
|
|
488
|
+
createdOn?: string; // date-time
|
|
477
489
|
data?: EventData;
|
|
478
490
|
/**
|
|
479
491
|
* The unique id that identifies the Event
|
|
@@ -866,6 +878,11 @@ declare namespace Paths {
|
|
|
866
878
|
export type $200 = bkper.Count;
|
|
867
879
|
}
|
|
868
880
|
}
|
|
881
|
+
namespace BkperV5CountTransactionsPosted {
|
|
882
|
+
namespace Responses {
|
|
883
|
+
export type $200 = bkper.Counts;
|
|
884
|
+
}
|
|
885
|
+
}
|
|
869
886
|
namespace BkperV5CreateAccount {
|
|
870
887
|
export interface BodyParameters {
|
|
871
888
|
Account: Parameters.Account;
|
|
@@ -1154,6 +1171,14 @@ declare namespace Paths {
|
|
|
1154
1171
|
export type $200 = bkper.TransactionOperation;
|
|
1155
1172
|
}
|
|
1156
1173
|
}
|
|
1174
|
+
namespace BkperV5ReplayEvents {
|
|
1175
|
+
export interface BodyParameters {
|
|
1176
|
+
EventList: Parameters.EventList;
|
|
1177
|
+
}
|
|
1178
|
+
namespace Parameters {
|
|
1179
|
+
export type EventList = bkper.EventList;
|
|
1180
|
+
}
|
|
1181
|
+
}
|
|
1157
1182
|
namespace BkperV5RestoreTransaction {
|
|
1158
1183
|
export interface BodyParameters {
|
|
1159
1184
|
Transaction: Parameters.Transaction;
|