@randock/nameshift-api-client 0.0.294 → 0.0.295

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.
@@ -96,7 +96,6 @@ src/models/CreateSubscriptionInput.ts
96
96
  src/models/CursorBasedPageInfo.ts
97
97
  src/models/CursorBasedPaginationResponse.ts
98
98
  src/models/DeleteDomainsInput.ts
99
- src/models/DomainDto.ts
100
99
  src/models/DomainExchangeRateDto.ts
101
100
  src/models/DomainLeadPriceNegotiatorAiAgentConfigurationDto.ts
102
101
  src/models/DomainLeadPriceNegotiatorAiAgentConfigurationInput.ts
@@ -145,6 +144,7 @@ src/models/HttpException.ts
145
144
  src/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.ts
146
145
  src/models/IntersectionDomainDtoWithAccountDto.ts
147
146
  src/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.ts
147
+ src/models/IntersectionDomainDtoWithSeoMetricsDto.ts
148
148
  src/models/IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto.ts
149
149
  src/models/IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto.ts
150
150
  src/models/IntersectionLeadDtoWithListFieldsDto.ts
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @randock/nameshift-api-client@0.0.294
1
+ ## @randock/nameshift-api-client@0.0.295
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.294 --save
39
+ npm install @randock/nameshift-api-client@0.0.295 --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
- 568449dfde926d67dd3b77900002c243ad1a582c6cbe2a12a82db1bb7e6186657d95dbafb041d801853e6503007443e9
47
+ 23af0072994eb0e9eab11e1f3d2f1fa923f5ec37eede681a37e04de68f15240c0900689f847b328db746bdbc72c12120
@@ -13,134 +13,141 @@ import type { MoneyDto } from './MoneyDto';
13
13
  import type { RentConfigurationDto } from './RentConfigurationDto';
14
14
  import type { LeaseToOwnConfigurationDto } from './LeaseToOwnConfigurationDto';
15
15
  import type { LandingPageSettingsDto } from './LandingPageSettingsDto';
16
+ import type { SeoMetricsDto } from './SeoMetricsDto';
16
17
  import type { DomainLeadPriceNegotiatorAiAgentConfigurationDto } from './DomainLeadPriceNegotiatorAiAgentConfigurationDto';
17
18
  /**
18
19
  *
19
20
  * @export
20
- * @interface DomainDto
21
+ * @interface IntersectionDomainDtoWithSeoMetricsDto
21
22
  */
22
- export interface DomainDto {
23
+ export interface IntersectionDomainDtoWithSeoMetricsDto {
23
24
  /**
24
25
  * The uuid for this domain.
25
26
  * @type {string}
26
- * @memberof DomainDto
27
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
27
28
  */
28
29
  id: string;
29
30
  /**
30
31
  * The current owner for the domain
31
32
  * @type {string}
32
- * @memberof DomainDto
33
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
33
34
  */
34
35
  accountId: string;
35
36
  /**
36
37
  * The hijacker for the domain
37
38
  * @type {string}
38
- * @memberof DomainDto
39
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
39
40
  */
40
41
  hijackerId: string | null;
42
+ /**
43
+ * The SEO metrics for this domain
44
+ * @type {SeoMetricsDto}
45
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
46
+ */
47
+ seoMetrics: SeoMetricsDto | null;
41
48
  /**
42
49
  * The TLD for this domain.
43
50
  * @type {string}
44
- * @memberof DomainDto
51
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
45
52
  */
46
53
  tld: string;
47
54
  /**
48
55
  * Whether this domain is verified by the owner (ns3, txt) or not.
49
56
  * @type {boolean}
50
- * @memberof DomainDto
57
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
51
58
  */
52
59
  verified: boolean;
53
60
  /**
54
61
  * Whether the nameservers (ns1,ns2) are set or not.
55
62
  * @type {boolean}
56
- * @memberof DomainDto
63
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
57
64
  */
58
65
  nameservers: boolean;
59
66
  /**
60
67
  * The ASCII domain name (example.com, xn--maana-pta.com)
61
68
  * @type {string}
62
- * @memberof DomainDto
69
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
63
70
  */
64
71
  name: string;
65
72
  /**
66
73
  * The unicode domain name (example.com, mañana.com)
67
74
  * @type {string}
68
- * @memberof DomainDto
75
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
69
76
  */
70
77
  displayName: string;
71
78
  /**
72
79
  * /**
73
80
  * The domain's currency code (ISO 4217)
74
81
  * @type {string}
75
- * @memberof DomainDto
82
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
76
83
  */
77
84
  currencyCode: string;
78
85
  /**
79
86
  * The BIN
80
87
  * @type {MoneyDto}
81
- * @memberof DomainDto
88
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
82
89
  */
83
90
  buyNow: MoneyDto;
84
91
  /**
85
92
  * The lease to own configuration
86
93
  * @type {LeaseToOwnConfigurationDto}
87
- * @memberof DomainDto
94
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
88
95
  */
89
96
  leaseToOwn: LeaseToOwnConfigurationDto;
90
97
  /**
91
98
  * The rent configuration
92
99
  * @type {RentConfigurationDto}
93
- * @memberof DomainDto
100
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
94
101
  */
95
102
  rent: RentConfigurationDto;
96
103
  /**
97
104
  * The lease to own configuration
98
105
  * @type {LandingPageSettingsDto}
99
- * @memberof DomainDto
106
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
100
107
  */
101
108
  landingPageSettings: LandingPageSettingsDto;
102
109
  /**
103
110
  * The minimum offer
104
111
  * @type {MoneyDto}
105
- * @memberof DomainDto
112
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
106
113
  */
107
114
  minOffer: MoneyDto;
108
115
  /**
109
116
  * The creation date
110
117
  * @type {Date}
111
- * @memberof DomainDto
118
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
112
119
  */
113
120
  createdAt: Date;
114
121
  /**
115
122
  * The deletion date
116
123
  * @type {Date}
117
- * @memberof DomainDto
124
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
118
125
  */
119
126
  deletedAt: Date | null;
120
127
  /**
121
128
  * The amount of pageviews for this domain, or null if none are tracked.
122
129
  * @type {number}
123
- * @memberof DomainDto
130
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
124
131
  */
125
132
  pageviews: number;
126
133
  /**
127
134
  * Whether the third party sales data sharing is enabled.
128
135
  * @type {boolean}
129
- * @memberof DomainDto
136
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
130
137
  */
131
138
  allowThirdPartySalesDataSharing: boolean | null;
132
139
  /**
133
140
  * The lead price negotiator configuration (AI Agent)
134
141
  * @type {DomainLeadPriceNegotiatorAiAgentConfigurationDto}
135
- * @memberof DomainDto
142
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
136
143
  */
137
144
  leadPriceNegotiator: DomainLeadPriceNegotiatorAiAgentConfigurationDto | null;
138
145
  }
139
146
  /**
140
- * Check if a given object implements the DomainDto interface.
147
+ * Check if a given object implements the IntersectionDomainDtoWithSeoMetricsDto interface.
141
148
  */
142
- export declare function instanceOfDomainDto(value: object): value is DomainDto;
143
- export declare function DomainDtoFromJSON(json: any): DomainDto;
144
- export declare function DomainDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): DomainDto;
145
- export declare function DomainDtoToJSON(json: any): DomainDto;
146
- export declare function DomainDtoToJSONTyped(value?: DomainDto | null, ignoreDiscriminator?: boolean): any;
149
+ export declare function instanceOfIntersectionDomainDtoWithSeoMetricsDto(value: object): value is IntersectionDomainDtoWithSeoMetricsDto;
150
+ export declare function IntersectionDomainDtoWithSeoMetricsDtoFromJSON(json: any): IntersectionDomainDtoWithSeoMetricsDto;
151
+ export declare function IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): IntersectionDomainDtoWithSeoMetricsDto;
152
+ export declare function IntersectionDomainDtoWithSeoMetricsDtoToJSON(json: any): IntersectionDomainDtoWithSeoMetricsDto;
153
+ export declare function IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped(value?: IntersectionDomainDtoWithSeoMetricsDto | null, ignoreDiscriminator?: boolean): any;
@@ -13,26 +13,29 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.instanceOfDomainDto = instanceOfDomainDto;
17
- exports.DomainDtoFromJSON = DomainDtoFromJSON;
18
- exports.DomainDtoFromJSONTyped = DomainDtoFromJSONTyped;
19
- exports.DomainDtoToJSON = DomainDtoToJSON;
20
- exports.DomainDtoToJSONTyped = DomainDtoToJSONTyped;
16
+ exports.instanceOfIntersectionDomainDtoWithSeoMetricsDto = instanceOfIntersectionDomainDtoWithSeoMetricsDto;
17
+ exports.IntersectionDomainDtoWithSeoMetricsDtoFromJSON = IntersectionDomainDtoWithSeoMetricsDtoFromJSON;
18
+ exports.IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped = IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped;
19
+ exports.IntersectionDomainDtoWithSeoMetricsDtoToJSON = IntersectionDomainDtoWithSeoMetricsDtoToJSON;
20
+ exports.IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped = IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped;
21
21
  var MoneyDto_1 = require("./MoneyDto");
22
22
  var RentConfigurationDto_1 = require("./RentConfigurationDto");
23
23
  var LeaseToOwnConfigurationDto_1 = require("./LeaseToOwnConfigurationDto");
24
24
  var LandingPageSettingsDto_1 = require("./LandingPageSettingsDto");
25
+ var SeoMetricsDto_1 = require("./SeoMetricsDto");
25
26
  var DomainLeadPriceNegotiatorAiAgentConfigurationDto_1 = require("./DomainLeadPriceNegotiatorAiAgentConfigurationDto");
26
27
  /**
27
- * Check if a given object implements the DomainDto interface.
28
+ * Check if a given object implements the IntersectionDomainDtoWithSeoMetricsDto interface.
28
29
  */
29
- function instanceOfDomainDto(value) {
30
+ function instanceOfIntersectionDomainDtoWithSeoMetricsDto(value) {
30
31
  if (!('id' in value) || value['id'] === undefined)
31
32
  return false;
32
33
  if (!('accountId' in value) || value['accountId'] === undefined)
33
34
  return false;
34
35
  if (!('hijackerId' in value) || value['hijackerId'] === undefined)
35
36
  return false;
37
+ if (!('seoMetrics' in value) || value['seoMetrics'] === undefined)
38
+ return false;
36
39
  if (!('tld' in value) || value['tld'] === undefined)
37
40
  return false;
38
41
  if (!('verified' in value) || value['verified'] === undefined)
@@ -67,10 +70,10 @@ function instanceOfDomainDto(value) {
67
70
  return false;
68
71
  return true;
69
72
  }
70
- function DomainDtoFromJSON(json) {
71
- return DomainDtoFromJSONTyped(json, false);
73
+ function IntersectionDomainDtoWithSeoMetricsDtoFromJSON(json) {
74
+ return IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped(json, false);
72
75
  }
73
- function DomainDtoFromJSONTyped(json, ignoreDiscriminator) {
76
+ function IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped(json, ignoreDiscriminator) {
74
77
  if (json == null) {
75
78
  return json;
76
79
  }
@@ -78,6 +81,7 @@ function DomainDtoFromJSONTyped(json, ignoreDiscriminator) {
78
81
  'id': json['id'],
79
82
  'accountId': json['accountId'],
80
83
  'hijackerId': json['hijackerId'],
84
+ 'seoMetrics': (0, SeoMetricsDto_1.SeoMetricsDtoFromJSON)(json['seoMetrics']),
81
85
  'tld': json['tld'],
82
86
  'verified': json['verified'],
83
87
  'nameservers': json['nameservers'],
@@ -96,10 +100,10 @@ function DomainDtoFromJSONTyped(json, ignoreDiscriminator) {
96
100
  'leadPriceNegotiator': (0, DomainLeadPriceNegotiatorAiAgentConfigurationDto_1.DomainLeadPriceNegotiatorAiAgentConfigurationDtoFromJSON)(json['leadPriceNegotiator']),
97
101
  };
98
102
  }
99
- function DomainDtoToJSON(json) {
100
- return DomainDtoToJSONTyped(json, false);
103
+ function IntersectionDomainDtoWithSeoMetricsDtoToJSON(json) {
104
+ return IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped(json, false);
101
105
  }
102
- function DomainDtoToJSONTyped(value, ignoreDiscriminator) {
106
+ function IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped(value, ignoreDiscriminator) {
103
107
  if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
104
108
  if (value == null) {
105
109
  return value;
@@ -108,6 +112,7 @@ function DomainDtoToJSONTyped(value, ignoreDiscriminator) {
108
112
  'id': value['id'],
109
113
  'accountId': value['accountId'],
110
114
  'hijackerId': value['hijackerId'],
115
+ 'seoMetrics': (0, SeoMetricsDto_1.SeoMetricsDtoToJSON)(value['seoMetrics']),
111
116
  'tld': value['tld'],
112
117
  'verified': value['verified'],
113
118
  'nameservers': value['nameservers'],
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { PaginateResponseLinks } from './PaginateResponseLinks';
13
- import type { DomainDto } from './DomainDto';
13
+ import type { IntersectionDomainDtoWithSeoMetricsDto } from './IntersectionDomainDtoWithSeoMetricsDto';
14
14
  import type { PaginateResponseMeta } from './PaginateResponseMeta';
15
15
  /**
16
16
  *
@@ -20,10 +20,10 @@ import type { PaginateResponseMeta } from './PaginateResponseMeta';
20
20
  export interface List200Response2 {
21
21
  /**
22
22
  *
23
- * @type {Array<DomainDto>}
23
+ * @type {Array<IntersectionDomainDtoWithSeoMetricsDto>}
24
24
  * @memberof List200Response2
25
25
  */
26
- data: Array<DomainDto>;
26
+ data: Array<IntersectionDomainDtoWithSeoMetricsDto>;
27
27
  /**
28
28
  *
29
29
  * @type {PaginateResponseMeta}
@@ -19,7 +19,7 @@ exports.List200Response2FromJSONTyped = List200Response2FromJSONTyped;
19
19
  exports.List200Response2ToJSON = List200Response2ToJSON;
20
20
  exports.List200Response2ToJSONTyped = List200Response2ToJSONTyped;
21
21
  var PaginateResponseLinks_1 = require("./PaginateResponseLinks");
22
- var DomainDto_1 = require("./DomainDto");
22
+ var IntersectionDomainDtoWithSeoMetricsDto_1 = require("./IntersectionDomainDtoWithSeoMetricsDto");
23
23
  var PaginateResponseMeta_1 = require("./PaginateResponseMeta");
24
24
  /**
25
25
  * Check if a given object implements the List200Response2 interface.
@@ -41,7 +41,7 @@ function List200Response2FromJSONTyped(json, ignoreDiscriminator) {
41
41
  return json;
42
42
  }
43
43
  return {
44
- 'data': (json['data'].map(DomainDto_1.DomainDtoFromJSON)),
44
+ 'data': (json['data'].map(IntersectionDomainDtoWithSeoMetricsDto_1.IntersectionDomainDtoWithSeoMetricsDtoFromJSON)),
45
45
  'meta': (0, PaginateResponseMeta_1.PaginateResponseMetaFromJSON)(json['meta']),
46
46
  'links': (0, PaginateResponseLinks_1.PaginateResponseLinksFromJSON)(json['links']),
47
47
  };
@@ -55,7 +55,7 @@ function List200Response2ToJSONTyped(value, ignoreDiscriminator) {
55
55
  return value;
56
56
  }
57
57
  return {
58
- 'data': (value['data'].map(DomainDto_1.DomainDtoToJSON)),
58
+ 'data': (value['data'].map(IntersectionDomainDtoWithSeoMetricsDto_1.IntersectionDomainDtoWithSeoMetricsDtoToJSON)),
59
59
  'meta': (0, PaginateResponseMeta_1.PaginateResponseMetaToJSON)(value['meta']),
60
60
  'links': (0, PaginateResponseLinks_1.PaginateResponseLinksToJSON)(value['links']),
61
61
  };
@@ -68,7 +68,6 @@ export * from './CreateSubscriptionInput';
68
68
  export * from './CursorBasedPageInfo';
69
69
  export * from './CursorBasedPaginationResponse';
70
70
  export * from './DeleteDomainsInput';
71
- export * from './DomainDto';
72
71
  export * from './DomainExchangeRateDto';
73
72
  export * from './DomainLeadPriceNegotiatorAiAgentConfigurationDto';
74
73
  export * from './DomainLeadPriceNegotiatorAiAgentConfigurationInput';
@@ -117,6 +116,7 @@ export * from './HttpException';
117
116
  export * from './IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto';
118
117
  export * from './IntersectionDomainDtoWithAccountDto';
119
118
  export * from './IntersectionDomainDtoWithHijackerDtoWithAccountDto';
119
+ export * from './IntersectionDomainDtoWithSeoMetricsDto';
120
120
  export * from './IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto';
121
121
  export * from './IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto';
122
122
  export * from './IntersectionLeadDtoWithListFieldsDto';
@@ -86,7 +86,6 @@ __exportStar(require("./CreateSubscriptionInput"), exports);
86
86
  __exportStar(require("./CursorBasedPageInfo"), exports);
87
87
  __exportStar(require("./CursorBasedPaginationResponse"), exports);
88
88
  __exportStar(require("./DeleteDomainsInput"), exports);
89
- __exportStar(require("./DomainDto"), exports);
90
89
  __exportStar(require("./DomainExchangeRateDto"), exports);
91
90
  __exportStar(require("./DomainLeadPriceNegotiatorAiAgentConfigurationDto"), exports);
92
91
  __exportStar(require("./DomainLeadPriceNegotiatorAiAgentConfigurationInput"), exports);
@@ -135,6 +134,7 @@ __exportStar(require("./HttpException"), exports);
135
134
  __exportStar(require("./IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto"), exports);
136
135
  __exportStar(require("./IntersectionDomainDtoWithAccountDto"), exports);
137
136
  __exportStar(require("./IntersectionDomainDtoWithHijackerDtoWithAccountDto"), exports);
137
+ __exportStar(require("./IntersectionDomainDtoWithSeoMetricsDto"), exports);
138
138
  __exportStar(require("./IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto"), exports);
139
139
  __exportStar(require("./IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto"), exports);
140
140
  __exportStar(require("./IntersectionLeadDtoWithListFieldsDto"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.294",
3
+ "version": "0.0.295",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -41,6 +41,13 @@ import {
41
41
  LandingPageSettingsDtoToJSON,
42
42
  LandingPageSettingsDtoToJSONTyped,
43
43
  } from './LandingPageSettingsDto';
44
+ import type { SeoMetricsDto } from './SeoMetricsDto';
45
+ import {
46
+ SeoMetricsDtoFromJSON,
47
+ SeoMetricsDtoFromJSONTyped,
48
+ SeoMetricsDtoToJSON,
49
+ SeoMetricsDtoToJSONTyped,
50
+ } from './SeoMetricsDto';
44
51
  import type { DomainLeadPriceNegotiatorAiAgentConfigurationDto } from './DomainLeadPriceNegotiatorAiAgentConfigurationDto';
45
52
  import {
46
53
  DomainLeadPriceNegotiatorAiAgentConfigurationDtoFromJSON,
@@ -52,133 +59,140 @@ import {
52
59
  /**
53
60
  *
54
61
  * @export
55
- * @interface DomainDto
62
+ * @interface IntersectionDomainDtoWithSeoMetricsDto
56
63
  */
57
- export interface DomainDto {
64
+ export interface IntersectionDomainDtoWithSeoMetricsDto {
58
65
  /**
59
66
  * The uuid for this domain.
60
67
  * @type {string}
61
- * @memberof DomainDto
68
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
62
69
  */
63
70
  id: string;
64
71
  /**
65
72
  * The current owner for the domain
66
73
  * @type {string}
67
- * @memberof DomainDto
74
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
68
75
  */
69
76
  accountId: string;
70
77
  /**
71
78
  * The hijacker for the domain
72
79
  * @type {string}
73
- * @memberof DomainDto
80
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
74
81
  */
75
82
  hijackerId: string | null;
83
+ /**
84
+ * The SEO metrics for this domain
85
+ * @type {SeoMetricsDto}
86
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
87
+ */
88
+ seoMetrics: SeoMetricsDto | null;
76
89
  /**
77
90
  * The TLD for this domain.
78
91
  * @type {string}
79
- * @memberof DomainDto
92
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
80
93
  */
81
94
  tld: string;
82
95
  /**
83
96
  * Whether this domain is verified by the owner (ns3, txt) or not.
84
97
  * @type {boolean}
85
- * @memberof DomainDto
98
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
86
99
  */
87
100
  verified: boolean;
88
101
  /**
89
102
  * Whether the nameservers (ns1,ns2) are set or not.
90
103
  * @type {boolean}
91
- * @memberof DomainDto
104
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
92
105
  */
93
106
  nameservers: boolean;
94
107
  /**
95
108
  * The ASCII domain name (example.com, xn--maana-pta.com)
96
109
  * @type {string}
97
- * @memberof DomainDto
110
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
98
111
  */
99
112
  name: string;
100
113
  /**
101
114
  * The unicode domain name (example.com, mañana.com)
102
115
  * @type {string}
103
- * @memberof DomainDto
116
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
104
117
  */
105
118
  displayName: string;
106
119
  /**
107
120
  * /**
108
121
  * The domain's currency code (ISO 4217)
109
122
  * @type {string}
110
- * @memberof DomainDto
123
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
111
124
  */
112
125
  currencyCode: string;
113
126
  /**
114
127
  * The BIN
115
128
  * @type {MoneyDto}
116
- * @memberof DomainDto
129
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
117
130
  */
118
131
  buyNow: MoneyDto;
119
132
  /**
120
133
  * The lease to own configuration
121
134
  * @type {LeaseToOwnConfigurationDto}
122
- * @memberof DomainDto
135
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
123
136
  */
124
137
  leaseToOwn: LeaseToOwnConfigurationDto;
125
138
  /**
126
139
  * The rent configuration
127
140
  * @type {RentConfigurationDto}
128
- * @memberof DomainDto
141
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
129
142
  */
130
143
  rent: RentConfigurationDto;
131
144
  /**
132
145
  * The lease to own configuration
133
146
  * @type {LandingPageSettingsDto}
134
- * @memberof DomainDto
147
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
135
148
  */
136
149
  landingPageSettings: LandingPageSettingsDto;
137
150
  /**
138
151
  * The minimum offer
139
152
  * @type {MoneyDto}
140
- * @memberof DomainDto
153
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
141
154
  */
142
155
  minOffer: MoneyDto;
143
156
  /**
144
157
  * The creation date
145
158
  * @type {Date}
146
- * @memberof DomainDto
159
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
147
160
  */
148
161
  createdAt: Date;
149
162
  /**
150
163
  * The deletion date
151
164
  * @type {Date}
152
- * @memberof DomainDto
165
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
153
166
  */
154
167
  deletedAt: Date | null;
155
168
  /**
156
169
  * The amount of pageviews for this domain, or null if none are tracked.
157
170
  * @type {number}
158
- * @memberof DomainDto
171
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
159
172
  */
160
173
  pageviews: number;
161
174
  /**
162
175
  * Whether the third party sales data sharing is enabled.
163
176
  * @type {boolean}
164
- * @memberof DomainDto
177
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
165
178
  */
166
179
  allowThirdPartySalesDataSharing: boolean | null;
167
180
  /**
168
181
  * The lead price negotiator configuration (AI Agent)
169
182
  * @type {DomainLeadPriceNegotiatorAiAgentConfigurationDto}
170
- * @memberof DomainDto
183
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
171
184
  */
172
185
  leadPriceNegotiator: DomainLeadPriceNegotiatorAiAgentConfigurationDto | null;
173
186
  }
174
187
 
175
188
  /**
176
- * Check if a given object implements the DomainDto interface.
189
+ * Check if a given object implements the IntersectionDomainDtoWithSeoMetricsDto interface.
177
190
  */
178
- export function instanceOfDomainDto(value: object): value is DomainDto {
191
+ export function instanceOfIntersectionDomainDtoWithSeoMetricsDto(value: object): value is IntersectionDomainDtoWithSeoMetricsDto {
179
192
  if (!('id' in value) || value['id'] === undefined) return false;
180
193
  if (!('accountId' in value) || value['accountId'] === undefined) return false;
181
194
  if (!('hijackerId' in value) || value['hijackerId'] === undefined) return false;
195
+ if (!('seoMetrics' in value) || value['seoMetrics'] === undefined) return false;
182
196
  if (!('tld' in value) || value['tld'] === undefined) return false;
183
197
  if (!('verified' in value) || value['verified'] === undefined) return false;
184
198
  if (!('nameservers' in value) || value['nameservers'] === undefined) return false;
@@ -198,11 +212,11 @@ export function instanceOfDomainDto(value: object): value is DomainDto {
198
212
  return true;
199
213
  }
200
214
 
201
- export function DomainDtoFromJSON(json: any): DomainDto {
202
- return DomainDtoFromJSONTyped(json, false);
215
+ export function IntersectionDomainDtoWithSeoMetricsDtoFromJSON(json: any): IntersectionDomainDtoWithSeoMetricsDto {
216
+ return IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped(json, false);
203
217
  }
204
218
 
205
- export function DomainDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): DomainDto {
219
+ export function IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): IntersectionDomainDtoWithSeoMetricsDto {
206
220
  if (json == null) {
207
221
  return json;
208
222
  }
@@ -211,6 +225,7 @@ export function DomainDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean):
211
225
  'id': json['id'],
212
226
  'accountId': json['accountId'],
213
227
  'hijackerId': json['hijackerId'],
228
+ 'seoMetrics': SeoMetricsDtoFromJSON(json['seoMetrics']),
214
229
  'tld': json['tld'],
215
230
  'verified': json['verified'],
216
231
  'nameservers': json['nameservers'],
@@ -230,11 +245,11 @@ export function DomainDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean):
230
245
  };
231
246
  }
232
247
 
233
- export function DomainDtoToJSON(json: any): DomainDto {
234
- return DomainDtoToJSONTyped(json, false);
248
+ export function IntersectionDomainDtoWithSeoMetricsDtoToJSON(json: any): IntersectionDomainDtoWithSeoMetricsDto {
249
+ return IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped(json, false);
235
250
  }
236
251
 
237
- export function DomainDtoToJSONTyped(value?: DomainDto | null, ignoreDiscriminator: boolean = false): any {
252
+ export function IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped(value?: IntersectionDomainDtoWithSeoMetricsDto | null, ignoreDiscriminator: boolean = false): any {
238
253
  if (value == null) {
239
254
  return value;
240
255
  }
@@ -244,6 +259,7 @@ export function DomainDtoToJSONTyped(value?: DomainDto | null, ignoreDiscriminat
244
259
  'id': value['id'],
245
260
  'accountId': value['accountId'],
246
261
  'hijackerId': value['hijackerId'],
262
+ 'seoMetrics': SeoMetricsDtoToJSON(value['seoMetrics']),
247
263
  'tld': value['tld'],
248
264
  'verified': value['verified'],
249
265
  'nameservers': value['nameservers'],
@@ -20,13 +20,13 @@ import {
20
20
  PaginateResponseLinksToJSON,
21
21
  PaginateResponseLinksToJSONTyped,
22
22
  } from './PaginateResponseLinks';
23
- import type { DomainDto } from './DomainDto';
23
+ import type { IntersectionDomainDtoWithSeoMetricsDto } from './IntersectionDomainDtoWithSeoMetricsDto';
24
24
  import {
25
- DomainDtoFromJSON,
26
- DomainDtoFromJSONTyped,
27
- DomainDtoToJSON,
28
- DomainDtoToJSONTyped,
29
- } from './DomainDto';
25
+ IntersectionDomainDtoWithSeoMetricsDtoFromJSON,
26
+ IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped,
27
+ IntersectionDomainDtoWithSeoMetricsDtoToJSON,
28
+ IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped,
29
+ } from './IntersectionDomainDtoWithSeoMetricsDto';
30
30
  import type { PaginateResponseMeta } from './PaginateResponseMeta';
31
31
  import {
32
32
  PaginateResponseMetaFromJSON,
@@ -43,10 +43,10 @@ import {
43
43
  export interface List200Response2 {
44
44
  /**
45
45
  *
46
- * @type {Array<DomainDto>}
46
+ * @type {Array<IntersectionDomainDtoWithSeoMetricsDto>}
47
47
  * @memberof List200Response2
48
48
  */
49
- data: Array<DomainDto>;
49
+ data: Array<IntersectionDomainDtoWithSeoMetricsDto>;
50
50
  /**
51
51
  *
52
52
  * @type {PaginateResponseMeta}
@@ -81,7 +81,7 @@ export function List200Response2FromJSONTyped(json: any, ignoreDiscriminator: bo
81
81
  }
82
82
  return {
83
83
 
84
- 'data': ((json['data'] as Array<any>).map(DomainDtoFromJSON)),
84
+ 'data': ((json['data'] as Array<any>).map(IntersectionDomainDtoWithSeoMetricsDtoFromJSON)),
85
85
  'meta': PaginateResponseMetaFromJSON(json['meta']),
86
86
  'links': PaginateResponseLinksFromJSON(json['links']),
87
87
  };
@@ -98,7 +98,7 @@ export function List200Response2ToJSONTyped(value?: List200Response2 | null, ign
98
98
 
99
99
  return {
100
100
 
101
- 'data': ((value['data'] as Array<any>).map(DomainDtoToJSON)),
101
+ 'data': ((value['data'] as Array<any>).map(IntersectionDomainDtoWithSeoMetricsDtoToJSON)),
102
102
  'meta': PaginateResponseMetaToJSON(value['meta']),
103
103
  'links': PaginateResponseLinksToJSON(value['links']),
104
104
  };
@@ -70,7 +70,6 @@ export * from './CreateSubscriptionInput';
70
70
  export * from './CursorBasedPageInfo';
71
71
  export * from './CursorBasedPaginationResponse';
72
72
  export * from './DeleteDomainsInput';
73
- export * from './DomainDto';
74
73
  export * from './DomainExchangeRateDto';
75
74
  export * from './DomainLeadPriceNegotiatorAiAgentConfigurationDto';
76
75
  export * from './DomainLeadPriceNegotiatorAiAgentConfigurationInput';
@@ -119,6 +118,7 @@ export * from './HttpException';
119
118
  export * from './IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto';
120
119
  export * from './IntersectionDomainDtoWithAccountDto';
121
120
  export * from './IntersectionDomainDtoWithHijackerDtoWithAccountDto';
121
+ export * from './IntersectionDomainDtoWithSeoMetricsDto';
122
122
  export * from './IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto';
123
123
  export * from './IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto';
124
124
  export * from './IntersectionLeadDtoWithListFieldsDto';