@randock/nameshift-api-client 0.0.365 → 0.0.367
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/AdminApi.d.ts +11 -0
- package/dist/apis/AdminApi.js +51 -0
- 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/LedgerMutationAttachmentDto.d.ts +38 -0
- package/dist/models/LedgerMutationAttachmentDto.js +55 -0
- package/dist/models/LedgerMutationDto.d.ts +7 -0
- package/dist/models/LedgerMutationDto.js +5 -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 +4 -0
- package/dist/models/index.js +4 -0
- package/package.json +1 -1
- package/src/apis/AdminApi.ts +44 -0
- 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/LedgerMutationAttachmentDto.ts +75 -0
- package/src/models/LedgerMutationDto.ts +17 -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 +4 -0
|
@@ -23,6 +23,7 @@ var AccountSettingsAffiliateDto_1 = require("./AccountSettingsAffiliateDto");
|
|
|
23
23
|
var MoneyDto_1 = require("./MoneyDto");
|
|
24
24
|
var AccountAliasDto_1 = require("./AccountAliasDto");
|
|
25
25
|
var AccountSettingsLeaseToOwnConfigurationDto_1 = require("./AccountSettingsLeaseToOwnConfigurationDto");
|
|
26
|
+
var LeadOfferExpirationConfigurationDto_1 = require("./LeadOfferExpirationConfigurationDto");
|
|
26
27
|
var AuctionConfigurationDto_1 = require("./AuctionConfigurationDto");
|
|
27
28
|
var AccountCommissionByDateRangeDto_1 = require("./AccountCommissionByDateRangeDto");
|
|
28
29
|
var TimeTableConfigurationDto_1 = require("./TimeTableConfigurationDto");
|
|
@@ -78,6 +79,8 @@ function instanceOfWithSettingsInner(value) {
|
|
|
78
79
|
return false;
|
|
79
80
|
if (!('domainLockConfiguration' in value) || value['domainLockConfiguration'] === undefined)
|
|
80
81
|
return false;
|
|
82
|
+
if (!('leadOfferExpirationConfiguration' in value) || value['leadOfferExpirationConfiguration'] === undefined)
|
|
83
|
+
return false;
|
|
81
84
|
return true;
|
|
82
85
|
}
|
|
83
86
|
function WithSettingsInnerFromJSON(json) {
|
|
@@ -111,6 +114,7 @@ function WithSettingsInnerFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
111
114
|
'commissionsByDateRange': (json['commissionsByDateRange'].map(AccountCommissionByDateRangeDto_1.AccountCommissionByDateRangeDtoFromJSON)),
|
|
112
115
|
'auctionConfiguration': (0, AuctionConfigurationDto_1.AuctionConfigurationDtoFromJSON)(json['auctionConfiguration']),
|
|
113
116
|
'domainLockConfiguration': (0, DomainLockConfigurationDto_1.DomainLockConfigurationDtoFromJSON)(json['domainLockConfiguration']),
|
|
117
|
+
'leadOfferExpirationConfiguration': (0, LeadOfferExpirationConfigurationDto_1.LeadOfferExpirationConfigurationDtoFromJSON)(json['leadOfferExpirationConfiguration']),
|
|
114
118
|
};
|
|
115
119
|
}
|
|
116
120
|
function WithSettingsInnerToJSON(json) {
|
|
@@ -145,5 +149,6 @@ function WithSettingsInnerToJSONTyped(value, ignoreDiscriminator) {
|
|
|
145
149
|
'commissionsByDateRange': (value['commissionsByDateRange'].map(AccountCommissionByDateRangeDto_1.AccountCommissionByDateRangeDtoToJSON)),
|
|
146
150
|
'auctionConfiguration': (0, AuctionConfigurationDto_1.AuctionConfigurationDtoToJSON)(value['auctionConfiguration']),
|
|
147
151
|
'domainLockConfiguration': (0, DomainLockConfigurationDto_1.DomainLockConfigurationDtoToJSON)(value['domainLockConfiguration']),
|
|
152
|
+
'leadOfferExpirationConfiguration': (0, LeadOfferExpirationConfigurationDto_1.LeadOfferExpirationConfigurationDtoToJSON)(value['leadOfferExpirationConfiguration']),
|
|
148
153
|
};
|
|
149
154
|
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -197,6 +197,9 @@ export * from './LeadMessageData';
|
|
|
197
197
|
export * from './LeadMessageDataLeaseToOwn';
|
|
198
198
|
export * from './LeadMessageDto';
|
|
199
199
|
export * from './LeadOfferDto';
|
|
200
|
+
export * from './LeadOfferExpirationConfigurationDto';
|
|
201
|
+
export * from './LeadOfferExpirationConfigurationInput';
|
|
202
|
+
export * from './LeadOfferExpirationDurationInput';
|
|
200
203
|
export * from './LeadPriceNegotiatorAiAgentConfigurationDto';
|
|
201
204
|
export * from './LeadPriceNegotiatorAiAgentConfigurationInput';
|
|
202
205
|
export * from './LeadRentConfigurationDto';
|
|
@@ -205,6 +208,7 @@ export * from './LeaseToOwnConfigurationDto';
|
|
|
205
208
|
export * from './LeaseToOwnConfigurationInput';
|
|
206
209
|
export * from './LeaseToOwnConfigurationPresetsDto';
|
|
207
210
|
export * from './LeaseToOwnDto';
|
|
211
|
+
export * from './LedgerMutationAttachmentDto';
|
|
208
212
|
export * from './LedgerMutationDto';
|
|
209
213
|
export * from './LedgerMutationsDto';
|
|
210
214
|
export * from './List200Response';
|
package/dist/models/index.js
CHANGED
|
@@ -215,6 +215,9 @@ __exportStar(require("./LeadMessageData"), exports);
|
|
|
215
215
|
__exportStar(require("./LeadMessageDataLeaseToOwn"), exports);
|
|
216
216
|
__exportStar(require("./LeadMessageDto"), exports);
|
|
217
217
|
__exportStar(require("./LeadOfferDto"), exports);
|
|
218
|
+
__exportStar(require("./LeadOfferExpirationConfigurationDto"), exports);
|
|
219
|
+
__exportStar(require("./LeadOfferExpirationConfigurationInput"), exports);
|
|
220
|
+
__exportStar(require("./LeadOfferExpirationDurationInput"), exports);
|
|
218
221
|
__exportStar(require("./LeadPriceNegotiatorAiAgentConfigurationDto"), exports);
|
|
219
222
|
__exportStar(require("./LeadPriceNegotiatorAiAgentConfigurationInput"), exports);
|
|
220
223
|
__exportStar(require("./LeadRentConfigurationDto"), exports);
|
|
@@ -223,6 +226,7 @@ __exportStar(require("./LeaseToOwnConfigurationDto"), exports);
|
|
|
223
226
|
__exportStar(require("./LeaseToOwnConfigurationInput"), exports);
|
|
224
227
|
__exportStar(require("./LeaseToOwnConfigurationPresetsDto"), exports);
|
|
225
228
|
__exportStar(require("./LeaseToOwnDto"), exports);
|
|
229
|
+
__exportStar(require("./LedgerMutationAttachmentDto"), exports);
|
|
226
230
|
__exportStar(require("./LedgerMutationDto"), exports);
|
|
227
231
|
__exportStar(require("./LedgerMutationsDto"), exports);
|
|
228
232
|
__exportStar(require("./List200Response"), exports);
|
package/package.json
CHANGED
package/src/apis/AdminApi.ts
CHANGED
|
@@ -187,6 +187,10 @@ export interface AdminApiGetCompanyStatsRequest {
|
|
|
187
187
|
dateRange?: any | null;
|
|
188
188
|
}
|
|
189
189
|
|
|
190
|
+
export interface AdminApiGetLedgerMutationAttachmentRequest {
|
|
191
|
+
attachmentId: string;
|
|
192
|
+
}
|
|
193
|
+
|
|
190
194
|
export interface AdminApiGetSubscriptionDetailsRequest {
|
|
191
195
|
subscriptionId: string;
|
|
192
196
|
}
|
|
@@ -999,6 +1003,46 @@ export class AdminApi extends runtime.BaseAPI {
|
|
|
999
1003
|
return await response.value();
|
|
1000
1004
|
}
|
|
1001
1005
|
|
|
1006
|
+
/**
|
|
1007
|
+
*
|
|
1008
|
+
*/
|
|
1009
|
+
async getLedgerMutationAttachmentRaw(requestParameters: AdminApiGetLedgerMutationAttachmentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>> {
|
|
1010
|
+
if (requestParameters['attachmentId'] == null) {
|
|
1011
|
+
throw new runtime.RequiredError(
|
|
1012
|
+
'attachmentId',
|
|
1013
|
+
'Required parameter "attachmentId" was null or undefined when calling getLedgerMutationAttachment().'
|
|
1014
|
+
);
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
const queryParameters: any = {};
|
|
1018
|
+
|
|
1019
|
+
const headerParameters: runtime.HTTPHeaders = {};
|
|
1020
|
+
|
|
1021
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
1022
|
+
const token = this.configuration.accessToken;
|
|
1023
|
+
const tokenString = await token("bearer", []);
|
|
1024
|
+
|
|
1025
|
+
if (tokenString) {
|
|
1026
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
1027
|
+
}
|
|
1028
|
+
}
|
|
1029
|
+
const response = await this.request({
|
|
1030
|
+
path: `/admin/stats/attachments/{attachmentId}`.replace(`{${"attachmentId"}}`, encodeURIComponent(String(requestParameters['attachmentId']))),
|
|
1031
|
+
method: 'GET',
|
|
1032
|
+
headers: headerParameters,
|
|
1033
|
+
query: queryParameters,
|
|
1034
|
+
}, initOverrides);
|
|
1035
|
+
|
|
1036
|
+
return new runtime.VoidApiResponse(response);
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
/**
|
|
1040
|
+
*
|
|
1041
|
+
*/
|
|
1042
|
+
async getLedgerMutationAttachment(requestParameters: AdminApiGetLedgerMutationAttachmentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void> {
|
|
1043
|
+
await this.getLedgerMutationAttachmentRaw(requestParameters, initOverrides);
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1002
1046
|
/**
|
|
1003
1047
|
*
|
|
1004
1048
|
*/
|
package/src/apis/LeadsApi.ts
CHANGED
|
@@ -21,6 +21,7 @@ import type {
|
|
|
21
21
|
CreateManualLeadInput,
|
|
22
22
|
IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto,
|
|
23
23
|
LeadLeaseToOwnAndRentConfigurationPresetsDto,
|
|
24
|
+
LeadOfferExpirationConfigurationInput,
|
|
24
25
|
List200Response,
|
|
25
26
|
ListLeadMessagesDto,
|
|
26
27
|
LockConfigurationInput,
|
|
@@ -43,6 +44,8 @@ import {
|
|
|
43
44
|
IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDtoToJSON,
|
|
44
45
|
LeadLeaseToOwnAndRentConfigurationPresetsDtoFromJSON,
|
|
45
46
|
LeadLeaseToOwnAndRentConfigurationPresetsDtoToJSON,
|
|
47
|
+
LeadOfferExpirationConfigurationInputFromJSON,
|
|
48
|
+
LeadOfferExpirationConfigurationInputToJSON,
|
|
46
49
|
List200ResponseFromJSON,
|
|
47
50
|
List200ResponseToJSON,
|
|
48
51
|
ListLeadMessagesDtoFromJSON,
|
|
@@ -129,6 +132,11 @@ export interface LeadsApiUpdateLeadMuteStatusRequest {
|
|
|
129
132
|
updateLeadMuteStatusInput: UpdateLeadMuteStatusInput;
|
|
130
133
|
}
|
|
131
134
|
|
|
135
|
+
export interface LeadsApiUpdateLeadOfferExpirationConfigurationRequest {
|
|
136
|
+
leadId: string;
|
|
137
|
+
leadOfferExpirationConfigurationInput: LeadOfferExpirationConfigurationInput;
|
|
138
|
+
}
|
|
139
|
+
|
|
132
140
|
/**
|
|
133
141
|
*
|
|
134
142
|
*/
|
|
@@ -835,4 +843,54 @@ export class LeadsApi extends runtime.BaseAPI {
|
|
|
835
843
|
await this.updateLeadMuteStatusRaw(requestParameters, initOverrides);
|
|
836
844
|
}
|
|
837
845
|
|
|
846
|
+
/**
|
|
847
|
+
*
|
|
848
|
+
*/
|
|
849
|
+
async updateLeadOfferExpirationConfigurationRaw(requestParameters: LeadsApiUpdateLeadOfferExpirationConfigurationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>> {
|
|
850
|
+
if (requestParameters['leadId'] == null) {
|
|
851
|
+
throw new runtime.RequiredError(
|
|
852
|
+
'leadId',
|
|
853
|
+
'Required parameter "leadId" was null or undefined when calling updateLeadOfferExpirationConfiguration().'
|
|
854
|
+
);
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
if (requestParameters['leadOfferExpirationConfigurationInput'] == null) {
|
|
858
|
+
throw new runtime.RequiredError(
|
|
859
|
+
'leadOfferExpirationConfigurationInput',
|
|
860
|
+
'Required parameter "leadOfferExpirationConfigurationInput" was null or undefined when calling updateLeadOfferExpirationConfiguration().'
|
|
861
|
+
);
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
const queryParameters: any = {};
|
|
865
|
+
|
|
866
|
+
const headerParameters: runtime.HTTPHeaders = {};
|
|
867
|
+
|
|
868
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
869
|
+
|
|
870
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
871
|
+
const token = this.configuration.accessToken;
|
|
872
|
+
const tokenString = await token("bearer", []);
|
|
873
|
+
|
|
874
|
+
if (tokenString) {
|
|
875
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
876
|
+
}
|
|
877
|
+
}
|
|
878
|
+
const response = await this.request({
|
|
879
|
+
path: `/private/leads/{leadId}/offer-expiration-configuration`.replace(`{${"leadId"}}`, encodeURIComponent(String(requestParameters['leadId']))),
|
|
880
|
+
method: 'PUT',
|
|
881
|
+
headers: headerParameters,
|
|
882
|
+
query: queryParameters,
|
|
883
|
+
body: LeadOfferExpirationConfigurationInputToJSON(requestParameters['leadOfferExpirationConfigurationInput']),
|
|
884
|
+
}, initOverrides);
|
|
885
|
+
|
|
886
|
+
return new runtime.VoidApiResponse(response);
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
/**
|
|
890
|
+
*
|
|
891
|
+
*/
|
|
892
|
+
async updateLeadOfferExpirationConfiguration(requestParameters: LeadsApiUpdateLeadOfferExpirationConfigurationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void> {
|
|
893
|
+
await this.updateLeadOfferExpirationConfigurationRaw(requestParameters, initOverrides);
|
|
894
|
+
}
|
|
895
|
+
|
|
838
896
|
}
|
|
@@ -41,6 +41,13 @@ import {
|
|
|
41
41
|
AccountSettingsLeaseToOwnConfigurationDtoToJSON,
|
|
42
42
|
AccountSettingsLeaseToOwnConfigurationDtoToJSONTyped,
|
|
43
43
|
} from './AccountSettingsLeaseToOwnConfigurationDto';
|
|
44
|
+
import type { LeadOfferExpirationConfigurationDto } from './LeadOfferExpirationConfigurationDto';
|
|
45
|
+
import {
|
|
46
|
+
LeadOfferExpirationConfigurationDtoFromJSON,
|
|
47
|
+
LeadOfferExpirationConfigurationDtoFromJSONTyped,
|
|
48
|
+
LeadOfferExpirationConfigurationDtoToJSON,
|
|
49
|
+
LeadOfferExpirationConfigurationDtoToJSONTyped,
|
|
50
|
+
} from './LeadOfferExpirationConfigurationDto';
|
|
44
51
|
import type { LandingPageSettingsDto } from './LandingPageSettingsDto';
|
|
45
52
|
import {
|
|
46
53
|
LandingPageSettingsDtoFromJSON,
|
|
@@ -141,6 +148,12 @@ export interface AccountSettingsDto {
|
|
|
141
148
|
* @memberof AccountSettingsDto
|
|
142
149
|
*/
|
|
143
150
|
domainLockConfiguration: DomainLockConfigurationDto;
|
|
151
|
+
/**
|
|
152
|
+
*
|
|
153
|
+
* @type {LeadOfferExpirationConfigurationDto}
|
|
154
|
+
* @memberof AccountSettingsDto
|
|
155
|
+
*/
|
|
156
|
+
leadOfferExpirationConfiguration: LeadOfferExpirationConfigurationDto;
|
|
144
157
|
}
|
|
145
158
|
|
|
146
159
|
/**
|
|
@@ -159,6 +172,7 @@ export function instanceOfAccountSettingsDto(value: object): value is AccountSet
|
|
|
159
172
|
if (!('alias' in value) || value['alias'] === undefined) return false;
|
|
160
173
|
if (!('transferCostPaymentMaxPercentage' in value) || value['transferCostPaymentMaxPercentage'] === undefined) return false;
|
|
161
174
|
if (!('domainLockConfiguration' in value) || value['domainLockConfiguration'] === undefined) return false;
|
|
175
|
+
if (!('leadOfferExpirationConfiguration' in value) || value['leadOfferExpirationConfiguration'] === undefined) return false;
|
|
162
176
|
return true;
|
|
163
177
|
}
|
|
164
178
|
|
|
@@ -184,6 +198,7 @@ export function AccountSettingsDtoFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
184
198
|
'alias': AccountSettingsAliasDtoFromJSON(json['alias']),
|
|
185
199
|
'transferCostPaymentMaxPercentage': json['transferCostPaymentMaxPercentage'],
|
|
186
200
|
'domainLockConfiguration': DomainLockConfigurationDtoFromJSON(json['domainLockConfiguration']),
|
|
201
|
+
'leadOfferExpirationConfiguration': LeadOfferExpirationConfigurationDtoFromJSON(json['leadOfferExpirationConfiguration']),
|
|
187
202
|
};
|
|
188
203
|
}
|
|
189
204
|
|
|
@@ -210,6 +225,7 @@ export function AccountSettingsDtoToJSONTyped(value?: AccountSettingsDto | null,
|
|
|
210
225
|
'alias': AccountSettingsAliasDtoToJSON(value['alias']),
|
|
211
226
|
'transferCostPaymentMaxPercentage': value['transferCostPaymentMaxPercentage'],
|
|
212
227
|
'domainLockConfiguration': DomainLockConfigurationDtoToJSON(value['domainLockConfiguration']),
|
|
228
|
+
'leadOfferExpirationConfiguration': LeadOfferExpirationConfigurationDtoToJSON(value['leadOfferExpirationConfiguration']),
|
|
213
229
|
};
|
|
214
230
|
}
|
|
215
231
|
|
|
@@ -147,6 +147,12 @@ export interface AccountSettingsInput {
|
|
|
147
147
|
* @memberof AccountSettingsInput
|
|
148
148
|
*/
|
|
149
149
|
domainLockConfiguration?: LockConfigurationInput;
|
|
150
|
+
/**
|
|
151
|
+
*
|
|
152
|
+
* @type {LockConfigurationInput}
|
|
153
|
+
* @memberof AccountSettingsInput
|
|
154
|
+
*/
|
|
155
|
+
leadOfferExpirationConfiguration?: LockConfigurationInput;
|
|
150
156
|
}
|
|
151
157
|
|
|
152
158
|
/**
|
|
@@ -179,6 +185,7 @@ export function AccountSettingsInputFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
179
185
|
'alias': json['alias'] == null ? undefined : AccountAliasInputFromJSON(json['alias']),
|
|
180
186
|
'transferCostPaymentMaxPercentage': json['transferCostPaymentMaxPercentage'] == null ? undefined : json['transferCostPaymentMaxPercentage'],
|
|
181
187
|
'domainLockConfiguration': json['domainLockConfiguration'] == null ? undefined : LockConfigurationInputFromJSON(json['domainLockConfiguration']),
|
|
188
|
+
'leadOfferExpirationConfiguration': json['leadOfferExpirationConfiguration'] == null ? undefined : LockConfigurationInputFromJSON(json['leadOfferExpirationConfiguration']),
|
|
182
189
|
};
|
|
183
190
|
}
|
|
184
191
|
|
|
@@ -206,6 +213,7 @@ export function AccountSettingsInputToJSONTyped(value?: AccountSettingsInput | n
|
|
|
206
213
|
'alias': AccountAliasInputToJSON(value['alias']),
|
|
207
214
|
'transferCostPaymentMaxPercentage': value['transferCostPaymentMaxPercentage'],
|
|
208
215
|
'domainLockConfiguration': LockConfigurationInputToJSON(value['domainLockConfiguration']),
|
|
216
|
+
'leadOfferExpirationConfiguration': LockConfigurationInputToJSON(value['leadOfferExpirationConfiguration']),
|
|
209
217
|
};
|
|
210
218
|
}
|
|
211
219
|
|
|
@@ -96,6 +96,12 @@ export interface AdminAccountSettingsInput {
|
|
|
96
96
|
* @memberof AdminAccountSettingsInput
|
|
97
97
|
*/
|
|
98
98
|
domainLockConfiguration?: LockConfigurationInput;
|
|
99
|
+
/**
|
|
100
|
+
*
|
|
101
|
+
* @type {LockConfigurationInput}
|
|
102
|
+
* @memberof AdminAccountSettingsInput
|
|
103
|
+
*/
|
|
104
|
+
leadOfferExpirationConfiguration?: LockConfigurationInput;
|
|
99
105
|
}
|
|
100
106
|
|
|
101
107
|
/**
|
|
@@ -123,6 +129,7 @@ export function AdminAccountSettingsInputFromJSONTyped(json: any, ignoreDiscrimi
|
|
|
123
129
|
'domainAffiliate': json['domainAffiliate'] == null ? undefined : AdminAccountSettingsAffiliateInputFromJSON(json['domainAffiliate']),
|
|
124
130
|
'auctionConfiguration': json['auctionConfiguration'] == null ? undefined : AdminAuctionConfigurationInputFromJSON(json['auctionConfiguration']),
|
|
125
131
|
'domainLockConfiguration': json['domainLockConfiguration'] == null ? undefined : LockConfigurationInputFromJSON(json['domainLockConfiguration']),
|
|
132
|
+
'leadOfferExpirationConfiguration': json['leadOfferExpirationConfiguration'] == null ? undefined : LockConfigurationInputFromJSON(json['leadOfferExpirationConfiguration']),
|
|
126
133
|
};
|
|
127
134
|
}
|
|
128
135
|
|
|
@@ -145,6 +152,7 @@ export function AdminAccountSettingsInputToJSONTyped(value?: AdminAccountSetting
|
|
|
145
152
|
'domainAffiliate': AdminAccountSettingsAffiliateInputToJSON(value['domainAffiliate']),
|
|
146
153
|
'auctionConfiguration': AdminAuctionConfigurationInputToJSON(value['auctionConfiguration']),
|
|
147
154
|
'domainLockConfiguration': LockConfigurationInputToJSON(value['domainLockConfiguration']),
|
|
155
|
+
'leadOfferExpirationConfiguration': LockConfigurationInputToJSON(value['leadOfferExpirationConfiguration']),
|
|
148
156
|
};
|
|
149
157
|
}
|
|
150
158
|
|
|
@@ -75,6 +75,12 @@ export interface BuyerDomainTransferListItemDto {
|
|
|
75
75
|
* @memberof BuyerDomainTransferListItemDto
|
|
76
76
|
*/
|
|
77
77
|
ipsTag: string | null;
|
|
78
|
+
/**
|
|
79
|
+
* The buyer domain transfer is expired
|
|
80
|
+
* @type {boolean}
|
|
81
|
+
* @memberof BuyerDomainTransferListItemDto
|
|
82
|
+
*/
|
|
83
|
+
isOfferExpired: boolean;
|
|
78
84
|
}
|
|
79
85
|
|
|
80
86
|
|
|
@@ -114,6 +120,7 @@ export function instanceOfBuyerDomainTransferListItemDto(value: object): value i
|
|
|
114
120
|
if (!('domain' in value) || value['domain'] === undefined) return false;
|
|
115
121
|
if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
|
|
116
122
|
if (!('ipsTag' in value) || value['ipsTag'] === undefined) return false;
|
|
123
|
+
if (!('isOfferExpired' in value) || value['isOfferExpired'] === undefined) return false;
|
|
117
124
|
return true;
|
|
118
125
|
}
|
|
119
126
|
|
|
@@ -135,6 +142,7 @@ export function BuyerDomainTransferListItemDtoFromJSONTyped(json: any, ignoreDis
|
|
|
135
142
|
'domain': BuyerDomainTransferListItemDomainDtoFromJSON(json['domain']),
|
|
136
143
|
'createdAt': (new Date(json['createdAt'])),
|
|
137
144
|
'ipsTag': json['ipsTag'],
|
|
145
|
+
'isOfferExpired': json['isOfferExpired'],
|
|
138
146
|
};
|
|
139
147
|
}
|
|
140
148
|
|
|
@@ -157,6 +165,7 @@ export function BuyerDomainTransferListItemDtoToJSONTyped(value?: BuyerDomainTra
|
|
|
157
165
|
'domain': BuyerDomainTransferListItemDomainDtoToJSON(value['domain']),
|
|
158
166
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
159
167
|
'ipsTag': value['ipsTag'],
|
|
168
|
+
'isOfferExpired': value['isOfferExpired'],
|
|
160
169
|
};
|
|
161
170
|
}
|
|
162
171
|
|
|
@@ -107,6 +107,12 @@ export interface BuyerLeadListItemDto {
|
|
|
107
107
|
* @memberof BuyerLeadListItemDto
|
|
108
108
|
*/
|
|
109
109
|
isMuted: boolean;
|
|
110
|
+
/**
|
|
111
|
+
* The lead is offer expired
|
|
112
|
+
* @type {boolean}
|
|
113
|
+
* @memberof BuyerLeadListItemDto
|
|
114
|
+
*/
|
|
115
|
+
isOfferExpired: boolean;
|
|
110
116
|
}
|
|
111
117
|
|
|
112
118
|
|
|
@@ -160,6 +166,7 @@ export function instanceOfBuyerLeadListItemDto(value: object): value is BuyerLea
|
|
|
160
166
|
if (!('unreadMessages' in value) || value['unreadMessages'] === undefined) return false;
|
|
161
167
|
if (!('orderPaymentUrl' in value) || value['orderPaymentUrl'] === undefined) return false;
|
|
162
168
|
if (!('isMuted' in value) || value['isMuted'] === undefined) return false;
|
|
169
|
+
if (!('isOfferExpired' in value) || value['isOfferExpired'] === undefined) return false;
|
|
163
170
|
return true;
|
|
164
171
|
}
|
|
165
172
|
|
|
@@ -184,6 +191,7 @@ export function BuyerLeadListItemDtoFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
184
191
|
'unreadMessages': json['unreadMessages'],
|
|
185
192
|
'orderPaymentUrl': json['orderPaymentUrl'],
|
|
186
193
|
'isMuted': json['isMuted'],
|
|
194
|
+
'isOfferExpired': json['isOfferExpired'],
|
|
187
195
|
};
|
|
188
196
|
}
|
|
189
197
|
|
|
@@ -209,6 +217,7 @@ export function BuyerLeadListItemDtoToJSONTyped(value?: BuyerLeadListItemDto | n
|
|
|
209
217
|
'unreadMessages': value['unreadMessages'],
|
|
210
218
|
'orderPaymentUrl': value['orderPaymentUrl'],
|
|
211
219
|
'isMuted': value['isMuted'],
|
|
220
|
+
'isOfferExpired': value['isOfferExpired'],
|
|
212
221
|
};
|
|
213
222
|
}
|
|
214
223
|
|
|
@@ -13,6 +13,20 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
import { mapValues } from '../runtime';
|
|
16
|
+
import type { LockConfigurationInput } from './LockConfigurationInput';
|
|
17
|
+
import {
|
|
18
|
+
LockConfigurationInputFromJSON,
|
|
19
|
+
LockConfigurationInputFromJSONTyped,
|
|
20
|
+
LockConfigurationInputToJSON,
|
|
21
|
+
LockConfigurationInputToJSONTyped,
|
|
22
|
+
} from './LockConfigurationInput';
|
|
23
|
+
import type { LeadOfferExpirationConfigurationInput } from './LeadOfferExpirationConfigurationInput';
|
|
24
|
+
import {
|
|
25
|
+
LeadOfferExpirationConfigurationInputFromJSON,
|
|
26
|
+
LeadOfferExpirationConfigurationInputFromJSONTyped,
|
|
27
|
+
LeadOfferExpirationConfigurationInputToJSON,
|
|
28
|
+
LeadOfferExpirationConfigurationInputToJSONTyped,
|
|
29
|
+
} from './LeadOfferExpirationConfigurationInput';
|
|
16
30
|
import type { MoneyInput } from './MoneyInput';
|
|
17
31
|
import {
|
|
18
32
|
MoneyInputFromJSON,
|
|
@@ -81,6 +95,18 @@ export interface CreateManualLeadInput {
|
|
|
81
95
|
* @memberof CreateManualLeadInput
|
|
82
96
|
*/
|
|
83
97
|
leaseToOwnMaxMonths: number | null;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {LeadOfferExpirationConfigurationInput}
|
|
101
|
+
* @memberof CreateManualLeadInput
|
|
102
|
+
*/
|
|
103
|
+
leadOfferExpirationConfiguration?: LeadOfferExpirationConfigurationInput;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {LockConfigurationInput}
|
|
107
|
+
* @memberof CreateManualLeadInput
|
|
108
|
+
*/
|
|
109
|
+
domainLockConfiguration?: LockConfigurationInput;
|
|
84
110
|
}
|
|
85
111
|
|
|
86
112
|
|
|
@@ -131,6 +157,8 @@ export function CreateManualLeadInputFromJSONTyped(json: any, ignoreDiscriminato
|
|
|
131
157
|
'offer': MoneyInputFromJSON(json['offer']),
|
|
132
158
|
'leaseToOwnMinMonths': json['leaseToOwnMinMonths'],
|
|
133
159
|
'leaseToOwnMaxMonths': json['leaseToOwnMaxMonths'],
|
|
160
|
+
'leadOfferExpirationConfiguration': json['leadOfferExpirationConfiguration'] == null ? undefined : LeadOfferExpirationConfigurationInputFromJSON(json['leadOfferExpirationConfiguration']),
|
|
161
|
+
'domainLockConfiguration': json['domainLockConfiguration'] == null ? undefined : LockConfigurationInputFromJSON(json['domainLockConfiguration']),
|
|
134
162
|
};
|
|
135
163
|
}
|
|
136
164
|
|
|
@@ -154,6 +182,8 @@ export function CreateManualLeadInputToJSONTyped(value?: CreateManualLeadInput |
|
|
|
154
182
|
'offer': MoneyInputToJSON(value['offer']),
|
|
155
183
|
'leaseToOwnMinMonths': value['leaseToOwnMinMonths'],
|
|
156
184
|
'leaseToOwnMaxMonths': value['leaseToOwnMaxMonths'],
|
|
185
|
+
'leadOfferExpirationConfiguration': LeadOfferExpirationConfigurationInputToJSON(value['leadOfferExpirationConfiguration']),
|
|
186
|
+
'domainLockConfiguration': LockConfigurationInputToJSON(value['domainLockConfiguration']),
|
|
157
187
|
};
|
|
158
188
|
}
|
|
159
189
|
|
|
@@ -48,6 +48,13 @@ import {
|
|
|
48
48
|
LeadRentConfigurationDtoToJSON,
|
|
49
49
|
LeadRentConfigurationDtoToJSONTyped,
|
|
50
50
|
} from './LeadRentConfigurationDto';
|
|
51
|
+
import type { LeadOfferExpirationConfigurationDto } from './LeadOfferExpirationConfigurationDto';
|
|
52
|
+
import {
|
|
53
|
+
LeadOfferExpirationConfigurationDtoFromJSON,
|
|
54
|
+
LeadOfferExpirationConfigurationDtoFromJSONTyped,
|
|
55
|
+
LeadOfferExpirationConfigurationDtoToJSON,
|
|
56
|
+
LeadOfferExpirationConfigurationDtoToJSONTyped,
|
|
57
|
+
} from './LeadOfferExpirationConfigurationDto';
|
|
51
58
|
import type { LeadOfferDto } from './LeadOfferDto';
|
|
52
59
|
import {
|
|
53
60
|
LeadOfferDtoFromJSON,
|
|
@@ -182,6 +189,12 @@ export interface IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetails
|
|
|
182
189
|
* @memberof IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto
|
|
183
190
|
*/
|
|
184
191
|
lastSellerOffer: LeadOfferDto | null;
|
|
192
|
+
/**
|
|
193
|
+
*
|
|
194
|
+
* @type {LeadOfferExpirationConfigurationDto}
|
|
195
|
+
* @memberof IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto
|
|
196
|
+
*/
|
|
197
|
+
leadOfferExpirationConfiguration: LeadOfferExpirationConfigurationDto;
|
|
185
198
|
}
|
|
186
199
|
|
|
187
200
|
|
|
@@ -255,6 +268,7 @@ export function instanceOfIntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuy
|
|
|
255
268
|
if (!('rent' in value) || value['rent'] === undefined) return false;
|
|
256
269
|
if (!('lastBuyerOffer' in value) || value['lastBuyerOffer'] === undefined) return false;
|
|
257
270
|
if (!('lastSellerOffer' in value) || value['lastSellerOffer'] === undefined) return false;
|
|
271
|
+
if (!('leadOfferExpirationConfiguration' in value) || value['leadOfferExpirationConfiguration'] === undefined) return false;
|
|
258
272
|
return true;
|
|
259
273
|
}
|
|
260
274
|
|
|
@@ -288,6 +302,7 @@ export function IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsD
|
|
|
288
302
|
'rent': LeadRentConfigurationDtoFromJSON(json['rent']),
|
|
289
303
|
'lastBuyerOffer': LeadOfferDtoFromJSON(json['lastBuyerOffer']),
|
|
290
304
|
'lastSellerOffer': LeadOfferDtoFromJSON(json['lastSellerOffer']),
|
|
305
|
+
'leadOfferExpirationConfiguration': LeadOfferExpirationConfigurationDtoFromJSON(json['leadOfferExpirationConfiguration']),
|
|
291
306
|
};
|
|
292
307
|
}
|
|
293
308
|
|
|
@@ -322,6 +337,7 @@ export function IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsD
|
|
|
322
337
|
'rent': LeadRentConfigurationDtoToJSON(value['rent']),
|
|
323
338
|
'lastBuyerOffer': LeadOfferDtoToJSON(value['lastBuyerOffer']),
|
|
324
339
|
'lastSellerOffer': LeadOfferDtoToJSON(value['lastSellerOffer']),
|
|
340
|
+
'leadOfferExpirationConfiguration': LeadOfferExpirationConfigurationDtoToJSON(value['leadOfferExpirationConfiguration']),
|
|
325
341
|
};
|
|
326
342
|
}
|
|
327
343
|
|
package/src/models/LeadDto.ts
CHANGED
|
@@ -41,6 +41,13 @@ import {
|
|
|
41
41
|
LeadRentConfigurationDtoToJSON,
|
|
42
42
|
LeadRentConfigurationDtoToJSONTyped,
|
|
43
43
|
} from './LeadRentConfigurationDto';
|
|
44
|
+
import type { LeadOfferExpirationConfigurationDto } from './LeadOfferExpirationConfigurationDto';
|
|
45
|
+
import {
|
|
46
|
+
LeadOfferExpirationConfigurationDtoFromJSON,
|
|
47
|
+
LeadOfferExpirationConfigurationDtoFromJSONTyped,
|
|
48
|
+
LeadOfferExpirationConfigurationDtoToJSON,
|
|
49
|
+
LeadOfferExpirationConfigurationDtoToJSONTyped,
|
|
50
|
+
} from './LeadOfferExpirationConfigurationDto';
|
|
44
51
|
import type { LeadOfferDto } from './LeadOfferDto';
|
|
45
52
|
import {
|
|
46
53
|
LeadOfferDtoFromJSON,
|
|
@@ -169,6 +176,12 @@ export interface LeadDto {
|
|
|
169
176
|
* @memberof LeadDto
|
|
170
177
|
*/
|
|
171
178
|
lastSellerOffer: LeadOfferDto | null;
|
|
179
|
+
/**
|
|
180
|
+
*
|
|
181
|
+
* @type {LeadOfferExpirationConfigurationDto}
|
|
182
|
+
* @memberof LeadDto
|
|
183
|
+
*/
|
|
184
|
+
leadOfferExpirationConfiguration: LeadOfferExpirationConfigurationDto;
|
|
172
185
|
}
|
|
173
186
|
|
|
174
187
|
|
|
@@ -241,6 +254,7 @@ export function instanceOfLeadDto(value: object): value is LeadDto {
|
|
|
241
254
|
if (!('rent' in value) || value['rent'] === undefined) return false;
|
|
242
255
|
if (!('lastBuyerOffer' in value) || value['lastBuyerOffer'] === undefined) return false;
|
|
243
256
|
if (!('lastSellerOffer' in value) || value['lastSellerOffer'] === undefined) return false;
|
|
257
|
+
if (!('leadOfferExpirationConfiguration' in value) || value['leadOfferExpirationConfiguration'] === undefined) return false;
|
|
244
258
|
return true;
|
|
245
259
|
}
|
|
246
260
|
|
|
@@ -273,6 +287,7 @@ export function LeadDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): L
|
|
|
273
287
|
'rent': LeadRentConfigurationDtoFromJSON(json['rent']),
|
|
274
288
|
'lastBuyerOffer': LeadOfferDtoFromJSON(json['lastBuyerOffer']),
|
|
275
289
|
'lastSellerOffer': LeadOfferDtoFromJSON(json['lastSellerOffer']),
|
|
290
|
+
'leadOfferExpirationConfiguration': LeadOfferExpirationConfigurationDtoFromJSON(json['leadOfferExpirationConfiguration']),
|
|
276
291
|
};
|
|
277
292
|
}
|
|
278
293
|
|
|
@@ -306,6 +321,7 @@ export function LeadDtoToJSONTyped(value?: LeadDto | null, ignoreDiscriminator:
|
|
|
306
321
|
'rent': LeadRentConfigurationDtoToJSON(value['rent']),
|
|
307
322
|
'lastBuyerOffer': LeadOfferDtoToJSON(value['lastBuyerOffer']),
|
|
308
323
|
'lastSellerOffer': LeadOfferDtoToJSON(value['lastSellerOffer']),
|
|
324
|
+
'leadOfferExpirationConfiguration': LeadOfferExpirationConfigurationDtoToJSON(value['leadOfferExpirationConfiguration']),
|
|
309
325
|
};
|
|
310
326
|
}
|
|
311
327
|
|
|
@@ -0,0 +1,83 @@
|
|
|
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 { LockDurationDto } from './LockDurationDto';
|
|
17
|
+
import {
|
|
18
|
+
LockDurationDtoFromJSON,
|
|
19
|
+
LockDurationDtoFromJSONTyped,
|
|
20
|
+
LockDurationDtoToJSON,
|
|
21
|
+
LockDurationDtoToJSONTyped,
|
|
22
|
+
} from './LockDurationDto';
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @export
|
|
27
|
+
* @interface LeadOfferExpirationConfigurationDto
|
|
28
|
+
*/
|
|
29
|
+
export interface LeadOfferExpirationConfigurationDto {
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof LeadOfferExpirationConfigurationDto
|
|
34
|
+
*/
|
|
35
|
+
enabled: boolean;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {LockDurationDto}
|
|
39
|
+
* @memberof LeadOfferExpirationConfigurationDto
|
|
40
|
+
*/
|
|
41
|
+
duration: LockDurationDto;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Check if a given object implements the LeadOfferExpirationConfigurationDto interface.
|
|
46
|
+
*/
|
|
47
|
+
export function instanceOfLeadOfferExpirationConfigurationDto(value: object): value is LeadOfferExpirationConfigurationDto {
|
|
48
|
+
if (!('enabled' in value) || value['enabled'] === undefined) return false;
|
|
49
|
+
if (!('duration' in value) || value['duration'] === undefined) return false;
|
|
50
|
+
return true;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export function LeadOfferExpirationConfigurationDtoFromJSON(json: any): LeadOfferExpirationConfigurationDto {
|
|
54
|
+
return LeadOfferExpirationConfigurationDtoFromJSONTyped(json, false);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export function LeadOfferExpirationConfigurationDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): LeadOfferExpirationConfigurationDto {
|
|
58
|
+
if (json == null) {
|
|
59
|
+
return json;
|
|
60
|
+
}
|
|
61
|
+
return {
|
|
62
|
+
|
|
63
|
+
'enabled': json['enabled'],
|
|
64
|
+
'duration': LockDurationDtoFromJSON(json['duration']),
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export function LeadOfferExpirationConfigurationDtoToJSON(json: any): LeadOfferExpirationConfigurationDto {
|
|
69
|
+
return LeadOfferExpirationConfigurationDtoToJSONTyped(json, false);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export function LeadOfferExpirationConfigurationDtoToJSONTyped(value?: LeadOfferExpirationConfigurationDto | null, ignoreDiscriminator: boolean = false): any {
|
|
73
|
+
if (value == null) {
|
|
74
|
+
return value;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
return {
|
|
78
|
+
|
|
79
|
+
'enabled': value['enabled'],
|
|
80
|
+
'duration': LockDurationDtoToJSON(value['duration']),
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
|