@vrplatform/api 1.3.1-stage.1475 → 1.3.1-stage.1478

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.
@@ -24138,10 +24138,13 @@ export interface operations {
24138
24138
  requestBody?: {
24139
24139
  content: {
24140
24140
  "application/json": {
24141
- date: string;
24141
+ date?: string | null;
24142
24142
  /** @description Value in cents (100 = 1€) */
24143
24143
  amount: number;
24144
- lineAccountId: string;
24144
+ /** Format: uuid */
24145
+ bankAccountId?: string;
24146
+ /** Format: uuid */
24147
+ lineAccountId?: string;
24145
24148
  };
24146
24149
  };
24147
24150
  };