@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,75 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Nameshift
5
+ * Nameshift API
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface TaskListLeadRentConfigurationDto
20
+ */
21
+ export interface TaskListLeadRentConfigurationDto {
22
+ /**
23
+ *
24
+ * @type {number}
25
+ * @memberof TaskListLeadRentConfigurationDto
26
+ */
27
+ recurringMarkupPercentage: number;
28
+ /**
29
+ *
30
+ * @type {number}
31
+ * @memberof TaskListLeadRentConfigurationDto
32
+ */
33
+ minMonthPriceEur: number;
34
+ }
35
+
36
+ /**
37
+ * Check if a given object implements the TaskListLeadRentConfigurationDto interface.
38
+ */
39
+ export function instanceOfTaskListLeadRentConfigurationDto(value: object): value is TaskListLeadRentConfigurationDto {
40
+ if (!('recurringMarkupPercentage' in value) || value['recurringMarkupPercentage'] === undefined) return false;
41
+ if (!('minMonthPriceEur' in value) || value['minMonthPriceEur'] === undefined) return false;
42
+ return true;
43
+ }
44
+
45
+ export function TaskListLeadRentConfigurationDtoFromJSON(json: any): TaskListLeadRentConfigurationDto {
46
+ return TaskListLeadRentConfigurationDtoFromJSONTyped(json, false);
47
+ }
48
+
49
+ export function TaskListLeadRentConfigurationDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): TaskListLeadRentConfigurationDto {
50
+ if (json == null) {
51
+ return json;
52
+ }
53
+ return {
54
+
55
+ 'recurringMarkupPercentage': json['recurringMarkupPercentage'],
56
+ 'minMonthPriceEur': json['minMonthPriceEur'],
57
+ };
58
+ }
59
+
60
+ export function TaskListLeadRentConfigurationDtoToJSON(json: any): TaskListLeadRentConfigurationDto {
61
+ return TaskListLeadRentConfigurationDtoToJSONTyped(json, false);
62
+ }
63
+
64
+ export function TaskListLeadRentConfigurationDtoToJSONTyped(value?: TaskListLeadRentConfigurationDto | null, ignoreDiscriminator: boolean = false): any {
65
+ if (value == null) {
66
+ return value;
67
+ }
68
+
69
+ return {
70
+
71
+ 'recurringMarkupPercentage': value['recurringMarkupPercentage'],
72
+ 'minMonthPriceEur': value['minMonthPriceEur'],
73
+ };
74
+ }
75
+
@@ -0,0 +1,81 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Nameshift
5
+ * Nameshift API
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface UpdateLeaseToOwnConfigurationDto
20
+ */
21
+ export interface UpdateLeaseToOwnConfigurationDto {
22
+ /**
23
+ *
24
+ * @type {boolean}
25
+ * @memberof UpdateLeaseToOwnConfigurationDto
26
+ */
27
+ enabled?: boolean;
28
+ /**
29
+ *
30
+ * @type {number}
31
+ * @memberof UpdateLeaseToOwnConfigurationDto
32
+ */
33
+ minMonths?: number;
34
+ /**
35
+ *
36
+ * @type {number}
37
+ * @memberof UpdateLeaseToOwnConfigurationDto
38
+ */
39
+ maxMonths?: number;
40
+ }
41
+
42
+ /**
43
+ * Check if a given object implements the UpdateLeaseToOwnConfigurationDto interface.
44
+ */
45
+ export function instanceOfUpdateLeaseToOwnConfigurationDto(value: object): value is UpdateLeaseToOwnConfigurationDto {
46
+ return true;
47
+ }
48
+
49
+ export function UpdateLeaseToOwnConfigurationDtoFromJSON(json: any): UpdateLeaseToOwnConfigurationDto {
50
+ return UpdateLeaseToOwnConfigurationDtoFromJSONTyped(json, false);
51
+ }
52
+
53
+ export function UpdateLeaseToOwnConfigurationDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateLeaseToOwnConfigurationDto {
54
+ if (json == null) {
55
+ return json;
56
+ }
57
+ return {
58
+
59
+ 'enabled': json['enabled'] == null ? undefined : json['enabled'],
60
+ 'minMonths': json['minMonths'] == null ? undefined : json['minMonths'],
61
+ 'maxMonths': json['maxMonths'] == null ? undefined : json['maxMonths'],
62
+ };
63
+ }
64
+
65
+ export function UpdateLeaseToOwnConfigurationDtoToJSON(json: any): UpdateLeaseToOwnConfigurationDto {
66
+ return UpdateLeaseToOwnConfigurationDtoToJSONTyped(json, false);
67
+ }
68
+
69
+ export function UpdateLeaseToOwnConfigurationDtoToJSONTyped(value?: UpdateLeaseToOwnConfigurationDto | null, ignoreDiscriminator: boolean = false): any {
70
+ if (value == null) {
71
+ return value;
72
+ }
73
+
74
+ return {
75
+
76
+ 'enabled': value['enabled'],
77
+ 'minMonths': value['minMonths'],
78
+ 'maxMonths': value['maxMonths'],
79
+ };
80
+ }
81
+
@@ -0,0 +1,81 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Nameshift
5
+ * Nameshift API
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ import type { MoneyDto } from './MoneyDto';
17
+ import {
18
+ MoneyDtoFromJSON,
19
+ MoneyDtoFromJSONTyped,
20
+ MoneyDtoToJSON,
21
+ MoneyDtoToJSONTyped,
22
+ } from './MoneyDto';
23
+
24
+ /**
25
+ *
26
+ * @export
27
+ * @interface UpdateRentConfigurationDto
28
+ */
29
+ export interface UpdateRentConfigurationDto {
30
+ /**
31
+ *
32
+ * @type {boolean}
33
+ * @memberof UpdateRentConfigurationDto
34
+ */
35
+ enabled?: boolean;
36
+ /**
37
+ *
38
+ * @type {MoneyDto}
39
+ * @memberof UpdateRentConfigurationDto
40
+ */
41
+ price?: MoneyDto;
42
+ }
43
+
44
+ /**
45
+ * Check if a given object implements the UpdateRentConfigurationDto interface.
46
+ */
47
+ export function instanceOfUpdateRentConfigurationDto(value: object): value is UpdateRentConfigurationDto {
48
+ return true;
49
+ }
50
+
51
+ export function UpdateRentConfigurationDtoFromJSON(json: any): UpdateRentConfigurationDto {
52
+ return UpdateRentConfigurationDtoFromJSONTyped(json, false);
53
+ }
54
+
55
+ export function UpdateRentConfigurationDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateRentConfigurationDto {
56
+ if (json == null) {
57
+ return json;
58
+ }
59
+ return {
60
+
61
+ 'enabled': json['enabled'] == null ? undefined : json['enabled'],
62
+ 'price': json['price'] == null ? undefined : MoneyDtoFromJSON(json['price']),
63
+ };
64
+ }
65
+
66
+ export function UpdateRentConfigurationDtoToJSON(json: any): UpdateRentConfigurationDto {
67
+ return UpdateRentConfigurationDtoToJSONTyped(json, false);
68
+ }
69
+
70
+ export function UpdateRentConfigurationDtoToJSONTyped(value?: UpdateRentConfigurationDto | null, ignoreDiscriminator: boolean = false): any {
71
+ if (value == null) {
72
+ return value;
73
+ }
74
+
75
+ return {
76
+
77
+ 'enabled': value['enabled'],
78
+ 'price': MoneyDtoToJSON(value['price']),
79
+ };
80
+ }
81
+
@@ -0,0 +1,75 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Nameshift
5
+ * Nameshift API
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface VerifyEmailOtpInput
20
+ */
21
+ export interface VerifyEmailOtpInput {
22
+ /**
23
+ *
24
+ * @type {string}
25
+ * @memberof VerifyEmailOtpInput
26
+ */
27
+ email: string;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof VerifyEmailOtpInput
32
+ */
33
+ otp: string;
34
+ }
35
+
36
+ /**
37
+ * Check if a given object implements the VerifyEmailOtpInput interface.
38
+ */
39
+ export function instanceOfVerifyEmailOtpInput(value: object): value is VerifyEmailOtpInput {
40
+ if (!('email' in value) || value['email'] === undefined) return false;
41
+ if (!('otp' in value) || value['otp'] === undefined) return false;
42
+ return true;
43
+ }
44
+
45
+ export function VerifyEmailOtpInputFromJSON(json: any): VerifyEmailOtpInput {
46
+ return VerifyEmailOtpInputFromJSONTyped(json, false);
47
+ }
48
+
49
+ export function VerifyEmailOtpInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerifyEmailOtpInput {
50
+ if (json == null) {
51
+ return json;
52
+ }
53
+ return {
54
+
55
+ 'email': json['email'],
56
+ 'otp': json['otp'],
57
+ };
58
+ }
59
+
60
+ export function VerifyEmailOtpInputToJSON(json: any): VerifyEmailOtpInput {
61
+ return VerifyEmailOtpInputToJSONTyped(json, false);
62
+ }
63
+
64
+ export function VerifyEmailOtpInputToJSONTyped(value?: VerifyEmailOtpInput | null, ignoreDiscriminator: boolean = false): any {
65
+ if (value == null) {
66
+ return value;
67
+ }
68
+
69
+ return {
70
+
71
+ 'email': value['email'],
72
+ 'otp': value['otp'],
73
+ };
74
+ }
75
+
@@ -0,0 +1,66 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Nameshift
5
+ * Nameshift API
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface VerifyPhoneOtpInput
20
+ */
21
+ export interface VerifyPhoneOtpInput {
22
+ /**
23
+ *
24
+ * @type {string}
25
+ * @memberof VerifyPhoneOtpInput
26
+ */
27
+ otp: string;
28
+ }
29
+
30
+ /**
31
+ * Check if a given object implements the VerifyPhoneOtpInput interface.
32
+ */
33
+ export function instanceOfVerifyPhoneOtpInput(value: object): value is VerifyPhoneOtpInput {
34
+ if (!('otp' in value) || value['otp'] === undefined) return false;
35
+ return true;
36
+ }
37
+
38
+ export function VerifyPhoneOtpInputFromJSON(json: any): VerifyPhoneOtpInput {
39
+ return VerifyPhoneOtpInputFromJSONTyped(json, false);
40
+ }
41
+
42
+ export function VerifyPhoneOtpInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerifyPhoneOtpInput {
43
+ if (json == null) {
44
+ return json;
45
+ }
46
+ return {
47
+
48
+ 'otp': json['otp'],
49
+ };
50
+ }
51
+
52
+ export function VerifyPhoneOtpInputToJSON(json: any): VerifyPhoneOtpInput {
53
+ return VerifyPhoneOtpInputToJSONTyped(json, false);
54
+ }
55
+
56
+ export function VerifyPhoneOtpInputToJSONTyped(value?: VerifyPhoneOtpInput | null, ignoreDiscriminator: boolean = false): any {
57
+ if (value == null) {
58
+ return value;
59
+ }
60
+
61
+ return {
62
+
63
+ 'otp': value['otp'],
64
+ };
65
+ }
66
+
@@ -41,6 +41,11 @@ export * from './AirwallexBankAccountDetailsDtoLocalMethodCode';
41
41
  export * from './AirwallexDepositDto';
42
42
  export * from './AirwallexDepositDtoFee';
43
43
  export * from './AuBankAccountDetails';
44
+ export * from './AuctionBidDto';
45
+ export * from './AuctionBidInput';
46
+ export * from './AuctionBuyerDto';
47
+ export * from './AuctionBuyerWithTokenDto';
48
+ export * from './AuctionDto';
44
49
  export * from './BadRequestException';
45
50
  export * from './BatchDeleteBuyerLeadsInput';
46
51
  export * from './BatchImportPreviewDto';
@@ -51,6 +56,7 @@ export * from './BatchVerifyBuyerLeadsInput';
51
56
  export * from './BillingInformationDto';
52
57
  export * from './BulkMarkBuyerNotificationsAsReadInputDto';
53
58
  export * from './BulkMarkNotificationsAsReadInputDto';
59
+ export * from './BulkUpdateDomainsWithFiltersInput';
54
60
  export * from './BuyerDomainTransferAuthCodeDto';
55
61
  export * from './BuyerDomainTransferListItemDomainDto';
56
62
  export * from './BuyerDomainTransferListItemDto';
@@ -88,7 +94,9 @@ export * from './CreateSubscriptionInput';
88
94
  export * from './CursorBasedPageInfo';
89
95
  export * from './CursorBasedPaginationResponse';
90
96
  export * from './DeleteDomainsInput';
97
+ export * from './DomainAuctionDto';
91
98
  export * from './DomainExchangeRateDto';
99
+ export * from './DomainFiltersDto';
92
100
  export * from './DomainLeadPriceNegotiatorAiAgentConfigurationDto';
93
101
  export * from './DomainLeadPriceNegotiatorAiAgentConfigurationInput';
94
102
  export * from './DomainPricesChangeDto';
@@ -157,10 +165,14 @@ export * from './LeadBuyerConfigDto';
157
165
  export * from './LeadDomainDto';
158
166
  export * from './LeadDto';
159
167
  export * from './LeadLeaseToOwnAndRentConfigurationPresetsDto';
168
+ export * from './LeadLeaseToOwnConfigurationDto';
160
169
  export * from './LeadMessageData';
170
+ export * from './LeadMessageDataLeaseToOwn';
161
171
  export * from './LeadMessageDto';
172
+ export * from './LeadOfferDto';
162
173
  export * from './LeadPriceNegotiatorAiAgentConfigurationDto';
163
174
  export * from './LeadPriceNegotiatorAiAgentConfigurationInput';
175
+ export * from './LeadRentConfigurationDto';
164
176
  export * from './LeadStatusDto';
165
177
  export * from './LeaseToOwnConfigurationDto';
166
178
  export * from './LeaseToOwnConfigurationInput';
@@ -220,6 +232,8 @@ export * from './PublicSalesDto';
220
232
  export * from './PutBuyerLeadOfferInput';
221
233
  export * from './PutLeadOfferInput';
222
234
  export * from './RegisterAccountInput';
235
+ export * from './RegisterAuctionBuyerPhoneInput';
236
+ export * from './RegisterInput';
223
237
  export * from './RelatedDomainsDto';
224
238
  export * from './RelatedSellerDomain';
225
239
  export * from './RentConfigurationDto';
@@ -227,6 +241,7 @@ export * from './RentConfigurationInput';
227
241
  export * from './RentConfigurationPresetsDto';
228
242
  export * from './RentDto';
229
243
  export * from './RequestAccessTokenInput';
244
+ export * from './RequestEmailOtpInput';
230
245
  export * from './SellerAccountReferralListItemDto';
231
246
  export * from './SellerAffiliateCommissionDto';
232
247
  export * from './SellerDomainAffiliateCommissionDto';
@@ -259,6 +274,7 @@ export * from './SetDomainTransferConfirmationInput';
259
274
  export * from './SetNewPasswordInput';
260
275
  export * from './SetPayoutProviderInput';
261
276
  export * from './SortDto';
277
+ export * from './StartAuctionInput';
262
278
  export * from './StatsFilterInputDateRange';
263
279
  export * from './StoreBuyerLocaleInput';
264
280
  export * from './StoreUserLocaleInput';
@@ -282,6 +298,9 @@ export * from './TaskDetailsDto';
282
298
  export * from './TaskListDomainDto';
283
299
  export * from './TaskListDomainTransferDto';
284
300
  export * from './TaskListLeadDto';
301
+ export * from './TaskListLeadLeaseToOwnConfigurationDto';
302
+ export * from './TaskListLeadOfferDto';
303
+ export * from './TaskListLeadRentConfigurationDto';
285
304
  export * from './TimeTableConfigurationDto';
286
305
  export * from './TimeTableConfigurationInput';
287
306
  export * from './UkBankAccountDetails';
@@ -294,7 +313,9 @@ export * from './UpdateDomainTransferIpsTagInput';
294
313
  export * from './UpdateLeadInput';
295
314
  export * from './UpdateLeadMuteStatusForBuyerInput';
296
315
  export * from './UpdateLeadMuteStatusInput';
316
+ export * from './UpdateLeaseToOwnConfigurationDto';
297
317
  export * from './UpdateOrderInput';
318
+ export * from './UpdateRentConfigurationDto';
298
319
  export * from './UpdateSubscriptionBillingPeriodicityInput';
299
320
  export * from './UpdateSubscriptionInput';
300
321
  export * from './UpdateTaskMuteStatusForBuyerInput';
@@ -310,5 +331,7 @@ export * from './ValidateTaxNumberDto';
310
331
  export * from './ValidateTaxNumberInput';
311
332
  export * from './ValidationError';
312
333
  export * from './ValidationException';
334
+ export * from './VerifyEmailOtpInput';
313
335
  export * from './VerifyLeadInput';
336
+ export * from './VerifyPhoneOtpInput';
314
337
  export * from './WithSettingsInner';