@randock/nameshift-api-client 0.0.441 → 0.0.443
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 +20 -0
- package/README.md +3 -3
- package/dist/apis/AdminApi.d.ts +49 -1
- package/dist/apis/AdminApi.js +187 -0
- package/dist/models/AdminBankDepositAccountBankAccountDto.d.ts +39 -0
- package/dist/models/AdminBankDepositAccountBankAccountDto.js +56 -0
- package/dist/models/AdminBankDepositAccountDto.d.ts +38 -0
- package/dist/models/AdminBankDepositAccountDto.js +55 -0
- package/dist/models/AdminBankDepositDto.d.ts +76 -0
- package/dist/models/AdminBankDepositDto.js +81 -0
- package/dist/models/AdminBankDepositInvoiceDto.d.ts +54 -0
- package/dist/models/AdminBankDepositInvoiceDto.js +69 -0
- package/dist/models/AdminBankDepositInvoiceTransactionDto.d.ts +39 -0
- package/dist/models/AdminBankDepositInvoiceTransactionDto.js +56 -0
- package/dist/models/AirwallexBankAccountDetailsDto.d.ts +1 -1
- package/dist/models/DomainMinimalLandingPageDesignDto.d.ts +46 -0
- package/dist/models/DomainMinimalLandingPageDesignDto.js +63 -0
- package/dist/models/DomainModernLandingPageDesignDto.d.ts +46 -0
- package/dist/models/DomainModernLandingPageDesignDto.js +63 -0
- package/dist/models/DomainOriginalLandingPageDesignDto.d.ts +46 -0
- package/dist/models/DomainOriginalLandingPageDesignDto.js +63 -0
- package/dist/models/DomainSalesInformationDto.d.ts +7 -24
- package/dist/models/DomainSalesInformationDto.js +5 -16
- package/dist/models/DomainSalesInformationDtoLandingPageDesign.d.ts +30 -0
- package/dist/models/DomainSalesInformationDtoLandingPageDesign.js +59 -0
- package/dist/models/DomainSellerDto.d.ts +0 -6
- package/dist/models/DomainSellerDto.js +0 -4
- package/dist/models/LandingPageDesignSettingsDto.d.ts +47 -0
- package/dist/models/LandingPageDesignSettingsDto.js +62 -0
- package/dist/models/LandingPageDesignSettingsInput.d.ts +47 -0
- package/dist/models/LandingPageDesignSettingsInput.js +56 -0
- package/dist/models/LandingPageInput.d.ts +6 -47
- package/dist/models/LandingPageInput.js +3 -16
- package/dist/models/LandingPageMinimalDesignSettingsDto.d.ts +32 -0
- package/dist/models/LandingPageMinimalDesignSettingsDto.js +51 -0
- package/dist/models/LandingPageMinimalDesignSettingsInput.d.ts +32 -0
- package/dist/models/LandingPageMinimalDesignSettingsInput.js +49 -0
- package/dist/models/LandingPageModernDesignSettingsDto.d.ts +74 -0
- package/dist/models/LandingPageModernDesignSettingsDto.js +79 -0
- package/dist/models/LandingPageModernDesignSettingsInput.d.ts +74 -0
- package/dist/models/LandingPageModernDesignSettingsInput.js +63 -0
- package/dist/models/LandingPageOriginalDesignSettingsDto.d.ts +74 -0
- package/dist/models/LandingPageOriginalDesignSettingsDto.js +79 -0
- package/dist/models/LandingPageOriginalDesignSettingsInput.d.ts +74 -0
- package/dist/models/LandingPageOriginalDesignSettingsInput.js +63 -0
- package/dist/models/LandingPageSettingsDto.d.ts +6 -47
- package/dist/models/LandingPageSettingsDto.js +5 -32
- package/dist/models/LinkBankDepositToBankAccountInput.d.ts +32 -0
- package/dist/models/LinkBankDepositToBankAccountInput.js +51 -0
- package/dist/models/LinkBankDepositToInvoiceInput.d.ts +32 -0
- package/dist/models/LinkBankDepositToInvoiceInput.js +51 -0
- package/dist/models/ListBankDeposits200Response.d.ts +47 -0
- package/dist/models/ListBankDeposits200Response.js +62 -0
- package/dist/models/OrderListItemDto.d.ts +1 -1
- package/dist/models/OrderListItemDtoTransaction.d.ts +95 -6
- package/dist/models/OrderListItemDtoTransaction.js +93 -8
- package/dist/models/WithSettingsInner.d.ts +0 -24
- package/dist/models/WithSettingsInner.js +0 -16
- package/dist/models/index.d.ts +20 -0
- package/dist/models/index.js +20 -0
- package/package.json +1 -1
- package/src/apis/AdminApi.ts +192 -0
- package/src/models/AdminBankDepositAccountBankAccountDto.ts +83 -0
- package/src/models/AdminBankDepositAccountDto.ts +75 -0
- package/src/models/AdminBankDepositDto.ts +144 -0
- package/src/models/AdminBankDepositInvoiceDto.ts +97 -0
- package/src/models/AdminBankDepositInvoiceTransactionDto.ts +83 -0
- package/src/models/AirwallexBankAccountDetailsDto.ts +1 -1
- package/src/models/DomainMinimalLandingPageDesignDto.ts +93 -0
- package/src/models/DomainModernLandingPageDesignDto.ts +93 -0
- package/src/models/DomainOriginalLandingPageDesignDto.ts +93 -0
- package/src/models/DomainSalesInformationDto.ts +16 -36
- package/src/models/DomainSalesInformationDtoLandingPageDesign.ts +84 -0
- package/src/models/DomainSellerDto.ts +0 -9
- package/src/models/LandingPageDesignSettingsDto.ts +106 -0
- package/src/models/LandingPageDesignSettingsInput.ts +103 -0
- package/src/models/LandingPageInput.ts +15 -63
- package/src/models/LandingPageMinimalDesignSettingsDto.ts +66 -0
- package/src/models/LandingPageMinimalDesignSettingsInput.ts +65 -0
- package/src/models/LandingPageModernDesignSettingsDto.ts +129 -0
- package/src/models/LandingPageModernDesignSettingsInput.ts +121 -0
- package/src/models/LandingPageOriginalDesignSettingsDto.ts +129 -0
- package/src/models/LandingPageOriginalDesignSettingsInput.ts +121 -0
- package/src/models/LandingPageSettingsDto.ts +16 -71
- package/src/models/LinkBankDepositToBankAccountInput.ts +66 -0
- package/src/models/LinkBankDepositToInvoiceInput.ts +66 -0
- package/src/models/ListBankDeposits200Response.ts +106 -0
- package/src/models/OrderListItemDto.ts +1 -1
- package/src/models/OrderListItemDtoTransaction.ts +106 -19
- package/src/models/WithSettingsInner.ts +0 -36
- package/src/models/index.ts +20 -0
|
@@ -13,6 +13,7 @@ import type { DomainSellerDto } from './DomainSellerDto';
|
|
|
13
13
|
import type { LeadBuyerConfigDto } from './LeadBuyerConfigDto';
|
|
14
14
|
import type { MoneyDto } from './MoneyDto';
|
|
15
15
|
import type { DomainSalesInformationRentConfigurationDto } from './DomainSalesInformationRentConfigurationDto';
|
|
16
|
+
import type { DomainSalesInformationDtoLandingPageDesign } from './DomainSalesInformationDtoLandingPageDesign';
|
|
16
17
|
import type { DomainSalesInformationLeaseToOwnConfigurationDto } from './DomainSalesInformationLeaseToOwnConfigurationDto';
|
|
17
18
|
import type { SeoMetricsDto } from './SeoMetricsDto';
|
|
18
19
|
/**
|
|
@@ -87,30 +88,6 @@ export interface DomainSalesInformationDto {
|
|
|
87
88
|
* @memberof DomainSalesInformationDto
|
|
88
89
|
*/
|
|
89
90
|
seo: SeoMetricsDto | null;
|
|
90
|
-
/**
|
|
91
|
-
* Whether visitor statistics are enabled on the landing page.
|
|
92
|
-
* @type {boolean}
|
|
93
|
-
* @memberof DomainSalesInformationDto
|
|
94
|
-
*/
|
|
95
|
-
statsEnabled: boolean;
|
|
96
|
-
/**
|
|
97
|
-
* Whether related domains are shown on the landing page.
|
|
98
|
-
* @type {boolean}
|
|
99
|
-
* @memberof DomainSalesInformationDto
|
|
100
|
-
*/
|
|
101
|
-
relatedDomainsEnabled: boolean;
|
|
102
|
-
/**
|
|
103
|
-
* Whether the Trustpilot widget is enabled on the landing page.
|
|
104
|
-
* @type {boolean}
|
|
105
|
-
* @memberof DomainSalesInformationDto
|
|
106
|
-
*/
|
|
107
|
-
trustpilotEnabled: boolean;
|
|
108
|
-
/**
|
|
109
|
-
* Whether SEO metrics are enabled on the landing page.
|
|
110
|
-
* @type {boolean}
|
|
111
|
-
* @memberof DomainSalesInformationDto
|
|
112
|
-
*/
|
|
113
|
-
seoEnabled: boolean;
|
|
114
91
|
/**
|
|
115
92
|
* Whether the domain currently has an active auction.
|
|
116
93
|
* @type {boolean}
|
|
@@ -135,6 +112,12 @@ export interface DomainSalesInformationDto {
|
|
|
135
112
|
* @memberof DomainSalesInformationDto
|
|
136
113
|
*/
|
|
137
114
|
leadBuyerSettings: LeadBuyerConfigDto | null;
|
|
115
|
+
/**
|
|
116
|
+
*
|
|
117
|
+
* @type {DomainSalesInformationDtoLandingPageDesign}
|
|
118
|
+
* @memberof DomainSalesInformationDto
|
|
119
|
+
*/
|
|
120
|
+
landingPageDesign: DomainSalesInformationDtoLandingPageDesign;
|
|
138
121
|
}
|
|
139
122
|
/**
|
|
140
123
|
* Check if a given object implements the DomainSalesInformationDto interface.
|
|
@@ -22,6 +22,7 @@ var DomainSellerDto_1 = require("./DomainSellerDto");
|
|
|
22
22
|
var LeadBuyerConfigDto_1 = require("./LeadBuyerConfigDto");
|
|
23
23
|
var MoneyDto_1 = require("./MoneyDto");
|
|
24
24
|
var DomainSalesInformationRentConfigurationDto_1 = require("./DomainSalesInformationRentConfigurationDto");
|
|
25
|
+
var DomainSalesInformationDtoLandingPageDesign_1 = require("./DomainSalesInformationDtoLandingPageDesign");
|
|
25
26
|
var DomainSalesInformationLeaseToOwnConfigurationDto_1 = require("./DomainSalesInformationLeaseToOwnConfigurationDto");
|
|
26
27
|
var SeoMetricsDto_1 = require("./SeoMetricsDto");
|
|
27
28
|
/**
|
|
@@ -50,14 +51,6 @@ function instanceOfDomainSalesInformationDto(value) {
|
|
|
50
51
|
return false;
|
|
51
52
|
if (!('seo' in value) || value['seo'] === undefined)
|
|
52
53
|
return false;
|
|
53
|
-
if (!('statsEnabled' in value) || value['statsEnabled'] === undefined)
|
|
54
|
-
return false;
|
|
55
|
-
if (!('relatedDomainsEnabled' in value) || value['relatedDomainsEnabled'] === undefined)
|
|
56
|
-
return false;
|
|
57
|
-
if (!('trustpilotEnabled' in value) || value['trustpilotEnabled'] === undefined)
|
|
58
|
-
return false;
|
|
59
|
-
if (!('seoEnabled' in value) || value['seoEnabled'] === undefined)
|
|
60
|
-
return false;
|
|
61
54
|
if (!('hasActiveAuction' in value) || value['hasActiveAuction'] === undefined)
|
|
62
55
|
return false;
|
|
63
56
|
if (!('auctionId' in value) || value['auctionId'] === undefined)
|
|
@@ -66,6 +59,8 @@ function instanceOfDomainSalesInformationDto(value) {
|
|
|
66
59
|
return false;
|
|
67
60
|
if (!('leadBuyerSettings' in value) || value['leadBuyerSettings'] === undefined)
|
|
68
61
|
return false;
|
|
62
|
+
if (!('landingPageDesign' in value) || value['landingPageDesign'] === undefined)
|
|
63
|
+
return false;
|
|
69
64
|
return true;
|
|
70
65
|
}
|
|
71
66
|
function DomainSalesInformationDtoFromJSON(json) {
|
|
@@ -87,14 +82,11 @@ function DomainSalesInformationDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
87
82
|
'sold': json['sold'],
|
|
88
83
|
'isPurchaseable': json['isPurchaseable'],
|
|
89
84
|
'seo': (0, SeoMetricsDto_1.SeoMetricsDtoFromJSON)(json['seo']),
|
|
90
|
-
'statsEnabled': json['statsEnabled'],
|
|
91
|
-
'relatedDomainsEnabled': json['relatedDomainsEnabled'],
|
|
92
|
-
'trustpilotEnabled': json['trustpilotEnabled'],
|
|
93
|
-
'seoEnabled': json['seoEnabled'],
|
|
94
85
|
'hasActiveAuction': json['hasActiveAuction'],
|
|
95
86
|
'auctionId': json['auctionId'],
|
|
96
87
|
'locked': json['locked'],
|
|
97
88
|
'leadBuyerSettings': (0, LeadBuyerConfigDto_1.LeadBuyerConfigDtoFromJSON)(json['leadBuyerSettings']),
|
|
89
|
+
'landingPageDesign': (0, DomainSalesInformationDtoLandingPageDesign_1.DomainSalesInformationDtoLandingPageDesignFromJSON)(json['landingPageDesign']),
|
|
98
90
|
};
|
|
99
91
|
}
|
|
100
92
|
function DomainSalesInformationDtoToJSON(json) {
|
|
@@ -117,13 +109,10 @@ function DomainSalesInformationDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
117
109
|
'sold': value['sold'],
|
|
118
110
|
'isPurchaseable': value['isPurchaseable'],
|
|
119
111
|
'seo': (0, SeoMetricsDto_1.SeoMetricsDtoToJSON)(value['seo']),
|
|
120
|
-
'statsEnabled': value['statsEnabled'],
|
|
121
|
-
'relatedDomainsEnabled': value['relatedDomainsEnabled'],
|
|
122
|
-
'trustpilotEnabled': value['trustpilotEnabled'],
|
|
123
|
-
'seoEnabled': value['seoEnabled'],
|
|
124
112
|
'hasActiveAuction': value['hasActiveAuction'],
|
|
125
113
|
'auctionId': value['auctionId'],
|
|
126
114
|
'locked': value['locked'],
|
|
127
115
|
'leadBuyerSettings': (0, LeadBuyerConfigDto_1.LeadBuyerConfigDtoToJSON)(value['leadBuyerSettings']),
|
|
116
|
+
'landingPageDesign': (0, DomainSalesInformationDtoLandingPageDesign_1.DomainSalesInformationDtoLandingPageDesignToJSON)(value['landingPageDesign']),
|
|
128
117
|
};
|
|
129
118
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Nameshift
|
|
3
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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
|
+
import type { DomainMinimalLandingPageDesignDto } from './DomainMinimalLandingPageDesignDto';
|
|
13
|
+
import type { DomainModernLandingPageDesignDto } from './DomainModernLandingPageDesignDto';
|
|
14
|
+
import type { DomainOriginalLandingPageDesignDto } from './DomainOriginalLandingPageDesignDto';
|
|
15
|
+
/**
|
|
16
|
+
* @type DomainSalesInformationDtoLandingPageDesign
|
|
17
|
+
* Active landing page design and its resolved settings.
|
|
18
|
+
* @export
|
|
19
|
+
*/
|
|
20
|
+
export type DomainSalesInformationDtoLandingPageDesign = {
|
|
21
|
+
design: 'minimal';
|
|
22
|
+
} & DomainMinimalLandingPageDesignDto | {
|
|
23
|
+
design: 'modern';
|
|
24
|
+
} & DomainModernLandingPageDesignDto | {
|
|
25
|
+
design: 'original';
|
|
26
|
+
} & DomainOriginalLandingPageDesignDto;
|
|
27
|
+
export declare function DomainSalesInformationDtoLandingPageDesignFromJSON(json: any): DomainSalesInformationDtoLandingPageDesign;
|
|
28
|
+
export declare function DomainSalesInformationDtoLandingPageDesignFromJSONTyped(json: any, ignoreDiscriminator: boolean): DomainSalesInformationDtoLandingPageDesign;
|
|
29
|
+
export declare function DomainSalesInformationDtoLandingPageDesignToJSON(json: any): any;
|
|
30
|
+
export declare function DomainSalesInformationDtoLandingPageDesignToJSONTyped(value?: DomainSalesInformationDtoLandingPageDesign | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Nameshift
|
|
6
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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.DomainSalesInformationDtoLandingPageDesignFromJSON = DomainSalesInformationDtoLandingPageDesignFromJSON;
|
|
17
|
+
exports.DomainSalesInformationDtoLandingPageDesignFromJSONTyped = DomainSalesInformationDtoLandingPageDesignFromJSONTyped;
|
|
18
|
+
exports.DomainSalesInformationDtoLandingPageDesignToJSON = DomainSalesInformationDtoLandingPageDesignToJSON;
|
|
19
|
+
exports.DomainSalesInformationDtoLandingPageDesignToJSONTyped = DomainSalesInformationDtoLandingPageDesignToJSONTyped;
|
|
20
|
+
var DomainMinimalLandingPageDesignDto_1 = require("./DomainMinimalLandingPageDesignDto");
|
|
21
|
+
var DomainModernLandingPageDesignDto_1 = require("./DomainModernLandingPageDesignDto");
|
|
22
|
+
var DomainOriginalLandingPageDesignDto_1 = require("./DomainOriginalLandingPageDesignDto");
|
|
23
|
+
function DomainSalesInformationDtoLandingPageDesignFromJSON(json) {
|
|
24
|
+
return DomainSalesInformationDtoLandingPageDesignFromJSONTyped(json, false);
|
|
25
|
+
}
|
|
26
|
+
function DomainSalesInformationDtoLandingPageDesignFromJSONTyped(json, ignoreDiscriminator) {
|
|
27
|
+
if (json == null) {
|
|
28
|
+
return json;
|
|
29
|
+
}
|
|
30
|
+
switch (json['design']) {
|
|
31
|
+
case 'minimal':
|
|
32
|
+
return Object.assign({}, (0, DomainMinimalLandingPageDesignDto_1.DomainMinimalLandingPageDesignDtoFromJSONTyped)(json, true), { design: 'minimal' });
|
|
33
|
+
case 'modern':
|
|
34
|
+
return Object.assign({}, (0, DomainModernLandingPageDesignDto_1.DomainModernLandingPageDesignDtoFromJSONTyped)(json, true), { design: 'modern' });
|
|
35
|
+
case 'original':
|
|
36
|
+
return Object.assign({}, (0, DomainOriginalLandingPageDesignDto_1.DomainOriginalLandingPageDesignDtoFromJSONTyped)(json, true), { design: 'original' });
|
|
37
|
+
default:
|
|
38
|
+
throw new Error("No variant of DomainSalesInformationDtoLandingPageDesign exists with 'design=".concat(json['design'], "'"));
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
function DomainSalesInformationDtoLandingPageDesignToJSON(json) {
|
|
42
|
+
return DomainSalesInformationDtoLandingPageDesignToJSONTyped(json, false);
|
|
43
|
+
}
|
|
44
|
+
function DomainSalesInformationDtoLandingPageDesignToJSONTyped(value, ignoreDiscriminator) {
|
|
45
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
46
|
+
if (value == null) {
|
|
47
|
+
return value;
|
|
48
|
+
}
|
|
49
|
+
switch (value['design']) {
|
|
50
|
+
case 'minimal':
|
|
51
|
+
return Object.assign({}, (0, DomainMinimalLandingPageDesignDto_1.DomainMinimalLandingPageDesignDtoToJSON)(value), { design: 'minimal' });
|
|
52
|
+
case 'modern':
|
|
53
|
+
return Object.assign({}, (0, DomainModernLandingPageDesignDto_1.DomainModernLandingPageDesignDtoToJSON)(value), { design: 'modern' });
|
|
54
|
+
case 'original':
|
|
55
|
+
return Object.assign({}, (0, DomainOriginalLandingPageDesignDto_1.DomainOriginalLandingPageDesignDtoToJSON)(value), { design: 'original' });
|
|
56
|
+
default:
|
|
57
|
+
throw new Error("No variant of DomainSalesInformationDtoLandingPageDesign exists with 'design=".concat(value['design'], "'"));
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -63,12 +63,6 @@ export interface DomainSellerDto {
|
|
|
63
63
|
* @memberof DomainSellerDto
|
|
64
64
|
*/
|
|
65
65
|
description: string | null;
|
|
66
|
-
/**
|
|
67
|
-
* Optional external link configured on the seller landing page.
|
|
68
|
-
* @type {string}
|
|
69
|
-
* @memberof DomainSellerDto
|
|
70
|
-
*/
|
|
71
|
-
externalLink: string | null;
|
|
72
66
|
}
|
|
73
67
|
/**
|
|
74
68
|
* Check if a given object implements the DomainSellerDto interface.
|
|
@@ -38,8 +38,6 @@ function instanceOfDomainSellerDto(value) {
|
|
|
38
38
|
return false;
|
|
39
39
|
if (!('description' in value) || value['description'] === undefined)
|
|
40
40
|
return false;
|
|
41
|
-
if (!('externalLink' in value) || value['externalLink'] === undefined)
|
|
42
|
-
return false;
|
|
43
41
|
return true;
|
|
44
42
|
}
|
|
45
43
|
function DomainSellerDtoFromJSON(json) {
|
|
@@ -58,7 +56,6 @@ function DomainSellerDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
58
56
|
'name': json['name'],
|
|
59
57
|
'avatar': json['avatar'],
|
|
60
58
|
'description': json['description'],
|
|
61
|
-
'externalLink': json['externalLink'],
|
|
62
59
|
};
|
|
63
60
|
}
|
|
64
61
|
function DomainSellerDtoToJSON(json) {
|
|
@@ -78,6 +75,5 @@ function DomainSellerDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
78
75
|
'name': value['name'],
|
|
79
76
|
'avatar': value['avatar'],
|
|
80
77
|
'description': value['description'],
|
|
81
|
-
'externalLink': value['externalLink'],
|
|
82
78
|
};
|
|
83
79
|
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Nameshift
|
|
3
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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
|
+
import type { LandingPageModernDesignSettingsDto } from './LandingPageModernDesignSettingsDto';
|
|
13
|
+
import type { LandingPageOriginalDesignSettingsDto } from './LandingPageOriginalDesignSettingsDto';
|
|
14
|
+
import type { LandingPageMinimalDesignSettingsDto } from './LandingPageMinimalDesignSettingsDto';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface LandingPageDesignSettingsDto
|
|
19
|
+
*/
|
|
20
|
+
export interface LandingPageDesignSettingsDto {
|
|
21
|
+
/**
|
|
22
|
+
* Settings used by the original landing page design.
|
|
23
|
+
* @type {LandingPageOriginalDesignSettingsDto}
|
|
24
|
+
* @memberof LandingPageDesignSettingsDto
|
|
25
|
+
*/
|
|
26
|
+
original: LandingPageOriginalDesignSettingsDto;
|
|
27
|
+
/**
|
|
28
|
+
* Settings used by the modern landing page design.
|
|
29
|
+
* @type {LandingPageModernDesignSettingsDto}
|
|
30
|
+
* @memberof LandingPageDesignSettingsDto
|
|
31
|
+
*/
|
|
32
|
+
modern: LandingPageModernDesignSettingsDto;
|
|
33
|
+
/**
|
|
34
|
+
* Settings used by the minimal landing page design.
|
|
35
|
+
* @type {LandingPageMinimalDesignSettingsDto}
|
|
36
|
+
* @memberof LandingPageDesignSettingsDto
|
|
37
|
+
*/
|
|
38
|
+
minimal: LandingPageMinimalDesignSettingsDto;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Check if a given object implements the LandingPageDesignSettingsDto interface.
|
|
42
|
+
*/
|
|
43
|
+
export declare function instanceOfLandingPageDesignSettingsDto(value: object): value is LandingPageDesignSettingsDto;
|
|
44
|
+
export declare function LandingPageDesignSettingsDtoFromJSON(json: any): LandingPageDesignSettingsDto;
|
|
45
|
+
export declare function LandingPageDesignSettingsDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): LandingPageDesignSettingsDto;
|
|
46
|
+
export declare function LandingPageDesignSettingsDtoToJSON(json: any): LandingPageDesignSettingsDto;
|
|
47
|
+
export declare function LandingPageDesignSettingsDtoToJSONTyped(value?: LandingPageDesignSettingsDto | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Nameshift
|
|
6
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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.instanceOfLandingPageDesignSettingsDto = instanceOfLandingPageDesignSettingsDto;
|
|
17
|
+
exports.LandingPageDesignSettingsDtoFromJSON = LandingPageDesignSettingsDtoFromJSON;
|
|
18
|
+
exports.LandingPageDesignSettingsDtoFromJSONTyped = LandingPageDesignSettingsDtoFromJSONTyped;
|
|
19
|
+
exports.LandingPageDesignSettingsDtoToJSON = LandingPageDesignSettingsDtoToJSON;
|
|
20
|
+
exports.LandingPageDesignSettingsDtoToJSONTyped = LandingPageDesignSettingsDtoToJSONTyped;
|
|
21
|
+
var LandingPageModernDesignSettingsDto_1 = require("./LandingPageModernDesignSettingsDto");
|
|
22
|
+
var LandingPageOriginalDesignSettingsDto_1 = require("./LandingPageOriginalDesignSettingsDto");
|
|
23
|
+
var LandingPageMinimalDesignSettingsDto_1 = require("./LandingPageMinimalDesignSettingsDto");
|
|
24
|
+
/**
|
|
25
|
+
* Check if a given object implements the LandingPageDesignSettingsDto interface.
|
|
26
|
+
*/
|
|
27
|
+
function instanceOfLandingPageDesignSettingsDto(value) {
|
|
28
|
+
if (!('original' in value) || value['original'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
if (!('modern' in value) || value['modern'] === undefined)
|
|
31
|
+
return false;
|
|
32
|
+
if (!('minimal' in value) || value['minimal'] === undefined)
|
|
33
|
+
return false;
|
|
34
|
+
return true;
|
|
35
|
+
}
|
|
36
|
+
function LandingPageDesignSettingsDtoFromJSON(json) {
|
|
37
|
+
return LandingPageDesignSettingsDtoFromJSONTyped(json, false);
|
|
38
|
+
}
|
|
39
|
+
function LandingPageDesignSettingsDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
40
|
+
if (json == null) {
|
|
41
|
+
return json;
|
|
42
|
+
}
|
|
43
|
+
return {
|
|
44
|
+
'original': (0, LandingPageOriginalDesignSettingsDto_1.LandingPageOriginalDesignSettingsDtoFromJSON)(json['original']),
|
|
45
|
+
'modern': (0, LandingPageModernDesignSettingsDto_1.LandingPageModernDesignSettingsDtoFromJSON)(json['modern']),
|
|
46
|
+
'minimal': (0, LandingPageMinimalDesignSettingsDto_1.LandingPageMinimalDesignSettingsDtoFromJSON)(json['minimal']),
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
function LandingPageDesignSettingsDtoToJSON(json) {
|
|
50
|
+
return LandingPageDesignSettingsDtoToJSONTyped(json, false);
|
|
51
|
+
}
|
|
52
|
+
function LandingPageDesignSettingsDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
53
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
54
|
+
if (value == null) {
|
|
55
|
+
return value;
|
|
56
|
+
}
|
|
57
|
+
return {
|
|
58
|
+
'original': (0, LandingPageOriginalDesignSettingsDto_1.LandingPageOriginalDesignSettingsDtoToJSON)(value['original']),
|
|
59
|
+
'modern': (0, LandingPageModernDesignSettingsDto_1.LandingPageModernDesignSettingsDtoToJSON)(value['modern']),
|
|
60
|
+
'minimal': (0, LandingPageMinimalDesignSettingsDto_1.LandingPageMinimalDesignSettingsDtoToJSON)(value['minimal']),
|
|
61
|
+
};
|
|
62
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Nameshift
|
|
3
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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
|
+
import type { LandingPageMinimalDesignSettingsInput } from './LandingPageMinimalDesignSettingsInput';
|
|
13
|
+
import type { LandingPageOriginalDesignSettingsInput } from './LandingPageOriginalDesignSettingsInput';
|
|
14
|
+
import type { LandingPageModernDesignSettingsInput } from './LandingPageModernDesignSettingsInput';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface LandingPageDesignSettingsInput
|
|
19
|
+
*/
|
|
20
|
+
export interface LandingPageDesignSettingsInput {
|
|
21
|
+
/**
|
|
22
|
+
* Settings used by the original landing page design
|
|
23
|
+
* @type {LandingPageOriginalDesignSettingsInput}
|
|
24
|
+
* @memberof LandingPageDesignSettingsInput
|
|
25
|
+
*/
|
|
26
|
+
original?: LandingPageOriginalDesignSettingsInput;
|
|
27
|
+
/**
|
|
28
|
+
* Settings used by the modern landing page design
|
|
29
|
+
* @type {LandingPageModernDesignSettingsInput}
|
|
30
|
+
* @memberof LandingPageDesignSettingsInput
|
|
31
|
+
*/
|
|
32
|
+
modern?: LandingPageModernDesignSettingsInput;
|
|
33
|
+
/**
|
|
34
|
+
* Settings used by the minimal landing page design
|
|
35
|
+
* @type {LandingPageMinimalDesignSettingsInput}
|
|
36
|
+
* @memberof LandingPageDesignSettingsInput
|
|
37
|
+
*/
|
|
38
|
+
minimal?: LandingPageMinimalDesignSettingsInput;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Check if a given object implements the LandingPageDesignSettingsInput interface.
|
|
42
|
+
*/
|
|
43
|
+
export declare function instanceOfLandingPageDesignSettingsInput(value: object): value is LandingPageDesignSettingsInput;
|
|
44
|
+
export declare function LandingPageDesignSettingsInputFromJSON(json: any): LandingPageDesignSettingsInput;
|
|
45
|
+
export declare function LandingPageDesignSettingsInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): LandingPageDesignSettingsInput;
|
|
46
|
+
export declare function LandingPageDesignSettingsInputToJSON(json: any): LandingPageDesignSettingsInput;
|
|
47
|
+
export declare function LandingPageDesignSettingsInputToJSONTyped(value?: LandingPageDesignSettingsInput | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Nameshift
|
|
6
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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.instanceOfLandingPageDesignSettingsInput = instanceOfLandingPageDesignSettingsInput;
|
|
17
|
+
exports.LandingPageDesignSettingsInputFromJSON = LandingPageDesignSettingsInputFromJSON;
|
|
18
|
+
exports.LandingPageDesignSettingsInputFromJSONTyped = LandingPageDesignSettingsInputFromJSONTyped;
|
|
19
|
+
exports.LandingPageDesignSettingsInputToJSON = LandingPageDesignSettingsInputToJSON;
|
|
20
|
+
exports.LandingPageDesignSettingsInputToJSONTyped = LandingPageDesignSettingsInputToJSONTyped;
|
|
21
|
+
var LandingPageMinimalDesignSettingsInput_1 = require("./LandingPageMinimalDesignSettingsInput");
|
|
22
|
+
var LandingPageOriginalDesignSettingsInput_1 = require("./LandingPageOriginalDesignSettingsInput");
|
|
23
|
+
var LandingPageModernDesignSettingsInput_1 = require("./LandingPageModernDesignSettingsInput");
|
|
24
|
+
/**
|
|
25
|
+
* Check if a given object implements the LandingPageDesignSettingsInput interface.
|
|
26
|
+
*/
|
|
27
|
+
function instanceOfLandingPageDesignSettingsInput(value) {
|
|
28
|
+
return true;
|
|
29
|
+
}
|
|
30
|
+
function LandingPageDesignSettingsInputFromJSON(json) {
|
|
31
|
+
return LandingPageDesignSettingsInputFromJSONTyped(json, false);
|
|
32
|
+
}
|
|
33
|
+
function LandingPageDesignSettingsInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
34
|
+
if (json == null) {
|
|
35
|
+
return json;
|
|
36
|
+
}
|
|
37
|
+
return {
|
|
38
|
+
'original': json['original'] == null ? undefined : (0, LandingPageOriginalDesignSettingsInput_1.LandingPageOriginalDesignSettingsInputFromJSON)(json['original']),
|
|
39
|
+
'modern': json['modern'] == null ? undefined : (0, LandingPageModernDesignSettingsInput_1.LandingPageModernDesignSettingsInputFromJSON)(json['modern']),
|
|
40
|
+
'minimal': json['minimal'] == null ? undefined : (0, LandingPageMinimalDesignSettingsInput_1.LandingPageMinimalDesignSettingsInputFromJSON)(json['minimal']),
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
function LandingPageDesignSettingsInputToJSON(json) {
|
|
44
|
+
return LandingPageDesignSettingsInputToJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
function LandingPageDesignSettingsInputToJSONTyped(value, ignoreDiscriminator) {
|
|
47
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
48
|
+
if (value == null) {
|
|
49
|
+
return value;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
'original': (0, LandingPageOriginalDesignSettingsInput_1.LandingPageOriginalDesignSettingsInputToJSON)(value['original']),
|
|
53
|
+
'modern': (0, LandingPageModernDesignSettingsInput_1.LandingPageModernDesignSettingsInputToJSON)(value['modern']),
|
|
54
|
+
'minimal': (0, LandingPageMinimalDesignSettingsInput_1.LandingPageMinimalDesignSettingsInputToJSON)(value['minimal']),
|
|
55
|
+
};
|
|
56
|
+
}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { LandingPageDesignSettingsInput } from './LandingPageDesignSettingsInput';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -21,54 +22,12 @@ export interface LandingPageInput {
|
|
|
21
22
|
* @memberof LandingPageInput
|
|
22
23
|
*/
|
|
23
24
|
anonymous?: boolean | null;
|
|
24
|
-
/**
|
|
25
|
-
* Whether to show related domains on the landing page
|
|
26
|
-
* @type {boolean}
|
|
27
|
-
* @memberof LandingPageInput
|
|
28
|
-
*/
|
|
29
|
-
showRelatedDomains?: boolean | null;
|
|
30
|
-
/**
|
|
31
|
-
* Whether to show last online timestamp on the landing page
|
|
32
|
-
* @type {boolean}
|
|
33
|
-
* @memberof LandingPageInput
|
|
34
|
-
*/
|
|
35
|
-
showLastOnline?: boolean | null;
|
|
36
|
-
/**
|
|
37
|
-
* Whether to show estimated delivery time on the landing page
|
|
38
|
-
* @type {boolean}
|
|
39
|
-
* @memberof LandingPageInput
|
|
40
|
-
*/
|
|
41
|
-
showDeliversIn?: boolean | null;
|
|
42
|
-
/**
|
|
43
|
-
* Whether to show Trustpilot widget on the landing page
|
|
44
|
-
* @type {boolean}
|
|
45
|
-
* @memberof LandingPageInput
|
|
46
|
-
*/
|
|
47
|
-
showTrustpilot?: boolean | null;
|
|
48
25
|
/**
|
|
49
26
|
* Whether to display DNSSEC status on the landing page
|
|
50
27
|
* @type {boolean}
|
|
51
28
|
* @memberof LandingPageInput
|
|
52
29
|
*/
|
|
53
30
|
dnssec?: boolean | null;
|
|
54
|
-
/**
|
|
55
|
-
* Whether to display SEO metrics on the landing page
|
|
56
|
-
* @type {boolean}
|
|
57
|
-
* @memberof LandingPageInput
|
|
58
|
-
*/
|
|
59
|
-
seoMetrics?: boolean | null;
|
|
60
|
-
/**
|
|
61
|
-
* Whether to display visitor statistics on the landing page
|
|
62
|
-
* @type {boolean}
|
|
63
|
-
* @memberof LandingPageInput
|
|
64
|
-
*/
|
|
65
|
-
visitorStats?: boolean | null;
|
|
66
|
-
/**
|
|
67
|
-
* Minimum domain authority required to display SEO metrics
|
|
68
|
-
* @type {number}
|
|
69
|
-
* @memberof LandingPageInput
|
|
70
|
-
*/
|
|
71
|
-
minDomainAuthority?: number | null;
|
|
72
31
|
/**
|
|
73
32
|
* Whether to require the lead buyer company name
|
|
74
33
|
* @type {boolean}
|
|
@@ -82,17 +41,17 @@ export interface LandingPageInput {
|
|
|
82
41
|
*/
|
|
83
42
|
requestLeadBuyerPhoneNumber?: LandingPageInputRequestLeadBuyerPhoneNumberEnum | null;
|
|
84
43
|
/**
|
|
85
|
-
*
|
|
44
|
+
* Landing page UI design variant
|
|
86
45
|
* @type {string}
|
|
87
46
|
* @memberof LandingPageInput
|
|
88
47
|
*/
|
|
89
|
-
|
|
48
|
+
design?: LandingPageInputDesignEnum | null;
|
|
90
49
|
/**
|
|
91
|
-
*
|
|
92
|
-
* @type {
|
|
50
|
+
* Settings grouped by landing page design
|
|
51
|
+
* @type {LandingPageDesignSettingsInput}
|
|
93
52
|
* @memberof LandingPageInput
|
|
94
53
|
*/
|
|
95
|
-
|
|
54
|
+
designSettings?: LandingPageDesignSettingsInput;
|
|
96
55
|
}
|
|
97
56
|
/**
|
|
98
57
|
* @export
|
|
@@ -19,6 +19,7 @@ exports.LandingPageInputFromJSON = LandingPageInputFromJSON;
|
|
|
19
19
|
exports.LandingPageInputFromJSONTyped = LandingPageInputFromJSONTyped;
|
|
20
20
|
exports.LandingPageInputToJSON = LandingPageInputToJSON;
|
|
21
21
|
exports.LandingPageInputToJSONTyped = LandingPageInputToJSONTyped;
|
|
22
|
+
var LandingPageDesignSettingsInput_1 = require("./LandingPageDesignSettingsInput");
|
|
22
23
|
/**
|
|
23
24
|
* @export
|
|
24
25
|
*/
|
|
@@ -50,18 +51,11 @@ function LandingPageInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
50
51
|
}
|
|
51
52
|
return {
|
|
52
53
|
'anonymous': json['anonymous'] == null ? undefined : json['anonymous'],
|
|
53
|
-
'showRelatedDomains': json['showRelatedDomains'] == null ? undefined : json['showRelatedDomains'],
|
|
54
|
-
'showLastOnline': json['showLastOnline'] == null ? undefined : json['showLastOnline'],
|
|
55
|
-
'showDeliversIn': json['showDeliversIn'] == null ? undefined : json['showDeliversIn'],
|
|
56
|
-
'showTrustpilot': json['showTrustpilot'] == null ? undefined : json['showTrustpilot'],
|
|
57
54
|
'dnssec': json['dnssec'] == null ? undefined : json['dnssec'],
|
|
58
|
-
'seoMetrics': json['seoMetrics'] == null ? undefined : json['seoMetrics'],
|
|
59
|
-
'visitorStats': json['visitorStats'] == null ? undefined : json['visitorStats'],
|
|
60
|
-
'minDomainAuthority': json['minDomainAuthority'] == null ? undefined : json['minDomainAuthority'],
|
|
61
55
|
'requestLeadBuyerCompanyName': json['requestLeadBuyerCompanyName'] == null ? undefined : json['requestLeadBuyerCompanyName'],
|
|
62
56
|
'requestLeadBuyerPhoneNumber': json['requestLeadBuyerPhoneNumber'] == null ? undefined : json['requestLeadBuyerPhoneNumber'],
|
|
63
|
-
'externalLink': json['externalLink'] == null ? undefined : json['externalLink'],
|
|
64
57
|
'design': json['design'] == null ? undefined : json['design'],
|
|
58
|
+
'designSettings': json['designSettings'] == null ? undefined : (0, LandingPageDesignSettingsInput_1.LandingPageDesignSettingsInputFromJSON)(json['designSettings']),
|
|
65
59
|
};
|
|
66
60
|
}
|
|
67
61
|
function LandingPageInputToJSON(json) {
|
|
@@ -74,17 +68,10 @@ function LandingPageInputToJSONTyped(value, ignoreDiscriminator) {
|
|
|
74
68
|
}
|
|
75
69
|
return {
|
|
76
70
|
'anonymous': value['anonymous'],
|
|
77
|
-
'showRelatedDomains': value['showRelatedDomains'],
|
|
78
|
-
'showLastOnline': value['showLastOnline'],
|
|
79
|
-
'showDeliversIn': value['showDeliversIn'],
|
|
80
|
-
'showTrustpilot': value['showTrustpilot'],
|
|
81
71
|
'dnssec': value['dnssec'],
|
|
82
|
-
'seoMetrics': value['seoMetrics'],
|
|
83
|
-
'visitorStats': value['visitorStats'],
|
|
84
|
-
'minDomainAuthority': value['minDomainAuthority'],
|
|
85
72
|
'requestLeadBuyerCompanyName': value['requestLeadBuyerCompanyName'],
|
|
86
73
|
'requestLeadBuyerPhoneNumber': value['requestLeadBuyerPhoneNumber'],
|
|
87
|
-
'externalLink': value['externalLink'],
|
|
88
74
|
'design': value['design'],
|
|
75
|
+
'designSettings': (0, LandingPageDesignSettingsInput_1.LandingPageDesignSettingsInputToJSON)(value['designSettings']),
|
|
89
76
|
};
|
|
90
77
|
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Nameshift
|
|
3
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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 LandingPageMinimalDesignSettingsDto
|
|
16
|
+
*/
|
|
17
|
+
export interface LandingPageMinimalDesignSettingsDto {
|
|
18
|
+
/**
|
|
19
|
+
* Hexadecimal background color, or null to use the design default.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof LandingPageMinimalDesignSettingsDto
|
|
22
|
+
*/
|
|
23
|
+
backgroundColor: string | null;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the LandingPageMinimalDesignSettingsDto interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfLandingPageMinimalDesignSettingsDto(value: object): value is LandingPageMinimalDesignSettingsDto;
|
|
29
|
+
export declare function LandingPageMinimalDesignSettingsDtoFromJSON(json: any): LandingPageMinimalDesignSettingsDto;
|
|
30
|
+
export declare function LandingPageMinimalDesignSettingsDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): LandingPageMinimalDesignSettingsDto;
|
|
31
|
+
export declare function LandingPageMinimalDesignSettingsDtoToJSON(json: any): LandingPageMinimalDesignSettingsDto;
|
|
32
|
+
export declare function LandingPageMinimalDesignSettingsDtoToJSONTyped(value?: LandingPageMinimalDesignSettingsDto | null, ignoreDiscriminator?: boolean): any;
|