@randock/nameshift-api-client 0.0.209 → 0.0.210

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