@randock/nameshift-api-client 0.0.442 → 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 +12 -0
- package/README.md +3 -3
- 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/WithSettingsInner.d.ts +0 -24
- package/dist/models/WithSettingsInner.js +0 -16
- package/dist/models/index.d.ts +12 -0
- package/dist/models/index.js +12 -0
- package/package.json +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/WithSettingsInner.ts +0 -36
- package/src/models/index.ts +12 -0
|
@@ -0,0 +1,79 @@
|
|
|
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.instanceOfLandingPageModernDesignSettingsDto = instanceOfLandingPageModernDesignSettingsDto;
|
|
17
|
+
exports.LandingPageModernDesignSettingsDtoFromJSON = LandingPageModernDesignSettingsDtoFromJSON;
|
|
18
|
+
exports.LandingPageModernDesignSettingsDtoFromJSONTyped = LandingPageModernDesignSettingsDtoFromJSONTyped;
|
|
19
|
+
exports.LandingPageModernDesignSettingsDtoToJSON = LandingPageModernDesignSettingsDtoToJSON;
|
|
20
|
+
exports.LandingPageModernDesignSettingsDtoToJSONTyped = LandingPageModernDesignSettingsDtoToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the LandingPageModernDesignSettingsDto interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfLandingPageModernDesignSettingsDto(value) {
|
|
25
|
+
if (!('showRelatedDomains' in value) || value['showRelatedDomains'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('showLastOnline' in value) || value['showLastOnline'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('showDeliversIn' in value) || value['showDeliversIn'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
if (!('showTrustpilot' in value) || value['showTrustpilot'] === undefined)
|
|
32
|
+
return false;
|
|
33
|
+
if (!('seoMetrics' in value) || value['seoMetrics'] === undefined)
|
|
34
|
+
return false;
|
|
35
|
+
if (!('minDomainAuthority' in value) || value['minDomainAuthority'] === undefined)
|
|
36
|
+
return false;
|
|
37
|
+
if (!('visitorStats' in value) || value['visitorStats'] === undefined)
|
|
38
|
+
return false;
|
|
39
|
+
if (!('externalLink' in value) || value['externalLink'] === undefined)
|
|
40
|
+
return false;
|
|
41
|
+
return true;
|
|
42
|
+
}
|
|
43
|
+
function LandingPageModernDesignSettingsDtoFromJSON(json) {
|
|
44
|
+
return LandingPageModernDesignSettingsDtoFromJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
function LandingPageModernDesignSettingsDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
47
|
+
if (json == null) {
|
|
48
|
+
return json;
|
|
49
|
+
}
|
|
50
|
+
return {
|
|
51
|
+
'showRelatedDomains': json['showRelatedDomains'],
|
|
52
|
+
'showLastOnline': json['showLastOnline'],
|
|
53
|
+
'showDeliversIn': json['showDeliversIn'],
|
|
54
|
+
'showTrustpilot': json['showTrustpilot'],
|
|
55
|
+
'seoMetrics': json['seoMetrics'],
|
|
56
|
+
'minDomainAuthority': json['minDomainAuthority'],
|
|
57
|
+
'visitorStats': json['visitorStats'],
|
|
58
|
+
'externalLink': json['externalLink'],
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
function LandingPageModernDesignSettingsDtoToJSON(json) {
|
|
62
|
+
return LandingPageModernDesignSettingsDtoToJSONTyped(json, false);
|
|
63
|
+
}
|
|
64
|
+
function LandingPageModernDesignSettingsDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
65
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
66
|
+
if (value == null) {
|
|
67
|
+
return value;
|
|
68
|
+
}
|
|
69
|
+
return {
|
|
70
|
+
'showRelatedDomains': value['showRelatedDomains'],
|
|
71
|
+
'showLastOnline': value['showLastOnline'],
|
|
72
|
+
'showDeliversIn': value['showDeliversIn'],
|
|
73
|
+
'showTrustpilot': value['showTrustpilot'],
|
|
74
|
+
'seoMetrics': value['seoMetrics'],
|
|
75
|
+
'minDomainAuthority': value['minDomainAuthority'],
|
|
76
|
+
'visitorStats': value['visitorStats'],
|
|
77
|
+
'externalLink': value['externalLink'],
|
|
78
|
+
};
|
|
79
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
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 LandingPageModernDesignSettingsInput
|
|
16
|
+
*/
|
|
17
|
+
export interface LandingPageModernDesignSettingsInput {
|
|
18
|
+
/**
|
|
19
|
+
* Whether to show related domains on the landing page
|
|
20
|
+
* @type {boolean}
|
|
21
|
+
* @memberof LandingPageModernDesignSettingsInput
|
|
22
|
+
*/
|
|
23
|
+
showRelatedDomains?: boolean | null;
|
|
24
|
+
/**
|
|
25
|
+
* Whether to show last online timestamp on the landing page
|
|
26
|
+
* @type {boolean}
|
|
27
|
+
* @memberof LandingPageModernDesignSettingsInput
|
|
28
|
+
*/
|
|
29
|
+
showLastOnline?: boolean | null;
|
|
30
|
+
/**
|
|
31
|
+
* Whether to show estimated delivery time on the landing page
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof LandingPageModernDesignSettingsInput
|
|
34
|
+
*/
|
|
35
|
+
showDeliversIn?: boolean | null;
|
|
36
|
+
/**
|
|
37
|
+
* Whether to show Trustpilot widget on the landing page
|
|
38
|
+
* @type {boolean}
|
|
39
|
+
* @memberof LandingPageModernDesignSettingsInput
|
|
40
|
+
*/
|
|
41
|
+
showTrustpilot?: boolean | null;
|
|
42
|
+
/**
|
|
43
|
+
* Whether to display SEO metrics on the landing page
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @memberof LandingPageModernDesignSettingsInput
|
|
46
|
+
*/
|
|
47
|
+
seoMetrics?: boolean | null;
|
|
48
|
+
/**
|
|
49
|
+
* Whether to display visitor statistics on the landing page
|
|
50
|
+
* @type {boolean}
|
|
51
|
+
* @memberof LandingPageModernDesignSettingsInput
|
|
52
|
+
*/
|
|
53
|
+
visitorStats?: boolean | null;
|
|
54
|
+
/**
|
|
55
|
+
* Minimum domain authority required to display SEO metrics
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof LandingPageModernDesignSettingsInput
|
|
58
|
+
*/
|
|
59
|
+
minDomainAuthority?: number | null;
|
|
60
|
+
/**
|
|
61
|
+
* External link displayed on the landing page
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof LandingPageModernDesignSettingsInput
|
|
64
|
+
*/
|
|
65
|
+
externalLink?: string | null;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Check if a given object implements the LandingPageModernDesignSettingsInput interface.
|
|
69
|
+
*/
|
|
70
|
+
export declare function instanceOfLandingPageModernDesignSettingsInput(value: object): value is LandingPageModernDesignSettingsInput;
|
|
71
|
+
export declare function LandingPageModernDesignSettingsInputFromJSON(json: any): LandingPageModernDesignSettingsInput;
|
|
72
|
+
export declare function LandingPageModernDesignSettingsInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): LandingPageModernDesignSettingsInput;
|
|
73
|
+
export declare function LandingPageModernDesignSettingsInputToJSON(json: any): LandingPageModernDesignSettingsInput;
|
|
74
|
+
export declare function LandingPageModernDesignSettingsInputToJSONTyped(value?: LandingPageModernDesignSettingsInput | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,63 @@
|
|
|
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.instanceOfLandingPageModernDesignSettingsInput = instanceOfLandingPageModernDesignSettingsInput;
|
|
17
|
+
exports.LandingPageModernDesignSettingsInputFromJSON = LandingPageModernDesignSettingsInputFromJSON;
|
|
18
|
+
exports.LandingPageModernDesignSettingsInputFromJSONTyped = LandingPageModernDesignSettingsInputFromJSONTyped;
|
|
19
|
+
exports.LandingPageModernDesignSettingsInputToJSON = LandingPageModernDesignSettingsInputToJSON;
|
|
20
|
+
exports.LandingPageModernDesignSettingsInputToJSONTyped = LandingPageModernDesignSettingsInputToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the LandingPageModernDesignSettingsInput interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfLandingPageModernDesignSettingsInput(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function LandingPageModernDesignSettingsInputFromJSON(json) {
|
|
28
|
+
return LandingPageModernDesignSettingsInputFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function LandingPageModernDesignSettingsInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'showRelatedDomains': json['showRelatedDomains'] == null ? undefined : json['showRelatedDomains'],
|
|
36
|
+
'showLastOnline': json['showLastOnline'] == null ? undefined : json['showLastOnline'],
|
|
37
|
+
'showDeliversIn': json['showDeliversIn'] == null ? undefined : json['showDeliversIn'],
|
|
38
|
+
'showTrustpilot': json['showTrustpilot'] == null ? undefined : json['showTrustpilot'],
|
|
39
|
+
'seoMetrics': json['seoMetrics'] == null ? undefined : json['seoMetrics'],
|
|
40
|
+
'visitorStats': json['visitorStats'] == null ? undefined : json['visitorStats'],
|
|
41
|
+
'minDomainAuthority': json['minDomainAuthority'] == null ? undefined : json['minDomainAuthority'],
|
|
42
|
+
'externalLink': json['externalLink'] == null ? undefined : json['externalLink'],
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
function LandingPageModernDesignSettingsInputToJSON(json) {
|
|
46
|
+
return LandingPageModernDesignSettingsInputToJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
function LandingPageModernDesignSettingsInputToJSONTyped(value, ignoreDiscriminator) {
|
|
49
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
50
|
+
if (value == null) {
|
|
51
|
+
return value;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
'showRelatedDomains': value['showRelatedDomains'],
|
|
55
|
+
'showLastOnline': value['showLastOnline'],
|
|
56
|
+
'showDeliversIn': value['showDeliversIn'],
|
|
57
|
+
'showTrustpilot': value['showTrustpilot'],
|
|
58
|
+
'seoMetrics': value['seoMetrics'],
|
|
59
|
+
'visitorStats': value['visitorStats'],
|
|
60
|
+
'minDomainAuthority': value['minDomainAuthority'],
|
|
61
|
+
'externalLink': value['externalLink'],
|
|
62
|
+
};
|
|
63
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
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 LandingPageOriginalDesignSettingsDto
|
|
16
|
+
*/
|
|
17
|
+
export interface LandingPageOriginalDesignSettingsDto {
|
|
18
|
+
/**
|
|
19
|
+
* Whether related domains are shown.
|
|
20
|
+
* @type {boolean}
|
|
21
|
+
* @memberof LandingPageOriginalDesignSettingsDto
|
|
22
|
+
*/
|
|
23
|
+
showRelatedDomains: boolean | null;
|
|
24
|
+
/**
|
|
25
|
+
* Whether the seller last-online indicator is shown.
|
|
26
|
+
* @type {boolean}
|
|
27
|
+
* @memberof LandingPageOriginalDesignSettingsDto
|
|
28
|
+
*/
|
|
29
|
+
showLastOnline: boolean | null;
|
|
30
|
+
/**
|
|
31
|
+
* Whether the estimated delivery time is shown.
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof LandingPageOriginalDesignSettingsDto
|
|
34
|
+
*/
|
|
35
|
+
showDeliversIn: boolean | null;
|
|
36
|
+
/**
|
|
37
|
+
* Whether the Trustpilot widget is shown.
|
|
38
|
+
* @type {boolean}
|
|
39
|
+
* @memberof LandingPageOriginalDesignSettingsDto
|
|
40
|
+
*/
|
|
41
|
+
showTrustpilot: boolean | null;
|
|
42
|
+
/**
|
|
43
|
+
* Whether SEO metrics are displayed.
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @memberof LandingPageOriginalDesignSettingsDto
|
|
46
|
+
*/
|
|
47
|
+
seoMetrics: boolean | null;
|
|
48
|
+
/**
|
|
49
|
+
* Minimum Moz domain authority required to display SEO metrics.
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof LandingPageOriginalDesignSettingsDto
|
|
52
|
+
*/
|
|
53
|
+
minDomainAuthority: number | null;
|
|
54
|
+
/**
|
|
55
|
+
* Whether visitor statistics are displayed.
|
|
56
|
+
* @type {boolean}
|
|
57
|
+
* @memberof LandingPageOriginalDesignSettingsDto
|
|
58
|
+
*/
|
|
59
|
+
visitorStats: boolean | null;
|
|
60
|
+
/**
|
|
61
|
+
* Optional external link shown on the landing page.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof LandingPageOriginalDesignSettingsDto
|
|
64
|
+
*/
|
|
65
|
+
externalLink: string | null;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Check if a given object implements the LandingPageOriginalDesignSettingsDto interface.
|
|
69
|
+
*/
|
|
70
|
+
export declare function instanceOfLandingPageOriginalDesignSettingsDto(value: object): value is LandingPageOriginalDesignSettingsDto;
|
|
71
|
+
export declare function LandingPageOriginalDesignSettingsDtoFromJSON(json: any): LandingPageOriginalDesignSettingsDto;
|
|
72
|
+
export declare function LandingPageOriginalDesignSettingsDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): LandingPageOriginalDesignSettingsDto;
|
|
73
|
+
export declare function LandingPageOriginalDesignSettingsDtoToJSON(json: any): LandingPageOriginalDesignSettingsDto;
|
|
74
|
+
export declare function LandingPageOriginalDesignSettingsDtoToJSONTyped(value?: LandingPageOriginalDesignSettingsDto | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,79 @@
|
|
|
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.instanceOfLandingPageOriginalDesignSettingsDto = instanceOfLandingPageOriginalDesignSettingsDto;
|
|
17
|
+
exports.LandingPageOriginalDesignSettingsDtoFromJSON = LandingPageOriginalDesignSettingsDtoFromJSON;
|
|
18
|
+
exports.LandingPageOriginalDesignSettingsDtoFromJSONTyped = LandingPageOriginalDesignSettingsDtoFromJSONTyped;
|
|
19
|
+
exports.LandingPageOriginalDesignSettingsDtoToJSON = LandingPageOriginalDesignSettingsDtoToJSON;
|
|
20
|
+
exports.LandingPageOriginalDesignSettingsDtoToJSONTyped = LandingPageOriginalDesignSettingsDtoToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the LandingPageOriginalDesignSettingsDto interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfLandingPageOriginalDesignSettingsDto(value) {
|
|
25
|
+
if (!('showRelatedDomains' in value) || value['showRelatedDomains'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('showLastOnline' in value) || value['showLastOnline'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('showDeliversIn' in value) || value['showDeliversIn'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
if (!('showTrustpilot' in value) || value['showTrustpilot'] === undefined)
|
|
32
|
+
return false;
|
|
33
|
+
if (!('seoMetrics' in value) || value['seoMetrics'] === undefined)
|
|
34
|
+
return false;
|
|
35
|
+
if (!('minDomainAuthority' in value) || value['minDomainAuthority'] === undefined)
|
|
36
|
+
return false;
|
|
37
|
+
if (!('visitorStats' in value) || value['visitorStats'] === undefined)
|
|
38
|
+
return false;
|
|
39
|
+
if (!('externalLink' in value) || value['externalLink'] === undefined)
|
|
40
|
+
return false;
|
|
41
|
+
return true;
|
|
42
|
+
}
|
|
43
|
+
function LandingPageOriginalDesignSettingsDtoFromJSON(json) {
|
|
44
|
+
return LandingPageOriginalDesignSettingsDtoFromJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
function LandingPageOriginalDesignSettingsDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
47
|
+
if (json == null) {
|
|
48
|
+
return json;
|
|
49
|
+
}
|
|
50
|
+
return {
|
|
51
|
+
'showRelatedDomains': json['showRelatedDomains'],
|
|
52
|
+
'showLastOnline': json['showLastOnline'],
|
|
53
|
+
'showDeliversIn': json['showDeliversIn'],
|
|
54
|
+
'showTrustpilot': json['showTrustpilot'],
|
|
55
|
+
'seoMetrics': json['seoMetrics'],
|
|
56
|
+
'minDomainAuthority': json['minDomainAuthority'],
|
|
57
|
+
'visitorStats': json['visitorStats'],
|
|
58
|
+
'externalLink': json['externalLink'],
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
function LandingPageOriginalDesignSettingsDtoToJSON(json) {
|
|
62
|
+
return LandingPageOriginalDesignSettingsDtoToJSONTyped(json, false);
|
|
63
|
+
}
|
|
64
|
+
function LandingPageOriginalDesignSettingsDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
65
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
66
|
+
if (value == null) {
|
|
67
|
+
return value;
|
|
68
|
+
}
|
|
69
|
+
return {
|
|
70
|
+
'showRelatedDomains': value['showRelatedDomains'],
|
|
71
|
+
'showLastOnline': value['showLastOnline'],
|
|
72
|
+
'showDeliversIn': value['showDeliversIn'],
|
|
73
|
+
'showTrustpilot': value['showTrustpilot'],
|
|
74
|
+
'seoMetrics': value['seoMetrics'],
|
|
75
|
+
'minDomainAuthority': value['minDomainAuthority'],
|
|
76
|
+
'visitorStats': value['visitorStats'],
|
|
77
|
+
'externalLink': value['externalLink'],
|
|
78
|
+
};
|
|
79
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
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 LandingPageOriginalDesignSettingsInput
|
|
16
|
+
*/
|
|
17
|
+
export interface LandingPageOriginalDesignSettingsInput {
|
|
18
|
+
/**
|
|
19
|
+
* Whether to show related domains on the landing page
|
|
20
|
+
* @type {boolean}
|
|
21
|
+
* @memberof LandingPageOriginalDesignSettingsInput
|
|
22
|
+
*/
|
|
23
|
+
showRelatedDomains?: boolean | null;
|
|
24
|
+
/**
|
|
25
|
+
* Whether to show last online timestamp on the landing page
|
|
26
|
+
* @type {boolean}
|
|
27
|
+
* @memberof LandingPageOriginalDesignSettingsInput
|
|
28
|
+
*/
|
|
29
|
+
showLastOnline?: boolean | null;
|
|
30
|
+
/**
|
|
31
|
+
* Whether to show estimated delivery time on the landing page
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof LandingPageOriginalDesignSettingsInput
|
|
34
|
+
*/
|
|
35
|
+
showDeliversIn?: boolean | null;
|
|
36
|
+
/**
|
|
37
|
+
* Whether to show Trustpilot widget on the landing page
|
|
38
|
+
* @type {boolean}
|
|
39
|
+
* @memberof LandingPageOriginalDesignSettingsInput
|
|
40
|
+
*/
|
|
41
|
+
showTrustpilot?: boolean | null;
|
|
42
|
+
/**
|
|
43
|
+
* Whether to display SEO metrics on the landing page
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @memberof LandingPageOriginalDesignSettingsInput
|
|
46
|
+
*/
|
|
47
|
+
seoMetrics?: boolean | null;
|
|
48
|
+
/**
|
|
49
|
+
* Whether to display visitor statistics on the landing page
|
|
50
|
+
* @type {boolean}
|
|
51
|
+
* @memberof LandingPageOriginalDesignSettingsInput
|
|
52
|
+
*/
|
|
53
|
+
visitorStats?: boolean | null;
|
|
54
|
+
/**
|
|
55
|
+
* Minimum domain authority required to display SEO metrics
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof LandingPageOriginalDesignSettingsInput
|
|
58
|
+
*/
|
|
59
|
+
minDomainAuthority?: number | null;
|
|
60
|
+
/**
|
|
61
|
+
* External link displayed on the landing page
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof LandingPageOriginalDesignSettingsInput
|
|
64
|
+
*/
|
|
65
|
+
externalLink?: string | null;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Check if a given object implements the LandingPageOriginalDesignSettingsInput interface.
|
|
69
|
+
*/
|
|
70
|
+
export declare function instanceOfLandingPageOriginalDesignSettingsInput(value: object): value is LandingPageOriginalDesignSettingsInput;
|
|
71
|
+
export declare function LandingPageOriginalDesignSettingsInputFromJSON(json: any): LandingPageOriginalDesignSettingsInput;
|
|
72
|
+
export declare function LandingPageOriginalDesignSettingsInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): LandingPageOriginalDesignSettingsInput;
|
|
73
|
+
export declare function LandingPageOriginalDesignSettingsInputToJSON(json: any): LandingPageOriginalDesignSettingsInput;
|
|
74
|
+
export declare function LandingPageOriginalDesignSettingsInputToJSONTyped(value?: LandingPageOriginalDesignSettingsInput | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,63 @@
|
|
|
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.instanceOfLandingPageOriginalDesignSettingsInput = instanceOfLandingPageOriginalDesignSettingsInput;
|
|
17
|
+
exports.LandingPageOriginalDesignSettingsInputFromJSON = LandingPageOriginalDesignSettingsInputFromJSON;
|
|
18
|
+
exports.LandingPageOriginalDesignSettingsInputFromJSONTyped = LandingPageOriginalDesignSettingsInputFromJSONTyped;
|
|
19
|
+
exports.LandingPageOriginalDesignSettingsInputToJSON = LandingPageOriginalDesignSettingsInputToJSON;
|
|
20
|
+
exports.LandingPageOriginalDesignSettingsInputToJSONTyped = LandingPageOriginalDesignSettingsInputToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the LandingPageOriginalDesignSettingsInput interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfLandingPageOriginalDesignSettingsInput(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function LandingPageOriginalDesignSettingsInputFromJSON(json) {
|
|
28
|
+
return LandingPageOriginalDesignSettingsInputFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function LandingPageOriginalDesignSettingsInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'showRelatedDomains': json['showRelatedDomains'] == null ? undefined : json['showRelatedDomains'],
|
|
36
|
+
'showLastOnline': json['showLastOnline'] == null ? undefined : json['showLastOnline'],
|
|
37
|
+
'showDeliversIn': json['showDeliversIn'] == null ? undefined : json['showDeliversIn'],
|
|
38
|
+
'showTrustpilot': json['showTrustpilot'] == null ? undefined : json['showTrustpilot'],
|
|
39
|
+
'seoMetrics': json['seoMetrics'] == null ? undefined : json['seoMetrics'],
|
|
40
|
+
'visitorStats': json['visitorStats'] == null ? undefined : json['visitorStats'],
|
|
41
|
+
'minDomainAuthority': json['minDomainAuthority'] == null ? undefined : json['minDomainAuthority'],
|
|
42
|
+
'externalLink': json['externalLink'] == null ? undefined : json['externalLink'],
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
function LandingPageOriginalDesignSettingsInputToJSON(json) {
|
|
46
|
+
return LandingPageOriginalDesignSettingsInputToJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
function LandingPageOriginalDesignSettingsInputToJSONTyped(value, ignoreDiscriminator) {
|
|
49
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
50
|
+
if (value == null) {
|
|
51
|
+
return value;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
'showRelatedDomains': value['showRelatedDomains'],
|
|
55
|
+
'showLastOnline': value['showLastOnline'],
|
|
56
|
+
'showDeliversIn': value['showDeliversIn'],
|
|
57
|
+
'showTrustpilot': value['showTrustpilot'],
|
|
58
|
+
'seoMetrics': value['seoMetrics'],
|
|
59
|
+
'visitorStats': value['visitorStats'],
|
|
60
|
+
'minDomainAuthority': value['minDomainAuthority'],
|
|
61
|
+
'externalLink': value['externalLink'],
|
|
62
|
+
};
|
|
63
|
+
}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { LandingPageDesignSettingsDto } from './LandingPageDesignSettingsDto';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -21,48 +22,6 @@ export interface LandingPageSettingsDto {
|
|
|
21
22
|
* @memberof LandingPageSettingsDto
|
|
22
23
|
*/
|
|
23
24
|
anonymous: boolean | null;
|
|
24
|
-
/**
|
|
25
|
-
* Whether related domains are shown on the landing page.
|
|
26
|
-
* @type {boolean}
|
|
27
|
-
* @memberof LandingPageSettingsDto
|
|
28
|
-
*/
|
|
29
|
-
showRelatedDomains: boolean | null;
|
|
30
|
-
/**
|
|
31
|
-
* Whether SEO metrics are displayed on the landing page.
|
|
32
|
-
* @type {boolean}
|
|
33
|
-
* @memberof LandingPageSettingsDto
|
|
34
|
-
*/
|
|
35
|
-
seoMetrics: boolean | null;
|
|
36
|
-
/**
|
|
37
|
-
* Whether visitor statistics are displayed on the landing page.
|
|
38
|
-
* @type {boolean}
|
|
39
|
-
* @memberof LandingPageSettingsDto
|
|
40
|
-
*/
|
|
41
|
-
visitorStats: boolean | null;
|
|
42
|
-
/**
|
|
43
|
-
* Minimum Moz domain authority required to display SEO metrics.
|
|
44
|
-
* @type {number}
|
|
45
|
-
* @memberof LandingPageSettingsDto
|
|
46
|
-
*/
|
|
47
|
-
minDomainAuthority: number | null;
|
|
48
|
-
/**
|
|
49
|
-
* Whether the seller last-online indicator is shown.
|
|
50
|
-
* @type {boolean}
|
|
51
|
-
* @memberof LandingPageSettingsDto
|
|
52
|
-
*/
|
|
53
|
-
showLastOnline: boolean | null;
|
|
54
|
-
/**
|
|
55
|
-
* Whether the estimated delivery time is shown.
|
|
56
|
-
* @type {boolean}
|
|
57
|
-
* @memberof LandingPageSettingsDto
|
|
58
|
-
*/
|
|
59
|
-
showDeliversIn: boolean | null;
|
|
60
|
-
/**
|
|
61
|
-
* Whether the Trustpilot widget is shown.
|
|
62
|
-
* @type {boolean}
|
|
63
|
-
* @memberof LandingPageSettingsDto
|
|
64
|
-
*/
|
|
65
|
-
showTrustpilot: boolean | null;
|
|
66
25
|
/**
|
|
67
26
|
* Whether DNSSEC status is displayed on the landing page.
|
|
68
27
|
* @type {boolean}
|
|
@@ -82,17 +41,17 @@ export interface LandingPageSettingsDto {
|
|
|
82
41
|
*/
|
|
83
42
|
requestLeadBuyerPhoneNumber: LandingPageSettingsDtoRequestLeadBuyerPhoneNumberEnum | null;
|
|
84
43
|
/**
|
|
85
|
-
*
|
|
44
|
+
* Landing page UI design variant.
|
|
86
45
|
* @type {string}
|
|
87
46
|
* @memberof LandingPageSettingsDto
|
|
88
47
|
*/
|
|
89
|
-
|
|
48
|
+
design: LandingPageSettingsDtoDesignEnum | null;
|
|
90
49
|
/**
|
|
91
|
-
*
|
|
92
|
-
* @type {
|
|
50
|
+
* Settings grouped by landing page design.
|
|
51
|
+
* @type {LandingPageDesignSettingsDto}
|
|
93
52
|
* @memberof LandingPageSettingsDto
|
|
94
53
|
*/
|
|
95
|
-
|
|
54
|
+
designSettings: LandingPageDesignSettingsDto;
|
|
96
55
|
}
|
|
97
56
|
/**
|
|
98
57
|
* @export
|
|
@@ -19,6 +19,7 @@ exports.LandingPageSettingsDtoFromJSON = LandingPageSettingsDtoFromJSON;
|
|
|
19
19
|
exports.LandingPageSettingsDtoFromJSONTyped = LandingPageSettingsDtoFromJSONTyped;
|
|
20
20
|
exports.LandingPageSettingsDtoToJSON = LandingPageSettingsDtoToJSON;
|
|
21
21
|
exports.LandingPageSettingsDtoToJSONTyped = LandingPageSettingsDtoToJSONTyped;
|
|
22
|
+
var LandingPageDesignSettingsDto_1 = require("./LandingPageDesignSettingsDto");
|
|
22
23
|
/**
|
|
23
24
|
* @export
|
|
24
25
|
*/
|
|
@@ -41,30 +42,16 @@ exports.LandingPageSettingsDtoDesignEnum = {
|
|
|
41
42
|
function instanceOfLandingPageSettingsDto(value) {
|
|
42
43
|
if (!('anonymous' in value) || value['anonymous'] === undefined)
|
|
43
44
|
return false;
|
|
44
|
-
if (!('showRelatedDomains' in value) || value['showRelatedDomains'] === undefined)
|
|
45
|
-
return false;
|
|
46
|
-
if (!('seoMetrics' in value) || value['seoMetrics'] === undefined)
|
|
47
|
-
return false;
|
|
48
|
-
if (!('visitorStats' in value) || value['visitorStats'] === undefined)
|
|
49
|
-
return false;
|
|
50
|
-
if (!('minDomainAuthority' in value) || value['minDomainAuthority'] === undefined)
|
|
51
|
-
return false;
|
|
52
|
-
if (!('showLastOnline' in value) || value['showLastOnline'] === undefined)
|
|
53
|
-
return false;
|
|
54
|
-
if (!('showDeliversIn' in value) || value['showDeliversIn'] === undefined)
|
|
55
|
-
return false;
|
|
56
|
-
if (!('showTrustpilot' in value) || value['showTrustpilot'] === undefined)
|
|
57
|
-
return false;
|
|
58
45
|
if (!('dnssec' in value) || value['dnssec'] === undefined)
|
|
59
46
|
return false;
|
|
60
47
|
if (!('requestLeadBuyerCompanyName' in value) || value['requestLeadBuyerCompanyName'] === undefined)
|
|
61
48
|
return false;
|
|
62
49
|
if (!('requestLeadBuyerPhoneNumber' in value) || value['requestLeadBuyerPhoneNumber'] === undefined)
|
|
63
50
|
return false;
|
|
64
|
-
if (!('externalLink' in value) || value['externalLink'] === undefined)
|
|
65
|
-
return false;
|
|
66
51
|
if (!('design' in value) || value['design'] === undefined)
|
|
67
52
|
return false;
|
|
53
|
+
if (!('designSettings' in value) || value['designSettings'] === undefined)
|
|
54
|
+
return false;
|
|
68
55
|
return true;
|
|
69
56
|
}
|
|
70
57
|
function LandingPageSettingsDtoFromJSON(json) {
|
|
@@ -76,18 +63,11 @@ function LandingPageSettingsDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
76
63
|
}
|
|
77
64
|
return {
|
|
78
65
|
'anonymous': json['anonymous'],
|
|
79
|
-
'showRelatedDomains': json['showRelatedDomains'],
|
|
80
|
-
'seoMetrics': json['seoMetrics'],
|
|
81
|
-
'visitorStats': json['visitorStats'],
|
|
82
|
-
'minDomainAuthority': json['minDomainAuthority'],
|
|
83
|
-
'showLastOnline': json['showLastOnline'],
|
|
84
|
-
'showDeliversIn': json['showDeliversIn'],
|
|
85
|
-
'showTrustpilot': json['showTrustpilot'],
|
|
86
66
|
'dnssec': json['dnssec'],
|
|
87
67
|
'requestLeadBuyerCompanyName': json['requestLeadBuyerCompanyName'],
|
|
88
68
|
'requestLeadBuyerPhoneNumber': json['requestLeadBuyerPhoneNumber'],
|
|
89
|
-
'externalLink': json['externalLink'],
|
|
90
69
|
'design': json['design'],
|
|
70
|
+
'designSettings': (0, LandingPageDesignSettingsDto_1.LandingPageDesignSettingsDtoFromJSON)(json['designSettings']),
|
|
91
71
|
};
|
|
92
72
|
}
|
|
93
73
|
function LandingPageSettingsDtoToJSON(json) {
|
|
@@ -100,17 +80,10 @@ function LandingPageSettingsDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
100
80
|
}
|
|
101
81
|
return {
|
|
102
82
|
'anonymous': value['anonymous'],
|
|
103
|
-
'showRelatedDomains': value['showRelatedDomains'],
|
|
104
|
-
'seoMetrics': value['seoMetrics'],
|
|
105
|
-
'visitorStats': value['visitorStats'],
|
|
106
|
-
'minDomainAuthority': value['minDomainAuthority'],
|
|
107
|
-
'showLastOnline': value['showLastOnline'],
|
|
108
|
-
'showDeliversIn': value['showDeliversIn'],
|
|
109
|
-
'showTrustpilot': value['showTrustpilot'],
|
|
110
83
|
'dnssec': value['dnssec'],
|
|
111
84
|
'requestLeadBuyerCompanyName': value['requestLeadBuyerCompanyName'],
|
|
112
85
|
'requestLeadBuyerPhoneNumber': value['requestLeadBuyerPhoneNumber'],
|
|
113
|
-
'externalLink': value['externalLink'],
|
|
114
86
|
'design': value['design'],
|
|
87
|
+
'designSettings': (0, LandingPageDesignSettingsDto_1.LandingPageDesignSettingsDtoToJSON)(value['designSettings']),
|
|
115
88
|
};
|
|
116
89
|
}
|