kui-crm_actions 0.0.9 → 0.0.11
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 +35 -26
- package/cjs/index.js.map +1 -1
- package/index.d.ts +40 -10
- package/index.js +35 -27
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as kui_crm from 'kui-crm';
|
2
|
-
import { RoomType, CountryModel, RegionModel, CityModel, CountyModel, DistrictModel, LatLonParams, RoomTypes, RenovationType, RenovationStyle, ParkingTypes, InputParams, ResourceTypes as ResourceTypes$1, MeterTypes as MeterTypes$1, InputFileWithVisibilityFields, MeterFeaturesFormFields, ContractLinkModel, FileBodyRequest, ImageBodyRequest, CityParams, RenovationParams, RoomParams, PhoneParams, WifiParams, InternetProviderParams, TVTypes, CompanyAutocompleteFields, CountryAutocompleteFields, TaxesTypes as TaxesTypes$1, MetersCountParams,
|
2
|
+
import { RoomType, CountryModel, RegionModel, CityModel, CountyModel, DistrictModel, LatLonParams, RoomTypes, RenovationType, RenovationStyle, ParkingTypes, InputParams, ResourceTypes as ResourceTypes$1, MeterTypes as MeterTypes$1, InputFileWithVisibilityFields, MeterFeaturesFormFields, ContractLinkModel, FileBodyRequest, ImageBodyRequest, CityParams, RenovationParams, RoomParams, PhoneParams, WifiParams, InternetProviderParams, TVTypes, CompanyAutocompleteFields, CountryAutocompleteFields, TaxesTypes as TaxesTypes$1, MetersCountParams, FillingTagsAutocompleteFields, ApartmentFillingVariants, FillingInfoFormFields as FillingInfoFormFields$1 } from 'kui-crm';
|
3
3
|
import * as yup from 'yup';
|
4
4
|
import { Loader, MultistepForm } from 'kui-utils';
|
5
5
|
import { DateTime } from 'luxon';
|
@@ -76,7 +76,7 @@ declare type ApartmentDetailInfoModelFields = {
|
|
76
76
|
payer_code: string;
|
77
77
|
};
|
78
78
|
|
79
|
-
declare const getPartialMeterInfoFields: (resource: ResourceTypes, type?: MeterTypes | undefined, name?: string | undefined) => InputParams<any>[];
|
79
|
+
declare const getPartialMeterInfoFields: (resource: ResourceTypes, type?: MeterTypes | undefined, name?: string | undefined, settings?: any) => InputParams<any>[];
|
80
80
|
|
81
81
|
declare const getPartialMeterInfoSchema: (valuesFields: InputParams<any>[]) => yup.ObjectSchema<{
|
82
82
|
[x: string]: any;
|
@@ -360,6 +360,16 @@ type MetersInfoStepFields = {
|
|
360
360
|
maxMeters: MetersCountParams | null
|
361
361
|
}
|
362
362
|
|
363
|
+
type FillingInfoFormFields = {
|
364
|
+
tag: FillingTagsAutocompleteFields
|
365
|
+
serialNumber?: string
|
366
|
+
numberOfSubjects?: string | number | null
|
367
|
+
name?: string
|
368
|
+
type?: ApartmentFillingVariants
|
369
|
+
instruction?: InputFileWithVisibilityFields
|
370
|
+
tempImages?: ImageBodyRequest[]
|
371
|
+
}
|
372
|
+
|
363
373
|
type InspectionMeterFields = {
|
364
374
|
id?: number
|
365
375
|
resource: ResourceTypes
|
@@ -372,12 +382,13 @@ type InspectionMetersStepFields = {
|
|
372
382
|
|
373
383
|
type FillingInfoStepFields = {
|
374
384
|
images: UploadFileParams$1[]
|
375
|
-
} & FillingInfoFormFields
|
385
|
+
} & FillingInfoFormFields$1
|
376
386
|
|
377
387
|
type FillingListInfoStepFields = {
|
378
388
|
fillingList: FillingInfoStepFields[]
|
379
389
|
}
|
380
390
|
|
391
|
+
|
381
392
|
type InventoryInspectionFormFields = CommonInspectionFormFields &
|
382
393
|
HouseServicesInfoStepFields &
|
383
394
|
TelecommunicationsInfoStepFields &
|
@@ -422,7 +433,7 @@ declare const inspectionsRequestBody: {
|
|
422
433
|
id: number | undefined;
|
423
434
|
meter_type: kui_crm.MeterTypes | undefined;
|
424
435
|
passport_number: string;
|
425
|
-
resource_type:
|
436
|
+
resource_type: "water" | "electricity" | "gas" | "heating";
|
426
437
|
activation_date: string;
|
427
438
|
operating_account: string | null | undefined;
|
428
439
|
company: number | undefined;
|
@@ -433,7 +444,7 @@ declare const inspectionsRequestBody: {
|
|
433
444
|
id: number | undefined;
|
434
445
|
meter_type: kui_crm.MeterTypes | undefined;
|
435
446
|
passport_number: string;
|
436
|
-
resource_type:
|
447
|
+
resource_type: "water" | "electricity" | "gas" | "heating";
|
437
448
|
activation_date: string;
|
438
449
|
operating_account: string | null | undefined;
|
439
450
|
company: number | undefined;
|
@@ -487,8 +498,8 @@ declare const DetailApartmentInfoFieldsSchema: {
|
|
487
498
|
livingArea: yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
488
499
|
kitchenArea: yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
489
500
|
rooms: yup.ArraySchema<{
|
490
|
-
type: string;
|
491
501
|
area: number;
|
502
|
+
type: string;
|
492
503
|
}[] | undefined, yup.AnyObject, "", "">;
|
493
504
|
ceilingHeight: yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
494
505
|
numberOfWindows: yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
@@ -507,14 +518,14 @@ declare const DetailApartmentInfoStepSchema: yup.ObjectSchema<{
|
|
507
518
|
livingArea: number;
|
508
519
|
kitchenArea: number;
|
509
520
|
rooms: {
|
510
|
-
type: string;
|
511
521
|
area: number;
|
522
|
+
type: string;
|
512
523
|
}[] | undefined;
|
513
524
|
ceilingHeight: number;
|
514
525
|
numberOfWindows: number;
|
515
526
|
renovation: {
|
516
|
-
type: string;
|
517
527
|
year: number;
|
528
|
+
type: string;
|
518
529
|
style: string;
|
519
530
|
};
|
520
531
|
}, yup.AnyObject, {
|
@@ -591,11 +602,14 @@ declare const getAdditionalInfoStepFields: (settings?: InspectionFieldsSettings
|
|
591
602
|
|
592
603
|
declare const AdditionalInfoFieldsSchema: {
|
593
604
|
taxesType: yup.StringSchema<string, yup.AnyObject, undefined, "">;
|
605
|
+
countryOfResidence: yup.StringSchema<string, yup.AnyObject, undefined, "">;
|
594
606
|
};
|
595
607
|
declare const AdditionalInfoStepSchema: yup.ObjectSchema<{
|
596
608
|
taxesType: string;
|
609
|
+
countryOfResidence: string;
|
597
610
|
}, yup.AnyObject, {
|
598
611
|
taxesType: undefined;
|
612
|
+
countryOfResidence: undefined;
|
599
613
|
}, "">;
|
600
614
|
|
601
615
|
declare const getHouseServicesInfoStep: (settings?: InspectionFieldsSettings | undefined) => InputParams<HouseServicesInfoStepFields>[];
|
@@ -727,7 +741,23 @@ declare const TelecommunicationsInfoStepSchema: yup.ObjectSchema<{
|
|
727
741
|
};
|
728
742
|
}, "">;
|
729
743
|
|
730
|
-
declare const getFillingInfoFields: (withType: boolean, type: ApartmentFillingVariants, setType: (fillingType: ApartmentFillingVariants) => void, settings?: InspectionFieldsSettings | undefined) => InputParams<FillingInfoFormFields>[];
|
744
|
+
declare const getFillingInfoFields: (withType: boolean, type: ApartmentFillingVariants, setType: (fillingType: ApartmentFillingVariants) => void, settings?: InspectionFieldsSettings | undefined) => InputParams<FillingInfoFormFields$1>[];
|
745
|
+
|
746
|
+
declare const FillingInfoFieldsSchema: yup.ObjectSchema<{
|
747
|
+
type: string | undefined;
|
748
|
+
tag: {
|
749
|
+
name: string;
|
750
|
+
};
|
751
|
+
name: string;
|
752
|
+
serialNumber: string | undefined;
|
753
|
+
}, yup.AnyObject, {
|
754
|
+
type: undefined;
|
755
|
+
tag: {
|
756
|
+
name: undefined;
|
757
|
+
};
|
758
|
+
name: undefined;
|
759
|
+
serialNumber: undefined;
|
760
|
+
}, "">;
|
731
761
|
|
732
762
|
type MeterInfoStepProps = {
|
733
763
|
index: number
|
@@ -742,4 +772,4 @@ declare type InspectionFieldsSettings = {
|
|
742
772
|
[key: string]: InputParams<any>;
|
743
773
|
};
|
744
774
|
|
745
|
-
export { AdditionalInfoFieldsSchema, AdditionalInfoStepFields, AdditionalInfoStepSchema, ApartmentDetailInfoModelFields, ApartmentInspectionModel, ApartmentMainInfoModelFields, ApartmentPaymentsFormFields, BasicApartmentInfoFieldsSchema, BasicApartmentInfoStepFields, BasicApartmentInfoStepSchema, CommonInspectionFields, CommonInspectionFormFields, DetailApartmentInfoFieldsSchema, DetailApartmentInfoStepFields, DetailApartmentInfoStepSchema, ElectricityMeterTypes, FillingInfoStepFields, FillingListInfoStepFields, HouseServicesInfoFieldsSchema, HouseServicesInfoStepFields, HouseServicesInfoStepSchema, InitialInspectionFieldsBody, InitialInspectionFormFields, InitialInspectionInfoFields, InitialInspectionPostBody, InspectionAppraisalLiteModel, InspectionFieldsSettings, InspectionFillingParams, InspectionImpairmentLiteModel, InspectionMeterCommonFields, InspectionMeterFields$1 as InspectionMeterFields, InspectionMeterValueModel, InspectionMetersStepFields$1 as InspectionMetersStepFields, InspectionPartialMetersStepFields, InspectionRoomImagesParams, InspectionRoomPhotoRequest, InspectionRoomPhotoTypes, InspectionRoomsImagesFields, InspectionTypes, InventoryInspectionFieldsBody, InventoryInspectionFormFields, InventoryInspectionPostBody, InventoryMeterModel, MeterInfoStepProps, MeterTypes, MetersInfoFieldsSchema, MetersInfoStepFields, MetersInfoStepSchema, PartialMeterInfoFields, PartialMeterInfoStepProps, PartialMeterModel, PostApartmentInspectionRequest, QuarterlyInspectionFieldsBody, QuarterlyInspectionFormFields, QuarterlyInspectionPostBody, ResourceTypes, RoomModel, RoomsApartmentInfoFieldsSchema, RoomsApartmentInfoStepFields, RoomsApartmentInfoStepSchema, SecurityApartmentInfoFieldsSchema, SecurityApartmentInfoStepFields, SecurityApartmentInfoStepSchema, TaxesTypes, TelecommunicationsInfoFieldsSchema, TelecommunicationsInfoStepFields, TelecommunicationsInfoStepSchema, TransferInspectionFieldsBody, TransferInspectionFormFields, TransferInspectionPostBody, TransferInspectionTypes, WaterMeterTypes, getAdditionalInfoStepFields, getApartmentPaymentFields, getBasicApartmentInfoFields, getDetailApartmentInfoFields, getFillingInfoFields, getHouseServicesInfoStep, getMetersInfoStepFields, getPartialMeterInfoFields, getPartialMeterInfoSchema, getRoomsApartmentInfoFields, getSecurityApartmentInfoFields, getTelecommunicationsInfoStepFields, inspectionsRequestBody, inspectionsRequests, renderMetersSteps, useMetersValues };
|
775
|
+
export { AdditionalInfoFieldsSchema, AdditionalInfoStepFields, AdditionalInfoStepSchema, ApartmentDetailInfoModelFields, ApartmentInspectionModel, ApartmentMainInfoModelFields, ApartmentPaymentsFormFields, BasicApartmentInfoFieldsSchema, BasicApartmentInfoStepFields, BasicApartmentInfoStepSchema, CommonInspectionFields, CommonInspectionFormFields, DetailApartmentInfoFieldsSchema, DetailApartmentInfoStepFields, DetailApartmentInfoStepSchema, ElectricityMeterTypes, FillingInfoFieldsSchema, FillingInfoFormFields, FillingInfoStepFields, FillingListInfoStepFields, HouseServicesInfoFieldsSchema, HouseServicesInfoStepFields, HouseServicesInfoStepSchema, InitialInspectionFieldsBody, InitialInspectionFormFields, InitialInspectionInfoFields, InitialInspectionPostBody, InspectionAppraisalLiteModel, InspectionFieldsSettings, InspectionFillingParams, InspectionImpairmentLiteModel, InspectionMeterCommonFields, InspectionMeterFields$1 as InspectionMeterFields, InspectionMeterValueModel, InspectionMetersStepFields$1 as InspectionMetersStepFields, InspectionPartialMetersStepFields, InspectionRoomImagesParams, InspectionRoomPhotoRequest, InspectionRoomPhotoTypes, InspectionRoomsImagesFields, InspectionTypes, InventoryInspectionFieldsBody, InventoryInspectionFormFields, InventoryInspectionPostBody, InventoryMeterModel, MeterInfoStepProps, MeterTypes, MetersInfoFieldsSchema, MetersInfoStepFields, MetersInfoStepSchema, PartialMeterInfoFields, PartialMeterInfoStepProps, PartialMeterModel, PostApartmentInspectionRequest, QuarterlyInspectionFieldsBody, QuarterlyInspectionFormFields, QuarterlyInspectionPostBody, ResourceTypes, RoomModel, RoomsApartmentInfoFieldsSchema, RoomsApartmentInfoStepFields, RoomsApartmentInfoStepSchema, SecurityApartmentInfoFieldsSchema, SecurityApartmentInfoStepFields, SecurityApartmentInfoStepSchema, TaxesTypes, TelecommunicationsInfoFieldsSchema, TelecommunicationsInfoStepFields, TelecommunicationsInfoStepSchema, TransferInspectionFieldsBody, TransferInspectionFormFields, TransferInspectionPostBody, TransferInspectionTypes, WaterMeterTypes, getAdditionalInfoStepFields, getApartmentPaymentFields, getBasicApartmentInfoFields, getDetailApartmentInfoFields, getFillingInfoFields, getHouseServicesInfoStep, getMetersInfoStepFields, getPartialMeterInfoFields, getPartialMeterInfoSchema, getRoomsApartmentInfoFields, getSecurityApartmentInfoFields, getTelecommunicationsInfoStepFields, inspectionsRequestBody, inspectionsRequests, renderMetersSteps, useMetersValues };
|
package/index.js
CHANGED
@@ -81,25 +81,17 @@ function __spreadArray(to, from, pack) {
|
|
81
81
|
return to.concat(ar || Array.prototype.slice.call(from));
|
82
82
|
}
|
83
83
|
|
84
|
-
var getPartialMeterInfoFields = function (resource, type, name) {
|
84
|
+
var getPartialMeterInfoFields = function (resource, type, name, settings) {
|
85
85
|
var prefixName = name ? "".concat(name, ".") : "";
|
86
86
|
if (resource === "electricity") {
|
87
87
|
return __spreadArray(__spreadArray([
|
88
|
-
{ label: "Number", name: "".concat(prefixName, "number") },
|
89
|
-
{ label: "T1 value", name: "".concat(prefixName, "T1"), type: "number" }
|
90
|
-
], addToArrayByCondition(type !== "T1", {
|
91
|
-
label: "T2 value",
|
92
|
-
name: "".concat(prefixName, "T2"),
|
93
|
-
type: "number",
|
94
|
-
}), true), addToArrayByCondition(type === "T3", {
|
95
|
-
label: "T3 value",
|
96
|
-
name: "".concat(prefixName, "T3"),
|
97
|
-
type: "number",
|
98
|
-
}), true);
|
88
|
+
__assign({ label: "Number", name: "".concat(prefixName, "number") }, settings === null || settings === void 0 ? void 0 : settings.number),
|
89
|
+
__assign({ label: "T1 value", name: "".concat(prefixName, "T1"), type: "number" }, settings === null || settings === void 0 ? void 0 : settings.t1)
|
90
|
+
], addToArrayByCondition(type !== "T1", __assign({ label: "T2 value", name: "".concat(prefixName, "T2"), type: "number" }, settings === null || settings === void 0 ? void 0 : settings.t2)), true), addToArrayByCondition(type === "T3", __assign({ label: "T3 value", name: "".concat(prefixName, "T3"), type: "number" }, settings === null || settings === void 0 ? void 0 : settings.t3)), true);
|
99
91
|
}
|
100
92
|
return [
|
101
|
-
{ label: "Number", name: "".concat(prefixName, "number") },
|
102
|
-
{ label: "Value", name: "".concat(prefixName, "value"), type: "number" },
|
93
|
+
__assign({ label: "Number", name: "".concat(prefixName, "number") }, settings === null || settings === void 0 ? void 0 : settings.number),
|
94
|
+
__assign({ label: "Value", name: "".concat(prefixName, "value"), type: "number" }, settings === null || settings === void 0 ? void 0 : settings.value),
|
103
95
|
];
|
104
96
|
};
|
105
97
|
|
@@ -215,14 +207,17 @@ var inspectionsRequestBody = {
|
|
215
207
|
? getPhoneNumberFromPhoneParams(inspection.videoControlPhone)
|
216
208
|
: null, home_phone: inspection.homePhone
|
217
209
|
? getPhoneNumberFromPhoneParams(inspection.homePhone)
|
218
|
-
: null, wifi_name: (_g = inspection.wifi) === null || _g === void 0 ? void 0 : _g.name, wifi_password: (_h = inspection.wifi) === null || _h === void 0 ? void 0 : _h.password, internet_provider_link: (_j = inspection.internetProvider) === null || _j === void 0 ? void 0 : _j.link, internet_provider_login: (_k = inspection.internetProvider) === null || _k === void 0 ? void 0 : _k.login, internet_provider_password: (_l = inspection.internetProvider) === null || _l === void 0 ? void 0 : _l.password, parking_type: inspection.parkingType, parking_number: inspection.parkingNumber, passenger_elevators_number: inspection.passengerElevatorsCount, service_elevators_number: inspection.serviceElevatorsCount, payer_code: inspection.payerCode, filling: inspection.fillingList.map(function (filling, index) {
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
210
|
+
: null, wifi_name: (_g = inspection.wifi) === null || _g === void 0 ? void 0 : _g.name, wifi_password: (_h = inspection.wifi) === null || _h === void 0 ? void 0 : _h.password, internet_provider_link: (_j = inspection.internetProvider) === null || _j === void 0 ? void 0 : _j.link, internet_provider_login: (_k = inspection.internetProvider) === null || _k === void 0 ? void 0 : _k.login, internet_provider_password: (_l = inspection.internetProvider) === null || _l === void 0 ? void 0 : _l.password, parking_type: inspection.parkingType, parking_number: inspection.parkingNumber, passenger_elevators_number: inspection.passengerElevatorsCount, service_elevators_number: inspection.serviceElevatorsCount, payer_code: inspection.payerCode, filling: inspection.fillingList.map(function (filling, index) {
|
211
|
+
var _a;
|
212
|
+
return ({
|
213
|
+
feature: ((_a = filling.tag) === null || _a === void 0 ? void 0 : _a.id) || 0,
|
214
|
+
description: filling.name,
|
215
|
+
serial_code: filling.serialNumber,
|
216
|
+
amount: filling.numberOfSubjects,
|
217
|
+
photos: fillingImages[index],
|
218
|
+
instruction: fillingFiles[index],
|
219
|
+
});
|
220
|
+
}) }, this.getInventoryInspectionMeters(inspection.meters, metersFiles)),
|
226
221
|
};
|
227
222
|
},
|
228
223
|
getInventoryInspectionMeters: function (meters, metersFiles) {
|
@@ -237,16 +232,16 @@ var inspectionsRequestBody = {
|
|
237
232
|
};
|
238
233
|
},
|
239
234
|
getMeterCommonFields: function (meter) {
|
240
|
-
var _a, _b;
|
235
|
+
var _a, _b, _c;
|
241
236
|
return {
|
242
237
|
id: meter.id,
|
243
238
|
meter_type: meter.type,
|
244
239
|
passport_number: meter.number,
|
245
240
|
resource_type: meter.resource,
|
246
|
-
activation_date: meter.startDate.toISODate(),
|
241
|
+
activation_date: ((_a = meter.startDate) === null || _a === void 0 ? void 0 : _a.toISODate()) || "",
|
247
242
|
operating_account: meter.operationalAccountNumber,
|
248
|
-
company: (
|
249
|
-
tariff: (
|
243
|
+
company: (_b = meter.company) === null || _b === void 0 ? void 0 : _b.id,
|
244
|
+
tariff: (_c = meter.tariff) === null || _c === void 0 ? void 0 : _c.id,
|
250
245
|
};
|
251
246
|
},
|
252
247
|
getMeterValues: function (initialValue, lastValue) {
|
@@ -531,6 +526,7 @@ var getAdditionalInfoStepFields = function (settings) { return __spreadArray([
|
|
531
526
|
|
532
527
|
var AdditionalInfoFieldsSchema = {
|
533
528
|
taxesType: yup.string().required(defaultRequiredMessage),
|
529
|
+
countryOfResidence: yup.string().required(defaultRequiredMessage),
|
534
530
|
};
|
535
531
|
var AdditionalInfoStepSchema = yup.object(AdditionalInfoFieldsSchema);
|
536
532
|
|
@@ -619,6 +615,18 @@ var getFillingInfoFields = function (withType, type, setType, settings) { return
|
|
619
615
|
__assign({ label: "Description", name: "name", isTextArea: true }, settings === null || settings === void 0 ? void 0 : settings.name)
|
620
616
|
], false), addToArrayByCondition(type !== "finish", __assign({ label: "Instruction", name: "instruction", variant: "custom", CustomInput: InputFileWithVisibility }, settings === null || settings === void 0 ? void 0 : settings.instruction)), true); };
|
621
617
|
|
618
|
+
var FillingInfoFieldsSchema = yup.object().shape({
|
619
|
+
type: yup.string(),
|
620
|
+
tag: yup.object({
|
621
|
+
name: yup.string().required("This is a required field"),
|
622
|
+
}),
|
623
|
+
name: yup.string().required("This is a required field"),
|
624
|
+
serialNumber: yup.string().when("type", {
|
625
|
+
is: function (value) { return value === "electronics"; },
|
626
|
+
then: function (rule) { return rule.required(defaultRequiredMessage); },
|
627
|
+
}),
|
628
|
+
});
|
629
|
+
|
622
630
|
var renderMetersSteps = function (MeterStep, maxMeters) {
|
623
631
|
var meters = __spreadArray(__spreadArray(__spreadArray(__spreadArray([], new Array(Number((maxMeters === null || maxMeters === void 0 ? void 0 : maxMeters.water) || 0)).fill("water"), true), new Array(Number((maxMeters === null || maxMeters === void 0 ? void 0 : maxMeters.electricity) || 0)).fill("electricity"), true), new Array(Number((maxMeters === null || maxMeters === void 0 ? void 0 : maxMeters.gas) || 0)).fill("gas"), true), new Array(Number((maxMeters === null || maxMeters === void 0 ? void 0 : maxMeters.heating) || 0)).fill("heating"), true);
|
624
632
|
return meters.map(function (resource, index) { return (jsx(MeterStep, { index: index, resource: resource }, index)); });
|
@@ -638,5 +646,5 @@ var useMetersValues = function (formStore, metersStore) {
|
|
638
646
|
}, [metersStore.meters, metersStore.loader.isLoading]);
|
639
647
|
};
|
640
648
|
|
641
|
-
export { AdditionalInfoFieldsSchema, AdditionalInfoStepSchema, BasicApartmentInfoFieldsSchema, BasicApartmentInfoStepSchema, DetailApartmentInfoFieldsSchema, DetailApartmentInfoStepSchema, HouseServicesInfoFieldsSchema, HouseServicesInfoStepSchema, MetersInfoFieldsSchema, MetersInfoStepSchema, RoomsApartmentInfoFieldsSchema, RoomsApartmentInfoStepSchema, SecurityApartmentInfoFieldsSchema, SecurityApartmentInfoStepSchema, TelecommunicationsInfoFieldsSchema, TelecommunicationsInfoStepSchema, getAdditionalInfoStepFields, getApartmentPaymentFields, getBasicApartmentInfoFields, getDetailApartmentInfoFields, getFillingInfoFields, getHouseServicesInfoStep, getMetersInfoStepFields, getPartialMeterInfoFields, getPartialMeterInfoSchema, getRoomsApartmentInfoFields, getSecurityApartmentInfoFields, getTelecommunicationsInfoStepFields, inspectionsRequestBody, inspectionsRequests, renderMetersSteps, useMetersValues };
|
649
|
+
export { AdditionalInfoFieldsSchema, AdditionalInfoStepSchema, BasicApartmentInfoFieldsSchema, BasicApartmentInfoStepSchema, DetailApartmentInfoFieldsSchema, DetailApartmentInfoStepSchema, FillingInfoFieldsSchema, HouseServicesInfoFieldsSchema, HouseServicesInfoStepSchema, MetersInfoFieldsSchema, MetersInfoStepSchema, RoomsApartmentInfoFieldsSchema, RoomsApartmentInfoStepSchema, SecurityApartmentInfoFieldsSchema, SecurityApartmentInfoStepSchema, TelecommunicationsInfoFieldsSchema, TelecommunicationsInfoStepSchema, getAdditionalInfoStepFields, getApartmentPaymentFields, getBasicApartmentInfoFields, getDetailApartmentInfoFields, getFillingInfoFields, getHouseServicesInfoStep, getMetersInfoStepFields, getPartialMeterInfoFields, getPartialMeterInfoSchema, getRoomsApartmentInfoFields, getSecurityApartmentInfoFields, getTelecommunicationsInfoStepFields, inspectionsRequestBody, inspectionsRequests, renderMetersSteps, useMetersValues };
|
642
650
|
//# sourceMappingURL=index.js.map
|