@vrplatform/api 1.2.34 → 1.2.36
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.
|
@@ -22504,12 +22504,18 @@ export interface operations {
|
|
|
22504
22504
|
getJournalEntriesReport: {
|
|
22505
22505
|
parameters: {
|
|
22506
22506
|
query?: {
|
|
22507
|
+
txnCode?: string;
|
|
22508
|
+
active?: "active" | "inactive";
|
|
22509
|
+
types?: string;
|
|
22510
|
+
classifications?: string;
|
|
22507
22511
|
startAt?: string;
|
|
22508
22512
|
endAt?: string;
|
|
22509
22513
|
search?: string;
|
|
22510
22514
|
date?: string;
|
|
22511
22515
|
amount?: string;
|
|
22512
22516
|
isDateRangeEndInclusive?: boolean;
|
|
22517
|
+
reservationIds?: string;
|
|
22518
|
+
transactionIds?: string;
|
|
22513
22519
|
/** @description listing uuids comma separated or "unmapped" */
|
|
22514
22520
|
listingIds?: string;
|
|
22515
22521
|
/** @description comma separated accounts */
|
|
@@ -22540,6 +22546,8 @@ export interface operations {
|
|
|
22540
22546
|
"application/json": {
|
|
22541
22547
|
data: {
|
|
22542
22548
|
id: string;
|
|
22549
|
+
/** @enum {string} */
|
|
22550
|
+
active: "active" | "inactive";
|
|
22543
22551
|
txnCode: string;
|
|
22544
22552
|
txnAt: string;
|
|
22545
22553
|
description: string;
|
|
@@ -22867,6 +22875,8 @@ export interface operations {
|
|
|
22867
22875
|
"application/json": {
|
|
22868
22876
|
data: {
|
|
22869
22877
|
id: string;
|
|
22878
|
+
/** @enum {string} */
|
|
22879
|
+
active: "active" | "inactive";
|
|
22870
22880
|
txnCode: string;
|
|
22871
22881
|
txnAt: string;
|
|
22872
22882
|
description: string;
|