[2025-06-19 17:46:10] production.INFO: {'changed': True, 'stdout': 'Updating f35108e..924b770\nFast-forward\n app/Http/Controllers/ComunicacionController.php | 32 +++-\n app/Http/Controllers/ConfigController.php | 5 +-\n app/Http/Controllers/ViewController.php | 4 +-\n app/Http/Requests/UpdateConfigRequest.php | 3 +-\n app/Models/ComuniacionItem.php | 6 +\n app/Models/ItemTranslation.php | 19 ++\n app/Models/Solicitud.php | 4 +\n app/Models/SolicitudCondicionDesembolso.php | 16 ++\n app/Models/ValoresMultaMora.php | 6 +\n .../Config/ConfigurationRepository.php | 60 ++++--\n .../AbstractComunicacionesRepository.php | 9 +-\n .../Comunicacion/AbstractComunicacionService.php | 4 +-\n app/Services/Comunicacion/ComunicacionService.php | 16 +-\n app/Services/Comunicacion/EmailService.php | 8 +-\n app/Services/Comunicacion/LlamadaService.php | 8 +-\n app/Services/Comunicacion/SmsService.php | 8 +-\n app/Services/Comunicacion/WspTemplateService.php | 8 +-\n app/Services/ConfigService/ConfigService.php | 113 +++++++++--\n app/Services/Imputacion/ImputarConProyeccion.php | 1 +\n app/Services/Items/AbstractItem.php | 2 +-\n app/Services/Items/ItemLlamada.php | 3 +-\n app/Services/Items/ItemMail.php | 3 +-\n app/Services/Items/ItemSMS.php | 3 +-\n app/Services/Items/ItemWsp.php | 3 +-\n app/Services/Reproceso/Reproceso.php | 119 +++++++++---\n database/factories/ComuniacionItemFactory.php | 44 +++++\n database/factories/CustomerCallHistoryFactory.php | 44 +++++\n database/factories/ItemConfigFactory.php | 22 +++\n database/factories/LoggingProcessFactory.php | 25 +++\n database/factories/SentClientEmailFactory.php | 33 ++++\n database/factories/SentClientSmsFactory.php | 34 ++++\n database/factories/SentClientTemplateFactory.php | 35 ++++\n phpunit.xml | 3 +\n resources/views/components/config-btn.blade.php | 29 ++-\n .../views/components/credit/credit-info.blade.php | 6 +-\n .../modal-comunicacion-whatsapp.blade.php | 2 +-\n tests/Feature/Models/CreditoTest.php | 117 ++++++++++++\n .../ComunicacionItemRepositoryTest.php | 123 ++++++++++++\n .../Config/ConfigurationRepositoryTest.php | 70 +++++++\n .../AbstractComunicacionesRepositoryTest.php | 110 +++++++++++\n .../SentClientEmailRepositoryTest.php | 88 +++++++++\n .../SentClientLlamadaRepositoryTest.php | 108 +++++++++++\n .../comunicaciones/SentClientSmsRepositoryTest.php | 87 +++++++++\n .../SentClientTemplateRepositoryTest.php | 84 +++++++++\n .../Services/ConfigService/ConfigServiceTest.php | 33 ++++\n .../Feature/Services/Imputacion/ImputacionTest.php | 116 ++++++++++++\n tests/Feature/Services/LogManager/LogManager.php | 188 ++++++++++++++++++\n .../AbstractComunicacionServiceTest.php | 134 +++++++++++++\n .../Services/ConfigService/ConfigServiceTest.php | 210 +++++++++++++++++++++\n .../CreditoDetalleServiceTest.php | 80 ++++++++\n 50 files changed, 2181 insertions(+), 107 deletions(-)\n create mode 100644 app/Models/ItemTranslation.php\n create mode 100644 app/Models/SolicitudCondicionDesembolso.php\n create mode 100644 database/factories/ComuniacionItemFactory.php\n create mode 100644 database/factories/CustomerCallHistoryFactory.php\n create mode 100644 database/factories/ItemConfigFactory.php\n create mode 100644 database/factories/LoggingProcessFactory.php\n create mode 100644 database/factories/SentClientEmailFactory.php\n create mode 100644 database/factories/SentClientSmsFactory.php\n create mode 100644 database/factories/SentClientTemplateFactory.php\n create mode 100644 tests/Feature/Models/CreditoTest.php\n create mode 100644 tests/Feature/Repositories/ComunicacionItem/ComunicacionItemRepositoryTest.php\n create mode 100644 tests/Feature/Repositories/Config/ConfigurationRepositoryTest.php\n create mode 100644 tests/Feature/Repositories/comunicaciones/AbstractComunicacionesRepositoryTest.php\n create mode 100644 tests/Feature/Repositories/comunicaciones/SentClientEmailRepositoryTest.php\n create mode 100644 tests/Feature/Repositories/comunicaciones/SentClientLlamadaRepositoryTest.php\n create mode 100644 tests/Feature/Repositories/comunicaciones/SentClientSmsRepositoryTest.php\n create mode 100644 tests/Feature/Repositories/comunicaciones/SentClientTemplateRepositoryTest.php\n create mode 100644 tests/Feature/Services/ConfigService/ConfigServiceTest.php\n create mode 100644 tests/Feature/Services/Imputacion/ImputacionTest.php\n create mode 100644 tests/Feature/Services/LogManager/LogManager.php\n create mode 100644 tests/Unit/Services/Comunicacion/AbstractComunicacionServiceTest.php\n create mode 100644 tests/Unit/Services/ConfigService/ConfigServiceTest.php\n create mode 100644 tests/Unit/Services/CreditoDetalleService/CreditoDetalleServiceTest.php\nApplication cache cleared!\nConfiguration cache cleared!', 'stderr': 'From github.com:solventa-sas/credimanage\n * branch master -> FETCH_HEAD\n f35108e..924b770 master -> origin/master', 'rc': 0, 'cmd': 'cd /var/www/html/credimanage.solventa.mx/ && git pull origin master && docker-compose exec web php artisan cache:clear && docker-compose exec web php artisan config:clear\n', 'start': '2025-06-19 14:46:04.759916', 'end': '2025-06-19 14:46:06.013180', 'delta': '0:00:01.253264', 'msg': '', 'stdout_lines': ['Updating f35108e..924b770', 'Fast-forward', ' app/Http/Controllers/ComunicacionController.php | 32 +++-', ' app/Http/Controllers/ConfigController.php | 5 +-', ' app/Http/Controllers/ViewController.php | 4 +-', ' app/Http/Requests/UpdateConfigRequest.php | 3 +-', ' app/Models/ComuniacionItem.php | 6 +', ' app/Models/ItemTranslation.php | 19 ++', ' app/Models/Solicitud.php | 4 +', ' app/Models/SolicitudCondicionDesembolso.php | 16 ++', ' app/Models/ValoresMultaMora.php | 6 +', ' .../Config/ConfigurationRepository.php | 60 ++++--', ' .../AbstractComunicacionesRepository.php | 9 +-', ' .../Comunicacion/AbstractComunicacionService.php | 4 +-', ' app/Services/Comunicacion/ComunicacionService.php | 16 +-', ' app/Services/Comunicacion/EmailService.php | 8 +-', ' app/Services/Comunicacion/LlamadaService.php | 8 +-', ' app/Services/Comunicacion/SmsService.php | 8 +-', ' app/Services/Comunicacion/WspTemplateService.php | 8 +-', ' app/Services/ConfigService/ConfigService.php | 113 +++++++++--', ' app/Services/Imputacion/ImputarConProyeccion.php | 1 +', ' app/Services/Items/AbstractItem.php | 2 +-', ' app/Services/Items/ItemLlamada.php | 3 +-', ' app/Services/Items/ItemMail.php | 3 +-', ' app/Services/Items/ItemSMS.php | 3 +-', ' app/Services/Items/ItemWsp.php | 3 +-', ' app/Services/Reproceso/Reproceso.php | 119 +++++++++---', ' database/factories/ComuniacionItemFactory.php | 44 +++++', ' database/factories/CustomerCallHistoryFactory.php | 44 +++++', ' database/factories/ItemConfigFactory.php | 22 +++', ' database/factories/LoggingProcessFactory.php | 25 +++', ' database/factories/SentClientEmailFactory.php | 33 ++++', ' database/factories/SentClientSmsFactory.php | 34 ++++', ' database/factories/SentClientTemplateFactory.php | 35 ++++', ' phpunit.xml | 3 +', ' resources/views/components/config-btn.blade.php | 29 ++-', ' .../views/components/credit/credit-info.blade.php | 6 +-', ' .../modal-comunicacion-whatsapp.blade.php | 2 +-', ' tests/Feature/Models/CreditoTest.php | 117 ++++++++++++', ' .../ComunicacionItemRepositoryTest.php | 123 ++++++++++++', ' .../Config/ConfigurationRepositoryTest.php | 70 +++++++', ' .../AbstractComunicacionesRepositoryTest.php | 110 +++++++++++', ' .../SentClientEmailRepositoryTest.php | 88 +++++++++', ' .../SentClientLlamadaRepositoryTest.php | 108 +++++++++++', ' .../comunicaciones/SentClientSmsRepositoryTest.php | 87 +++++++++', ' .../SentClientTemplateRepositoryTest.php | 84 +++++++++', ' .../Services/ConfigService/ConfigServiceTest.php | 33 ++++', ' .../Feature/Services/Imputacion/ImputacionTest.php | 116 ++++++++++++', ' tests/Feature/Services/LogManager/LogManager.php | 188 ++++++++++++++++++', ' .../AbstractComunicacionServiceTest.php | 134 +++++++++++++', ' .../Services/ConfigService/ConfigServiceTest.php | 210 +++++++++++++++++++++', ' .../CreditoDetalleServiceTest.php | 80 ++++++++', ' 50 files changed, 2181 insertions(+), 107 deletions(-)', ' create mode 100644 app/Models/ItemTranslation.php', ' create mode 100644 app/Models/SolicitudCondicionDesembolso.php', ' create mode 100644 database/factories/ComuniacionItemFactory.php', ' create mode 100644 database/factories/CustomerCallHistoryFactory.php', ' create mode 100644 database/factories/ItemConfigFactory.php', ' create mode 100644 database/factories/LoggingProcessFactory.php', ' create mode 100644 database/factories/SentClientEmailFactory.php', ' create mode 100644 database/factories/SentClientSmsFactory.php', ' create mode 100644 database/factories/SentClientTemplateFactory.php', ' create mode 100644 tests/Feature/Models/CreditoTest.php', ' create mode 100644 tests/Feature/Repositories/ComunicacionItem/ComunicacionItemRepositoryTest.php', ' create mode 100644 tests/Feature/Repositories/Config/ConfigurationRepositoryTest.php', ' create mode 100644 tests/Feature/Repositories/comunicaciones/AbstractComunicacionesRepositoryTest.php', ' create mode 100644 tests/Feature/Repositories/comunicaciones/SentClientEmailRepositoryTest.php', ' create mode 100644 tests/Feature/Repositories/comunicaciones/SentClientLlamadaRepositoryTest.php', ' create mode 100644 tests/Feature/Repositories/comunicaciones/SentClientSmsRepositoryTest.php', ' create mode 100644 tests/Feature/Repositories/comunicaciones/SentClientTemplateRepositoryTest.php', ' create mode 100644 tests/Feature/Services/ConfigService/ConfigServiceTest.php', ' create mode 100644 tests/Feature/Services/Imputacion/ImputacionTest.php', ' create mode 100644 tests/Feature/Services/LogManager/LogManager.php', ' create mode 100644 tests/Unit/Services/Comunicacion/AbstractComunicacionServiceTest.php', ' create mode 100644 tests/Unit/Services/ConfigService/ConfigServiceTest.php', ' create mode 100644 tests/Unit/Services/CreditoDetalleService/CreditoDetalleServiceTest.php', 'Application cache cleared!', 'Configuration cache cleared!'], 'stderr_lines': ['From github.com:solventa-sas/credimanage', ' * branch master -> FETCH_HEAD', ' f35108e..924b770 master -> origin/master'], 'failed': False}