@randock/nameshift-api-client 0.0.275 → 0.0.277

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.275
1
+ ## @randock/nameshift-api-client@0.0.277
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.275 --save
39
+ npm install @randock/nameshift-api-client@0.0.277 --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
- d86f6a5d8ec95e3c01b8f8c7108b3ff7b97af70de7f295c83da567b99384990cb587d58913ddb2ab29d360da5d2d9cfd
47
+ f48e1477b01ef4d17b4ec2cf2fdce77f26d6c43224f7d90b0026bb6a2c31c510094b31159c2d0fa67a577e1222bec5f6
@@ -34,6 +34,12 @@ export interface DomainSellerDto {
34
34
  * @memberof DomainSellerDto
35
35
  */
36
36
  anonymous: boolean;
37
+ /**
38
+ * Show trustpilot
39
+ * @type {boolean}
40
+ * @memberof DomainSellerDto
41
+ */
42
+ showTrustpilot: boolean;
37
43
  /**
38
44
  * Last online, formatted
39
45
  * @type {Date}
@@ -29,6 +29,8 @@ function instanceOfDomainSellerDto(value) {
29
29
  return false;
30
30
  if (!('anonymous' in value) || value['anonymous'] === undefined)
31
31
  return false;
32
+ if (!('showTrustpilot' in value) || value['showTrustpilot'] === undefined)
33
+ return false;
32
34
  if (!('lastOnline' in value) || value['lastOnline'] === undefined)
33
35
  return false;
34
36
  if (!('deliversIn' in value) || value['deliversIn'] === undefined)
@@ -54,6 +56,7 @@ function DomainSellerDtoFromJSONTyped(json, ignoreDiscriminator) {
54
56
  'id': json['id'],
55
57
  'createdAt': (new Date(json['createdAt'])),
56
58
  'anonymous': json['anonymous'],
59
+ 'showTrustpilot': json['showTrustpilot'],
57
60
  'lastOnline': (json['lastOnline'] == null ? null : new Date(json['lastOnline'])),
58
61
  'deliversIn': json['deliversIn'],
59
62
  'name': json['name'],
@@ -74,6 +77,7 @@ function DomainSellerDtoToJSONTyped(value, ignoreDiscriminator) {
74
77
  'id': value['id'],
75
78
  'createdAt': ((value['createdAt']).toISOString()),
76
79
  'anonymous': value['anonymous'],
80
+ 'showTrustpilot': value['showTrustpilot'],
77
81
  'lastOnline': (value['lastOnline'] == null ? null : value['lastOnline'].toISOString()),
78
82
  'deliversIn': value['deliversIn'],
79
83
  'name': value['name'],
@@ -39,6 +39,18 @@ export interface LandingPageInput {
39
39
  * @memberof LandingPageInput
40
40
  */
41
41
  showDeliversIn?: boolean | null;
42
+ /**
43
+ *
44
+ * @type {boolean}
45
+ * @memberof LandingPageInput
46
+ */
47
+ showTrustpilot?: boolean | null;
48
+ /**
49
+ *
50
+ * @type {boolean}
51
+ * @memberof LandingPageInput
52
+ */
53
+ dnssec?: boolean | null;
42
54
  /**
43
55
  *
44
56
  * @type {boolean}
@@ -36,6 +36,8 @@ function LandingPageInputFromJSONTyped(json, ignoreDiscriminator) {
36
36
  'showRelatedDomains': json['showRelatedDomains'] == null ? undefined : json['showRelatedDomains'],
37
37
  'showLastOnline': json['showLastOnline'] == null ? undefined : json['showLastOnline'],
38
38
  'showDeliversIn': json['showDeliversIn'] == null ? undefined : json['showDeliversIn'],
39
+ 'showTrustpilot': json['showTrustpilot'] == null ? undefined : json['showTrustpilot'],
40
+ 'dnssec': json['dnssec'] == null ? undefined : json['dnssec'],
39
41
  'seoMetrics': json['seoMetrics'] == null ? undefined : json['seoMetrics'],
40
42
  'visitorStats': json['visitorStats'] == null ? undefined : json['visitorStats'],
41
43
  'minDomainAuthority': json['minDomainAuthority'] == null ? undefined : json['minDomainAuthority'],
@@ -54,6 +56,8 @@ function LandingPageInputToJSONTyped(value, ignoreDiscriminator) {
54
56
  'showRelatedDomains': value['showRelatedDomains'],
55
57
  'showLastOnline': value['showLastOnline'],
56
58
  'showDeliversIn': value['showDeliversIn'],
59
+ 'showTrustpilot': value['showTrustpilot'],
60
+ 'dnssec': value['dnssec'],
57
61
  'seoMetrics': value['seoMetrics'],
58
62
  'visitorStats': value['visitorStats'],
59
63
  'minDomainAuthority': value['minDomainAuthority'],
@@ -57,6 +57,18 @@ export interface LandingPageSettingsDto {
57
57
  * @memberof LandingPageSettingsDto
58
58
  */
59
59
  showDeliversIn: boolean | null;
60
+ /**
61
+ *
62
+ * @type {boolean}
63
+ * @memberof LandingPageSettingsDto
64
+ */
65
+ showTrustpilot: boolean | null;
66
+ /**
67
+ *
68
+ * @type {boolean}
69
+ * @memberof LandingPageSettingsDto
70
+ */
71
+ dnssec: boolean | null;
60
72
  }
61
73
  /**
62
74
  * Check if a given object implements the LandingPageSettingsDto interface.
@@ -36,6 +36,10 @@ function instanceOfLandingPageSettingsDto(value) {
36
36
  return false;
37
37
  if (!('showDeliversIn' in value) || value['showDeliversIn'] === undefined)
38
38
  return false;
39
+ if (!('showTrustpilot' in value) || value['showTrustpilot'] === undefined)
40
+ return false;
41
+ if (!('dnssec' in value) || value['dnssec'] === undefined)
42
+ return false;
39
43
  return true;
40
44
  }
41
45
  function LandingPageSettingsDtoFromJSON(json) {
@@ -53,6 +57,8 @@ function LandingPageSettingsDtoFromJSONTyped(json, ignoreDiscriminator) {
53
57
  'minDomainAuthority': json['minDomainAuthority'],
54
58
  'showLastOnline': json['showLastOnline'],
55
59
  'showDeliversIn': json['showDeliversIn'],
60
+ 'showTrustpilot': json['showTrustpilot'],
61
+ 'dnssec': json['dnssec'],
56
62
  };
57
63
  }
58
64
  function LandingPageSettingsDtoToJSON(json) {
@@ -71,5 +77,7 @@ function LandingPageSettingsDtoToJSONTyped(value, ignoreDiscriminator) {
71
77
  'minDomainAuthority': value['minDomainAuthority'],
72
78
  'showLastOnline': value['showLastOnline'],
73
79
  'showDeliversIn': value['showDeliversIn'],
80
+ 'showTrustpilot': value['showTrustpilot'],
81
+ 'dnssec': value['dnssec'],
74
82
  };
75
83
  }
@@ -57,6 +57,18 @@ export interface WithSettingsInner {
57
57
  * @memberof WithSettingsInner
58
58
  */
59
59
  showDeliversIn: boolean;
60
+ /**
61
+ *
62
+ * @type {boolean}
63
+ * @memberof WithSettingsInner
64
+ */
65
+ showTrustpilot: boolean;
66
+ /**
67
+ *
68
+ * @type {boolean}
69
+ * @memberof WithSettingsInner
70
+ */
71
+ dnssec: boolean;
60
72
  /**
61
73
  *
62
74
  * @type {string}
@@ -40,6 +40,10 @@ function instanceOfWithSettingsInner(value) {
40
40
  return false;
41
41
  if (!('showDeliversIn' in value) || value['showDeliversIn'] === undefined)
42
42
  return false;
43
+ if (!('showTrustpilot' in value) || value['showTrustpilot'] === undefined)
44
+ return false;
45
+ if (!('dnssec' in value) || value['dnssec'] === undefined)
46
+ return false;
43
47
  if (!('sidnIdcode' in value) || value['sidnIdcode'] === undefined)
44
48
  return false;
45
49
  if (!('leaseToOwn' in value) || value['leaseToOwn'] === undefined)
@@ -72,6 +76,8 @@ function WithSettingsInnerFromJSONTyped(json, ignoreDiscriminator) {
72
76
  'showRelatedDomains': json['showRelatedDomains'],
73
77
  'showLastOnline': json['showLastOnline'],
74
78
  'showDeliversIn': json['showDeliversIn'],
79
+ 'showTrustpilot': json['showTrustpilot'],
80
+ 'dnssec': json['dnssec'],
75
81
  'sidnIdcode': json['sidnIdcode'],
76
82
  'leaseToOwn': (0, AccountSettingsLeaseToOwnConfigurationDto_1.AccountSettingsLeaseToOwnConfigurationDtoFromJSON)(json['leaseToOwn']),
77
83
  'rent': (0, AccountSettingsRentConfigurationDto_1.AccountSettingsRentConfigurationDtoFromJSON)(json['rent']),
@@ -97,6 +103,8 @@ function WithSettingsInnerToJSONTyped(value, ignoreDiscriminator) {
97
103
  'showRelatedDomains': value['showRelatedDomains'],
98
104
  'showLastOnline': value['showLastOnline'],
99
105
  'showDeliversIn': value['showDeliversIn'],
106
+ 'showTrustpilot': value['showTrustpilot'],
107
+ 'dnssec': value['dnssec'],
100
108
  'sidnIdcode': value['sidnIdcode'],
101
109
  'leaseToOwn': (0, AccountSettingsLeaseToOwnConfigurationDto_1.AccountSettingsLeaseToOwnConfigurationDtoToJSON)(value['leaseToOwn']),
102
110
  'rent': (0, AccountSettingsRentConfigurationDto_1.AccountSettingsRentConfigurationDtoToJSON)(value['rent']),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.275",
3
+ "version": "0.0.277",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -45,6 +45,12 @@ export interface DomainSellerDto {
45
45
  * @memberof DomainSellerDto
46
46
  */
47
47
  anonymous: boolean;
48
+ /**
49
+ * Show trustpilot
50
+ * @type {boolean}
51
+ * @memberof DomainSellerDto
52
+ */
53
+ showTrustpilot: boolean;
48
54
  /**
49
55
  * Last online, formatted
50
56
  * @type {Date}
@@ -90,6 +96,7 @@ export function instanceOfDomainSellerDto(value: object): value is DomainSellerD
90
96
  if (!('id' in value) || value['id'] === undefined) return false;
91
97
  if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
92
98
  if (!('anonymous' in value) || value['anonymous'] === undefined) return false;
99
+ if (!('showTrustpilot' in value) || value['showTrustpilot'] === undefined) return false;
93
100
  if (!('lastOnline' in value) || value['lastOnline'] === undefined) return false;
94
101
  if (!('deliversIn' in value) || value['deliversIn'] === undefined) return false;
95
102
  if (!('name' in value) || value['name'] === undefined) return false;
@@ -112,6 +119,7 @@ export function DomainSellerDtoFromJSONTyped(json: any, ignoreDiscriminator: boo
112
119
  'id': json['id'],
113
120
  'createdAt': (new Date(json['createdAt'])),
114
121
  'anonymous': json['anonymous'],
122
+ 'showTrustpilot': json['showTrustpilot'],
115
123
  'lastOnline': (json['lastOnline'] == null ? null : new Date(json['lastOnline'])),
116
124
  'deliversIn': json['deliversIn'],
117
125
  'name': json['name'],
@@ -135,6 +143,7 @@ export function DomainSellerDtoToJSONTyped(value?: DomainSellerDto | null, ignor
135
143
  'id': value['id'],
136
144
  'createdAt': ((value['createdAt']).toISOString()),
137
145
  'anonymous': value['anonymous'],
146
+ 'showTrustpilot': value['showTrustpilot'],
138
147
  'lastOnline': (value['lastOnline'] == null ? null : (value['lastOnline'] as any).toISOString()),
139
148
  'deliversIn': value['deliversIn'],
140
149
  'name': value['name'],
@@ -43,6 +43,18 @@ export interface LandingPageInput {
43
43
  * @memberof LandingPageInput
44
44
  */
45
45
  showDeliversIn?: boolean | null;
46
+ /**
47
+ *
48
+ * @type {boolean}
49
+ * @memberof LandingPageInput
50
+ */
51
+ showTrustpilot?: boolean | null;
52
+ /**
53
+ *
54
+ * @type {boolean}
55
+ * @memberof LandingPageInput
56
+ */
57
+ dnssec?: boolean | null;
46
58
  /**
47
59
  *
48
60
  * @type {boolean}
@@ -84,6 +96,8 @@ export function LandingPageInputFromJSONTyped(json: any, ignoreDiscriminator: bo
84
96
  'showRelatedDomains': json['showRelatedDomains'] == null ? undefined : json['showRelatedDomains'],
85
97
  'showLastOnline': json['showLastOnline'] == null ? undefined : json['showLastOnline'],
86
98
  'showDeliversIn': json['showDeliversIn'] == null ? undefined : json['showDeliversIn'],
99
+ 'showTrustpilot': json['showTrustpilot'] == null ? undefined : json['showTrustpilot'],
100
+ 'dnssec': json['dnssec'] == null ? undefined : json['dnssec'],
87
101
  'seoMetrics': json['seoMetrics'] == null ? undefined : json['seoMetrics'],
88
102
  'visitorStats': json['visitorStats'] == null ? undefined : json['visitorStats'],
89
103
  'minDomainAuthority': json['minDomainAuthority'] == null ? undefined : json['minDomainAuthority'],
@@ -105,6 +119,8 @@ export function LandingPageInputToJSONTyped(value?: LandingPageInput | null, ign
105
119
  'showRelatedDomains': value['showRelatedDomains'],
106
120
  'showLastOnline': value['showLastOnline'],
107
121
  'showDeliversIn': value['showDeliversIn'],
122
+ 'showTrustpilot': value['showTrustpilot'],
123
+ 'dnssec': value['dnssec'],
108
124
  'seoMetrics': value['seoMetrics'],
109
125
  'visitorStats': value['visitorStats'],
110
126
  'minDomainAuthority': value['minDomainAuthority'],
@@ -61,6 +61,18 @@ export interface LandingPageSettingsDto {
61
61
  * @memberof LandingPageSettingsDto
62
62
  */
63
63
  showDeliversIn: boolean | null;
64
+ /**
65
+ *
66
+ * @type {boolean}
67
+ * @memberof LandingPageSettingsDto
68
+ */
69
+ showTrustpilot: boolean | null;
70
+ /**
71
+ *
72
+ * @type {boolean}
73
+ * @memberof LandingPageSettingsDto
74
+ */
75
+ dnssec: boolean | null;
64
76
  }
65
77
 
66
78
  /**
@@ -74,6 +86,8 @@ export function instanceOfLandingPageSettingsDto(value: object): value is Landin
74
86
  if (!('minDomainAuthority' in value) || value['minDomainAuthority'] === undefined) return false;
75
87
  if (!('showLastOnline' in value) || value['showLastOnline'] === undefined) return false;
76
88
  if (!('showDeliversIn' in value) || value['showDeliversIn'] === undefined) return false;
89
+ if (!('showTrustpilot' in value) || value['showTrustpilot'] === undefined) return false;
90
+ if (!('dnssec' in value) || value['dnssec'] === undefined) return false;
77
91
  return true;
78
92
  }
79
93
 
@@ -94,6 +108,8 @@ export function LandingPageSettingsDtoFromJSONTyped(json: any, ignoreDiscriminat
94
108
  'minDomainAuthority': json['minDomainAuthority'],
95
109
  'showLastOnline': json['showLastOnline'],
96
110
  'showDeliversIn': json['showDeliversIn'],
111
+ 'showTrustpilot': json['showTrustpilot'],
112
+ 'dnssec': json['dnssec'],
97
113
  };
98
114
  }
99
115
 
@@ -115,6 +131,8 @@ export function LandingPageSettingsDtoToJSONTyped(value?: LandingPageSettingsDto
115
131
  'minDomainAuthority': value['minDomainAuthority'],
116
132
  'showLastOnline': value['showLastOnline'],
117
133
  'showDeliversIn': value['showDeliversIn'],
134
+ 'showTrustpilot': value['showTrustpilot'],
135
+ 'dnssec': value['dnssec'],
118
136
  };
119
137
  }
120
138
 
@@ -98,6 +98,18 @@ export interface WithSettingsInner {
98
98
  * @memberof WithSettingsInner
99
99
  */
100
100
  showDeliversIn: boolean;
101
+ /**
102
+ *
103
+ * @type {boolean}
104
+ * @memberof WithSettingsInner
105
+ */
106
+ showTrustpilot: boolean;
107
+ /**
108
+ *
109
+ * @type {boolean}
110
+ * @memberof WithSettingsInner
111
+ */
112
+ dnssec: boolean;
101
113
  /**
102
114
  *
103
115
  * @type {string}
@@ -158,6 +170,8 @@ export function instanceOfWithSettingsInner(value: object): value is WithSetting
158
170
  if (!('showRelatedDomains' in value) || value['showRelatedDomains'] === undefined) return false;
159
171
  if (!('showLastOnline' in value) || value['showLastOnline'] === undefined) return false;
160
172
  if (!('showDeliversIn' in value) || value['showDeliversIn'] === undefined) return false;
173
+ if (!('showTrustpilot' in value) || value['showTrustpilot'] === undefined) return false;
174
+ if (!('dnssec' in value) || value['dnssec'] === undefined) return false;
161
175
  if (!('sidnIdcode' in value) || value['sidnIdcode'] === undefined) return false;
162
176
  if (!('leaseToOwn' in value) || value['leaseToOwn'] === undefined) return false;
163
177
  if (!('rent' in value) || value['rent'] === undefined) return false;
@@ -185,6 +199,8 @@ export function WithSettingsInnerFromJSONTyped(json: any, ignoreDiscriminator: b
185
199
  'showRelatedDomains': json['showRelatedDomains'],
186
200
  'showLastOnline': json['showLastOnline'],
187
201
  'showDeliversIn': json['showDeliversIn'],
202
+ 'showTrustpilot': json['showTrustpilot'],
203
+ 'dnssec': json['dnssec'],
188
204
  'sidnIdcode': json['sidnIdcode'],
189
205
  'leaseToOwn': AccountSettingsLeaseToOwnConfigurationDtoFromJSON(json['leaseToOwn']),
190
206
  'rent': AccountSettingsRentConfigurationDtoFromJSON(json['rent']),
@@ -213,6 +229,8 @@ export function WithSettingsInnerToJSONTyped(value?: WithSettingsInner | null, i
213
229
  'showRelatedDomains': value['showRelatedDomains'],
214
230
  'showLastOnline': value['showLastOnline'],
215
231
  'showDeliversIn': value['showDeliversIn'],
232
+ 'showTrustpilot': value['showTrustpilot'],
233
+ 'dnssec': value['dnssec'],
216
234
  'sidnIdcode': value['sidnIdcode'],
217
235
  'leaseToOwn': AccountSettingsLeaseToOwnConfigurationDtoToJSON(value['leaseToOwn']),
218
236
  'rent': AccountSettingsRentConfigurationDtoToJSON(value['rent']),