kui-crm_actions 0.0.61 → 0.0.63
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/cjs/index.js +58 -140
- package/cjs/index.js.map +1 -1
- package/index.d.ts +144 -200
- package/index.js +59 -139
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -1,40 +1,17 @@
|
|
1
1
|
import * as kui_crm from 'kui-crm';
|
2
|
-
import { ResourceTypes, MeterTypes,
|
2
|
+
import { InputParams, ResourceTypes, MeterTypes, FileStore, InputFileWithVisibilityFields, MeterFeaturesFormFields, InspectionTypes, InspectionRoomPhotoTypes, ParkingTypes, CityParams, RoomTypes, RenovationParams, RoomParams, PhoneParams, WifiParams, InternetProviderParams, TVTypes, CompanyAutocompleteFields, CountryAutocompleteFields, TaxesTypes, MetersCountParams, FillingTagsAutocompleteFields, ApartmentFillingVariants, ImageBodyRequest, FillingInfoFormFields as FillingInfoFormFields$1, ContractLinkModel, FileBodyRequest, RoomType, ApartmentMainInfoModelFields, ApartmentDetailInfoModelFields, GeolocationParams } from 'kui-crm';
|
3
3
|
import { DateTime } from 'luxon';
|
4
4
|
import { Loader, MultistepForm, PhoneParams as PhoneParams$1 } from 'kui-utils';
|
5
5
|
import * as yup from 'yup';
|
6
|
-
import UploadFileParams$2, { UploadFileParams as UploadFileParams$1 } from 'kui-complex/dist/FileItem';
|
7
6
|
import { InputWithAddressFields } from 'kui-complex/dist/InputWithAddressAutocomplete';
|
8
7
|
import { ReactElement } from 'react';
|
9
8
|
|
10
|
-
declare const getPartialMeterInfoFields: (resource: ResourceTypes, type?: MeterTypes | undefined, name?: string | undefined, settings?: any) => InputParams<any>[];
|
11
|
-
|
12
9
|
declare const getPartialMeterInfoSchema: (valuesFields: InputParams<any>[]) => yup.ObjectSchema<{
|
13
10
|
[x: string]: any;
|
14
11
|
}, yup.AnyObject, {
|
15
12
|
[x: string]: any;
|
16
13
|
}, "">;
|
17
14
|
|
18
|
-
type FileParams = {
|
19
|
-
id: number | null
|
20
|
-
name: string
|
21
|
-
url: string
|
22
|
-
date: DateTime | null
|
23
|
-
size: number | null
|
24
|
-
createdBy: string
|
25
|
-
extension: string
|
26
|
-
}
|
27
|
-
|
28
|
-
type UploadFileParams = {
|
29
|
-
id?: number | null
|
30
|
-
index?: number | string
|
31
|
-
size?: number | null
|
32
|
-
file?: File | FileParams
|
33
|
-
name?: string
|
34
|
-
title?: string
|
35
|
-
url?: string
|
36
|
-
}
|
37
|
-
|
38
15
|
type PartialMeterInfoStepProps = {
|
39
16
|
resource: ResourceTypes
|
40
17
|
index: number
|
@@ -50,18 +27,18 @@ type PartialMeterInfoFields = {
|
|
50
27
|
T1?: string | number | null
|
51
28
|
T2?: string | number | null
|
52
29
|
T3?: string | number | null
|
53
|
-
images:
|
30
|
+
images: FileStore[]
|
54
31
|
}
|
55
32
|
|
56
|
-
type InspectionMeterFields
|
33
|
+
type InspectionMeterFields = {
|
57
34
|
id?: number
|
58
35
|
resource: ResourceTypes
|
59
36
|
passportFile?: InputFileWithVisibilityFields
|
60
|
-
images:
|
37
|
+
images: FileStore[]
|
61
38
|
} & MeterFeaturesFormFields
|
62
39
|
|
63
|
-
type InspectionMetersStepFields
|
64
|
-
meters: InspectionMeterFields
|
40
|
+
type InspectionMetersStepFields = {
|
41
|
+
meters: InspectionMeterFields[]
|
65
42
|
}
|
66
43
|
|
67
44
|
type InspectionPartialMetersStepFields = {
|
@@ -74,27 +51,6 @@ type ApartmentMetersStoreInterface = {
|
|
74
51
|
meters: PartialMeterInfoFields[]
|
75
52
|
}
|
76
53
|
|
77
|
-
declare type ParkingTypes = "public" | "house" | "underground" | "multi_level";
|
78
|
-
|
79
|
-
type InspectionTypes =
|
80
|
-
| "initial"
|
81
|
-
| "inventory"
|
82
|
-
| "transfer"
|
83
|
-
| "regular"
|
84
|
-
| "appraisal"
|
85
|
-
| "impairments"
|
86
|
-
|
87
|
-
type InspectionRoomPhotoTypes =
|
88
|
-
| "kitchen"
|
89
|
-
| "bathroom"
|
90
|
-
| "room"
|
91
|
-
| "bedroom"
|
92
|
-
| "entrance"
|
93
|
-
| "others"
|
94
|
-
| "toilet"
|
95
|
-
| "combined_bathroom"
|
96
|
-
| "keys"
|
97
|
-
|
98
54
|
type CommonInspectionFormFields = {
|
99
55
|
date: DateTime
|
100
56
|
basedOn?: number
|
@@ -104,7 +60,7 @@ type CommonInspectionFormFields = {
|
|
104
60
|
|
105
61
|
type InspectionRoomImagesParams = {
|
106
62
|
type: InspectionRoomPhotoTypes
|
107
|
-
files:
|
63
|
+
files: FileStore[]
|
108
64
|
comment: string
|
109
65
|
}
|
110
66
|
|
@@ -125,6 +81,51 @@ type InspectionImageFieldsSettings = {
|
|
125
81
|
[key: string]: any
|
126
82
|
}
|
127
83
|
|
84
|
+
type BasicApartmentInfoStepFields = {
|
85
|
+
apartment: InputWithAddressFields
|
86
|
+
apartmentNumber: number | string | null
|
87
|
+
city: CityParams | null
|
88
|
+
zipCode?: string
|
89
|
+
}
|
90
|
+
|
91
|
+
type SecurityApartmentInfoStepFields = {
|
92
|
+
typeOfObject: RoomTypes | null
|
93
|
+
entrance: string
|
94
|
+
hasIntercom: boolean | null
|
95
|
+
intercomCode: string
|
96
|
+
hasGate: boolean | null
|
97
|
+
gateCode: string
|
98
|
+
}
|
99
|
+
|
100
|
+
type RoomsApartmentInfoStepFields = {
|
101
|
+
floor: number | null
|
102
|
+
floorCount: number | null
|
103
|
+
roomsNumber: number | null
|
104
|
+
bedroomsNumber: number | null
|
105
|
+
bathroomsNumber: number | null
|
106
|
+
restroomsNumber: number | null
|
107
|
+
combinedBathroomsNumber: number | null
|
108
|
+
}
|
109
|
+
|
110
|
+
type DetailApartmentInfoStepFields = {
|
111
|
+
area: number | string | null
|
112
|
+
livingArea: number | string | null
|
113
|
+
kitchenArea: number | string | null
|
114
|
+
ceilingHeight: number | string | null
|
115
|
+
numberOfWindows: number | null
|
116
|
+
renovation: RenovationParams | null
|
117
|
+
rooms: RoomParams[]
|
118
|
+
}
|
119
|
+
|
120
|
+
type InitialInspectionFormFields = CommonInspectionFormFields &
|
121
|
+
InitialInspectionInfoFields &
|
122
|
+
InspectionRoomsImagesFields
|
123
|
+
|
124
|
+
type InitialInspectionInfoFields = BasicApartmentInfoStepFields &
|
125
|
+
SecurityApartmentInfoStepFields &
|
126
|
+
RoomsApartmentInfoStepFields &
|
127
|
+
DetailApartmentInfoStepFields
|
128
|
+
|
128
129
|
type TransferInspectionTypes =
|
129
130
|
| "maroom_tenant"
|
130
131
|
| "tenant_maroom"
|
@@ -155,6 +156,87 @@ type MeterValuesFields = {
|
|
155
156
|
initialValueT3?: MeterValue
|
156
157
|
}
|
157
158
|
|
159
|
+
type HouseServicesInfoStepFields = {
|
160
|
+
hasBarrier: boolean | null
|
161
|
+
barrierPhone: PhoneParams | null
|
162
|
+
hasConcierge: boolean | null
|
163
|
+
conciergePhone: PhoneParams | null
|
164
|
+
hasSecurity: boolean | null
|
165
|
+
securityPhone: PhoneParams | null
|
166
|
+
hasVideoControl: boolean | null
|
167
|
+
videoControlPhone: PhoneParams | null
|
168
|
+
parkingType: ParkingTypes | null
|
169
|
+
parkingNumber: string
|
170
|
+
passengerElevatorsCount: number | null
|
171
|
+
serviceElevatorsCount: number | null
|
172
|
+
}
|
173
|
+
|
174
|
+
type TelecommunicationsInfoStepFields = {
|
175
|
+
wifi: WifiParams | null
|
176
|
+
internetProvider: InternetProviderParams | null
|
177
|
+
tvType: TVTypes | null
|
178
|
+
homePhone: PhoneParams | null
|
179
|
+
}
|
180
|
+
|
181
|
+
type ApartmentPaymentsFormFields = {
|
182
|
+
payerCode: string
|
183
|
+
communalServicesAccount: string
|
184
|
+
company: CompanyAutocompleteFields | null
|
185
|
+
countryOfResidence: CountryAutocompleteFields | null
|
186
|
+
taxesType: TaxesTypes | null
|
187
|
+
}
|
188
|
+
|
189
|
+
type AdditionalInfoStepFields = {
|
190
|
+
withPets: boolean
|
191
|
+
withChildren: boolean
|
192
|
+
additionalTerms: string
|
193
|
+
} & ApartmentPaymentsFormFields
|
194
|
+
|
195
|
+
type MetersInfoStepFields = {
|
196
|
+
maxMeters: MetersCountParams | null
|
197
|
+
}
|
198
|
+
|
199
|
+
type FillingInfoFormFields = {
|
200
|
+
tag: FillingTagsAutocompleteFields
|
201
|
+
serialNumber?: string
|
202
|
+
numberOfSubjects?: string | number | null
|
203
|
+
name?: string
|
204
|
+
type?: ApartmentFillingVariants
|
205
|
+
instruction?: InputFileWithVisibilityFields
|
206
|
+
tempImages?: ImageBodyRequest[]
|
207
|
+
}
|
208
|
+
|
209
|
+
type FillingInfoStepFields = {
|
210
|
+
images: FileStore[]
|
211
|
+
} & FillingInfoFormFields$1
|
212
|
+
|
213
|
+
type FillingListInfoStepFields = {
|
214
|
+
fillingList: FillingInfoStepFields[]
|
215
|
+
}
|
216
|
+
|
217
|
+
|
218
|
+
type InventoryInspectionFormFields = CommonInspectionFormFields &
|
219
|
+
HouseServicesInfoStepFields &
|
220
|
+
TelecommunicationsInfoStepFields &
|
221
|
+
AdditionalInfoStepFields &
|
222
|
+
MetersInfoStepFields &
|
223
|
+
InspectionMetersStepFields &
|
224
|
+
FillingListInfoStepFields &
|
225
|
+
InspectionRoomsImagesFields
|
226
|
+
|
227
|
+
declare const inspectionsRequests: {
|
228
|
+
createInspection(apartmentId: number, body: any, loader: Loader): Promise<number | undefined>;
|
229
|
+
createInitialInspection(data: InitialInspectionFormFields, apartmentId: number, loader: Loader): Promise<number | null | undefined>;
|
230
|
+
createRegularInspection(data: RegularInspectionFormFields, apartmentId: number, loader: Loader): Promise<number | null | undefined>;
|
231
|
+
createTransferInspection(data: TransferInspectionFormFields, apartmentId: number, loader: Loader): Promise<number | null | undefined>;
|
232
|
+
createInventoryInspection(data: InventoryInspectionFormFields, apartmentId: number, loader: Loader): Promise<number | null | undefined>;
|
233
|
+
getRoomParams(rooms: InspectionRoomImagesParams[]): {
|
234
|
+
purpose: kui_crm.InspectionRoomPhotoTypes;
|
235
|
+
comment: string;
|
236
|
+
photos: kui_crm.ImageBodyRequest[];
|
237
|
+
}[];
|
238
|
+
};
|
239
|
+
|
158
240
|
declare type InspectionAppraisalLiteModel = {
|
159
241
|
id: number;
|
160
242
|
date: string;
|
@@ -282,150 +364,12 @@ declare type InspectionRoomPhotoRequest = {
|
|
282
364
|
room_order_number?: number;
|
283
365
|
};
|
284
366
|
|
285
|
-
type BasicApartmentInfoStepFields = {
|
286
|
-
apartment: InputWithAddressFields
|
287
|
-
apartmentNumber: number | string | null
|
288
|
-
city: CityParams | null
|
289
|
-
zipCode?: string
|
290
|
-
}
|
291
|
-
|
292
|
-
type SecurityApartmentInfoStepFields = {
|
293
|
-
typeOfRoom: RoomTypes | null
|
294
|
-
entrance: string
|
295
|
-
hasIntercom: boolean | null
|
296
|
-
intercomCode: string
|
297
|
-
hasGate: boolean | null
|
298
|
-
gateCode: string
|
299
|
-
}
|
300
|
-
|
301
|
-
type RoomsApartmentInfoStepFields = {
|
302
|
-
floor: number | null
|
303
|
-
floorCount: number | null
|
304
|
-
roomsNumber: number | null
|
305
|
-
bedroomsNumber: number | null
|
306
|
-
bathroomsNumber: number | null
|
307
|
-
restroomsNumber: number | null
|
308
|
-
combinedBathroomsNumber: number | null
|
309
|
-
}
|
310
|
-
|
311
|
-
type DetailApartmentInfoStepFields = {
|
312
|
-
area: number | string | null
|
313
|
-
livingArea: number | string | null
|
314
|
-
kitchenArea: number | string | null
|
315
|
-
ceilingHeight: number | string | null
|
316
|
-
numberOfWindows: number | null
|
317
|
-
renovation: RenovationParams | null
|
318
|
-
rooms: RoomParams[]
|
319
|
-
}
|
320
|
-
|
321
|
-
type InitialInspectionFormFields = CommonInspectionFormFields &
|
322
|
-
InitialInspectionInfoFields &
|
323
|
-
InspectionRoomsImagesFields
|
324
|
-
|
325
|
-
type InitialInspectionInfoFields = BasicApartmentInfoStepFields &
|
326
|
-
SecurityApartmentInfoStepFields &
|
327
|
-
RoomsApartmentInfoStepFields &
|
328
|
-
DetailApartmentInfoStepFields
|
329
|
-
|
330
|
-
type HouseServicesInfoStepFields = {
|
331
|
-
hasBarrier: boolean | null
|
332
|
-
barrierPhone: PhoneParams | null
|
333
|
-
hasConcierge: boolean | null
|
334
|
-
conciergePhone: PhoneParams | null
|
335
|
-
hasSecurity: boolean | null
|
336
|
-
securityPhone: PhoneParams | null
|
337
|
-
hasVideoControl: boolean | null
|
338
|
-
videoControlPhone: PhoneParams | null
|
339
|
-
parkingType: ParkingTypes$1 | null
|
340
|
-
parkingNumber: string
|
341
|
-
passengerElevatorsCount: number | null
|
342
|
-
serviceElevatorsCount: number | null
|
343
|
-
}
|
344
|
-
|
345
|
-
type TelecommunicationsInfoStepFields = {
|
346
|
-
wifi: WifiParams | null
|
347
|
-
internetProvider: InternetProviderParams | null
|
348
|
-
tvType: TVTypes | null
|
349
|
-
homePhone: PhoneParams | null
|
350
|
-
}
|
351
|
-
|
352
|
-
type ApartmentPaymentsFormFields = {
|
353
|
-
payerCode: string
|
354
|
-
communalServicesAccount: string
|
355
|
-
company: CompanyAutocompleteFields | null
|
356
|
-
countryOfResidence: CountryAutocompleteFields | null
|
357
|
-
taxesType: TaxesTypes | null
|
358
|
-
}
|
359
|
-
|
360
|
-
type AdditionalInfoStepFields = {
|
361
|
-
withPets: boolean
|
362
|
-
withChildren: boolean
|
363
|
-
additionalTerms: string
|
364
|
-
} & ApartmentPaymentsFormFields
|
365
|
-
|
366
|
-
type MetersInfoStepFields = {
|
367
|
-
maxMeters: MetersCountParams | null
|
368
|
-
}
|
369
|
-
|
370
|
-
type FillingInfoFormFields = {
|
371
|
-
tag: FillingTagsAutocompleteFields
|
372
|
-
serialNumber?: string
|
373
|
-
numberOfSubjects?: string | number | null
|
374
|
-
name?: string
|
375
|
-
type?: ApartmentFillingVariants
|
376
|
-
instruction?: InputFileWithVisibilityFields
|
377
|
-
tempImages?: ImageBodyRequest[]
|
378
|
-
}
|
379
|
-
|
380
|
-
type InspectionMeterFields = {
|
381
|
-
id?: number
|
382
|
-
resource: ResourceTypes
|
383
|
-
passportFile?: InputFileWithVisibilityFields
|
384
|
-
images: UploadFileParams$1[]
|
385
|
-
} & MeterFeaturesFormFields
|
386
|
-
|
387
|
-
type InspectionMetersStepFields = {
|
388
|
-
meters: InspectionMeterFields[]
|
389
|
-
}
|
390
|
-
|
391
|
-
type FillingInfoStepFields = {
|
392
|
-
images: UploadFileParams$1[]
|
393
|
-
} & FillingInfoFormFields$1
|
394
|
-
|
395
|
-
type FillingListInfoStepFields = {
|
396
|
-
fillingList: FillingInfoStepFields[]
|
397
|
-
}
|
398
|
-
|
399
|
-
|
400
|
-
type InventoryInspectionFormFields = CommonInspectionFormFields &
|
401
|
-
HouseServicesInfoStepFields &
|
402
|
-
TelecommunicationsInfoStepFields &
|
403
|
-
AdditionalInfoStepFields &
|
404
|
-
MetersInfoStepFields &
|
405
|
-
InspectionMetersStepFields &
|
406
|
-
FillingListInfoStepFields &
|
407
|
-
InspectionRoomsImagesFields
|
408
|
-
|
409
|
-
declare const inspectionsRequests: {
|
410
|
-
createInspection(apartmentId: number, body: any, loader: Loader): Promise<number | undefined>;
|
411
|
-
loadInspectionImages(loader: Loader, roomsImages: InspectionRoomImagesParams[]): Promise<InspectionRoomPhotoRequest[]>;
|
412
|
-
createInitialInspection(data: InitialInspectionFormFields, apartmentId: number, loader: Loader): Promise<number | null | undefined>;
|
413
|
-
createRegularInspection(data: RegularInspectionFormFields, apartmentId: number, loader: Loader): Promise<number | null | undefined>;
|
414
|
-
createTransferInspection(data: TransferInspectionFormFields, apartmentId: number, loader: Loader): Promise<number | null | undefined>;
|
415
|
-
createInventoryInspection(data: InventoryInspectionFormFields, apartmentId: number, loader: Loader): Promise<number | null | undefined>;
|
416
|
-
getRoomParams(room: InspectionRoomImagesParams, photos?: ImageBodyRequest[] | undefined): {
|
417
|
-
purpose: InspectionRoomPhotoTypes;
|
418
|
-
comment: string;
|
419
|
-
photos: ImageBodyRequest[];
|
420
|
-
};
|
421
|
-
};
|
422
|
-
|
423
367
|
declare const inspectionsRequestBody: {
|
424
368
|
getPostBodyInitialInspection(inspection: InitialInspectionFormFields, roomsImages: InspectionRoomPhotoRequest[]): InitialInspectionPostBody;
|
425
369
|
getInitialInspectionFields(inspection: InitialInspectionInfoFields): InitialInspectionFieldsBody;
|
426
|
-
getPostBodyRegularInspection(inspection: RegularInspectionFormFields, roomsImages: InspectionRoomPhotoRequest[]
|
427
|
-
getPostBodyTransferInspection(inspection: TransferInspectionFormFields, roomsImages: InspectionRoomPhotoRequest[]
|
428
|
-
getPartialInspectionMeters(meters: PartialMeterInfoFields[]
|
370
|
+
getPostBodyRegularInspection(inspection: RegularInspectionFormFields, roomsImages: InspectionRoomPhotoRequest[]): RegularInspectionPostBody;
|
371
|
+
getPostBodyTransferInspection(inspection: TransferInspectionFormFields, roomsImages: InspectionRoomPhotoRequest[]): TransferInspectionPostBody;
|
372
|
+
getPartialInspectionMeters(meters: PartialMeterInfoFields[]): {
|
429
373
|
meters: {
|
430
374
|
id: number;
|
431
375
|
resource_type: kui_crm.ResourceTypes;
|
@@ -437,8 +381,8 @@ declare const inspectionsRequestBody: {
|
|
437
381
|
};
|
438
382
|
}[];
|
439
383
|
};
|
440
|
-
getPostBodyInventoryInspection(inspection: InventoryInspectionFormFields, roomsImages: InspectionRoomPhotoRequest[], fillingFiles: FileBodyRequest[], metersFiles: FileBodyRequest[]
|
441
|
-
getInventoryInspectionMeters(meters: InspectionMeterFields
|
384
|
+
getPostBodyInventoryInspection(inspection: InventoryInspectionFormFields, roomsImages: InspectionRoomPhotoRequest[], fillingFiles: FileBodyRequest[], metersFiles: FileBodyRequest[]): InventoryInspectionPostBody;
|
385
|
+
getInventoryInspectionMeters(meters: InspectionMeterFields[], metersFiles: FileBodyRequest[]): {
|
442
386
|
meters: {
|
443
387
|
passport: FileBodyRequest;
|
444
388
|
values: {
|
@@ -483,7 +427,7 @@ declare const inspectionsRequestBody: {
|
|
483
427
|
cold?: undefined;
|
484
428
|
hot?: undefined;
|
485
429
|
};
|
486
|
-
getMeterCommonFields(meter: InspectionMeterFields
|
430
|
+
getMeterCommonFields(meter: InspectionMeterFields): {
|
487
431
|
id: number | undefined;
|
488
432
|
meter_type: kui_crm.MeterTypes | undefined;
|
489
433
|
passport_number: string;
|
@@ -496,6 +440,7 @@ declare const inspectionsRequestBody: {
|
|
496
440
|
getMeterValues(initialValue?: string | number | null | undefined, lastValue?: string | number | null | undefined): {
|
497
441
|
[key: string]: any;
|
498
442
|
};
|
443
|
+
getFilesParams(files: FileStore[]): ImageBodyRequest[];
|
499
444
|
};
|
500
445
|
|
501
446
|
declare const getBasicApartmentInfoFields: (handlePlaceSelect?: ((coords: google.maps.LatLngLiteral) => void) | undefined, settings?: InspectionFieldsSettings | undefined) => InputParams<BasicApartmentInfoStepFields>[];
|
@@ -606,7 +551,7 @@ declare const RoomsApartmentInfoStepSchema: yup.ObjectSchema<{
|
|
606
551
|
declare const getSecurityApartmentInfoFields: (settings?: InspectionFieldsSettings | undefined) => InputParams<SecurityApartmentInfoStepFields>[];
|
607
552
|
|
608
553
|
declare const SecurityApartmentInfoFieldsSchema: {
|
609
|
-
|
554
|
+
typeOfObject: yup.StringSchema<string, yup.AnyObject, undefined, "">;
|
610
555
|
entrance: yup.StringSchema<string, yup.AnyObject, undefined, "">;
|
611
556
|
hasIntercom: yup.StringSchema<string, yup.AnyObject, undefined, "">;
|
612
557
|
intercomCode: yup.StringSchema<string | null | undefined, yup.AnyObject, undefined, "">;
|
@@ -616,7 +561,7 @@ declare const SecurityApartmentInfoFieldsSchema: {
|
|
616
561
|
parkingNumber: yup.StringSchema<string | null | undefined, yup.AnyObject, undefined, "">;
|
617
562
|
};
|
618
563
|
declare const SecurityApartmentInfoStepSchema: yup.ObjectSchema<{
|
619
|
-
|
564
|
+
typeOfObject: string;
|
620
565
|
entrance: string;
|
621
566
|
hasIntercom: string;
|
622
567
|
intercomCode: string | null | undefined;
|
@@ -625,7 +570,7 @@ declare const SecurityApartmentInfoStepSchema: yup.ObjectSchema<{
|
|
625
570
|
parkingType: string | null | undefined;
|
626
571
|
parkingNumber: string | null | undefined;
|
627
572
|
}, yup.AnyObject, {
|
628
|
-
|
573
|
+
typeOfObject: undefined;
|
629
574
|
entrance: undefined;
|
630
575
|
hasIntercom: undefined;
|
631
576
|
intercomCode: undefined;
|
@@ -635,7 +580,6 @@ declare const SecurityApartmentInfoStepSchema: yup.ObjectSchema<{
|
|
635
580
|
parkingNumber: undefined;
|
636
581
|
}, "">;
|
637
582
|
|
638
|
-
declare const getApartmentPaymentFields: (settings?: InspectionFieldsSettings | undefined) => any[];
|
639
583
|
declare const getAdditionalInfoStepFields: (settings?: InspectionFieldsSettings | undefined) => InputParams<AdditionalInfoStepFields>[];
|
640
584
|
|
641
585
|
declare const AdditionalInfoFieldsSchema: {
|
@@ -861,4 +805,4 @@ type ApartmentOverlayProps = {
|
|
861
805
|
|
862
806
|
declare const ApartmentInspectionOverlay: (props: ApartmentOverlayProps) => JSX.Element;
|
863
807
|
|
864
|
-
export { AdditionalInfoFieldsSchema, AdditionalInfoStepFields, AdditionalInfoStepSchema, ApartmentInspectionModel, ApartmentInspectionOverlay, ApartmentInspectionParams, ApartmentLinkParams, ApartmentPaymentsFormFields, BasicApartmentInfoFieldsSchema, BasicApartmentInfoStepFields, BasicApartmentInfoStepSchema, CommonInspectionFields, CommonInspectionFormFields, DetailApartmentInfoFieldsSchema, DetailApartmentInfoStepFields, DetailApartmentInfoStepSchema, FillingInfoFieldsSchema, FillingInfoFormFields, FillingInfoStepFields, FillingListInfoStepFields, HouseServicesInfoFieldsSchema, HouseServicesInfoStepFields, HouseServicesInfoStepSchema, InitialInspectionFieldsBody, InitialInspectionFormFields, InitialInspectionInfoFields, InitialInspectionPostBody, InitialInspectionRoomParams, InspectionAppraisalLiteModel, InspectionFieldsSettings, InspectionFillingParams, InspectionImpairmentLiteModel, InspectionMeterCommonFields, InspectionMeterFields
|
808
|
+
export { AdditionalInfoFieldsSchema, AdditionalInfoStepFields, AdditionalInfoStepSchema, ApartmentInspectionModel, ApartmentInspectionOverlay, ApartmentInspectionParams, ApartmentLinkParams, ApartmentPaymentsFormFields, BasicApartmentInfoFieldsSchema, BasicApartmentInfoStepFields, BasicApartmentInfoStepSchema, CommonInspectionFields, CommonInspectionFormFields, DetailApartmentInfoFieldsSchema, DetailApartmentInfoStepFields, DetailApartmentInfoStepSchema, FillingInfoFieldsSchema, FillingInfoFormFields, FillingInfoStepFields, FillingListInfoStepFields, HouseServicesInfoFieldsSchema, HouseServicesInfoStepFields, HouseServicesInfoStepSchema, InitialInspectionFieldsBody, InitialInspectionFormFields, InitialInspectionInfoFields, InitialInspectionPostBody, InitialInspectionRoomParams, InspectionAppraisalLiteModel, InspectionFieldsSettings, InspectionFillingParams, InspectionImpairmentLiteModel, InspectionMeterCommonFields, InspectionMeterFields, InspectionMeterValueModel, InspectionMetersStepFields, InspectionPartialMetersStepFields, InspectionRoomImagesParams, InspectionRoomPhotoRequest, InspectionRoomsImagesFields, InventoryInspectionFieldsBody, InventoryInspectionFormFields, InventoryInspectionPostBody, InventoryMeterModel, MeterInfoStepProps, MeterValueModel, MeterValuesFields, MetersInfoFieldsSchema, MetersInfoStepFields, MetersInfoStepSchema, MetroStationParams, PartialMeterInfoFields, PartialMeterInfoStepProps, PartialMeterModel, PostApartmentInspectionRequest, RegularInspectionFormFields, RegularInspectionPostBody, RegularlyInspectionFieldsBody, RoomsApartmentInfoFieldsSchema, RoomsApartmentInfoStepFields, RoomsApartmentInfoStepSchema, SecurityApartmentInfoFieldsSchema, SecurityApartmentInfoStepFields, SecurityApartmentInfoStepSchema, TelecommunicationsInfoFieldsSchema, TelecommunicationsInfoStepFields, TelecommunicationsInfoStepSchema, TenantParams, TransferInspectionFieldsBody, TransferInspectionFormFields, TransferInspectionPostBody, TransferInspectionTypes, getAdditionalInfoStepFields, getBasicApartmentInfoFields, getDetailApartmentInfoFields, getFillingInfoFields, getHouseServicesInfoStep, getMetersInfoStepFields, getPartialMeterInfoSchema, getRoomsApartmentInfoFields, getRoomsImagesSteps, getSecurityApartmentInfoFields, getTelecommunicationsInfoStepFields, inspectionsRequestBody, inspectionsRequests, renderMetersSteps, useMetersValues };
|