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