@randock/nameshift-api-client 0.0.274 → 0.0.276
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/.openapi-generator/FILES +1 -0
- package/README.md +3 -3
- package/dist/models/DomainSellerDto.d.ts +6 -0
- package/dist/models/DomainSellerDto.js +4 -0
- 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/SendAdminLeadAiPriceNegotiatorAgentChatMessageInput.d.ts +3 -2
- package/dist/models/SendAdminLeadAiPriceNegotiatorAgentChatMessageInput.js +3 -2
- package/dist/models/SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel.d.ts +44 -0
- package/dist/models/SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel.js +59 -0
- package/dist/models/WithSettingsInner.d.ts +6 -0
- package/dist/models/WithSettingsInner.js +4 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/package.json +1 -1
- package/src/models/DomainSellerDto.ts +9 -0
- package/src/models/LandingPageInput.ts +8 -0
- package/src/models/LandingPageSettingsDto.ts +9 -0
- package/src/models/SendAdminLeadAiPriceNegotiatorAgentChatMessageInput.ts +11 -4
- package/src/models/SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel.ts +84 -0
- package/src/models/WithSettingsInner.ts +9 -0
- package/src/models/index.ts +1 -0
package/.openapi-generator/FILES
CHANGED
|
@@ -228,6 +228,7 @@ src/models/SellerSecurityUserDto.ts
|
|
|
228
228
|
src/models/SellerSubscriptionListItemDto.ts
|
|
229
229
|
src/models/SellerSubscriptionListItemDtoDomainInformation.ts
|
|
230
230
|
src/models/SendAdminLeadAiPriceNegotiatorAgentChatMessageInput.ts
|
|
231
|
+
src/models/SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel.ts
|
|
231
232
|
src/models/SeoMetricsDto.ts
|
|
232
233
|
src/models/SepaBankAccountDetails.ts
|
|
233
234
|
src/models/SetDomainTransferConfirmationInput.ts
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.276
|
|
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.276 --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
|
+
0983c42f99f0afa01e3243fe167054cc110b6fbb12b440acdf576e80a64bca1bc91c0b9b9f22b3490384b2041521c49a
|
|
@@ -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'],
|
|
@@ -36,6 +36,7 @@ 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'],
|
|
39
40
|
'seoMetrics': json['seoMetrics'] == null ? undefined : json['seoMetrics'],
|
|
40
41
|
'visitorStats': json['visitorStats'] == null ? undefined : json['visitorStats'],
|
|
41
42
|
'minDomainAuthority': json['minDomainAuthority'] == null ? undefined : json['minDomainAuthority'],
|
|
@@ -54,6 +55,7 @@ function LandingPageInputToJSONTyped(value, ignoreDiscriminator) {
|
|
|
54
55
|
'showRelatedDomains': value['showRelatedDomains'],
|
|
55
56
|
'showLastOnline': value['showLastOnline'],
|
|
56
57
|
'showDeliversIn': value['showDeliversIn'],
|
|
58
|
+
'showTrustpilot': value['showTrustpilot'],
|
|
57
59
|
'seoMetrics': value['seoMetrics'],
|
|
58
60
|
'visitorStats': value['visitorStats'],
|
|
59
61
|
'minDomainAuthority': value['minDomainAuthority'],
|
|
@@ -57,6 +57,12 @@ 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;
|
|
60
66
|
}
|
|
61
67
|
/**
|
|
62
68
|
* Check if a given object implements the LandingPageSettingsDto interface.
|
|
@@ -36,6 +36,8 @@ 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;
|
|
39
41
|
return true;
|
|
40
42
|
}
|
|
41
43
|
function LandingPageSettingsDtoFromJSON(json) {
|
|
@@ -53,6 +55,7 @@ function LandingPageSettingsDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
53
55
|
'minDomainAuthority': json['minDomainAuthority'],
|
|
54
56
|
'showLastOnline': json['showLastOnline'],
|
|
55
57
|
'showDeliversIn': json['showDeliversIn'],
|
|
58
|
+
'showTrustpilot': json['showTrustpilot'],
|
|
56
59
|
};
|
|
57
60
|
}
|
|
58
61
|
function LandingPageSettingsDtoToJSON(json) {
|
|
@@ -71,5 +74,6 @@ function LandingPageSettingsDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
71
74
|
'minDomainAuthority': value['minDomainAuthority'],
|
|
72
75
|
'showLastOnline': value['showLastOnline'],
|
|
73
76
|
'showDeliversIn': value['showDeliversIn'],
|
|
77
|
+
'showTrustpilot': value['showTrustpilot'],
|
|
74
78
|
};
|
|
75
79
|
}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { MoneyDto } from './MoneyDto';
|
|
13
13
|
import type { LeadMessageDto } from './LeadMessageDto';
|
|
14
|
+
import type { SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel } from './SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel';
|
|
14
15
|
/**
|
|
15
16
|
*
|
|
16
17
|
* @export
|
|
@@ -19,10 +20,10 @@ import type { LeadMessageDto } from './LeadMessageDto';
|
|
|
19
20
|
export interface SendAdminLeadAiPriceNegotiatorAgentChatMessageInput {
|
|
20
21
|
/**
|
|
21
22
|
*
|
|
22
|
-
* @type {
|
|
23
|
+
* @type {SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel}
|
|
23
24
|
* @memberof SendAdminLeadAiPriceNegotiatorAgentChatMessageInput
|
|
24
25
|
*/
|
|
25
|
-
aiModel:
|
|
26
|
+
aiModel: SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel;
|
|
26
27
|
/**
|
|
27
28
|
*
|
|
28
29
|
* @type {number}
|
|
@@ -21,6 +21,7 @@ exports.SendAdminLeadAiPriceNegotiatorAgentChatMessageInputToJSON = SendAdminLea
|
|
|
21
21
|
exports.SendAdminLeadAiPriceNegotiatorAgentChatMessageInputToJSONTyped = SendAdminLeadAiPriceNegotiatorAgentChatMessageInputToJSONTyped;
|
|
22
22
|
var MoneyDto_1 = require("./MoneyDto");
|
|
23
23
|
var LeadMessageDto_1 = require("./LeadMessageDto");
|
|
24
|
+
var SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel_1 = require("./SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel");
|
|
24
25
|
/**
|
|
25
26
|
* @export
|
|
26
27
|
*/
|
|
@@ -65,7 +66,7 @@ function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputFromJSONTyped(json,
|
|
|
65
66
|
return json;
|
|
66
67
|
}
|
|
67
68
|
return {
|
|
68
|
-
'aiModel': json['aiModel'],
|
|
69
|
+
'aiModel': (0, SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel_1.SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSON)(json['aiModel']),
|
|
69
70
|
'aiModelTemperature': json['aiModelTemperature'],
|
|
70
71
|
'domainName': json['domainName'],
|
|
71
72
|
'locale': json['locale'],
|
|
@@ -88,7 +89,7 @@ function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputToJSONTyped(value, i
|
|
|
88
89
|
return value;
|
|
89
90
|
}
|
|
90
91
|
return {
|
|
91
|
-
'aiModel': value['aiModel'],
|
|
92
|
+
'aiModel': (0, SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel_1.SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSON)(value['aiModel']),
|
|
92
93
|
'aiModelTemperature': value['aiModelTemperature'],
|
|
93
94
|
'domainName': value['domainName'],
|
|
94
95
|
'locale': value['locale'],
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Nameshift
|
|
3
|
+
* Nameshift API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel
|
|
16
|
+
*/
|
|
17
|
+
export interface SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel
|
|
22
|
+
*/
|
|
23
|
+
conversationAnalyzer: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel
|
|
28
|
+
*/
|
|
29
|
+
offerHandler: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel
|
|
34
|
+
*/
|
|
35
|
+
messageHandler: string;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Check if a given object implements the SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel interface.
|
|
39
|
+
*/
|
|
40
|
+
export declare function instanceOfSendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel(value: object): value is SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel;
|
|
41
|
+
export declare function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSON(json: any): SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel;
|
|
42
|
+
export declare function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel;
|
|
43
|
+
export declare function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSON(json: any): SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel;
|
|
44
|
+
export declare function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSONTyped(value?: SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Nameshift
|
|
6
|
+
* Nameshift API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfSendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel = instanceOfSendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel;
|
|
17
|
+
exports.SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSON = SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSON;
|
|
18
|
+
exports.SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSONTyped = SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSONTyped;
|
|
19
|
+
exports.SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSON = SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSON;
|
|
20
|
+
exports.SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSONTyped = SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfSendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel(value) {
|
|
25
|
+
if (!('conversationAnalyzer' in value) || value['conversationAnalyzer'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('offerHandler' in value) || value['offerHandler'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('messageHandler' in value) || value['messageHandler'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
return true;
|
|
32
|
+
}
|
|
33
|
+
function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSON(json) {
|
|
34
|
+
return SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSONTyped(json, false);
|
|
35
|
+
}
|
|
36
|
+
function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
37
|
+
if (json == null) {
|
|
38
|
+
return json;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
'conversationAnalyzer': json['conversationAnalyzer'],
|
|
42
|
+
'offerHandler': json['offerHandler'],
|
|
43
|
+
'messageHandler': json['messageHandler'],
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSON(json) {
|
|
47
|
+
return SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSONTyped(json, false);
|
|
48
|
+
}
|
|
49
|
+
function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSONTyped(value, ignoreDiscriminator) {
|
|
50
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
51
|
+
if (value == null) {
|
|
52
|
+
return value;
|
|
53
|
+
}
|
|
54
|
+
return {
|
|
55
|
+
'conversationAnalyzer': value['conversationAnalyzer'],
|
|
56
|
+
'offerHandler': value['offerHandler'],
|
|
57
|
+
'messageHandler': value['messageHandler'],
|
|
58
|
+
};
|
|
59
|
+
}
|
|
@@ -40,6 +40,8 @@ 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;
|
|
43
45
|
if (!('sidnIdcode' in value) || value['sidnIdcode'] === undefined)
|
|
44
46
|
return false;
|
|
45
47
|
if (!('leaseToOwn' in value) || value['leaseToOwn'] === undefined)
|
|
@@ -72,6 +74,7 @@ function WithSettingsInnerFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
72
74
|
'showRelatedDomains': json['showRelatedDomains'],
|
|
73
75
|
'showLastOnline': json['showLastOnline'],
|
|
74
76
|
'showDeliversIn': json['showDeliversIn'],
|
|
77
|
+
'showTrustpilot': json['showTrustpilot'],
|
|
75
78
|
'sidnIdcode': json['sidnIdcode'],
|
|
76
79
|
'leaseToOwn': (0, AccountSettingsLeaseToOwnConfigurationDto_1.AccountSettingsLeaseToOwnConfigurationDtoFromJSON)(json['leaseToOwn']),
|
|
77
80
|
'rent': (0, AccountSettingsRentConfigurationDto_1.AccountSettingsRentConfigurationDtoFromJSON)(json['rent']),
|
|
@@ -97,6 +100,7 @@ function WithSettingsInnerToJSONTyped(value, ignoreDiscriminator) {
|
|
|
97
100
|
'showRelatedDomains': value['showRelatedDomains'],
|
|
98
101
|
'showLastOnline': value['showLastOnline'],
|
|
99
102
|
'showDeliversIn': value['showDeliversIn'],
|
|
103
|
+
'showTrustpilot': value['showTrustpilot'],
|
|
100
104
|
'sidnIdcode': value['sidnIdcode'],
|
|
101
105
|
'leaseToOwn': (0, AccountSettingsLeaseToOwnConfigurationDto_1.AccountSettingsLeaseToOwnConfigurationDtoToJSON)(value['leaseToOwn']),
|
|
102
106
|
'rent': (0, AccountSettingsRentConfigurationDto_1.AccountSettingsRentConfigurationDtoToJSON)(value['rent']),
|
package/dist/models/index.d.ts
CHANGED
|
@@ -201,6 +201,7 @@ export * from './SellerSecurityUserDto';
|
|
|
201
201
|
export * from './SellerSubscriptionListItemDto';
|
|
202
202
|
export * from './SellerSubscriptionListItemDtoDomainInformation';
|
|
203
203
|
export * from './SendAdminLeadAiPriceNegotiatorAgentChatMessageInput';
|
|
204
|
+
export * from './SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel';
|
|
204
205
|
export * from './SeoMetricsDto';
|
|
205
206
|
export * from './SepaBankAccountDetails';
|
|
206
207
|
export * from './SetDomainTransferConfirmationInput';
|
package/dist/models/index.js
CHANGED
|
@@ -219,6 +219,7 @@ __exportStar(require("./SellerSecurityUserDto"), exports);
|
|
|
219
219
|
__exportStar(require("./SellerSubscriptionListItemDto"), exports);
|
|
220
220
|
__exportStar(require("./SellerSubscriptionListItemDtoDomainInformation"), exports);
|
|
221
221
|
__exportStar(require("./SendAdminLeadAiPriceNegotiatorAgentChatMessageInput"), exports);
|
|
222
|
+
__exportStar(require("./SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel"), exports);
|
|
222
223
|
__exportStar(require("./SeoMetricsDto"), exports);
|
|
223
224
|
__exportStar(require("./SepaBankAccountDetails"), exports);
|
|
224
225
|
__exportStar(require("./SetDomainTransferConfirmationInput"), exports);
|
package/package.json
CHANGED
|
@@ -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,12 @@ 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;
|
|
46
52
|
/**
|
|
47
53
|
*
|
|
48
54
|
* @type {boolean}
|
|
@@ -84,6 +90,7 @@ export function LandingPageInputFromJSONTyped(json: any, ignoreDiscriminator: bo
|
|
|
84
90
|
'showRelatedDomains': json['showRelatedDomains'] == null ? undefined : json['showRelatedDomains'],
|
|
85
91
|
'showLastOnline': json['showLastOnline'] == null ? undefined : json['showLastOnline'],
|
|
86
92
|
'showDeliversIn': json['showDeliversIn'] == null ? undefined : json['showDeliversIn'],
|
|
93
|
+
'showTrustpilot': json['showTrustpilot'] == null ? undefined : json['showTrustpilot'],
|
|
87
94
|
'seoMetrics': json['seoMetrics'] == null ? undefined : json['seoMetrics'],
|
|
88
95
|
'visitorStats': json['visitorStats'] == null ? undefined : json['visitorStats'],
|
|
89
96
|
'minDomainAuthority': json['minDomainAuthority'] == null ? undefined : json['minDomainAuthority'],
|
|
@@ -105,6 +112,7 @@ export function LandingPageInputToJSONTyped(value?: LandingPageInput | null, ign
|
|
|
105
112
|
'showRelatedDomains': value['showRelatedDomains'],
|
|
106
113
|
'showLastOnline': value['showLastOnline'],
|
|
107
114
|
'showDeliversIn': value['showDeliversIn'],
|
|
115
|
+
'showTrustpilot': value['showTrustpilot'],
|
|
108
116
|
'seoMetrics': value['seoMetrics'],
|
|
109
117
|
'visitorStats': value['visitorStats'],
|
|
110
118
|
'minDomainAuthority': value['minDomainAuthority'],
|
|
@@ -61,6 +61,12 @@ 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;
|
|
64
70
|
}
|
|
65
71
|
|
|
66
72
|
/**
|
|
@@ -74,6 +80,7 @@ export function instanceOfLandingPageSettingsDto(value: object): value is Landin
|
|
|
74
80
|
if (!('minDomainAuthority' in value) || value['minDomainAuthority'] === undefined) return false;
|
|
75
81
|
if (!('showLastOnline' in value) || value['showLastOnline'] === undefined) return false;
|
|
76
82
|
if (!('showDeliversIn' in value) || value['showDeliversIn'] === undefined) return false;
|
|
83
|
+
if (!('showTrustpilot' in value) || value['showTrustpilot'] === undefined) return false;
|
|
77
84
|
return true;
|
|
78
85
|
}
|
|
79
86
|
|
|
@@ -94,6 +101,7 @@ export function LandingPageSettingsDtoFromJSONTyped(json: any, ignoreDiscriminat
|
|
|
94
101
|
'minDomainAuthority': json['minDomainAuthority'],
|
|
95
102
|
'showLastOnline': json['showLastOnline'],
|
|
96
103
|
'showDeliversIn': json['showDeliversIn'],
|
|
104
|
+
'showTrustpilot': json['showTrustpilot'],
|
|
97
105
|
};
|
|
98
106
|
}
|
|
99
107
|
|
|
@@ -115,6 +123,7 @@ export function LandingPageSettingsDtoToJSONTyped(value?: LandingPageSettingsDto
|
|
|
115
123
|
'minDomainAuthority': value['minDomainAuthority'],
|
|
116
124
|
'showLastOnline': value['showLastOnline'],
|
|
117
125
|
'showDeliversIn': value['showDeliversIn'],
|
|
126
|
+
'showTrustpilot': value['showTrustpilot'],
|
|
118
127
|
};
|
|
119
128
|
}
|
|
120
129
|
|
|
@@ -27,6 +27,13 @@ import {
|
|
|
27
27
|
LeadMessageDtoToJSON,
|
|
28
28
|
LeadMessageDtoToJSONTyped,
|
|
29
29
|
} from './LeadMessageDto';
|
|
30
|
+
import type { SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel } from './SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel';
|
|
31
|
+
import {
|
|
32
|
+
SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSON,
|
|
33
|
+
SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSONTyped,
|
|
34
|
+
SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSON,
|
|
35
|
+
SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSONTyped,
|
|
36
|
+
} from './SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel';
|
|
30
37
|
|
|
31
38
|
/**
|
|
32
39
|
*
|
|
@@ -36,10 +43,10 @@ import {
|
|
|
36
43
|
export interface SendAdminLeadAiPriceNegotiatorAgentChatMessageInput {
|
|
37
44
|
/**
|
|
38
45
|
*
|
|
39
|
-
* @type {
|
|
46
|
+
* @type {SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel}
|
|
40
47
|
* @memberof SendAdminLeadAiPriceNegotiatorAgentChatMessageInput
|
|
41
48
|
*/
|
|
42
|
-
aiModel:
|
|
49
|
+
aiModel: SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel;
|
|
43
50
|
/**
|
|
44
51
|
*
|
|
45
52
|
* @type {number}
|
|
@@ -148,7 +155,7 @@ export function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputFromJSONTyped
|
|
|
148
155
|
}
|
|
149
156
|
return {
|
|
150
157
|
|
|
151
|
-
'aiModel': json['aiModel'],
|
|
158
|
+
'aiModel': SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSON(json['aiModel']),
|
|
152
159
|
'aiModelTemperature': json['aiModelTemperature'],
|
|
153
160
|
'domainName': json['domainName'],
|
|
154
161
|
'locale': json['locale'],
|
|
@@ -174,7 +181,7 @@ export function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputToJSONTyped(v
|
|
|
174
181
|
|
|
175
182
|
return {
|
|
176
183
|
|
|
177
|
-
'aiModel': value['aiModel'],
|
|
184
|
+
'aiModel': SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSON(value['aiModel']),
|
|
178
185
|
'aiModelTemperature': value['aiModelTemperature'],
|
|
179
186
|
'domainName': value['domainName'],
|
|
180
187
|
'locale': value['locale'],
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Nameshift
|
|
5
|
+
* Nameshift API
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel
|
|
20
|
+
*/
|
|
21
|
+
export interface SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel
|
|
26
|
+
*/
|
|
27
|
+
conversationAnalyzer: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel
|
|
32
|
+
*/
|
|
33
|
+
offerHandler: string;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel
|
|
38
|
+
*/
|
|
39
|
+
messageHandler: string;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Check if a given object implements the SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel interface.
|
|
44
|
+
*/
|
|
45
|
+
export function instanceOfSendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel(value: object): value is SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel {
|
|
46
|
+
if (!('conversationAnalyzer' in value) || value['conversationAnalyzer'] === undefined) return false;
|
|
47
|
+
if (!('offerHandler' in value) || value['offerHandler'] === undefined) return false;
|
|
48
|
+
if (!('messageHandler' in value) || value['messageHandler'] === undefined) return false;
|
|
49
|
+
return true;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSON(json: any): SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel {
|
|
53
|
+
return SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSONTyped(json, false);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel {
|
|
57
|
+
if (json == null) {
|
|
58
|
+
return json;
|
|
59
|
+
}
|
|
60
|
+
return {
|
|
61
|
+
|
|
62
|
+
'conversationAnalyzer': json['conversationAnalyzer'],
|
|
63
|
+
'offerHandler': json['offerHandler'],
|
|
64
|
+
'messageHandler': json['messageHandler'],
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSON(json: any): SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel {
|
|
69
|
+
return SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSONTyped(json, false);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSONTyped(value?: SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel | null, ignoreDiscriminator: boolean = false): any {
|
|
73
|
+
if (value == null) {
|
|
74
|
+
return value;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
return {
|
|
78
|
+
|
|
79
|
+
'conversationAnalyzer': value['conversationAnalyzer'],
|
|
80
|
+
'offerHandler': value['offerHandler'],
|
|
81
|
+
'messageHandler': value['messageHandler'],
|
|
82
|
+
};
|
|
83
|
+
}
|
|
84
|
+
|
|
@@ -98,6 +98,12 @@ 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;
|
|
101
107
|
/**
|
|
102
108
|
*
|
|
103
109
|
* @type {string}
|
|
@@ -158,6 +164,7 @@ export function instanceOfWithSettingsInner(value: object): value is WithSetting
|
|
|
158
164
|
if (!('showRelatedDomains' in value) || value['showRelatedDomains'] === undefined) return false;
|
|
159
165
|
if (!('showLastOnline' in value) || value['showLastOnline'] === undefined) return false;
|
|
160
166
|
if (!('showDeliversIn' in value) || value['showDeliversIn'] === undefined) return false;
|
|
167
|
+
if (!('showTrustpilot' in value) || value['showTrustpilot'] === undefined) return false;
|
|
161
168
|
if (!('sidnIdcode' in value) || value['sidnIdcode'] === undefined) return false;
|
|
162
169
|
if (!('leaseToOwn' in value) || value['leaseToOwn'] === undefined) return false;
|
|
163
170
|
if (!('rent' in value) || value['rent'] === undefined) return false;
|
|
@@ -185,6 +192,7 @@ export function WithSettingsInnerFromJSONTyped(json: any, ignoreDiscriminator: b
|
|
|
185
192
|
'showRelatedDomains': json['showRelatedDomains'],
|
|
186
193
|
'showLastOnline': json['showLastOnline'],
|
|
187
194
|
'showDeliversIn': json['showDeliversIn'],
|
|
195
|
+
'showTrustpilot': json['showTrustpilot'],
|
|
188
196
|
'sidnIdcode': json['sidnIdcode'],
|
|
189
197
|
'leaseToOwn': AccountSettingsLeaseToOwnConfigurationDtoFromJSON(json['leaseToOwn']),
|
|
190
198
|
'rent': AccountSettingsRentConfigurationDtoFromJSON(json['rent']),
|
|
@@ -213,6 +221,7 @@ export function WithSettingsInnerToJSONTyped(value?: WithSettingsInner | null, i
|
|
|
213
221
|
'showRelatedDomains': value['showRelatedDomains'],
|
|
214
222
|
'showLastOnline': value['showLastOnline'],
|
|
215
223
|
'showDeliversIn': value['showDeliversIn'],
|
|
224
|
+
'showTrustpilot': value['showTrustpilot'],
|
|
216
225
|
'sidnIdcode': value['sidnIdcode'],
|
|
217
226
|
'leaseToOwn': AccountSettingsLeaseToOwnConfigurationDtoToJSON(value['leaseToOwn']),
|
|
218
227
|
'rent': AccountSettingsRentConfigurationDtoToJSON(value['rent']),
|
package/src/models/index.ts
CHANGED
|
@@ -203,6 +203,7 @@ export * from './SellerSecurityUserDto';
|
|
|
203
203
|
export * from './SellerSubscriptionListItemDto';
|
|
204
204
|
export * from './SellerSubscriptionListItemDtoDomainInformation';
|
|
205
205
|
export * from './SendAdminLeadAiPriceNegotiatorAgentChatMessageInput';
|
|
206
|
+
export * from './SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel';
|
|
206
207
|
export * from './SeoMetricsDto';
|
|
207
208
|
export * from './SepaBankAccountDetails';
|
|
208
209
|
export * from './SetDomainTransferConfirmationInput';
|