@vrplatform/api 1.3.1-stage.1960 → 1.3.1-stage.1962
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.
|
@@ -17685,7 +17685,9 @@ export interface operations {
|
|
|
17685
17685
|
};
|
|
17686
17686
|
deleteRecurringFeesById: {
|
|
17687
17687
|
parameters: {
|
|
17688
|
-
query?:
|
|
17688
|
+
query?: {
|
|
17689
|
+
onLocked?: "error" | "archive";
|
|
17690
|
+
};
|
|
17689
17691
|
header?: never;
|
|
17690
17692
|
path: {
|
|
17691
17693
|
id: string;
|
|
@@ -26177,6 +26179,21 @@ export interface operations {
|
|
|
26177
26179
|
transfers: number;
|
|
26178
26180
|
/** @description Value in cents (100 = 1€) */
|
|
26179
26181
|
balanceEnd: number;
|
|
26182
|
+
totals: {
|
|
26183
|
+
/** @description Value in cents (100 = 1€) */
|
|
26184
|
+
balanceStart: number;
|
|
26185
|
+
/** @description Value in cents (100 = 1€) */
|
|
26186
|
+
netRevenue: number;
|
|
26187
|
+
/** @description Value in cents (100 = 1€) */
|
|
26188
|
+
expenses: number;
|
|
26189
|
+
/** @description Value in cents (100 = 1€) */
|
|
26190
|
+
netIncome: number;
|
|
26191
|
+
/** @description Value in cents (100 = 1€) */
|
|
26192
|
+
transfers: number;
|
|
26193
|
+
/** @description Value in cents (100 = 1€) */
|
|
26194
|
+
balanceEnd: number;
|
|
26195
|
+
reserve: number;
|
|
26196
|
+
};
|
|
26180
26197
|
};
|
|
26181
26198
|
uniqueRef: string;
|
|
26182
26199
|
/** @description Currency in ISO 4217 format, will be converted to lowercase */
|
|
@@ -26381,9 +26398,25 @@ export interface operations {
|
|
|
26381
26398
|
transfers: number;
|
|
26382
26399
|
/** @description Value in cents (100 = 1€) */
|
|
26383
26400
|
balanceEnd: number;
|
|
26401
|
+
reserve: number;
|
|
26384
26402
|
/** @description Currency in ISO 4217 format, will be converted to lowercase */
|
|
26385
26403
|
currency: string;
|
|
26386
26404
|
}[];
|
|
26405
|
+
totals?: {
|
|
26406
|
+
/** @description Value in cents (100 = 1€) */
|
|
26407
|
+
balanceStart: number;
|
|
26408
|
+
/** @description Value in cents (100 = 1€) */
|
|
26409
|
+
netRevenue: number;
|
|
26410
|
+
/** @description Value in cents (100 = 1€) */
|
|
26411
|
+
expenses: number;
|
|
26412
|
+
/** @description Value in cents (100 = 1€) */
|
|
26413
|
+
netIncome: number;
|
|
26414
|
+
/** @description Value in cents (100 = 1€) */
|
|
26415
|
+
transfers: number;
|
|
26416
|
+
/** @description Value in cents (100 = 1€) */
|
|
26417
|
+
balanceEnd: number;
|
|
26418
|
+
reserve: number;
|
|
26419
|
+
};
|
|
26387
26420
|
};
|
|
26388
26421
|
};
|
|
26389
26422
|
};
|