@vrplatform/api 1.2.33-stage.677 → 1.2.33-stage.679

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.677",
6
+ "version": "1.2.33-stage.679",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -18517,15 +18517,19 @@ export interface operations {
18517
18517
  content: {
18518
18518
  "application/json": {
18519
18519
  /** Format: uuid */
18520
- syncId: string;
18521
- change?: {
18520
+ id: string;
18521
+ /** @enum {string} */
18522
+ status: "completed" | "failed";
18523
+ message: string;
18524
+ changes: {
18522
18525
  /** Format: uuid */
18523
- entityId: string;
18524
- message: string;
18525
- };
18526
- error?: {
18526
+ id: string;
18527
18527
  message: string;
18528
- };
18528
+ /** @enum {string} */
18529
+ status: "completed" | "failed";
18530
+ entityType: string;
18531
+ entityUniqueRef: string;
18532
+ }[];
18529
18533
  };
18530
18534
  };
18531
18535
  };