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