@randock/nameshift-api-client 0.0.365 → 0.0.366
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 +3 -0
- package/README.md +3 -3
- package/dist/apis/LeadsApi.d.ts +13 -1
- package/dist/apis/LeadsApi.js +56 -0
- package/dist/models/AccountSettingsDto.d.ts +7 -0
- package/dist/models/AccountSettingsDto.js +5 -0
- package/dist/models/AccountSettingsInput.d.ts +6 -0
- package/dist/models/AccountSettingsInput.js +2 -0
- package/dist/models/AdminAccountSettingsInput.d.ts +6 -0
- package/dist/models/AdminAccountSettingsInput.js +2 -0
- package/dist/models/BuyerDomainTransferListItemDto.d.ts +6 -0
- package/dist/models/BuyerDomainTransferListItemDto.js +4 -0
- package/dist/models/BuyerLeadListItemDto.d.ts +6 -0
- package/dist/models/BuyerLeadListItemDto.js +4 -0
- package/dist/models/CreateManualLeadInput.d.ts +14 -0
- package/dist/models/CreateManualLeadInput.js +6 -0
- package/dist/models/IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto.d.ts +7 -0
- package/dist/models/IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto.js +5 -0
- package/dist/models/LeadDto.d.ts +7 -0
- package/dist/models/LeadDto.js +5 -0
- package/dist/models/LeadOfferExpirationConfigurationDto.d.ts +39 -0
- package/dist/models/LeadOfferExpirationConfigurationDto.js +56 -0
- package/dist/models/LeadOfferExpirationConfigurationInput.d.ts +39 -0
- package/dist/models/LeadOfferExpirationConfigurationInput.js +52 -0
- package/dist/models/LeadOfferExpirationDurationInput.d.ts +47 -0
- package/dist/models/LeadOfferExpirationDurationInput.js +60 -0
- package/dist/models/ListLeadsResultItem.d.ts +7 -0
- package/dist/models/ListLeadsResultItem.js +5 -0
- package/dist/models/PutLeadOfferInput.d.ts +7 -0
- package/dist/models/PutLeadOfferInput.js +3 -0
- package/dist/models/SellerLeadDetails.d.ts +7 -0
- package/dist/models/SellerLeadDetails.js +5 -0
- package/dist/models/TaskListLeadDto.d.ts +7 -0
- package/dist/models/TaskListLeadDto.js +5 -0
- package/dist/models/WithSettingsInner.d.ts +7 -0
- package/dist/models/WithSettingsInner.js +5 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/package.json +1 -1
- package/src/apis/LeadsApi.ts +58 -0
- package/src/models/AccountSettingsDto.ts +16 -0
- package/src/models/AccountSettingsInput.ts +8 -0
- package/src/models/AdminAccountSettingsInput.ts +8 -0
- package/src/models/BuyerDomainTransferListItemDto.ts +9 -0
- package/src/models/BuyerLeadListItemDto.ts +9 -0
- package/src/models/CreateManualLeadInput.ts +30 -0
- package/src/models/IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto.ts +16 -0
- package/src/models/LeadDto.ts +16 -0
- package/src/models/LeadOfferExpirationConfigurationDto.ts +83 -0
- package/src/models/LeadOfferExpirationConfigurationInput.ts +81 -0
- package/src/models/LeadOfferExpirationDurationInput.ts +85 -0
- package/src/models/ListLeadsResultItem.ts +16 -0
- package/src/models/PutLeadOfferInput.ts +15 -0
- package/src/models/SellerLeadDetails.ts +16 -0
- package/src/models/TaskListLeadDto.ts +16 -0
- package/src/models/WithSettingsInner.ts +16 -0
- package/src/models/index.ts +3 -0
|
@@ -48,6 +48,13 @@ import {
|
|
|
48
48
|
AccountSettingsLeaseToOwnConfigurationDtoToJSON,
|
|
49
49
|
AccountSettingsLeaseToOwnConfigurationDtoToJSONTyped,
|
|
50
50
|
} from './AccountSettingsLeaseToOwnConfigurationDto';
|
|
51
|
+
import type { LeadOfferExpirationConfigurationDto } from './LeadOfferExpirationConfigurationDto';
|
|
52
|
+
import {
|
|
53
|
+
LeadOfferExpirationConfigurationDtoFromJSON,
|
|
54
|
+
LeadOfferExpirationConfigurationDtoFromJSONTyped,
|
|
55
|
+
LeadOfferExpirationConfigurationDtoToJSON,
|
|
56
|
+
LeadOfferExpirationConfigurationDtoToJSONTyped,
|
|
57
|
+
} from './LeadOfferExpirationConfigurationDto';
|
|
51
58
|
import type { AuctionConfigurationDto } from './AuctionConfigurationDto';
|
|
52
59
|
import {
|
|
53
60
|
AuctionConfigurationDtoFromJSON,
|
|
@@ -228,6 +235,12 @@ export interface WithSettingsInner {
|
|
|
228
235
|
* @memberof WithSettingsInner
|
|
229
236
|
*/
|
|
230
237
|
domainLockConfiguration: DomainLockConfigurationDto;
|
|
238
|
+
/**
|
|
239
|
+
*
|
|
240
|
+
* @type {LeadOfferExpirationConfigurationDto}
|
|
241
|
+
* @memberof WithSettingsInner
|
|
242
|
+
*/
|
|
243
|
+
leadOfferExpirationConfiguration: LeadOfferExpirationConfigurationDto;
|
|
231
244
|
}
|
|
232
245
|
|
|
233
246
|
/**
|
|
@@ -257,6 +270,7 @@ export function instanceOfWithSettingsInner(value: object): value is WithSetting
|
|
|
257
270
|
if (!('commissionsByDateRange' in value) || value['commissionsByDateRange'] === undefined) return false;
|
|
258
271
|
if (!('auctionConfiguration' in value) || value['auctionConfiguration'] === undefined) return false;
|
|
259
272
|
if (!('domainLockConfiguration' in value) || value['domainLockConfiguration'] === undefined) return false;
|
|
273
|
+
if (!('leadOfferExpirationConfiguration' in value) || value['leadOfferExpirationConfiguration'] === undefined) return false;
|
|
260
274
|
return true;
|
|
261
275
|
}
|
|
262
276
|
|
|
@@ -293,6 +307,7 @@ export function WithSettingsInnerFromJSONTyped(json: any, ignoreDiscriminator: b
|
|
|
293
307
|
'commissionsByDateRange': ((json['commissionsByDateRange'] as Array<any>).map(AccountCommissionByDateRangeDtoFromJSON)),
|
|
294
308
|
'auctionConfiguration': AuctionConfigurationDtoFromJSON(json['auctionConfiguration']),
|
|
295
309
|
'domainLockConfiguration': DomainLockConfigurationDtoFromJSON(json['domainLockConfiguration']),
|
|
310
|
+
'leadOfferExpirationConfiguration': LeadOfferExpirationConfigurationDtoFromJSON(json['leadOfferExpirationConfiguration']),
|
|
296
311
|
};
|
|
297
312
|
}
|
|
298
313
|
|
|
@@ -330,6 +345,7 @@ export function WithSettingsInnerToJSONTyped(value?: WithSettingsInner | null, i
|
|
|
330
345
|
'commissionsByDateRange': ((value['commissionsByDateRange'] as Array<any>).map(AccountCommissionByDateRangeDtoToJSON)),
|
|
331
346
|
'auctionConfiguration': AuctionConfigurationDtoToJSON(value['auctionConfiguration']),
|
|
332
347
|
'domainLockConfiguration': DomainLockConfigurationDtoToJSON(value['domainLockConfiguration']),
|
|
348
|
+
'leadOfferExpirationConfiguration': LeadOfferExpirationConfigurationDtoToJSON(value['leadOfferExpirationConfiguration']),
|
|
333
349
|
};
|
|
334
350
|
}
|
|
335
351
|
|
package/src/models/index.ts
CHANGED
|
@@ -199,6 +199,9 @@ export * from './LeadMessageData';
|
|
|
199
199
|
export * from './LeadMessageDataLeaseToOwn';
|
|
200
200
|
export * from './LeadMessageDto';
|
|
201
201
|
export * from './LeadOfferDto';
|
|
202
|
+
export * from './LeadOfferExpirationConfigurationDto';
|
|
203
|
+
export * from './LeadOfferExpirationConfigurationInput';
|
|
204
|
+
export * from './LeadOfferExpirationDurationInput';
|
|
202
205
|
export * from './LeadPriceNegotiatorAiAgentConfigurationDto';
|
|
203
206
|
export * from './LeadPriceNegotiatorAiAgentConfigurationInput';
|
|
204
207
|
export * from './LeadRentConfigurationDto';
|