@randock/nameshift-api-client 0.0.330 → 0.0.332

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 (144) hide show
  1. package/.openapi-generator/FILES +24 -0
  2. package/README.md +3 -3
  3. package/dist/apis/AuctionsPublicApi.d.ts +29 -0
  4. package/dist/apis/AuctionsPublicApi.js +124 -0
  5. package/dist/apis/BuyersApi.d.ts +54 -1
  6. package/dist/apis/BuyersApi.js +267 -0
  7. package/dist/apis/BuyersPublicApi.d.ts +23 -1
  8. package/dist/apis/BuyersPublicApi.js +90 -0
  9. package/dist/apis/DomainsApi.d.ts +44 -1
  10. package/dist/apis/DomainsApi.js +216 -0
  11. package/dist/apis/LeadsApi.d.ts +2 -5
  12. package/dist/apis/LeadsApi.js +4 -8
  13. package/dist/apis/index.d.ts +1 -0
  14. package/dist/apis/index.js +1 -0
  15. package/dist/models/AuctionBidDto.d.ts +51 -0
  16. package/dist/models/AuctionBidDto.js +64 -0
  17. package/dist/models/AuctionBidInput.d.ts +32 -0
  18. package/dist/models/AuctionBidInput.js +51 -0
  19. package/dist/models/AuctionBuyerDto.d.ts +74 -0
  20. package/dist/models/AuctionBuyerDto.js +79 -0
  21. package/dist/models/AuctionBuyerWithTokenDto.d.ts +39 -0
  22. package/dist/models/AuctionBuyerWithTokenDto.js +56 -0
  23. package/dist/models/AuctionDto.d.ts +82 -0
  24. package/dist/models/AuctionDto.js +85 -0
  25. package/dist/models/BulkUpdateDomainsWithFiltersInput.d.ts +59 -0
  26. package/dist/models/BulkUpdateDomainsWithFiltersInput.js +62 -0
  27. package/dist/models/BuyerLeadListItemDto.d.ts +23 -0
  28. package/dist/models/BuyerLeadListItemDto.js +19 -1
  29. package/dist/models/DomainAuctionDto.d.ts +63 -0
  30. package/dist/models/DomainAuctionDto.js +72 -0
  31. package/dist/models/DomainFiltersDto.d.ts +38 -0
  32. package/dist/models/DomainFiltersDto.js +55 -0
  33. package/dist/models/DomainSalesInformationDto.d.ts +12 -0
  34. package/dist/models/DomainSalesInformationDto.js +8 -0
  35. package/dist/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.d.ts +1 -0
  36. package/dist/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.js +2 -1
  37. package/dist/models/IntersectionDomainDtoWithAccountDto.d.ts +7 -0
  38. package/dist/models/IntersectionDomainDtoWithAccountDto.js +5 -0
  39. package/dist/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.d.ts +7 -0
  40. package/dist/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.js +5 -0
  41. package/dist/models/IntersectionDomainDtoWithSeoMetricsDto.d.ts +7 -0
  42. package/dist/models/IntersectionDomainDtoWithSeoMetricsDto.js +5 -0
  43. package/dist/models/IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto.d.ts +36 -0
  44. package/dist/models/IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto.js +28 -1
  45. package/dist/models/LeadDto.d.ts +43 -0
  46. package/dist/models/LeadDto.js +33 -1
  47. package/dist/models/LeadLeaseToOwnConfigurationDto.d.ts +50 -0
  48. package/dist/models/LeadLeaseToOwnConfigurationDto.js +63 -0
  49. package/dist/models/LeadMessageData.d.ts +7 -0
  50. package/dist/models/LeadMessageData.js +5 -0
  51. package/dist/models/LeadMessageDataLeaseToOwn.d.ts +38 -0
  52. package/dist/models/LeadMessageDataLeaseToOwn.js +55 -0
  53. package/dist/models/LeadMessageDto.d.ts +16 -0
  54. package/dist/models/LeadMessageDto.js +14 -1
  55. package/dist/models/LeadOfferDto.d.ts +72 -0
  56. package/dist/models/LeadOfferDto.js +84 -0
  57. package/dist/models/LeadRentConfigurationDto.d.ts +38 -0
  58. package/dist/models/LeadRentConfigurationDto.js +55 -0
  59. package/dist/models/ListLeadsResultItem.d.ts +43 -0
  60. package/dist/models/ListLeadsResultItem.js +33 -1
  61. package/dist/models/ManualLeadLeaseToOwnDto.d.ts +12 -0
  62. package/dist/models/ManualLeadLeaseToOwnDto.js +8 -0
  63. package/dist/models/PrivateAccountGetMeResponse.d.ts +1 -0
  64. package/dist/models/PrivateAccountGetMeResponse.js +2 -1
  65. package/dist/models/PutBuyerLeadOfferInput.d.ts +22 -0
  66. package/dist/models/PutBuyerLeadOfferInput.js +14 -0
  67. package/dist/models/PutLeadOfferInput.d.ts +23 -1
  68. package/dist/models/PutLeadOfferInput.js +15 -3
  69. package/dist/models/RegisterAuctionBuyerPhoneInput.d.ts +47 -0
  70. package/dist/models/RegisterAuctionBuyerPhoneInput.js +64 -0
  71. package/dist/models/RegisterInput.d.ts +38 -0
  72. package/dist/models/RegisterInput.js +55 -0
  73. package/dist/models/RequestEmailOtpInput.d.ts +38 -0
  74. package/dist/models/RequestEmailOtpInput.js +55 -0
  75. package/dist/models/SellerLeadDetails.d.ts +43 -0
  76. package/dist/models/SellerLeadDetails.js +33 -1
  77. package/dist/models/StartAuctionInput.d.ts +51 -0
  78. package/dist/models/StartAuctionInput.js +62 -0
  79. package/dist/models/TaskListLeadDto.d.ts +43 -0
  80. package/dist/models/TaskListLeadDto.js +33 -1
  81. package/dist/models/TaskListLeadLeaseToOwnConfigurationDto.d.ts +50 -0
  82. package/dist/models/TaskListLeadLeaseToOwnConfigurationDto.js +63 -0
  83. package/dist/models/TaskListLeadOfferDto.d.ts +72 -0
  84. package/dist/models/TaskListLeadOfferDto.js +84 -0
  85. package/dist/models/TaskListLeadRentConfigurationDto.d.ts +38 -0
  86. package/dist/models/TaskListLeadRentConfigurationDto.js +55 -0
  87. package/dist/models/UpdateLeaseToOwnConfigurationDto.d.ts +44 -0
  88. package/dist/models/UpdateLeaseToOwnConfigurationDto.js +53 -0
  89. package/dist/models/UpdateRentConfigurationDto.d.ts +39 -0
  90. package/dist/models/UpdateRentConfigurationDto.js +52 -0
  91. package/dist/models/VerifyEmailOtpInput.d.ts +38 -0
  92. package/dist/models/VerifyEmailOtpInput.js +55 -0
  93. package/dist/models/VerifyPhoneOtpInput.d.ts +32 -0
  94. package/dist/models/VerifyPhoneOtpInput.js +51 -0
  95. package/dist/models/index.d.ts +23 -0
  96. package/dist/models/index.js +23 -0
  97. package/package.json +1 -1
  98. package/src/apis/AuctionsPublicApi.ts +67 -0
  99. package/src/apis/BuyersApi.ts +249 -0
  100. package/src/apis/BuyersPublicApi.ts +88 -0
  101. package/src/apis/DomainsApi.ts +192 -0
  102. package/src/apis/LeadsApi.ts +3 -11
  103. package/src/apis/index.ts +1 -0
  104. package/src/models/AuctionBidDto.ts +101 -0
  105. package/src/models/AuctionBidInput.ts +66 -0
  106. package/src/models/AuctionBuyerDto.ts +129 -0
  107. package/src/models/AuctionBuyerWithTokenDto.ts +83 -0
  108. package/src/models/AuctionDto.ts +153 -0
  109. package/src/models/BulkUpdateDomainsWithFiltersInput.ts +120 -0
  110. package/src/models/BuyerLeadListItemDto.ts +36 -0
  111. package/src/models/DomainAuctionDto.ts +119 -0
  112. package/src/models/DomainFiltersDto.ts +75 -0
  113. package/src/models/DomainSalesInformationDto.ts +18 -0
  114. package/src/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.ts +2 -1
  115. package/src/models/IntersectionDomainDtoWithAccountDto.ts +16 -0
  116. package/src/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.ts +16 -0
  117. package/src/models/IntersectionDomainDtoWithSeoMetricsDto.ts +16 -0
  118. package/src/models/IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto.ts +61 -0
  119. package/src/models/LeadDto.ts +77 -0
  120. package/src/models/LeadLeaseToOwnConfigurationDto.ts +93 -0
  121. package/src/models/LeadMessageData.ts +16 -0
  122. package/src/models/LeadMessageDataLeaseToOwn.ts +75 -0
  123. package/src/models/LeadMessageDto.ts +20 -0
  124. package/src/models/LeadOfferDto.ts +132 -0
  125. package/src/models/LeadRentConfigurationDto.ts +75 -0
  126. package/src/models/ListLeadsResultItem.ts +77 -0
  127. package/src/models/ManualLeadLeaseToOwnDto.ts +18 -0
  128. package/src/models/PrivateAccountGetMeResponse.ts +2 -1
  129. package/src/models/PutBuyerLeadOfferInput.ts +29 -0
  130. package/src/models/PutLeadOfferInput.ts +31 -3
  131. package/src/models/RegisterAuctionBuyerPhoneInput.ts +87 -0
  132. package/src/models/RegisterInput.ts +75 -0
  133. package/src/models/RequestEmailOtpInput.ts +75 -0
  134. package/src/models/SellerLeadDetails.ts +77 -0
  135. package/src/models/StartAuctionInput.ts +100 -0
  136. package/src/models/TaskListLeadDto.ts +77 -0
  137. package/src/models/TaskListLeadLeaseToOwnConfigurationDto.ts +93 -0
  138. package/src/models/TaskListLeadOfferDto.ts +132 -0
  139. package/src/models/TaskListLeadRentConfigurationDto.ts +75 -0
  140. package/src/models/UpdateLeaseToOwnConfigurationDto.ts +81 -0
  141. package/src/models/UpdateRentConfigurationDto.ts +81 -0
  142. package/src/models/VerifyEmailOtpInput.ts +75 -0
  143. package/src/models/VerifyPhoneOtpInput.ts +66 -0
  144. package/src/models/index.ts +23 -0
@@ -0,0 +1,84 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Nameshift
6
+ * Nameshift API
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.TaskListLeadOfferDtoOfferTypeEnum = exports.TaskListLeadOfferDtoOfferByEnum = void 0;
17
+ exports.instanceOfTaskListLeadOfferDto = instanceOfTaskListLeadOfferDto;
18
+ exports.TaskListLeadOfferDtoFromJSON = TaskListLeadOfferDtoFromJSON;
19
+ exports.TaskListLeadOfferDtoFromJSONTyped = TaskListLeadOfferDtoFromJSONTyped;
20
+ exports.TaskListLeadOfferDtoToJSON = TaskListLeadOfferDtoToJSON;
21
+ exports.TaskListLeadOfferDtoToJSONTyped = TaskListLeadOfferDtoToJSONTyped;
22
+ var LeadMessageDataLeaseToOwn_1 = require("./LeadMessageDataLeaseToOwn");
23
+ var MoneyDto_1 = require("./MoneyDto");
24
+ /**
25
+ * @export
26
+ */
27
+ exports.TaskListLeadOfferDtoOfferByEnum = {
28
+ BUYER: 'buyer',
29
+ SELLER: 'seller',
30
+ AI: 'ai',
31
+ ADMIN: 'admin'
32
+ };
33
+ /**
34
+ * @export
35
+ */
36
+ exports.TaskListLeadOfferDtoOfferTypeEnum = {
37
+ LEAD: 'lead',
38
+ LEASE_TO_OWN: 'lease_to_own',
39
+ RENT: 'rent',
40
+ AUCTION: 'auction'
41
+ };
42
+ /**
43
+ * Check if a given object implements the TaskListLeadOfferDto interface.
44
+ */
45
+ function instanceOfTaskListLeadOfferDto(value) {
46
+ if (!('offer' in value) || value['offer'] === undefined)
47
+ return false;
48
+ if (!('offerBy' in value) || value['offerBy'] === undefined)
49
+ return false;
50
+ if (!('offerType' in value) || value['offerType'] === undefined)
51
+ return false;
52
+ if (!('leaseToOwn' in value) || value['leaseToOwn'] === undefined)
53
+ return false;
54
+ return true;
55
+ }
56
+ function TaskListLeadOfferDtoFromJSON(json) {
57
+ return TaskListLeadOfferDtoFromJSONTyped(json, false);
58
+ }
59
+ function TaskListLeadOfferDtoFromJSONTyped(json, ignoreDiscriminator) {
60
+ if (json == null) {
61
+ return json;
62
+ }
63
+ return {
64
+ 'offer': (0, MoneyDto_1.MoneyDtoFromJSON)(json['offer']),
65
+ 'offerBy': json['offerBy'],
66
+ 'offerType': json['offerType'],
67
+ 'leaseToOwn': (0, LeadMessageDataLeaseToOwn_1.LeadMessageDataLeaseToOwnFromJSON)(json['leaseToOwn']),
68
+ };
69
+ }
70
+ function TaskListLeadOfferDtoToJSON(json) {
71
+ return TaskListLeadOfferDtoToJSONTyped(json, false);
72
+ }
73
+ function TaskListLeadOfferDtoToJSONTyped(value, ignoreDiscriminator) {
74
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
75
+ if (value == null) {
76
+ return value;
77
+ }
78
+ return {
79
+ 'offer': (0, MoneyDto_1.MoneyDtoToJSON)(value['offer']),
80
+ 'offerBy': value['offerBy'],
81
+ 'offerType': value['offerType'],
82
+ 'leaseToOwn': (0, LeadMessageDataLeaseToOwn_1.LeadMessageDataLeaseToOwnToJSON)(value['leaseToOwn']),
83
+ };
84
+ }
@@ -0,0 +1,38 @@
1
+ /**
2
+ * Nameshift
3
+ * Nameshift API
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 TaskListLeadRentConfigurationDto
16
+ */
17
+ export interface TaskListLeadRentConfigurationDto {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof TaskListLeadRentConfigurationDto
22
+ */
23
+ recurringMarkupPercentage: number;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof TaskListLeadRentConfigurationDto
28
+ */
29
+ minMonthPriceEur: number;
30
+ }
31
+ /**
32
+ * Check if a given object implements the TaskListLeadRentConfigurationDto interface.
33
+ */
34
+ export declare function instanceOfTaskListLeadRentConfigurationDto(value: object): value is TaskListLeadRentConfigurationDto;
35
+ export declare function TaskListLeadRentConfigurationDtoFromJSON(json: any): TaskListLeadRentConfigurationDto;
36
+ export declare function TaskListLeadRentConfigurationDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): TaskListLeadRentConfigurationDto;
37
+ export declare function TaskListLeadRentConfigurationDtoToJSON(json: any): TaskListLeadRentConfigurationDto;
38
+ export declare function TaskListLeadRentConfigurationDtoToJSONTyped(value?: TaskListLeadRentConfigurationDto | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Nameshift
6
+ * Nameshift API
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.instanceOfTaskListLeadRentConfigurationDto = instanceOfTaskListLeadRentConfigurationDto;
17
+ exports.TaskListLeadRentConfigurationDtoFromJSON = TaskListLeadRentConfigurationDtoFromJSON;
18
+ exports.TaskListLeadRentConfigurationDtoFromJSONTyped = TaskListLeadRentConfigurationDtoFromJSONTyped;
19
+ exports.TaskListLeadRentConfigurationDtoToJSON = TaskListLeadRentConfigurationDtoToJSON;
20
+ exports.TaskListLeadRentConfigurationDtoToJSONTyped = TaskListLeadRentConfigurationDtoToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the TaskListLeadRentConfigurationDto interface.
23
+ */
24
+ function instanceOfTaskListLeadRentConfigurationDto(value) {
25
+ if (!('recurringMarkupPercentage' in value) || value['recurringMarkupPercentage'] === undefined)
26
+ return false;
27
+ if (!('minMonthPriceEur' in value) || value['minMonthPriceEur'] === undefined)
28
+ return false;
29
+ return true;
30
+ }
31
+ function TaskListLeadRentConfigurationDtoFromJSON(json) {
32
+ return TaskListLeadRentConfigurationDtoFromJSONTyped(json, false);
33
+ }
34
+ function TaskListLeadRentConfigurationDtoFromJSONTyped(json, ignoreDiscriminator) {
35
+ if (json == null) {
36
+ return json;
37
+ }
38
+ return {
39
+ 'recurringMarkupPercentage': json['recurringMarkupPercentage'],
40
+ 'minMonthPriceEur': json['minMonthPriceEur'],
41
+ };
42
+ }
43
+ function TaskListLeadRentConfigurationDtoToJSON(json) {
44
+ return TaskListLeadRentConfigurationDtoToJSONTyped(json, false);
45
+ }
46
+ function TaskListLeadRentConfigurationDtoToJSONTyped(value, ignoreDiscriminator) {
47
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
48
+ if (value == null) {
49
+ return value;
50
+ }
51
+ return {
52
+ 'recurringMarkupPercentage': value['recurringMarkupPercentage'],
53
+ 'minMonthPriceEur': value['minMonthPriceEur'],
54
+ };
55
+ }
@@ -0,0 +1,44 @@
1
+ /**
2
+ * Nameshift
3
+ * Nameshift API
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 UpdateLeaseToOwnConfigurationDto
16
+ */
17
+ export interface UpdateLeaseToOwnConfigurationDto {
18
+ /**
19
+ *
20
+ * @type {boolean}
21
+ * @memberof UpdateLeaseToOwnConfigurationDto
22
+ */
23
+ enabled?: boolean;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof UpdateLeaseToOwnConfigurationDto
28
+ */
29
+ minMonths?: number;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof UpdateLeaseToOwnConfigurationDto
34
+ */
35
+ maxMonths?: number;
36
+ }
37
+ /**
38
+ * Check if a given object implements the UpdateLeaseToOwnConfigurationDto interface.
39
+ */
40
+ export declare function instanceOfUpdateLeaseToOwnConfigurationDto(value: object): value is UpdateLeaseToOwnConfigurationDto;
41
+ export declare function UpdateLeaseToOwnConfigurationDtoFromJSON(json: any): UpdateLeaseToOwnConfigurationDto;
42
+ export declare function UpdateLeaseToOwnConfigurationDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateLeaseToOwnConfigurationDto;
43
+ export declare function UpdateLeaseToOwnConfigurationDtoToJSON(json: any): UpdateLeaseToOwnConfigurationDto;
44
+ export declare function UpdateLeaseToOwnConfigurationDtoToJSONTyped(value?: UpdateLeaseToOwnConfigurationDto | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Nameshift
6
+ * Nameshift API
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.instanceOfUpdateLeaseToOwnConfigurationDto = instanceOfUpdateLeaseToOwnConfigurationDto;
17
+ exports.UpdateLeaseToOwnConfigurationDtoFromJSON = UpdateLeaseToOwnConfigurationDtoFromJSON;
18
+ exports.UpdateLeaseToOwnConfigurationDtoFromJSONTyped = UpdateLeaseToOwnConfigurationDtoFromJSONTyped;
19
+ exports.UpdateLeaseToOwnConfigurationDtoToJSON = UpdateLeaseToOwnConfigurationDtoToJSON;
20
+ exports.UpdateLeaseToOwnConfigurationDtoToJSONTyped = UpdateLeaseToOwnConfigurationDtoToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the UpdateLeaseToOwnConfigurationDto interface.
23
+ */
24
+ function instanceOfUpdateLeaseToOwnConfigurationDto(value) {
25
+ return true;
26
+ }
27
+ function UpdateLeaseToOwnConfigurationDtoFromJSON(json) {
28
+ return UpdateLeaseToOwnConfigurationDtoFromJSONTyped(json, false);
29
+ }
30
+ function UpdateLeaseToOwnConfigurationDtoFromJSONTyped(json, ignoreDiscriminator) {
31
+ if (json == null) {
32
+ return json;
33
+ }
34
+ return {
35
+ 'enabled': json['enabled'] == null ? undefined : json['enabled'],
36
+ 'minMonths': json['minMonths'] == null ? undefined : json['minMonths'],
37
+ 'maxMonths': json['maxMonths'] == null ? undefined : json['maxMonths'],
38
+ };
39
+ }
40
+ function UpdateLeaseToOwnConfigurationDtoToJSON(json) {
41
+ return UpdateLeaseToOwnConfigurationDtoToJSONTyped(json, false);
42
+ }
43
+ function UpdateLeaseToOwnConfigurationDtoToJSONTyped(value, ignoreDiscriminator) {
44
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
45
+ if (value == null) {
46
+ return value;
47
+ }
48
+ return {
49
+ 'enabled': value['enabled'],
50
+ 'minMonths': value['minMonths'],
51
+ 'maxMonths': value['maxMonths'],
52
+ };
53
+ }
@@ -0,0 +1,39 @@
1
+ /**
2
+ * Nameshift
3
+ * Nameshift API
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 { MoneyDto } from './MoneyDto';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateRentConfigurationDto
17
+ */
18
+ export interface UpdateRentConfigurationDto {
19
+ /**
20
+ *
21
+ * @type {boolean}
22
+ * @memberof UpdateRentConfigurationDto
23
+ */
24
+ enabled?: boolean;
25
+ /**
26
+ *
27
+ * @type {MoneyDto}
28
+ * @memberof UpdateRentConfigurationDto
29
+ */
30
+ price?: MoneyDto;
31
+ }
32
+ /**
33
+ * Check if a given object implements the UpdateRentConfigurationDto interface.
34
+ */
35
+ export declare function instanceOfUpdateRentConfigurationDto(value: object): value is UpdateRentConfigurationDto;
36
+ export declare function UpdateRentConfigurationDtoFromJSON(json: any): UpdateRentConfigurationDto;
37
+ export declare function UpdateRentConfigurationDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateRentConfigurationDto;
38
+ export declare function UpdateRentConfigurationDtoToJSON(json: any): UpdateRentConfigurationDto;
39
+ export declare function UpdateRentConfigurationDtoToJSONTyped(value?: UpdateRentConfigurationDto | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Nameshift
6
+ * Nameshift API
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.instanceOfUpdateRentConfigurationDto = instanceOfUpdateRentConfigurationDto;
17
+ exports.UpdateRentConfigurationDtoFromJSON = UpdateRentConfigurationDtoFromJSON;
18
+ exports.UpdateRentConfigurationDtoFromJSONTyped = UpdateRentConfigurationDtoFromJSONTyped;
19
+ exports.UpdateRentConfigurationDtoToJSON = UpdateRentConfigurationDtoToJSON;
20
+ exports.UpdateRentConfigurationDtoToJSONTyped = UpdateRentConfigurationDtoToJSONTyped;
21
+ var MoneyDto_1 = require("./MoneyDto");
22
+ /**
23
+ * Check if a given object implements the UpdateRentConfigurationDto interface.
24
+ */
25
+ function instanceOfUpdateRentConfigurationDto(value) {
26
+ return true;
27
+ }
28
+ function UpdateRentConfigurationDtoFromJSON(json) {
29
+ return UpdateRentConfigurationDtoFromJSONTyped(json, false);
30
+ }
31
+ function UpdateRentConfigurationDtoFromJSONTyped(json, ignoreDiscriminator) {
32
+ if (json == null) {
33
+ return json;
34
+ }
35
+ return {
36
+ 'enabled': json['enabled'] == null ? undefined : json['enabled'],
37
+ 'price': json['price'] == null ? undefined : (0, MoneyDto_1.MoneyDtoFromJSON)(json['price']),
38
+ };
39
+ }
40
+ function UpdateRentConfigurationDtoToJSON(json) {
41
+ return UpdateRentConfigurationDtoToJSONTyped(json, false);
42
+ }
43
+ function UpdateRentConfigurationDtoToJSONTyped(value, ignoreDiscriminator) {
44
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
45
+ if (value == null) {
46
+ return value;
47
+ }
48
+ return {
49
+ 'enabled': value['enabled'],
50
+ 'price': (0, MoneyDto_1.MoneyDtoToJSON)(value['price']),
51
+ };
52
+ }
@@ -0,0 +1,38 @@
1
+ /**
2
+ * Nameshift
3
+ * Nameshift API
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 VerifyEmailOtpInput
16
+ */
17
+ export interface VerifyEmailOtpInput {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof VerifyEmailOtpInput
22
+ */
23
+ email: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof VerifyEmailOtpInput
28
+ */
29
+ otp: string;
30
+ }
31
+ /**
32
+ * Check if a given object implements the VerifyEmailOtpInput interface.
33
+ */
34
+ export declare function instanceOfVerifyEmailOtpInput(value: object): value is VerifyEmailOtpInput;
35
+ export declare function VerifyEmailOtpInputFromJSON(json: any): VerifyEmailOtpInput;
36
+ export declare function VerifyEmailOtpInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerifyEmailOtpInput;
37
+ export declare function VerifyEmailOtpInputToJSON(json: any): VerifyEmailOtpInput;
38
+ export declare function VerifyEmailOtpInputToJSONTyped(value?: VerifyEmailOtpInput | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Nameshift
6
+ * Nameshift API
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.instanceOfVerifyEmailOtpInput = instanceOfVerifyEmailOtpInput;
17
+ exports.VerifyEmailOtpInputFromJSON = VerifyEmailOtpInputFromJSON;
18
+ exports.VerifyEmailOtpInputFromJSONTyped = VerifyEmailOtpInputFromJSONTyped;
19
+ exports.VerifyEmailOtpInputToJSON = VerifyEmailOtpInputToJSON;
20
+ exports.VerifyEmailOtpInputToJSONTyped = VerifyEmailOtpInputToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the VerifyEmailOtpInput interface.
23
+ */
24
+ function instanceOfVerifyEmailOtpInput(value) {
25
+ if (!('email' in value) || value['email'] === undefined)
26
+ return false;
27
+ if (!('otp' in value) || value['otp'] === undefined)
28
+ return false;
29
+ return true;
30
+ }
31
+ function VerifyEmailOtpInputFromJSON(json) {
32
+ return VerifyEmailOtpInputFromJSONTyped(json, false);
33
+ }
34
+ function VerifyEmailOtpInputFromJSONTyped(json, ignoreDiscriminator) {
35
+ if (json == null) {
36
+ return json;
37
+ }
38
+ return {
39
+ 'email': json['email'],
40
+ 'otp': json['otp'],
41
+ };
42
+ }
43
+ function VerifyEmailOtpInputToJSON(json) {
44
+ return VerifyEmailOtpInputToJSONTyped(json, false);
45
+ }
46
+ function VerifyEmailOtpInputToJSONTyped(value, ignoreDiscriminator) {
47
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
48
+ if (value == null) {
49
+ return value;
50
+ }
51
+ return {
52
+ 'email': value['email'],
53
+ 'otp': value['otp'],
54
+ };
55
+ }
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Nameshift
3
+ * Nameshift API
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 VerifyPhoneOtpInput
16
+ */
17
+ export interface VerifyPhoneOtpInput {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof VerifyPhoneOtpInput
22
+ */
23
+ otp: string;
24
+ }
25
+ /**
26
+ * Check if a given object implements the VerifyPhoneOtpInput interface.
27
+ */
28
+ export declare function instanceOfVerifyPhoneOtpInput(value: object): value is VerifyPhoneOtpInput;
29
+ export declare function VerifyPhoneOtpInputFromJSON(json: any): VerifyPhoneOtpInput;
30
+ export declare function VerifyPhoneOtpInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerifyPhoneOtpInput;
31
+ export declare function VerifyPhoneOtpInputToJSON(json: any): VerifyPhoneOtpInput;
32
+ export declare function VerifyPhoneOtpInputToJSONTyped(value?: VerifyPhoneOtpInput | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Nameshift
6
+ * Nameshift API
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.instanceOfVerifyPhoneOtpInput = instanceOfVerifyPhoneOtpInput;
17
+ exports.VerifyPhoneOtpInputFromJSON = VerifyPhoneOtpInputFromJSON;
18
+ exports.VerifyPhoneOtpInputFromJSONTyped = VerifyPhoneOtpInputFromJSONTyped;
19
+ exports.VerifyPhoneOtpInputToJSON = VerifyPhoneOtpInputToJSON;
20
+ exports.VerifyPhoneOtpInputToJSONTyped = VerifyPhoneOtpInputToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the VerifyPhoneOtpInput interface.
23
+ */
24
+ function instanceOfVerifyPhoneOtpInput(value) {
25
+ if (!('otp' in value) || value['otp'] === undefined)
26
+ return false;
27
+ return true;
28
+ }
29
+ function VerifyPhoneOtpInputFromJSON(json) {
30
+ return VerifyPhoneOtpInputFromJSONTyped(json, false);
31
+ }
32
+ function VerifyPhoneOtpInputFromJSONTyped(json, ignoreDiscriminator) {
33
+ if (json == null) {
34
+ return json;
35
+ }
36
+ return {
37
+ 'otp': json['otp'],
38
+ };
39
+ }
40
+ function VerifyPhoneOtpInputToJSON(json) {
41
+ return VerifyPhoneOtpInputToJSONTyped(json, false);
42
+ }
43
+ function VerifyPhoneOtpInputToJSONTyped(value, ignoreDiscriminator) {
44
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
45
+ if (value == null) {
46
+ return value;
47
+ }
48
+ return {
49
+ 'otp': value['otp'],
50
+ };
51
+ }
@@ -39,6 +39,11 @@ export * from './AirwallexBankAccountDetailsDtoLocalMethodCode';
39
39
  export * from './AirwallexDepositDto';
40
40
  export * from './AirwallexDepositDtoFee';
41
41
  export * from './AuBankAccountDetails';
42
+ export * from './AuctionBidDto';
43
+ export * from './AuctionBidInput';
44
+ export * from './AuctionBuyerDto';
45
+ export * from './AuctionBuyerWithTokenDto';
46
+ export * from './AuctionDto';
42
47
  export * from './BadRequestException';
43
48
  export * from './BatchDeleteBuyerLeadsInput';
44
49
  export * from './BatchImportPreviewDto';
@@ -49,6 +54,7 @@ export * from './BatchVerifyBuyerLeadsInput';
49
54
  export * from './BillingInformationDto';
50
55
  export * from './BulkMarkBuyerNotificationsAsReadInputDto';
51
56
  export * from './BulkMarkNotificationsAsReadInputDto';
57
+ export * from './BulkUpdateDomainsWithFiltersInput';
52
58
  export * from './BuyerDomainTransferAuthCodeDto';
53
59
  export * from './BuyerDomainTransferListItemDomainDto';
54
60
  export * from './BuyerDomainTransferListItemDto';
@@ -86,7 +92,9 @@ export * from './CreateSubscriptionInput';
86
92
  export * from './CursorBasedPageInfo';
87
93
  export * from './CursorBasedPaginationResponse';
88
94
  export * from './DeleteDomainsInput';
95
+ export * from './DomainAuctionDto';
89
96
  export * from './DomainExchangeRateDto';
97
+ export * from './DomainFiltersDto';
90
98
  export * from './DomainLeadPriceNegotiatorAiAgentConfigurationDto';
91
99
  export * from './DomainLeadPriceNegotiatorAiAgentConfigurationInput';
92
100
  export * from './DomainPricesChangeDto';
@@ -155,10 +163,14 @@ export * from './LeadBuyerConfigDto';
155
163
  export * from './LeadDomainDto';
156
164
  export * from './LeadDto';
157
165
  export * from './LeadLeaseToOwnAndRentConfigurationPresetsDto';
166
+ export * from './LeadLeaseToOwnConfigurationDto';
158
167
  export * from './LeadMessageData';
168
+ export * from './LeadMessageDataLeaseToOwn';
159
169
  export * from './LeadMessageDto';
170
+ export * from './LeadOfferDto';
160
171
  export * from './LeadPriceNegotiatorAiAgentConfigurationDto';
161
172
  export * from './LeadPriceNegotiatorAiAgentConfigurationInput';
173
+ export * from './LeadRentConfigurationDto';
162
174
  export * from './LeadStatusDto';
163
175
  export * from './LeaseToOwnConfigurationDto';
164
176
  export * from './LeaseToOwnConfigurationInput';
@@ -218,6 +230,8 @@ export * from './PublicSalesDto';
218
230
  export * from './PutBuyerLeadOfferInput';
219
231
  export * from './PutLeadOfferInput';
220
232
  export * from './RegisterAccountInput';
233
+ export * from './RegisterAuctionBuyerPhoneInput';
234
+ export * from './RegisterInput';
221
235
  export * from './RelatedDomainsDto';
222
236
  export * from './RelatedSellerDomain';
223
237
  export * from './RentConfigurationDto';
@@ -225,6 +239,7 @@ export * from './RentConfigurationInput';
225
239
  export * from './RentConfigurationPresetsDto';
226
240
  export * from './RentDto';
227
241
  export * from './RequestAccessTokenInput';
242
+ export * from './RequestEmailOtpInput';
228
243
  export * from './SellerAccountReferralListItemDto';
229
244
  export * from './SellerAffiliateCommissionDto';
230
245
  export * from './SellerDomainAffiliateCommissionDto';
@@ -257,6 +272,7 @@ export * from './SetDomainTransferConfirmationInput';
257
272
  export * from './SetNewPasswordInput';
258
273
  export * from './SetPayoutProviderInput';
259
274
  export * from './SortDto';
275
+ export * from './StartAuctionInput';
260
276
  export * from './StatsFilterInputDateRange';
261
277
  export * from './StoreBuyerLocaleInput';
262
278
  export * from './StoreUserLocaleInput';
@@ -280,6 +296,9 @@ export * from './TaskDetailsDto';
280
296
  export * from './TaskListDomainDto';
281
297
  export * from './TaskListDomainTransferDto';
282
298
  export * from './TaskListLeadDto';
299
+ export * from './TaskListLeadLeaseToOwnConfigurationDto';
300
+ export * from './TaskListLeadOfferDto';
301
+ export * from './TaskListLeadRentConfigurationDto';
283
302
  export * from './TimeTableConfigurationDto';
284
303
  export * from './TimeTableConfigurationInput';
285
304
  export * from './UkBankAccountDetails';
@@ -292,7 +311,9 @@ export * from './UpdateDomainTransferIpsTagInput';
292
311
  export * from './UpdateLeadInput';
293
312
  export * from './UpdateLeadMuteStatusForBuyerInput';
294
313
  export * from './UpdateLeadMuteStatusInput';
314
+ export * from './UpdateLeaseToOwnConfigurationDto';
295
315
  export * from './UpdateOrderInput';
316
+ export * from './UpdateRentConfigurationDto';
296
317
  export * from './UpdateSubscriptionBillingPeriodicityInput';
297
318
  export * from './UpdateSubscriptionInput';
298
319
  export * from './UpdateTaskMuteStatusForBuyerInput';
@@ -308,5 +329,7 @@ export * from './ValidateTaxNumberDto';
308
329
  export * from './ValidateTaxNumberInput';
309
330
  export * from './ValidationError';
310
331
  export * from './ValidationException';
332
+ export * from './VerifyEmailOtpInput';
311
333
  export * from './VerifyLeadInput';
334
+ export * from './VerifyPhoneOtpInput';
312
335
  export * from './WithSettingsInner';