@vrplatform/api 1.3.1-stage.3989 → 1.3.1-stage.3991
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.
|
@@ -2801,6 +2801,23 @@ export interface paths {
|
|
|
2801
2801
|
patch?: never;
|
|
2802
2802
|
trace?: never;
|
|
2803
2803
|
};
|
|
2804
|
+
"/statements/line-description": {
|
|
2805
|
+
parameters: {
|
|
2806
|
+
query?: never;
|
|
2807
|
+
header?: never;
|
|
2808
|
+
path?: never;
|
|
2809
|
+
cookie?: never;
|
|
2810
|
+
};
|
|
2811
|
+
get?: never;
|
|
2812
|
+
put?: never;
|
|
2813
|
+
post?: never;
|
|
2814
|
+
delete?: never;
|
|
2815
|
+
options?: never;
|
|
2816
|
+
head?: never;
|
|
2817
|
+
/** @description Update an owner statement line description */
|
|
2818
|
+
patch: operations["patchStatementsLineDescription"];
|
|
2819
|
+
trace?: never;
|
|
2820
|
+
};
|
|
2804
2821
|
"/statements/manager/pay": {
|
|
2805
2822
|
parameters: {
|
|
2806
2823
|
query?: never;
|
|
@@ -44812,6 +44829,119 @@ export interface operations {
|
|
|
44812
44829
|
};
|
|
44813
44830
|
};
|
|
44814
44831
|
};
|
|
44832
|
+
patchStatementsLineDescription: {
|
|
44833
|
+
parameters: {
|
|
44834
|
+
query?: never;
|
|
44835
|
+
header?: never;
|
|
44836
|
+
path?: never;
|
|
44837
|
+
cookie?: never;
|
|
44838
|
+
};
|
|
44839
|
+
requestBody?: {
|
|
44840
|
+
content: {
|
|
44841
|
+
"application/json": {
|
|
44842
|
+
transactionId: string | null;
|
|
44843
|
+
/** Format: uuid */
|
|
44844
|
+
lineId: string;
|
|
44845
|
+
description: string;
|
|
44846
|
+
};
|
|
44847
|
+
};
|
|
44848
|
+
};
|
|
44849
|
+
responses: {
|
|
44850
|
+
/** @description Successful response */
|
|
44851
|
+
200: {
|
|
44852
|
+
headers: {
|
|
44853
|
+
[name: string]: unknown;
|
|
44854
|
+
};
|
|
44855
|
+
content: {
|
|
44856
|
+
"application/json": {
|
|
44857
|
+
/** Format: uuid */
|
|
44858
|
+
id: string;
|
|
44859
|
+
description: string;
|
|
44860
|
+
};
|
|
44861
|
+
};
|
|
44862
|
+
};
|
|
44863
|
+
/** @description Bad request */
|
|
44864
|
+
400: {
|
|
44865
|
+
headers: {
|
|
44866
|
+
[name: string]: unknown;
|
|
44867
|
+
};
|
|
44868
|
+
content: {
|
|
44869
|
+
"application/json": {
|
|
44870
|
+
code: string;
|
|
44871
|
+
message: string;
|
|
44872
|
+
issues?: {
|
|
44873
|
+
message: string;
|
|
44874
|
+
}[];
|
|
44875
|
+
context?: unknown;
|
|
44876
|
+
};
|
|
44877
|
+
};
|
|
44878
|
+
};
|
|
44879
|
+
/** @description Unauthorized */
|
|
44880
|
+
401: {
|
|
44881
|
+
headers: {
|
|
44882
|
+
[name: string]: unknown;
|
|
44883
|
+
};
|
|
44884
|
+
content: {
|
|
44885
|
+
"application/json": {
|
|
44886
|
+
code: string;
|
|
44887
|
+
message: string;
|
|
44888
|
+
issues?: {
|
|
44889
|
+
message: string;
|
|
44890
|
+
}[];
|
|
44891
|
+
context?: unknown;
|
|
44892
|
+
};
|
|
44893
|
+
};
|
|
44894
|
+
};
|
|
44895
|
+
/** @description Forbidden */
|
|
44896
|
+
403: {
|
|
44897
|
+
headers: {
|
|
44898
|
+
[name: string]: unknown;
|
|
44899
|
+
};
|
|
44900
|
+
content: {
|
|
44901
|
+
"application/json": {
|
|
44902
|
+
code: string;
|
|
44903
|
+
message: string;
|
|
44904
|
+
issues?: {
|
|
44905
|
+
message: string;
|
|
44906
|
+
}[];
|
|
44907
|
+
context?: unknown;
|
|
44908
|
+
};
|
|
44909
|
+
};
|
|
44910
|
+
};
|
|
44911
|
+
/** @description Not found */
|
|
44912
|
+
404: {
|
|
44913
|
+
headers: {
|
|
44914
|
+
[name: string]: unknown;
|
|
44915
|
+
};
|
|
44916
|
+
content: {
|
|
44917
|
+
"application/json": {
|
|
44918
|
+
code: string;
|
|
44919
|
+
message: string;
|
|
44920
|
+
issues?: {
|
|
44921
|
+
message: string;
|
|
44922
|
+
}[];
|
|
44923
|
+
context?: unknown;
|
|
44924
|
+
};
|
|
44925
|
+
};
|
|
44926
|
+
};
|
|
44927
|
+
/** @description Internal server error */
|
|
44928
|
+
500: {
|
|
44929
|
+
headers: {
|
|
44930
|
+
[name: string]: unknown;
|
|
44931
|
+
};
|
|
44932
|
+
content: {
|
|
44933
|
+
"application/json": {
|
|
44934
|
+
code: string;
|
|
44935
|
+
message: string;
|
|
44936
|
+
issues?: {
|
|
44937
|
+
message: string;
|
|
44938
|
+
}[];
|
|
44939
|
+
context?: unknown;
|
|
44940
|
+
};
|
|
44941
|
+
};
|
|
44942
|
+
};
|
|
44943
|
+
};
|
|
44944
|
+
};
|
|
44815
44945
|
postStatementsManagerPay: {
|
|
44816
44946
|
parameters: {
|
|
44817
44947
|
query?: never;
|