@vrplatform/api 1.3.1-stage.2530 → 1.3.1-stage.2531

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.1-stage.2530",
6
+ "version": "1.3.1-stage.2531",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -2491,6 +2491,23 @@ export interface paths {
2491
2491
  patch?: never;
2492
2492
  trace?: never;
2493
2493
  };
2494
+ "/source-download": {
2495
+ parameters: {
2496
+ query?: never;
2497
+ header?: never;
2498
+ path?: never;
2499
+ cookie?: never;
2500
+ };
2501
+ /** @description Download source JSON or the original imported source file for an entity. */
2502
+ get: operations["downloadSource"];
2503
+ put?: never;
2504
+ post?: never;
2505
+ delete?: never;
2506
+ options?: never;
2507
+ head?: never;
2508
+ patch?: never;
2509
+ trace?: never;
2510
+ };
2494
2511
  "/statements": {
2495
2512
  parameters: {
2496
2513
  query?: never;
@@ -32856,6 +32873,109 @@ export interface operations {
32856
32873
  };
32857
32874
  };
32858
32875
  };
32876
+ downloadSource: {
32877
+ parameters: {
32878
+ query: {
32879
+ id: string;
32880
+ type: "source" | "payment" | "deposit" | "expense" | "payout" | "transfer" | "transaction" | "reservation" | "bankRecord" | "bankAccount" | "listing" | "listingConnection" | "owner" | "ownerStatement";
32881
+ };
32882
+ header?: never;
32883
+ path?: never;
32884
+ cookie?: never;
32885
+ };
32886
+ requestBody?: never;
32887
+ responses: {
32888
+ /** @description Successful response */
32889
+ 200: {
32890
+ headers: {
32891
+ [name: string]: unknown;
32892
+ };
32893
+ content: {
32894
+ "application/json": Record<string, never>;
32895
+ };
32896
+ };
32897
+ /** @description Bad request */
32898
+ 400: {
32899
+ headers: {
32900
+ [name: string]: unknown;
32901
+ };
32902
+ content: {
32903
+ "application/json": {
32904
+ code: string;
32905
+ message: string;
32906
+ issues?: {
32907
+ message: string;
32908
+ }[];
32909
+ context?: unknown;
32910
+ };
32911
+ };
32912
+ };
32913
+ /** @description Unauthorized */
32914
+ 401: {
32915
+ headers: {
32916
+ [name: string]: unknown;
32917
+ };
32918
+ content: {
32919
+ "application/json": {
32920
+ code: string;
32921
+ message: string;
32922
+ issues?: {
32923
+ message: string;
32924
+ }[];
32925
+ context?: unknown;
32926
+ };
32927
+ };
32928
+ };
32929
+ /** @description Forbidden */
32930
+ 403: {
32931
+ headers: {
32932
+ [name: string]: unknown;
32933
+ };
32934
+ content: {
32935
+ "application/json": {
32936
+ code: string;
32937
+ message: string;
32938
+ issues?: {
32939
+ message: string;
32940
+ }[];
32941
+ context?: unknown;
32942
+ };
32943
+ };
32944
+ };
32945
+ /** @description Not found */
32946
+ 404: {
32947
+ headers: {
32948
+ [name: string]: unknown;
32949
+ };
32950
+ content: {
32951
+ "application/json": {
32952
+ code: string;
32953
+ message: string;
32954
+ issues?: {
32955
+ message: string;
32956
+ }[];
32957
+ context?: unknown;
32958
+ };
32959
+ };
32960
+ };
32961
+ /** @description Internal server error */
32962
+ 500: {
32963
+ headers: {
32964
+ [name: string]: unknown;
32965
+ };
32966
+ content: {
32967
+ "application/json": {
32968
+ code: string;
32969
+ message: string;
32970
+ issues?: {
32971
+ message: string;
32972
+ }[];
32973
+ context?: unknown;
32974
+ };
32975
+ };
32976
+ };
32977
+ };
32978
+ };
32859
32979
  getStatements: {
32860
32980
  parameters: {
32861
32981
  query?: {