@randock/nameshift-api-client 0.0.276 → 0.0.278
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 +3 -3
- package/dist/models/LandingPageInput.d.ts +6 -0
- package/dist/models/LandingPageInput.js +2 -0
- package/dist/models/LandingPageSettingsDto.d.ts +6 -0
- package/dist/models/LandingPageSettingsDto.js +4 -0
- package/dist/models/SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel.d.ts +1 -1
- package/dist/models/SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel.js +1 -3
- package/dist/models/WithSettingsInner.d.ts +6 -0
- package/dist/models/WithSettingsInner.js +4 -0
- package/package.json +1 -1
- package/src/models/LandingPageInput.ts +8 -0
- package/src/models/LandingPageSettingsDto.ts +9 -0
- package/src/models/SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel.ts +2 -3
- package/src/models/WithSettingsInner.ts +9 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.278
|
|
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.
|
|
39
|
+
npm install @randock/nameshift-api-client@0.0.278 --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
|
-
|
|
47
|
+
168e067783527c183d729160d5252b016b806dba21bf7caa3ab79bc2f72555e1cca4a61f1cdbe8cf3f273a17e597fd4d
|
|
@@ -37,6 +37,7 @@ function LandingPageInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
37
37
|
'showLastOnline': json['showLastOnline'] == null ? undefined : json['showLastOnline'],
|
|
38
38
|
'showDeliversIn': json['showDeliversIn'] == null ? undefined : json['showDeliversIn'],
|
|
39
39
|
'showTrustpilot': json['showTrustpilot'] == null ? undefined : json['showTrustpilot'],
|
|
40
|
+
'dnssec': json['dnssec'] == null ? undefined : json['dnssec'],
|
|
40
41
|
'seoMetrics': json['seoMetrics'] == null ? undefined : json['seoMetrics'],
|
|
41
42
|
'visitorStats': json['visitorStats'] == null ? undefined : json['visitorStats'],
|
|
42
43
|
'minDomainAuthority': json['minDomainAuthority'] == null ? undefined : json['minDomainAuthority'],
|
|
@@ -56,6 +57,7 @@ function LandingPageInputToJSONTyped(value, ignoreDiscriminator) {
|
|
|
56
57
|
'showLastOnline': value['showLastOnline'],
|
|
57
58
|
'showDeliversIn': value['showDeliversIn'],
|
|
58
59
|
'showTrustpilot': value['showTrustpilot'],
|
|
60
|
+
'dnssec': value['dnssec'],
|
|
59
61
|
'seoMetrics': value['seoMetrics'],
|
|
60
62
|
'visitorStats': value['visitorStats'],
|
|
61
63
|
'minDomainAuthority': value['minDomainAuthority'],
|
|
@@ -63,6 +63,12 @@ export interface LandingPageSettingsDto {
|
|
|
63
63
|
* @memberof LandingPageSettingsDto
|
|
64
64
|
*/
|
|
65
65
|
showTrustpilot: boolean | null;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {boolean}
|
|
69
|
+
* @memberof LandingPageSettingsDto
|
|
70
|
+
*/
|
|
71
|
+
dnssec: boolean | null;
|
|
66
72
|
}
|
|
67
73
|
/**
|
|
68
74
|
* Check if a given object implements the LandingPageSettingsDto interface.
|
|
@@ -38,6 +38,8 @@ function instanceOfLandingPageSettingsDto(value) {
|
|
|
38
38
|
return false;
|
|
39
39
|
if (!('showTrustpilot' in value) || value['showTrustpilot'] === undefined)
|
|
40
40
|
return false;
|
|
41
|
+
if (!('dnssec' in value) || value['dnssec'] === undefined)
|
|
42
|
+
return false;
|
|
41
43
|
return true;
|
|
42
44
|
}
|
|
43
45
|
function LandingPageSettingsDtoFromJSON(json) {
|
|
@@ -56,6 +58,7 @@ function LandingPageSettingsDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
56
58
|
'showLastOnline': json['showLastOnline'],
|
|
57
59
|
'showDeliversIn': json['showDeliversIn'],
|
|
58
60
|
'showTrustpilot': json['showTrustpilot'],
|
|
61
|
+
'dnssec': json['dnssec'],
|
|
59
62
|
};
|
|
60
63
|
}
|
|
61
64
|
function LandingPageSettingsDtoToJSON(json) {
|
|
@@ -75,5 +78,6 @@ function LandingPageSettingsDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
75
78
|
'showLastOnline': value['showLastOnline'],
|
|
76
79
|
'showDeliversIn': value['showDeliversIn'],
|
|
77
80
|
'showTrustpilot': value['showTrustpilot'],
|
|
81
|
+
'dnssec': value['dnssec'],
|
|
78
82
|
};
|
|
79
83
|
}
|
|
@@ -26,7 +26,7 @@ export interface SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel {
|
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel
|
|
28
28
|
*/
|
|
29
|
-
offerHandler
|
|
29
|
+
offerHandler?: string | null;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
32
|
* @type {string}
|
|
@@ -24,8 +24,6 @@ exports.SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSONTyped =
|
|
|
24
24
|
function instanceOfSendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel(value) {
|
|
25
25
|
if (!('conversationAnalyzer' in value) || value['conversationAnalyzer'] === undefined)
|
|
26
26
|
return false;
|
|
27
|
-
if (!('offerHandler' in value) || value['offerHandler'] === undefined)
|
|
28
|
-
return false;
|
|
29
27
|
if (!('messageHandler' in value) || value['messageHandler'] === undefined)
|
|
30
28
|
return false;
|
|
31
29
|
return true;
|
|
@@ -39,7 +37,7 @@ function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSONTyped
|
|
|
39
37
|
}
|
|
40
38
|
return {
|
|
41
39
|
'conversationAnalyzer': json['conversationAnalyzer'],
|
|
42
|
-
'offerHandler': json['offerHandler'],
|
|
40
|
+
'offerHandler': json['offerHandler'] == null ? undefined : json['offerHandler'],
|
|
43
41
|
'messageHandler': json['messageHandler'],
|
|
44
42
|
};
|
|
45
43
|
}
|
|
@@ -42,6 +42,8 @@ function instanceOfWithSettingsInner(value) {
|
|
|
42
42
|
return false;
|
|
43
43
|
if (!('showTrustpilot' in value) || value['showTrustpilot'] === undefined)
|
|
44
44
|
return false;
|
|
45
|
+
if (!('dnssec' in value) || value['dnssec'] === undefined)
|
|
46
|
+
return false;
|
|
45
47
|
if (!('sidnIdcode' in value) || value['sidnIdcode'] === undefined)
|
|
46
48
|
return false;
|
|
47
49
|
if (!('leaseToOwn' in value) || value['leaseToOwn'] === undefined)
|
|
@@ -75,6 +77,7 @@ function WithSettingsInnerFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
75
77
|
'showLastOnline': json['showLastOnline'],
|
|
76
78
|
'showDeliversIn': json['showDeliversIn'],
|
|
77
79
|
'showTrustpilot': json['showTrustpilot'],
|
|
80
|
+
'dnssec': json['dnssec'],
|
|
78
81
|
'sidnIdcode': json['sidnIdcode'],
|
|
79
82
|
'leaseToOwn': (0, AccountSettingsLeaseToOwnConfigurationDto_1.AccountSettingsLeaseToOwnConfigurationDtoFromJSON)(json['leaseToOwn']),
|
|
80
83
|
'rent': (0, AccountSettingsRentConfigurationDto_1.AccountSettingsRentConfigurationDtoFromJSON)(json['rent']),
|
|
@@ -101,6 +104,7 @@ function WithSettingsInnerToJSONTyped(value, ignoreDiscriminator) {
|
|
|
101
104
|
'showLastOnline': value['showLastOnline'],
|
|
102
105
|
'showDeliversIn': value['showDeliversIn'],
|
|
103
106
|
'showTrustpilot': value['showTrustpilot'],
|
|
107
|
+
'dnssec': value['dnssec'],
|
|
104
108
|
'sidnIdcode': value['sidnIdcode'],
|
|
105
109
|
'leaseToOwn': (0, AccountSettingsLeaseToOwnConfigurationDto_1.AccountSettingsLeaseToOwnConfigurationDtoToJSON)(value['leaseToOwn']),
|
|
106
110
|
'rent': (0, AccountSettingsRentConfigurationDto_1.AccountSettingsRentConfigurationDtoToJSON)(value['rent']),
|
package/package.json
CHANGED
|
@@ -49,6 +49,12 @@ export interface LandingPageInput {
|
|
|
49
49
|
* @memberof LandingPageInput
|
|
50
50
|
*/
|
|
51
51
|
showTrustpilot?: boolean | null;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {boolean}
|
|
55
|
+
* @memberof LandingPageInput
|
|
56
|
+
*/
|
|
57
|
+
dnssec?: boolean | null;
|
|
52
58
|
/**
|
|
53
59
|
*
|
|
54
60
|
* @type {boolean}
|
|
@@ -91,6 +97,7 @@ export function LandingPageInputFromJSONTyped(json: any, ignoreDiscriminator: bo
|
|
|
91
97
|
'showLastOnline': json['showLastOnline'] == null ? undefined : json['showLastOnline'],
|
|
92
98
|
'showDeliversIn': json['showDeliversIn'] == null ? undefined : json['showDeliversIn'],
|
|
93
99
|
'showTrustpilot': json['showTrustpilot'] == null ? undefined : json['showTrustpilot'],
|
|
100
|
+
'dnssec': json['dnssec'] == null ? undefined : json['dnssec'],
|
|
94
101
|
'seoMetrics': json['seoMetrics'] == null ? undefined : json['seoMetrics'],
|
|
95
102
|
'visitorStats': json['visitorStats'] == null ? undefined : json['visitorStats'],
|
|
96
103
|
'minDomainAuthority': json['minDomainAuthority'] == null ? undefined : json['minDomainAuthority'],
|
|
@@ -113,6 +120,7 @@ export function LandingPageInputToJSONTyped(value?: LandingPageInput | null, ign
|
|
|
113
120
|
'showLastOnline': value['showLastOnline'],
|
|
114
121
|
'showDeliversIn': value['showDeliversIn'],
|
|
115
122
|
'showTrustpilot': value['showTrustpilot'],
|
|
123
|
+
'dnssec': value['dnssec'],
|
|
116
124
|
'seoMetrics': value['seoMetrics'],
|
|
117
125
|
'visitorStats': value['visitorStats'],
|
|
118
126
|
'minDomainAuthority': value['minDomainAuthority'],
|
|
@@ -67,6 +67,12 @@ export interface LandingPageSettingsDto {
|
|
|
67
67
|
* @memberof LandingPageSettingsDto
|
|
68
68
|
*/
|
|
69
69
|
showTrustpilot: boolean | null;
|
|
70
|
+
/**
|
|
71
|
+
*
|
|
72
|
+
* @type {boolean}
|
|
73
|
+
* @memberof LandingPageSettingsDto
|
|
74
|
+
*/
|
|
75
|
+
dnssec: boolean | null;
|
|
70
76
|
}
|
|
71
77
|
|
|
72
78
|
/**
|
|
@@ -81,6 +87,7 @@ export function instanceOfLandingPageSettingsDto(value: object): value is Landin
|
|
|
81
87
|
if (!('showLastOnline' in value) || value['showLastOnline'] === undefined) return false;
|
|
82
88
|
if (!('showDeliversIn' in value) || value['showDeliversIn'] === undefined) return false;
|
|
83
89
|
if (!('showTrustpilot' in value) || value['showTrustpilot'] === undefined) return false;
|
|
90
|
+
if (!('dnssec' in value) || value['dnssec'] === undefined) return false;
|
|
84
91
|
return true;
|
|
85
92
|
}
|
|
86
93
|
|
|
@@ -102,6 +109,7 @@ export function LandingPageSettingsDtoFromJSONTyped(json: any, ignoreDiscriminat
|
|
|
102
109
|
'showLastOnline': json['showLastOnline'],
|
|
103
110
|
'showDeliversIn': json['showDeliversIn'],
|
|
104
111
|
'showTrustpilot': json['showTrustpilot'],
|
|
112
|
+
'dnssec': json['dnssec'],
|
|
105
113
|
};
|
|
106
114
|
}
|
|
107
115
|
|
|
@@ -124,6 +132,7 @@ export function LandingPageSettingsDtoToJSONTyped(value?: LandingPageSettingsDto
|
|
|
124
132
|
'showLastOnline': value['showLastOnline'],
|
|
125
133
|
'showDeliversIn': value['showDeliversIn'],
|
|
126
134
|
'showTrustpilot': value['showTrustpilot'],
|
|
135
|
+
'dnssec': value['dnssec'],
|
|
127
136
|
};
|
|
128
137
|
}
|
|
129
138
|
|
|
@@ -30,7 +30,7 @@ export interface SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel {
|
|
|
30
30
|
* @type {string}
|
|
31
31
|
* @memberof SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel
|
|
32
32
|
*/
|
|
33
|
-
offerHandler
|
|
33
|
+
offerHandler?: string | null;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
36
|
* @type {string}
|
|
@@ -44,7 +44,6 @@ export interface SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel {
|
|
|
44
44
|
*/
|
|
45
45
|
export function instanceOfSendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel(value: object): value is SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel {
|
|
46
46
|
if (!('conversationAnalyzer' in value) || value['conversationAnalyzer'] === undefined) return false;
|
|
47
|
-
if (!('offerHandler' in value) || value['offerHandler'] === undefined) return false;
|
|
48
47
|
if (!('messageHandler' in value) || value['messageHandler'] === undefined) return false;
|
|
49
48
|
return true;
|
|
50
49
|
}
|
|
@@ -60,7 +59,7 @@ export function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJS
|
|
|
60
59
|
return {
|
|
61
60
|
|
|
62
61
|
'conversationAnalyzer': json['conversationAnalyzer'],
|
|
63
|
-
'offerHandler': json['offerHandler'],
|
|
62
|
+
'offerHandler': json['offerHandler'] == null ? undefined : json['offerHandler'],
|
|
64
63
|
'messageHandler': json['messageHandler'],
|
|
65
64
|
};
|
|
66
65
|
}
|
|
@@ -104,6 +104,12 @@ export interface WithSettingsInner {
|
|
|
104
104
|
* @memberof WithSettingsInner
|
|
105
105
|
*/
|
|
106
106
|
showTrustpilot: boolean;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {boolean}
|
|
110
|
+
* @memberof WithSettingsInner
|
|
111
|
+
*/
|
|
112
|
+
dnssec: boolean;
|
|
107
113
|
/**
|
|
108
114
|
*
|
|
109
115
|
* @type {string}
|
|
@@ -165,6 +171,7 @@ export function instanceOfWithSettingsInner(value: object): value is WithSetting
|
|
|
165
171
|
if (!('showLastOnline' in value) || value['showLastOnline'] === undefined) return false;
|
|
166
172
|
if (!('showDeliversIn' in value) || value['showDeliversIn'] === undefined) return false;
|
|
167
173
|
if (!('showTrustpilot' in value) || value['showTrustpilot'] === undefined) return false;
|
|
174
|
+
if (!('dnssec' in value) || value['dnssec'] === undefined) return false;
|
|
168
175
|
if (!('sidnIdcode' in value) || value['sidnIdcode'] === undefined) return false;
|
|
169
176
|
if (!('leaseToOwn' in value) || value['leaseToOwn'] === undefined) return false;
|
|
170
177
|
if (!('rent' in value) || value['rent'] === undefined) return false;
|
|
@@ -193,6 +200,7 @@ export function WithSettingsInnerFromJSONTyped(json: any, ignoreDiscriminator: b
|
|
|
193
200
|
'showLastOnline': json['showLastOnline'],
|
|
194
201
|
'showDeliversIn': json['showDeliversIn'],
|
|
195
202
|
'showTrustpilot': json['showTrustpilot'],
|
|
203
|
+
'dnssec': json['dnssec'],
|
|
196
204
|
'sidnIdcode': json['sidnIdcode'],
|
|
197
205
|
'leaseToOwn': AccountSettingsLeaseToOwnConfigurationDtoFromJSON(json['leaseToOwn']),
|
|
198
206
|
'rent': AccountSettingsRentConfigurationDtoFromJSON(json['rent']),
|
|
@@ -222,6 +230,7 @@ export function WithSettingsInnerToJSONTyped(value?: WithSettingsInner | null, i
|
|
|
222
230
|
'showLastOnline': value['showLastOnline'],
|
|
223
231
|
'showDeliversIn': value['showDeliversIn'],
|
|
224
232
|
'showTrustpilot': value['showTrustpilot'],
|
|
233
|
+
'dnssec': value['dnssec'],
|
|
225
234
|
'sidnIdcode': value['sidnIdcode'],
|
|
226
235
|
'leaseToOwn': AccountSettingsLeaseToOwnConfigurationDtoToJSON(value['leaseToOwn']),
|
|
227
236
|
'rent': AccountSettingsRentConfigurationDtoToJSON(value['rent']),
|