@vrplatform/api 1.3.1-stage.1473 → 1.3.1-stage.1476

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
@@ -6,7 +6,7 @@
6
6
  "typings": "build/main/index.d.ts",
7
7
  "module": "build/module/index.js"
8
8
  },
9
- "version": "1.3.1-stage.1473",
9
+ "version": "1.3.1-stage.1476",
10
10
  "description": "",
11
11
  "main": "build/main/index.js",
12
12
  "module": "build/module/index.js",
@@ -24139,10 +24139,13 @@ export interface operations {
24139
24139
  requestBody?: {
24140
24140
  content: {
24141
24141
  "application/json": {
24142
- date: string;
24142
+ date?: string | null;
24143
24143
  /** @description Value in cents (100 = 1€) */
24144
24144
  amount: number;
24145
- lineAccountId: string;
24145
+ /** Format: uuid */
24146
+ bankAccountId?: string;
24147
+ /** Format: uuid */
24148
+ lineAccountId?: string;
24146
24149
  };
24147
24150
  };
24148
24151
  };