@vrplatform/api 1.2.33-stage.808 → 1.2.33-stage.809

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
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.2.33-stage.808",
6
+ "version": "1.2.33-stage.809",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -20996,17 +20996,25 @@ export interface operations {
20996
20996
  date: string;
20997
20997
  total: number;
20998
20998
  syncs: {
20999
- completed?: {
21000
- [key: string]: number;
20999
+ completed: {
21000
+ [key: string]: {
21001
+ [key: string]: number;
21002
+ };
21001
21003
  };
21002
- skipped?: {
21003
- [key: string]: number;
21004
+ skipped: {
21005
+ [key: string]: {
21006
+ [key: string]: number;
21007
+ };
21004
21008
  };
21005
- failed?: {
21006
- [key: string]: number;
21009
+ failed: {
21010
+ [key: string]: {
21011
+ [key: string]: number;
21012
+ };
21007
21013
  };
21008
- queued?: {
21009
- [key: string]: number;
21014
+ queued: {
21015
+ [key: string]: {
21016
+ [key: string]: number;
21017
+ };
21010
21018
  };
21011
21019
  };
21012
21020
  }[];