kui-crm_actions 0.0.1 → 0.0.3

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 CHANGED
@@ -400,13 +400,13 @@ var inspectionsRequests = {
400
400
  },
401
401
  };
402
402
 
403
- var getBasicApartmentInfoFields = function (settings, handlePlaceSelect) { return [
404
- __assign({ name: "country", label: "Country", variant: "custom", CustomInput: kuiCrm.CountryAutocomplete, size: 12 }, settings.country),
405
- __assign({ name: "region", label: "Region", variant: "custom", CustomInput: kuiCrm.RegionAutocomplete }, settings.region),
406
- __assign({ name: "city", label: "City", variant: "custom", CustomInput: kuiCrm.CityAutocomplete }, settings.city),
407
- __assign({ name: "apartment", variant: "custom", CustomInput: kuiComplex.InputWithAddressAutocomplete, handlePlaceSelect: handlePlaceSelect, size: 12 }, settings.apartment),
408
- __assign({ label: "Apartment", name: "apartmentNumber", "data-testid": "apartment_number" }, settings.apartmentNumber),
409
- __assign({ label: "Zip code", name: "zipCode" }, settings.zipCode),
403
+ var getBasicApartmentInfoFields = function (handlePlaceSelect, settings) { return [
404
+ __assign({ name: "country", label: "Country", variant: "custom", CustomInput: kuiCrm.CountryAutocomplete, size: 12 }, settings === null || settings === void 0 ? void 0 : settings.country),
405
+ __assign({ name: "region", label: "Region", variant: "custom", CustomInput: kuiCrm.RegionAutocomplete }, settings === null || settings === void 0 ? void 0 : settings.region),
406
+ __assign({ name: "city", label: "City", variant: "custom", CustomInput: kuiCrm.CityAutocomplete }, settings === null || settings === void 0 ? void 0 : settings.city),
407
+ __assign({ name: "apartment", variant: "custom", CustomInput: kuiComplex.InputWithAddressAutocomplete, handlePlaceSelect: handlePlaceSelect, size: 12 }, settings === null || settings === void 0 ? void 0 : settings.apartment),
408
+ __assign({ label: "Apartment", name: "apartmentNumber", "data-testid": "apartment_number" }, settings === null || settings === void 0 ? void 0 : settings.apartmentNumber),
409
+ __assign({ label: "Zip code", name: "zipCode" }, settings === null || settings === void 0 ? void 0 : settings.zipCode),
410
410
  ]; };
411
411
 
412
412
  var BasicApartmentInfoFieldsSchema = {
@@ -424,29 +424,29 @@ var BasicApartmentInfoStepSchema = yup__namespace.object(BasicApartmentInfoField
424
424
  var inputProps = {
425
425
  step: 0.1,
426
426
  };
427
- var getDetailApartmentInfoFields = function (settings, roomsCount) {
427
+ var getDetailApartmentInfoFields = function (roomsCount, settings) {
428
428
  var _a, _b;
429
429
  return __spreadArray(__spreadArray([
430
- __assign(__assign({ label: "Total area", name: "area", type: "number" }, inputProps), settings.area),
431
- __assign(__assign({ label: "Living area", name: "livingArea", type: "number" }, inputProps), settings.livingArea),
432
- __assign(__assign({ label: "Kitchen area", name: "kitchenArea", type: "number" }, inputProps), settings.kitchenArea)
430
+ __assign(__assign({ label: "Total area", name: "area", type: "number" }, inputProps), settings === null || settings === void 0 ? void 0 : settings.area),
431
+ __assign(__assign({ label: "Living area", name: "livingArea", type: "number" }, inputProps), settings === null || settings === void 0 ? void 0 : settings.livingArea),
432
+ __assign(__assign({ label: "Kitchen area", name: "kitchenArea", type: "number" }, inputProps), settings === null || settings === void 0 ? void 0 : settings.kitchenArea)
433
433
  ], (roomsCount
434
434
  ? new Array(Number(roomsCount))
435
435
  .fill(0)
436
436
  .map(function (_, key) {
437
437
  var _a, _b;
438
438
  return [
439
- __assign(__assign({ name: "rooms.".concat(key, ".area"), label: "Room ".concat(key + 1, " area"), type: "number" }, inputProps), (settings.rooms ? (_a = settings.rooms(key)) === null || _a === void 0 ? void 0 : _a.area : {})),
440
- __assign({ name: "rooms.".concat(key, ".type"), label: "Room ".concat(key + 1, " type"), variant: "select", options: kuiCrm.RoomTypeValues }, (settings.rooms ? (_b = settings.rooms(key)) === null || _b === void 0 ? void 0 : _b.type : {})),
439
+ __assign(__assign({ name: "rooms.".concat(key, ".area"), label: "Room ".concat(key + 1, " area"), type: "number" }, inputProps), ((settings === null || settings === void 0 ? void 0 : settings.rooms) ? (_a = settings.rooms(key)) === null || _a === void 0 ? void 0 : _a.area : {})),
440
+ __assign({ name: "rooms.".concat(key, ".type"), label: "Room ".concat(key + 1, " type"), variant: "select", options: kuiCrm.RoomTypeValues }, ((settings === null || settings === void 0 ? void 0 : settings.rooms) ? (_b = settings.rooms(key)) === null || _b === void 0 ? void 0 : _b.type : {})),
441
441
  ];
442
442
  })
443
443
  .flat()
444
444
  : []), true), [
445
- __assign(__assign({ name: "ceilingHeight", label: "Ceiling height", type: "number" }, inputProps), settings.ceilingHeight),
446
- __assign({ name: "numberOfWindows", label: "Windows", type: "number" }, settings.numberOfWindows),
447
- __assign({ name: "renovation.year", label: "Year of last renovation", type: "number" }, settings.renovation.year),
448
- __assign({ name: "renovation.type", label: "Type of renovation", variant: "select", options: kuiCrm.RenovationTypeValues }, (_a = settings.renovation) === null || _a === void 0 ? void 0 : _a.type),
449
- __assign({ name: "renovation.style", label: "Renovation style", variant: "select", options: kuiCrm.RenovationStyleValues }, (_b = settings.renovation) === null || _b === void 0 ? void 0 : _b.style),
445
+ __assign(__assign({ name: "ceilingHeight", label: "Ceiling height", type: "number" }, inputProps), settings === null || settings === void 0 ? void 0 : settings.ceilingHeight),
446
+ __assign({ name: "numberOfWindows", label: "Windows", type: "number" }, settings === null || settings === void 0 ? void 0 : settings.numberOfWindows),
447
+ __assign({ name: "renovation.year", label: "Year of last renovation", type: "number" }, settings === null || settings === void 0 ? void 0 : settings.renovation.year),
448
+ __assign({ name: "renovation.type", label: "Type of renovation", variant: "select", options: kuiCrm.RenovationTypeValues }, (_a = settings === null || settings === void 0 ? void 0 : settings.renovation) === null || _a === void 0 ? void 0 : _a.type),
449
+ __assign({ name: "renovation.style", label: "Renovation style", variant: "select", options: kuiCrm.RenovationStyleValues }, (_b = settings === null || settings === void 0 ? void 0 : settings.renovation) === null || _b === void 0 ? void 0 : _b.style),
450
450
  ], false);
451
451
  };
452
452
 
@@ -469,13 +469,13 @@ var DetailApartmentInfoFieldsSchema = {
469
469
  var DetailApartmentInfoStepSchema = yup__namespace.object(DetailApartmentInfoFieldsSchema);
470
470
 
471
471
  var getRoomsApartmentInfoFields = function (settings) { return [
472
- __assign({ label: "Floor", name: "floor", type: "number" }, settings.floor),
473
- __assign({ label: "Floors", name: "floorCount", type: "number" }, settings.floorCount),
474
- __assign({ label: "Rooms", name: "roomsNumber", type: "number" }, settings.roomsNumber),
475
- __assign({ label: "Bedrooms", name: "bedroomsNumber", type: "number" }, settings.bedroomsNumber),
476
- __assign({ label: "Bathrooms", name: "bathroomsNumber", type: "number" }, settings.bathroomsNumber),
477
- __assign({ label: "Restrooms", name: "restroomsNumber", type: "number" }, settings.restroomsNumber),
478
- __assign({ label: "Combined bathroom", name: "combinedBathroomsNumber", type: "number" }, settings.combinedBathroomsNumber),
472
+ __assign({ label: "Floor", name: "floor", type: "number" }, settings === null || settings === void 0 ? void 0 : settings.floor),
473
+ __assign({ label: "Floors", name: "floorCount", type: "number" }, settings === null || settings === void 0 ? void 0 : settings.floorCount),
474
+ __assign({ label: "Rooms", name: "roomsNumber", type: "number" }, settings === null || settings === void 0 ? void 0 : settings.roomsNumber),
475
+ __assign({ label: "Bedrooms", name: "bedroomsNumber", type: "number" }, settings === null || settings === void 0 ? void 0 : settings.bedroomsNumber),
476
+ __assign({ label: "Bathrooms", name: "bathroomsNumber", type: "number" }, settings === null || settings === void 0 ? void 0 : settings.bathroomsNumber),
477
+ __assign({ label: "Restrooms", name: "restroomsNumber", type: "number" }, settings === null || settings === void 0 ? void 0 : settings.restroomsNumber),
478
+ __assign({ label: "Combined bathroom", name: "combinedBathroomsNumber", type: "number" }, settings === null || settings === void 0 ? void 0 : settings.combinedBathroomsNumber),
479
479
  ]; };
480
480
 
481
481
  var RoomsApartmentInfoFieldsSchema = {
@@ -516,12 +516,12 @@ var RoomsApartmentInfoFieldsSchema = {
516
516
  var RoomsApartmentInfoStepSchema = yup__namespace.object(RoomsApartmentInfoFieldsSchema);
517
517
 
518
518
  var getSecurityApartmentInfoFields = function (settings) { return [
519
- __assign({ label: "Object type", name: "typeOfRoom", variant: "select", options: kuiCrm.RoomTypesValues }, settings.typeOfRoom),
520
- __assign({ label: "Entrance", name: "entrance" }, settings.entrance),
521
- __assign({ name: "hasIntercom", label: "Intercom", variant: "select", options: kuiCrm.BooleanValues }, settings.hasIntercom),
522
- __assign({ name: "intercomCode", label: "Intercom code", variant: "custom", CustomInput: kuiComplex.DependentInput, dependentInputName: "hasIntercom" }, settings.intercomCode),
523
- __assign({ name: "hasGate", label: "Gate", variant: "select", options: kuiCrm.BooleanValues }, settings.hasGate),
524
- __assign({ name: "gateCode", label: "Gate code", variant: "custom", CustomInput: kuiComplex.DependentInput, dependentInputName: "hasGate" }, settings.gateCode),
519
+ __assign({ label: "Object type", name: "typeOfRoom", variant: "select", options: kuiCrm.RoomTypesValues }, settings === null || settings === void 0 ? void 0 : settings.typeOfRoom),
520
+ __assign({ label: "Entrance", name: "entrance" }, settings === null || settings === void 0 ? void 0 : settings.entrance),
521
+ __assign({ name: "hasIntercom", label: "Intercom", variant: "select", options: kuiCrm.BooleanValues }, settings === null || settings === void 0 ? void 0 : settings.hasIntercom),
522
+ __assign({ name: "intercomCode", label: "Intercom code", variant: "custom", CustomInput: kuiComplex.DependentInput, dependentInputName: "hasIntercom" }, settings === null || settings === void 0 ? void 0 : settings.intercomCode),
523
+ __assign({ name: "hasGate", label: "Gate", variant: "select", options: kuiCrm.BooleanValues }, settings === null || settings === void 0 ? void 0 : settings.hasGate),
524
+ __assign({ name: "gateCode", label: "Gate code", variant: "custom", CustomInput: kuiComplex.DependentInput, dependentInputName: "hasGate" }, settings === null || settings === void 0 ? void 0 : settings.gateCode),
525
525
  ]; };
526
526
 
527
527
  var SecurityApartmentInfoFieldsSchema = {
@@ -538,16 +538,16 @@ var checkboxLabelProps = {
538
538
  size: "s",
539
539
  };
540
540
  var getApartmentPaymentFields = function (settings) { return [
541
- __assign({ name: "payerCode", label: "Payer code" }, settings.payerCode),
542
- __assign({ name: "communalServicesAccount", label: "Operational account number" }, settings.communalServicesAccount),
543
- __assign({ name: "company", label: "Administrative company", variant: "custom", CustomInput: kuiCrm.CompanyAutocomplete }, settings.company),
544
- __assign({ name: "countryOfResidence", label: "Country of Residence", variant: "custom", CustomInput: kuiCrm.CountryAutocomplete }, settings.countryOfResidence),
545
- __assign({ label: "Tax type", name: "taxesType", variant: "select", options: kuiCrm.TaxTypeValues }, settings.taxesType),
541
+ __assign({ name: "payerCode", label: "Payer code" }, settings === null || settings === void 0 ? void 0 : settings.payerCode),
542
+ __assign({ name: "communalServicesAccount", label: "Operational account number" }, settings === null || settings === void 0 ? void 0 : settings.communalServicesAccount),
543
+ __assign({ name: "company", label: "Administrative company", variant: "custom", CustomInput: kuiCrm.CompanyAutocomplete }, settings === null || settings === void 0 ? void 0 : settings.company),
544
+ __assign({ name: "countryOfResidence", label: "Country of Residence", variant: "custom", CustomInput: kuiCrm.CountryAutocomplete }, settings === null || settings === void 0 ? void 0 : settings.countryOfResidence),
545
+ __assign({ label: "Tax type", name: "taxesType", variant: "select", options: kuiCrm.TaxTypeValues }, settings === null || settings === void 0 ? void 0 : settings.taxesType),
546
546
  ]; };
547
547
  var getAdditionalInfoStepFields = function (settings) { return __spreadArray([
548
- __assign({ label: "Pets", name: "withPets", variant: "custom", CustomInput: kuiComplex.CheckboxWithController, labelProps: checkboxLabelProps }, settings.withPets),
549
- __assign({ label: "Children", name: "withChildren", variant: "custom", CustomInput: kuiComplex.CheckboxWithController, labelProps: checkboxLabelProps }, settings.withChildren),
550
- __assign({ isTextArea: true, placeholder: "other terms", name: "additionalTerms" }, settings.additionalTerms)
548
+ __assign({ label: "Pets", name: "withPets", variant: "custom", CustomInput: kuiComplex.CheckboxWithController, labelProps: checkboxLabelProps }, settings === null || settings === void 0 ? void 0 : settings.withPets),
549
+ __assign({ label: "Children", name: "withChildren", variant: "custom", CustomInput: kuiComplex.CheckboxWithController, labelProps: checkboxLabelProps }, settings === null || settings === void 0 ? void 0 : settings.withChildren),
550
+ __assign({ isTextArea: true, placeholder: "other terms", name: "additionalTerms" }, settings === null || settings === void 0 ? void 0 : settings.additionalTerms)
551
551
  ], getApartmentPaymentFields(settings), true); };
552
552
 
553
553
  var AdditionalInfoFieldsSchema = {
@@ -556,18 +556,18 @@ var AdditionalInfoFieldsSchema = {
556
556
  var AdditionalInfoStepSchema = yup__namespace.object(AdditionalInfoFieldsSchema);
557
557
 
558
558
  var getHouseServicesInfoStep = function (settings) { return [
559
- __assign({ name: "hasBarrier", label: "Barrier", variant: "select", options: kuiCrm.BooleanValues }, settings.hasBarrier),
560
- __assign({ name: "barrierPhone", label: "Barrier code", variant: "custom", CustomInput: kuiComplex.DependentInput, dependentInputName: "hasBarrier", Input: kuiComplex.InputPhoneWithForm }, settings.barrierPhone),
561
- __assign({ name: "hasConcierge", label: "Concierge", variant: "select", options: kuiCrm.BooleanValues }, settings.hasConcierge),
562
- __assign({ name: "conciergePhone", label: "Concierge", variant: "custom", CustomInput: kuiComplex.DependentInput, dependentInputName: "hasConcierge", Input: kuiComplex.InputPhoneWithForm }, settings.conciergePhone),
563
- __assign({ name: "hasSecurity", label: "Security", variant: "select", options: kuiCrm.BooleanValues }, settings.hasSecurity),
564
- __assign({ name: "securityPhone", label: "Security", variant: "custom", CustomInput: kuiComplex.DependentInput, dependentInputName: "hasSecurity", Input: kuiComplex.InputPhoneWithForm }, settings.securityPhone),
565
- __assign({ name: "hasVideoControl", label: "Video surveillance", variant: "select", options: kuiCrm.BooleanValues }, settings.hasVideoControl),
566
- __assign({ name: "videoControlPhone", label: "Video surveillance", variant: "custom", CustomInput: kuiComplex.DependentInput, dependentInputName: "hasVideoControl", Input: kuiComplex.InputPhoneWithForm }, settings.videoControlPhone),
567
- __assign({ name: "parkingType", label: "Parking", variant: "select", options: kuiCrm.ParkingTypesValues }, settings.parkingType),
568
- __assign({ name: "parkingNumber", label: "Parking number", variant: "custom", CustomInput: kuiComplex.DependentInput, dependentInputName: "parkingType" }, settings.parkingNumber),
569
- __assign({ name: "passengerElevatorsCount", label: "Passenger elevators", type: "number" }, settings.passengerElevatorsCount),
570
- __assign({ name: "serviceElevatorsCount", label: "Service elevators", type: "number" }, settings.serviceElevatorsCount),
559
+ __assign({ name: "hasBarrier", label: "Barrier", variant: "select", options: kuiCrm.BooleanValues }, settings === null || settings === void 0 ? void 0 : settings.hasBarrier),
560
+ __assign({ name: "barrierPhone", label: "Barrier code", variant: "custom", CustomInput: kuiComplex.DependentInput, dependentInputName: "hasBarrier", Input: kuiComplex.InputPhoneWithForm }, settings === null || settings === void 0 ? void 0 : settings.barrierPhone),
561
+ __assign({ name: "hasConcierge", label: "Concierge", variant: "select", options: kuiCrm.BooleanValues }, settings === null || settings === void 0 ? void 0 : settings.hasConcierge),
562
+ __assign({ name: "conciergePhone", label: "Concierge", variant: "custom", CustomInput: kuiComplex.DependentInput, dependentInputName: "hasConcierge", Input: kuiComplex.InputPhoneWithForm }, settings === null || settings === void 0 ? void 0 : settings.conciergePhone),
563
+ __assign({ name: "hasSecurity", label: "Security", variant: "select", options: kuiCrm.BooleanValues }, settings === null || settings === void 0 ? void 0 : settings.hasSecurity),
564
+ __assign({ name: "securityPhone", label: "Security", variant: "custom", CustomInput: kuiComplex.DependentInput, dependentInputName: "hasSecurity", Input: kuiComplex.InputPhoneWithForm }, settings === null || settings === void 0 ? void 0 : settings.securityPhone),
565
+ __assign({ name: "hasVideoControl", label: "Video surveillance", variant: "select", options: kuiCrm.BooleanValues }, settings === null || settings === void 0 ? void 0 : settings.hasVideoControl),
566
+ __assign({ name: "videoControlPhone", label: "Video surveillance", variant: "custom", CustomInput: kuiComplex.DependentInput, dependentInputName: "hasVideoControl", Input: kuiComplex.InputPhoneWithForm }, settings === null || settings === void 0 ? void 0 : settings.videoControlPhone),
567
+ __assign({ name: "parkingType", label: "Parking", variant: "select", options: kuiCrm.ParkingTypesValues }, settings === null || settings === void 0 ? void 0 : settings.parkingType),
568
+ __assign({ name: "parkingNumber", label: "Parking number", variant: "custom", CustomInput: kuiComplex.DependentInput, dependentInputName: "parkingType" }, settings === null || settings === void 0 ? void 0 : settings.parkingNumber),
569
+ __assign({ name: "passengerElevatorsCount", label: "Passenger elevators", type: "number" }, settings === null || settings === void 0 ? void 0 : settings.passengerElevatorsCount),
570
+ __assign({ name: "serviceElevatorsCount", label: "Service elevators", type: "number" }, settings === null || settings === void 0 ? void 0 : settings.serviceElevatorsCount),
571
571
  ]; };
572
572
 
573
573
  var HouseServicesInfoFieldsSchema = {
@@ -596,10 +596,10 @@ var metersOptions = kuiCrm.getNumbersValues(7);
596
596
  var getMetersInfoStepFields = function (settings) {
597
597
  var _a, _b, _c, _d;
598
598
  return [
599
- __assign({ name: "maxMeters.water", label: "Water", variant: "select", options: metersOptions }, (_a = settings.maxMeters) === null || _a === void 0 ? void 0 : _a.water),
600
- __assign({ name: "maxMeters.electricity", label: "Electricity", variant: "select", options: metersOptions }, (_b = settings.maxMeters) === null || _b === void 0 ? void 0 : _b.electricity),
601
- __assign({ name: "maxMeters.gas", label: "Gas", variant: "select", options: metersOptions }, (_c = settings.maxMeters) === null || _c === void 0 ? void 0 : _c.gas),
602
- __assign({ name: "maxMeters.heating", label: "Heating", variant: "select", options: metersOptions }, (_d = settings.maxMeters) === null || _d === void 0 ? void 0 : _d.heating),
599
+ __assign({ name: "maxMeters.water", label: "Water", variant: "select", options: metersOptions }, (_a = settings === null || settings === void 0 ? void 0 : settings.maxMeters) === null || _a === void 0 ? void 0 : _a.water),
600
+ __assign({ name: "maxMeters.electricity", label: "Electricity", variant: "select", options: metersOptions }, (_b = settings === null || settings === void 0 ? void 0 : settings.maxMeters) === null || _b === void 0 ? void 0 : _b.electricity),
601
+ __assign({ name: "maxMeters.gas", label: "Gas", variant: "select", options: metersOptions }, (_c = settings === null || settings === void 0 ? void 0 : settings.maxMeters) === null || _c === void 0 ? void 0 : _c.gas),
602
+ __assign({ name: "maxMeters.heating", label: "Heating", variant: "select", options: metersOptions }, (_d = settings === null || settings === void 0 ? void 0 : settings.maxMeters) === null || _d === void 0 ? void 0 : _d.heating),
603
603
  ];
604
604
  };
605
605
 
@@ -616,13 +616,13 @@ var MetersInfoStepSchema = yup__namespace.object(MetersInfoFieldsSchema);
616
616
  var getTelecommunicationsInfoStepFields = function (settings) {
617
617
  var _a, _b, _c, _d, _e;
618
618
  return [
619
- __assign({ name: "wifi.name", label: "Name of network" }, (_a = settings.wifi) === null || _a === void 0 ? void 0 : _a.name),
620
- __assign({ name: "wifi.password", label: "WiFi password" }, (_b = settings.wifi) === null || _b === void 0 ? void 0 : _b.password),
621
- __assign({ name: "internetProvider.link", label: "Link to provider", size: 12 }, (_c = settings.internetProvider) === null || _c === void 0 ? void 0 : _c.link),
622
- __assign({ name: "internetProvider.login", label: "Login" }, (_d = settings.internetProvider) === null || _d === void 0 ? void 0 : _d.login),
623
- __assign({ name: "internetProvider.password", label: "Password" }, (_e = settings.internetProvider) === null || _e === void 0 ? void 0 : _e.password),
624
- __assign({ name: "tvType", label: "Television", variant: "select", options: kuiCrm.TVTypesValues }, settings.tvType),
625
- __assign({ name: "homePhone", label: "Home phone", variant: "phone" }, settings.homePhone),
619
+ __assign({ name: "wifi.name", label: "Name of network" }, (_a = settings === null || settings === void 0 ? void 0 : settings.wifi) === null || _a === void 0 ? void 0 : _a.name),
620
+ __assign({ name: "wifi.password", label: "WiFi password" }, (_b = settings === null || settings === void 0 ? void 0 : settings.wifi) === null || _b === void 0 ? void 0 : _b.password),
621
+ __assign({ name: "internetProvider.link", label: "Link to provider", size: 12 }, (_c = settings === null || settings === void 0 ? void 0 : settings.internetProvider) === null || _c === void 0 ? void 0 : _c.link),
622
+ __assign({ name: "internetProvider.login", label: "Login" }, (_d = settings === null || settings === void 0 ? void 0 : settings.internetProvider) === null || _d === void 0 ? void 0 : _d.login),
623
+ __assign({ name: "internetProvider.password", label: "Password" }, (_e = settings === null || settings === void 0 ? void 0 : settings.internetProvider) === null || _e === void 0 ? void 0 : _e.password),
624
+ __assign({ name: "tvType", label: "Television", variant: "select", options: kuiCrm.TVTypesValues }, settings === null || settings === void 0 ? void 0 : settings.tvType),
625
+ __assign({ name: "homePhone", label: "Home phone", variant: "phone" }, settings === null || settings === void 0 ? void 0 : settings.homePhone),
626
626
  ];
627
627
  };
628
628