@vrplatform/api 1.2.33-973 → 1.2.33-976

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-973",
6
+ "version": "1.2.33-976",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -1274,7 +1274,7 @@ export interface paths {
1274
1274
  path?: never;
1275
1275
  cookie?: never;
1276
1276
  };
1277
- /** @description Sync Metrics by Status */
1277
+ /** @description Change Metrics by Status */
1278
1278
  get: operations["getSyncMetricsByStatus"];
1279
1279
  put?: never;
1280
1280
  post?: never;
@@ -20200,6 +20200,7 @@ export interface operations {
20200
20200
  query: {
20201
20201
  dimension?: "month" | "week" | "day" | "year";
20202
20202
  connectionId: string;
20203
+ view: "automate" | "extract";
20203
20204
  dateRange?: string;
20204
20205
  isDateRangeEndInclusive?: boolean;
20205
20206
  };
@@ -20221,38 +20222,18 @@ export interface operations {
20221
20222
  data: {
20222
20223
  date: string;
20223
20224
  total: number;
20224
- syncs: {
20225
- completed: {
20226
- automate?: {
20227
- [key: string]: number;
20228
- };
20229
- extract?: {
20230
- [key: string]: number;
20231
- };
20225
+ changes: {
20226
+ completed?: {
20227
+ [key: string]: number;
20232
20228
  };
20233
- skipped: {
20234
- automate?: {
20235
- [key: string]: number;
20236
- };
20237
- extract?: {
20238
- [key: string]: number;
20239
- };
20229
+ skipped?: {
20230
+ [key: string]: number;
20240
20231
  };
20241
- failed: {
20242
- automate?: {
20243
- [key: string]: number;
20244
- };
20245
- extract?: {
20246
- [key: string]: number;
20247
- };
20232
+ failed?: {
20233
+ [key: string]: number;
20248
20234
  };
20249
- queued: {
20250
- automate?: {
20251
- [key: string]: number;
20252
- };
20253
- extract?: {
20254
- [key: string]: number;
20255
- };
20235
+ queued?: {
20236
+ [key: string]: number;
20256
20237
  };
20257
20238
  };
20258
20239
  }[];