@randock/nameshift-api-client 0.0.248 → 0.0.250
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 +4 -0
- package/README.md +3 -3
- package/dist/apis/AccountsApi.d.ts +2 -5
- package/dist/apis/AccountsApi.js +4 -7
- package/dist/apis/BuyersApi.d.ts +8 -0
- package/dist/apis/BuyersApi.js +48 -0
- package/dist/models/AccountSettingsInput.d.ts +20 -0
- package/dist/models/AccountSettingsInput.js +8 -0
- package/dist/models/DomainDto.d.ts +1 -1
- package/dist/models/IntersectionDomainDtoWithAccountDto.d.ts +1 -1
- package/dist/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.d.ts +1 -1
- package/dist/models/LeadPriceNegotiatorAiAgentConfigurationDto.d.ts +32 -0
- package/dist/models/LeadPriceNegotiatorAiAgentConfigurationDto.js +51 -0
- package/dist/models/LeadPriceNegotiatorAiAgentConfigurationInput.d.ts +32 -0
- package/dist/models/LeadPriceNegotiatorAiAgentConfigurationInput.js +49 -0
- package/dist/models/TimeTableConfigurationDto.d.ts +38 -0
- package/dist/models/TimeTableConfigurationDto.js +55 -0
- package/dist/models/TimeTableConfigurationInput.d.ts +38 -0
- package/dist/models/TimeTableConfigurationInput.js +51 -0
- package/dist/models/UpdateDomainInput.d.ts +1 -1
- package/dist/models/WithSettingsInner.d.ts +20 -0
- package/dist/models/WithSettingsInner.js +14 -0
- package/dist/models/index.d.ts +4 -0
- package/dist/models/index.js +4 -0
- package/package.json +1 -1
- package/src/apis/AccountsApi.ts +4 -15
- package/src/apis/BuyersApi.ts +33 -0
- package/src/models/AccountSettingsInput.ts +38 -0
- package/src/models/DomainDto.ts +1 -1
- package/src/models/IntersectionDomainDtoWithAccountDto.ts +1 -1
- package/src/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.ts +1 -1
- package/src/models/LeadPriceNegotiatorAiAgentConfigurationDto.ts +66 -0
- package/src/models/LeadPriceNegotiatorAiAgentConfigurationInput.ts +65 -0
- package/src/models/TimeTableConfigurationDto.ts +75 -0
- package/src/models/TimeTableConfigurationInput.ts +73 -0
- package/src/models/UpdateDomainInput.ts +1 -1
- package/src/models/WithSettingsInner.ts +41 -0
- package/src/models/index.ts +4 -0
|
@@ -13,6 +13,13 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
import { mapValues } from '../runtime';
|
|
16
|
+
import type { LeadPriceNegotiatorAiAgentConfigurationDto } from './LeadPriceNegotiatorAiAgentConfigurationDto';
|
|
17
|
+
import {
|
|
18
|
+
LeadPriceNegotiatorAiAgentConfigurationDtoFromJSON,
|
|
19
|
+
LeadPriceNegotiatorAiAgentConfigurationDtoFromJSONTyped,
|
|
20
|
+
LeadPriceNegotiatorAiAgentConfigurationDtoToJSON,
|
|
21
|
+
LeadPriceNegotiatorAiAgentConfigurationDtoToJSONTyped,
|
|
22
|
+
} from './LeadPriceNegotiatorAiAgentConfigurationDto';
|
|
16
23
|
import type { MoneyDto } from './MoneyDto';
|
|
17
24
|
import {
|
|
18
25
|
MoneyDtoFromJSON,
|
|
@@ -27,6 +34,13 @@ import {
|
|
|
27
34
|
AccountSettingsLeaseToOwnConfigurationDtoToJSON,
|
|
28
35
|
AccountSettingsLeaseToOwnConfigurationDtoToJSONTyped,
|
|
29
36
|
} from './AccountSettingsLeaseToOwnConfigurationDto';
|
|
37
|
+
import type { TimeTableConfigurationDto } from './TimeTableConfigurationDto';
|
|
38
|
+
import {
|
|
39
|
+
TimeTableConfigurationDtoFromJSON,
|
|
40
|
+
TimeTableConfigurationDtoFromJSONTyped,
|
|
41
|
+
TimeTableConfigurationDtoToJSON,
|
|
42
|
+
TimeTableConfigurationDtoToJSONTyped,
|
|
43
|
+
} from './TimeTableConfigurationDto';
|
|
30
44
|
import type { AccountSettingsRentConfigurationDto } from './AccountSettingsRentConfigurationDto';
|
|
31
45
|
import {
|
|
32
46
|
AccountSettingsRentConfigurationDtoFromJSON,
|
|
@@ -101,6 +115,24 @@ export interface WithSettingsInner {
|
|
|
101
115
|
* @memberof WithSettingsInner
|
|
102
116
|
*/
|
|
103
117
|
allowThirdPartySalesDataSharing: boolean;
|
|
118
|
+
/**
|
|
119
|
+
*
|
|
120
|
+
* @type {TimeTableConfigurationDto}
|
|
121
|
+
* @memberof WithSettingsInner
|
|
122
|
+
*/
|
|
123
|
+
timeTable: TimeTableConfigurationDto;
|
|
124
|
+
/**
|
|
125
|
+
*
|
|
126
|
+
* @type {string}
|
|
127
|
+
* @memberof WithSettingsInner
|
|
128
|
+
*/
|
|
129
|
+
timezone: string;
|
|
130
|
+
/**
|
|
131
|
+
*
|
|
132
|
+
* @type {LeadPriceNegotiatorAiAgentConfigurationDto}
|
|
133
|
+
* @memberof WithSettingsInner
|
|
134
|
+
*/
|
|
135
|
+
leadPriceNegotiatorAiAgent: LeadPriceNegotiatorAiAgentConfigurationDto;
|
|
104
136
|
}
|
|
105
137
|
|
|
106
138
|
/**
|
|
@@ -117,6 +149,9 @@ export function instanceOfWithSettingsInner(value: object): value is WithSetting
|
|
|
117
149
|
if (!('leaseToOwn' in value) || value['leaseToOwn'] === undefined) return false;
|
|
118
150
|
if (!('rent' in value) || value['rent'] === undefined) return false;
|
|
119
151
|
if (!('allowThirdPartySalesDataSharing' in value) || value['allowThirdPartySalesDataSharing'] === undefined) return false;
|
|
152
|
+
if (!('timeTable' in value) || value['timeTable'] === undefined) return false;
|
|
153
|
+
if (!('timezone' in value) || value['timezone'] === undefined) return false;
|
|
154
|
+
if (!('leadPriceNegotiatorAiAgent' in value) || value['leadPriceNegotiatorAiAgent'] === undefined) return false;
|
|
120
155
|
return true;
|
|
121
156
|
}
|
|
122
157
|
|
|
@@ -140,6 +175,9 @@ export function WithSettingsInnerFromJSONTyped(json: any, ignoreDiscriminator: b
|
|
|
140
175
|
'leaseToOwn': AccountSettingsLeaseToOwnConfigurationDtoFromJSON(json['leaseToOwn']),
|
|
141
176
|
'rent': AccountSettingsRentConfigurationDtoFromJSON(json['rent']),
|
|
142
177
|
'allowThirdPartySalesDataSharing': json['allowThirdPartySalesDataSharing'],
|
|
178
|
+
'timeTable': TimeTableConfigurationDtoFromJSON(json['timeTable']),
|
|
179
|
+
'timezone': json['timezone'],
|
|
180
|
+
'leadPriceNegotiatorAiAgent': LeadPriceNegotiatorAiAgentConfigurationDtoFromJSON(json['leadPriceNegotiatorAiAgent']),
|
|
143
181
|
};
|
|
144
182
|
}
|
|
145
183
|
|
|
@@ -164,6 +202,9 @@ export function WithSettingsInnerToJSONTyped(value?: WithSettingsInner | null, i
|
|
|
164
202
|
'leaseToOwn': AccountSettingsLeaseToOwnConfigurationDtoToJSON(value['leaseToOwn']),
|
|
165
203
|
'rent': AccountSettingsRentConfigurationDtoToJSON(value['rent']),
|
|
166
204
|
'allowThirdPartySalesDataSharing': value['allowThirdPartySalesDataSharing'],
|
|
205
|
+
'timeTable': TimeTableConfigurationDtoToJSON(value['timeTable']),
|
|
206
|
+
'timezone': value['timezone'],
|
|
207
|
+
'leadPriceNegotiatorAiAgent': LeadPriceNegotiatorAiAgentConfigurationDtoToJSON(value['leadPriceNegotiatorAiAgent']),
|
|
167
208
|
};
|
|
168
209
|
}
|
|
169
210
|
|
package/src/models/index.ts
CHANGED
|
@@ -123,6 +123,8 @@ export * from './LeadDto';
|
|
|
123
123
|
export * from './LeadLeaseToOwnAndRentConfigurationPresetsDto';
|
|
124
124
|
export * from './LeadMessageData';
|
|
125
125
|
export * from './LeadMessageDto';
|
|
126
|
+
export * from './LeadPriceNegotiatorAiAgentConfigurationDto';
|
|
127
|
+
export * from './LeadPriceNegotiatorAiAgentConfigurationInput';
|
|
126
128
|
export * from './LeadStatusDto';
|
|
127
129
|
export * from './LeaseToOwnConfigurationDto';
|
|
128
130
|
export * from './LeaseToOwnConfigurationInput';
|
|
@@ -218,6 +220,8 @@ export * from './TaskListDomainDto';
|
|
|
218
220
|
export * from './TaskListDomainTransferDto';
|
|
219
221
|
export * from './TaskListLeadDto';
|
|
220
222
|
export * from './ThrottlerException';
|
|
223
|
+
export * from './TimeTableConfigurationDto';
|
|
224
|
+
export * from './TimeTableConfigurationInput';
|
|
221
225
|
export * from './UkBankAccountDetails';
|
|
222
226
|
export * from './UpdateAccountBillingInformationInput';
|
|
223
227
|
export * from './UpdateBuyerDomainTransferIpsTagInputDto';
|