@vrplatform/api 1.3.1-stage.2141 → 1.3.1-stage.2143
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.
|
@@ -2405,6 +2405,23 @@ export interface paths {
|
|
|
2405
2405
|
patch?: never;
|
|
2406
2406
|
trace?: never;
|
|
2407
2407
|
};
|
|
2408
|
+
"/statements/csv/detailed": {
|
|
2409
|
+
parameters: {
|
|
2410
|
+
query?: never;
|
|
2411
|
+
header?: never;
|
|
2412
|
+
path?: never;
|
|
2413
|
+
cookie?: never;
|
|
2414
|
+
};
|
|
2415
|
+
/** @description Get Owner Statement CSV export (detailed) */
|
|
2416
|
+
get: operations["getStatementsCsvDetailed"];
|
|
2417
|
+
put?: never;
|
|
2418
|
+
post?: never;
|
|
2419
|
+
delete?: never;
|
|
2420
|
+
options?: never;
|
|
2421
|
+
head?: never;
|
|
2422
|
+
patch?: never;
|
|
2423
|
+
trace?: never;
|
|
2424
|
+
};
|
|
2408
2425
|
"/statements/layouts": {
|
|
2409
2426
|
parameters: {
|
|
2410
2427
|
query?: never;
|
|
@@ -32787,6 +32804,126 @@ export interface operations {
|
|
|
32787
32804
|
};
|
|
32788
32805
|
};
|
|
32789
32806
|
};
|
|
32807
|
+
getStatementsCsvDetailed: {
|
|
32808
|
+
parameters: {
|
|
32809
|
+
query?: {
|
|
32810
|
+
periodIds?: string;
|
|
32811
|
+
/** @description Year in format YYYY */
|
|
32812
|
+
year?: number;
|
|
32813
|
+
listingIds?: string;
|
|
32814
|
+
statementIds?: string;
|
|
32815
|
+
/** @description Month string in format `YYYY-MM`. */
|
|
32816
|
+
month?: string;
|
|
32817
|
+
search?: string;
|
|
32818
|
+
status?: ("draft" | "inReview" | "published") | "all";
|
|
32819
|
+
ownerIds?: string;
|
|
32820
|
+
listingCollectionIds?: string;
|
|
32821
|
+
recurringFeeIds?: string;
|
|
32822
|
+
/** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
32823
|
+
dateRange?: string;
|
|
32824
|
+
isDateRangeEndInclusive?: boolean;
|
|
32825
|
+
layoutId?: string;
|
|
32826
|
+
};
|
|
32827
|
+
header?: never;
|
|
32828
|
+
path?: never;
|
|
32829
|
+
cookie?: never;
|
|
32830
|
+
};
|
|
32831
|
+
requestBody?: never;
|
|
32832
|
+
responses: {
|
|
32833
|
+
/** @description Successful response */
|
|
32834
|
+
200: {
|
|
32835
|
+
headers: {
|
|
32836
|
+
[name: string]: unknown;
|
|
32837
|
+
};
|
|
32838
|
+
content: {
|
|
32839
|
+
"application/json": {
|
|
32840
|
+
url: string;
|
|
32841
|
+
expIn: number;
|
|
32842
|
+
};
|
|
32843
|
+
};
|
|
32844
|
+
};
|
|
32845
|
+
/** @description Bad request */
|
|
32846
|
+
400: {
|
|
32847
|
+
headers: {
|
|
32848
|
+
[name: string]: unknown;
|
|
32849
|
+
};
|
|
32850
|
+
content: {
|
|
32851
|
+
"application/json": {
|
|
32852
|
+
code: string;
|
|
32853
|
+
message: string;
|
|
32854
|
+
issues?: {
|
|
32855
|
+
message: string;
|
|
32856
|
+
}[];
|
|
32857
|
+
context?: unknown;
|
|
32858
|
+
};
|
|
32859
|
+
};
|
|
32860
|
+
};
|
|
32861
|
+
/** @description Unauthorized */
|
|
32862
|
+
401: {
|
|
32863
|
+
headers: {
|
|
32864
|
+
[name: string]: unknown;
|
|
32865
|
+
};
|
|
32866
|
+
content: {
|
|
32867
|
+
"application/json": {
|
|
32868
|
+
code: string;
|
|
32869
|
+
message: string;
|
|
32870
|
+
issues?: {
|
|
32871
|
+
message: string;
|
|
32872
|
+
}[];
|
|
32873
|
+
context?: unknown;
|
|
32874
|
+
};
|
|
32875
|
+
};
|
|
32876
|
+
};
|
|
32877
|
+
/** @description Forbidden */
|
|
32878
|
+
403: {
|
|
32879
|
+
headers: {
|
|
32880
|
+
[name: string]: unknown;
|
|
32881
|
+
};
|
|
32882
|
+
content: {
|
|
32883
|
+
"application/json": {
|
|
32884
|
+
code: string;
|
|
32885
|
+
message: string;
|
|
32886
|
+
issues?: {
|
|
32887
|
+
message: string;
|
|
32888
|
+
}[];
|
|
32889
|
+
context?: unknown;
|
|
32890
|
+
};
|
|
32891
|
+
};
|
|
32892
|
+
};
|
|
32893
|
+
/** @description Not found */
|
|
32894
|
+
404: {
|
|
32895
|
+
headers: {
|
|
32896
|
+
[name: string]: unknown;
|
|
32897
|
+
};
|
|
32898
|
+
content: {
|
|
32899
|
+
"application/json": {
|
|
32900
|
+
code: string;
|
|
32901
|
+
message: string;
|
|
32902
|
+
issues?: {
|
|
32903
|
+
message: string;
|
|
32904
|
+
}[];
|
|
32905
|
+
context?: unknown;
|
|
32906
|
+
};
|
|
32907
|
+
};
|
|
32908
|
+
};
|
|
32909
|
+
/** @description Internal server error */
|
|
32910
|
+
500: {
|
|
32911
|
+
headers: {
|
|
32912
|
+
[name: string]: unknown;
|
|
32913
|
+
};
|
|
32914
|
+
content: {
|
|
32915
|
+
"application/json": {
|
|
32916
|
+
code: string;
|
|
32917
|
+
message: string;
|
|
32918
|
+
issues?: {
|
|
32919
|
+
message: string;
|
|
32920
|
+
}[];
|
|
32921
|
+
context?: unknown;
|
|
32922
|
+
};
|
|
32923
|
+
};
|
|
32924
|
+
};
|
|
32925
|
+
};
|
|
32926
|
+
};
|
|
32790
32927
|
getStatementsLayouts: {
|
|
32791
32928
|
parameters: {
|
|
32792
32929
|
query?: {
|