@randock/nameshift-api-client 0.0.249 → 0.0.251
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/models/AccountSettingsInput.d.ts +20 -0
- package/dist/models/AccountSettingsInput.js +8 -0
- 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/RegisterAccountInput.d.ts +6 -0
- package/dist/models/RegisterAccountInput.js +2 -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/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/models/AccountSettingsInput.ts +38 -0
- package/src/models/LeadPriceNegotiatorAiAgentConfigurationDto.ts +66 -0
- package/src/models/LeadPriceNegotiatorAiAgentConfigurationInput.ts +65 -0
- package/src/models/RegisterAccountInput.ts +8 -0
- package/src/models/TimeTableConfigurationDto.ts +75 -0
- package/src/models/TimeTableConfigurationInput.ts +73 -0
- package/src/models/WithSettingsInner.ts +41 -0
- package/src/models/index.ts +4 -0
package/.openapi-generator/FILES
CHANGED
|
@@ -148,6 +148,8 @@ src/models/LeadDto.ts
|
|
|
148
148
|
src/models/LeadLeaseToOwnAndRentConfigurationPresetsDto.ts
|
|
149
149
|
src/models/LeadMessageData.ts
|
|
150
150
|
src/models/LeadMessageDto.ts
|
|
151
|
+
src/models/LeadPriceNegotiatorAiAgentConfigurationDto.ts
|
|
152
|
+
src/models/LeadPriceNegotiatorAiAgentConfigurationInput.ts
|
|
151
153
|
src/models/LeadStatusDto.ts
|
|
152
154
|
src/models/LeaseToOwnConfigurationDto.ts
|
|
153
155
|
src/models/LeaseToOwnConfigurationInput.ts
|
|
@@ -243,6 +245,8 @@ src/models/TaskListDomainDto.ts
|
|
|
243
245
|
src/models/TaskListDomainTransferDto.ts
|
|
244
246
|
src/models/TaskListLeadDto.ts
|
|
245
247
|
src/models/ThrottlerException.ts
|
|
248
|
+
src/models/TimeTableConfigurationDto.ts
|
|
249
|
+
src/models/TimeTableConfigurationInput.ts
|
|
246
250
|
src/models/UkBankAccountDetails.ts
|
|
247
251
|
src/models/UpdateAccountBillingInformationInput.ts
|
|
248
252
|
src/models/UpdateBuyerDomainTransferIpsTagInputDto.ts
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.251
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @randock/nameshift-api-client@0.0.
|
|
39
|
+
npm install @randock/nameshift-api-client@0.0.251 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -44,4 +44,4 @@ _unPublished (not recommended):_
|
|
|
44
44
|
```
|
|
45
45
|
npm install PATH_TO_GENERATED_PACKAGE --save
|
|
46
46
|
```
|
|
47
|
-
|
|
47
|
+
aab0623cc8fb928973e526075607715a718379e8715496b283085e4584d9f50dd246f0bc9663aee5d7d3e4443966f28c
|
|
@@ -11,6 +11,8 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { MoneyDto } from './MoneyDto';
|
|
13
13
|
import type { LandingPageInput } from './LandingPageInput';
|
|
14
|
+
import type { TimeTableConfigurationInput } from './TimeTableConfigurationInput';
|
|
15
|
+
import type { LeadPriceNegotiatorAiAgentConfigurationInput } from './LeadPriceNegotiatorAiAgentConfigurationInput';
|
|
14
16
|
import type { LeaseToOwnConfigurationInput } from './LeaseToOwnConfigurationInput';
|
|
15
17
|
/**
|
|
16
18
|
*
|
|
@@ -60,6 +62,24 @@ export interface AccountSettingsInput {
|
|
|
60
62
|
* @memberof AccountSettingsInput
|
|
61
63
|
*/
|
|
62
64
|
allowThirdPartySalesDataSharing?: boolean;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {TimeTableConfigurationInput}
|
|
68
|
+
* @memberof AccountSettingsInput
|
|
69
|
+
*/
|
|
70
|
+
timeTable?: TimeTableConfigurationInput;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {LeadPriceNegotiatorAiAgentConfigurationInput}
|
|
74
|
+
* @memberof AccountSettingsInput
|
|
75
|
+
*/
|
|
76
|
+
leadPriceNegotiatorAiAgent?: LeadPriceNegotiatorAiAgentConfigurationInput;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof AccountSettingsInput
|
|
81
|
+
*/
|
|
82
|
+
timezone?: string;
|
|
63
83
|
}
|
|
64
84
|
/**
|
|
65
85
|
* Check if a given object implements the AccountSettingsInput interface.
|
|
@@ -20,6 +20,8 @@ exports.AccountSettingsInputToJSON = AccountSettingsInputToJSON;
|
|
|
20
20
|
exports.AccountSettingsInputToJSONTyped = AccountSettingsInputToJSONTyped;
|
|
21
21
|
var MoneyDto_1 = require("./MoneyDto");
|
|
22
22
|
var LandingPageInput_1 = require("./LandingPageInput");
|
|
23
|
+
var TimeTableConfigurationInput_1 = require("./TimeTableConfigurationInput");
|
|
24
|
+
var LeadPriceNegotiatorAiAgentConfigurationInput_1 = require("./LeadPriceNegotiatorAiAgentConfigurationInput");
|
|
23
25
|
var LeaseToOwnConfigurationInput_1 = require("./LeaseToOwnConfigurationInput");
|
|
24
26
|
/**
|
|
25
27
|
* Check if a given object implements the AccountSettingsInput interface.
|
|
@@ -42,6 +44,9 @@ function AccountSettingsInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
42
44
|
'leaseToOwn': json['leaseToOwn'] == null ? undefined : (0, LeaseToOwnConfigurationInput_1.LeaseToOwnConfigurationInputFromJSON)(json['leaseToOwn']),
|
|
43
45
|
'description': json['description'] == null ? undefined : json['description'],
|
|
44
46
|
'allowThirdPartySalesDataSharing': json['allowThirdPartySalesDataSharing'] == null ? undefined : json['allowThirdPartySalesDataSharing'],
|
|
47
|
+
'timeTable': json['timeTable'] == null ? undefined : (0, TimeTableConfigurationInput_1.TimeTableConfigurationInputFromJSON)(json['timeTable']),
|
|
48
|
+
'leadPriceNegotiatorAiAgent': json['leadPriceNegotiatorAiAgent'] == null ? undefined : (0, LeadPriceNegotiatorAiAgentConfigurationInput_1.LeadPriceNegotiatorAiAgentConfigurationInputFromJSON)(json['leadPriceNegotiatorAiAgent']),
|
|
49
|
+
'timezone': json['timezone'] == null ? undefined : json['timezone'],
|
|
45
50
|
};
|
|
46
51
|
}
|
|
47
52
|
function AccountSettingsInputToJSON(json) {
|
|
@@ -60,5 +65,8 @@ function AccountSettingsInputToJSONTyped(value, ignoreDiscriminator) {
|
|
|
60
65
|
'leaseToOwn': (0, LeaseToOwnConfigurationInput_1.LeaseToOwnConfigurationInputToJSON)(value['leaseToOwn']),
|
|
61
66
|
'description': value['description'],
|
|
62
67
|
'allowThirdPartySalesDataSharing': value['allowThirdPartySalesDataSharing'],
|
|
68
|
+
'timeTable': (0, TimeTableConfigurationInput_1.TimeTableConfigurationInputToJSON)(value['timeTable']),
|
|
69
|
+
'leadPriceNegotiatorAiAgent': (0, LeadPriceNegotiatorAiAgentConfigurationInput_1.LeadPriceNegotiatorAiAgentConfigurationInputToJSON)(value['leadPriceNegotiatorAiAgent']),
|
|
70
|
+
'timezone': value['timezone'],
|
|
63
71
|
};
|
|
64
72
|
}
|
|
@@ -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 LeadPriceNegotiatorAiAgentConfigurationDto
|
|
16
|
+
*/
|
|
17
|
+
export interface LeadPriceNegotiatorAiAgentConfigurationDto {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {boolean}
|
|
21
|
+
* @memberof LeadPriceNegotiatorAiAgentConfigurationDto
|
|
22
|
+
*/
|
|
23
|
+
enabled: boolean;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the LeadPriceNegotiatorAiAgentConfigurationDto interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfLeadPriceNegotiatorAiAgentConfigurationDto(value: object): value is LeadPriceNegotiatorAiAgentConfigurationDto;
|
|
29
|
+
export declare function LeadPriceNegotiatorAiAgentConfigurationDtoFromJSON(json: any): LeadPriceNegotiatorAiAgentConfigurationDto;
|
|
30
|
+
export declare function LeadPriceNegotiatorAiAgentConfigurationDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): LeadPriceNegotiatorAiAgentConfigurationDto;
|
|
31
|
+
export declare function LeadPriceNegotiatorAiAgentConfigurationDtoToJSON(json: any): LeadPriceNegotiatorAiAgentConfigurationDto;
|
|
32
|
+
export declare function LeadPriceNegotiatorAiAgentConfigurationDtoToJSONTyped(value?: LeadPriceNegotiatorAiAgentConfigurationDto | 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.instanceOfLeadPriceNegotiatorAiAgentConfigurationDto = instanceOfLeadPriceNegotiatorAiAgentConfigurationDto;
|
|
17
|
+
exports.LeadPriceNegotiatorAiAgentConfigurationDtoFromJSON = LeadPriceNegotiatorAiAgentConfigurationDtoFromJSON;
|
|
18
|
+
exports.LeadPriceNegotiatorAiAgentConfigurationDtoFromJSONTyped = LeadPriceNegotiatorAiAgentConfigurationDtoFromJSONTyped;
|
|
19
|
+
exports.LeadPriceNegotiatorAiAgentConfigurationDtoToJSON = LeadPriceNegotiatorAiAgentConfigurationDtoToJSON;
|
|
20
|
+
exports.LeadPriceNegotiatorAiAgentConfigurationDtoToJSONTyped = LeadPriceNegotiatorAiAgentConfigurationDtoToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the LeadPriceNegotiatorAiAgentConfigurationDto interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfLeadPriceNegotiatorAiAgentConfigurationDto(value) {
|
|
25
|
+
if (!('enabled' in value) || value['enabled'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
return true;
|
|
28
|
+
}
|
|
29
|
+
function LeadPriceNegotiatorAiAgentConfigurationDtoFromJSON(json) {
|
|
30
|
+
return LeadPriceNegotiatorAiAgentConfigurationDtoFromJSONTyped(json, false);
|
|
31
|
+
}
|
|
32
|
+
function LeadPriceNegotiatorAiAgentConfigurationDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
+
if (json == null) {
|
|
34
|
+
return json;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'enabled': json['enabled'],
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
function LeadPriceNegotiatorAiAgentConfigurationDtoToJSON(json) {
|
|
41
|
+
return LeadPriceNegotiatorAiAgentConfigurationDtoToJSONTyped(json, false);
|
|
42
|
+
}
|
|
43
|
+
function LeadPriceNegotiatorAiAgentConfigurationDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
44
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
45
|
+
if (value == null) {
|
|
46
|
+
return value;
|
|
47
|
+
}
|
|
48
|
+
return {
|
|
49
|
+
'enabled': value['enabled'],
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -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 LeadPriceNegotiatorAiAgentConfigurationInput
|
|
16
|
+
*/
|
|
17
|
+
export interface LeadPriceNegotiatorAiAgentConfigurationInput {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {boolean}
|
|
21
|
+
* @memberof LeadPriceNegotiatorAiAgentConfigurationInput
|
|
22
|
+
*/
|
|
23
|
+
enabled?: boolean;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the LeadPriceNegotiatorAiAgentConfigurationInput interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfLeadPriceNegotiatorAiAgentConfigurationInput(value: object): value is LeadPriceNegotiatorAiAgentConfigurationInput;
|
|
29
|
+
export declare function LeadPriceNegotiatorAiAgentConfigurationInputFromJSON(json: any): LeadPriceNegotiatorAiAgentConfigurationInput;
|
|
30
|
+
export declare function LeadPriceNegotiatorAiAgentConfigurationInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): LeadPriceNegotiatorAiAgentConfigurationInput;
|
|
31
|
+
export declare function LeadPriceNegotiatorAiAgentConfigurationInputToJSON(json: any): LeadPriceNegotiatorAiAgentConfigurationInput;
|
|
32
|
+
export declare function LeadPriceNegotiatorAiAgentConfigurationInputToJSONTyped(value?: LeadPriceNegotiatorAiAgentConfigurationInput | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,49 @@
|
|
|
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.instanceOfLeadPriceNegotiatorAiAgentConfigurationInput = instanceOfLeadPriceNegotiatorAiAgentConfigurationInput;
|
|
17
|
+
exports.LeadPriceNegotiatorAiAgentConfigurationInputFromJSON = LeadPriceNegotiatorAiAgentConfigurationInputFromJSON;
|
|
18
|
+
exports.LeadPriceNegotiatorAiAgentConfigurationInputFromJSONTyped = LeadPriceNegotiatorAiAgentConfigurationInputFromJSONTyped;
|
|
19
|
+
exports.LeadPriceNegotiatorAiAgentConfigurationInputToJSON = LeadPriceNegotiatorAiAgentConfigurationInputToJSON;
|
|
20
|
+
exports.LeadPriceNegotiatorAiAgentConfigurationInputToJSONTyped = LeadPriceNegotiatorAiAgentConfigurationInputToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the LeadPriceNegotiatorAiAgentConfigurationInput interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfLeadPriceNegotiatorAiAgentConfigurationInput(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function LeadPriceNegotiatorAiAgentConfigurationInputFromJSON(json) {
|
|
28
|
+
return LeadPriceNegotiatorAiAgentConfigurationInputFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function LeadPriceNegotiatorAiAgentConfigurationInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'enabled': json['enabled'] == null ? undefined : json['enabled'],
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
function LeadPriceNegotiatorAiAgentConfigurationInputToJSON(json) {
|
|
39
|
+
return LeadPriceNegotiatorAiAgentConfigurationInputToJSONTyped(json, false);
|
|
40
|
+
}
|
|
41
|
+
function LeadPriceNegotiatorAiAgentConfigurationInputToJSONTyped(value, ignoreDiscriminator) {
|
|
42
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
43
|
+
if (value == null) {
|
|
44
|
+
return value;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
'enabled': value['enabled'],
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -59,6 +59,7 @@ function RegisterAccountInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
59
59
|
'phoneNumber': json['phoneNumber'] == null ? undefined : json['phoneNumber'],
|
|
60
60
|
'adProgram': json['adProgram'] == null ? undefined : json['adProgram'],
|
|
61
61
|
'adId': json['adId'] == null ? undefined : json['adId'],
|
|
62
|
+
'timezone': json['timezone'] == null ? undefined : json['timezone'],
|
|
62
63
|
};
|
|
63
64
|
}
|
|
64
65
|
function RegisterAccountInputToJSON(json) {
|
|
@@ -78,5 +79,6 @@ function RegisterAccountInputToJSONTyped(value, ignoreDiscriminator) {
|
|
|
78
79
|
'phoneNumber': value['phoneNumber'],
|
|
79
80
|
'adProgram': value['adProgram'],
|
|
80
81
|
'adId': value['adId'],
|
|
82
|
+
'timezone': value['timezone'],
|
|
81
83
|
};
|
|
82
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 TimeTableConfigurationDto
|
|
16
|
+
*/
|
|
17
|
+
export interface TimeTableConfigurationDto {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof TimeTableConfigurationDto
|
|
22
|
+
*/
|
|
23
|
+
startHour: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof TimeTableConfigurationDto
|
|
28
|
+
*/
|
|
29
|
+
endHour: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the TimeTableConfigurationDto interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfTimeTableConfigurationDto(value: object): value is TimeTableConfigurationDto;
|
|
35
|
+
export declare function TimeTableConfigurationDtoFromJSON(json: any): TimeTableConfigurationDto;
|
|
36
|
+
export declare function TimeTableConfigurationDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeTableConfigurationDto;
|
|
37
|
+
export declare function TimeTableConfigurationDtoToJSON(json: any): TimeTableConfigurationDto;
|
|
38
|
+
export declare function TimeTableConfigurationDtoToJSONTyped(value?: TimeTableConfigurationDto | 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.instanceOfTimeTableConfigurationDto = instanceOfTimeTableConfigurationDto;
|
|
17
|
+
exports.TimeTableConfigurationDtoFromJSON = TimeTableConfigurationDtoFromJSON;
|
|
18
|
+
exports.TimeTableConfigurationDtoFromJSONTyped = TimeTableConfigurationDtoFromJSONTyped;
|
|
19
|
+
exports.TimeTableConfigurationDtoToJSON = TimeTableConfigurationDtoToJSON;
|
|
20
|
+
exports.TimeTableConfigurationDtoToJSONTyped = TimeTableConfigurationDtoToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the TimeTableConfigurationDto interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfTimeTableConfigurationDto(value) {
|
|
25
|
+
if (!('startHour' in value) || value['startHour'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('endHour' in value) || value['endHour'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
function TimeTableConfigurationDtoFromJSON(json) {
|
|
32
|
+
return TimeTableConfigurationDtoFromJSONTyped(json, false);
|
|
33
|
+
}
|
|
34
|
+
function TimeTableConfigurationDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if (json == null) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'startHour': json['startHour'],
|
|
40
|
+
'endHour': json['endHour'],
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
function TimeTableConfigurationDtoToJSON(json) {
|
|
44
|
+
return TimeTableConfigurationDtoToJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
function TimeTableConfigurationDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
47
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
48
|
+
if (value == null) {
|
|
49
|
+
return value;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
'startHour': value['startHour'],
|
|
53
|
+
'endHour': value['endHour'],
|
|
54
|
+
};
|
|
55
|
+
}
|
|
@@ -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 TimeTableConfigurationInput
|
|
16
|
+
*/
|
|
17
|
+
export interface TimeTableConfigurationInput {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof TimeTableConfigurationInput
|
|
22
|
+
*/
|
|
23
|
+
startHour?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof TimeTableConfigurationInput
|
|
28
|
+
*/
|
|
29
|
+
endHour?: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the TimeTableConfigurationInput interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfTimeTableConfigurationInput(value: object): value is TimeTableConfigurationInput;
|
|
35
|
+
export declare function TimeTableConfigurationInputFromJSON(json: any): TimeTableConfigurationInput;
|
|
36
|
+
export declare function TimeTableConfigurationInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeTableConfigurationInput;
|
|
37
|
+
export declare function TimeTableConfigurationInputToJSON(json: any): TimeTableConfigurationInput;
|
|
38
|
+
export declare function TimeTableConfigurationInputToJSONTyped(value?: TimeTableConfigurationInput | 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.instanceOfTimeTableConfigurationInput = instanceOfTimeTableConfigurationInput;
|
|
17
|
+
exports.TimeTableConfigurationInputFromJSON = TimeTableConfigurationInputFromJSON;
|
|
18
|
+
exports.TimeTableConfigurationInputFromJSONTyped = TimeTableConfigurationInputFromJSONTyped;
|
|
19
|
+
exports.TimeTableConfigurationInputToJSON = TimeTableConfigurationInputToJSON;
|
|
20
|
+
exports.TimeTableConfigurationInputToJSONTyped = TimeTableConfigurationInputToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the TimeTableConfigurationInput interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfTimeTableConfigurationInput(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function TimeTableConfigurationInputFromJSON(json) {
|
|
28
|
+
return TimeTableConfigurationInputFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function TimeTableConfigurationInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'startHour': json['startHour'] == null ? undefined : json['startHour'],
|
|
36
|
+
'endHour': json['endHour'] == null ? undefined : json['endHour'],
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function TimeTableConfigurationInputToJSON(json) {
|
|
40
|
+
return TimeTableConfigurationInputToJSONTyped(json, false);
|
|
41
|
+
}
|
|
42
|
+
function TimeTableConfigurationInputToJSONTyped(value, ignoreDiscriminator) {
|
|
43
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
44
|
+
if (value == null) {
|
|
45
|
+
return value;
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
'startHour': value['startHour'],
|
|
49
|
+
'endHour': value['endHour'],
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -9,8 +9,10 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { LeadPriceNegotiatorAiAgentConfigurationDto } from './LeadPriceNegotiatorAiAgentConfigurationDto';
|
|
12
13
|
import type { MoneyDto } from './MoneyDto';
|
|
13
14
|
import type { AccountSettingsLeaseToOwnConfigurationDto } from './AccountSettingsLeaseToOwnConfigurationDto';
|
|
15
|
+
import type { TimeTableConfigurationDto } from './TimeTableConfigurationDto';
|
|
14
16
|
import type { AccountSettingsRentConfigurationDto } from './AccountSettingsRentConfigurationDto';
|
|
15
17
|
/**
|
|
16
18
|
*
|
|
@@ -78,6 +80,24 @@ export interface WithSettingsInner {
|
|
|
78
80
|
* @memberof WithSettingsInner
|
|
79
81
|
*/
|
|
80
82
|
allowThirdPartySalesDataSharing: boolean;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {TimeTableConfigurationDto}
|
|
86
|
+
* @memberof WithSettingsInner
|
|
87
|
+
*/
|
|
88
|
+
timeTable: TimeTableConfigurationDto;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof WithSettingsInner
|
|
93
|
+
*/
|
|
94
|
+
timezone: string;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {LeadPriceNegotiatorAiAgentConfigurationDto}
|
|
98
|
+
* @memberof WithSettingsInner
|
|
99
|
+
*/
|
|
100
|
+
leadPriceNegotiatorAiAgent: LeadPriceNegotiatorAiAgentConfigurationDto;
|
|
81
101
|
}
|
|
82
102
|
/**
|
|
83
103
|
* Check if a given object implements the WithSettingsInner interface.
|
|
@@ -18,8 +18,10 @@ exports.WithSettingsInnerFromJSON = WithSettingsInnerFromJSON;
|
|
|
18
18
|
exports.WithSettingsInnerFromJSONTyped = WithSettingsInnerFromJSONTyped;
|
|
19
19
|
exports.WithSettingsInnerToJSON = WithSettingsInnerToJSON;
|
|
20
20
|
exports.WithSettingsInnerToJSONTyped = WithSettingsInnerToJSONTyped;
|
|
21
|
+
var LeadPriceNegotiatorAiAgentConfigurationDto_1 = require("./LeadPriceNegotiatorAiAgentConfigurationDto");
|
|
21
22
|
var MoneyDto_1 = require("./MoneyDto");
|
|
22
23
|
var AccountSettingsLeaseToOwnConfigurationDto_1 = require("./AccountSettingsLeaseToOwnConfigurationDto");
|
|
24
|
+
var TimeTableConfigurationDto_1 = require("./TimeTableConfigurationDto");
|
|
23
25
|
var AccountSettingsRentConfigurationDto_1 = require("./AccountSettingsRentConfigurationDto");
|
|
24
26
|
/**
|
|
25
27
|
* Check if a given object implements the WithSettingsInner interface.
|
|
@@ -45,6 +47,12 @@ function instanceOfWithSettingsInner(value) {
|
|
|
45
47
|
return false;
|
|
46
48
|
if (!('allowThirdPartySalesDataSharing' in value) || value['allowThirdPartySalesDataSharing'] === undefined)
|
|
47
49
|
return false;
|
|
50
|
+
if (!('timeTable' in value) || value['timeTable'] === undefined)
|
|
51
|
+
return false;
|
|
52
|
+
if (!('timezone' in value) || value['timezone'] === undefined)
|
|
53
|
+
return false;
|
|
54
|
+
if (!('leadPriceNegotiatorAiAgent' in value) || value['leadPriceNegotiatorAiAgent'] === undefined)
|
|
55
|
+
return false;
|
|
48
56
|
return true;
|
|
49
57
|
}
|
|
50
58
|
function WithSettingsInnerFromJSON(json) {
|
|
@@ -65,6 +73,9 @@ function WithSettingsInnerFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
65
73
|
'leaseToOwn': (0, AccountSettingsLeaseToOwnConfigurationDto_1.AccountSettingsLeaseToOwnConfigurationDtoFromJSON)(json['leaseToOwn']),
|
|
66
74
|
'rent': (0, AccountSettingsRentConfigurationDto_1.AccountSettingsRentConfigurationDtoFromJSON)(json['rent']),
|
|
67
75
|
'allowThirdPartySalesDataSharing': json['allowThirdPartySalesDataSharing'],
|
|
76
|
+
'timeTable': (0, TimeTableConfigurationDto_1.TimeTableConfigurationDtoFromJSON)(json['timeTable']),
|
|
77
|
+
'timezone': json['timezone'],
|
|
78
|
+
'leadPriceNegotiatorAiAgent': (0, LeadPriceNegotiatorAiAgentConfigurationDto_1.LeadPriceNegotiatorAiAgentConfigurationDtoFromJSON)(json['leadPriceNegotiatorAiAgent']),
|
|
68
79
|
};
|
|
69
80
|
}
|
|
70
81
|
function WithSettingsInnerToJSON(json) {
|
|
@@ -86,5 +97,8 @@ function WithSettingsInnerToJSONTyped(value, ignoreDiscriminator) {
|
|
|
86
97
|
'leaseToOwn': (0, AccountSettingsLeaseToOwnConfigurationDto_1.AccountSettingsLeaseToOwnConfigurationDtoToJSON)(value['leaseToOwn']),
|
|
87
98
|
'rent': (0, AccountSettingsRentConfigurationDto_1.AccountSettingsRentConfigurationDtoToJSON)(value['rent']),
|
|
88
99
|
'allowThirdPartySalesDataSharing': value['allowThirdPartySalesDataSharing'],
|
|
100
|
+
'timeTable': (0, TimeTableConfigurationDto_1.TimeTableConfigurationDtoToJSON)(value['timeTable']),
|
|
101
|
+
'timezone': value['timezone'],
|
|
102
|
+
'leadPriceNegotiatorAiAgent': (0, LeadPriceNegotiatorAiAgentConfigurationDto_1.LeadPriceNegotiatorAiAgentConfigurationDtoToJSON)(value['leadPriceNegotiatorAiAgent']),
|
|
89
103
|
};
|
|
90
104
|
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -121,6 +121,8 @@ export * from './LeadDto';
|
|
|
121
121
|
export * from './LeadLeaseToOwnAndRentConfigurationPresetsDto';
|
|
122
122
|
export * from './LeadMessageData';
|
|
123
123
|
export * from './LeadMessageDto';
|
|
124
|
+
export * from './LeadPriceNegotiatorAiAgentConfigurationDto';
|
|
125
|
+
export * from './LeadPriceNegotiatorAiAgentConfigurationInput';
|
|
124
126
|
export * from './LeadStatusDto';
|
|
125
127
|
export * from './LeaseToOwnConfigurationDto';
|
|
126
128
|
export * from './LeaseToOwnConfigurationInput';
|
|
@@ -216,6 +218,8 @@ export * from './TaskListDomainDto';
|
|
|
216
218
|
export * from './TaskListDomainTransferDto';
|
|
217
219
|
export * from './TaskListLeadDto';
|
|
218
220
|
export * from './ThrottlerException';
|
|
221
|
+
export * from './TimeTableConfigurationDto';
|
|
222
|
+
export * from './TimeTableConfigurationInput';
|
|
219
223
|
export * from './UkBankAccountDetails';
|
|
220
224
|
export * from './UpdateAccountBillingInformationInput';
|
|
221
225
|
export * from './UpdateBuyerDomainTransferIpsTagInputDto';
|
package/dist/models/index.js
CHANGED
|
@@ -139,6 +139,8 @@ __exportStar(require("./LeadDto"), exports);
|
|
|
139
139
|
__exportStar(require("./LeadLeaseToOwnAndRentConfigurationPresetsDto"), exports);
|
|
140
140
|
__exportStar(require("./LeadMessageData"), exports);
|
|
141
141
|
__exportStar(require("./LeadMessageDto"), exports);
|
|
142
|
+
__exportStar(require("./LeadPriceNegotiatorAiAgentConfigurationDto"), exports);
|
|
143
|
+
__exportStar(require("./LeadPriceNegotiatorAiAgentConfigurationInput"), exports);
|
|
142
144
|
__exportStar(require("./LeadStatusDto"), exports);
|
|
143
145
|
__exportStar(require("./LeaseToOwnConfigurationDto"), exports);
|
|
144
146
|
__exportStar(require("./LeaseToOwnConfigurationInput"), exports);
|
|
@@ -234,6 +236,8 @@ __exportStar(require("./TaskListDomainDto"), exports);
|
|
|
234
236
|
__exportStar(require("./TaskListDomainTransferDto"), exports);
|
|
235
237
|
__exportStar(require("./TaskListLeadDto"), exports);
|
|
236
238
|
__exportStar(require("./ThrottlerException"), exports);
|
|
239
|
+
__exportStar(require("./TimeTableConfigurationDto"), exports);
|
|
240
|
+
__exportStar(require("./TimeTableConfigurationInput"), exports);
|
|
237
241
|
__exportStar(require("./UkBankAccountDetails"), exports);
|
|
238
242
|
__exportStar(require("./UpdateAccountBillingInformationInput"), exports);
|
|
239
243
|
__exportStar(require("./UpdateBuyerDomainTransferIpsTagInputDto"), exports);
|
package/package.json
CHANGED
|
@@ -27,6 +27,20 @@ import {
|
|
|
27
27
|
LandingPageInputToJSON,
|
|
28
28
|
LandingPageInputToJSONTyped,
|
|
29
29
|
} from './LandingPageInput';
|
|
30
|
+
import type { TimeTableConfigurationInput } from './TimeTableConfigurationInput';
|
|
31
|
+
import {
|
|
32
|
+
TimeTableConfigurationInputFromJSON,
|
|
33
|
+
TimeTableConfigurationInputFromJSONTyped,
|
|
34
|
+
TimeTableConfigurationInputToJSON,
|
|
35
|
+
TimeTableConfigurationInputToJSONTyped,
|
|
36
|
+
} from './TimeTableConfigurationInput';
|
|
37
|
+
import type { LeadPriceNegotiatorAiAgentConfigurationInput } from './LeadPriceNegotiatorAiAgentConfigurationInput';
|
|
38
|
+
import {
|
|
39
|
+
LeadPriceNegotiatorAiAgentConfigurationInputFromJSON,
|
|
40
|
+
LeadPriceNegotiatorAiAgentConfigurationInputFromJSONTyped,
|
|
41
|
+
LeadPriceNegotiatorAiAgentConfigurationInputToJSON,
|
|
42
|
+
LeadPriceNegotiatorAiAgentConfigurationInputToJSONTyped,
|
|
43
|
+
} from './LeadPriceNegotiatorAiAgentConfigurationInput';
|
|
30
44
|
import type { LeaseToOwnConfigurationInput } from './LeaseToOwnConfigurationInput';
|
|
31
45
|
import {
|
|
32
46
|
LeaseToOwnConfigurationInputFromJSON,
|
|
@@ -83,6 +97,24 @@ export interface AccountSettingsInput {
|
|
|
83
97
|
* @memberof AccountSettingsInput
|
|
84
98
|
*/
|
|
85
99
|
allowThirdPartySalesDataSharing?: boolean;
|
|
100
|
+
/**
|
|
101
|
+
*
|
|
102
|
+
* @type {TimeTableConfigurationInput}
|
|
103
|
+
* @memberof AccountSettingsInput
|
|
104
|
+
*/
|
|
105
|
+
timeTable?: TimeTableConfigurationInput;
|
|
106
|
+
/**
|
|
107
|
+
*
|
|
108
|
+
* @type {LeadPriceNegotiatorAiAgentConfigurationInput}
|
|
109
|
+
* @memberof AccountSettingsInput
|
|
110
|
+
*/
|
|
111
|
+
leadPriceNegotiatorAiAgent?: LeadPriceNegotiatorAiAgentConfigurationInput;
|
|
112
|
+
/**
|
|
113
|
+
*
|
|
114
|
+
* @type {string}
|
|
115
|
+
* @memberof AccountSettingsInput
|
|
116
|
+
*/
|
|
117
|
+
timezone?: string;
|
|
86
118
|
}
|
|
87
119
|
|
|
88
120
|
/**
|
|
@@ -109,6 +141,9 @@ export function AccountSettingsInputFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
109
141
|
'leaseToOwn': json['leaseToOwn'] == null ? undefined : LeaseToOwnConfigurationInputFromJSON(json['leaseToOwn']),
|
|
110
142
|
'description': json['description'] == null ? undefined : json['description'],
|
|
111
143
|
'allowThirdPartySalesDataSharing': json['allowThirdPartySalesDataSharing'] == null ? undefined : json['allowThirdPartySalesDataSharing'],
|
|
144
|
+
'timeTable': json['timeTable'] == null ? undefined : TimeTableConfigurationInputFromJSON(json['timeTable']),
|
|
145
|
+
'leadPriceNegotiatorAiAgent': json['leadPriceNegotiatorAiAgent'] == null ? undefined : LeadPriceNegotiatorAiAgentConfigurationInputFromJSON(json['leadPriceNegotiatorAiAgent']),
|
|
146
|
+
'timezone': json['timezone'] == null ? undefined : json['timezone'],
|
|
112
147
|
};
|
|
113
148
|
}
|
|
114
149
|
|
|
@@ -130,6 +165,9 @@ export function AccountSettingsInputToJSONTyped(value?: AccountSettingsInput | n
|
|
|
130
165
|
'leaseToOwn': LeaseToOwnConfigurationInputToJSON(value['leaseToOwn']),
|
|
131
166
|
'description': value['description'],
|
|
132
167
|
'allowThirdPartySalesDataSharing': value['allowThirdPartySalesDataSharing'],
|
|
168
|
+
'timeTable': TimeTableConfigurationInputToJSON(value['timeTable']),
|
|
169
|
+
'leadPriceNegotiatorAiAgent': LeadPriceNegotiatorAiAgentConfigurationInputToJSON(value['leadPriceNegotiatorAiAgent']),
|
|
170
|
+
'timezone': value['timezone'],
|
|
133
171
|
};
|
|
134
172
|
}
|
|
135
173
|
|
|
@@ -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 LeadPriceNegotiatorAiAgentConfigurationDto
|
|
20
|
+
*/
|
|
21
|
+
export interface LeadPriceNegotiatorAiAgentConfigurationDto {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {boolean}
|
|
25
|
+
* @memberof LeadPriceNegotiatorAiAgentConfigurationDto
|
|
26
|
+
*/
|
|
27
|
+
enabled: boolean;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Check if a given object implements the LeadPriceNegotiatorAiAgentConfigurationDto interface.
|
|
32
|
+
*/
|
|
33
|
+
export function instanceOfLeadPriceNegotiatorAiAgentConfigurationDto(value: object): value is LeadPriceNegotiatorAiAgentConfigurationDto {
|
|
34
|
+
if (!('enabled' in value) || value['enabled'] === undefined) return false;
|
|
35
|
+
return true;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export function LeadPriceNegotiatorAiAgentConfigurationDtoFromJSON(json: any): LeadPriceNegotiatorAiAgentConfigurationDto {
|
|
39
|
+
return LeadPriceNegotiatorAiAgentConfigurationDtoFromJSONTyped(json, false);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export function LeadPriceNegotiatorAiAgentConfigurationDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): LeadPriceNegotiatorAiAgentConfigurationDto {
|
|
43
|
+
if (json == null) {
|
|
44
|
+
return json;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
|
|
48
|
+
'enabled': json['enabled'],
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export function LeadPriceNegotiatorAiAgentConfigurationDtoToJSON(json: any): LeadPriceNegotiatorAiAgentConfigurationDto {
|
|
53
|
+
return LeadPriceNegotiatorAiAgentConfigurationDtoToJSONTyped(json, false);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export function LeadPriceNegotiatorAiAgentConfigurationDtoToJSONTyped(value?: LeadPriceNegotiatorAiAgentConfigurationDto | null, ignoreDiscriminator: boolean = false): any {
|
|
57
|
+
if (value == null) {
|
|
58
|
+
return value;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
return {
|
|
62
|
+
|
|
63
|
+
'enabled': value['enabled'],
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -0,0 +1,65 @@
|
|
|
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 LeadPriceNegotiatorAiAgentConfigurationInput
|
|
20
|
+
*/
|
|
21
|
+
export interface LeadPriceNegotiatorAiAgentConfigurationInput {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {boolean}
|
|
25
|
+
* @memberof LeadPriceNegotiatorAiAgentConfigurationInput
|
|
26
|
+
*/
|
|
27
|
+
enabled?: boolean;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Check if a given object implements the LeadPriceNegotiatorAiAgentConfigurationInput interface.
|
|
32
|
+
*/
|
|
33
|
+
export function instanceOfLeadPriceNegotiatorAiAgentConfigurationInput(value: object): value is LeadPriceNegotiatorAiAgentConfigurationInput {
|
|
34
|
+
return true;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export function LeadPriceNegotiatorAiAgentConfigurationInputFromJSON(json: any): LeadPriceNegotiatorAiAgentConfigurationInput {
|
|
38
|
+
return LeadPriceNegotiatorAiAgentConfigurationInputFromJSONTyped(json, false);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export function LeadPriceNegotiatorAiAgentConfigurationInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): LeadPriceNegotiatorAiAgentConfigurationInput {
|
|
42
|
+
if (json == null) {
|
|
43
|
+
return json;
|
|
44
|
+
}
|
|
45
|
+
return {
|
|
46
|
+
|
|
47
|
+
'enabled': json['enabled'] == null ? undefined : json['enabled'],
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export function LeadPriceNegotiatorAiAgentConfigurationInputToJSON(json: any): LeadPriceNegotiatorAiAgentConfigurationInput {
|
|
52
|
+
return LeadPriceNegotiatorAiAgentConfigurationInputToJSONTyped(json, false);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export function LeadPriceNegotiatorAiAgentConfigurationInputToJSONTyped(value?: LeadPriceNegotiatorAiAgentConfigurationInput | null, ignoreDiscriminator: boolean = false): any {
|
|
56
|
+
if (value == null) {
|
|
57
|
+
return value;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
return {
|
|
61
|
+
|
|
62
|
+
'enabled': value['enabled'],
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
|
|
@@ -67,6 +67,12 @@ export interface RegisterAccountInput {
|
|
|
67
67
|
* @memberof RegisterAccountInput
|
|
68
68
|
*/
|
|
69
69
|
adId?: string | null;
|
|
70
|
+
/**
|
|
71
|
+
*
|
|
72
|
+
* @type {string}
|
|
73
|
+
* @memberof RegisterAccountInput
|
|
74
|
+
*/
|
|
75
|
+
timezone?: string;
|
|
70
76
|
}
|
|
71
77
|
|
|
72
78
|
|
|
@@ -111,6 +117,7 @@ export function RegisterAccountInputFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
111
117
|
'phoneNumber': json['phoneNumber'] == null ? undefined : json['phoneNumber'],
|
|
112
118
|
'adProgram': json['adProgram'] == null ? undefined : json['adProgram'],
|
|
113
119
|
'adId': json['adId'] == null ? undefined : json['adId'],
|
|
120
|
+
'timezone': json['timezone'] == null ? undefined : json['timezone'],
|
|
114
121
|
};
|
|
115
122
|
}
|
|
116
123
|
|
|
@@ -133,6 +140,7 @@ export function RegisterAccountInputToJSONTyped(value?: RegisterAccountInput | n
|
|
|
133
140
|
'phoneNumber': value['phoneNumber'],
|
|
134
141
|
'adProgram': value['adProgram'],
|
|
135
142
|
'adId': value['adId'],
|
|
143
|
+
'timezone': value['timezone'],
|
|
136
144
|
};
|
|
137
145
|
}
|
|
138
146
|
|
|
@@ -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 TimeTableConfigurationDto
|
|
20
|
+
*/
|
|
21
|
+
export interface TimeTableConfigurationDto {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof TimeTableConfigurationDto
|
|
26
|
+
*/
|
|
27
|
+
startHour: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof TimeTableConfigurationDto
|
|
32
|
+
*/
|
|
33
|
+
endHour: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Check if a given object implements the TimeTableConfigurationDto interface.
|
|
38
|
+
*/
|
|
39
|
+
export function instanceOfTimeTableConfigurationDto(value: object): value is TimeTableConfigurationDto {
|
|
40
|
+
if (!('startHour' in value) || value['startHour'] === undefined) return false;
|
|
41
|
+
if (!('endHour' in value) || value['endHour'] === undefined) return false;
|
|
42
|
+
return true;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export function TimeTableConfigurationDtoFromJSON(json: any): TimeTableConfigurationDto {
|
|
46
|
+
return TimeTableConfigurationDtoFromJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function TimeTableConfigurationDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeTableConfigurationDto {
|
|
50
|
+
if (json == null) {
|
|
51
|
+
return json;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
|
|
55
|
+
'startHour': json['startHour'],
|
|
56
|
+
'endHour': json['endHour'],
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function TimeTableConfigurationDtoToJSON(json: any): TimeTableConfigurationDto {
|
|
61
|
+
return TimeTableConfigurationDtoToJSONTyped(json, false);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export function TimeTableConfigurationDtoToJSONTyped(value?: TimeTableConfigurationDto | null, ignoreDiscriminator: boolean = false): any {
|
|
65
|
+
if (value == null) {
|
|
66
|
+
return value;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
return {
|
|
70
|
+
|
|
71
|
+
'startHour': value['startHour'],
|
|
72
|
+
'endHour': value['endHour'],
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
|
|
@@ -0,0 +1,73 @@
|
|
|
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 TimeTableConfigurationInput
|
|
20
|
+
*/
|
|
21
|
+
export interface TimeTableConfigurationInput {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof TimeTableConfigurationInput
|
|
26
|
+
*/
|
|
27
|
+
startHour?: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof TimeTableConfigurationInput
|
|
32
|
+
*/
|
|
33
|
+
endHour?: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Check if a given object implements the TimeTableConfigurationInput interface.
|
|
38
|
+
*/
|
|
39
|
+
export function instanceOfTimeTableConfigurationInput(value: object): value is TimeTableConfigurationInput {
|
|
40
|
+
return true;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export function TimeTableConfigurationInputFromJSON(json: any): TimeTableConfigurationInput {
|
|
44
|
+
return TimeTableConfigurationInputFromJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export function TimeTableConfigurationInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeTableConfigurationInput {
|
|
48
|
+
if (json == null) {
|
|
49
|
+
return json;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
|
|
53
|
+
'startHour': json['startHour'] == null ? undefined : json['startHour'],
|
|
54
|
+
'endHour': json['endHour'] == null ? undefined : json['endHour'],
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export function TimeTableConfigurationInputToJSON(json: any): TimeTableConfigurationInput {
|
|
59
|
+
return TimeTableConfigurationInputToJSONTyped(json, false);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export function TimeTableConfigurationInputToJSONTyped(value?: TimeTableConfigurationInput | null, ignoreDiscriminator: boolean = false): any {
|
|
63
|
+
if (value == null) {
|
|
64
|
+
return value;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
return {
|
|
68
|
+
|
|
69
|
+
'startHour': value['startHour'],
|
|
70
|
+
'endHour': value['endHour'],
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
|
|
@@ -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';
|