@randock/nameshift-api-client 0.0.206 → 0.0.207

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.206
1
+ ## @randock/nameshift-api-client@0.0.207
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.206 --save
39
+ npm install @randock/nameshift-api-client@0.0.207 --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
- 61acb77e1c58cc2cfdf4af3db6bc9fda84ce898dbfad50e814dc52fe98cbb85636615eb515a4e3d2fb76a228a0d20f13
47
+ e6d2f4d57e1043546910be99da010cb34afdeedff6cc8f7268770c7980792018b0dff35b3867739babd5e411e3d58f08
@@ -33,6 +33,12 @@ export interface LandingPageInput {
33
33
  * @memberof LandingPageInput
34
34
  */
35
35
  seoMetrics?: boolean | null;
36
+ /**
37
+ *
38
+ * @type {boolean}
39
+ * @memberof LandingPageInput
40
+ */
41
+ visitorStats?: boolean | null;
36
42
  }
37
43
  /**
38
44
  * Check if a given object implements the LandingPageInput interface.
@@ -35,6 +35,7 @@ function LandingPageInputFromJSONTyped(json, ignoreDiscriminator) {
35
35
  'anonymous': json['anonymous'] == null ? undefined : json['anonymous'],
36
36
  'showRelatedDomains': json['showRelatedDomains'] == null ? undefined : json['showRelatedDomains'],
37
37
  'seoMetrics': json['seoMetrics'] == null ? undefined : json['seoMetrics'],
38
+ 'visitorStats': json['visitorStats'] == null ? undefined : json['visitorStats'],
38
39
  };
39
40
  }
40
41
  function LandingPageInputToJSON(json) {
@@ -49,5 +50,6 @@ function LandingPageInputToJSONTyped(value, ignoreDiscriminator) {
49
50
  'anonymous': value['anonymous'],
50
51
  'showRelatedDomains': value['showRelatedDomains'],
51
52
  'seoMetrics': value['seoMetrics'],
53
+ 'visitorStats': value['visitorStats'],
52
54
  };
53
55
  }
@@ -33,6 +33,12 @@ export interface LandingPageSettingsDto {
33
33
  * @memberof LandingPageSettingsDto
34
34
  */
35
35
  seoMetrics: boolean | null;
36
+ /**
37
+ *
38
+ * @type {boolean}
39
+ * @memberof LandingPageSettingsDto
40
+ */
41
+ visitorStats: boolean | null;
36
42
  }
37
43
  /**
38
44
  * Check if a given object implements the LandingPageSettingsDto interface.
@@ -28,6 +28,8 @@ function instanceOfLandingPageSettingsDto(value) {
28
28
  return false;
29
29
  if (!('seoMetrics' in value) || value['seoMetrics'] === undefined)
30
30
  return false;
31
+ if (!('visitorStats' in value) || value['visitorStats'] === undefined)
32
+ return false;
31
33
  return true;
32
34
  }
33
35
  function LandingPageSettingsDtoFromJSON(json) {
@@ -41,6 +43,7 @@ function LandingPageSettingsDtoFromJSONTyped(json, ignoreDiscriminator) {
41
43
  'anonymous': json['anonymous'],
42
44
  'showRelatedDomains': json['showRelatedDomains'],
43
45
  'seoMetrics': json['seoMetrics'],
46
+ 'visitorStats': json['visitorStats'],
44
47
  };
45
48
  }
46
49
  function LandingPageSettingsDtoToJSON(json) {
@@ -55,5 +58,6 @@ function LandingPageSettingsDtoToJSONTyped(value, ignoreDiscriminator) {
55
58
  'anonymous': value['anonymous'],
56
59
  'showRelatedDomains': value['showRelatedDomains'],
57
60
  'seoMetrics': value['seoMetrics'],
61
+ 'visitorStats': value['visitorStats'],
58
62
  };
59
63
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.206",
3
+ "version": "0.0.207",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -37,6 +37,12 @@ export interface LandingPageInput {
37
37
  * @memberof LandingPageInput
38
38
  */
39
39
  seoMetrics?: boolean | null;
40
+ /**
41
+ *
42
+ * @type {boolean}
43
+ * @memberof LandingPageInput
44
+ */
45
+ visitorStats?: boolean | null;
40
46
  }
41
47
 
42
48
  /**
@@ -59,6 +65,7 @@ export function LandingPageInputFromJSONTyped(json: any, ignoreDiscriminator: bo
59
65
  'anonymous': json['anonymous'] == null ? undefined : json['anonymous'],
60
66
  'showRelatedDomains': json['showRelatedDomains'] == null ? undefined : json['showRelatedDomains'],
61
67
  'seoMetrics': json['seoMetrics'] == null ? undefined : json['seoMetrics'],
68
+ 'visitorStats': json['visitorStats'] == null ? undefined : json['visitorStats'],
62
69
  };
63
70
  }
64
71
 
@@ -76,6 +83,7 @@ export function LandingPageInputToJSONTyped(value?: LandingPageInput | null, ign
76
83
  'anonymous': value['anonymous'],
77
84
  'showRelatedDomains': value['showRelatedDomains'],
78
85
  'seoMetrics': value['seoMetrics'],
86
+ 'visitorStats': value['visitorStats'],
79
87
  };
80
88
  }
81
89
 
@@ -37,6 +37,12 @@ export interface LandingPageSettingsDto {
37
37
  * @memberof LandingPageSettingsDto
38
38
  */
39
39
  seoMetrics: boolean | null;
40
+ /**
41
+ *
42
+ * @type {boolean}
43
+ * @memberof LandingPageSettingsDto
44
+ */
45
+ visitorStats: boolean | null;
40
46
  }
41
47
 
42
48
  /**
@@ -46,6 +52,7 @@ export function instanceOfLandingPageSettingsDto(value: object): value is Landin
46
52
  if (!('anonymous' in value) || value['anonymous'] === undefined) return false;
47
53
  if (!('showRelatedDomains' in value) || value['showRelatedDomains'] === undefined) return false;
48
54
  if (!('seoMetrics' in value) || value['seoMetrics'] === undefined) return false;
55
+ if (!('visitorStats' in value) || value['visitorStats'] === undefined) return false;
49
56
  return true;
50
57
  }
51
58
 
@@ -62,6 +69,7 @@ export function LandingPageSettingsDtoFromJSONTyped(json: any, ignoreDiscriminat
62
69
  'anonymous': json['anonymous'],
63
70
  'showRelatedDomains': json['showRelatedDomains'],
64
71
  'seoMetrics': json['seoMetrics'],
72
+ 'visitorStats': json['visitorStats'],
65
73
  };
66
74
  }
67
75
 
@@ -79,6 +87,7 @@ export function LandingPageSettingsDtoToJSONTyped(value?: LandingPageSettingsDto
79
87
  'anonymous': value['anonymous'],
80
88
  'showRelatedDomains': value['showRelatedDomains'],
81
89
  'seoMetrics': value['seoMetrics'],
90
+ 'visitorStats': value['visitorStats'],
82
91
  };
83
92
  }
84
93