@dynamic-labs/sdk-api 0.0.1098 → 0.0.1099

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/sdk-api",
3
- "version": "0.0.1098",
3
+ "version": "0.0.1099",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -28,6 +28,7 @@ function FlowAnalyticsSummaryResponseStepBreakdownFromJSONTyped(json, ignoreDisc
28
28
  'expired': json['expired'],
29
29
  'failed': json['failed'],
30
30
  'inProgress': json['inProgress'],
31
+ 'reached': json['reached'],
31
32
  'stage': json['stage'],
32
33
  'total': json['total'],
33
34
  };
@@ -45,6 +46,7 @@ function FlowAnalyticsSummaryResponseStepBreakdownToJSON(value) {
45
46
  'expired': value.expired,
46
47
  'failed': value.failed,
47
48
  'inProgress': value.inProgress,
49
+ 'reached': value.reached,
48
50
  'stage': value.stage,
49
51
  'total': value.total,
50
52
  };
@@ -45,6 +45,12 @@ export interface FlowAnalyticsSummaryResponseStepBreakdown {
45
45
  * @memberof FlowAnalyticsSummaryResponseStepBreakdown
46
46
  */
47
47
  inProgress: number;
48
+ /**
49
+ *
50
+ * @type {number}
51
+ * @memberof FlowAnalyticsSummaryResponseStepBreakdown
52
+ */
53
+ reached: number;
48
54
  /**
49
55
  *
50
56
  * @type {string}
@@ -24,6 +24,7 @@ function FlowAnalyticsSummaryResponseStepBreakdownFromJSONTyped(json, ignoreDisc
24
24
  'expired': json['expired'],
25
25
  'failed': json['failed'],
26
26
  'inProgress': json['inProgress'],
27
+ 'reached': json['reached'],
27
28
  'stage': json['stage'],
28
29
  'total': json['total'],
29
30
  };
@@ -41,6 +42,7 @@ function FlowAnalyticsSummaryResponseStepBreakdownToJSON(value) {
41
42
  'expired': value.expired,
42
43
  'failed': value.failed,
43
44
  'inProgress': value.inProgress,
45
+ 'reached': value.reached,
44
46
  'stage': value.stage,
45
47
  'total': value.total,
46
48
  };