@randock/nameshift-api-client 0.0.293 → 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.
- package/.openapi-generator/FILES +1 -1
- package/README.md +3 -3
- package/dist/models/{DomainDto.d.ts → IntersectionDomainDtoWithSeoMetricsDto.d.ts} +34 -27
- package/dist/models/{DomainDto.js → IntersectionDomainDtoWithSeoMetricsDto.js} +18 -13
- package/dist/models/List200Response2.d.ts +3 -3
- package/dist/models/List200Response2.js +3 -3
- package/dist/models/ListAccountDto.d.ts +6 -0
- package/dist/models/ListAccountDto.js +4 -0
- package/dist/models/ListAccountMetricsDto.d.ts +6 -0
- package/dist/models/ListAccountMetricsDto.js +4 -0
- package/dist/models/index.d.ts +1 -1
- package/dist/models/index.js +1 -1
- package/package.json +1 -1
- package/src/models/{DomainDto.ts → IntersectionDomainDtoWithSeoMetricsDto.ts} +45 -29
- package/src/models/List200Response2.ts +10 -10
- package/src/models/ListAccountDto.ts +9 -0
- package/src/models/ListAccountMetricsDto.ts +9 -0
- package/src/models/index.ts +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -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.
|
|
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.
|
|
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
|
-
|
|
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
|
|
21
|
+
* @interface IntersectionDomainDtoWithSeoMetricsDto
|
|
21
22
|
*/
|
|
22
|
-
export interface
|
|
23
|
+
export interface IntersectionDomainDtoWithSeoMetricsDto {
|
|
23
24
|
/**
|
|
24
25
|
* The uuid for this domain.
|
|
25
26
|
* @type {string}
|
|
26
|
-
* @memberof
|
|
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
|
|
33
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
33
34
|
*/
|
|
34
35
|
accountId: string;
|
|
35
36
|
/**
|
|
36
37
|
* The hijacker for the domain
|
|
37
38
|
* @type {string}
|
|
38
|
-
* @memberof
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
82
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
76
83
|
*/
|
|
77
84
|
currencyCode: string;
|
|
78
85
|
/**
|
|
79
86
|
* The BIN
|
|
80
87
|
* @type {MoneyDto}
|
|
81
|
-
* @memberof
|
|
88
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
82
89
|
*/
|
|
83
90
|
buyNow: MoneyDto;
|
|
84
91
|
/**
|
|
85
92
|
* The lease to own configuration
|
|
86
93
|
* @type {LeaseToOwnConfigurationDto}
|
|
87
|
-
* @memberof
|
|
94
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
88
95
|
*/
|
|
89
96
|
leaseToOwn: LeaseToOwnConfigurationDto;
|
|
90
97
|
/**
|
|
91
98
|
* The rent configuration
|
|
92
99
|
* @type {RentConfigurationDto}
|
|
93
|
-
* @memberof
|
|
100
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
94
101
|
*/
|
|
95
102
|
rent: RentConfigurationDto;
|
|
96
103
|
/**
|
|
97
104
|
* The lease to own configuration
|
|
98
105
|
* @type {LandingPageSettingsDto}
|
|
99
|
-
* @memberof
|
|
106
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
100
107
|
*/
|
|
101
108
|
landingPageSettings: LandingPageSettingsDto;
|
|
102
109
|
/**
|
|
103
110
|
* The minimum offer
|
|
104
111
|
* @type {MoneyDto}
|
|
105
|
-
* @memberof
|
|
112
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
106
113
|
*/
|
|
107
114
|
minOffer: MoneyDto;
|
|
108
115
|
/**
|
|
109
116
|
* The creation date
|
|
110
117
|
* @type {Date}
|
|
111
|
-
* @memberof
|
|
118
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
112
119
|
*/
|
|
113
120
|
createdAt: Date;
|
|
114
121
|
/**
|
|
115
122
|
* The deletion date
|
|
116
123
|
* @type {Date}
|
|
117
|
-
* @memberof
|
|
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
|
|
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
|
|
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
|
|
142
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
136
143
|
*/
|
|
137
144
|
leadPriceNegotiator: DomainLeadPriceNegotiatorAiAgentConfigurationDto | null;
|
|
138
145
|
}
|
|
139
146
|
/**
|
|
140
|
-
* Check if a given object implements the
|
|
147
|
+
* Check if a given object implements the IntersectionDomainDtoWithSeoMetricsDto interface.
|
|
141
148
|
*/
|
|
142
|
-
export declare function
|
|
143
|
-
export declare function
|
|
144
|
-
export declare function
|
|
145
|
-
export declare function
|
|
146
|
-
export declare function
|
|
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.
|
|
17
|
-
exports.
|
|
18
|
-
exports.
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
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
|
|
28
|
+
* Check if a given object implements the IntersectionDomainDtoWithSeoMetricsDto interface.
|
|
28
29
|
*/
|
|
29
|
-
function
|
|
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
|
|
71
|
-
return
|
|
73
|
+
function IntersectionDomainDtoWithSeoMetricsDtoFromJSON(json) {
|
|
74
|
+
return IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped(json, false);
|
|
72
75
|
}
|
|
73
|
-
function
|
|
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
|
|
100
|
-
return
|
|
103
|
+
function IntersectionDomainDtoWithSeoMetricsDtoToJSON(json) {
|
|
104
|
+
return IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped(json, false);
|
|
101
105
|
}
|
|
102
|
-
function
|
|
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 {
|
|
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<
|
|
23
|
+
* @type {Array<IntersectionDomainDtoWithSeoMetricsDto>}
|
|
24
24
|
* @memberof List200Response2
|
|
25
25
|
*/
|
|
26
|
-
data: Array<
|
|
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
|
|
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(
|
|
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(
|
|
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
|
};
|
|
@@ -53,6 +53,12 @@ export interface ListAccountDto {
|
|
|
53
53
|
* @memberof ListAccountDto
|
|
54
54
|
*/
|
|
55
55
|
payoutProvider: ListAccountDtoPayoutProviderEnum;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof ListAccountDto
|
|
60
|
+
*/
|
|
61
|
+
affiliateId: string | null;
|
|
56
62
|
/**
|
|
57
63
|
*
|
|
58
64
|
* @type {string}
|
|
@@ -59,6 +59,8 @@ function instanceOfListAccountDto(value) {
|
|
|
59
59
|
return false;
|
|
60
60
|
if (!('payoutProvider' in value) || value['payoutProvider'] === undefined)
|
|
61
61
|
return false;
|
|
62
|
+
if (!('affiliateId' in value) || value['affiliateId'] === undefined)
|
|
63
|
+
return false;
|
|
62
64
|
if (!('identifier' in value) || value['identifier'] === undefined)
|
|
63
65
|
return false;
|
|
64
66
|
if (!('createdAt' in value) || value['createdAt'] === undefined)
|
|
@@ -89,6 +91,7 @@ function ListAccountDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
89
91
|
'onboardingProvider': json['onboardingProvider'],
|
|
90
92
|
'onboardingStatus': json['onboardingStatus'],
|
|
91
93
|
'payoutProvider': json['payoutProvider'],
|
|
94
|
+
'affiliateId': json['affiliateId'],
|
|
92
95
|
'identifier': json['identifier'],
|
|
93
96
|
'createdAt': (new Date(json['createdAt'])),
|
|
94
97
|
'name': json['name'],
|
|
@@ -113,6 +116,7 @@ function ListAccountDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
113
116
|
'onboardingProvider': value['onboardingProvider'],
|
|
114
117
|
'onboardingStatus': value['onboardingStatus'],
|
|
115
118
|
'payoutProvider': value['payoutProvider'],
|
|
119
|
+
'affiliateId': value['affiliateId'],
|
|
116
120
|
'identifier': value['identifier'],
|
|
117
121
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
118
122
|
'name': value['name'],
|
|
@@ -51,6 +51,12 @@ export interface ListAccountMetricsDto {
|
|
|
51
51
|
* @memberof ListAccountMetricsDto
|
|
52
52
|
*/
|
|
53
53
|
soldDomainsNumber: number;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof ListAccountMetricsDto
|
|
58
|
+
*/
|
|
59
|
+
referralsNumber: number;
|
|
54
60
|
}
|
|
55
61
|
/**
|
|
56
62
|
* Check if a given object implements the ListAccountMetricsDto interface.
|
|
@@ -34,6 +34,8 @@ function instanceOfListAccountMetricsDto(value) {
|
|
|
34
34
|
return false;
|
|
35
35
|
if (!('soldDomainsNumber' in value) || value['soldDomainsNumber'] === undefined)
|
|
36
36
|
return false;
|
|
37
|
+
if (!('referralsNumber' in value) || value['referralsNumber'] === undefined)
|
|
38
|
+
return false;
|
|
37
39
|
return true;
|
|
38
40
|
}
|
|
39
41
|
function ListAccountMetricsDtoFromJSON(json) {
|
|
@@ -50,6 +52,7 @@ function ListAccountMetricsDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
50
52
|
'activeDomainTransfersNumber': json['activeDomainTransfersNumber'],
|
|
51
53
|
'tasksNumber': json['tasksNumber'],
|
|
52
54
|
'soldDomainsNumber': json['soldDomainsNumber'],
|
|
55
|
+
'referralsNumber': json['referralsNumber'],
|
|
53
56
|
};
|
|
54
57
|
}
|
|
55
58
|
function ListAccountMetricsDtoToJSON(json) {
|
|
@@ -67,5 +70,6 @@ function ListAccountMetricsDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
67
70
|
'activeDomainTransfersNumber': value['activeDomainTransfersNumber'],
|
|
68
71
|
'tasksNumber': value['tasksNumber'],
|
|
69
72
|
'soldDomainsNumber': value['soldDomainsNumber'],
|
|
73
|
+
'referralsNumber': value['referralsNumber'],
|
|
70
74
|
};
|
|
71
75
|
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -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';
|
package/dist/models/index.js
CHANGED
|
@@ -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
|
@@ -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
|
|
62
|
+
* @interface IntersectionDomainDtoWithSeoMetricsDto
|
|
56
63
|
*/
|
|
57
|
-
export interface
|
|
64
|
+
export interface IntersectionDomainDtoWithSeoMetricsDto {
|
|
58
65
|
/**
|
|
59
66
|
* The uuid for this domain.
|
|
60
67
|
* @type {string}
|
|
61
|
-
* @memberof
|
|
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
|
|
74
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
68
75
|
*/
|
|
69
76
|
accountId: string;
|
|
70
77
|
/**
|
|
71
78
|
* The hijacker for the domain
|
|
72
79
|
* @type {string}
|
|
73
|
-
* @memberof
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
123
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
111
124
|
*/
|
|
112
125
|
currencyCode: string;
|
|
113
126
|
/**
|
|
114
127
|
* The BIN
|
|
115
128
|
* @type {MoneyDto}
|
|
116
|
-
* @memberof
|
|
129
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
117
130
|
*/
|
|
118
131
|
buyNow: MoneyDto;
|
|
119
132
|
/**
|
|
120
133
|
* The lease to own configuration
|
|
121
134
|
* @type {LeaseToOwnConfigurationDto}
|
|
122
|
-
* @memberof
|
|
135
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
123
136
|
*/
|
|
124
137
|
leaseToOwn: LeaseToOwnConfigurationDto;
|
|
125
138
|
/**
|
|
126
139
|
* The rent configuration
|
|
127
140
|
* @type {RentConfigurationDto}
|
|
128
|
-
* @memberof
|
|
141
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
129
142
|
*/
|
|
130
143
|
rent: RentConfigurationDto;
|
|
131
144
|
/**
|
|
132
145
|
* The lease to own configuration
|
|
133
146
|
* @type {LandingPageSettingsDto}
|
|
134
|
-
* @memberof
|
|
147
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
135
148
|
*/
|
|
136
149
|
landingPageSettings: LandingPageSettingsDto;
|
|
137
150
|
/**
|
|
138
151
|
* The minimum offer
|
|
139
152
|
* @type {MoneyDto}
|
|
140
|
-
* @memberof
|
|
153
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
141
154
|
*/
|
|
142
155
|
minOffer: MoneyDto;
|
|
143
156
|
/**
|
|
144
157
|
* The creation date
|
|
145
158
|
* @type {Date}
|
|
146
|
-
* @memberof
|
|
159
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
147
160
|
*/
|
|
148
161
|
createdAt: Date;
|
|
149
162
|
/**
|
|
150
163
|
* The deletion date
|
|
151
164
|
* @type {Date}
|
|
152
|
-
* @memberof
|
|
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
|
|
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
|
|
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
|
|
183
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
171
184
|
*/
|
|
172
185
|
leadPriceNegotiator: DomainLeadPriceNegotiatorAiAgentConfigurationDto | null;
|
|
173
186
|
}
|
|
174
187
|
|
|
175
188
|
/**
|
|
176
|
-
* Check if a given object implements the
|
|
189
|
+
* Check if a given object implements the IntersectionDomainDtoWithSeoMetricsDto interface.
|
|
177
190
|
*/
|
|
178
|
-
export function
|
|
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
|
|
202
|
-
return
|
|
215
|
+
export function IntersectionDomainDtoWithSeoMetricsDtoFromJSON(json: any): IntersectionDomainDtoWithSeoMetricsDto {
|
|
216
|
+
return IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped(json, false);
|
|
203
217
|
}
|
|
204
218
|
|
|
205
|
-
export function
|
|
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
|
|
234
|
-
return
|
|
248
|
+
export function IntersectionDomainDtoWithSeoMetricsDtoToJSON(json: any): IntersectionDomainDtoWithSeoMetricsDto {
|
|
249
|
+
return IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped(json, false);
|
|
235
250
|
}
|
|
236
251
|
|
|
237
|
-
export function
|
|
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 {
|
|
23
|
+
import type { IntersectionDomainDtoWithSeoMetricsDto } from './IntersectionDomainDtoWithSeoMetricsDto';
|
|
24
24
|
import {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
} from './
|
|
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<
|
|
46
|
+
* @type {Array<IntersectionDomainDtoWithSeoMetricsDto>}
|
|
47
47
|
* @memberof List200Response2
|
|
48
48
|
*/
|
|
49
|
-
data: Array<
|
|
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(
|
|
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(
|
|
101
|
+
'data': ((value['data'] as Array<any>).map(IntersectionDomainDtoWithSeoMetricsDtoToJSON)),
|
|
102
102
|
'meta': PaginateResponseMetaToJSON(value['meta']),
|
|
103
103
|
'links': PaginateResponseLinksToJSON(value['links']),
|
|
104
104
|
};
|
|
@@ -70,6 +70,12 @@ export interface ListAccountDto {
|
|
|
70
70
|
* @memberof ListAccountDto
|
|
71
71
|
*/
|
|
72
72
|
payoutProvider: ListAccountDtoPayoutProviderEnum;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof ListAccountDto
|
|
77
|
+
*/
|
|
78
|
+
affiliateId: string | null;
|
|
73
79
|
/**
|
|
74
80
|
*
|
|
75
81
|
* @type {string}
|
|
@@ -154,6 +160,7 @@ export function instanceOfListAccountDto(value: object): value is ListAccountDto
|
|
|
154
160
|
if (!('onboardingProvider' in value) || value['onboardingProvider'] === undefined) return false;
|
|
155
161
|
if (!('onboardingStatus' in value) || value['onboardingStatus'] === undefined) return false;
|
|
156
162
|
if (!('payoutProvider' in value) || value['payoutProvider'] === undefined) return false;
|
|
163
|
+
if (!('affiliateId' in value) || value['affiliateId'] === undefined) return false;
|
|
157
164
|
if (!('identifier' in value) || value['identifier'] === undefined) return false;
|
|
158
165
|
if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
|
|
159
166
|
if (!('name' in value) || value['name'] === undefined) return false;
|
|
@@ -180,6 +187,7 @@ export function ListAccountDtoFromJSONTyped(json: any, ignoreDiscriminator: bool
|
|
|
180
187
|
'onboardingProvider': json['onboardingProvider'],
|
|
181
188
|
'onboardingStatus': json['onboardingStatus'],
|
|
182
189
|
'payoutProvider': json['payoutProvider'],
|
|
190
|
+
'affiliateId': json['affiliateId'],
|
|
183
191
|
'identifier': json['identifier'],
|
|
184
192
|
'createdAt': (new Date(json['createdAt'])),
|
|
185
193
|
'name': json['name'],
|
|
@@ -207,6 +215,7 @@ export function ListAccountDtoToJSONTyped(value?: ListAccountDto | null, ignoreD
|
|
|
207
215
|
'onboardingProvider': value['onboardingProvider'],
|
|
208
216
|
'onboardingStatus': value['onboardingStatus'],
|
|
209
217
|
'payoutProvider': value['payoutProvider'],
|
|
218
|
+
'affiliateId': value['affiliateId'],
|
|
210
219
|
'identifier': value['identifier'],
|
|
211
220
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
212
221
|
'name': value['name'],
|
|
@@ -55,6 +55,12 @@ export interface ListAccountMetricsDto {
|
|
|
55
55
|
* @memberof ListAccountMetricsDto
|
|
56
56
|
*/
|
|
57
57
|
soldDomainsNumber: number;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {number}
|
|
61
|
+
* @memberof ListAccountMetricsDto
|
|
62
|
+
*/
|
|
63
|
+
referralsNumber: number;
|
|
58
64
|
}
|
|
59
65
|
|
|
60
66
|
/**
|
|
@@ -67,6 +73,7 @@ export function instanceOfListAccountMetricsDto(value: object): value is ListAcc
|
|
|
67
73
|
if (!('activeDomainTransfersNumber' in value) || value['activeDomainTransfersNumber'] === undefined) return false;
|
|
68
74
|
if (!('tasksNumber' in value) || value['tasksNumber'] === undefined) return false;
|
|
69
75
|
if (!('soldDomainsNumber' in value) || value['soldDomainsNumber'] === undefined) return false;
|
|
76
|
+
if (!('referralsNumber' in value) || value['referralsNumber'] === undefined) return false;
|
|
70
77
|
return true;
|
|
71
78
|
}
|
|
72
79
|
|
|
@@ -86,6 +93,7 @@ export function ListAccountMetricsDtoFromJSONTyped(json: any, ignoreDiscriminato
|
|
|
86
93
|
'activeDomainTransfersNumber': json['activeDomainTransfersNumber'],
|
|
87
94
|
'tasksNumber': json['tasksNumber'],
|
|
88
95
|
'soldDomainsNumber': json['soldDomainsNumber'],
|
|
96
|
+
'referralsNumber': json['referralsNumber'],
|
|
89
97
|
};
|
|
90
98
|
}
|
|
91
99
|
|
|
@@ -106,6 +114,7 @@ export function ListAccountMetricsDtoToJSONTyped(value?: ListAccountMetricsDto |
|
|
|
106
114
|
'activeDomainTransfersNumber': value['activeDomainTransfersNumber'],
|
|
107
115
|
'tasksNumber': value['tasksNumber'],
|
|
108
116
|
'soldDomainsNumber': value['soldDomainsNumber'],
|
|
117
|
+
'referralsNumber': value['referralsNumber'],
|
|
109
118
|
};
|
|
110
119
|
}
|
|
111
120
|
|
package/src/models/index.ts
CHANGED
|
@@ -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';
|