kui-crm_actions 0.0.101 → 0.0.103
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 +3 -1
- package/cjs/index.js.map +1 -1
- package/index.d.ts +47 -7
- package/index.js +3 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
    
        package/cjs/index.js
    CHANGED
    
    | @@ -216,6 +216,8 @@ var inspectionsRequestBody = { | |
| 216 216 | 
             
                        ceiling_height: inspection.ceilingHeight,
         | 
| 217 217 | 
             
                        building_year: inspection.buildingYear,
         | 
| 218 218 | 
             
                        type_houses: inspection.typeOfHouse,
         | 
| 219 | 
            +
                        parking_type: inspection.parkingType,
         | 
| 220 | 
            +
                        parking_number: inspection.parkingNumber,
         | 
| 219 221 | 
             
                        rooms: inspection.rooms.map(function (room, index) { return ({
         | 
| 220 222 | 
             
                            id: room.id,
         | 
| 221 223 | 
             
                            room_type: room.type,
         | 
| @@ -283,7 +285,7 @@ var inspectionsRequestBody = { | |
| 283 285 | 
             
                                ? kuiUtils.getPhoneNumberFromPhoneParams(inspection.videoControlPhone)
         | 
| 284 286 | 
             
                                : null, home_phone: inspection.homePhone
         | 
| 285 287 | 
             
                                ? kuiUtils.getPhoneNumberFromPhoneParams(inspection.homePhone)
         | 
| 286 | 
            -
                                : 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,  | 
| 288 | 
            +
                                : 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, payer_code: inspection.payerCode, filling: inspection.fillingList.map(function (filling, index) {
         | 
| 287 289 | 
             
                                var _a;
         | 
| 288 290 | 
             
                                return ({
         | 
| 289 291 | 
             
                                    feature: ((_a = filling.tag) === null || _a === void 0 ? void 0 : _a.id) || 0,
         |