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

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