@randock/nameshift-api-client 0.0.204 → 0.0.205

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @randock/nameshift-api-client@0.0.204
1
+ ## @randock/nameshift-api-client@0.0.205
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @randock/nameshift-api-client@0.0.204 --save
39
+ npm install @randock/nameshift-api-client@0.0.205 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -44,4 +44,4 @@ _unPublished (not recommended):_
44
44
  ```
45
45
  npm install PATH_TO_GENERATED_PACKAGE --save
46
46
  ```
47
- 479212f3c016df0dc067f5220f38e9b5fcbbaa0731492c097061880ab0f52d35c02ef3921d72a452917339f6bb82139a
47
+ da75ff4f28f9babf7afb773ed0be92d80fc424a8c1519ae95005c756ccf3638e192930eae115d476e8affe52a3fafd65
@@ -29,6 +29,12 @@ export interface SeoMetricsDto {
29
29
  * @memberof SeoMetricsDto
30
30
  */
31
31
  majestic: MajesticMetrics | null;
32
+ /**
33
+ *
34
+ * @type {MajesticMetrics}
35
+ * @memberof SeoMetricsDto
36
+ */
37
+ historical: MajesticMetrics | null;
32
38
  }
33
39
  /**
34
40
  * Check if a given object implements the SeoMetricsDto interface.
@@ -28,6 +28,8 @@ function instanceOfSeoMetricsDto(value) {
28
28
  return false;
29
29
  if (!('majestic' in value) || value['majestic'] === undefined)
30
30
  return false;
31
+ if (!('historical' in value) || value['historical'] === undefined)
32
+ return false;
31
33
  return true;
32
34
  }
33
35
  function SeoMetricsDtoFromJSON(json) {
@@ -40,6 +42,7 @@ function SeoMetricsDtoFromJSONTyped(json, ignoreDiscriminator) {
40
42
  return {
41
43
  'moz': (0, MozMetrics_1.MozMetricsFromJSON)(json['moz']),
42
44
  'majestic': (0, MajesticMetrics_1.MajesticMetricsFromJSON)(json['majestic']),
45
+ 'historical': (0, MajesticMetrics_1.MajesticMetricsFromJSON)(json['historical']),
43
46
  };
44
47
  }
45
48
  function SeoMetricsDtoToJSON(json) {
@@ -53,5 +56,6 @@ function SeoMetricsDtoToJSONTyped(value, ignoreDiscriminator) {
53
56
  return {
54
57
  'moz': (0, MozMetrics_1.MozMetricsToJSON)(value['moz']),
55
58
  'majestic': (0, MajesticMetrics_1.MajesticMetricsToJSON)(value['majestic']),
59
+ 'historical': (0, MajesticMetrics_1.MajesticMetricsToJSON)(value['historical']),
56
60
  };
57
61
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.204",
3
+ "version": "0.0.205",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -46,6 +46,12 @@ export interface SeoMetricsDto {
46
46
  * @memberof SeoMetricsDto
47
47
  */
48
48
  majestic: MajesticMetrics | null;
49
+ /**
50
+ *
51
+ * @type {MajesticMetrics}
52
+ * @memberof SeoMetricsDto
53
+ */
54
+ historical: MajesticMetrics | null;
49
55
  }
50
56
 
51
57
  /**
@@ -54,6 +60,7 @@ export interface SeoMetricsDto {
54
60
  export function instanceOfSeoMetricsDto(value: object): value is SeoMetricsDto {
55
61
  if (!('moz' in value) || value['moz'] === undefined) return false;
56
62
  if (!('majestic' in value) || value['majestic'] === undefined) return false;
63
+ if (!('historical' in value) || value['historical'] === undefined) return false;
57
64
  return true;
58
65
  }
59
66
 
@@ -69,6 +76,7 @@ export function SeoMetricsDtoFromJSONTyped(json: any, ignoreDiscriminator: boole
69
76
 
70
77
  'moz': MozMetricsFromJSON(json['moz']),
71
78
  'majestic': MajesticMetricsFromJSON(json['majestic']),
79
+ 'historical': MajesticMetricsFromJSON(json['historical']),
72
80
  };
73
81
  }
74
82
 
@@ -85,6 +93,7 @@ export function SeoMetricsDtoToJSONTyped(value?: SeoMetricsDto | null, ignoreDis
85
93
 
86
94
  'moz': MozMetricsToJSON(value['moz']),
87
95
  'majestic': MajesticMetricsToJSON(value['majestic']),
96
+ 'historical': MajesticMetricsToJSON(value['historical']),
88
97
  };
89
98
  }
90
99