@dynamic-labs/sdk-api 0.0.383 → 0.0.384

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.383",
3
+ "version": "0.0.384",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -14,6 +14,7 @@ function EnvironmentVisitorsResponseUsersFromJSONTyped(json, ignoreDiscriminator
14
14
  }
15
15
  return {
16
16
  'count': !runtime.exists(json, 'count') ? undefined : json['count'],
17
+ 'uniquePastMonth': !runtime.exists(json, 'uniquePastMonth') ? undefined : json['uniquePastMonth'],
17
18
  };
18
19
  }
19
20
  function EnvironmentVisitorsResponseUsersToJSON(value) {
@@ -25,6 +26,7 @@ function EnvironmentVisitorsResponseUsersToJSON(value) {
25
26
  }
26
27
  return {
27
28
  'count': value.count,
29
+ 'uniquePastMonth': value.uniquePastMonth,
28
30
  };
29
31
  }
30
32
 
@@ -21,6 +21,12 @@ export interface EnvironmentVisitorsResponseUsers {
21
21
  * @memberof EnvironmentVisitorsResponseUsers
22
22
  */
23
23
  count?: number;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof EnvironmentVisitorsResponseUsers
28
+ */
29
+ uniquePastMonth?: number;
24
30
  }
25
31
  export declare function EnvironmentVisitorsResponseUsersFromJSON(json: any): EnvironmentVisitorsResponseUsers;
26
32
  export declare function EnvironmentVisitorsResponseUsersFromJSONTyped(json: any, ignoreDiscriminator: boolean): EnvironmentVisitorsResponseUsers;
@@ -10,6 +10,7 @@ function EnvironmentVisitorsResponseUsersFromJSONTyped(json, ignoreDiscriminator
10
10
  }
11
11
  return {
12
12
  'count': !exists(json, 'count') ? undefined : json['count'],
13
+ 'uniquePastMonth': !exists(json, 'uniquePastMonth') ? undefined : json['uniquePastMonth'],
13
14
  };
14
15
  }
15
16
  function EnvironmentVisitorsResponseUsersToJSON(value) {
@@ -21,6 +22,7 @@ function EnvironmentVisitorsResponseUsersToJSON(value) {
21
22
  }
22
23
  return {
23
24
  'count': value.count,
25
+ 'uniquePastMonth': value.uniquePastMonth,
24
26
  };
25
27
  }
26
28