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