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