@vrplatform/api 1.3.0-stage.1088 → 1.3.0-stage.1090

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.
@@ -1800,6 +1800,23 @@ export interface paths {
1800
1800
  patch?: never;
1801
1801
  trace?: never;
1802
1802
  };
1803
+ "/report/journal-entries/csv": {
1804
+ parameters: {
1805
+ query?: never;
1806
+ header?: never;
1807
+ path?: never;
1808
+ cookie?: never;
1809
+ };
1810
+ /** @description CSV export for journal entries */
1811
+ get: operations["getJournalEntriesReportCsv"];
1812
+ put?: never;
1813
+ post?: never;
1814
+ delete?: never;
1815
+ options?: never;
1816
+ head?: never;
1817
+ patch?: never;
1818
+ trace?: never;
1819
+ };
1803
1820
  "/calendar-blocks": {
1804
1821
  parameters: {
1805
1822
  query?: never;
@@ -23604,6 +23621,101 @@ export interface operations {
23604
23621
  };
23605
23622
  };
23606
23623
  };
23624
+ getJournalEntriesReportCsv: {
23625
+ parameters: {
23626
+ query?: {
23627
+ /** @description comma separated journal entry ids */
23628
+ ids?: string;
23629
+ txnCode?: string;
23630
+ published?: boolean;
23631
+ status?: "active" | "inactive";
23632
+ startAt?: string;
23633
+ endAt?: string;
23634
+ search?: string;
23635
+ date?: string;
23636
+ amount?: string;
23637
+ isDateRangeEndInclusive?: boolean;
23638
+ reservationIds?: string;
23639
+ transactionIds?: string;
23640
+ /** @description Currency in ISO 4217 format, will be converted to lowercase */
23641
+ currency?: string;
23642
+ /** @description listing ids comma separated or "unmapped" */
23643
+ listingIds?: string;
23644
+ /** @description account ids comma separated accounts or "unmapped" */
23645
+ accountIds?: string;
23646
+ /** @description comma separated categories */
23647
+ categoryIds?: string;
23648
+ classifications?: string;
23649
+ types?: string;
23650
+ entityTypes?: string;
23651
+ party?: "owners" | "manager";
23652
+ };
23653
+ header?: {
23654
+ "X-Team-Id"?: string;
23655
+ };
23656
+ path?: never;
23657
+ cookie?: never;
23658
+ };
23659
+ requestBody?: never;
23660
+ responses: {
23661
+ /** @description Successful response */
23662
+ 200: {
23663
+ headers: {
23664
+ [name: string]: unknown;
23665
+ };
23666
+ content: {
23667
+ "application/json": {
23668
+ url: string;
23669
+ };
23670
+ };
23671
+ };
23672
+ /** @description Invalid input data */
23673
+ 400: {
23674
+ headers: {
23675
+ [name: string]: unknown;
23676
+ };
23677
+ content: {
23678
+ "application/json": components["schemas"]["error.BAD_REQUEST"];
23679
+ };
23680
+ };
23681
+ /** @description Authorization not provided */
23682
+ 401: {
23683
+ headers: {
23684
+ [name: string]: unknown;
23685
+ };
23686
+ content: {
23687
+ "application/json": components["schemas"]["error.UNAUTHORIZED"];
23688
+ };
23689
+ };
23690
+ /** @description Insufficient access */
23691
+ 403: {
23692
+ headers: {
23693
+ [name: string]: unknown;
23694
+ };
23695
+ content: {
23696
+ "application/json": components["schemas"]["error.FORBIDDEN"];
23697
+ };
23698
+ };
23699
+ /** @description Not found */
23700
+ 404: {
23701
+ headers: {
23702
+ [name: string]: unknown;
23703
+ };
23704
+ content: {
23705
+ "application/json": components["schemas"]["error.NOT_FOUND"];
23706
+ };
23707
+ };
23708
+ /** @description Internal server error */
23709
+ 500: {
23710
+ headers: {
23711
+ [name: string]: unknown;
23712
+ };
23713
+ content: {
23714
+ "application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
23715
+ };
23716
+ };
23717
+ };
23718
+ };
23607
23719
  getCalendar: {
23608
23720
  parameters: {
23609
23721
  query: {