@randock/nameshift-api-client 0.0.460 → 0.0.462

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.
Files changed (45) hide show
  1. package/.openapi-generator/FILES +8 -0
  2. package/README.md +3 -3
  3. package/dist/apis/LeadsApi.d.ts +14 -1
  4. package/dist/apis/LeadsApi.js +63 -0
  5. package/dist/models/BuyerAcceptanceEnum.d.ts +27 -0
  6. package/dist/models/BuyerAcceptanceEnum.js +53 -0
  7. package/dist/models/BuyerDto.d.ts +27 -0
  8. package/dist/models/BuyerDto.js +19 -0
  9. package/dist/models/BuyerExperienceEnum.d.ts +26 -0
  10. package/dist/models/BuyerExperienceEnum.js +52 -0
  11. package/dist/models/BuyerPaymentEnum.d.ts +27 -0
  12. package/dist/models/BuyerPaymentEnum.js +53 -0
  13. package/dist/models/FeatureFlagListItemDto.d.ts +1 -0
  14. package/dist/models/FeatureFlagListItemDto.js +2 -1
  15. package/dist/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.d.ts +1 -0
  16. package/dist/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.js +2 -1
  17. package/dist/models/LeadEnrichmentCompanyDto.d.ts +68 -0
  18. package/dist/models/LeadEnrichmentCompanyDto.js +75 -0
  19. package/dist/models/LeadEnrichmentDto.d.ts +72 -0
  20. package/dist/models/LeadEnrichmentDto.js +79 -0
  21. package/dist/models/LeadEnrichmentEmailDto.d.ts +44 -0
  22. package/dist/models/LeadEnrichmentEmailDto.js +59 -0
  23. package/dist/models/LeadEnrichmentIpDto.d.ts +62 -0
  24. package/dist/models/LeadEnrichmentIpDto.js +71 -0
  25. package/dist/models/LeadEnrichmentWebResultDto.d.ts +44 -0
  26. package/dist/models/LeadEnrichmentWebResultDto.js +59 -0
  27. package/dist/models/PrivateAccountGetMeResponse.d.ts +1 -0
  28. package/dist/models/PrivateAccountGetMeResponse.js +2 -1
  29. package/dist/models/index.d.ts +8 -0
  30. package/dist/models/index.js +8 -0
  31. package/package.json +1 -1
  32. package/src/apis/LeadsApi.ts +54 -0
  33. package/src/models/BuyerAcceptanceEnum.ts +55 -0
  34. package/src/models/BuyerDto.ts +60 -0
  35. package/src/models/BuyerExperienceEnum.ts +54 -0
  36. package/src/models/BuyerPaymentEnum.ts +55 -0
  37. package/src/models/FeatureFlagListItemDto.ts +2 -1
  38. package/src/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.ts +2 -1
  39. package/src/models/LeadEnrichmentCompanyDto.ts +120 -0
  40. package/src/models/LeadEnrichmentDto.ts +149 -0
  41. package/src/models/LeadEnrichmentEmailDto.ts +84 -0
  42. package/src/models/LeadEnrichmentIpDto.ts +111 -0
  43. package/src/models/LeadEnrichmentWebResultDto.ts +84 -0
  44. package/src/models/PrivateAccountGetMeResponse.ts +2 -1
  45. package/src/models/index.ts +8 -0
@@ -0,0 +1,75 @@
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.instanceOfLeadEnrichmentCompanyDto = instanceOfLeadEnrichmentCompanyDto;
17
+ exports.LeadEnrichmentCompanyDtoFromJSON = LeadEnrichmentCompanyDtoFromJSON;
18
+ exports.LeadEnrichmentCompanyDtoFromJSONTyped = LeadEnrichmentCompanyDtoFromJSONTyped;
19
+ exports.LeadEnrichmentCompanyDtoToJSON = LeadEnrichmentCompanyDtoToJSON;
20
+ exports.LeadEnrichmentCompanyDtoToJSONTyped = LeadEnrichmentCompanyDtoToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the LeadEnrichmentCompanyDto interface.
23
+ */
24
+ function instanceOfLeadEnrichmentCompanyDto(value) {
25
+ if (!('status' in value) || value['status'] === undefined)
26
+ return false;
27
+ if (!('legalName' in value) || value['legalName'] === undefined)
28
+ return false;
29
+ if (!('tradeName' in value) || value['tradeName'] === undefined)
30
+ return false;
31
+ if (!('countryCode' in value) || value['countryCode'] === undefined)
32
+ return false;
33
+ if (!('vatId' in value) || value['vatId'] === undefined)
34
+ return false;
35
+ if (!('registryId' in value) || value['registryId'] === undefined)
36
+ return false;
37
+ if (!('domainRegisteredAt' in value) || value['domainRegisteredAt'] === undefined)
38
+ return false;
39
+ return true;
40
+ }
41
+ function LeadEnrichmentCompanyDtoFromJSON(json) {
42
+ return LeadEnrichmentCompanyDtoFromJSONTyped(json, false);
43
+ }
44
+ function LeadEnrichmentCompanyDtoFromJSONTyped(json, ignoreDiscriminator) {
45
+ if (json == null) {
46
+ return json;
47
+ }
48
+ return {
49
+ 'status': json['status'],
50
+ 'legalName': json['legalName'],
51
+ 'tradeName': json['tradeName'],
52
+ 'countryCode': json['countryCode'],
53
+ 'vatId': json['vatId'],
54
+ 'registryId': json['registryId'],
55
+ 'domainRegisteredAt': json['domainRegisteredAt'],
56
+ };
57
+ }
58
+ function LeadEnrichmentCompanyDtoToJSON(json) {
59
+ return LeadEnrichmentCompanyDtoToJSONTyped(json, false);
60
+ }
61
+ function LeadEnrichmentCompanyDtoToJSONTyped(value, ignoreDiscriminator) {
62
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
63
+ if (value == null) {
64
+ return value;
65
+ }
66
+ return {
67
+ 'status': value['status'],
68
+ 'legalName': value['legalName'],
69
+ 'tradeName': value['tradeName'],
70
+ 'countryCode': value['countryCode'],
71
+ 'vatId': value['vatId'],
72
+ 'registryId': value['registryId'],
73
+ 'domainRegisteredAt': value['domainRegisteredAt'],
74
+ };
75
+ }
@@ -0,0 +1,72 @@
1
+ /**
2
+ * Nameshift
3
+ * Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { LeadEnrichmentIpDto } from './LeadEnrichmentIpDto';
13
+ import type { LeadEnrichmentEmailDto } from './LeadEnrichmentEmailDto';
14
+ import type { LeadEnrichmentWebResultDto } from './LeadEnrichmentWebResultDto';
15
+ import type { LeadEnrichmentCompanyDto } from './LeadEnrichmentCompanyDto';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface LeadEnrichmentDto
20
+ */
21
+ export interface LeadEnrichmentDto {
22
+ /**
23
+ * Whether any enrichment is held for this lead yet.
24
+ * @type {boolean}
25
+ * @memberof LeadEnrichmentDto
26
+ */
27
+ available: boolean;
28
+ /**
29
+ * Enrichment lifecycle status of the lead record.
30
+ * @type {string}
31
+ * @memberof LeadEnrichmentDto
32
+ */
33
+ status: string | null;
34
+ /**
35
+ * Summary of the buyer's public web footprint.
36
+ * @type {string}
37
+ * @memberof LeadEnrichmentDto
38
+ */
39
+ webSummary: string | null;
40
+ /**
41
+ *
42
+ * @type {Array<LeadEnrichmentWebResultDto>}
43
+ * @memberof LeadEnrichmentDto
44
+ */
45
+ webResults: Array<LeadEnrichmentWebResultDto>;
46
+ /**
47
+ *
48
+ * @type {LeadEnrichmentEmailDto}
49
+ * @memberof LeadEnrichmentDto
50
+ */
51
+ email: LeadEnrichmentEmailDto | null;
52
+ /**
53
+ *
54
+ * @type {LeadEnrichmentCompanyDto}
55
+ * @memberof LeadEnrichmentDto
56
+ */
57
+ company: LeadEnrichmentCompanyDto | null;
58
+ /**
59
+ *
60
+ * @type {LeadEnrichmentIpDto}
61
+ * @memberof LeadEnrichmentDto
62
+ */
63
+ ip: LeadEnrichmentIpDto | null;
64
+ }
65
+ /**
66
+ * Check if a given object implements the LeadEnrichmentDto interface.
67
+ */
68
+ export declare function instanceOfLeadEnrichmentDto(value: object): value is LeadEnrichmentDto;
69
+ export declare function LeadEnrichmentDtoFromJSON(json: any): LeadEnrichmentDto;
70
+ export declare function LeadEnrichmentDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): LeadEnrichmentDto;
71
+ export declare function LeadEnrichmentDtoToJSON(json: any): LeadEnrichmentDto;
72
+ export declare function LeadEnrichmentDtoToJSONTyped(value?: LeadEnrichmentDto | 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.instanceOfLeadEnrichmentDto = instanceOfLeadEnrichmentDto;
17
+ exports.LeadEnrichmentDtoFromJSON = LeadEnrichmentDtoFromJSON;
18
+ exports.LeadEnrichmentDtoFromJSONTyped = LeadEnrichmentDtoFromJSONTyped;
19
+ exports.LeadEnrichmentDtoToJSON = LeadEnrichmentDtoToJSON;
20
+ exports.LeadEnrichmentDtoToJSONTyped = LeadEnrichmentDtoToJSONTyped;
21
+ var LeadEnrichmentIpDto_1 = require("./LeadEnrichmentIpDto");
22
+ var LeadEnrichmentEmailDto_1 = require("./LeadEnrichmentEmailDto");
23
+ var LeadEnrichmentWebResultDto_1 = require("./LeadEnrichmentWebResultDto");
24
+ var LeadEnrichmentCompanyDto_1 = require("./LeadEnrichmentCompanyDto");
25
+ /**
26
+ * Check if a given object implements the LeadEnrichmentDto interface.
27
+ */
28
+ function instanceOfLeadEnrichmentDto(value) {
29
+ if (!('available' in value) || value['available'] === undefined)
30
+ return false;
31
+ if (!('status' in value) || value['status'] === undefined)
32
+ return false;
33
+ if (!('webSummary' in value) || value['webSummary'] === undefined)
34
+ return false;
35
+ if (!('webResults' in value) || value['webResults'] === undefined)
36
+ return false;
37
+ if (!('email' in value) || value['email'] === undefined)
38
+ return false;
39
+ if (!('company' in value) || value['company'] === undefined)
40
+ return false;
41
+ if (!('ip' in value) || value['ip'] === undefined)
42
+ return false;
43
+ return true;
44
+ }
45
+ function LeadEnrichmentDtoFromJSON(json) {
46
+ return LeadEnrichmentDtoFromJSONTyped(json, false);
47
+ }
48
+ function LeadEnrichmentDtoFromJSONTyped(json, ignoreDiscriminator) {
49
+ if (json == null) {
50
+ return json;
51
+ }
52
+ return {
53
+ 'available': json['available'],
54
+ 'status': json['status'],
55
+ 'webSummary': json['webSummary'],
56
+ 'webResults': (json['webResults'].map(LeadEnrichmentWebResultDto_1.LeadEnrichmentWebResultDtoFromJSON)),
57
+ 'email': (0, LeadEnrichmentEmailDto_1.LeadEnrichmentEmailDtoFromJSON)(json['email']),
58
+ 'company': (0, LeadEnrichmentCompanyDto_1.LeadEnrichmentCompanyDtoFromJSON)(json['company']),
59
+ 'ip': (0, LeadEnrichmentIpDto_1.LeadEnrichmentIpDtoFromJSON)(json['ip']),
60
+ };
61
+ }
62
+ function LeadEnrichmentDtoToJSON(json) {
63
+ return LeadEnrichmentDtoToJSONTyped(json, false);
64
+ }
65
+ function LeadEnrichmentDtoToJSONTyped(value, ignoreDiscriminator) {
66
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
67
+ if (value == null) {
68
+ return value;
69
+ }
70
+ return {
71
+ 'available': value['available'],
72
+ 'status': value['status'],
73
+ 'webSummary': value['webSummary'],
74
+ 'webResults': (value['webResults'].map(LeadEnrichmentWebResultDto_1.LeadEnrichmentWebResultDtoToJSON)),
75
+ 'email': (0, LeadEnrichmentEmailDto_1.LeadEnrichmentEmailDtoToJSON)(value['email']),
76
+ 'company': (0, LeadEnrichmentCompanyDto_1.LeadEnrichmentCompanyDtoToJSON)(value['company']),
77
+ 'ip': (0, LeadEnrichmentIpDto_1.LeadEnrichmentIpDtoToJSON)(value['ip']),
78
+ };
79
+ }
@@ -0,0 +1,44 @@
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 LeadEnrichmentEmailDto
16
+ */
17
+ export interface LeadEnrichmentEmailDto {
18
+ /**
19
+ * Whether the email uses a consumer mail provider.
20
+ * @type {boolean}
21
+ * @memberof LeadEnrichmentEmailDto
22
+ */
23
+ isFreeMail: boolean | null;
24
+ /**
25
+ * Whether the email uses a disposable/throwaway service.
26
+ * @type {boolean}
27
+ * @memberof LeadEnrichmentEmailDto
28
+ */
29
+ isDisposable: boolean | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof LeadEnrichmentEmailDto
34
+ */
35
+ webSummary: string | null;
36
+ }
37
+ /**
38
+ * Check if a given object implements the LeadEnrichmentEmailDto interface.
39
+ */
40
+ export declare function instanceOfLeadEnrichmentEmailDto(value: object): value is LeadEnrichmentEmailDto;
41
+ export declare function LeadEnrichmentEmailDtoFromJSON(json: any): LeadEnrichmentEmailDto;
42
+ export declare function LeadEnrichmentEmailDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): LeadEnrichmentEmailDto;
43
+ export declare function LeadEnrichmentEmailDtoToJSON(json: any): LeadEnrichmentEmailDto;
44
+ export declare function LeadEnrichmentEmailDtoToJSONTyped(value?: LeadEnrichmentEmailDto | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Nameshift
6
+ * Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfLeadEnrichmentEmailDto = instanceOfLeadEnrichmentEmailDto;
17
+ exports.LeadEnrichmentEmailDtoFromJSON = LeadEnrichmentEmailDtoFromJSON;
18
+ exports.LeadEnrichmentEmailDtoFromJSONTyped = LeadEnrichmentEmailDtoFromJSONTyped;
19
+ exports.LeadEnrichmentEmailDtoToJSON = LeadEnrichmentEmailDtoToJSON;
20
+ exports.LeadEnrichmentEmailDtoToJSONTyped = LeadEnrichmentEmailDtoToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the LeadEnrichmentEmailDto interface.
23
+ */
24
+ function instanceOfLeadEnrichmentEmailDto(value) {
25
+ if (!('isFreeMail' in value) || value['isFreeMail'] === undefined)
26
+ return false;
27
+ if (!('isDisposable' in value) || value['isDisposable'] === undefined)
28
+ return false;
29
+ if (!('webSummary' in value) || value['webSummary'] === undefined)
30
+ return false;
31
+ return true;
32
+ }
33
+ function LeadEnrichmentEmailDtoFromJSON(json) {
34
+ return LeadEnrichmentEmailDtoFromJSONTyped(json, false);
35
+ }
36
+ function LeadEnrichmentEmailDtoFromJSONTyped(json, ignoreDiscriminator) {
37
+ if (json == null) {
38
+ return json;
39
+ }
40
+ return {
41
+ 'isFreeMail': json['isFreeMail'],
42
+ 'isDisposable': json['isDisposable'],
43
+ 'webSummary': json['webSummary'],
44
+ };
45
+ }
46
+ function LeadEnrichmentEmailDtoToJSON(json) {
47
+ return LeadEnrichmentEmailDtoToJSONTyped(json, false);
48
+ }
49
+ function LeadEnrichmentEmailDtoToJSONTyped(value, ignoreDiscriminator) {
50
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
51
+ if (value == null) {
52
+ return value;
53
+ }
54
+ return {
55
+ 'isFreeMail': value['isFreeMail'],
56
+ 'isDisposable': value['isDisposable'],
57
+ 'webSummary': value['webSummary'],
58
+ };
59
+ }
@@ -0,0 +1,62 @@
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 LeadEnrichmentIpDto
16
+ */
17
+ export interface LeadEnrichmentIpDto {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof LeadEnrichmentIpDto
22
+ */
23
+ org: string | null;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof LeadEnrichmentIpDto
28
+ */
29
+ asnOrg: string | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof LeadEnrichmentIpDto
34
+ */
35
+ countryCode: string | null;
36
+ /**
37
+ *
38
+ * @type {boolean}
39
+ * @memberof LeadEnrichmentIpDto
40
+ */
41
+ isHosting: boolean | null;
42
+ /**
43
+ *
44
+ * @type {boolean}
45
+ * @memberof LeadEnrichmentIpDto
46
+ */
47
+ isVpn: boolean | null;
48
+ /**
49
+ *
50
+ * @type {boolean}
51
+ * @memberof LeadEnrichmentIpDto
52
+ */
53
+ isTor: boolean | null;
54
+ }
55
+ /**
56
+ * Check if a given object implements the LeadEnrichmentIpDto interface.
57
+ */
58
+ export declare function instanceOfLeadEnrichmentIpDto(value: object): value is LeadEnrichmentIpDto;
59
+ export declare function LeadEnrichmentIpDtoFromJSON(json: any): LeadEnrichmentIpDto;
60
+ export declare function LeadEnrichmentIpDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): LeadEnrichmentIpDto;
61
+ export declare function LeadEnrichmentIpDtoToJSON(json: any): LeadEnrichmentIpDto;
62
+ export declare function LeadEnrichmentIpDtoToJSONTyped(value?: LeadEnrichmentIpDto | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,71 @@
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.instanceOfLeadEnrichmentIpDto = instanceOfLeadEnrichmentIpDto;
17
+ exports.LeadEnrichmentIpDtoFromJSON = LeadEnrichmentIpDtoFromJSON;
18
+ exports.LeadEnrichmentIpDtoFromJSONTyped = LeadEnrichmentIpDtoFromJSONTyped;
19
+ exports.LeadEnrichmentIpDtoToJSON = LeadEnrichmentIpDtoToJSON;
20
+ exports.LeadEnrichmentIpDtoToJSONTyped = LeadEnrichmentIpDtoToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the LeadEnrichmentIpDto interface.
23
+ */
24
+ function instanceOfLeadEnrichmentIpDto(value) {
25
+ if (!('org' in value) || value['org'] === undefined)
26
+ return false;
27
+ if (!('asnOrg' in value) || value['asnOrg'] === undefined)
28
+ return false;
29
+ if (!('countryCode' in value) || value['countryCode'] === undefined)
30
+ return false;
31
+ if (!('isHosting' in value) || value['isHosting'] === undefined)
32
+ return false;
33
+ if (!('isVpn' in value) || value['isVpn'] === undefined)
34
+ return false;
35
+ if (!('isTor' in value) || value['isTor'] === undefined)
36
+ return false;
37
+ return true;
38
+ }
39
+ function LeadEnrichmentIpDtoFromJSON(json) {
40
+ return LeadEnrichmentIpDtoFromJSONTyped(json, false);
41
+ }
42
+ function LeadEnrichmentIpDtoFromJSONTyped(json, ignoreDiscriminator) {
43
+ if (json == null) {
44
+ return json;
45
+ }
46
+ return {
47
+ 'org': json['org'],
48
+ 'asnOrg': json['asnOrg'],
49
+ 'countryCode': json['countryCode'],
50
+ 'isHosting': json['isHosting'],
51
+ 'isVpn': json['isVpn'],
52
+ 'isTor': json['isTor'],
53
+ };
54
+ }
55
+ function LeadEnrichmentIpDtoToJSON(json) {
56
+ return LeadEnrichmentIpDtoToJSONTyped(json, false);
57
+ }
58
+ function LeadEnrichmentIpDtoToJSONTyped(value, ignoreDiscriminator) {
59
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
60
+ if (value == null) {
61
+ return value;
62
+ }
63
+ return {
64
+ 'org': value['org'],
65
+ 'asnOrg': value['asnOrg'],
66
+ 'countryCode': value['countryCode'],
67
+ 'isHosting': value['isHosting'],
68
+ 'isVpn': value['isVpn'],
69
+ 'isTor': value['isTor'],
70
+ };
71
+ }
@@ -0,0 +1,44 @@
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 LeadEnrichmentWebResultDto
16
+ */
17
+ export interface LeadEnrichmentWebResultDto {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof LeadEnrichmentWebResultDto
22
+ */
23
+ title: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof LeadEnrichmentWebResultDto
28
+ */
29
+ url: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof LeadEnrichmentWebResultDto
34
+ */
35
+ snippet: string;
36
+ }
37
+ /**
38
+ * Check if a given object implements the LeadEnrichmentWebResultDto interface.
39
+ */
40
+ export declare function instanceOfLeadEnrichmentWebResultDto(value: object): value is LeadEnrichmentWebResultDto;
41
+ export declare function LeadEnrichmentWebResultDtoFromJSON(json: any): LeadEnrichmentWebResultDto;
42
+ export declare function LeadEnrichmentWebResultDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): LeadEnrichmentWebResultDto;
43
+ export declare function LeadEnrichmentWebResultDtoToJSON(json: any): LeadEnrichmentWebResultDto;
44
+ export declare function LeadEnrichmentWebResultDtoToJSONTyped(value?: LeadEnrichmentWebResultDto | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Nameshift
6
+ * Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfLeadEnrichmentWebResultDto = instanceOfLeadEnrichmentWebResultDto;
17
+ exports.LeadEnrichmentWebResultDtoFromJSON = LeadEnrichmentWebResultDtoFromJSON;
18
+ exports.LeadEnrichmentWebResultDtoFromJSONTyped = LeadEnrichmentWebResultDtoFromJSONTyped;
19
+ exports.LeadEnrichmentWebResultDtoToJSON = LeadEnrichmentWebResultDtoToJSON;
20
+ exports.LeadEnrichmentWebResultDtoToJSONTyped = LeadEnrichmentWebResultDtoToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the LeadEnrichmentWebResultDto interface.
23
+ */
24
+ function instanceOfLeadEnrichmentWebResultDto(value) {
25
+ if (!('title' in value) || value['title'] === undefined)
26
+ return false;
27
+ if (!('url' in value) || value['url'] === undefined)
28
+ return false;
29
+ if (!('snippet' in value) || value['snippet'] === undefined)
30
+ return false;
31
+ return true;
32
+ }
33
+ function LeadEnrichmentWebResultDtoFromJSON(json) {
34
+ return LeadEnrichmentWebResultDtoFromJSONTyped(json, false);
35
+ }
36
+ function LeadEnrichmentWebResultDtoFromJSONTyped(json, ignoreDiscriminator) {
37
+ if (json == null) {
38
+ return json;
39
+ }
40
+ return {
41
+ 'title': json['title'],
42
+ 'url': json['url'],
43
+ 'snippet': json['snippet'],
44
+ };
45
+ }
46
+ function LeadEnrichmentWebResultDtoToJSON(json) {
47
+ return LeadEnrichmentWebResultDtoToJSONTyped(json, false);
48
+ }
49
+ function LeadEnrichmentWebResultDtoToJSONTyped(value, ignoreDiscriminator) {
50
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
51
+ if (value == null) {
52
+ return value;
53
+ }
54
+ return {
55
+ 'title': value['title'],
56
+ 'url': value['url'],
57
+ 'snippet': value['snippet'],
58
+ };
59
+ }
@@ -139,6 +139,7 @@ export declare const PrivateAccountGetMeResponseEnabledFeaturesEnum: {
139
139
  readonly AIRWALLEX_BANK_TRANSFER_PAYMENT_METHOD: "AIRWALLEX_BANK_TRANSFER_PAYMENT_METHOD";
140
140
  readonly MARKETPLACE_ROUTING: "MARKETPLACE_ROUTING";
141
141
  readonly AI_DOMAIN_EDIT: "AI_DOMAIN_EDIT";
142
+ readonly LEAD_ENRICHMENT: "LEAD_ENRICHMENT";
142
143
  };
143
144
  export type PrivateAccountGetMeResponseEnabledFeaturesEnum = typeof PrivateAccountGetMeResponseEnabledFeaturesEnum[keyof typeof PrivateAccountGetMeResponseEnabledFeaturesEnum];
144
145
  /**
@@ -57,7 +57,8 @@ exports.PrivateAccountGetMeResponseEnabledFeaturesEnum = {
57
57
  USE_MAILER_FALLBACK_FOR_MANUAL_OTP_REQUEST: 'USE_MAILER_FALLBACK_FOR_MANUAL_OTP_REQUEST',
58
58
  AIRWALLEX_BANK_TRANSFER_PAYMENT_METHOD: 'AIRWALLEX_BANK_TRANSFER_PAYMENT_METHOD',
59
59
  MARKETPLACE_ROUTING: 'MARKETPLACE_ROUTING',
60
- AI_DOMAIN_EDIT: 'AI_DOMAIN_EDIT'
60
+ AI_DOMAIN_EDIT: 'AI_DOMAIN_EDIT',
61
+ LEAD_ENRICHMENT: 'LEAD_ENRICHMENT'
61
62
  };
62
63
  /**
63
64
  * Check if a given object implements the PrivateAccountGetMeResponse interface.
@@ -102,6 +102,7 @@ export * from './BulkDownloadInvoicesInput';
102
102
  export * from './BulkMarkBuyerNotificationsAsReadInputDto';
103
103
  export * from './BulkMarkNotificationsAsReadInputDto';
104
104
  export * from './BulkUpdateDomainsWithFiltersInput';
105
+ export * from './BuyerAcceptanceEnum';
105
106
  export * from './BuyerAccessTokenDto';
106
107
  export * from './BuyerAuctionDetailDto';
107
108
  export * from './BuyerAuctionDetailDtoDomain';
@@ -115,6 +116,7 @@ export * from './BuyerDomainTransferAuthCodeDto';
115
116
  export * from './BuyerDomainTransferListItemDomainDto';
116
117
  export * from './BuyerDomainTransferListItemDto';
117
118
  export * from './BuyerDto';
119
+ export * from './BuyerExperienceEnum';
118
120
  export * from './BuyerInvoiceDomainDto';
119
121
  export * from './BuyerInvoiceDto';
120
122
  export * from './BuyerInvoiceSellerAccountDto';
@@ -124,6 +126,7 @@ export * from './BuyerNotificationAttachmentDto';
124
126
  export * from './BuyerNotificationDto';
125
127
  export * from './BuyerNotificationListItemDto';
126
128
  export * from './BuyerNotificationSettingsDto';
129
+ export * from './BuyerPaymentEnum';
127
130
  export * from './BuyerSecurityUserDto';
128
131
  export * from './BuyerSessionDto';
129
132
  export * from './BuyerSubscriptionListItemDto';
@@ -288,6 +291,11 @@ export * from './LandingPageSettingsDto';
288
291
  export * from './LeadBuyerConfigDto';
289
292
  export * from './LeadDomainDto';
290
293
  export * from './LeadDto';
294
+ export * from './LeadEnrichmentCompanyDto';
295
+ export * from './LeadEnrichmentDto';
296
+ export * from './LeadEnrichmentEmailDto';
297
+ export * from './LeadEnrichmentIpDto';
298
+ export * from './LeadEnrichmentWebResultDto';
291
299
  export * from './LeadLeaseToOwnAndRentConfigurationPresetsDto';
292
300
  export * from './LeadLeaseToOwnConfigurationDto';
293
301
  export * from './LeadMessageData';
@@ -120,6 +120,7 @@ __exportStar(require("./BulkDownloadInvoicesInput"), exports);
120
120
  __exportStar(require("./BulkMarkBuyerNotificationsAsReadInputDto"), exports);
121
121
  __exportStar(require("./BulkMarkNotificationsAsReadInputDto"), exports);
122
122
  __exportStar(require("./BulkUpdateDomainsWithFiltersInput"), exports);
123
+ __exportStar(require("./BuyerAcceptanceEnum"), exports);
123
124
  __exportStar(require("./BuyerAccessTokenDto"), exports);
124
125
  __exportStar(require("./BuyerAuctionDetailDto"), exports);
125
126
  __exportStar(require("./BuyerAuctionDetailDtoDomain"), exports);
@@ -133,6 +134,7 @@ __exportStar(require("./BuyerDomainTransferAuthCodeDto"), exports);
133
134
  __exportStar(require("./BuyerDomainTransferListItemDomainDto"), exports);
134
135
  __exportStar(require("./BuyerDomainTransferListItemDto"), exports);
135
136
  __exportStar(require("./BuyerDto"), exports);
137
+ __exportStar(require("./BuyerExperienceEnum"), exports);
136
138
  __exportStar(require("./BuyerInvoiceDomainDto"), exports);
137
139
  __exportStar(require("./BuyerInvoiceDto"), exports);
138
140
  __exportStar(require("./BuyerInvoiceSellerAccountDto"), exports);
@@ -142,6 +144,7 @@ __exportStar(require("./BuyerNotificationAttachmentDto"), exports);
142
144
  __exportStar(require("./BuyerNotificationDto"), exports);
143
145
  __exportStar(require("./BuyerNotificationListItemDto"), exports);
144
146
  __exportStar(require("./BuyerNotificationSettingsDto"), exports);
147
+ __exportStar(require("./BuyerPaymentEnum"), exports);
145
148
  __exportStar(require("./BuyerSecurityUserDto"), exports);
146
149
  __exportStar(require("./BuyerSessionDto"), exports);
147
150
  __exportStar(require("./BuyerSubscriptionListItemDto"), exports);
@@ -306,6 +309,11 @@ __exportStar(require("./LandingPageSettingsDto"), exports);
306
309
  __exportStar(require("./LeadBuyerConfigDto"), exports);
307
310
  __exportStar(require("./LeadDomainDto"), exports);
308
311
  __exportStar(require("./LeadDto"), exports);
312
+ __exportStar(require("./LeadEnrichmentCompanyDto"), exports);
313
+ __exportStar(require("./LeadEnrichmentDto"), exports);
314
+ __exportStar(require("./LeadEnrichmentEmailDto"), exports);
315
+ __exportStar(require("./LeadEnrichmentIpDto"), exports);
316
+ __exportStar(require("./LeadEnrichmentWebResultDto"), exports);
309
317
  __exportStar(require("./LeadLeaseToOwnAndRentConfigurationPresetsDto"), exports);
310
318
  __exportStar(require("./LeadLeaseToOwnConfigurationDto"), exports);
311
319
  __exportStar(require("./LeadMessageData"), exports);