diff --git a/CHANGELOG.md b/CHANGELOG.md
index 76e73228..79019c8b 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,53 @@
# CHANGELOG - siip-whatsapp-notifications
+## VERSIÓN 4.2.0 - 17-01-2026
+### 🚀 Nuevas Características (Features)
+1. **Visualizador de Pagos Mensuales**:
+ * Nueva sección en el portal administrativo para análisis visual de pagos.
+ * Selector de mes para consultar estadísticas de cualquier período.
+ * Tarjetas estadísticas mostrando: Total de clientes activos, Clientes que pagaron, Clientes pendientes.
+ * Gráfica de dona (doughnut) interactiva con Chart.js mostrando proporción de pagos.
+ * Tabla detallada de clientes pendientes con información de saldo.
+ * Cálculo automático de porcentajes de completitud.
+ * Loader/spinner animado mientras se cargan los datos.
+
+2. **Integración de Microservicio para Metadata de Stripe**:
+ * Nuevo microservicio Node.js (`vouchers-oxxopay-generator-service`) con acceso directo a la base de datos UCRM.
+ * Endpoint `/stripe-metadata/:id` para obtener metadata de pagos Stripe que no está disponible en la API de UCRM.
+ * Endpoint `/payments/:id/user` para actualizar el `userId` de pagos vía SQL directo (campo no modificable por API).
+ * Configuración mediante archivo `.env` para credenciales de base de datos.
+
+### 🔵 Mejoras (Enhancements)
+1. **Sincronización Mejorada con CallBell**:
+ * Fix crítico en sincronización de saldo: Ahora se actualiza correctamente en CallBell cuando se agregan facturas.
+ * Logging detallado agregado a `onlyUpdate()` para diagnóstico de sincronización.
+ * Comparación inteligente de campos para evitar PATCH innecesarios.
+ * Sincronización automática al agregar/editar facturas (`invoice.add`, `invoice.edit`).
+ * Sincronización automática al editar servicios (`service.edit`, `service.suspend`, etc.).
+
+2. **Mejora en Categorización de Pagos Stripe**:
+ * Lógica mejorada en `ensureStripePaymentAttribute()` para asignar correctamente el atributo `tipoPagoStripe`.
+ * Normalización de valores de metadata: "OXXO" → "OXXO Pay" para coincidir con opciones de UCRM.
+ * Prioridad a metadata obtenida del microservicio sobre adivinación por nombre de método.
+ * Fix de validación 422 para pagos OXXO que fallaban por valor de atributo no válido.
+
+3. **Configuración para Producción**:
+ * Archivo `.env` agregado al microservicio con todas las credenciales de base de datos.
+ * `docker-compose.yml` refactorizado para usar variables de entorno desde `.env`.
+ * Red Docker `unms_internal` configurada para comunicación segura entre servicios.
+ * Puerto 5432 de PostgreSQL expuesto en `docker-compose.yml` principal para acceso del microservicio.
+
+### 🐛 Correcciones (Bug Fixes)
+1. **Fix Metadata de Pagos Stripe**: Los pagos por transferencia bancaria y OXXO ahora se categorizan correctamente.
+2. **Fix sincronización CallBell**: Saldo y estado del cliente ahora se actualizan correctamente en tiempo real.
+3. **Fix networking Docker**: Resueltos problemas de `ECONNREFUSED` entre contenedores mediante configuración de red interna.
+4. **Fix validación de atributos**: Normalización de valores para evitar errores 422 en la API de UCRM.
+
+### 📝 Documentación
+1. Logging mejorado en `ClientCallBellAPI.php` para comparaciones de campo.
+2. Logging agregado en `AbstractMessageNotifierFacade.php` para diagnóstico de sync.
+3. Documentación completa del flujo de datos del visualizador de pagos.
+
## VERSIÓN 4.1.0 - 15-01-2026
### 🚀 Nuevas Características (Features)
1. **Microservicio PDF (`pdf-cropper`)**:
diff --git a/PHP_PermisosArchivos.php b/PHP_PermisosArchivos.php
deleted file mode 100755
index 2344af59..00000000
--- a/PHP_PermisosArchivos.php
+++ /dev/null
@@ -1,107 +0,0 @@
- $baseUri,
- 'headers' => [
- 'X-Auth-App-Key' => $token, // Cambia el nombre de la cabecera de autorización
- 'Accept' => 'application/pdf', // Indica que esperamos una respuesta en formato JSON
- ],
- 'verify' => false,
-]);
-
-// Hacer la solicitud GET
-$response = $clientGuzzleHttp->request('GET', "payments/89/pdf");
-
-// Obtener el cuerpo de la respuesta (contenido binario)
-$binaryData = $response->getBody()->getContents();
-
-// Abrir un recurso de flujo de datos en memoria
-$fileHandle = fopen('php://temp', 'r+');
-
-// Escribir los datos binarios en el recurso de flujo de datos en memoria
-fwrite($fileHandle, $binaryData);
-
-// Rebobinar el puntero del flujo de datos para leer desde el principio
-rewind($fileHandle);
-
-if (!isset($fileHandle)) {
- print_r("viene vacia la variable filehandle" . PHP_EOL);
-}
-// Subir el archivo al servidor FTP usando ftp_fput
-$remoteFilename = 'archivo.pdf';
-
-$pdf_payment_path = '/home/unms/data/ucrm/ucrm/data/payment_receipts/hola.txt';
-$permisos = 0777; // Permisos 777 (lectura, escritura y ejecución para todos)
-
-// Verificar si el archivo existe antes de cambiar los permisos
-if (file_exists($pdf_payment_path)) {
- // Cambiar los permisos del archivo
- if (chmod($pdf_payment_path, $permisos)) {
- print_r("Los permisos del archivo se han cambiado correctamente." . PHP_EOL);
- } else {
- print_r("No se pudieron cambiar los permisos del archivo." . PHP_EOL);
- }
-} else {
- print_r("El archivo no existe en la ruta especificada." . PHP_EOL);
-}
-
-UploadFileWordpress($fileHandle);
-
-function UploadFileWordpress($fileHandle): string
-{
-
-
-
- // Configuración de conexión FTP
- $ftp_server = "siip.mx";
- $ftp_username = "siip0001";
- $ftp_password = '$spGiT,[wa)n';
- //$fileName = $fileNameComprobantePDF;
- $remote_file = "/public_html/wp/wp-content/uploads/pdf/Comprobante_de_pago.pdf";
- //$file_to_upload = '/home/unms/data/ucrm/ucrm/data/payment_receipts/' . $fileName;
- $url = 'http://siip.mx/wp/wp-content/uploads/pdf/Comprobante_de_pago.pdf';
-
-
- // Conexión FTP
- $ftp_conn = ftp_connect($ftp_server) or die("No se pudo conectar al servidor FTP");
- $login = ftp_login($ftp_conn, $ftp_username, $ftp_password);
-
-
- // Verificar conexión y login
- if ($ftp_conn && $login) {
- print_r("Conexión FTP exitosa" . PHP_EOL);
-
- var_dump($ftp_conn);
- // Cargar archivo
- if (ftp_fput($ftp_conn, $remote_file, $fileHandle, FTP_BINARY)) {
- print_r("El archivo ha sido cargado exitosamente." . PHP_EOL);
- print_r("La URL es: " . $url . PHP_EOL);
- // Cerrar conexión FTP
- ftp_close($ftp_conn);
- return $url;
-
- } else {
- print_r("Error al cargar el archivo " . PHP_EOL);
- }
-
- // Cerrar conexión FTP
- ftp_close($ftp_conn);
- return '';
- } else {
- print_r("No se pudo conectar o iniciar sesión en el servidor FTP." . PHP_EOL);
- return '';
- }
-
-}
\ No newline at end of file
diff --git a/README.md b/README.md
index db09303b..0f4768a2 100755
--- a/README.md
+++ b/README.md
@@ -1,12 +1,23 @@
# SIIP - WhatsApp Notifications & Integrated Payment Portal
-
+



Este plugin es una solución integral que transforma tu UCRM en un **Portal Administrativo de Última Generación**. No solo automatiza la comunicación por WhatsApp, sino que integra un Dashboard completo para la gestión de pagos online (Stripe/OXXO), visualización de comprobantes y coordinación de equipos técnicos.
+## 🚀 Novedades v4.2.0 (Analytics & Sync)
+
+- **📊 Visualizador de Pagos Mensuales**: Nueva herramienta de análisis que permite seleccionar cualquier mes y visualizar gráficamente:
+ - Estadísticas de clientes activos vs clientes que pagaron
+ - Gráfica de dona interactiva con Chart.js
+ - Listado detallado de clientes pendientes con saldos
+ - Porcentajes de cobranza en tiempo real
+- **🔄 Sincronización Mejorada CallBell**: Fix crítico que garantiza la actualización automática del saldo y estado del cliente en CallBell cuando se agregan facturas o se modifican servicios.
+- **🎯 Categorización Inteligente de Pagos**: Nuevo microservicio con acceso directo a la base de datos para obtener metadata de Stripe (tipo de pago) y asignar correctamente los atributos incluso cuando la API de UCRM no tiene la información.
+- **⚙️ Configuración para Producción**: Sistema de `.env` implementado para gestión segura de credenciales de base de datos.
+
## 🚀 Novedades v4.1.0 (Performance & Storage)
- **⚡ Microservicio PDF (`pdf-cropper`)**: Nuevo motor de renderizado externo (Python/FastAPI) que reemplaza librerías legacy, aumentando la velocidad y eliminando problemas de memoria en el servidor principal.
diff --git a/check_method.php b/check_method.php
new file mode 100644
index 00000000..0682042b
--- /dev/null
+++ b/check_method.php
@@ -0,0 +1,26 @@
+ rtrim($ucrmUrl, '/') . '/api/v1.0/',
+ 'verify' => false,
+ 'headers' => [
+ 'X-Auth-App-Key' => $appKey
+ ]
+]);
+
+$methodId = '1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae';
+
+try {
+ $response = $client->get("payment-methods/$methodId");
+ $method = json_decode($response->getBody(), true);
+ echo "Method ID: $methodId\n";
+ echo "Name: " . $method['name'] . "\n";
+} catch (\Exception $e) {
+ echo "ERROR: " . $e->getMessage() . "\n";
+}
diff --git a/consulta a Gemini.txt b/consulta a Gemini.txt
deleted file mode 100644
index c7d309eb..00000000
--- a/consulta a Gemini.txt
+++ /dev/null
@@ -1,175 +0,0 @@
-
-Pregunta: Algún microservicio que pueda levantar con docker compose y que funcione como API para pasarle un PDF y me devuelva una imagen y recortada en ciertas coordenadas o ajustada a formato cuadrado.
-
-Respuesta: Para lo que necesitas, la mejor opción no es una herramienta genérica (como Gotenberg), ya que estas suelen convertir la página entera pero no permiten recortar por coordenadas en la misma petición.
-
-La solución más limpia y eficiente es crear un microservicio ligero en Python (usando FastAPI y pdf2image) que puedas levantar con Docker. Python tiene las mejores librerías para manipulación de PDFs e imágenes.
-
-Aquí tienes la solución completa "Copy-Paste":
-
-1. Estructura del proyecto
-Crea una carpeta (ej. pdf-cropper) con estos 3 archivos:
-
-Dockerfile
-
-main.py
-
-docker-compose.yml
-
-2. El Código (Python + FastAPI)
-Este script recibe el PDF, lo convierte a imagen y aplica el recorte o ajuste cuadrado según lo que le pidas.
-
-Archivo: main.py
-
-Python
-
-from fastapi import FastAPI, UploadFile, File, Form
-from pdf2image import convert_from_bytes
-from PIL import Image
-import io
-
-app = FastAPI()
-
-@app.post("/process")
-async def process_pdf(
- file: UploadFile = File(...),
- mode: str = Form("square"), # 'square' o 'coords'
- x: int = Form(0),
- y: int = Form(0),
- w: int = Form(500),
- h: int = Form(500)
-):
- # 1. Leer el archivo PDF en memoria
- pdf_bytes = await file.read()
-
- # 2. Convertir la primera página a imagen
- # poppler_path no es necesario si se instala en el sistema (ver Dockerfile)
- images = convert_from_bytes(pdf_bytes, fmt="jpeg")
-
- if not images:
- return {"error": "No se pudo leer el PDF"}
-
- img = images[0] # Tomamos la primera página
-
- # 3. Lógica de recorte
- if mode == "square":
- # Recorte cuadrado centrado automático
- width, height = img.size
- new_dim = min(width, height)
- left = (width - new_dim) / 2
- top = (height - new_dim) / 2
- right = (width + new_dim) / 2
- bottom = (height + new_dim) / 2
- img = img.crop((left, top, right, bottom))
- # Opcional: Redimensionar al tamaño final deseado
- img = img.resize((w, h))
-
- elif mode == "coords":
- # Recorte por coordenadas exactas
- img = img.crop((x, y, x + w, y + h))
-
- # 4. Devolver la imagen procesada
- img_byte_arr = io.BytesIO()
- img.save(img_byte_arr, format='JPEG', quality=90)
- img_byte_arr.seek(0)
-
- from starlette.responses import StreamingResponse
- return StreamingResponse(img_byte_arr, media_type="image/jpeg")
-3. El Dockerfile
-Es crucial instalar poppler-utils, que es el motor que procesa el PDF.
-
-Archivo: Dockerfile
-
-Dockerfile
-
-FROM python:3.9-slim
-
-# Instalar poppler (necesario para pdf2image)
-RUN apt-get update && apt-get install -y poppler-utils && rm -rf /var/lib/apt/lists/*
-
-WORKDIR /app
-
-# Instalar dependencias de Python
-RUN pip install fastapi uvicorn python-multipart pdf2image Pillow
-
-COPY main.py .
-
-# Ejecutar la API
-CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
-4. Docker Compose
-Para levantarlo.
-
-Archivo: docker-compose.yml
-
-YAML
-
-services:
- pdf-cropper:
- build: .
- ports:
- - "8080:8000"
- restart: always
-Comando para iniciar:
-
-Bash
-
-docker compose up -d --build
-5. Cómo usarlo desde PHP
-Ahora tienes una API corriendo en http://localhost:8080/process. Aquí tienes el script PHP para enviarle un PDF y guardar la imagen recortada.
-
-Archivo: cliente.php
-
-PHP
-
- new CURLFile($pdfPath, 'application/pdf', 'documento.pdf'),
-
- // OPCIÓN A: Recorte cuadrado automático (centrado)
- 'mode' => 'square',
- 'w' => 800, // Tamaño final del cuadrado (px)
- 'h' => 800,
-
- // OPCIÓN B: Coordenadas específicas (descomentar para usar)
- // 'mode' => 'coords',
- // 'x' => 100, // Píxeles desde la izquierda
- // 'y' => 200, // Píxeles desde arriba
- // 'w' => 500, // Ancho del recorte
- // 'h' => 300 // Alto del recorte
-];
-
-curl_setopt_array($curl, [
- CURLOPT_URL => $url,
- CURLOPT_POST => true,
- CURLOPT_POSTFIELDS => $fields,
- CURLOPT_RETURNTRANSFER => true,
-]);
-
-$response = curl_exec($curl);
-$httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
-
-if ($httpCode == 200) {
- file_put_contents($outputPath, $response);
- echo "Imagen guardada exitosamente en $outputPath";
-} else {
- echo "Error: " . curl_error($curl);
- echo "Respuesta del servidor: " . $response;
-}
-
-curl_close($curl);
-?>
-¿Por qué esta solución?
-Atomocidad: Hace la conversión y el recorte en un solo paso de memoria (RAM), sin guardar archivos temporales en disco.
-
-Control: Puedes ajustar la lógica de "cuadrado" (si quieres que sea centrado o desde la esquina superior) modificando fácilmente el main.py.
-
-Ligero: La imagen Docker pesará poco y consumirá memoria solo cuando procese un archivo.
\ No newline at end of file
diff --git a/data/config.json b/data/config.json
index d40b2557..150f70c0 100755
--- a/data/config.json
+++ b/data/config.json
@@ -1 +1 @@
-{"ipserver":"venus.siip.mx","apitoken":"gvcnIJqXdUjneVSjhl6THLlQcYXJyIFCcwHKVba2bvIrNraanCTb5VeoWuJ0TFZ9","unmsApiToken":"079c28f5-888c-457d-bd7a-0a4202590f75","tokencallbell":"g8thcZkXGd3xBj2g3TtYNYFMH1fuesbJ.b6a940ea7d78cf6c9e42f067b21c8ddf96e9fa2a9e307bfd0c7c7c4d7fa38f79","tokenstripe":"sk_test_51OkG0REFY1WEUtgRH6UxBK5pu80Aq5Iy8EcdPnf0cOWzuVLQTpyLCd7CbPzqMsWMafZOHElCxhEHF7g8boURjWlJ00tBwE0W1M","hostServerFTP":"siip.mx","usernameServerFTP":"siip0001","passServerFTP":"$spGiT,[wa)n","ipPuppeteer":"172.16.5.134","portPuppeteer":"4100","idPaymentAdminCRM":"1180","cashPaymentMethodId":false,"courtesyPaymentMethodId":false,"bankTransferPaymentMethodId":true,"paypalPaymentMethodId":true,"creditCardPaypalPaymentMethodId":true,"creditCardStripePaymentMethodId":true,"stripeSubscriptionCreditCardPaymentMethodId":true,"paypalSubscriptionPaymentMethodId":true,"mercadopagoPaymentMethodId":true,"checkPaymentMethodId":true,"customPaymentMethodId":true,"notificationTypeText":false,"installersDataWhatsApp":"{\r\n \"instaladores\": [\r\n {\r\n \"id\": 1019,\r\n \"nombre\": \"Mucio Robledo\",\r\n \"whatsapp\": \"4181878106\"\r\n },\r\n {\r\n \"id\": 1173,\r\n \"nombre\": \"Ángel Arvizu\",\r\n \"whatsapp\": \"4181878106\"\r\n },\r\n {\r\n \"id\": 1172,\r\n \"nombre\": \"Juan Rostro\",\r\n \"whatsapp\": \"4181878106\"\r\n },\r\n {\r\n \"id\": 1015,\r\n \"nombre\": \"Daniel Humberto\",\r\n \"whatsapp\": \"4181878106\"\r\n },\r\n {\r\n \"id\": 1131,\r\n \"nombre\": \"Gricelda Avalos\",\r\n \"whatsapp\": \"4181817609\"\r\n }\r\n ]\r\n}","debugMode":true,"logging_level":true,"minioEndpoint":"http://172.16.5.134:9002","minioPublicUrl":"https://aws-venus.siip.mx","minioAccessKey":"minioadmin","minioSecretKey":"minioadmin","minioBucket":"vouchers-oxxo"}
\ No newline at end of file
+{"ipserver":"venus.siip.mx","apitoken":"gvcnIJqXdUjneVSjhl6THLlQcYXJyIFCcwHKVba2bvIrNraanCTb5VeoWuJ0TFZ9","unmsApiToken":"079c28f5-888c-457d-bd7a-0a4202590f75","tokencallbell":"g8thcZkXGd3xBj2g3TtYNYFMH1fuesbJ.b6a940ea7d78cf6c9e42f067b21c8ddf96e9fa2a9e307bfd0c7c7c4d7fa38f79","tokenstripe":"sk_test_51OkG0REFY1WEUtgRH6UxBK5pu80Aq5Iy8EcdPnf0cOWzuVLQTpyLCd7CbPzqMsWMafZOHElCxhEHF7g8boURjWlJ00tBwE0W1M","hostServerFTP":"siip.mx","usernameServerFTP":"siip0001","passServerFTP":"$spGiT,[wa)n","ipPuppeteer":"172.16.5.134","portPuppeteer":"4100","idPaymentAdminCRM":"1180","cashPaymentMethodId":false,"courtesyPaymentMethodId":false,"bankTransferPaymentMethodId":true,"paypalPaymentMethodId":true,"creditCardPaypalPaymentMethodId":true,"creditCardStripePaymentMethodId":true,"stripeSubscriptionCreditCardPaymentMethodId":true,"paypalSubscriptionPaymentMethodId":true,"mercadopagoPaymentMethodId":true,"checkPaymentMethodId":true,"customPaymentMethodId":true,"notificationTypeText":false,"installersDataWhatsApp":"{\r\n \"instaladores\": [\r\n {\r\n \"id\": 1019,\r\n \"nombre\": \"Mucio Robledo\",\r\n \"whatsapp\": \"4181878106\"\r\n },\r\n {\r\n \"id\": 1173,\r\n \"nombre\": \"Ángel Arvizu\",\r\n \"whatsapp\": \"4181878106\"\r\n },\r\n {\r\n \"id\": 1172,\r\n \"nombre\": \"Juan Rostro\",\r\n \"whatsapp\": \"4181878106\"\r\n },\r\n {\r\n \"id\": 1015,\r\n \"nombre\": \"Daniel Humberto\",\r\n \"whatsapp\": \"4181878106\"\r\n },\r\n {\r\n \"id\": 1131,\r\n \"nombre\": \"Gricelda Avalos\",\r\n \"whatsapp\": \"4181817609\"\r\n }\r\n ]\r\n}","debugMode":true,"minioEndpoint":"http://172.16.5.134:9002","minioPublicUrl":"https://aws-venus.siip.mx","minioAccessKey":"minioadmin","minioSecretKey":"minioadmin","minioBucket":"vouchers-oxxo","logging_level":true}
\ No newline at end of file
diff --git a/data/plugin.log b/data/plugin.log
old mode 100644
new mode 100755
index 41d29e0a..6fe6549c
--- a/data/plugin.log
+++ b/data/plugin.log
@@ -7540,3 +7540,3499 @@ JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fi
[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/logo-empresa.png. Size: 48352 bytes
[PROPAGATED_DEBUG] Image Request: File=oxxo-logo.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/oxxo-logo.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png | Exists=NO
[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png. Size: 755752 bytes
+[PROPAGATED_DEBUG] Image Request: File=instalador.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/instalador.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/instalador.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/instalador.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/instalador.png. Size: 13689 bytes
+[PROPAGATED_DEBUG] Image Request: File=logo-empresa.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/logo-empresa.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/logo-empresa.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/logo-empresa.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/logo-empresa.png. Size: 48352 bytes
+[PROPAGATED_DEBUG] Image Request: File=whatsapp-logo.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/whatsapp-logo.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/whatsapp-logo.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/whatsapp-logo.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/whatsapp-logo.png. Size: 85794 bytes
+[PROPAGATED_DEBUG] Image Request: File=stripe-logo.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/stripe-logo.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/stripe-logo.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/stripe-logo.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/stripe-logo.png. Size: 22209 bytes
+[PROPAGATED_DEBUG] Image Request: File=oxxo-logo.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/oxxo-logo.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png. Size: 755752 bytes
+[2026-01-16 6:25:03.081073] [notice] Logging level set to:debug
+[2026-01-16 6:25:03.081875] [debug] Payload recibido: {"uuid":"aff9dfd5-09d6-4bd2-8330-b94bb36e1a07","changeType":"overdue","entity":"invoice","entityId":"2940","eventName":"invoice.overdue","extraData":{"entity":{"id":2940,"clientId":132,"number":"002886","createdDate":"2026-01-01T10:00:01-0600","dueDate":"2026-01-15T10:00:01-0600","emailSentDate":"2026-01-16T00:00:00-0600","maturityDays":14,"taxableSupplyDate":"2025-12-30T18:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2956,"type":"service","label":"plan300 01\/12\/2025 \u2013 31\/12\/2025","price":300,"quantity":1,"total":300,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":115,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":0,"discountQuantity":0,"discountTotal":0}],"subtotal":300,"discount":null,"discountLabel":"Descuento","taxes":[],"total":300,"amountPaid":0,"totalUntaxed":300,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":300,"currencyCode":"MXN","status":1,"paymentCovers":[],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Marto","clientLastName":"Vago Payaso","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"20 Avenida Norte","clientStreet2":null,"clientCity":"Guanajuato","clientCountryId":173,"clientStateId":null,"clientZipCode":"37807","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"entityBeforeEdit":null}}
+
+[2026-01-16 6:25:03.301728] [debug] Evento recibido: invoice.overdue
+[2026-01-16 6:25:03.301842] [debug] Factura vencida
+
+[2026-01-16 6:25:03.301894] [debug] datos del notification para el invoice overdue:{"uuid":"aff9dfd5-09d6-4bd2-8330-b94bb36e1a07","changeType":"overdue","entity":"invoice","entityId":2940,"message":null,"clientId":132,"eventName":"invoice.overdue","clientData":{"id":132,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"20 Avenida Norte","street2":null,"city":"Guanajuato","countryId":173,"stateId":null,"zipCode":"37807","fullAddress":"Avenida Norte 20, Dolores, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":null,"sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-06-18T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Marto","lastName":"Vago Payaso","username":null,"contacts":[{"id":136,"clientId":132,"email":"vagopayaso@gmail.com","phone":null,"name":null,"isBilling":true,"isContact":true,"types":[{"id":1,"name":"Billing"},{"id":2,"name":"General"}]}],"attributes":[],"accountBalance":-5400,"accountCredit":0,"accountOutstanding":5400,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#9c27b0","addressGpsLat":21.1641484,"addressGpsLon":-100.9405409,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":true,"hasOutage":false,"hasSuspendedService":true,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":{"id":2940,"clientId":132,"number":"002886","createdDate":"2026-01-01T10:00:01-0600","dueDate":"2026-01-15T10:00:01-0600","emailSentDate":"2026-01-16T00:00:00-0600","maturityDays":14,"taxableSupplyDate":"2025-12-30T18:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2956,"type":"service","label":"plan300 01\/12\/2025 \u2013 31\/12\/2025","price":300,"quantity":1,"total":300,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":115,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":-0,"discountQuantity":0,"discountTotal":-0}],"subtotal":300,"discount":null,"discountLabel":"Descuento","taxes":[],"total":300,"amountPaid":0,"totalUntaxed":300,"totalDiscount":-0,"totalTaxAmount":0,"amountToPay":300,"currencyCode":"MXN","status":1,"paymentCovers":[],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Marto","clientLastName":"Vago Payaso","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"20 Avenida Norte","clientStreet2":null,"clientCity":"Guanajuato","clientCountryId":173,"clientStateId":null,"clientZipCode":"37807","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"paymentData":null}
+
+contac vacio
+[2026-01-16 21:38:18.898216] [notice] Logging level set to:debug
+[2026-01-16 21:38:18.899071] [debug] Payload recibido: {
+ "id": "evt_3SqKijEFY1WEUtgR1Dp2sK3b",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768599498,
+ "data": {
+ "object": {
+ "id": "pi_3SqKijEFY1WEUtgR1ejZMHFy",
+ "object": "payment_intent",
+ "amount": 57000,
+ "amount_capturable": 0,
+ "amount_details": {
+ "tip": {}
+ },
+ "amount_received": 57000,
+ "application": null,
+ "application_fee_amount": null,
+ "automatic_payment_methods": null,
+ "canceled_at": null,
+ "cancellation_reason": null,
+ "capture_method": "automatic",
+ "client_secret": "pi_3SqKijEFY1WEUtgR1ejZMHFy_secret_ZYTIeSm2wUcKmD7lt6OgYMV3l",
+ "confirmation_method": "automatic",
+ "created": 1768599497,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "description": null,
+ "excluded_payment_method_types": null,
+ "invoice": null,
+ "last_payment_error": null,
+ "latest_charge": "py_3SqKijEFY1WEUtgR1nb7rs7e",
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "5472",
+ "createdBy": "UCRM",
+ "clientId": "146",
+ "paymentType": "card.one_time",
+ "tipoPago": "Transferencia Bancaria"
+ },
+ "next_action": null,
+ "on_behalf_of": null,
+ "payment_method": "pm_1SqKijEFY1WEUtgRiQfxFVGO",
+ "payment_method_configuration_details": null,
+ "payment_method_options": {
+ "customer_balance": {
+ "bank_transfer": {
+ "type": "mx_bank_transfer"
+ },
+ "funding_type": "bank_transfer"
+ }
+ },
+ "payment_method_types": [
+ "customer_balance"
+ ],
+ "processing": null,
+ "receipt_email": null,
+ "review": null,
+ "setup_future_usage": null,
+ "shipping": null,
+ "source": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": "req_eMJRuEzCj7L2ql",
+ "idempotency_key": "9958b497-62a4-44fb-a015-a49020b93b6f"
+ },
+ "type": "payment_intent.succeeded"
+}
+
+[2026-01-16 21:38:18.899115] [info] No UUID found in the webhook data
+[2026-01-16 21:38:18.899126] [info] Evento de pago exitoso (Stripe PI) recibido.
+[2026-01-16 21:38:18.899005] [notice] Logging level set to:debug
+[2026-01-16 21:38:18.899216] [debug] Payload recibido: {
+ "id": "evt_1SqKikEFY1WEUtgRaijs24h7",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768599497,
+ "data": {
+ "object": {
+ "id": "ccsbtxn_1SqKijEFY1WEUtgRTTv064aZ",
+ "object": "customer_cash_balance_transaction",
+ "applied_to_payment": {
+ "payment_intent": "pi_3SqKijEFY1WEUtgR1ejZMHFy"
+ },
+ "created": 1768599497,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "ending_balance": 0,
+ "livemode": false,
+ "net_amount": -57000,
+ "type": "applied_to_payment"
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": "req_eMJRuEzCj7L2ql",
+ "idempotency_key": "9958b497-62a4-44fb-a015-a49020b93b6f"
+ },
+ "type": "customer_cash_balance_transaction.created"
+}
+
+[2026-01-16 21:38:18.899250] [info] No UUID found in the webhook data
+[2026-01-16 21:38:18.899266] [info] Se aplicó el saldo en Stripe de un pago: {"id":"evt_1SqKikEFY1WEUtgRaijs24h7","object":"event","api_version":"2023-10-16","created":1768599497,"data":{"object":{"id":"ccsbtxn_1SqKijEFY1WEUtgRTTv064aZ","object":"customer_cash_balance_transaction","applied_to_payment":{"payment_intent":"pi_3SqKijEFY1WEUtgR1ejZMHFy"},"created":1768599497,"currency":"mxn","customer":"cus_QZ7T1h3th3Dr7w","customer_account":null,"ending_balance":0,"livemode":false,"net_amount":-57000,"type":"applied_to_payment"}},"livemode":false,"pending_webhooks":3,"request":{"id":"req_eMJRuEzCj7L2ql","idempotency_key":"9958b497-62a4-44fb-a015-a49020b93b6f"},"type":"customer_cash_balance_transaction.created"}
+
+[2026-01-16 21:38:18.902494] [notice] Logging level set to:debug
+[2026-01-16 21:38:18.902606] [debug] Payload recibido: {
+ "id": "evt_3SqKijEFY1WEUtgR1WBKBcLI",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768599498,
+ "data": {
+ "object": {
+ "id": "py_3SqKijEFY1WEUtgR1nb7rs7e",
+ "object": "charge",
+ "amount": 57000,
+ "amount_captured": 57000,
+ "amount_refunded": 0,
+ "application": null,
+ "application_fee": null,
+ "application_fee_amount": null,
+ "balance_transaction": "txn_3SqKijEFY1WEUtgR11yEdDbN",
+ "billing_details": {
+ "address": {
+ "city": null,
+ "country": null,
+ "line1": null,
+ "line2": null,
+ "postal_code": null,
+ "state": null
+ },
+ "email": null,
+ "name": null,
+ "phone": null,
+ "tax_id": null
+ },
+ "calculated_statement_descriptor": null,
+ "captured": true,
+ "created": 1768599497,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "description": null,
+ "destination": null,
+ "dispute": null,
+ "disputed": false,
+ "failure_balance_transaction": null,
+ "failure_code": null,
+ "failure_message": null,
+ "fraud_details": {},
+ "invoice": null,
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "5472",
+ "createdBy": "UCRM",
+ "clientId": "146",
+ "paymentType": "card.one_time",
+ "tipoPago": "Transferencia Bancaria"
+ },
+ "on_behalf_of": null,
+ "order": null,
+ "outcome": {
+ "advice_code": null,
+ "network_advice_code": null,
+ "network_decline_code": null,
+ "network_status": "approved_by_network",
+ "reason": null,
+ "risk_level": "not_assessed",
+ "seller_message": "Payment complete.",
+ "type": "authorized"
+ },
+ "paid": true,
+ "payment_intent": "pi_3SqKijEFY1WEUtgR1ejZMHFy",
+ "payment_method": "pm_1SqKijEFY1WEUtgRiQfxFVGO",
+ "payment_method_details": {
+ "customer_balance": {},
+ "type": "customer_balance"
+ },
+ "radar_options": {},
+ "receipt_email": null,
+ "receipt_number": null,
+ "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xT2tHMFJFRlkxV0VVdGdSKMrfqssGMgbG7LYgpXA6LBZ9LBgOxrCe4ZtZmiSHv-nFuo1geo36BtN7tZRc7_mmeuvccJtqji5qc3wD",
+ "refunded": false,
+ "review": null,
+ "shipping": null,
+ "source": null,
+ "source_transfer": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 2,
+ "request": {
+ "id": "req_eMJRuEzCj7L2ql",
+ "idempotency_key": "9958b497-62a4-44fb-a015-a49020b93b6f"
+ },
+ "type": "charge.succeeded"
+}
+
+[2026-01-16 21:38:18.902688] [info] No UUID found in the webhook data
+[2026-01-16 21:38:20.031985] [notice] Logging level set to:debug
+[2026-01-16 21:38:20.032110] [debug] Payload recibido: {"uuid":"5753983c-86fa-4034-aeba-6dec8a8332a4","changeType":"edit","entity":"invoice","entityId":"2952","eventName":"invoice.edit","extraData":{"entity":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":8286,"totalUntaxed":10000,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":1714,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"entityBeforeEdit":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":7716,"totalUntaxed":10000,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":2284,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false}}}
+
+[2026-01-16 21:38:20.494083] [debug] Evento recibido: invoice.edit
+[2026-01-16 21:38:20.494232] [debug] Edición de Factura
+
+Notificacion data: {"uuid":"5753983c-86fa-4034-aeba-6dec8a8332a4","changeType":"edit","entity":"invoice","entityId":2952,"message":null,"clientId":146,"eventName":"invoice.edit","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-1714,"accountCredit":0,"accountOutstanding":1714,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":8286,"totalUntaxed":10000,"totalDiscount":-0,"totalTaxAmount":0,"amountToPay":1714,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"paymentData":null}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":816,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T15:38:19-0600","amount":570,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570}],"creditAmount":0,"userId":null,"attributes":[]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 16\/01\/2026 15:38","Saldo Actual":"\ud83d\udcb21714 pendientes","Monto Ultimo Pago":"\ud83d\udcb2 570","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 16\/01\/2026 15:38 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb21714 pendientes\",\"Monto Ultimo Pago\": \"$ 570\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 16\/01\/2026 15:38 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"16\/01\/2026 15:38\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-16 21:38:22.375267] [notice] Logging level set to:debug
+[2026-01-16 21:38:22.375382] [debug] Payload recibido: {"uuid":"c8c8d0a6-f175-4158-85a9-f35009976afd","changeType":"insert","entity":"payment","entityId":"816","eventName":"payment.add","extraData":{"entity":{"id":816,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T15:38:19-0600","amount":570,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570}],"creditAmount":0,"userId":null,"attributes":[]},"entityBeforeEdit":null}}
+
+[2026-01-16 21:38:22.554286] [debug] Evento recibido: payment.add
+[2026-01-16 21:38:22.554564] [debug] Notification encodificado en JSON:{"uuid":"c8c8d0a6-f175-4158-85a9-f35009976afd","changeType":"insert","entity":"payment","entityId":816,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-1714,"accountCredit":0,"accountOutstanding":1714,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":816,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T15:38:19-0600","amount":570,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570}],"creditAmount":0,"userId":null,"attributes":[]}}
+
+Eviando comprobante de pago al cliente: 146 con número: 5214181878106
+
+El archivo PDF se ha descargado y guardado correctamente en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+El archivo PDF es válido y tiene contenido: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+Procesando PDF con microservicio: http://172.16.5.134:8050/process
+
+Imagen generada por microservicio guardada en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.jpg
+
+[2026-01-16 21:38:23.436342] [info] Archivo subido exitosamente a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768599503.jpg
+Imagen subida a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768599503.jpg
+
+Archivos temporales (PDF/JPG) eliminados tras subida exitosa.
+
+Proceso de obtención de imagen finalizado.
+
+La cadena CURL que se envia es: {
+ "to": "5214181878106",
+ "from": "whatsapp",
+ "type": "document",
+ "content": {
+ "text": "S/M",
+ "url": "https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768599503.jpg"
+ },
+ "template_values": ["Delfino De los Mares venus", "$570", "$1714 pendientes"],
+ "template_uuid": "57ead79cebd14902921477922403093b",
+ "optin_contact": true
+ }
+Response del CallBell: {"message":{"uuid":"9f22fbd9dff642808eb929270e02ea85","status":"enqueued"}}
+Hay menos de 100 archivos en el directorio. No se eliminarán archivos.
+
+La notificación fue enviada correctamente con estado: enqueued
+
+Notificacion data: {"uuid":"c8c8d0a6-f175-4158-85a9-f35009976afd","changeType":"insert","entity":"payment","entityId":816,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-1714,"accountCredit":0,"accountOutstanding":1714,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":816,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T15:38:19-0600","amount":570,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570}],"creditAmount":0,"userId":null,"attributes":[]}}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":816,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T15:38:19-0600","amount":570,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570}],"creditAmount":0,"userId":null,"attributes":[]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 16\/01\/2026 15:38","Saldo Actual":"\ud83d\udcb21714 pendientes","Monto Ultimo Pago":"\ud83d\udcb2 570","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 16\/01\/2026 15:38 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb21714 pendientes\",\"Monto Ultimo Pago\": \"$ 570\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 16\/01\/2026 15:38 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"16\/01\/2026 15:38\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-16 21:38:24.872705] [notice] Logging level set to:debug
+[2026-01-16 21:38:24.872833] [debug] Payload recibido: {"uuid":"f677abd1-5b46-4ecc-95ea-b9b70c2c0e8f","changeType":"edit","entity":"payment","entityId":"816","eventName":"payment.edit","extraData":{"entity":{"id":816,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T15:38:19-0600","amount":570,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570}],"creditAmount":0,"userId":null,"attributes":[]},"entityBeforeEdit":{"id":816,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T15:38:19-0600","amount":570,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570}],"creditAmount":0,"userId":null,"attributes":[]}}}
+
+[2026-01-16 21:38:25.037718] [debug] Evento recibido: payment.edit
+[2026-01-16 22:00:57.098855] [notice] Logging level set to:debug
+[2026-01-16 22:00:57.099030] [debug] Payload recibido: {
+ "id": "evt_1SqL4eEFY1WEUtgRR3zxMQbd",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768600856,
+ "data": {
+ "object": {
+ "id": "ccsbtxn_1SqL4eEFY1WEUtgRPA4KHDMq",
+ "object": "customer_cash_balance_transaction",
+ "created": 1768600856,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "ending_balance": 20000,
+ "funded": {
+ "bank_transfer": {
+ "reference": "",
+ "type": "mx_bank_transfer"
+ }
+ },
+ "livemode": false,
+ "net_amount": 20000,
+ "type": "funded"
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": "req_9tAV8Chyd5ionD",
+ "idempotency_key": "f22c8912-8307-4a28-9a63-6369145f8728"
+ },
+ "type": "customer_cash_balance_transaction.created"
+}
+
+[2026-01-16 22:00:57.099124] [info] No UUID found in the webhook data
+[2026-01-16 22:00:57.099173] [info] Evento de transferencia de un cliente recibido: {"id":"evt_1SqL4eEFY1WEUtgRR3zxMQbd","object":"event","api_version":"2023-10-16","created":1768600856,"data":{"object":{"id":"ccsbtxn_1SqL4eEFY1WEUtgRPA4KHDMq","object":"customer_cash_balance_transaction","created":1768600856,"currency":"mxn","customer":"cus_QZ7T1h3th3Dr7w","customer_account":null,"ending_balance":20000,"funded":{"bank_transfer":{"reference":"","type":"mx_bank_transfer"}},"livemode":false,"net_amount":20000,"type":"funded"}},"livemode":false,"pending_webhooks":3,"request":{"id":"req_9tAV8Chyd5ionD","idempotency_key":"f22c8912-8307-4a28-9a63-6369145f8728"},"type":"customer_cash_balance_transaction.created"}
+
+[2026-01-16 22:00:59.269382] [info] PaymentIntent creado: pi_3SqL4fEFY1WEUtgR0am3AoaB
+[2026-01-16 22:00:59.648747] [notice] Logging level set to:debug
+[2026-01-16 22:00:59.648825] [debug] Payload recibido: {
+ "id": "evt_3SqL4fEFY1WEUtgR02mxODAa",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768600859,
+ "data": {
+ "object": {
+ "id": "pi_3SqL4fEFY1WEUtgR0am3AoaB",
+ "object": "payment_intent",
+ "amount": 20000,
+ "amount_capturable": 0,
+ "amount_details": {
+ "tip": {}
+ },
+ "amount_received": 20000,
+ "application": null,
+ "application_fee_amount": null,
+ "automatic_payment_methods": null,
+ "canceled_at": null,
+ "cancellation_reason": null,
+ "capture_method": "automatic_async",
+ "client_secret": "pi_3SqL4fEFY1WEUtgR0am3AoaB_secret_tSVHzcvKUPteXLRXPyMKPITsY",
+ "confirmation_method": "automatic",
+ "created": 1768600857,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "description": null,
+ "excluded_payment_method_types": null,
+ "invoice": null,
+ "last_payment_error": null,
+ "latest_charge": "py_3SqL4fEFY1WEUtgR0vIdWyyV",
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1180",
+ "createdBy": "UCRM",
+ "clientId": "146",
+ "tipoPago": "Transferencia Bancaria"
+ },
+ "next_action": null,
+ "on_behalf_of": null,
+ "payment_method": "pm_1SqL4fEFY1WEUtgRiqXwgY44",
+ "payment_method_configuration_details": null,
+ "payment_method_options": {
+ "customer_balance": {
+ "bank_transfer": {
+ "type": "mx_bank_transfer"
+ },
+ "funding_type": "bank_transfer"
+ }
+ },
+ "payment_method_types": [
+ "customer_balance"
+ ],
+ "processing": null,
+ "receipt_email": null,
+ "review": null,
+ "setup_future_usage": null,
+ "shipping": null,
+ "source": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": "req_Iir52CWSMwrMsQ",
+ "idempotency_key": "21431645-c572-410c-b577-b796fe31e981"
+ },
+ "type": "payment_intent.succeeded"
+}
+
+[2026-01-16 22:00:59.648861] [info] No UUID found in the webhook data
+[2026-01-16 22:00:59.648873] [info] Evento de pago exitoso (Stripe PI) recibido.
+[2026-01-16 22:00:59.763178] [notice] Logging level set to:debug
+[2026-01-16 22:00:59.763345] [debug] Payload recibido: {
+ "id": "evt_1SqL4hEFY1WEUtgRjyHVqfRe",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768600858,
+ "data": {
+ "object": {
+ "id": "ccsbtxn_1SqL4gEFY1WEUtgR4foJt1Lz",
+ "object": "customer_cash_balance_transaction",
+ "applied_to_payment": {
+ "payment_intent": "pi_3SqL4fEFY1WEUtgR0am3AoaB"
+ },
+ "created": 1768600858,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "ending_balance": 0,
+ "livemode": false,
+ "net_amount": -20000,
+ "type": "applied_to_payment"
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": "req_Iir52CWSMwrMsQ",
+ "idempotency_key": "21431645-c572-410c-b577-b796fe31e981"
+ },
+ "type": "customer_cash_balance_transaction.created"
+}
+
+[2026-01-16 22:00:59.763417] [info] No UUID found in the webhook data
+[2026-01-16 22:00:59.763468] [info] Se aplicó el saldo en Stripe de un pago: {"id":"evt_1SqL4hEFY1WEUtgRjyHVqfRe","object":"event","api_version":"2023-10-16","created":1768600858,"data":{"object":{"id":"ccsbtxn_1SqL4gEFY1WEUtgR4foJt1Lz","object":"customer_cash_balance_transaction","applied_to_payment":{"payment_intent":"pi_3SqL4fEFY1WEUtgR0am3AoaB"},"created":1768600858,"currency":"mxn","customer":"cus_QZ7T1h3th3Dr7w","customer_account":null,"ending_balance":0,"livemode":false,"net_amount":-20000,"type":"applied_to_payment"}},"livemode":false,"pending_webhooks":3,"request":{"id":"req_Iir52CWSMwrMsQ","idempotency_key":"21431645-c572-410c-b577-b796fe31e981"},"type":"customer_cash_balance_transaction.created"}
+
+[2026-01-16 22:00:59.783104] [notice] Logging level set to:debug
+[2026-01-16 22:00:59.783189] [debug] Payload recibido: {
+ "id": "evt_3SqL4fEFY1WEUtgR0WY8r4Vq",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768600859,
+ "data": {
+ "object": {
+ "id": "py_3SqL4fEFY1WEUtgR0vIdWyyV",
+ "object": "charge",
+ "amount": 20000,
+ "amount_captured": 20000,
+ "amount_refunded": 0,
+ "application": null,
+ "application_fee": null,
+ "application_fee_amount": null,
+ "balance_transaction": null,
+ "billing_details": {
+ "address": {
+ "city": null,
+ "country": null,
+ "line1": null,
+ "line2": null,
+ "postal_code": null,
+ "state": null
+ },
+ "email": null,
+ "name": null,
+ "phone": null,
+ "tax_id": null
+ },
+ "calculated_statement_descriptor": null,
+ "captured": true,
+ "created": 1768600858,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "description": null,
+ "destination": null,
+ "dispute": null,
+ "disputed": false,
+ "failure_balance_transaction": null,
+ "failure_code": null,
+ "failure_message": null,
+ "fraud_details": {},
+ "invoice": null,
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1180",
+ "createdBy": "UCRM",
+ "clientId": "146",
+ "tipoPago": "Transferencia Bancaria"
+ },
+ "on_behalf_of": null,
+ "order": null,
+ "outcome": {
+ "advice_code": null,
+ "network_advice_code": null,
+ "network_decline_code": null,
+ "network_status": "approved_by_network",
+ "reason": null,
+ "risk_level": "not_assessed",
+ "seller_message": "Payment complete.",
+ "type": "authorized"
+ },
+ "paid": true,
+ "payment_intent": "pi_3SqL4fEFY1WEUtgR0am3AoaB",
+ "payment_method": "pm_1SqL4fEFY1WEUtgRiqXwgY44",
+ "payment_method_details": {
+ "customer_balance": {},
+ "type": "customer_balance"
+ },
+ "radar_options": {},
+ "receipt_email": null,
+ "receipt_number": null,
+ "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xT2tHMFJFRlkxV0VVdGdSKJvqqssGMgaeIhGLPQ46LBaDLxPg7vN4Ff_PjYQOP42mI44u_ehV09CtVRwDpI0k3Dgsm5j_S9hoYmu6",
+ "refunded": false,
+ "review": null,
+ "shipping": null,
+ "source": null,
+ "source_transfer": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 2,
+ "request": {
+ "id": "req_Iir52CWSMwrMsQ",
+ "idempotency_key": "21431645-c572-410c-b577-b796fe31e981"
+ },
+ "type": "charge.succeeded"
+}
+
+[2026-01-16 22:00:59.783232] [info] No UUID found in the webhook data
+[2026-01-16 22:01:00.873022] [notice] Logging level set to:debug
+[2026-01-16 22:01:00.873090] [debug] Payload recibido: {"uuid":"cf7a01aa-5347-45f6-bc76-6ec96bbc7988","changeType":"edit","entity":"invoice","entityId":"2952","eventName":"invoice.edit","extraData":{"entity":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":8486,"totalUntaxed":10000,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":1514,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"entityBeforeEdit":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":8286,"totalUntaxed":10000,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":1714,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false}}}
+
+[2026-01-16 22:01:01.258316] [debug] Evento recibido: invoice.edit
+[2026-01-16 22:01:01.258435] [debug] Edición de Factura
+
+Notificacion data: {"uuid":"cf7a01aa-5347-45f6-bc76-6ec96bbc7988","changeType":"edit","entity":"invoice","entityId":2952,"message":null,"clientId":146,"eventName":"invoice.edit","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-1514,"accountCredit":0,"accountOutstanding":1514,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":8486,"totalUntaxed":10000,"totalDiscount":-0,"totalTaxAmount":0,"amountToPay":1514,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"paymentData":null}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":817,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T16:01:00-0600","amount":200,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200}],"creditAmount":0,"userId":null,"attributes":[]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 16\/01\/2026 16:01","Saldo Actual":"\ud83d\udcb21514 pendientes","Monto Ultimo Pago":"\ud83d\udcb2 200","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 16\/01\/2026 16:01 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb21514 pendientes\",\"Monto Ultimo Pago\": \"$ 200\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 16\/01\/2026 16:01 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"16\/01\/2026 16:01\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-16 22:01:03.411663] [notice] Logging level set to:debug
+[2026-01-16 22:01:03.411803] [debug] Payload recibido: {"uuid":"a4641604-8154-4e1a-970e-a016f0a3e488","changeType":"insert","entity":"payment","entityId":"817","eventName":"payment.add","extraData":{"entity":{"id":817,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T16:01:00-0600","amount":200,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200}],"creditAmount":0,"userId":null,"attributes":[]},"entityBeforeEdit":null}}
+
+[2026-01-16 22:01:03.659919] [debug] Evento recibido: payment.add
+[2026-01-16 22:01:03.660177] [debug] Notification encodificado en JSON:{"uuid":"a4641604-8154-4e1a-970e-a016f0a3e488","changeType":"insert","entity":"payment","entityId":817,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-1514,"accountCredit":0,"accountOutstanding":1514,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":817,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T16:01:00-0600","amount":200,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200}],"creditAmount":0,"userId":null,"attributes":[]}}
+
+[2026-01-16 22:01:03.660250] [info] Verificando existencia de atributo 'tipoPagoStripe' para Payment ID: 817
+[2026-01-16 22:01:03.843550] [debug] Payment 817 Method: Tarjeta de crédito Stripe
+[2026-01-16 22:01:03.843714] [info] PATCHING Payment 817: Setting tipoPagoStripe = 'Tarjeta de Crédito'
+Eviando comprobante de pago al cliente: 146 con número: 5214181878106
+
+El archivo PDF se ha descargado y guardado correctamente en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+El archivo PDF es válido y tiene contenido: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+Procesando PDF con microservicio: http://172.16.5.134:8050/process
+
+Imagen generada por microservicio guardada en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.jpg
+
+[2026-01-16 22:01:04.654973] [info] Archivo subido exitosamente a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768600864.jpg
+Imagen subida a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768600864.jpg
+
+Archivos temporales (PDF/JPG) eliminados tras subida exitosa.
+
+Proceso de obtención de imagen finalizado.
+
+La cadena CURL que se envia es: {
+ "to": "5214181878106",
+ "from": "whatsapp",
+ "type": "document",
+ "content": {
+ "text": "S/M",
+ "url": "https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768600864.jpg"
+ },
+ "template_values": ["Delfino De los Mares venus", "$200", "$1514 pendientes"],
+ "template_uuid": "57ead79cebd14902921477922403093b",
+ "optin_contact": true
+ }
+Response del CallBell: {"message":{"uuid":"c691d4b595d146cfa4cc7ebf446c06de","status":"enqueued"}}
+Hay menos de 100 archivos en el directorio. No se eliminarán archivos.
+
+La notificación fue enviada correctamente con estado: enqueued
+
+Notificacion data: {"uuid":"a4641604-8154-4e1a-970e-a016f0a3e488","changeType":"insert","entity":"payment","entityId":817,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-1514,"accountCredit":0,"accountOutstanding":1514,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":817,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T16:01:00-0600","amount":200,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200}],"creditAmount":0,"userId":null,"attributes":[]}}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":817,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T16:01:00-0600","amount":200,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200}],"creditAmount":0,"userId":null,"attributes":[{"id":"9ef516a3-f7d3-414b-9340-294be6e69351","paymentId":817,"customAttributeId":20,"name":"Tipo Pago Stripe","key":"tipoPagoStripe","value":"Tarjeta de Cr\u00e9dito","clientZoneVisible":true}]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 16\/01\/2026 16:01","Saldo Actual":"\ud83d\udcb21514 pendientes","Monto Ultimo Pago":"\ud83d\udcb2 200","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 16\/01\/2026 16:01 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb21514 pendientes\",\"Monto Ultimo Pago\": \"$ 200\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 16\/01\/2026 16:01 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"16\/01\/2026 16:01\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-16 22:01:09.977562] [notice] Logging level set to:debug
+[2026-01-16 22:01:09.977696] [debug] Payload recibido: {"uuid":"ecc04bb6-c99e-4ec0-a12b-cb9e64a11625","changeType":"edit","entity":"payment","entityId":"817","eventName":"payment.edit","extraData":{"entity":{"id":817,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T16:01:00-0600","amount":200,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200}],"creditAmount":0,"userId":null,"attributes":[]},"entityBeforeEdit":{"id":817,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T16:01:00-0600","amount":200,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200}],"creditAmount":0,"userId":null,"attributes":[]}}}
+
+[2026-01-16 22:01:10.207628] [debug] Evento recibido: payment.edit
+[2026-01-16 22:08:58.733588] [notice] Logging level set to:debug
+[2026-01-16 22:08:58.733776] [debug] Payload recibido: {
+ "id": "evt_1SqLCQEFY1WEUtgRbwirduJU",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768601337,
+ "data": {
+ "object": {
+ "id": "ccsbtxn_1SqLCPEFY1WEUtgRYNc20tqj",
+ "object": "customer_cash_balance_transaction",
+ "created": 1768601337,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "ending_balance": 30000,
+ "funded": {
+ "bank_transfer": {
+ "reference": "",
+ "type": "mx_bank_transfer"
+ }
+ },
+ "livemode": false,
+ "net_amount": 30000,
+ "type": "funded"
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": "req_9hzQVs9V8c9AEo",
+ "idempotency_key": "7b98bb0a-b193-42e6-ae0b-4bc43002a33a"
+ },
+ "type": "customer_cash_balance_transaction.created"
+}
+
+[2026-01-16 22:08:58.733863] [info] No UUID found in the webhook data
+[2026-01-16 22:08:58.733911] [info] Evento de transferencia de un cliente recibido: {"id":"evt_1SqLCQEFY1WEUtgRbwirduJU","object":"event","api_version":"2023-10-16","created":1768601337,"data":{"object":{"id":"ccsbtxn_1SqLCPEFY1WEUtgRYNc20tqj","object":"customer_cash_balance_transaction","created":1768601337,"currency":"mxn","customer":"cus_QZ7T1h3th3Dr7w","customer_account":null,"ending_balance":30000,"funded":{"bank_transfer":{"reference":"","type":"mx_bank_transfer"}},"livemode":false,"net_amount":30000,"type":"funded"}},"livemode":false,"pending_webhooks":3,"request":{"id":"req_9hzQVs9V8c9AEo","idempotency_key":"7b98bb0a-b193-42e6-ae0b-4bc43002a33a"},"type":"customer_cash_balance_transaction.created"}
+
+[2026-01-16 22:09:05.660393] [info] PaymentIntent creado: pi_3SqLCWEFY1WEUtgR0s2K7Xdo
+[2026-01-16 22:09:05.948609] [notice] Logging level set to:debug
+[2026-01-16 22:09:05.948734] [debug] Payload recibido: {
+ "id": "evt_1SqLCXEFY1WEUtgRq65OR6rU",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768601344,
+ "data": {
+ "object": {
+ "id": "ccsbtxn_1SqLCWEFY1WEUtgRFGQRgnkE",
+ "object": "customer_cash_balance_transaction",
+ "applied_to_payment": {
+ "payment_intent": "pi_3SqLCWEFY1WEUtgR0s2K7Xdo"
+ },
+ "created": 1768601344,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "ending_balance": 0,
+ "livemode": false,
+ "net_amount": -30000,
+ "type": "applied_to_payment"
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": "req_FhkDwYIeYDquvY",
+ "idempotency_key": "78489d85-1513-43e9-905a-290f80b028d7"
+ },
+ "type": "customer_cash_balance_transaction.created"
+}
+
+[2026-01-16 22:09:05.948788] [info] No UUID found in the webhook data
+[2026-01-16 22:09:05.948834] [info] Se aplicó el saldo en Stripe de un pago: {"id":"evt_1SqLCXEFY1WEUtgRq65OR6rU","object":"event","api_version":"2023-10-16","created":1768601344,"data":{"object":{"id":"ccsbtxn_1SqLCWEFY1WEUtgRFGQRgnkE","object":"customer_cash_balance_transaction","applied_to_payment":{"payment_intent":"pi_3SqLCWEFY1WEUtgR0s2K7Xdo"},"created":1768601344,"currency":"mxn","customer":"cus_QZ7T1h3th3Dr7w","customer_account":null,"ending_balance":0,"livemode":false,"net_amount":-30000,"type":"applied_to_payment"}},"livemode":false,"pending_webhooks":3,"request":{"id":"req_FhkDwYIeYDquvY","idempotency_key":"78489d85-1513-43e9-905a-290f80b028d7"},"type":"customer_cash_balance_transaction.created"}
+
+[2026-01-16 22:09:06.006400] [notice] Logging level set to:debug
+[2026-01-16 22:09:06.006537] [debug] Payload recibido: {
+ "id": "evt_3SqLCWEFY1WEUtgR08PVHvUl",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768601345,
+ "data": {
+ "object": {
+ "id": "pi_3SqLCWEFY1WEUtgR0s2K7Xdo",
+ "object": "payment_intent",
+ "amount": 30000,
+ "amount_capturable": 0,
+ "amount_details": {
+ "tip": {}
+ },
+ "amount_received": 30000,
+ "application": null,
+ "application_fee_amount": null,
+ "automatic_payment_methods": null,
+ "canceled_at": null,
+ "cancellation_reason": null,
+ "capture_method": "automatic_async",
+ "client_secret": "pi_3SqLCWEFY1WEUtgR0s2K7Xdo_secret_TYATeiso2wezncXKQEUKhdlYg",
+ "confirmation_method": "automatic",
+ "created": 1768601344,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "description": null,
+ "excluded_payment_method_types": null,
+ "invoice": null,
+ "last_payment_error": null,
+ "latest_charge": "py_3SqLCWEFY1WEUtgR0E5DVw7r",
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1180",
+ "createdBy": "UCRM",
+ "clientId": "146",
+ "tipoPago": "Transferencia Bancaria"
+ },
+ "next_action": null,
+ "on_behalf_of": null,
+ "payment_method": "pm_1SqLCWEFY1WEUtgRwJpmUvT4",
+ "payment_method_configuration_details": null,
+ "payment_method_options": {
+ "customer_balance": {
+ "bank_transfer": {
+ "type": "mx_bank_transfer"
+ },
+ "funding_type": "bank_transfer"
+ }
+ },
+ "payment_method_types": [
+ "customer_balance"
+ ],
+ "processing": null,
+ "receipt_email": null,
+ "review": null,
+ "setup_future_usage": null,
+ "shipping": null,
+ "source": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": "req_FhkDwYIeYDquvY",
+ "idempotency_key": "78489d85-1513-43e9-905a-290f80b028d7"
+ },
+ "type": "payment_intent.succeeded"
+}
+
+[2026-01-16 22:09:06.006618] [info] No UUID found in the webhook data
+[2026-01-16 22:09:06.006656] [info] Evento de pago exitoso (Stripe PI) recibido.
+[2026-01-16 22:09:06.102634] [notice] Logging level set to:debug
+[2026-01-16 22:09:06.102772] [debug] Payload recibido: {
+ "id": "evt_3SqLCWEFY1WEUtgR0M9Abbge",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768601345,
+ "data": {
+ "object": {
+ "id": "py_3SqLCWEFY1WEUtgR0E5DVw7r",
+ "object": "charge",
+ "amount": 30000,
+ "amount_captured": 30000,
+ "amount_refunded": 0,
+ "application": null,
+ "application_fee": null,
+ "application_fee_amount": null,
+ "balance_transaction": null,
+ "billing_details": {
+ "address": {
+ "city": null,
+ "country": null,
+ "line1": null,
+ "line2": null,
+ "postal_code": null,
+ "state": null
+ },
+ "email": null,
+ "name": null,
+ "phone": null,
+ "tax_id": null
+ },
+ "calculated_statement_descriptor": null,
+ "captured": true,
+ "created": 1768601345,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "description": null,
+ "destination": null,
+ "dispute": null,
+ "disputed": false,
+ "failure_balance_transaction": null,
+ "failure_code": null,
+ "failure_message": null,
+ "fraud_details": {},
+ "invoice": null,
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1180",
+ "createdBy": "UCRM",
+ "clientId": "146",
+ "tipoPago": "Transferencia Bancaria"
+ },
+ "on_behalf_of": null,
+ "order": null,
+ "outcome": {
+ "advice_code": null,
+ "network_advice_code": null,
+ "network_decline_code": null,
+ "network_status": "approved_by_network",
+ "reason": null,
+ "risk_level": "not_assessed",
+ "seller_message": "Payment complete.",
+ "type": "authorized"
+ },
+ "paid": true,
+ "payment_intent": "pi_3SqLCWEFY1WEUtgR0s2K7Xdo",
+ "payment_method": "pm_1SqLCWEFY1WEUtgRwJpmUvT4",
+ "payment_method_details": {
+ "customer_balance": {},
+ "type": "customer_balance"
+ },
+ "radar_options": {},
+ "receipt_email": null,
+ "receipt_number": null,
+ "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xT2tHMFJFRlkxV0VVdGdSKIHuqssGMgabP-Ralx06LBYaMmpSEJz4nQ3Fyh3uIMpYjFqHY9iiLYZnko86WclvM5f7RhCAImx3ZkPq",
+ "refunded": false,
+ "review": null,
+ "shipping": null,
+ "source": null,
+ "source_transfer": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 2,
+ "request": {
+ "id": "req_FhkDwYIeYDquvY",
+ "idempotency_key": "78489d85-1513-43e9-905a-290f80b028d7"
+ },
+ "type": "charge.succeeded"
+}
+
+[2026-01-16 22:09:06.102858] [info] No UUID found in the webhook data
+[2026-01-16 22:09:07.030256] [notice] Logging level set to:debug
+[2026-01-16 22:09:07.030407] [debug] Payload recibido: {"uuid":"4f645b3e-4d98-487f-98b4-ab3d274d6e0a","changeType":"edit","entity":"invoice","entityId":"2952","eventName":"invoice.edit","extraData":{"entity":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":8786,"totalUntaxed":10000,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":1214,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200},{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"entityBeforeEdit":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":8486,"totalUntaxed":10000,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":1514,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200},{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false}}}
+
+[2026-01-16 22:09:07.306245] [debug] Evento recibido: invoice.edit
+[2026-01-16 22:09:07.306436] [debug] Edición de Factura
+
+Notificacion data: {"uuid":"4f645b3e-4d98-487f-98b4-ab3d274d6e0a","changeType":"edit","entity":"invoice","entityId":2952,"message":null,"clientId":146,"eventName":"invoice.edit","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-1214,"accountCredit":0,"accountOutstanding":1214,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":8786,"totalUntaxed":10000,"totalDiscount":-0,"totalTaxAmount":0,"amountToPay":1214,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200},{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"paymentData":null}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":818,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T16:09:06-0600","amount":300,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300}],"creditAmount":0,"userId":null,"attributes":[]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 16\/01\/2026 16:09","Saldo Actual":"\ud83d\udcb21214 pendientes","Monto Ultimo Pago":"\ud83d\udcb2 300","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 16\/01\/2026 16:09 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb21214 pendientes\",\"Monto Ultimo Pago\": \"$ 300\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 16\/01\/2026 16:09 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"16\/01\/2026 16:09\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-16 22:09:12.684732] [notice] Logging level set to:debug
+[2026-01-16 22:09:12.684880] [debug] Payload recibido: {"uuid":"0664ccc0-63c0-444e-89f0-6e96480ecb6d","changeType":"insert","entity":"payment","entityId":"818","eventName":"payment.add","extraData":{"entity":{"id":818,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T16:09:06-0600","amount":300,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300}],"creditAmount":0,"userId":null,"attributes":[]},"entityBeforeEdit":null}}
+
+[2026-01-16 22:09:12.886544] [debug] Evento recibido: payment.add
+[2026-01-16 22:09:12.886787] [debug] Notification encodificado en JSON:{"uuid":"0664ccc0-63c0-444e-89f0-6e96480ecb6d","changeType":"insert","entity":"payment","entityId":818,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-1214,"accountCredit":0,"accountOutstanding":1214,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":818,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T16:09:06-0600","amount":300,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300}],"creditAmount":0,"userId":null,"attributes":[]}}
+
+[2026-01-16 22:09:12.886858] [info] Verificando existencia de atributo 'tipoPagoStripe' para Payment ID: 818
+[2026-01-16 22:09:13.058196] [debug] Payment 818 Method: Tarjeta de crédito Stripe
+[2026-01-16 22:09:13.058372] [info] PATCHING Payment 818: Setting tipoPagoStripe = 'Tarjeta de Crédito'
+Eviando comprobante de pago al cliente: 146 con número: 5214181878106
+
+El archivo PDF se ha descargado y guardado correctamente en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+El archivo PDF es válido y tiene contenido: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+Procesando PDF con microservicio: http://172.16.5.134:8050/process
+
+Imagen generada por microservicio guardada en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.jpg
+
+[2026-01-16 22:09:13.658584] [info] Archivo subido exitosamente a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768601353.jpg
+Imagen subida a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768601353.jpg
+
+Archivos temporales (PDF/JPG) eliminados tras subida exitosa.
+
+Proceso de obtención de imagen finalizado.
+
+La cadena CURL que se envia es: {
+ "to": "5214181878106",
+ "from": "whatsapp",
+ "type": "document",
+ "content": {
+ "text": "S/M",
+ "url": "https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768601353.jpg"
+ },
+ "template_values": ["Delfino De los Mares venus", "$300", "$1214 pendientes"],
+ "template_uuid": "57ead79cebd14902921477922403093b",
+ "optin_contact": true
+ }
+Response del CallBell: {"message":{"uuid":"808c745bda8342dba90b86bf91ea32d1","status":"enqueued"}}
+Hay menos de 100 archivos en el directorio. No se eliminarán archivos.
+
+La notificación fue enviada correctamente con estado: enqueued
+
+Notificacion data: {"uuid":"0664ccc0-63c0-444e-89f0-6e96480ecb6d","changeType":"insert","entity":"payment","entityId":818,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-1214,"accountCredit":0,"accountOutstanding":1214,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":818,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T16:09:06-0600","amount":300,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300}],"creditAmount":0,"userId":null,"attributes":[]}}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":818,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T16:09:06-0600","amount":300,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300}],"creditAmount":0,"userId":null,"attributes":[{"id":"c549b15e-781c-41f6-aa3a-8fd03fcb1500","paymentId":818,"customAttributeId":20,"name":"Tipo Pago Stripe","key":"tipoPagoStripe","value":"Tarjeta de Cr\u00e9dito","clientZoneVisible":true}]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 16\/01\/2026 16:09","Saldo Actual":"\ud83d\udcb21214 pendientes","Monto Ultimo Pago":"\ud83d\udcb2 300","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 16\/01\/2026 16:09 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb21214 pendientes\",\"Monto Ultimo Pago\": \"$ 300\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 16\/01\/2026 16:09 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"16\/01\/2026 16:09\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-16 22:09:15.314940] [notice] Logging level set to:debug
+[2026-01-16 22:09:15.315002] [debug] Payload recibido: {"uuid":"99e5805a-025f-42d7-ab4e-1e5a5dcfc595","changeType":"edit","entity":"payment","entityId":"818","eventName":"payment.edit","extraData":{"entity":{"id":818,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T16:09:06-0600","amount":300,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300}],"creditAmount":0,"userId":null,"attributes":[]},"entityBeforeEdit":{"id":818,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T16:09:06-0600","amount":300,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300}],"creditAmount":0,"userId":null,"attributes":[]}}}
+
+[2026-01-16 22:09:15.611108] [debug] Evento recibido: payment.edit
+[2026-01-17 1:47:36.502243] [notice] Logging level set to:debug
+[2026-01-17 1:47:36.502405] [debug] Payload recibido: {
+ "id": "evt_1SqOc0EFY1WEUtgRlyjtlGrW",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768614455,
+ "data": {
+ "object": {
+ "id": "ccsbtxn_1SqObzEFY1WEUtgRIdXZMBsX",
+ "object": "customer_cash_balance_transaction",
+ "created": 1768614455,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "ending_balance": 18500,
+ "funded": {
+ "bank_transfer": {
+ "reference": "",
+ "type": "mx_bank_transfer"
+ }
+ },
+ "livemode": false,
+ "net_amount": 18500,
+ "type": "funded"
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": "req_FXIrAWiblu2jeD",
+ "idempotency_key": "6589c8d2-26d6-4b01-a791-b878db3df97d"
+ },
+ "type": "customer_cash_balance_transaction.created"
+}
+
+[2026-01-17 1:47:36.502465] [info] No UUID found in the webhook data
+[2026-01-17 1:47:36.502511] [info] Evento de transferencia de un cliente recibido: {"id":"evt_1SqOc0EFY1WEUtgRlyjtlGrW","object":"event","api_version":"2023-10-16","created":1768614455,"data":{"object":{"id":"ccsbtxn_1SqObzEFY1WEUtgRIdXZMBsX","object":"customer_cash_balance_transaction","created":1768614455,"currency":"mxn","customer":"cus_QZ7T1h3th3Dr7w","customer_account":null,"ending_balance":18500,"funded":{"bank_transfer":{"reference":"","type":"mx_bank_transfer"}},"livemode":false,"net_amount":18500,"type":"funded"}},"livemode":false,"pending_webhooks":3,"request":{"id":"req_FXIrAWiblu2jeD","idempotency_key":"6589c8d2-26d6-4b01-a791-b878db3df97d"},"type":"customer_cash_balance_transaction.created"}
+
+[2026-01-17 1:47:38.521272] [info] PaymentIntent creado: pi_3SqOc1EFY1WEUtgR0Cd57sUU
+[2026-01-17 1:47:39.572602] [notice] Logging level set to:debug
+[2026-01-17 1:47:39.572669] [debug] Payload recibido: {
+ "id": "evt_3SqOc1EFY1WEUtgR0EDRx4Vz",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768614458,
+ "data": {
+ "object": {
+ "id": "pi_3SqOc1EFY1WEUtgR0Cd57sUU",
+ "object": "payment_intent",
+ "amount": 18500,
+ "amount_capturable": 0,
+ "amount_details": {
+ "tip": {}
+ },
+ "amount_received": 18500,
+ "application": null,
+ "application_fee_amount": null,
+ "automatic_payment_methods": null,
+ "canceled_at": null,
+ "cancellation_reason": null,
+ "capture_method": "automatic_async",
+ "client_secret": "pi_3SqOc1EFY1WEUtgR0Cd57sUU_secret_VK0deXxMGBI9q8YTGZ1yFGEpN",
+ "confirmation_method": "automatic",
+ "created": 1768614457,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "description": null,
+ "excluded_payment_method_types": null,
+ "invoice": null,
+ "last_payment_error": null,
+ "latest_charge": "py_3SqOc1EFY1WEUtgR0XEGBZX2",
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1180",
+ "createdBy": "UCRM",
+ "clientId": "146",
+ "tipoPago": "Transferencia Bancaria"
+ },
+ "next_action": null,
+ "on_behalf_of": null,
+ "payment_method": "pm_1SqOc1EFY1WEUtgRmkdvAifv",
+ "payment_method_configuration_details": null,
+ "payment_method_options": {
+ "customer_balance": {
+ "bank_transfer": {
+ "type": "mx_bank_transfer"
+ },
+ "funding_type": "bank_transfer"
+ }
+ },
+ "payment_method_types": [
+ "customer_balance"
+ ],
+ "processing": null,
+ "receipt_email": null,
+ "review": null,
+ "setup_future_usage": null,
+ "shipping": null,
+ "source": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": "req_udkVnxiPb0vTwc",
+ "idempotency_key": "11cfd0df-24b3-4b49-b3a7-a9d6acf1bf3c"
+ },
+ "type": "payment_intent.succeeded"
+}
+
+[2026-01-17 1:47:39.572724] [info] No UUID found in the webhook data
+[2026-01-17 1:47:39.572735] [info] Evento de pago exitoso (Stripe PI) recibido.
+[2026-01-17 1:47:39.787190] [notice] Logging level set to:debug
+[2026-01-17 1:47:39.787379] [debug] Payload recibido: {
+ "id": "evt_3SqOc1EFY1WEUtgR03Lkq4WJ",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768614458,
+ "data": {
+ "object": {
+ "id": "py_3SqOc1EFY1WEUtgR0XEGBZX2",
+ "object": "charge",
+ "amount": 18500,
+ "amount_captured": 18500,
+ "amount_refunded": 0,
+ "application": null,
+ "application_fee": null,
+ "application_fee_amount": null,
+ "balance_transaction": null,
+ "billing_details": {
+ "address": {
+ "city": null,
+ "country": null,
+ "line1": null,
+ "line2": null,
+ "postal_code": null,
+ "state": null
+ },
+ "email": null,
+ "name": null,
+ "phone": null,
+ "tax_id": null
+ },
+ "calculated_statement_descriptor": null,
+ "captured": true,
+ "created": 1768614457,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "description": null,
+ "destination": null,
+ "dispute": null,
+ "disputed": false,
+ "failure_balance_transaction": null,
+ "failure_code": null,
+ "failure_message": null,
+ "fraud_details": {},
+ "invoice": null,
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1180",
+ "createdBy": "UCRM",
+ "clientId": "146",
+ "tipoPago": "Transferencia Bancaria"
+ },
+ "on_behalf_of": null,
+ "order": null,
+ "outcome": {
+ "advice_code": null,
+ "network_advice_code": null,
+ "network_decline_code": null,
+ "network_status": "approved_by_network",
+ "reason": null,
+ "risk_level": "not_assessed",
+ "seller_message": "Payment complete.",
+ "type": "authorized"
+ },
+ "paid": true,
+ "payment_intent": "pi_3SqOc1EFY1WEUtgR0Cd57sUU",
+ "payment_method": "pm_1SqOc1EFY1WEUtgRmkdvAifv",
+ "payment_method_details": {
+ "customer_balance": {},
+ "type": "customer_balance"
+ },
+ "radar_options": {},
+ "receipt_email": null,
+ "receipt_number": null,
+ "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xT2tHMFJFRlkxV0VVdGdSKLrUq8sGMgZnQNek0aQ6LBbFZYBOQwKeBvGoz1RwGhUOkT8llFab5ddUxurvWpAqxD2CwPXtZNAOHPck",
+ "refunded": false,
+ "review": null,
+ "shipping": null,
+ "source": null,
+ "source_transfer": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 2,
+ "request": {
+ "id": "req_udkVnxiPb0vTwc",
+ "idempotency_key": "11cfd0df-24b3-4b49-b3a7-a9d6acf1bf3c"
+ },
+ "type": "charge.succeeded"
+}
+
+[2026-01-17 1:47:39.787497] [info] No UUID found in the webhook data
+[2026-01-17 1:47:39.892405] [notice] Logging level set to:debug
+[2026-01-17 1:47:39.892496] [debug] Payload recibido: {
+ "id": "evt_1SqOc2EFY1WEUtgRrwZquOZS",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768614457,
+ "data": {
+ "object": {
+ "id": "ccsbtxn_1SqOc1EFY1WEUtgR37noN82c",
+ "object": "customer_cash_balance_transaction",
+ "applied_to_payment": {
+ "payment_intent": "pi_3SqOc1EFY1WEUtgR0Cd57sUU"
+ },
+ "created": 1768614457,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "ending_balance": 0,
+ "livemode": false,
+ "net_amount": -18500,
+ "type": "applied_to_payment"
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": "req_udkVnxiPb0vTwc",
+ "idempotency_key": "11cfd0df-24b3-4b49-b3a7-a9d6acf1bf3c"
+ },
+ "type": "customer_cash_balance_transaction.created"
+}
+
+[2026-01-17 1:47:39.892520] [info] No UUID found in the webhook data
+[2026-01-17 1:47:39.892538] [info] Se aplicó el saldo en Stripe de un pago: {"id":"evt_1SqOc2EFY1WEUtgRrwZquOZS","object":"event","api_version":"2023-10-16","created":1768614457,"data":{"object":{"id":"ccsbtxn_1SqOc1EFY1WEUtgR37noN82c","object":"customer_cash_balance_transaction","applied_to_payment":{"payment_intent":"pi_3SqOc1EFY1WEUtgR0Cd57sUU"},"created":1768614457,"currency":"mxn","customer":"cus_QZ7T1h3th3Dr7w","customer_account":null,"ending_balance":0,"livemode":false,"net_amount":-18500,"type":"applied_to_payment"}},"livemode":false,"pending_webhooks":3,"request":{"id":"req_udkVnxiPb0vTwc","idempotency_key":"11cfd0df-24b3-4b49-b3a7-a9d6acf1bf3c"},"type":"customer_cash_balance_transaction.created"}
+
+[2026-01-17 1:47:40.766288] [notice] Logging level set to:debug
+[2026-01-17 1:47:40.766349] [debug] Payload recibido: {"uuid":"8189fbca-3c5c-419e-924f-eaa027929ddc","changeType":"edit","entity":"invoice","entityId":"2952","eventName":"invoice.edit","extraData":{"entity":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":8971,"totalUntaxed":10000,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":1029,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200},{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300},{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"entityBeforeEdit":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":8786,"totalUntaxed":10000,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":1214,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200},{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300},{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false}}}
+
+[2026-01-17 1:47:40.984719] [debug] Evento recibido: invoice.edit
+[2026-01-17 1:47:40.984847] [debug] Edición de Factura
+
+Notificacion data: {"uuid":"8189fbca-3c5c-419e-924f-eaa027929ddc","changeType":"edit","entity":"invoice","entityId":2952,"message":null,"clientId":146,"eventName":"invoice.edit","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-1029,"accountCredit":0,"accountOutstanding":1029,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":8971,"totalUntaxed":10000,"totalDiscount":-0,"totalTaxAmount":0,"amountToPay":1029,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200},{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300},{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"paymentData":null}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":819,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T19:47:40-0600","amount":185,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185}],"creditAmount":0,"userId":null,"attributes":[]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 16\/01\/2026 19:47","Saldo Actual":"\ud83d\udcb21029 pendientes","Monto Ultimo Pago":"\ud83d\udcb2 185","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 16\/01\/2026 19:47 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb21029 pendientes\",\"Monto Ultimo Pago\": \"$ 185\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 16\/01\/2026 19:47 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"16\/01\/2026 19:47\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-17 1:47:42.591224] [notice] Logging level set to:debug
+[2026-01-17 1:47:42.591348] [debug] Payload recibido: {"uuid":"959e39bf-239f-49e5-ac04-9b3d6d9ddeeb","changeType":"insert","entity":"payment","entityId":"819","eventName":"payment.add","extraData":{"entity":{"id":819,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T19:47:40-0600","amount":185,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185}],"creditAmount":0,"userId":null,"attributes":[]},"entityBeforeEdit":null}}
+
+[2026-01-17 1:47:42.785028] [debug] Evento recibido: payment.add
+[2026-01-17 1:47:42.785258] [debug] Notification encodificado en JSON:{"uuid":"959e39bf-239f-49e5-ac04-9b3d6d9ddeeb","changeType":"insert","entity":"payment","entityId":819,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-1029,"accountCredit":0,"accountOutstanding":1029,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":819,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T19:47:40-0600","amount":185,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185}],"creditAmount":0,"userId":null,"attributes":[]}}
+
+[2026-01-17 1:47:42.785329] [info] Verificando existencia de atributo 'tipoPagoStripe' para Payment ID: 819
+[2026-01-17 1:47:42.828350] [warning] Microservice metadata fetch failed: Server error: `GET http://172.16.5.134:4100/stripe-metadata/819` resulted in a `500 Internal Server Error` response:
+{"error":"Database error"}
+
+[2026-01-17 1:47:42.932590] [info] Payment 819 has no User ID. Assigning Stripe User ID: 1180
+[2026-01-17 1:47:42.947971] [error] Failed to patch User ID via microservice: Server error: `PATCH http://172.16.5.134:4100/payments/819/user` resulted in a `500 Internal Server Error` response:
+{"error":"Database error"}
+
+[2026-01-17 1:47:43.092881] [debug] Fallback Method Guessing 'Tarjeta de crédito Stripe' -> 'Tarjeta de Crédito'
+[2026-01-17 1:47:43.093009] [info] PATCHING Payment 819: Setting tipoPagoStripe = 'Tarjeta de Crédito'
+Eviando comprobante de pago al cliente: 146 con número: 5214181878106
+
+El archivo PDF se ha descargado y guardado correctamente en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+El archivo PDF es válido y tiene contenido: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+Procesando PDF con microservicio: http://172.16.5.134:8050/process
+
+Imagen generada por microservicio guardada en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.jpg
+
+[2026-01-17 1:47:43.732650] [info] Archivo subido exitosamente a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768614463.jpg
+Imagen subida a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768614463.jpg
+
+Archivos temporales (PDF/JPG) eliminados tras subida exitosa.
+
+Proceso de obtención de imagen finalizado.
+
+La cadena CURL que se envia es: {
+ "to": "5214181878106",
+ "from": "whatsapp",
+ "type": "document",
+ "content": {
+ "text": "S/M",
+ "url": "https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768614463.jpg"
+ },
+ "template_values": ["Delfino De los Mares venus", "$185", "$1029 pendientes"],
+ "template_uuid": "57ead79cebd14902921477922403093b",
+ "optin_contact": true
+ }
+Response del CallBell: {"message":{"uuid":"38a481072b4b45538be7941c2c22cd27","status":"enqueued"}}
+Hay menos de 100 archivos en el directorio. No se eliminarán archivos.
+
+La notificación fue enviada correctamente con estado: enqueued
+
+Notificacion data: {"uuid":"959e39bf-239f-49e5-ac04-9b3d6d9ddeeb","changeType":"insert","entity":"payment","entityId":819,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-1029,"accountCredit":0,"accountOutstanding":1029,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":819,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T19:47:40-0600","amount":185,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185}],"creditAmount":0,"userId":null,"attributes":[]}}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":819,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T19:47:40-0600","amount":185,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185}],"creditAmount":0,"userId":null,"attributes":[{"id":"009dee1b-ae0e-4f1f-afec-4ba97dc53b2e","paymentId":819,"customAttributeId":20,"name":"Tipo Pago Stripe","key":"tipoPagoStripe","value":"Tarjeta de Cr\u00e9dito","clientZoneVisible":true}]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 16\/01\/2026 19:47","Saldo Actual":"\ud83d\udcb21029 pendientes","Monto Ultimo Pago":"\ud83d\udcb2 185","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 16\/01\/2026 19:47 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb21029 pendientes\",\"Monto Ultimo Pago\": \"$ 185\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 16\/01\/2026 19:47 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"16\/01\/2026 19:47\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-17 1:47:45.501686] [notice] Logging level set to:debug
+[2026-01-17 1:47:45.501755] [debug] Payload recibido: {"uuid":"e7e5897a-f0f2-42fb-95fe-0188090722b6","changeType":"edit","entity":"payment","entityId":"819","eventName":"payment.edit","extraData":{"entity":{"id":819,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T19:47:40-0600","amount":185,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185}],"creditAmount":0,"userId":null,"attributes":[]},"entityBeforeEdit":{"id":819,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T19:47:40-0600","amount":185,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185}],"creditAmount":0,"userId":null,"attributes":[]}}}
+
+[2026-01-17 1:47:45.691142] [debug] Evento recibido: payment.edit
+[2026-01-17 1:53:23.259371] [notice] Logging level set to:debug
+[2026-01-17 1:53:23.260459] [debug] Payload recibido: {
+ "id": "evt_1SqOhaEFY1WEUtgR9a010FH7",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768614802,
+ "data": {
+ "object": {
+ "id": "ccsbtxn_1SqOhaEFY1WEUtgRNkE2PtW1",
+ "object": "customer_cash_balance_transaction",
+ "created": 1768614802,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "ending_balance": 21000,
+ "funded": {
+ "bank_transfer": {
+ "reference": "",
+ "type": "mx_bank_transfer"
+ }
+ },
+ "livemode": false,
+ "net_amount": 21000,
+ "type": "funded"
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": "req_Uk9VxoRS873jYJ",
+ "idempotency_key": "37e1ace1-5584-455c-a157-c4c0940f38e5"
+ },
+ "type": "customer_cash_balance_transaction.created"
+}
+
+[2026-01-17 1:53:23.260560] [info] No UUID found in the webhook data
+[2026-01-17 1:53:23.260612] [info] Evento de transferencia de un cliente recibido: {"id":"evt_1SqOhaEFY1WEUtgR9a010FH7","object":"event","api_version":"2023-10-16","created":1768614802,"data":{"object":{"id":"ccsbtxn_1SqOhaEFY1WEUtgRNkE2PtW1","object":"customer_cash_balance_transaction","created":1768614802,"currency":"mxn","customer":"cus_QZ7T1h3th3Dr7w","customer_account":null,"ending_balance":21000,"funded":{"bank_transfer":{"reference":"","type":"mx_bank_transfer"}},"livemode":false,"net_amount":21000,"type":"funded"}},"livemode":false,"pending_webhooks":3,"request":{"id":"req_Uk9VxoRS873jYJ","idempotency_key":"37e1ace1-5584-455c-a157-c4c0940f38e5"},"type":"customer_cash_balance_transaction.created"}
+
+[2026-01-17 1:53:25.338648] [info] PaymentIntent creado: pi_3SqOhbEFY1WEUtgR1am82DPi
+[2026-01-17 1:53:25.748008] [notice] Logging level set to:debug
+[2026-01-17 1:53:25.748073] [debug] Payload recibido: {
+ "id": "evt_1SqOhdEFY1WEUtgRrAYbxhOz",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768614804,
+ "data": {
+ "object": {
+ "id": "ccsbtxn_1SqOhcEFY1WEUtgRxSPyiUBE",
+ "object": "customer_cash_balance_transaction",
+ "applied_to_payment": {
+ "payment_intent": "pi_3SqOhbEFY1WEUtgR1am82DPi"
+ },
+ "created": 1768614804,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "ending_balance": 0,
+ "livemode": false,
+ "net_amount": -21000,
+ "type": "applied_to_payment"
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": "req_aEEdGGqboDQNEd",
+ "idempotency_key": "3b808c9e-63fd-461b-afb9-37c0ae079c4a"
+ },
+ "type": "customer_cash_balance_transaction.created"
+}
+
+[2026-01-17 1:53:25.748101] [info] No UUID found in the webhook data
+[2026-01-17 1:53:25.748120] [info] Se aplicó el saldo en Stripe de un pago: {"id":"evt_1SqOhdEFY1WEUtgRrAYbxhOz","object":"event","api_version":"2023-10-16","created":1768614804,"data":{"object":{"id":"ccsbtxn_1SqOhcEFY1WEUtgRxSPyiUBE","object":"customer_cash_balance_transaction","applied_to_payment":{"payment_intent":"pi_3SqOhbEFY1WEUtgR1am82DPi"},"created":1768614804,"currency":"mxn","customer":"cus_QZ7T1h3th3Dr7w","customer_account":null,"ending_balance":0,"livemode":false,"net_amount":-21000,"type":"applied_to_payment"}},"livemode":false,"pending_webhooks":3,"request":{"id":"req_aEEdGGqboDQNEd","idempotency_key":"3b808c9e-63fd-461b-afb9-37c0ae079c4a"},"type":"customer_cash_balance_transaction.created"}
+
+[2026-01-17 1:53:25.922255] [notice] Logging level set to:debug
+[2026-01-17 1:53:25.922384] [debug] Payload recibido: {
+ "id": "evt_3SqOhbEFY1WEUtgR1kfwKM5P",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768614805,
+ "data": {
+ "object": {
+ "id": "py_3SqOhbEFY1WEUtgR12XVp9f0",
+ "object": "charge",
+ "amount": 21000,
+ "amount_captured": 21000,
+ "amount_refunded": 0,
+ "application": null,
+ "application_fee": null,
+ "application_fee_amount": null,
+ "balance_transaction": null,
+ "billing_details": {
+ "address": {
+ "city": null,
+ "country": null,
+ "line1": null,
+ "line2": null,
+ "postal_code": null,
+ "state": null
+ },
+ "email": null,
+ "name": null,
+ "phone": null,
+ "tax_id": null
+ },
+ "calculated_statement_descriptor": null,
+ "captured": true,
+ "created": 1768614804,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "description": null,
+ "destination": null,
+ "dispute": null,
+ "disputed": false,
+ "failure_balance_transaction": null,
+ "failure_code": null,
+ "failure_message": null,
+ "fraud_details": {},
+ "invoice": null,
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1180",
+ "createdBy": "UCRM",
+ "clientId": "146",
+ "tipoPago": "Transferencia Bancaria"
+ },
+ "on_behalf_of": null,
+ "order": null,
+ "outcome": {
+ "advice_code": null,
+ "network_advice_code": null,
+ "network_decline_code": null,
+ "network_status": "approved_by_network",
+ "reason": null,
+ "risk_level": "not_assessed",
+ "seller_message": "Payment complete.",
+ "type": "authorized"
+ },
+ "paid": true,
+ "payment_intent": "pi_3SqOhbEFY1WEUtgR1am82DPi",
+ "payment_method": "pm_1SqOhbEFY1WEUtgR3YLJQ8RW",
+ "payment_method_details": {
+ "customer_balance": {},
+ "type": "customer_balance"
+ },
+ "radar_options": {},
+ "receipt_email": null,
+ "receipt_number": null,
+ "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xT2tHMFJFRlkxV0VVdGdSKJXXq8sGMgYN8oOBtWk6LBYvqAtmU35eCnpayg7MSTxB2IFMKnDpfRRVQsgV5dajzRBMEgwt6bdt0gGQ",
+ "refunded": false,
+ "review": null,
+ "shipping": null,
+ "source": null,
+ "source_transfer": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 2,
+ "request": {
+ "id": "req_aEEdGGqboDQNEd",
+ "idempotency_key": "3b808c9e-63fd-461b-afb9-37c0ae079c4a"
+ },
+ "type": "charge.succeeded"
+}
+
+[2026-01-17 1:53:25.922472] [info] No UUID found in the webhook data
+[2026-01-17 1:53:25.983999] [notice] Logging level set to:debug
+[2026-01-17 1:53:25.984057] [debug] Payload recibido: {
+ "id": "evt_3SqOhbEFY1WEUtgR1AkEZO9T",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768614805,
+ "data": {
+ "object": {
+ "id": "pi_3SqOhbEFY1WEUtgR1am82DPi",
+ "object": "payment_intent",
+ "amount": 21000,
+ "amount_capturable": 0,
+ "amount_details": {
+ "tip": {}
+ },
+ "amount_received": 21000,
+ "application": null,
+ "application_fee_amount": null,
+ "automatic_payment_methods": null,
+ "canceled_at": null,
+ "cancellation_reason": null,
+ "capture_method": "automatic_async",
+ "client_secret": "pi_3SqOhbEFY1WEUtgR1am82DPi_secret_2hvjiNvhqUxXD9qFeZ1cEu0SX",
+ "confirmation_method": "automatic",
+ "created": 1768614803,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "description": null,
+ "excluded_payment_method_types": null,
+ "invoice": null,
+ "last_payment_error": null,
+ "latest_charge": "py_3SqOhbEFY1WEUtgR12XVp9f0",
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1180",
+ "createdBy": "UCRM",
+ "clientId": "146",
+ "tipoPago": "Transferencia Bancaria"
+ },
+ "next_action": null,
+ "on_behalf_of": null,
+ "payment_method": "pm_1SqOhbEFY1WEUtgR3YLJQ8RW",
+ "payment_method_configuration_details": null,
+ "payment_method_options": {
+ "customer_balance": {
+ "bank_transfer": {
+ "type": "mx_bank_transfer"
+ },
+ "funding_type": "bank_transfer"
+ }
+ },
+ "payment_method_types": [
+ "customer_balance"
+ ],
+ "processing": null,
+ "receipt_email": null,
+ "review": null,
+ "setup_future_usage": null,
+ "shipping": null,
+ "source": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": "req_aEEdGGqboDQNEd",
+ "idempotency_key": "3b808c9e-63fd-461b-afb9-37c0ae079c4a"
+ },
+ "type": "payment_intent.succeeded"
+}
+
+[2026-01-17 1:53:25.984092] [info] No UUID found in the webhook data
+[2026-01-17 1:53:25.984106] [info] Evento de pago exitoso (Stripe PI) recibido.
+[2026-01-17 1:53:26.865938] [notice] Logging level set to:debug
+[2026-01-17 1:53:26.866092] [debug] Payload recibido: {"uuid":"b9dac152-1ced-469f-9cf6-e06475347057","changeType":"edit","entity":"invoice","entityId":"2952","eventName":"invoice.edit","extraData":{"entity":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":9181,"totalUntaxed":10000,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":819,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200},{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300},{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185},{"id":1108,"invoiceId":2952,"paymentId":820,"creditNoteId":null,"refundId":null,"amount":210}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"entityBeforeEdit":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":8971,"totalUntaxed":10000,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":1029,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200},{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300},{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185},{"id":1108,"invoiceId":2952,"paymentId":820,"creditNoteId":null,"refundId":null,"amount":210}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false}}}
+
+[2026-01-17 1:53:27.089952] [debug] Evento recibido: invoice.edit
+[2026-01-17 1:53:27.090174] [debug] Edición de Factura
+
+Notificacion data: {"uuid":"b9dac152-1ced-469f-9cf6-e06475347057","changeType":"edit","entity":"invoice","entityId":2952,"message":null,"clientId":146,"eventName":"invoice.edit","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-819,"accountCredit":0,"accountOutstanding":819,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":9181,"totalUntaxed":10000,"totalDiscount":-0,"totalTaxAmount":0,"amountToPay":819,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200},{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300},{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185},{"id":1108,"invoiceId":2952,"paymentId":820,"creditNoteId":null,"refundId":null,"amount":210}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"paymentData":null}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":820,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T19:53:26-0600","amount":210,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1108,"invoiceId":2952,"paymentId":820,"creditNoteId":null,"refundId":null,"amount":210}],"creditAmount":0,"userId":null,"attributes":[]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 16\/01\/2026 19:53","Saldo Actual":"\ud83d\udcb2819 pendientes","Monto Ultimo Pago":"\ud83d\udcb2 210","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 16\/01\/2026 19:53 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb2819 pendientes\",\"Monto Ultimo Pago\": \"$ 210\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 16\/01\/2026 19:53 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"16\/01\/2026 19:53\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-17 1:53:29.181662] [notice] Logging level set to:debug
+[2026-01-17 1:53:29.181862] [debug] Payload recibido: {"uuid":"1dcd8814-8492-4709-8e77-80093a61e5f8","changeType":"insert","entity":"payment","entityId":"820","eventName":"payment.add","extraData":{"entity":{"id":820,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T19:53:26-0600","amount":210,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1108,"invoiceId":2952,"paymentId":820,"creditNoteId":null,"refundId":null,"amount":210}],"creditAmount":0,"userId":null,"attributes":[]},"entityBeforeEdit":null}}
+
+[2026-01-17 1:53:29.393708] [debug] Evento recibido: payment.add
+[2026-01-17 1:53:29.393858] [debug] Notification encodificado en JSON:{"uuid":"1dcd8814-8492-4709-8e77-80093a61e5f8","changeType":"insert","entity":"payment","entityId":820,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-819,"accountCredit":0,"accountOutstanding":819,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":820,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T19:53:26-0600","amount":210,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1108,"invoiceId":2952,"paymentId":820,"creditNoteId":null,"refundId":null,"amount":210}],"creditAmount":0,"userId":null,"attributes":[]}}
+
+[2026-01-17 1:53:29.393893] [info] Verificando existencia de atributo 'tipoPagoStripe' para Payment ID: 820
+[2026-01-17 1:53:29.405119] [warning] Microservice metadata fetch failed: Server error: `GET http://172.16.5.134:4100/stripe-metadata/820` resulted in a `500 Internal Server Error` response:
+{"error":"Database error"}
+
+[2026-01-17 1:53:29.501667] [info] Payment 820 has no User ID. Assigning Stripe User ID: 1180
+[2026-01-17 1:53:29.512238] [error] Failed to patch User ID via microservice: Server error: `PATCH http://172.16.5.134:4100/payments/820/user` resulted in a `500 Internal Server Error` response:
+{"error":"Database error"}
+
+[2026-01-17 1:53:29.692912] [debug] Fallback Method Guessing 'Tarjeta de crédito Stripe' -> 'Tarjeta de Crédito'
+[2026-01-17 1:53:29.692955] [info] PATCHING Payment 820: Setting tipoPagoStripe = 'Tarjeta de Crédito'
+Eviando comprobante de pago al cliente: 146 con número: 5214181878106
+
+El archivo PDF se ha descargado y guardado correctamente en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+El archivo PDF es válido y tiene contenido: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+Procesando PDF con microservicio: http://172.16.5.134:8050/process
+
+Imagen generada por microservicio guardada en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.jpg
+
+[2026-01-17 1:53:30.317759] [info] Archivo subido exitosamente a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768614810.jpg
+Imagen subida a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768614810.jpg
+
+Archivos temporales (PDF/JPG) eliminados tras subida exitosa.
+
+Proceso de obtención de imagen finalizado.
+
+La cadena CURL que se envia es: {
+ "to": "5214181878106",
+ "from": "whatsapp",
+ "type": "document",
+ "content": {
+ "text": "S/M",
+ "url": "https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768614810.jpg"
+ },
+ "template_values": ["Delfino De los Mares venus", "$210", "$819 pendientes"],
+ "template_uuid": "57ead79cebd14902921477922403093b",
+ "optin_contact": true
+ }
+Response del CallBell: {"message":{"uuid":"65e9c041fa33484191df1d287d2c5193","status":"enqueued"}}
+Hay menos de 100 archivos en el directorio. No se eliminarán archivos.
+
+La notificación fue enviada correctamente con estado: enqueued
+
+Notificacion data: {"uuid":"1dcd8814-8492-4709-8e77-80093a61e5f8","changeType":"insert","entity":"payment","entityId":820,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-819,"accountCredit":0,"accountOutstanding":819,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":820,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T19:53:26-0600","amount":210,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1108,"invoiceId":2952,"paymentId":820,"creditNoteId":null,"refundId":null,"amount":210}],"creditAmount":0,"userId":null,"attributes":[]}}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":820,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T19:53:26-0600","amount":210,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1108,"invoiceId":2952,"paymentId":820,"creditNoteId":null,"refundId":null,"amount":210}],"creditAmount":0,"userId":null,"attributes":[{"id":"f0587d6c-5799-40c5-9c4e-10c1a325f992","paymentId":820,"customAttributeId":20,"name":"Tipo Pago Stripe","key":"tipoPagoStripe","value":"Tarjeta de Cr\u00e9dito","clientZoneVisible":true}]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 16\/01\/2026 19:53","Saldo Actual":"\ud83d\udcb2819 pendientes","Monto Ultimo Pago":"\ud83d\udcb2 210","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 16\/01\/2026 19:53 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb2819 pendientes\",\"Monto Ultimo Pago\": \"$ 210\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 16\/01\/2026 19:53 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"16\/01\/2026 19:53\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-17 1:53:32.160610] [notice] Logging level set to:debug
+[2026-01-17 1:53:32.160674] [debug] Payload recibido: {"uuid":"744c54b1-33be-4010-bf64-6a33ff8ec4fe","changeType":"edit","entity":"payment","entityId":"820","eventName":"payment.edit","extraData":{"entity":{"id":820,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T19:53:26-0600","amount":210,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1108,"invoiceId":2952,"paymentId":820,"creditNoteId":null,"refundId":null,"amount":210}],"creditAmount":0,"userId":null,"attributes":[]},"entityBeforeEdit":{"id":820,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T19:53:26-0600","amount":210,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1108,"invoiceId":2952,"paymentId":820,"creditNoteId":null,"refundId":null,"amount":210}],"creditAmount":0,"userId":null,"attributes":[]}}}
+
+[2026-01-17 1:53:32.428323] [debug] Evento recibido: payment.edit
+[2026-01-17 2:07:01.012415] [notice] Logging level set to:debug
+[2026-01-17 2:07:01.012587] [debug] Payload recibido: {
+ "id": "evt_1SqOumEFY1WEUtgRDpHMbzah",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768615620,
+ "data": {
+ "object": {
+ "id": "ccsbtxn_1SqOulEFY1WEUtgRPyJp1EdC",
+ "object": "customer_cash_balance_transaction",
+ "created": 1768615619,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "ending_balance": 41000,
+ "funded": {
+ "bank_transfer": {
+ "reference": "",
+ "type": "mx_bank_transfer"
+ }
+ },
+ "livemode": false,
+ "net_amount": 41000,
+ "type": "funded"
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": "req_E6vhhCJjN7Zp9W",
+ "idempotency_key": "9fac4eb7-9d7f-4db4-bd11-7424ccf954c8"
+ },
+ "type": "customer_cash_balance_transaction.created"
+}
+
+[2026-01-17 2:07:01.012650] [info] No UUID found in the webhook data
+[2026-01-17 2:07:01.012701] [info] Evento de transferencia de un cliente recibido: {"id":"evt_1SqOumEFY1WEUtgRDpHMbzah","object":"event","api_version":"2023-10-16","created":1768615620,"data":{"object":{"id":"ccsbtxn_1SqOulEFY1WEUtgRPyJp1EdC","object":"customer_cash_balance_transaction","created":1768615619,"currency":"mxn","customer":"cus_QZ7T1h3th3Dr7w","customer_account":null,"ending_balance":41000,"funded":{"bank_transfer":{"reference":"","type":"mx_bank_transfer"}},"livemode":false,"net_amount":41000,"type":"funded"}},"livemode":false,"pending_webhooks":3,"request":{"id":"req_E6vhhCJjN7Zp9W","idempotency_key":"9fac4eb7-9d7f-4db4-bd11-7424ccf954c8"},"type":"customer_cash_balance_transaction.created"}
+
+[2026-01-17 2:07:03.102147] [info] PaymentIntent creado: pi_3SqOunEFY1WEUtgR0IomVd6E
+[2026-01-17 2:07:03.352274] [notice] Logging level set to:debug
+[2026-01-17 2:07:03.352353] [debug] Payload recibido: {
+ "id": "evt_1SqOupEFY1WEUtgR4cHOT4CD",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768615622,
+ "data": {
+ "object": {
+ "id": "ccsbtxn_1SqOuoEFY1WEUtgRJZyk9Kt6",
+ "object": "customer_cash_balance_transaction",
+ "applied_to_payment": {
+ "payment_intent": "pi_3SqOunEFY1WEUtgR0IomVd6E"
+ },
+ "created": 1768615622,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "ending_balance": 0,
+ "livemode": false,
+ "net_amount": -41000,
+ "type": "applied_to_payment"
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": "req_jbrzMOudKU5fUU",
+ "idempotency_key": "733e2f6a-aa4f-419a-aa5a-4d486c7f609d"
+ },
+ "type": "customer_cash_balance_transaction.created"
+}
+
+[2026-01-17 2:07:03.352377] [info] No UUID found in the webhook data
+[2026-01-17 2:07:03.352395] [info] Se aplicó el saldo en Stripe de un pago: {"id":"evt_1SqOupEFY1WEUtgR4cHOT4CD","object":"event","api_version":"2023-10-16","created":1768615622,"data":{"object":{"id":"ccsbtxn_1SqOuoEFY1WEUtgRJZyk9Kt6","object":"customer_cash_balance_transaction","applied_to_payment":{"payment_intent":"pi_3SqOunEFY1WEUtgR0IomVd6E"},"created":1768615622,"currency":"mxn","customer":"cus_QZ7T1h3th3Dr7w","customer_account":null,"ending_balance":0,"livemode":false,"net_amount":-41000,"type":"applied_to_payment"}},"livemode":false,"pending_webhooks":3,"request":{"id":"req_jbrzMOudKU5fUU","idempotency_key":"733e2f6a-aa4f-419a-aa5a-4d486c7f609d"},"type":"customer_cash_balance_transaction.created"}
+
+[2026-01-17 2:07:03.468662] [notice] Logging level set to:debug
+[2026-01-17 2:07:03.468719] [debug] Payload recibido: {
+ "id": "evt_3SqOunEFY1WEUtgR0fkVFJcM",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768615622,
+ "data": {
+ "object": {
+ "id": "pi_3SqOunEFY1WEUtgR0IomVd6E",
+ "object": "payment_intent",
+ "amount": 41000,
+ "amount_capturable": 0,
+ "amount_details": {
+ "tip": {}
+ },
+ "amount_received": 41000,
+ "application": null,
+ "application_fee_amount": null,
+ "automatic_payment_methods": null,
+ "canceled_at": null,
+ "cancellation_reason": null,
+ "capture_method": "automatic_async",
+ "client_secret": "pi_3SqOunEFY1WEUtgR0IomVd6E_secret_ugKqPuKzcRcbw8AJpSgUvIIha",
+ "confirmation_method": "automatic",
+ "created": 1768615621,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "description": null,
+ "excluded_payment_method_types": null,
+ "invoice": null,
+ "last_payment_error": null,
+ "latest_charge": "py_3SqOunEFY1WEUtgR0vbNOU6d",
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1180",
+ "createdBy": "UCRM",
+ "clientId": "146",
+ "tipoPago": "Transferencia Bancaria"
+ },
+ "next_action": null,
+ "on_behalf_of": null,
+ "payment_method": "pm_1SqOunEFY1WEUtgRPS15lxWH",
+ "payment_method_configuration_details": null,
+ "payment_method_options": {
+ "customer_balance": {
+ "bank_transfer": {
+ "type": "mx_bank_transfer"
+ },
+ "funding_type": "bank_transfer"
+ }
+ },
+ "payment_method_types": [
+ "customer_balance"
+ ],
+ "processing": null,
+ "receipt_email": null,
+ "review": null,
+ "setup_future_usage": null,
+ "shipping": null,
+ "source": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": "req_jbrzMOudKU5fUU",
+ "idempotency_key": "733e2f6a-aa4f-419a-aa5a-4d486c7f609d"
+ },
+ "type": "payment_intent.succeeded"
+}
+
+[2026-01-17 2:07:03.468755] [info] No UUID found in the webhook data
+[2026-01-17 2:07:03.468765] [info] Evento de pago exitoso (Stripe PI) recibido.
+[2026-01-17 2:07:03.590444] [notice] Logging level set to:debug
+[2026-01-17 2:07:03.590589] [debug] Payload recibido: {
+ "id": "evt_3SqOunEFY1WEUtgR0aKkJHGR",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768615622,
+ "data": {
+ "object": {
+ "id": "py_3SqOunEFY1WEUtgR0vbNOU6d",
+ "object": "charge",
+ "amount": 41000,
+ "amount_captured": 41000,
+ "amount_refunded": 0,
+ "application": null,
+ "application_fee": null,
+ "application_fee_amount": null,
+ "balance_transaction": null,
+ "billing_details": {
+ "address": {
+ "city": null,
+ "country": null,
+ "line1": null,
+ "line2": null,
+ "postal_code": null,
+ "state": null
+ },
+ "email": null,
+ "name": null,
+ "phone": null,
+ "tax_id": null
+ },
+ "calculated_statement_descriptor": null,
+ "captured": true,
+ "created": 1768615622,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "description": null,
+ "destination": null,
+ "dispute": null,
+ "disputed": false,
+ "failure_balance_transaction": null,
+ "failure_code": null,
+ "failure_message": null,
+ "fraud_details": {},
+ "invoice": null,
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1180",
+ "createdBy": "UCRM",
+ "clientId": "146",
+ "tipoPago": "Transferencia Bancaria"
+ },
+ "on_behalf_of": null,
+ "order": null,
+ "outcome": {
+ "advice_code": null,
+ "network_advice_code": null,
+ "network_decline_code": null,
+ "network_status": "approved_by_network",
+ "reason": null,
+ "risk_level": "not_assessed",
+ "seller_message": "Payment complete.",
+ "type": "authorized"
+ },
+ "paid": true,
+ "payment_intent": "pi_3SqOunEFY1WEUtgR0IomVd6E",
+ "payment_method": "pm_1SqOunEFY1WEUtgRPS15lxWH",
+ "payment_method_details": {
+ "customer_balance": {},
+ "type": "customer_balance"
+ },
+ "radar_options": {},
+ "receipt_email": null,
+ "receipt_number": null,
+ "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xT2tHMFJFRlkxV0VVdGdSKMfdq8sGMgZ2uMRASt86LBZLmaEKNgSvhSgdDqYGbje_eOY4wCZpfzk3EZVMab6WI-Hc7yixbK-9_eaU",
+ "refunded": false,
+ "review": null,
+ "shipping": null,
+ "source": null,
+ "source_transfer": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 2,
+ "request": {
+ "id": "req_jbrzMOudKU5fUU",
+ "idempotency_key": "733e2f6a-aa4f-419a-aa5a-4d486c7f609d"
+ },
+ "type": "charge.succeeded"
+}
+
+[2026-01-17 2:07:03.590687] [info] No UUID found in the webhook data
+[2026-01-17 2:07:04.475867] [notice] Logging level set to:debug
+[2026-01-17 2:07:04.476016] [debug] Payload recibido: {"uuid":"1554de7b-5a94-48f0-8bd3-84327b7b91a7","changeType":"edit","entity":"invoice","entityId":"2952","eventName":"invoice.edit","extraData":{"entity":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":9591,"totalUntaxed":10000,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":409,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200},{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300},{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185},{"id":1108,"invoiceId":2952,"paymentId":820,"creditNoteId":null,"refundId":null,"amount":210},{"id":1109,"invoiceId":2952,"paymentId":821,"creditNoteId":null,"refundId":null,"amount":410}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"entityBeforeEdit":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":9181,"totalUntaxed":10000,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":819,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200},{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300},{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185},{"id":1108,"invoiceId":2952,"paymentId":820,"creditNoteId":null,"refundId":null,"amount":210},{"id":1109,"invoiceId":2952,"paymentId":821,"creditNoteId":null,"refundId":null,"amount":410}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false}}}
+
+[2026-01-17 2:07:04.686136] [debug] Evento recibido: invoice.edit
+[2026-01-17 2:07:04.686376] [debug] Edición de Factura
+
+Notificacion data: {"uuid":"1554de7b-5a94-48f0-8bd3-84327b7b91a7","changeType":"edit","entity":"invoice","entityId":2952,"message":null,"clientId":146,"eventName":"invoice.edit","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-409,"accountCredit":0,"accountOutstanding":409,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":9591,"totalUntaxed":10000,"totalDiscount":-0,"totalTaxAmount":0,"amountToPay":409,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200},{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300},{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185},{"id":1108,"invoiceId":2952,"paymentId":820,"creditNoteId":null,"refundId":null,"amount":210},{"id":1109,"invoiceId":2952,"paymentId":821,"creditNoteId":null,"refundId":null,"amount":410}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"paymentData":null}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":821,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T20:07:04-0600","amount":410,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1109,"invoiceId":2952,"paymentId":821,"creditNoteId":null,"refundId":null,"amount":410}],"creditAmount":0,"userId":null,"attributes":[]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 16\/01\/2026 20:07","Saldo Actual":"\ud83d\udcb2409 pendientes","Monto Ultimo Pago":"\ud83d\udcb2 410","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 16\/01\/2026 20:07 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb2409 pendientes\",\"Monto Ultimo Pago\": \"$ 410\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 16\/01\/2026 20:07 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"16\/01\/2026 20:07\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-17 2:07:06.778829] [notice] Logging level set to:debug
+[2026-01-17 2:07:06.779057] [debug] Payload recibido: {"uuid":"bc7ddd6f-4d91-473b-a655-30cde43c3328","changeType":"insert","entity":"payment","entityId":"821","eventName":"payment.add","extraData":{"entity":{"id":821,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T20:07:04-0600","amount":410,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1109,"invoiceId":2952,"paymentId":821,"creditNoteId":null,"refundId":null,"amount":410}],"creditAmount":0,"userId":null,"attributes":[]},"entityBeforeEdit":null}}
+
+[2026-01-17 2:07:06.954046] [debug] Evento recibido: payment.add
+[2026-01-17 2:07:06.954299] [debug] Notification encodificado en JSON:{"uuid":"bc7ddd6f-4d91-473b-a655-30cde43c3328","changeType":"insert","entity":"payment","entityId":821,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-409,"accountCredit":0,"accountOutstanding":409,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":821,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T20:07:04-0600","amount":410,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1109,"invoiceId":2952,"paymentId":821,"creditNoteId":null,"refundId":null,"amount":410}],"creditAmount":0,"userId":null,"attributes":[]}}
+
+[2026-01-17 2:07:06.954382] [info] Verificando existencia de atributo 'tipoPagoStripe' para Payment ID: 821
+[2026-01-17 2:07:06.959259] [warning] Microservice metadata fetch failed: Server error: `GET http://172.16.5.134:4100/stripe-metadata/821` resulted in a `500 Internal Server Error` response:
+{"error":"Database error"}
+
+[2026-01-17 2:07:07.152028] [info] Payment 821 has no User ID. Assigning Stripe User ID: 1180
+[2026-01-17 2:07:07.158870] [error] Failed to patch User ID via microservice: Server error: `PATCH http://172.16.5.134:4100/payments/821/user` resulted in a `500 Internal Server Error` response:
+{"error":"Database error"}
+
+[2026-01-17 2:07:07.292555] [debug] Fallback Method Guessing 'Tarjeta de crédito Stripe' -> 'Tarjeta de Crédito'
+[2026-01-17 2:07:07.292603] [info] PATCHING Payment 821: Setting tipoPagoStripe = 'Tarjeta de Crédito'
+Eviando comprobante de pago al cliente: 146 con número: 5214181878106
+
+El archivo PDF se ha descargado y guardado correctamente en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+El archivo PDF es válido y tiene contenido: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+Procesando PDF con microservicio: http://172.16.5.134:8050/process
+
+Imagen generada por microservicio guardada en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.jpg
+
+[2026-01-17 2:07:07.948662] [info] Archivo subido exitosamente a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768615627.jpg
+Imagen subida a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768615627.jpg
+
+Archivos temporales (PDF/JPG) eliminados tras subida exitosa.
+
+Proceso de obtención de imagen finalizado.
+
+La cadena CURL que se envia es: {
+ "to": "5214181878106",
+ "from": "whatsapp",
+ "type": "document",
+ "content": {
+ "text": "S/M",
+ "url": "https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768615627.jpg"
+ },
+ "template_values": ["Delfino De los Mares venus", "$410", "$409 pendientes"],
+ "template_uuid": "57ead79cebd14902921477922403093b",
+ "optin_contact": true
+ }
+Response del CallBell: {"message":{"uuid":"ea8a25815fd94de494ce662247179f86","status":"enqueued"}}
+Hay menos de 100 archivos en el directorio. No se eliminarán archivos.
+
+La notificación fue enviada correctamente con estado: enqueued
+
+Notificacion data: {"uuid":"bc7ddd6f-4d91-473b-a655-30cde43c3328","changeType":"insert","entity":"payment","entityId":821,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-409,"accountCredit":0,"accountOutstanding":409,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":821,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T20:07:04-0600","amount":410,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1109,"invoiceId":2952,"paymentId":821,"creditNoteId":null,"refundId":null,"amount":410}],"creditAmount":0,"userId":null,"attributes":[]}}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":821,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T20:07:04-0600","amount":410,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1109,"invoiceId":2952,"paymentId":821,"creditNoteId":null,"refundId":null,"amount":410}],"creditAmount":0,"userId":null,"attributes":[{"id":"4f4b5c15-d5e2-4728-86fb-8e5c2c0399ad","paymentId":821,"customAttributeId":20,"name":"Tipo Pago Stripe","key":"tipoPagoStripe","value":"Tarjeta de Cr\u00e9dito","clientZoneVisible":true}]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 16\/01\/2026 20:07","Saldo Actual":"\ud83d\udcb2409 pendientes","Monto Ultimo Pago":"\ud83d\udcb2 410","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 16\/01\/2026 20:07 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb2409 pendientes\",\"Monto Ultimo Pago\": \"$ 410\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 16\/01\/2026 20:07 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"16\/01\/2026 20:07\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-17 2:07:09.424093] [notice] Logging level set to:debug
+[2026-01-17 2:07:09.424226] [debug] Payload recibido: {"uuid":"cc0d7d54-96fa-484c-9034-ea52e0088699","changeType":"edit","entity":"payment","entityId":"821","eventName":"payment.edit","extraData":{"entity":{"id":821,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T20:07:04-0600","amount":410,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1109,"invoiceId":2952,"paymentId":821,"creditNoteId":null,"refundId":null,"amount":410}],"creditAmount":0,"userId":null,"attributes":[]},"entityBeforeEdit":{"id":821,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-16T20:07:04-0600","amount":410,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1109,"invoiceId":2952,"paymentId":821,"creditNoteId":null,"refundId":null,"amount":410}],"creditAmount":0,"userId":null,"attributes":[]}}}
+
+[2026-01-17 2:07:09.596671] [debug] Evento recibido: payment.edit
+[PROPAGATED_DEBUG] Image Request: File=instalador.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/instalador.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/instalador.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/instalador.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/instalador.png. Size: 13689 bytes
+[PROPAGATED_DEBUG] Image Request: File=whatsapp-logo.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/whatsapp-logo.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/whatsapp-logo.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/whatsapp-logo.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/whatsapp-logo.png. Size: 85794 bytes
+[PROPAGATED_DEBUG] Image Request: File=logo-empresa.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/logo-empresa.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/logo-empresa.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/logo-empresa.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/logo-empresa.png. Size: 48352 bytes
+[PROPAGATED_DEBUG] Image Request: File=oxxo-logo.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/oxxo-logo.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png. Size: 755752 bytes
+[PROPAGATED_DEBUG] Image Request: File=stripe-logo.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/stripe-logo.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/stripe-logo.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/stripe-logo.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/stripe-logo.png. Size: 22209 bytes
+[PROPAGATED_DEBUG] Image Request: File=voucher_Delfino_De_los_Mares_venus_1768634656.jpeg | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/voucher_Delfino_De_los_Mares_venus_1768634656.jpeg | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/voucher_Delfino_De_los_Mares_venus_1768634656.jpeg | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/voucher_Delfino_De_los_Mares_venus_1768634656.jpeg | Exists=YES
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/voucher_Delfino_De_los_Mares_venus_1768634656.jpeg. Size: 34417 bytes
+[2026-01-17 7:27:20.406016] [notice] Logging level set to:debug
+[2026-01-17 7:27:20.406177] [debug] Payload recibido: {
+ "id": "evt_3SqTrnEFY1WEUtgR1h0luqcF",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768634839,
+ "data": {
+ "object": {
+ "id": "pi_3SqTrnEFY1WEUtgR1QnZIDo6",
+ "object": "payment_intent",
+ "amount": 40900,
+ "amount_capturable": 0,
+ "amount_details": {
+ "tip": {}
+ },
+ "amount_received": 40900,
+ "application": null,
+ "application_fee_amount": null,
+ "automatic_payment_methods": null,
+ "canceled_at": null,
+ "cancellation_reason": null,
+ "capture_method": "automatic",
+ "client_secret": "pi_3SqTrnEFY1WEUtgR1QnZIDo6_secret_3LV2ePcMFjpdMiiLTcdtWkX59",
+ "confirmation_method": "automatic",
+ "created": 1768634655,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "description": null,
+ "excluded_payment_method_types": null,
+ "invoice": null,
+ "last_payment_error": null,
+ "latest_charge": "py_3SqTrnEFY1WEUtgR17vJKfOB",
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1180",
+ "createdBy": "UCRM",
+ "ucrm_client_id": "146",
+ "clientId": "146",
+ "paymentType": "card.one_time",
+ "tipoPago": "OXXO"
+ },
+ "next_action": null,
+ "on_behalf_of": null,
+ "payment_method": "pm_1SqTrnEFY1WEUtgR4hTY5jJW",
+ "payment_method_configuration_details": null,
+ "payment_method_options": {
+ "card": {
+ "installments": null,
+ "mandate_options": null,
+ "network": null,
+ "request_three_d_secure": "automatic"
+ },
+ "customer_balance": {
+ "funding_type": null
+ },
+ "oxxo": {
+ "expires_after_days": 3
+ }
+ },
+ "payment_method_types": [
+ "customer_balance",
+ "card",
+ "oxxo"
+ ],
+ "processing": null,
+ "receipt_email": null,
+ "review": null,
+ "setup_future_usage": null,
+ "shipping": null,
+ "source": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": null,
+ "idempotency_key": null
+ },
+ "type": "payment_intent.succeeded"
+}
+
+[2026-01-17 7:27:20.406255] [info] No UUID found in the webhook data
+[2026-01-17 7:27:20.406294] [info] Evento de pago exitoso (Stripe PI) recibido.
+[2026-01-17 7:27:20.553347] [notice] Logging level set to:debug
+[2026-01-17 7:27:20.553415] [debug] Payload recibido: {
+ "id": "evt_3SqTrnEFY1WEUtgR1Z4fOFEt",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768634840,
+ "data": {
+ "object": {
+ "id": "py_3SqTrnEFY1WEUtgR17vJKfOB",
+ "object": "charge",
+ "amount": 40900,
+ "amount_captured": 40900,
+ "amount_refunded": 0,
+ "application": null,
+ "application_fee": null,
+ "application_fee_amount": null,
+ "balance_transaction": "txn_3SqTrnEFY1WEUtgR1T6vWhoY",
+ "billing_details": {
+ "address": {
+ "city": null,
+ "country": null,
+ "line1": null,
+ "line2": null,
+ "postal_code": null,
+ "state": null
+ },
+ "email": "mariscoselsietemares@gmail.com",
+ "name": "Delfino De los Mares venus",
+ "phone": null,
+ "tax_id": null
+ },
+ "calculated_statement_descriptor": null,
+ "captured": true,
+ "created": 1768634839,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "description": null,
+ "destination": null,
+ "dispute": null,
+ "disputed": false,
+ "failure_balance_transaction": null,
+ "failure_code": null,
+ "failure_message": null,
+ "fraud_details": {},
+ "invoice": null,
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1180",
+ "createdBy": "UCRM",
+ "ucrm_client_id": "146",
+ "clientId": "146",
+ "paymentType": "card.one_time",
+ "tipoPago": "OXXO"
+ },
+ "on_behalf_of": null,
+ "order": null,
+ "outcome": {
+ "advice_code": null,
+ "network_advice_code": null,
+ "network_decline_code": null,
+ "network_status": "approved_by_network",
+ "reason": null,
+ "risk_level": "not_assessed",
+ "seller_message": "Payment complete.",
+ "type": "authorized"
+ },
+ "paid": true,
+ "payment_intent": "pi_3SqTrnEFY1WEUtgR1QnZIDo6",
+ "payment_method": "pm_1SqTrnEFY1WEUtgR4hTY5jJW",
+ "payment_method_details": {
+ "oxxo": {
+ "number": "12345678901234657890123456789012"
+ },
+ "type": "oxxo"
+ },
+ "radar_options": {},
+ "receipt_email": null,
+ "receipt_number": null,
+ "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xT2tHMFJFRlkxV0VVdGdSKNjzrMsGMgYRjAEmqLA6LBZeafCx9b5auC7pQHdFb__3dF5rnfEKiNvg__4boyUkhFWcRQYd-Ko61YC9",
+ "refunded": false,
+ "review": null,
+ "shipping": null,
+ "source": null,
+ "source_transfer": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 2,
+ "request": {
+ "id": null,
+ "idempotency_key": null
+ },
+ "type": "charge.succeeded"
+}
+
+[2026-01-17 7:27:20.553455] [info] No UUID found in the webhook data
+[2026-01-17 7:27:21.298043] [notice] Logging level set to:debug
+[2026-01-17 7:27:21.298115] [debug] Payload recibido: {"uuid":"a2a2f3ea-a88b-4fef-9703-d764feaca612","changeType":"edit","entity":"invoice","entityId":"2952","eventName":"invoice.edit","extraData":{"entity":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":10000,"totalUntaxed":10000,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":0,"currencyCode":"MXN","status":3,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200},{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300},{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185},{"id":1108,"invoiceId":2952,"paymentId":820,"creditNoteId":null,"refundId":null,"amount":210},{"id":1109,"invoiceId":2952,"paymentId":821,"creditNoteId":null,"refundId":null,"amount":410},{"id":1110,"invoiceId":2952,"paymentId":822,"creditNoteId":null,"refundId":null,"amount":409}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"entityBeforeEdit":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":9591,"totalUntaxed":10000,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":409,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200},{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300},{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185},{"id":1108,"invoiceId":2952,"paymentId":820,"creditNoteId":null,"refundId":null,"amount":210},{"id":1109,"invoiceId":2952,"paymentId":821,"creditNoteId":null,"refundId":null,"amount":410},{"id":1110,"invoiceId":2952,"paymentId":822,"creditNoteId":null,"refundId":null,"amount":409}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false}}}
+
+[2026-01-17 7:27:21.541156] [debug] Evento recibido: invoice.edit
+[2026-01-17 7:27:21.541276] [debug] Edición de Factura
+
+Notificacion data: {"uuid":"a2a2f3ea-a88b-4fef-9703-d764feaca612","changeType":"edit","entity":"invoice","entityId":2952,"message":null,"clientId":146,"eventName":"invoice.edit","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":0,"accountCredit":0,"accountOutstanding":0,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":{"id":2952,"clientId":146,"number":"002898","createdDate":"2026-01-15T13:36:40-0600","dueDate":"2026-01-29T13:36:40-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-15T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2968,"type":"other","label":"ssdfsdgfdssdssss","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":10000,"totalUntaxed":10000,"totalDiscount":-0,"totalTaxAmount":0,"amountToPay":0,"currencyCode":"MXN","status":3,"paymentCovers":[{"id":1068,"invoiceId":2952,"paymentId":780,"creditNoteId":null,"refundId":null,"amount":240},{"id":1069,"invoiceId":2952,"paymentId":781,"creditNoteId":null,"refundId":null,"amount":340},{"id":1070,"invoiceId":2952,"paymentId":782,"creditNoteId":null,"refundId":null,"amount":210},{"id":1071,"invoiceId":2952,"paymentId":783,"creditNoteId":null,"refundId":null,"amount":500},{"id":1072,"invoiceId":2952,"paymentId":784,"creditNoteId":null,"refundId":null,"amount":170},{"id":1073,"invoiceId":2952,"paymentId":785,"creditNoteId":null,"refundId":null,"amount":190},{"id":1074,"invoiceId":2952,"paymentId":786,"creditNoteId":null,"refundId":null,"amount":210},{"id":1075,"invoiceId":2952,"paymentId":787,"creditNoteId":null,"refundId":null,"amount":260},{"id":1076,"invoiceId":2952,"paymentId":788,"creditNoteId":null,"refundId":null,"amount":290},{"id":1077,"invoiceId":2952,"paymentId":789,"creditNoteId":null,"refundId":null,"amount":330},{"id":1078,"invoiceId":2952,"paymentId":790,"creditNoteId":null,"refundId":null,"amount":130},{"id":1079,"invoiceId":2952,"paymentId":791,"creditNoteId":null,"refundId":null,"amount":40},{"id":1080,"invoiceId":2952,"paymentId":792,"creditNoteId":null,"refundId":null,"amount":100},{"id":1081,"invoiceId":2952,"paymentId":793,"creditNoteId":null,"refundId":null,"amount":1},{"id":1082,"invoiceId":2952,"paymentId":794,"creditNoteId":null,"refundId":null,"amount":210},{"id":1083,"invoiceId":2952,"paymentId":795,"creditNoteId":null,"refundId":null,"amount":115},{"id":1084,"invoiceId":2952,"paymentId":796,"creditNoteId":null,"refundId":null,"amount":225},{"id":1085,"invoiceId":2952,"paymentId":797,"creditNoteId":null,"refundId":null,"amount":175},{"id":1086,"invoiceId":2952,"paymentId":798,"creditNoteId":null,"refundId":null,"amount":10},{"id":1087,"invoiceId":2952,"paymentId":799,"creditNoteId":null,"refundId":null,"amount":245},{"id":1088,"invoiceId":2952,"paymentId":800,"creditNoteId":null,"refundId":null,"amount":245},{"id":1089,"invoiceId":2952,"paymentId":801,"creditNoteId":null,"refundId":null,"amount":670},{"id":1090,"invoiceId":2952,"paymentId":802,"creditNoteId":null,"refundId":null,"amount":845},{"id":1091,"invoiceId":2952,"paymentId":803,"creditNoteId":null,"refundId":null,"amount":175},{"id":1092,"invoiceId":2952,"paymentId":804,"creditNoteId":null,"refundId":null,"amount":100},{"id":1093,"invoiceId":2952,"paymentId":805,"creditNoteId":null,"refundId":null,"amount":350},{"id":1094,"invoiceId":2952,"paymentId":806,"creditNoteId":null,"refundId":null,"amount":50},{"id":1095,"invoiceId":2952,"paymentId":807,"creditNoteId":null,"refundId":null,"amount":175},{"id":1096,"invoiceId":2952,"paymentId":808,"creditNoteId":null,"refundId":null,"amount":100},{"id":1097,"invoiceId":2952,"paymentId":809,"creditNoteId":null,"refundId":null,"amount":160},{"id":1098,"invoiceId":2952,"paymentId":810,"creditNoteId":null,"refundId":null,"amount":160},{"id":1099,"invoiceId":2952,"paymentId":811,"creditNoteId":null,"refundId":null,"amount":50},{"id":1100,"invoiceId":2952,"paymentId":812,"creditNoteId":null,"refundId":null,"amount":310},{"id":1101,"invoiceId":2952,"paymentId":813,"creditNoteId":null,"refundId":null,"amount":310},{"id":1102,"invoiceId":2952,"paymentId":814,"creditNoteId":null,"refundId":null,"amount":100},{"id":1103,"invoiceId":2952,"paymentId":815,"creditNoteId":null,"refundId":null,"amount":100},{"id":1104,"invoiceId":2952,"paymentId":816,"creditNoteId":null,"refundId":null,"amount":570},{"id":1105,"invoiceId":2952,"paymentId":817,"creditNoteId":null,"refundId":null,"amount":200},{"id":1106,"invoiceId":2952,"paymentId":818,"creditNoteId":null,"refundId":null,"amount":300},{"id":1107,"invoiceId":2952,"paymentId":819,"creditNoteId":null,"refundId":null,"amount":185},{"id":1108,"invoiceId":2952,"paymentId":820,"creditNoteId":null,"refundId":null,"amount":210},{"id":1109,"invoiceId":2952,"paymentId":821,"creditNoteId":null,"refundId":null,"amount":410},{"id":1110,"invoiceId":2952,"paymentId":822,"creditNoteId":null,"refundId":null,"amount":409}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"paymentData":null}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":822,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:27:20-0600","amount":409,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1110,"invoiceId":2952,"paymentId":822,"creditNoteId":null,"refundId":null,"amount":409}],"creditAmount":0,"userId":null,"attributes":[]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 01:27","Saldo Actual":"\ud83d\udcb20 est\u00e1 al corriente","Monto Ultimo Pago":"\ud83d\udcb2 409","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 17\/01\/2026 01:27 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb20 est\u00e1 al corriente\",\"Monto Ultimo Pago\": \"$ 409\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 17\/01\/2026 01:27 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"17\/01\/2026 01:27\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-17 7:27:23.568617] [notice] Logging level set to:debug
+[2026-01-17 7:27:23.568748] [debug] Payload recibido: {"uuid":"541ca25b-db05-4a78-9458-e0680b0c207d","changeType":"insert","entity":"payment","entityId":"822","eventName":"payment.add","extraData":{"entity":{"id":822,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:27:20-0600","amount":409,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1110,"invoiceId":2952,"paymentId":822,"creditNoteId":null,"refundId":null,"amount":409}],"creditAmount":0,"userId":null,"attributes":[]},"entityBeforeEdit":null}}
+
+[2026-01-17 7:27:23.781759] [debug] Evento recibido: payment.add
+[2026-01-17 7:27:23.782082] [debug] Notification encodificado en JSON:{"uuid":"541ca25b-db05-4a78-9458-e0680b0c207d","changeType":"insert","entity":"payment","entityId":822,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":0,"accountCredit":0,"accountOutstanding":0,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":822,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:27:20-0600","amount":409,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1110,"invoiceId":2952,"paymentId":822,"creditNoteId":null,"refundId":null,"amount":409}],"creditAmount":0,"userId":null,"attributes":[]}}
+
+[2026-01-17 7:27:23.782155] [info] Verificando existencia de atributo 'tipoPagoStripe' para Payment ID: 822
+[2026-01-17 7:27:23.804253] [info] Microservice found metadata: tipoPago = 'OXXO'
+[2026-01-17 7:27:23.897777] [info] Payment 822 has no User ID. Assigning Stripe User ID: 1180
+[2026-01-17 7:27:23.987310] [info] PATCHING Payment 822: Setting tipoPagoStripe = 'OXXO'
+[2026-01-17 7:27:24.087744] [error] Error in ensureStripePaymentAttribute: Client error: `PATCH https://venus.siip.mx/crm/api/v1.0/payments/822` resulted in a `422 Unprocessable Content` response:
+{"code":422,"message":"Validation failed.","errors":{"value":["There is no choice 'OXXO' for the custom attribute."]}}
+
+Eviando comprobante de pago al cliente: 146 con número: 5214181878106
+
+El archivo PDF se ha descargado y guardado correctamente en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+El archivo PDF es válido y tiene contenido: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+Procesando PDF con microservicio: http://172.16.5.134:8050/process
+
+Imagen generada por microservicio guardada en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.jpg
+
+[2026-01-17 7:27:24.740940] [info] Archivo subido exitosamente a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768634844.jpg
+Imagen subida a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768634844.jpg
+
+Archivos temporales (PDF/JPG) eliminados tras subida exitosa.
+
+Proceso de obtención de imagen finalizado.
+
+La cadena CURL que se envia es: {
+ "to": "5214181878106",
+ "from": "whatsapp",
+ "type": "document",
+ "content": {
+ "text": "S/M",
+ "url": "https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768634844.jpg"
+ },
+ "template_values": ["Delfino De los Mares venus", "$409", "$0 está al corriente"],
+ "template_uuid": "57ead79cebd14902921477922403093b",
+ "optin_contact": true
+ }
+Response del CallBell: {"message":{"uuid":"22079c4f00194dabaf596731d9ee663e","status":"enqueued"}}
+Hay menos de 100 archivos en el directorio. No se eliminarán archivos.
+
+La notificación fue enviada correctamente con estado: enqueued
+
+Notificacion data: {"uuid":"541ca25b-db05-4a78-9458-e0680b0c207d","changeType":"insert","entity":"payment","entityId":822,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":0,"accountCredit":0,"accountOutstanding":0,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":822,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:27:20-0600","amount":409,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1110,"invoiceId":2952,"paymentId":822,"creditNoteId":null,"refundId":null,"amount":409}],"creditAmount":0,"userId":null,"attributes":[]}}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":822,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:27:20-0600","amount":409,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1110,"invoiceId":2952,"paymentId":822,"creditNoteId":null,"refundId":null,"amount":409}],"creditAmount":0,"userId":1180,"attributes":[]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 01:27","Saldo Actual":"\ud83d\udcb20 est\u00e1 al corriente","Monto Ultimo Pago":"\ud83d\udcb2 409","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 17\/01\/2026 01:27 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb20 est\u00e1 al corriente\",\"Monto Ultimo Pago\": \"$ 409\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 17\/01\/2026 01:27 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"17\/01\/2026 01:27\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-17 7:27:26.672003] [notice] Logging level set to:debug
+[2026-01-17 7:27:26.672068] [debug] Payload recibido: {"uuid":"cdbc8250-e637-41a4-a9c0-c3e48b7fc132","changeType":"edit","entity":"payment","entityId":"822","eventName":"payment.edit","extraData":{"entity":{"id":822,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:27:20-0600","amount":409,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1110,"invoiceId":2952,"paymentId":822,"creditNoteId":null,"refundId":null,"amount":409}],"creditAmount":0,"userId":null,"attributes":[]},"entityBeforeEdit":{"id":822,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:27:20-0600","amount":409,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1110,"invoiceId":2952,"paymentId":822,"creditNoteId":null,"refundId":null,"amount":409}],"creditAmount":0,"userId":null,"attributes":[]}}}
+
+[2026-01-17 7:27:26.904290] [debug] Evento recibido: payment.edit
+[PROPAGATED_DEBUG] Image Request: File=voucher_Delfino_De_los_Mares_venus_1768635238.jpeg | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/voucher_Delfino_De_los_Mares_venus_1768635238.jpeg | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/voucher_Delfino_De_los_Mares_venus_1768635238.jpeg | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/voucher_Delfino_De_los_Mares_venus_1768635238.jpeg | Exists=YES
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/voucher_Delfino_De_los_Mares_venus_1768635238.jpeg. Size: 33553 bytes
+[2026-01-17 7:37:05.423808] [notice] Logging level set to:debug
+[2026-01-17 7:37:05.423953] [debug] Payload recibido: {
+ "id": "evt_3SqU1BEFY1WEUtgR0smyIqJJ",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768635425,
+ "data": {
+ "object": {
+ "id": "pi_3SqU1BEFY1WEUtgR0sCrLUQF",
+ "object": "payment_intent",
+ "amount": 10000,
+ "amount_capturable": 0,
+ "amount_details": {
+ "tip": {}
+ },
+ "amount_received": 10000,
+ "application": null,
+ "application_fee_amount": null,
+ "automatic_payment_methods": null,
+ "canceled_at": null,
+ "cancellation_reason": null,
+ "capture_method": "automatic",
+ "client_secret": "pi_3SqU1BEFY1WEUtgR0sCrLUQF_secret_vNCZJzCs8J7FyHDcQJmbwxA8w",
+ "confirmation_method": "automatic",
+ "created": 1768635237,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "customer_account": null,
+ "description": null,
+ "excluded_payment_method_types": null,
+ "invoice": null,
+ "last_payment_error": null,
+ "latest_charge": "py_3SqU1BEFY1WEUtgR0bjK4wAF",
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1180",
+ "createdBy": "UCRM",
+ "ucrm_client_id": "146",
+ "clientId": "146",
+ "paymentType": "card.one_time",
+ "tipoPago": "OXXO"
+ },
+ "next_action": null,
+ "on_behalf_of": null,
+ "payment_method": "pm_1SqU1CEFY1WEUtgRYSYGiqtd",
+ "payment_method_configuration_details": null,
+ "payment_method_options": {
+ "card": {
+ "installments": null,
+ "mandate_options": null,
+ "network": null,
+ "request_three_d_secure": "automatic"
+ },
+ "customer_balance": {
+ "funding_type": null
+ },
+ "oxxo": {
+ "expires_after_days": 3
+ }
+ },
+ "payment_method_types": [
+ "customer_balance",
+ "card",
+ "oxxo"
+ ],
+ "processing": null,
+ "receipt_email": null,
+ "review": null,
+ "setup_future_usage": null,
+ "shipping": null,
+ "source": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": null,
+ "idempotency_key": null
+ },
+ "type": "payment_intent.succeeded"
+}
+
+[2026-01-17 7:37:05.424034] [info] No UUID found in the webhook data
+[2026-01-17 7:37:05.424077] [info] Evento de pago exitoso (Stripe PI) recibido.
+[2026-01-17 7:37:05.702934] [notice] Logging level set to:debug
+[2026-01-17 7:37:05.703134] [debug] Payload recibido: {
+ "id": "evt_3SqU1BEFY1WEUtgR0xfLyf6f",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768635425,
+ "data": {
+ "object": {
+ "id": "py_3SqU1BEFY1WEUtgR0bjK4wAF",
+ "object": "charge",
+ "amount": 10000,
+ "amount_captured": 10000,
+ "amount_refunded": 0,
+ "application": null,
+ "application_fee": null,
+ "application_fee_amount": null,
+ "balance_transaction": "txn_3SqU1BEFY1WEUtgR0VdzXL7w",
+ "billing_details": {
+ "address": {
+ "city": null,
+ "country": null,
+ "line1": null,
+ "line2": null,
+ "postal_code": null,
+ "state": null
+ },
+ "email": "mariscoselsietemares@gmail.com",
+ "name": "Delfino De los Mares venus",
+ "phone": null,
+ "tax_id": null
+ },
+ "calculated_statement_descriptor": null,
+ "captured": true,
+ "created": 1768635424,
+ "currency": "mxn",
+ "customer": "cus_QZ7T1h3th3Dr7w",
+ "description": null,
+ "destination": null,
+ "dispute": null,
+ "disputed": false,
+ "failure_balance_transaction": null,
+ "failure_code": null,
+ "failure_message": null,
+ "fraud_details": {},
+ "invoice": null,
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1180",
+ "createdBy": "UCRM",
+ "ucrm_client_id": "146",
+ "clientId": "146",
+ "paymentType": "card.one_time",
+ "tipoPago": "OXXO"
+ },
+ "on_behalf_of": null,
+ "order": null,
+ "outcome": {
+ "advice_code": null,
+ "network_advice_code": null,
+ "network_decline_code": null,
+ "network_status": "approved_by_network",
+ "reason": null,
+ "risk_level": "not_assessed",
+ "seller_message": "Payment complete.",
+ "type": "authorized"
+ },
+ "paid": true,
+ "payment_intent": "pi_3SqU1BEFY1WEUtgR0sCrLUQF",
+ "payment_method": "pm_1SqU1CEFY1WEUtgRYSYGiqtd",
+ "payment_method_details": {
+ "oxxo": {
+ "number": "12345678901234657890123456789012"
+ },
+ "type": "oxxo"
+ },
+ "radar_options": {},
+ "receipt_email": null,
+ "receipt_number": null,
+ "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xT2tHMFJFRlkxV0VVdGdSKKH4rMsGMgYHIiF9et46LBZr6yase7jFCCmNvYjj5IC17w9SMh73w4xzHUd_go6_AXZy5xqpmCymvI_y",
+ "refunded": false,
+ "review": null,
+ "shipping": null,
+ "source": null,
+ "source_transfer": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 2,
+ "request": {
+ "id": null,
+ "idempotency_key": null
+ },
+ "type": "charge.succeeded"
+}
+
+[2026-01-17 7:37:05.703283] [info] No UUID found in the webhook data
+[2026-01-17 7:37:06.380630] [notice] Logging level set to:debug
+[2026-01-17 7:37:06.380702] [debug] Payload recibido: {"uuid":"1212d8f3-a44e-47a2-8037-04a18bfb24f0","changeType":"insert","entity":"payment","entityId":"823","eventName":"payment.add","extraData":{"entity":{"id":823,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:37:06-0600","amount":100,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[],"creditAmount":100,"userId":null,"attributes":[]},"entityBeforeEdit":null}}
+
+[2026-01-17 7:37:06.561387] [debug] Evento recibido: payment.add
+[2026-01-17 7:37:06.561537] [debug] Notification encodificado en JSON:{"uuid":"1212d8f3-a44e-47a2-8037-04a18bfb24f0","changeType":"insert","entity":"payment","entityId":823,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":100,"accountCredit":100,"accountOutstanding":0,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":823,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:37:06-0600","amount":100,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[],"creditAmount":100,"userId":null,"attributes":[]}}
+
+[2026-01-17 7:37:06.561570] [info] Verificando existencia de atributo 'tipoPagoStripe' para Payment ID: 823
+[2026-01-17 7:37:06.592438] [info] Microservice found metadata: tipoPago = 'OXXO'
+[2026-01-17 7:37:06.702250] [info] Payment 823 has no User ID. Assigning Stripe User ID: 1180
+[2026-01-17 7:37:06.823704] [info] PATCHING Payment 823: Setting tipoPagoStripe = 'OXXO Pay'
+Eviando comprobante de pago al cliente: 146 con número: 5214181878106
+
+El archivo PDF se ha descargado y guardado correctamente en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+El archivo PDF es válido y tiene contenido: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+Procesando PDF con microservicio: http://172.16.5.134:8050/process
+
+Imagen generada por microservicio guardada en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.jpg
+
+[2026-01-17 7:37:07.640027] [info] Archivo subido exitosamente a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768635427.jpg
+Imagen subida a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768635427.jpg
+
+Archivos temporales (PDF/JPG) eliminados tras subida exitosa.
+
+Proceso de obtención de imagen finalizado.
+
+La cadena CURL que se envia es: {
+ "to": "5214181878106",
+ "from": "whatsapp",
+ "type": "document",
+ "content": {
+ "text": "S/M",
+ "url": "https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768635427.jpg"
+ },
+ "template_values": ["Delfino De los Mares venus", "$100", "$100 a favor"],
+ "template_uuid": "57ead79cebd14902921477922403093b",
+ "optin_contact": true
+ }
+Response del CallBell: {"message":{"uuid":"c0c8b1535e554f179447afe69ee3b080","status":"enqueued"}}
+Hay menos de 100 archivos en el directorio. No se eliminarán archivos.
+
+La notificación fue enviada correctamente con estado: enqueued
+
+Notificacion data: {"uuid":"1212d8f3-a44e-47a2-8037-04a18bfb24f0","changeType":"insert","entity":"payment","entityId":823,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":100,"accountCredit":100,"accountOutstanding":0,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":823,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:37:06-0600","amount":100,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[],"creditAmount":100,"userId":null,"attributes":[]}}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":823,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:37:06-0600","amount":100,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[],"creditAmount":100,"userId":1180,"attributes":[{"id":"290ac86c-26ef-4027-add2-5717e50a9c7f","paymentId":823,"customAttributeId":20,"name":"Tipo Pago Stripe","key":"tipoPagoStripe","value":"OXXO Pay","clientZoneVisible":true}]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 01:37","Saldo Actual":"\ud83d\udcb2100 a favor","Monto Ultimo Pago":"\ud83d\udcb2 100","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 17\/01\/2026 01:37 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb2100 a favor\",\"Monto Ultimo Pago\": \"$ 100\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 17\/01\/2026 01:37 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"17\/01\/2026 01:37\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-17 7:37:10.470616] [notice] Logging level set to:debug
+[2026-01-17 7:37:10.470804] [debug] Payload recibido: {"uuid":"a3b10a41-00bf-4c8c-b859-44883c01f744","changeType":"edit","entity":"payment","entityId":"823","eventName":"payment.edit","extraData":{"entity":{"id":823,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:37:06-0600","amount":100,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[],"creditAmount":100,"userId":1180,"attributes":[{"id":"290ac86c-26ef-4027-add2-5717e50a9c7f","paymentId":823,"customAttributeId":20,"name":"Tipo Pago Stripe","key":"tipoPagoStripe","value":"OXXO Pay","clientZoneVisible":true}]},"entityBeforeEdit":{"id":823,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:37:06-0600","amount":100,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[],"creditAmount":100,"userId":null,"attributes":[]}}}
+
+[2026-01-17 7:37:10.674052] [debug] Evento recibido: payment.edit
+[2026-01-17 7:38:19.513119] [notice] Logging level set to:debug
+[2026-01-17 7:38:19.513271] [debug] Payload recibido: {
+ "id": "evt_3SqU1fEFY1WEUtgR0hljp5XH",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768635498,
+ "data": {
+ "object": {
+ "id": "pi_3SqU1fEFY1WEUtgR0DKc05Hq",
+ "object": "payment_intent",
+ "amount": 20000,
+ "amount_capturable": 0,
+ "amount_details": {
+ "shipping": {
+ "amount": 0,
+ "from_postal_code": null,
+ "to_postal_code": null
+ },
+ "tax": {
+ "total_tax_amount": 0
+ },
+ "tip": {}
+ },
+ "amount_received": 0,
+ "application": null,
+ "application_fee_amount": null,
+ "automatic_payment_methods": null,
+ "canceled_at": null,
+ "cancellation_reason": null,
+ "capture_method": "automatic",
+ "client_secret": "pi_3SqU1fEFY1WEUtgR0DKc05Hq_secret_4YDfwG2JrwY3nk1KIxYHh5Xfu",
+ "confirmation_method": "automatic",
+ "created": 1768635267,
+ "currency": "mxn",
+ "customer": "cus_To6HAuZ9BqnemW",
+ "customer_account": null,
+ "description": null,
+ "excluded_payment_method_types": null,
+ "invoice": null,
+ "last_payment_error": {
+ "charge": "ch_3SqU1fEFY1WEUtgR0AXWJYZe",
+ "code": "card_declined",
+ "decline_code": "test_mode_live_card",
+ "doc_url": "https://stripe.com/docs/error-codes/card-declined",
+ "message": "Your card was declined. Your request used a real card while testing. For a list of valid test cards, visit: https://stripe.com/docs/testing.",
+ "payment_method": {
+ "id": "pm_1SqU5MEFY1WEUtgR6kpJfMRj",
+ "object": "payment_method",
+ "allow_redisplay": "limited",
+ "billing_details": {
+ "address": {
+ "city": null,
+ "country": "MX",
+ "line1": null,
+ "line2": null,
+ "postal_code": null,
+ "state": null
+ },
+ "email": "dispos.cyber@gmail.com",
+ "name": "Daniel Humberto Soto Villegas",
+ "phone": null,
+ "tax_id": null
+ },
+ "card": {
+ "brand": "mastercard",
+ "checks": {
+ "address_line1_check": null,
+ "address_postal_code_check": null,
+ "cvc_check": "unchecked"
+ },
+ "country": "MX",
+ "display_brand": "mastercard",
+ "exp_month": 11,
+ "exp_year": 2030,
+ "fingerprint": "NCKwvrWmh9r9JLQY",
+ "funding": "credit",
+ "generated_from": null,
+ "last4": "7521",
+ "networks": {
+ "available": [
+ "mastercard"
+ ],
+ "preferred": null
+ },
+ "regulated_status": "unregulated",
+ "three_d_secure_usage": {
+ "supported": true
+ },
+ "wallet": null
+ },
+ "created": 1768635497,
+ "customer": null,
+ "customer_account": null,
+ "livemode": false,
+ "metadata": {},
+ "type": "card"
+ },
+ "type": "card_error"
+ },
+ "latest_charge": "ch_3SqU1fEFY1WEUtgR0AXWJYZe",
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1015",
+ "createdBy": "UCRM",
+ "clientId": "146",
+ "paymentType": "card.one_time",
+ "paymentToken": "72dda38a-dfca-44db-acb0-a99224db0c4d"
+ },
+ "next_action": null,
+ "on_behalf_of": null,
+ "payment_details": {
+ "customer_reference": null,
+ "order_reference": "prod_PbYv8JTpXetIfH"
+ },
+ "payment_method": null,
+ "payment_method_configuration_details": null,
+ "payment_method_options": {
+ "card": {
+ "installments": {
+ "available_plans": [],
+ "enabled": false,
+ "plan": null
+ },
+ "mandate_options": null,
+ "network": null,
+ "request_three_d_secure": "automatic"
+ }
+ },
+ "payment_method_types": [
+ "card"
+ ],
+ "processing": null,
+ "receipt_email": null,
+ "review": null,
+ "setup_future_usage": null,
+ "shipping": null,
+ "source": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "requires_payment_method",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": null,
+ "idempotency_key": "2a25c993-3d91-4f18-9e90-1e3f681215ce"
+ },
+ "type": "payment_intent.payment_failed"
+}
+
+[2026-01-17 7:38:19.513377] [info] No UUID found in the webhook data
+[2026-01-17 7:39:01.290426] [notice] Logging level set to:debug
+[2026-01-17 7:39:01.290591] [debug] Payload recibido: {
+ "id": "evt_3SqU1fEFY1WEUtgR0vP0AJnj",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768635540,
+ "data": {
+ "object": {
+ "id": "pi_3SqU1fEFY1WEUtgR0DKc05Hq",
+ "object": "payment_intent",
+ "amount": 20000,
+ "amount_capturable": 0,
+ "amount_details": {
+ "shipping": {
+ "amount": 0,
+ "from_postal_code": null,
+ "to_postal_code": null
+ },
+ "tax": {
+ "total_tax_amount": 0
+ },
+ "tip": {}
+ },
+ "amount_received": 20000,
+ "application": null,
+ "application_fee_amount": null,
+ "automatic_payment_methods": null,
+ "canceled_at": null,
+ "cancellation_reason": null,
+ "capture_method": "automatic",
+ "client_secret": "pi_3SqU1fEFY1WEUtgR0DKc05Hq_secret_4YDfwG2JrwY3nk1KIxYHh5Xfu",
+ "confirmation_method": "automatic",
+ "created": 1768635267,
+ "currency": "mxn",
+ "customer": "cus_To6HAuZ9BqnemW",
+ "customer_account": null,
+ "description": null,
+ "excluded_payment_method_types": null,
+ "invoice": null,
+ "last_payment_error": null,
+ "latest_charge": "ch_3SqU1fEFY1WEUtgR0jyd1adq",
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1015",
+ "createdBy": "UCRM",
+ "clientId": "146",
+ "paymentType": "card.one_time",
+ "paymentToken": "72dda38a-dfca-44db-acb0-a99224db0c4d"
+ },
+ "next_action": null,
+ "on_behalf_of": null,
+ "payment_details": {
+ "customer_reference": null,
+ "order_reference": "prod_PbYv8JTpXetIfH"
+ },
+ "payment_method": "pm_1SqU62EFY1WEUtgR9vJ4zZw9",
+ "payment_method_configuration_details": null,
+ "payment_method_options": {
+ "card": {
+ "installments": {
+ "available_plans": [],
+ "enabled": false,
+ "plan": null
+ },
+ "mandate_options": null,
+ "network": null,
+ "request_three_d_secure": "automatic"
+ }
+ },
+ "payment_method_types": [
+ "card"
+ ],
+ "processing": null,
+ "receipt_email": null,
+ "review": null,
+ "setup_future_usage": null,
+ "shipping": null,
+ "source": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": null,
+ "idempotency_key": "a9b11eeb-cba2-4398-8a37-3101a2274532"
+ },
+ "type": "payment_intent.succeeded"
+}
+
+[2026-01-17 7:39:01.290682] [info] No UUID found in the webhook data
+[2026-01-17 7:39:01.290980] [info] Evento de pago exitoso (Stripe PI) recibido.
+[2026-01-17 7:39:01.335275] [notice] Logging level set to:debug
+[2026-01-17 7:39:01.335525] [debug] Payload recibido: {
+ "id": "evt_3SqU1fEFY1WEUtgR0t8P39CS",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768635540,
+ "data": {
+ "object": {
+ "id": "ch_3SqU1fEFY1WEUtgR0jyd1adq",
+ "object": "charge",
+ "amount": 20000,
+ "amount_captured": 20000,
+ "amount_refunded": 0,
+ "application": null,
+ "application_fee": null,
+ "application_fee_amount": null,
+ "balance_transaction": "txn_3SqU1fEFY1WEUtgR0871H4CG",
+ "billing_details": {
+ "address": {
+ "city": null,
+ "country": "MX",
+ "line1": null,
+ "line2": null,
+ "postal_code": null,
+ "state": null
+ },
+ "email": "dispos.cyber@gmail.com",
+ "name": "Daniel Humberto Soto Villegas",
+ "phone": null,
+ "tax_id": null
+ },
+ "calculated_statement_descriptor": "SIIP INTERNET",
+ "captured": true,
+ "created": 1768635539,
+ "currency": "mxn",
+ "customer": "cus_To6HAuZ9BqnemW",
+ "description": null,
+ "destination": null,
+ "dispute": null,
+ "disputed": false,
+ "failure_balance_transaction": null,
+ "failure_code": null,
+ "failure_message": null,
+ "fraud_details": {},
+ "invoice": null,
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1015",
+ "createdBy": "UCRM",
+ "clientId": "146",
+ "paymentType": "card.one_time",
+ "paymentToken": "72dda38a-dfca-44db-acb0-a99224db0c4d"
+ },
+ "on_behalf_of": null,
+ "order": null,
+ "outcome": {
+ "advice_code": null,
+ "network_advice_code": null,
+ "network_decline_code": null,
+ "network_status": "approved_by_network",
+ "reason": null,
+ "risk_level": "normal",
+ "risk_score": 22,
+ "seller_message": "Payment complete.",
+ "type": "authorized"
+ },
+ "paid": true,
+ "payment_intent": "pi_3SqU1fEFY1WEUtgR0DKc05Hq",
+ "payment_method": "pm_1SqU62EFY1WEUtgR9vJ4zZw9",
+ "payment_method_details": {
+ "card": {
+ "amount_authorized": 20000,
+ "authorization_code": "390689",
+ "brand": "visa",
+ "checks": {
+ "address_line1_check": null,
+ "address_postal_code_check": null,
+ "cvc_check": "pass"
+ },
+ "country": "US",
+ "exp_month": 11,
+ "exp_year": 2030,
+ "extended_authorization": {
+ "status": "disabled"
+ },
+ "fingerprint": "WpS5c5H7kZDcpRtk",
+ "funding": "credit",
+ "incremental_authorization": {
+ "status": "unavailable"
+ },
+ "installments": null,
+ "last4": "4242",
+ "mandate": null,
+ "multicapture": {
+ "status": "unavailable"
+ },
+ "network": "visa",
+ "network_token": {
+ "used": false
+ },
+ "network_transaction_id": "871128353995372",
+ "overcapture": {
+ "maximum_amount_capturable": 20000,
+ "status": "unavailable"
+ },
+ "regulated_status": "unregulated",
+ "three_d_secure": null,
+ "wallet": null
+ },
+ "type": "card"
+ },
+ "radar_options": {},
+ "receipt_email": null,
+ "receipt_number": null,
+ "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xT2tHMFJFRlkxV0VVdGdSKJT5rMsGMgb3ydUmZyQ6LBbyEhgdw8sWSSo4sN-np6GSh81WGWibFU_yUnPmM45DQM0VTZTHKQ7poG1D",
+ "refunded": false,
+ "review": null,
+ "shipping": null,
+ "source": null,
+ "source_transfer": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 2,
+ "request": {
+ "id": null,
+ "idempotency_key": "a9b11eeb-cba2-4398-8a37-3101a2274532"
+ },
+ "type": "charge.succeeded"
+}
+
+[2026-01-17 7:39:01.335591] [info] No UUID found in the webhook data
+[2026-01-17 7:39:02.261590] [notice] Logging level set to:debug
+[2026-01-17 7:39:02.261648] [debug] Payload recibido: {"uuid":"732fbe0a-094f-4c40-a9b6-4e8dced44d05","changeType":"insert","entity":"payment","entityId":"824","eventName":"payment.add","extraData":{"entity":{"id":824,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:39:01-0600","amount":200,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[],"creditAmount":200,"userId":null,"attributes":[]},"entityBeforeEdit":null}}
+
+[2026-01-17 7:39:02.504795] [debug] Evento recibido: payment.add
+[2026-01-17 7:39:02.505053] [debug] Notification encodificado en JSON:{"uuid":"732fbe0a-094f-4c40-a9b6-4e8dced44d05","changeType":"insert","entity":"payment","entityId":824,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":300,"accountCredit":300,"accountOutstanding":0,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":824,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:39:01-0600","amount":200,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[],"creditAmount":200,"userId":null,"attributes":[]}}
+
+[2026-01-17 7:39:02.505136] [info] Verificando existencia de atributo 'tipoPagoStripe' para Payment ID: 824
+[2026-01-17 7:39:02.614722] [info] Payment 824 has no User ID. Assigning Stripe User ID: 1180
+[2026-01-17 7:39:02.758676] [debug] Fallback Method Guessing 'Tarjeta de crédito Stripe' -> 'Tarjeta de Crédito'
+[2026-01-17 7:39:02.758724] [info] PATCHING Payment 824: Setting tipoPagoStripe = 'Tarjeta de Crédito'
+Eviando comprobante de pago al cliente: 146 con número: 5214181878106
+
+El archivo PDF se ha descargado y guardado correctamente en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+El archivo PDF es válido y tiene contenido: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+Procesando PDF con microservicio: http://172.16.5.134:8050/process
+
+Imagen generada por microservicio guardada en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.jpg
+
+[2026-01-17 7:39:03.477127] [info] Archivo subido exitosamente a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768635543.jpg
+Imagen subida a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768635543.jpg
+
+Archivos temporales (PDF/JPG) eliminados tras subida exitosa.
+
+Proceso de obtención de imagen finalizado.
+
+La cadena CURL que se envia es: {
+ "to": "5214181878106",
+ "from": "whatsapp",
+ "type": "document",
+ "content": {
+ "text": "S/M",
+ "url": "https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768635543.jpg"
+ },
+ "template_values": ["Delfino De los Mares venus", "$200", "$300 a favor"],
+ "template_uuid": "57ead79cebd14902921477922403093b",
+ "optin_contact": true
+ }
+Response del CallBell: {"message":{"uuid":"813cab6de3474d81886958bd9ac1dc79","status":"enqueued"}}
+Hay menos de 100 archivos en el directorio. No se eliminarán archivos.
+
+La notificación fue enviada correctamente con estado: enqueued
+
+Notificacion data: {"uuid":"732fbe0a-094f-4c40-a9b6-4e8dced44d05","changeType":"insert","entity":"payment","entityId":824,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":300,"accountCredit":300,"accountOutstanding":0,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":824,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:39:01-0600","amount":200,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[],"creditAmount":200,"userId":null,"attributes":[]}}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":824,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:39:01-0600","amount":200,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[],"creditAmount":200,"userId":1180,"attributes":[{"id":"497c7e2b-1fe6-4dcc-8b42-090ce4ea7b6c","paymentId":824,"customAttributeId":20,"name":"Tipo Pago Stripe","key":"tipoPagoStripe","value":"Tarjeta de Cr\u00e9dito","clientZoneVisible":true}]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 01:39","Saldo Actual":"\ud83d\udcb2300 a favor","Monto Ultimo Pago":"\ud83d\udcb2 200","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 17\/01\/2026 01:39 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb2300 a favor\",\"Monto Ultimo Pago\": \"$ 200\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 17\/01\/2026 01:39 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"17\/01\/2026 01:39\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-17 7:39:06.307092] [notice] Logging level set to:debug
+[2026-01-17 7:39:06.307291] [debug] Payload recibido: {"uuid":"a14bd79a-6bb8-4449-8a07-8078c8827e85","changeType":"edit","entity":"payment","entityId":"824","eventName":"payment.edit","extraData":{"entity":{"id":824,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:39:01-0600","amount":200,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[],"creditAmount":200,"userId":1180,"attributes":[{"id":"497c7e2b-1fe6-4dcc-8b42-090ce4ea7b6c","paymentId":824,"customAttributeId":20,"name":"Tipo Pago Stripe","key":"tipoPagoStripe","value":"Tarjeta de Cr\u00e9dito","clientZoneVisible":true}]},"entityBeforeEdit":{"id":824,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:39:01-0600","amount":200,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[],"creditAmount":200,"userId":null,"attributes":[]}}}
+
+[2026-01-17 7:39:06.507433] [debug] Evento recibido: payment.edit
+[2026-01-17 18:22:37.623111] [notice] Logging level set to:debug
+[2026-01-17 18:22:37.623199] [debug] Payload recibido: {"uuid":"8fe698b5-402c-4c58-b961-8a196ec1ecd5","changeType":"insert","entity":"invoice","entityId":"2953","eventName":"invoice.add","extraData":{"entity":{"id":2953,"clientId":146,"number":"002899","createdDate":"2026-01-17T12:22:17-0600","dueDate":"2026-01-31T12:22:17-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-17T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2969,"type":"other","label":"diez mil","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":300,"totalUntaxed":10000,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":9700,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1111,"invoiceId":2953,"paymentId":823,"creditNoteId":null,"refundId":null,"amount":100},{"id":1112,"invoiceId":2953,"paymentId":824,"creditNoteId":null,"refundId":null,"amount":200}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"entityBeforeEdit":null}}
+
+[2026-01-17 18:22:37.839818] [debug] Evento recibido: invoice.add
+[2026-01-17 18:22:37.840017] [debug] Adición de Factura
+
+[2026-01-17 18:22:37.840109] [debug] datos del notification para el invoice add:{"uuid":"8fe698b5-402c-4c58-b961-8a196ec1ecd5","changeType":"insert","entity":"invoice","entityId":2953,"message":null,"clientId":146,"eventName":"invoice.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-9700,"accountCredit":0,"accountOutstanding":9700,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":{"id":2953,"clientId":146,"number":"002899","createdDate":"2026-01-17T12:22:17-0600","dueDate":"2026-01-31T12:22:17-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-17T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2969,"type":"other","label":"diez mil","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":300,"totalUntaxed":10000,"totalDiscount":-0,"totalTaxAmount":0,"amountToPay":9700,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1111,"invoiceId":2953,"paymentId":823,"creditNoteId":null,"refundId":null,"amount":100},{"id":1112,"invoiceId":2953,"paymentId":824,"creditNoteId":null,"refundId":null,"amount":200}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"paymentData":null}
+
+[2026-01-17 18:22:37.840181] [debug] Account Balance: -9700
+
+Notificacion data: {"uuid":"8fe698b5-402c-4c58-b961-8a196ec1ecd5","changeType":"insert","entity":"invoice","entityId":2953,"message":null,"clientId":146,"eventName":"invoice.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-9700,"accountCredit":0,"accountOutstanding":9700,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":{"id":2953,"clientId":146,"number":"002899","createdDate":"2026-01-17T12:22:17-0600","dueDate":"2026-01-31T12:22:17-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-17T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2969,"type":"other","label":"diez mil","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":300,"totalUntaxed":10000,"totalDiscount":-0,"totalTaxAmount":0,"amountToPay":9700,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1111,"invoiceId":2953,"paymentId":823,"creditNoteId":null,"refundId":null,"amount":100},{"id":1112,"invoiceId":2953,"paymentId":824,"creditNoteId":null,"refundId":null,"amount":200}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"paymentData":null}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":824,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:39:01-0600","amount":200,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1112,"invoiceId":2953,"paymentId":824,"creditNoteId":null,"refundId":null,"amount":200}],"creditAmount":0,"userId":1180,"attributes":[{"id":"497c7e2b-1fe6-4dcc-8b42-090ce4ea7b6c","paymentId":824,"customAttributeId":20,"name":"Tipo Pago Stripe","key":"tipoPagoStripe","value":"Tarjeta de Cr\u00e9dito","clientZoneVisible":true}]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 12:22","Saldo Actual":"\ud83d\udcb29700 pendientes","Monto Ultimo Pago":"\ud83d\udcb2 200","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 17\/01\/2026 01:39 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb29700 pendientes\",\"Monto Ultimo Pago\": \"$ 200\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 17\/01\/2026 01:39 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"17\/01\/2026 12:22\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-17 18:54:19.584197] [notice] Logging level set to:debug
+[2026-01-17 18:54:19.584285] [debug] Payload recibido: {"uuid":"9040159a-32d6-4dbe-8ea7-11329c71fbb6","changeType":"insert","entity":"invoice","entityId":"2954","eventName":"invoice.add","extraData":{"entity":{"id":2954,"clientId":146,"number":"002900","createdDate":"2026-01-17T12:53:55-0600","dueDate":"2026-01-31T12:53:55-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-17T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2970,"type":"other","label":"pruebas","price":100,"quantity":1,"total":100,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":100,"discount":null,"discountLabel":"Descuento","taxes":[],"total":100,"amountPaid":0,"totalUntaxed":100,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":100,"currencyCode":"MXN","status":1,"paymentCovers":[],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"entityBeforeEdit":null}}
+
+[2026-01-17 18:54:19.786993] [debug] Evento recibido: invoice.add
+[2026-01-17 18:54:19.787199] [debug] Adición de Factura
+
+[2026-01-17 18:54:19.787290] [debug] datos del notification para el invoice add:{"uuid":"9040159a-32d6-4dbe-8ea7-11329c71fbb6","changeType":"insert","entity":"invoice","entityId":2954,"message":null,"clientId":146,"eventName":"invoice.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-9800,"accountCredit":0,"accountOutstanding":9800,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":{"id":2954,"clientId":146,"number":"002900","createdDate":"2026-01-17T12:53:55-0600","dueDate":"2026-01-31T12:53:55-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-17T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2970,"type":"other","label":"pruebas","price":100,"quantity":1,"total":100,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":100,"discount":null,"discountLabel":"Descuento","taxes":[],"total":100,"amountPaid":0,"totalUntaxed":100,"totalDiscount":-0,"totalTaxAmount":0,"amountToPay":100,"currencyCode":"MXN","status":1,"paymentCovers":[],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"paymentData":null}
+
+[2026-01-17 18:54:19.787357] [debug] Account Balance: -9800
+
+[2026-01-17 18:54:19.787477] [debug] onlyUpdate: Iniciando actualización para teléfono: 5214181878106
+[2026-01-17 18:54:19.787626] [debug] onlyUpdate: Teléfono validado: 5214181878106
+[2026-01-17 18:54:20.644756] [debug] onlyUpdate: Contacto obtenido de CallBell: {"contact":{"uuid":"74cc2bb45eb8409f92cd5dba99200d26","name":"Delfino De los Mares venus","phoneNumber":"5214181878106","avatarUrl":null,"createdAt":"2024-01-08T17:04:13Z","closedAt":"2026-01-16T15:23:41Z","source":"whatsapp","funnelId":null,"href":"https:\/\/dash.callbell.eu\/contacts\/74cc2bb45eb8409f92cd5dba99200d26","conversationHref":"https:\/\/dash.callbell.eu\/chat\/53c8229c428c4081b197ab136feab73b","tags":["s0LOCS","PRUEBAS"],"assignedUser":null,"customFields":{"user entry point":"inbound_message","Antena\/Sectorial":"Sectorial-4b 172.16.13.16\/24","Site":"0LOCS","Estado":"\ud83d\udfe2 Activo ","Cliente":"146","Saldo Actual":"\ud83d\udcb29700 pendientes","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Clabe Interbancaria":"124180650741646979","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Monto Ultimo Pago":"\ud83d\udcb2 200","Nombre":"\ud83d\udc64 Delfino De los Mares venus","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}","Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 17\/01\/2026 01:39 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb29700 pendientes\",\"Monto Ultimo Pago\": \"$ 200\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 17\/01\/2026 01:39 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"17\/01\/2026 12:22\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","user name":"Daniel Humberto","Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 12:22"},"team":{"uuid":"5faeed738d6a44ccacf6509762eb288d","name":"General","default":true,"members":5,"createdAt":"2023-11-07T00:37:10Z"},"channel":{"uuid":"dbaa248932634e7ea4346a320960c24a","title":null,"type":"whatsapp","main":true},"blockedAt":null}}
+[2026-01-17 18:54:20.645082] [info] onlyUpdate: Ejecutando patchWhatsapp para teléfono: 5214181878106
+Notificacion data: {"uuid":"9040159a-32d6-4dbe-8ea7-11329c71fbb6","changeType":"insert","entity":"invoice","entityId":2954,"message":null,"clientId":146,"eventName":"invoice.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-9800,"accountCredit":0,"accountOutstanding":9800,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":{"id":2954,"clientId":146,"number":"002900","createdDate":"2026-01-17T12:53:55-0600","dueDate":"2026-01-31T12:53:55-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-17T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2970,"type":"other","label":"pruebas","price":100,"quantity":1,"total":100,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":100,"discount":null,"discountLabel":"Descuento","taxes":[],"total":100,"amountPaid":0,"totalUntaxed":100,"totalDiscount":-0,"totalTaxAmount":0,"amountToPay":100,"currencyCode":"MXN","status":1,"paymentCovers":[],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"paymentData":null}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":824,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:39:01-0600","amount":200,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1112,"invoiceId":2953,"paymentId":824,"creditNoteId":null,"refundId":null,"amount":200}],"creditAmount":0,"userId":1180,"attributes":[{"id":"497c7e2b-1fe6-4dcc-8b42-090ce4ea7b6c","paymentId":824,"customAttributeId":20,"name":"Tipo Pago Stripe","key":"tipoPagoStripe","value":"Tarjeta de Cr\u00e9dito","clientZoneVisible":true}]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 12:54","Saldo Actual":"\ud83d\udcb29800 pendientes","Monto Ultimo Pago":"\ud83d\udcb2 200","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 17\/01\/2026 01:39 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb29800 pendientes\",\"Monto Ultimo Pago\": \"$ 200\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 17\/01\/2026 01:39 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"17\/01\/2026 12:54\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+[2026-01-17 18:57:37.526946] [notice] Logging level set to:debug
+[2026-01-17 18:57:37.527091] [debug] Payload recibido: {"uuid":"50d24801-5784-4829-bac9-e29a9ced7d43","changeType":"insert","entity":"invoice","entityId":"2955","eventName":"invoice.add","extraData":{"entity":{"id":2955,"clientId":146,"number":"002901","createdDate":"2026-01-17T12:57:23-0600","dueDate":"2026-01-31T12:57:23-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-17T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2971,"type":"other","label":"pruebas 2","price":50,"quantity":1,"total":50,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":50,"discount":null,"discountLabel":"Descuento","taxes":[],"total":50,"amountPaid":0,"totalUntaxed":50,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":50,"currencyCode":"MXN","status":1,"paymentCovers":[],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"entityBeforeEdit":null}}
+
+[2026-01-17 18:57:37.721100] [debug] Evento recibido: invoice.add
+[2026-01-17 18:57:37.721354] [debug] Adición de Factura
+
+[2026-01-17 18:57:37.721456] [debug] datos del notification para el invoice add:{"uuid":"50d24801-5784-4829-bac9-e29a9ced7d43","changeType":"insert","entity":"invoice","entityId":2955,"message":null,"clientId":146,"eventName":"invoice.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-9850,"accountCredit":0,"accountOutstanding":9850,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":{"id":2955,"clientId":146,"number":"002901","createdDate":"2026-01-17T12:57:23-0600","dueDate":"2026-01-31T12:57:23-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-17T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2971,"type":"other","label":"pruebas 2","price":50,"quantity":1,"total":50,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":50,"discount":null,"discountLabel":"Descuento","taxes":[],"total":50,"amountPaid":0,"totalUntaxed":50,"totalDiscount":-0,"totalTaxAmount":0,"amountToPay":50,"currencyCode":"MXN","status":1,"paymentCovers":[],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"paymentData":null}
+
+[2026-01-17 18:57:37.721534] [debug] Account Balance: -9850
+
+[2026-01-17 18:57:37.721674] [debug] onlyUpdate: Iniciando actualización para teléfono: 5214181878106
+[2026-01-17 18:57:37.725728] [debug] onlyUpdate: Teléfono validado: 5214181878106
+[2026-01-17 18:57:38.511634] [debug] onlyUpdate: Contacto obtenido de CallBell: {"contact":{"uuid":"74cc2bb45eb8409f92cd5dba99200d26","name":"Delfino De los Mares venus","phoneNumber":"5214181878106","avatarUrl":null,"createdAt":"2024-01-08T17:04:13Z","closedAt":"2026-01-16T15:23:41Z","source":"whatsapp","funnelId":null,"href":"https:\/\/dash.callbell.eu\/contacts\/74cc2bb45eb8409f92cd5dba99200d26","conversationHref":"https:\/\/dash.callbell.eu\/chat\/53c8229c428c4081b197ab136feab73b","tags":["s0LOCS","PRUEBAS"],"assignedUser":null,"customFields":{"user entry point":"inbound_message","Antena\/Sectorial":"Sectorial-4b 172.16.13.16\/24","Site":"0LOCS","Estado":"\ud83d\udfe2 Activo ","Cliente":"146","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Clabe Interbancaria":"124180650741646979","Saldo Actual":"\ud83d\udcb29800 pendientes","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Monto Ultimo Pago":"\ud83d\udcb2 200","Nombre":"\ud83d\udc64 Delfino De los Mares venus","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}","Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 17\/01\/2026 01:39 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb29800 pendientes\",\"Monto Ultimo Pago\": \"$ 200\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 17\/01\/2026 01:39 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"17\/01\/2026 12:54\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","user name":"Daniel Humberto","Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 12:54"},"team":{"uuid":"5faeed738d6a44ccacf6509762eb288d","name":"General","default":true,"members":5,"createdAt":"2023-11-07T00:37:10Z"},"channel":{"uuid":"dbaa248932634e7ea4346a320960c24a","title":null,"type":"whatsapp","main":true},"blockedAt":null}}
+[2026-01-17 18:57:38.512124] [info] onlyUpdate: Ejecutando patchWhatsapp para teléfono: 5214181878106
+Notificacion data: {"uuid":"50d24801-5784-4829-bac9-e29a9ced7d43","changeType":"insert","entity":"invoice","entityId":2955,"message":null,"clientId":146,"eventName":"invoice.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-9850,"accountCredit":0,"accountOutstanding":9850,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":{"id":2955,"clientId":146,"number":"002901","createdDate":"2026-01-17T12:57:23-0600","dueDate":"2026-01-31T12:57:23-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-17T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2971,"type":"other","label":"pruebas 2","price":50,"quantity":1,"total":50,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":50,"discount":null,"discountLabel":"Descuento","taxes":[],"total":50,"amountPaid":0,"totalUntaxed":50,"totalDiscount":-0,"totalTaxAmount":0,"amountToPay":50,"currencyCode":"MXN","status":1,"paymentCovers":[],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"paymentData":null}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":824,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T01:39:01-0600","amount":200,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1112,"invoiceId":2953,"paymentId":824,"creditNoteId":null,"refundId":null,"amount":200}],"creditAmount":0,"userId":1180,"attributes":[{"id":"497c7e2b-1fe6-4dcc-8b42-090ce4ea7b6c","paymentId":824,"customAttributeId":20,"name":"Tipo Pago Stripe","key":"tipoPagoStripe","value":"Tarjeta de Cr\u00e9dito","clientZoneVisible":true}]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 12:57","Saldo Actual":"\ud83d\udcb29850 pendientes","Monto Ultimo Pago":"\ud83d\udcb2 200","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 17\/01\/2026 01:39 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb29850 pendientes\",\"Monto Ultimo Pago\": \"$ 200\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 17\/01\/2026 01:39 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"17\/01\/2026 12:57\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+DEBUG COMPARACIÓN - CallBell Saldo Actual: '💲9800 pendientes'
+
+DEBUG COMPARACIÓN - UCRM Saldo Actual: '💲9850 pendientes'
+
+DEBUG COMPARACIÓN - CallBell Estado: '🟢 Activo '
+
+DEBUG COMPARACIÓN - UCRM Estado: '🟢 Activo '
+
+EJECUTANDO PATCH - Se detectaron cambios
+
+Response Patch CallBell: {"contact":{"uuid":"74cc2bb45eb8409f92cd5dba99200d26","name":"Delfino De los Mares venus","phoneNumber":"5214181878106","avatarUrl":null,"createdAt":"2024-01-08T17:04:13Z","closedAt":"2026-01-16T15:23:41Z","source":"whatsapp","funnelId":null,"href":"https://dash.callbell.eu/contacts/74cc2bb45eb8409f92cd5dba99200d26","conversationHref":"https://dash.callbell.eu/chat/53c8229c428c4081b197ab136feab73b","tags":["s0LOCS","PRUEBAS"],"assignedUser":null,"customFields":{"user entry point":"inbound_message","Antena/Sectorial":"Sectorial-4b 172.16.13.16/24","Site":"0LOCS","Estado":"🟢 Activo ","Cliente":"146","URL":"🌐 https://sistema.siip.mx/crm/client/146","Clabe Interbancaria":"124180650741646979","Saldo Actual":"💲9850 pendientes","Domicilio":"📍 Yucatán 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., México","Monto Ultimo Pago":"💲 200","Nombre":"👤 Delfino De los Mares venus","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}","Fecha Ultimo Pago":"📆💸 17/01/2026 01:39 con Tarjeta de crédito Stripe 💳","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https://sistema.siip.mx/crm/client/146\",\"Saldo Actual\": \"💲9850 pendientes\",\"Monto Ultimo Pago\": \"$ 200\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 17/01/2026 01:39 con Tarjeta de crédito Stripe 💳\",\"Fecha Ultima Actualizacion\": \"17/01/2026 12:57\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","user name":"Daniel Humberto","Fecha Ultima Actualizacion":"📆🔄️ 17/01/2026 12:57"},"team":{"uuid":"5faeed738d6a44ccacf6509762eb288d","name":"General","default":true,"members":5,"createdAt":"2023-11-07T00:37:10Z"},"channel":{"uuid":"dbaa248932634e7ea4346a320960c24a","title":null,"type":"whatsapp","main":true},"blockedAt":null}}
+
+[2026-01-17 19:01:08.151681] [notice] Logging level set to:debug
+[2026-01-17 19:01:08.151762] [debug] Payload recibido: {
+ "id": "evt_3SqejFEFY1WEUtgR03DJxsDH",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768676467,
+ "data": {
+ "object": {
+ "id": "pi_3SqejFEFY1WEUtgR0RZ0Cs5n",
+ "object": "payment_intent",
+ "amount": 50000,
+ "amount_capturable": 0,
+ "amount_details": {
+ "shipping": {
+ "amount": 0,
+ "from_postal_code": null,
+ "to_postal_code": null
+ },
+ "tax": {
+ "total_tax_amount": 0
+ },
+ "tip": {}
+ },
+ "amount_received": 50000,
+ "application": null,
+ "application_fee_amount": null,
+ "automatic_payment_methods": null,
+ "canceled_at": null,
+ "cancellation_reason": null,
+ "capture_method": "automatic",
+ "client_secret": "pi_3SqejFEFY1WEUtgR0RZ0Cs5n_secret_R3C2FDfTASRYBPHfvk35ychKo",
+ "confirmation_method": "automatic",
+ "created": 1768676409,
+ "currency": "mxn",
+ "customer": "cus_ToHInxnChdfjXz",
+ "customer_account": null,
+ "description": null,
+ "excluded_payment_method_types": null,
+ "invoice": null,
+ "last_payment_error": null,
+ "latest_charge": "ch_3SqejFEFY1WEUtgR0BvriyLi",
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1015",
+ "createdBy": "UCRM",
+ "clientId": "146",
+ "paymentType": "card.one_time",
+ "paymentToken": "88d8b308-5def-409b-8268-079a1338283b"
+ },
+ "next_action": null,
+ "on_behalf_of": null,
+ "payment_details": {
+ "customer_reference": null,
+ "order_reference": "prod_PbYv8JTpXetIfH"
+ },
+ "payment_method": "pm_1Sqek9EFY1WEUtgRYEnxQqIu",
+ "payment_method_configuration_details": null,
+ "payment_method_options": {
+ "card": {
+ "installments": {
+ "available_plans": [],
+ "enabled": false,
+ "plan": null
+ },
+ "mandate_options": null,
+ "network": null,
+ "request_three_d_secure": "automatic"
+ }
+ },
+ "payment_method_types": [
+ "card"
+ ],
+ "processing": null,
+ "receipt_email": null,
+ "review": null,
+ "setup_future_usage": null,
+ "shipping": null,
+ "source": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 3,
+ "request": {
+ "id": null,
+ "idempotency_key": "49b9837b-a7ea-4719-ae7c-07d72c8869b8"
+ },
+ "type": "payment_intent.succeeded"
+}
+
+[2026-01-17 19:01:08.151817] [info] No UUID found in the webhook data
+[2026-01-17 19:01:08.151829] [info] Evento de pago exitoso (Stripe PI) recibido.
+[2026-01-17 19:01:08.236574] [notice] Logging level set to:debug
+[2026-01-17 19:01:08.236643] [debug] Payload recibido: {
+ "id": "evt_3SqejFEFY1WEUtgR0EQjZ93F",
+ "object": "event",
+ "api_version": "2023-10-16",
+ "created": 1768676467,
+ "data": {
+ "object": {
+ "id": "ch_3SqejFEFY1WEUtgR0BvriyLi",
+ "object": "charge",
+ "amount": 50000,
+ "amount_captured": 50000,
+ "amount_refunded": 0,
+ "application": null,
+ "application_fee": null,
+ "application_fee_amount": null,
+ "balance_transaction": "txn_3SqejFEFY1WEUtgR0btBaA8i",
+ "billing_details": {
+ "address": {
+ "city": null,
+ "country": "MX",
+ "line1": null,
+ "line2": null,
+ "postal_code": null,
+ "state": null
+ },
+ "email": "dispos.cyber@gmail.com",
+ "name": "Delfino de los Mares",
+ "phone": null,
+ "tax_id": null
+ },
+ "calculated_statement_descriptor": "SIIP INTERNET",
+ "captured": true,
+ "created": 1768676466,
+ "currency": "mxn",
+ "customer": "cus_ToHInxnChdfjXz",
+ "description": null,
+ "destination": null,
+ "dispute": null,
+ "disputed": false,
+ "failure_balance_transaction": null,
+ "failure_code": null,
+ "failure_message": null,
+ "fraud_details": {},
+ "invoice": null,
+ "livemode": false,
+ "metadata": {
+ "signedInAdminId": "1015",
+ "createdBy": "UCRM",
+ "clientId": "146",
+ "paymentType": "card.one_time",
+ "paymentToken": "88d8b308-5def-409b-8268-079a1338283b"
+ },
+ "on_behalf_of": null,
+ "order": null,
+ "outcome": {
+ "advice_code": null,
+ "network_advice_code": null,
+ "network_decline_code": null,
+ "network_status": "approved_by_network",
+ "reason": null,
+ "risk_level": "normal",
+ "risk_score": 34,
+ "seller_message": "Payment complete.",
+ "type": "authorized"
+ },
+ "paid": true,
+ "payment_intent": "pi_3SqejFEFY1WEUtgR0RZ0Cs5n",
+ "payment_method": "pm_1Sqek9EFY1WEUtgRYEnxQqIu",
+ "payment_method_details": {
+ "card": {
+ "amount_authorized": 50000,
+ "authorization_code": "081592",
+ "brand": "visa",
+ "checks": {
+ "address_line1_check": null,
+ "address_postal_code_check": null,
+ "cvc_check": "pass"
+ },
+ "country": "US",
+ "exp_month": 10,
+ "exp_year": 2030,
+ "extended_authorization": {
+ "status": "disabled"
+ },
+ "fingerprint": "WpS5c5H7kZDcpRtk",
+ "funding": "credit",
+ "incremental_authorization": {
+ "status": "unavailable"
+ },
+ "installments": null,
+ "last4": "4242",
+ "mandate": null,
+ "multicapture": {
+ "status": "unavailable"
+ },
+ "network": "visa",
+ "network_token": {
+ "used": false
+ },
+ "network_transaction_id": "871128353995372",
+ "overcapture": {
+ "maximum_amount_capturable": 50000,
+ "status": "unavailable"
+ },
+ "regulated_status": "unregulated",
+ "three_d_secure": null,
+ "wallet": null
+ },
+ "type": "card"
+ },
+ "radar_options": {},
+ "receipt_email": null,
+ "receipt_number": null,
+ "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xT2tHMFJFRlkxV0VVdGdSKPO4r8sGMgaqzxNxlQg6LBbn1abGc6ZwIkKqmkokhKFOWbthj28nLtp6BJtZqug0DcCGWE7FcM0KWOAy",
+ "refunded": false,
+ "review": null,
+ "shipping": null,
+ "source": null,
+ "source_transfer": null,
+ "statement_descriptor": null,
+ "statement_descriptor_suffix": null,
+ "status": "succeeded",
+ "transfer_data": null,
+ "transfer_group": null
+ }
+ },
+ "livemode": false,
+ "pending_webhooks": 2,
+ "request": {
+ "id": null,
+ "idempotency_key": "49b9837b-a7ea-4719-ae7c-07d72c8869b8"
+ },
+ "type": "charge.succeeded"
+}
+
+[2026-01-17 19:01:08.236704] [info] No UUID found in the webhook data
+[2026-01-17 19:01:09.052361] [notice] Logging level set to:debug
+[2026-01-17 19:01:09.052511] [debug] Payload recibido: {"uuid":"5b609ae5-d082-4d90-a325-8d5abcd09365","changeType":"edit","entity":"invoice","entityId":"2953","eventName":"invoice.edit","extraData":{"entity":{"id":2953,"clientId":146,"number":"002899","createdDate":"2026-01-17T12:22:17-0600","dueDate":"2026-01-31T12:22:17-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-17T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2969,"type":"other","label":"diez mil","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":800,"totalUntaxed":10000,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":9200,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1111,"invoiceId":2953,"paymentId":823,"creditNoteId":null,"refundId":null,"amount":100},{"id":1112,"invoiceId":2953,"paymentId":824,"creditNoteId":null,"refundId":null,"amount":200},{"id":1113,"invoiceId":2953,"paymentId":825,"creditNoteId":null,"refundId":null,"amount":500}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"entityBeforeEdit":{"id":2953,"clientId":146,"number":"002899","createdDate":"2026-01-17T12:22:17-0600","dueDate":"2026-01-31T12:22:17-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-17T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2969,"type":"other","label":"diez mil","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":300,"totalUntaxed":10000,"totalDiscount":0,"totalTaxAmount":0,"amountToPay":9700,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1111,"invoiceId":2953,"paymentId":823,"creditNoteId":null,"refundId":null,"amount":100},{"id":1112,"invoiceId":2953,"paymentId":824,"creditNoteId":null,"refundId":null,"amount":200},{"id":1113,"invoiceId":2953,"paymentId":825,"creditNoteId":null,"refundId":null,"amount":500}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false}}}
+
+[2026-01-17 19:01:09.256711] [debug] Evento recibido: invoice.edit
+[2026-01-17 19:01:09.257949] [debug] Edición de Factura
+
+[2026-01-17 19:01:09.258308] [debug] onlyUpdate: Iniciando actualización para teléfono: 5214181878106
+[2026-01-17 19:01:09.258595] [debug] onlyUpdate: Teléfono validado: 5214181878106
+[2026-01-17 19:01:10.071609] [debug] onlyUpdate: Contacto obtenido de CallBell: {"contact":{"uuid":"74cc2bb45eb8409f92cd5dba99200d26","name":"Delfino De los Mares venus","phoneNumber":"5214181878106","avatarUrl":null,"createdAt":"2024-01-08T17:04:13Z","closedAt":"2026-01-16T15:23:41Z","source":"whatsapp","funnelId":null,"href":"https:\/\/dash.callbell.eu\/contacts\/74cc2bb45eb8409f92cd5dba99200d26","conversationHref":"https:\/\/dash.callbell.eu\/chat\/53c8229c428c4081b197ab136feab73b","tags":["s0LOCS","PRUEBAS"],"assignedUser":null,"customFields":{"user entry point":"inbound_message","Antena\/Sectorial":"Sectorial-4b 172.16.13.16\/24","Site":"0LOCS","Estado":"\ud83d\udfe2 Activo ","Cliente":"146","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Clabe Interbancaria":"124180650741646979","Saldo Actual":"\ud83d\udcb29850 pendientes","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Monto Ultimo Pago":"\ud83d\udcb2 200","Nombre":"\ud83d\udc64 Delfino De los Mares venus","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}","Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 17\/01\/2026 01:39 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb29850 pendientes\",\"Monto Ultimo Pago\": \"$ 200\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 17\/01\/2026 01:39 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"17\/01\/2026 12:57\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","user name":"Daniel Humberto","Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 12:57"},"team":{"uuid":"5faeed738d6a44ccacf6509762eb288d","name":"General","default":true,"members":5,"createdAt":"2023-11-07T00:37:10Z"},"channel":{"uuid":"dbaa248932634e7ea4346a320960c24a","title":null,"type":"whatsapp","main":true},"blockedAt":null}}
+[2026-01-17 19:01:10.071926] [info] onlyUpdate: Ejecutando patchWhatsapp para teléfono: 5214181878106
+Notificacion data: {"uuid":"5b609ae5-d082-4d90-a325-8d5abcd09365","changeType":"edit","entity":"invoice","entityId":2953,"message":null,"clientId":146,"eventName":"invoice.edit","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-9350,"accountCredit":0,"accountOutstanding":9350,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":{"id":2953,"clientId":146,"number":"002899","createdDate":"2026-01-17T12:22:17-0600","dueDate":"2026-01-31T12:22:17-0600","emailSentDate":null,"maturityDays":14,"taxableSupplyDate":"2026-01-17T00:00:00-0600","notes":null,"adminNotes":null,"items":[{"id":2969,"type":"other","label":"diez mil","price":10000,"quantity":1,"total":10000,"unit":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"serviceId":null,"serviceSurchargeId":null,"productId":null,"feeId":null,"discountPrice":null,"discountQuantity":null,"discountTotal":null}],"subtotal":10000,"discount":null,"discountLabel":"Descuento","taxes":[],"total":10000,"amountPaid":800,"totalUntaxed":10000,"totalDiscount":-0,"totalTaxAmount":0,"amountToPay":9200,"currencyCode":"MXN","status":2,"paymentCovers":[{"id":1111,"invoiceId":2953,"paymentId":823,"creditNoteId":null,"refundId":null,"amount":100},{"id":1112,"invoiceId":2953,"paymentId":824,"creditNoteId":null,"refundId":null,"amount":200},{"id":1113,"invoiceId":2953,"paymentId":825,"creditNoteId":null,"refundId":null,"amount":500}],"invoiceTemplateId":2,"proformaInvoiceTemplateId":2,"organizationName":"SIIP Pruebas","organizationRegistrationNumber":null,"organizationTaxId":null,"organizationStreet1":"Morel 34","organizationStreet2":null,"organizationCity":"Dolores Hidalgo","organizationStateId":null,"organizationCountryId":173,"organizationZipCode":"37800","organizationBankAccountName":null,"organizationBankAccountField1":null,"organizationBankAccountField2":null,"clientFirstName":"Delfino","clientLastName":"De los Mares venus","clientCompanyName":null,"clientCompanyRegistrationNumber":null,"clientCompanyTaxId":null,"clientStreet1":"36 Yucat\u00e1n","clientStreet2":null,"clientCity":"Dolores Hidalgo Cuna de la Independencia Nacional","clientCountryId":173,"clientStateId":null,"clientZipCode":"37800","attributes":[],"uncollectible":false,"proforma":false,"generatedInvoiceId":null,"proformaInvoiceId":null,"isAppliedVatReverseCharge":false,"payAutomatically":false,"printed":false},"paymentData":null}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":825,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T13:01:08-0600","amount":500,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1113,"invoiceId":2953,"paymentId":825,"creditNoteId":null,"refundId":null,"amount":500}],"creditAmount":0,"userId":null,"attributes":[]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 13:01","Saldo Actual":"\ud83d\udcb29350 pendientes","Monto Ultimo Pago":"\ud83d\udcb2 500","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 17\/01\/2026 13:01 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb29350 pendientes\",\"Monto Ultimo Pago\": \"$ 500\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 17\/01\/2026 13:01 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"17\/01\/2026 13:01\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+DEBUG COMPARACIÓN - CallBell Saldo Actual: '💲9850 pendientes'
+
+DEBUG COMPARACIÓN - UCRM Saldo Actual: '💲9350 pendientes'
+
+DEBUG COMPARACIÓN - CallBell Estado: '🟢 Activo '
+
+DEBUG COMPARACIÓN - UCRM Estado: '🟢 Activo '
+
+EJECUTANDO PATCH - Se detectaron cambios
+
+Response Patch CallBell: {"contact":{"uuid":"74cc2bb45eb8409f92cd5dba99200d26","name":"Delfino De los Mares venus","phoneNumber":"5214181878106","avatarUrl":null,"createdAt":"2024-01-08T17:04:13Z","closedAt":"2026-01-16T15:23:41Z","source":"whatsapp","funnelId":null,"href":"https://dash.callbell.eu/contacts/74cc2bb45eb8409f92cd5dba99200d26","conversationHref":"https://dash.callbell.eu/chat/53c8229c428c4081b197ab136feab73b","tags":["s0LOCS","PRUEBAS"],"assignedUser":null,"customFields":{"user entry point":"inbound_message","Antena/Sectorial":"Sectorial-4b 172.16.13.16/24","Site":"0LOCS","Estado":"🟢 Activo ","Cliente":"146","URL":"🌐 https://sistema.siip.mx/crm/client/146","Clabe Interbancaria":"124180650741646979","Saldo Actual":"💲9350 pendientes","Domicilio":"📍 Yucatán 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., México","Monto Ultimo Pago":"💲 500","Nombre":"👤 Delfino De los Mares venus","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}","Fecha Ultimo Pago":"📆💸 17/01/2026 13:01 con Tarjeta de crédito Stripe 💳","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https://sistema.siip.mx/crm/client/146\",\"Saldo Actual\": \"💲9350 pendientes\",\"Monto Ultimo Pago\": \"$ 500\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 17/01/2026 13:01 con Tarjeta de crédito Stripe 💳\",\"Fecha Ultima Actualizacion\": \"17/01/2026 13:01\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","user name":"Daniel Humberto","Fecha Ultima Actualizacion":"📆🔄️ 17/01/2026 13:01"},"team":{"uuid":"5faeed738d6a44ccacf6509762eb288d","name":"General","default":true,"members":5,"createdAt":"2023-11-07T00:37:10Z"},"channel":{"uuid":"dbaa248932634e7ea4346a320960c24a","title":null,"type":"whatsapp","main":true},"blockedAt":null}}
+
+[2026-01-17 19:01:11.363367] [notice] Logging level set to:debug
+[2026-01-17 19:01:11.363423] [debug] Payload recibido: {"uuid":"d357920d-2f46-40b7-936d-1f268b34a2ed","changeType":"insert","entity":"payment","entityId":"825","eventName":"payment.add","extraData":{"entity":{"id":825,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T13:01:08-0600","amount":500,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1113,"invoiceId":2953,"paymentId":825,"creditNoteId":null,"refundId":null,"amount":500}],"creditAmount":0,"userId":null,"attributes":[]},"entityBeforeEdit":null}}
+
+[2026-01-17 19:01:11.537558] [debug] Evento recibido: payment.add
+[2026-01-17 19:01:11.537692] [debug] Notification encodificado en JSON:{"uuid":"d357920d-2f46-40b7-936d-1f268b34a2ed","changeType":"insert","entity":"payment","entityId":825,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-9350,"accountCredit":0,"accountOutstanding":9350,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":825,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T13:01:08-0600","amount":500,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1113,"invoiceId":2953,"paymentId":825,"creditNoteId":null,"refundId":null,"amount":500}],"creditAmount":0,"userId":null,"attributes":[]}}
+
+[2026-01-17 19:01:11.537724] [info] Verificando existencia de atributo 'tipoPagoStripe' para Payment ID: 825
+[2026-01-17 19:01:11.654191] [info] Payment 825 has no User ID. Assigning Stripe User ID: 1180
+[2026-01-17 19:01:11.777515] [debug] Fallback Method Guessing 'Tarjeta de crédito Stripe' -> 'Tarjeta de Crédito'
+[2026-01-17 19:01:11.777559] [info] PATCHING Payment 825: Setting tipoPagoStripe = 'Tarjeta de Crédito'
+Eviando comprobante de pago al cliente: 146 con número: 5214181878106
+
+El archivo PDF se ha descargado y guardado correctamente en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+El archivo PDF es válido y tiene contenido: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.pdf
+
+Procesando PDF con microservicio: http://172.16.5.134:8050/process
+
+Imagen generada por microservicio guardada en: /data/ucrm/data/plugins/siip-whatsapp-notifications/src/Facade/../../comprobantes/Comprobante_Delfino_De_los_Mares_venus.jpg
+
+[2026-01-17 19:01:12.471637] [info] Archivo subido exitosamente a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768676472.jpg
+Imagen subida a MinIO: https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768676472.jpg
+
+Archivos temporales (PDF/JPG) eliminados tras subida exitosa.
+
+Proceso de obtención de imagen finalizado.
+
+La cadena CURL que se envia es: {
+ "to": "5214181878106",
+ "from": "whatsapp",
+ "type": "document",
+ "content": {
+ "text": "S/M",
+ "url": "https://aws-venus.siip.mx/vouchers-oxxo/Comprobante_Delfino_De_los_Mares_venus_1768676472.jpg"
+ },
+ "template_values": ["Delfino De los Mares venus", "$500", "$9350 pendientes"],
+ "template_uuid": "57ead79cebd14902921477922403093b",
+ "optin_contact": true
+ }
+Response del CallBell: {"message":{"uuid":"ed470d312e8f43b4bcf348af43a0f8fc","status":"enqueued"}}
+Hay menos de 100 archivos en el directorio. No se eliminarán archivos.
+
+La notificación fue enviada correctamente con estado: enqueued
+
+Notificacion data: {"uuid":"d357920d-2f46-40b7-936d-1f268b34a2ed","changeType":"insert","entity":"payment","entityId":825,"message":null,"clientId":146,"eventName":"payment.add","clientData":{"id":146,"userIdent":null,"previousIsp":null,"isLead":false,"clientType":1,"companyName":null,"companyRegistrationNumber":null,"companyTaxId":null,"companyWebsite":null,"street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","invoiceStreet1":null,"invoiceStreet2":null,"invoiceCity":null,"invoiceStateId":null,"invoiceCountryId":null,"invoiceZipCode":null,"invoiceAddressSameAsContact":true,"note":"En los mares soy feliz :) pura playa y solyeahhjgjhb","sendInvoiceByPost":null,"invoiceMaturityDays":null,"stopServiceDue":null,"stopServiceDueDays":null,"organizationId":1,"tax1Id":null,"tax2Id":null,"tax3Id":null,"registrationDate":"2024-07-29T00:00:00-0600","leadConvertedAt":null,"companyContactFirstName":null,"companyContactLastName":null,"isActive":false,"firstName":"Delfino","lastName":"De los Mares venus","username":null,"contacts":[{"id":150,"clientId":146,"email":"mariscoselsietemares@gmail.com","phone":"5214181878106","name":null,"isBilling":false,"isContact":false,"types":[{"id":1000,"name":"WhatsApp"}]}],"attributes":[{"id":145,"clientId":146,"customAttributeId":10,"name":"Stripe Customer ID","key":"stripeCustomerId","value":"cus_QZ7T1h3th3Dr7w","clientZoneVisible":true},{"id":146,"clientId":146,"customAttributeId":11,"name":"Clabe Interbancaria","key":"clabeInterbancaria","value":"002180695453333629","clientZoneVisible":true},{"id":264,"clientId":146,"customAttributeId":17,"name":"Password Antena Cliente","key":"passwordAntenaCliente","value":"ETfEB8at@GAqUt#2","clientZoneVisible":false}],"accountBalance":-9350,"accountCredit":0,"accountOutstanding":9350,"currencyCode":"MXN","organizationName":"SIIP Pruebas","bankAccounts":[],"tags":[],"invitationEmailSentDate":null,"avatarColor":"#3949ab","addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"isArchived":false,"generateProformaInvoices":null,"usesProforma":false,"hasOverdueInvoice":false,"hasOutage":false,"hasSuspendedService":false,"hasServiceWithoutDevices":true,"referral":null,"hasPaymentSubscription":false,"hasAutopayCreditCard":false},"serviceData":null,"invoiceData":null,"paymentData":{"id":825,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T13:01:08-0600","amount":500,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1113,"invoiceId":2953,"paymentId":825,"creditNoteId":null,"refundId":null,"amount":500}],"creditAmount":0,"userId":null,"attributes":[]}}
+
+Dentro del proceso del patch:
+
+Datos traidos con payment api: [{"id":825,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T13:01:08-0600","amount":500,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1113,"invoiceId":2953,"paymentId":825,"creditNoteId":null,"refundId":null,"amount":500}],"creditAmount":0,"userId":1180,"attributes":[{"id":"024ee553-42a0-4bb8-b336-618e74a06f2e","paymentId":825,"customAttributeId":20,"name":"Tipo Pago Stripe","key":"tipoPagoStripe","value":"Tarjeta de Cr\u00e9dito","clientZoneVisible":true}]}]
+
+Nombre del cliente que se va a actualizar: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Site":"","Estado":"\ud83d\udfe2 Activo ","URL":"\ud83c\udf10 https:\/\/sistema.siip.mx\/crm\/client\/146","Nombre":"\ud83d\udc64 Delfino De los Mares venus","Cliente":146,"Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 13:01","Saldo Actual":"\ud83d\udcb29350 pendientes","Monto Ultimo Pago":"\ud83d\udcb2 500","Clabe Interbancaria":null,"Fecha Ultimo Pago":"\ud83d\udcc6\ud83d\udcb8 17\/01\/2026 13:01 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3","Antena\/Sectorial":"","Domicilio":"\ud83d\udccd Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https:\/\/sistema.siip.mx\/crm\/client\/146\",\"Saldo Actual\": \"\ud83d\udcb29350 pendientes\",\"Monto Ultimo Pago\": \"$ 500\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 17\/01\/2026 13:01 con Tarjeta de cr\u00e9dito Stripe \ud83d\udcb3\",\"Fecha Ultima Actualizacion\": \"17\/01\/2026 13:01\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena\/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}"}}
+
+DEBUG COMPARACIÓN - CallBell Saldo Actual: '💲9350 pendientes'
+
+DEBUG COMPARACIÓN - UCRM Saldo Actual: '💲9350 pendientes'
+
+DEBUG COMPARACIÓN - CallBell Estado: '🟢 Activo '
+
+DEBUG COMPARACIÓN - UCRM Estado: '🟢 Activo '
+
+NO SE EJECUTA PATCH - No hay cambios que actualizar
+
+[2026-01-17 19:01:13.896409] [notice] Logging level set to:debug
+[2026-01-17 19:01:13.896545] [debug] Payload recibido: {"uuid":"0d98286b-8b93-49e4-b4ee-6d76e9909ac5","changeType":"edit","entity":"payment","entityId":"825","eventName":"payment.edit","extraData":{"entity":{"id":825,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T13:01:08-0600","amount":500,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1113,"invoiceId":2953,"paymentId":825,"creditNoteId":null,"refundId":null,"amount":500}],"creditAmount":0,"userId":null,"attributes":[]},"entityBeforeEdit":{"id":825,"clientId":146,"methodId":"1dd098fa-5d63-4c8d-88b7-3c27ffbbb6ae","checkNumber":null,"createdDate":"2026-01-17T13:01:08-0600","amount":500,"currencyCode":"MXN","note":null,"receiptSentDate":null,"providerName":null,"providerPaymentId":null,"providerPaymentTime":null,"paymentCovers":[{"id":1113,"invoiceId":2953,"paymentId":825,"creditNoteId":null,"refundId":null,"amount":500}],"creditAmount":0,"userId":null,"attributes":[]}}}
+
+[2026-01-17 19:01:14.080250] [debug] Evento recibido: payment.edit
+[2026-01-17 19:03:37.013555] [notice] Logging level set to:debug
+[2026-01-17 19:03:37.013655] [debug] Payload recibido: {"uuid":"f53b125f-518d-4afd-96e7-ca89679cf3c3","changeType":"suspend","entity":"service","entityId":"131","eventName":"service.suspend","extraData":{"entity":{"id":131,"prepaid":false,"clientId":146,"status":3,"name":"Basico 300","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","note":null,"addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"servicePlanId":6,"servicePlanPeriodId":26,"price":300,"hasIndividualPrice":false,"totalPrice":300,"currencyCode":"MXN","invoiceLabel":null,"contractId":null,"contractLengthType":1,"minimumContractLengthMonths":null,"activeFrom":"2025-02-13T00:00:00-0600","activeTo":null,"contractEndDate":null,"discountType":0,"discountValue":null,"discountInvoiceLabel":"Descuento","discountFrom":null,"discountTo":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"invoicingStart":"2025-02-13T00:00:00-0600","invoicingPeriodType":1,"invoicingPeriodStartDay":1,"nextInvoicingDayAdjustment":10,"invoicingProratedSeparately":true,"invoicingSeparately":false,"sendEmailsAutomatically":null,"useCreditAutomatically":true,"servicePlanName":"Basico 300","servicePlanPrice":300,"servicePlanPeriod":1,"servicePlanType":"Internet","downloadSpeed":8,"uploadSpeed":8,"hasOutage":false,"unmsClientSiteStatus":null,"fccBlockId":null,"lastInvoicedDate":"2026-03-31T00:00:00-0600","unmsClientSiteId":"bc4103e6-5550-462c-84df-f279b498f6ff","attributes":[{"id":"4608cebe-fea9-4d3f-87ce-60e6fcbcb9f7","serviceId":131,"customAttributeId":18,"name":"Extensor Wifi","key":"extensorWifi","value":"0","clientZoneVisible":true}],"addressData":null,"suspensionReasonId":1000,"serviceChangeRequestId":null,"setupFeePrice":null,"earlyTerminationFeePrice":null,"downloadSpeedOverride":null,"uploadSpeedOverride":null,"trafficShapingOverrideEnd":null,"trafficShapingOverrideEnabled":false,"servicePlanGroupId":null,"suspensionPeriods":[{"id":135,"startDate":"2025-03-04T00:00:00-0600","endDate":"2025-03-10T00:00:00-0600"},{"id":140,"startDate":"2025-03-14T00:00:00-0600","endDate":"2026-01-08T00:00:00-0600"},{"id":188,"startDate":"2026-01-17T13:03:36-0600","endDate":null}],"surcharges":[]},"entityBeforeEdit":{"id":131,"prepaid":false,"clientId":146,"status":1,"name":"Basico 300","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","note":null,"addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"servicePlanId":6,"servicePlanPeriodId":26,"price":300,"hasIndividualPrice":false,"totalPrice":300,"currencyCode":"MXN","invoiceLabel":null,"contractId":null,"contractLengthType":1,"minimumContractLengthMonths":null,"activeFrom":"2025-02-13T00:00:00-0600","activeTo":null,"contractEndDate":null,"discountType":0,"discountValue":null,"discountInvoiceLabel":"Descuento","discountFrom":null,"discountTo":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"invoicingStart":"2025-02-13T00:00:00-0600","invoicingPeriodType":1,"invoicingPeriodStartDay":1,"nextInvoicingDayAdjustment":10,"invoicingProratedSeparately":true,"invoicingSeparately":false,"sendEmailsAutomatically":null,"useCreditAutomatically":true,"servicePlanName":"Basico 300","servicePlanPrice":300,"servicePlanPeriod":1,"servicePlanType":"Internet","downloadSpeed":8,"uploadSpeed":8,"hasOutage":false,"unmsClientSiteStatus":null,"fccBlockId":null,"lastInvoicedDate":"2026-03-31T00:00:00-0600","unmsClientSiteId":"bc4103e6-5550-462c-84df-f279b498f6ff","attributes":[{"id":"4608cebe-fea9-4d3f-87ce-60e6fcbcb9f7","serviceId":131,"customAttributeId":18,"name":"Extensor Wifi","key":"extensorWifi","value":"0","clientZoneVisible":true}],"addressData":null,"suspensionReasonId":null,"serviceChangeRequestId":null,"setupFeePrice":null,"earlyTerminationFeePrice":null,"downloadSpeedOverride":null,"uploadSpeedOverride":null,"trafficShapingOverrideEnd":null,"trafficShapingOverrideEnabled":false,"servicePlanGroupId":null,"suspensionPeriods":[{"id":135,"startDate":"2025-03-04T00:00:00-0600","endDate":"2025-03-10T00:00:00-0600"},{"id":140,"startDate":"2025-03-14T00:00:00-0600","endDate":"2026-01-08T00:00:00-0600"},{"id":188,"startDate":"2026-01-17T13:03:36-0600","endDate":null}],"surcharges":[]}}}
+
+[2026-01-17 19:03:37.296945] [debug] Evento recibido: service.suspend
+[2026-01-17 19:03:37.297171] [debug] Se suspendió el servicio a un cliente
+
+Actualizando estado del servicio
+
+Nombre del cliente al que se va a actualizar el estado del servicio: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Estado":"\ud83d\udfe0 Suspendido","Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 13:03"}}
+
+Response Patch CallBell: {"contact":{"uuid":"74cc2bb45eb8409f92cd5dba99200d26","name":"Delfino De los Mares venus","phoneNumber":"5214181878106","avatarUrl":null,"createdAt":"2024-01-08T17:04:13Z","closedAt":"2026-01-16T15:23:41Z","source":"whatsapp","funnelId":null,"href":"https://dash.callbell.eu/contacts/74cc2bb45eb8409f92cd5dba99200d26","conversationHref":"https://dash.callbell.eu/chat/53c8229c428c4081b197ab136feab73b","tags":["s0LOCS","PRUEBAS"],"assignedUser":null,"customFields":{"user entry point":"inbound_message","Antena/Sectorial":"Sectorial-4b 172.16.13.16/24","Site":"0LOCS","Estado":"🟠 Suspendido","Cliente":"146","URL":"🌐 https://sistema.siip.mx/crm/client/146","Clabe Interbancaria":"124180650741646979","Saldo Actual":"💲9350 pendientes","Domicilio":"📍 Yucatán 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., México","Monto Ultimo Pago":"💲 500","Nombre":"👤 Delfino De los Mares venus","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}","Fecha Ultimo Pago":"📆💸 17/01/2026 13:01 con Tarjeta de crédito Stripe 💳","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https://sistema.siip.mx/crm/client/146\",\"Saldo Actual\": \"💲9350 pendientes\",\"Monto Ultimo Pago\": \"$ 500\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 17/01/2026 13:01 con Tarjeta de crédito Stripe 💳\",\"Fecha Ultima Actualizacion\": \"17/01/2026 13:01\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","user name":"Daniel Humberto","Fecha Ultima Actualizacion":"📆🔄️ 17/01/2026 13:03"},"team":{"uuid":"5faeed738d6a44ccacf6509762eb288d","name":"General","default":true,"members":5,"createdAt":"2023-11-07T00:37:10Z"},"channel":{"uuid":"dbaa248932634e7ea4346a320960c24a","title":null,"type":"whatsapp","main":true},"blockedAt":null}}
+
+[2026-01-17 19:03:38.736248] [notice] Logging level set to:debug
+[2026-01-17 19:03:38.736392] [debug] Payload recibido: {"uuid":"1b23aa18-fe02-43c5-a142-1103cbeba6cc","changeType":"edit","entity":"service","entityId":"131","eventName":"service.edit","extraData":{"entity":{"id":131,"prepaid":false,"clientId":146,"status":3,"name":"Basico 300","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","note":null,"addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"servicePlanId":6,"servicePlanPeriodId":26,"price":300,"hasIndividualPrice":false,"totalPrice":300,"currencyCode":"MXN","invoiceLabel":null,"contractId":null,"contractLengthType":1,"minimumContractLengthMonths":null,"activeFrom":"2025-02-13T00:00:00-0600","activeTo":null,"contractEndDate":null,"discountType":0,"discountValue":null,"discountInvoiceLabel":"Descuento","discountFrom":null,"discountTo":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"invoicingStart":"2025-02-13T00:00:00-0600","invoicingPeriodType":1,"invoicingPeriodStartDay":1,"nextInvoicingDayAdjustment":10,"invoicingProratedSeparately":true,"invoicingSeparately":false,"sendEmailsAutomatically":null,"useCreditAutomatically":true,"servicePlanName":"Basico 300","servicePlanPrice":300,"servicePlanPeriod":1,"servicePlanType":"Internet","downloadSpeed":8,"uploadSpeed":8,"hasOutage":false,"unmsClientSiteStatus":null,"fccBlockId":null,"lastInvoicedDate":"2026-03-31T00:00:00-0600","unmsClientSiteId":"bc4103e6-5550-462c-84df-f279b498f6ff","attributes":[{"id":"4608cebe-fea9-4d3f-87ce-60e6fcbcb9f7","serviceId":131,"customAttributeId":18,"name":"Extensor Wifi","key":"extensorWifi","value":"0","clientZoneVisible":true}],"addressData":null,"suspensionReasonId":1000,"serviceChangeRequestId":null,"setupFeePrice":null,"earlyTerminationFeePrice":null,"downloadSpeedOverride":null,"uploadSpeedOverride":null,"trafficShapingOverrideEnd":null,"trafficShapingOverrideEnabled":false,"servicePlanGroupId":null,"suspensionPeriods":[{"id":135,"startDate":"2025-03-04T00:00:00-0600","endDate":"2025-03-10T00:00:00-0600"},{"id":140,"startDate":"2025-03-14T00:00:00-0600","endDate":"2026-01-08T00:00:00-0600"},{"id":188,"startDate":"2026-01-17T13:03:36-0600","endDate":null}],"surcharges":[]},"entityBeforeEdit":{"id":131,"prepaid":false,"clientId":146,"status":1,"name":"Basico 300","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","note":null,"addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"servicePlanId":6,"servicePlanPeriodId":26,"price":300,"hasIndividualPrice":false,"totalPrice":300,"currencyCode":"MXN","invoiceLabel":null,"contractId":null,"contractLengthType":1,"minimumContractLengthMonths":null,"activeFrom":"2025-02-13T00:00:00-0600","activeTo":null,"contractEndDate":null,"discountType":0,"discountValue":null,"discountInvoiceLabel":"Descuento","discountFrom":null,"discountTo":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"invoicingStart":"2025-02-13T00:00:00-0600","invoicingPeriodType":1,"invoicingPeriodStartDay":1,"nextInvoicingDayAdjustment":10,"invoicingProratedSeparately":true,"invoicingSeparately":false,"sendEmailsAutomatically":null,"useCreditAutomatically":true,"servicePlanName":"Basico 300","servicePlanPrice":300,"servicePlanPeriod":1,"servicePlanType":"Internet","downloadSpeed":8,"uploadSpeed":8,"hasOutage":false,"unmsClientSiteStatus":null,"fccBlockId":null,"lastInvoicedDate":"2026-03-31T00:00:00-0600","unmsClientSiteId":"bc4103e6-5550-462c-84df-f279b498f6ff","attributes":[{"id":"4608cebe-fea9-4d3f-87ce-60e6fcbcb9f7","serviceId":131,"customAttributeId":18,"name":"Extensor Wifi","key":"extensorWifi","value":"0","clientZoneVisible":true}],"addressData":null,"suspensionReasonId":null,"serviceChangeRequestId":null,"setupFeePrice":null,"earlyTerminationFeePrice":null,"downloadSpeedOverride":null,"uploadSpeedOverride":null,"trafficShapingOverrideEnd":null,"trafficShapingOverrideEnabled":false,"servicePlanGroupId":null,"suspensionPeriods":[{"id":135,"startDate":"2025-03-04T00:00:00-0600","endDate":"2025-03-10T00:00:00-0600"},{"id":140,"startDate":"2025-03-14T00:00:00-0600","endDate":"2026-01-08T00:00:00-0600"},{"id":188,"startDate":"2026-01-17T13:03:36-0600","endDate":null}],"surcharges":[]}}}
+
+[2026-01-17 19:03:38.969377] [debug] Evento recibido: service.edit
+[2026-01-17 19:03:38.969575] [debug] Se editó el servicio a un cliente
+
+Actualizando estado del servicio
+
+Nombre del cliente al que se va a actualizar el estado del servicio: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Estado":"\ud83d\udfe0 Suspendido","Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 13:03"}}
+
+No hay cambios en el estado del servicio que actualizar
+
+[2026-01-17 19:03:39.347147] [info] Iniciando verificación/sincronización de contraseña para el cliente ID: 146
+[2026-01-17 19:04:11.857168] [notice] Logging level set to:debug
+[2026-01-17 19:04:11.857247] [debug] Payload recibido: {"uuid":"25157e35-4512-4116-920b-d6d38fc8a5cd","changeType":"unsuspend","entity":"service","entityId":"131","eventName":"service.suspend_cancel","extraData":{"entity":{"id":131,"prepaid":false,"clientId":146,"status":1,"name":"Basico 300","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","note":null,"addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"servicePlanId":6,"servicePlanPeriodId":26,"price":300,"hasIndividualPrice":false,"totalPrice":300,"currencyCode":"MXN","invoiceLabel":null,"contractId":null,"contractLengthType":1,"minimumContractLengthMonths":null,"activeFrom":"2025-02-13T00:00:00-0600","activeTo":null,"contractEndDate":null,"discountType":0,"discountValue":null,"discountInvoiceLabel":"Descuento","discountFrom":null,"discountTo":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"invoicingStart":"2025-02-13T00:00:00-0600","invoicingPeriodType":1,"invoicingPeriodStartDay":1,"nextInvoicingDayAdjustment":10,"invoicingProratedSeparately":true,"invoicingSeparately":false,"sendEmailsAutomatically":null,"useCreditAutomatically":true,"servicePlanName":"Basico 300","servicePlanPrice":300,"servicePlanPeriod":1,"servicePlanType":"Internet","downloadSpeed":8,"uploadSpeed":8,"hasOutage":false,"unmsClientSiteStatus":null,"fccBlockId":null,"lastInvoicedDate":"2026-03-31T00:00:00-0600","unmsClientSiteId":"bc4103e6-5550-462c-84df-f279b498f6ff","attributes":[{"id":"4608cebe-fea9-4d3f-87ce-60e6fcbcb9f7","serviceId":131,"customAttributeId":18,"name":"Extensor Wifi","key":"extensorWifi","value":"0","clientZoneVisible":true}],"addressData":null,"suspensionReasonId":null,"serviceChangeRequestId":null,"setupFeePrice":null,"earlyTerminationFeePrice":null,"downloadSpeedOverride":null,"uploadSpeedOverride":null,"trafficShapingOverrideEnd":null,"trafficShapingOverrideEnabled":false,"servicePlanGroupId":null,"suspensionPeriods":[{"id":135,"startDate":"2025-03-04T00:00:00-0600","endDate":"2025-03-10T00:00:00-0600"},{"id":140,"startDate":"2025-03-14T00:00:00-0600","endDate":"2026-01-08T00:00:00-0600"},{"id":188,"startDate":"2026-01-17T00:00:00-0600","endDate":"2026-01-17T13:04:11-0600"}],"surcharges":[]},"entityBeforeEdit":{"id":131,"prepaid":false,"clientId":146,"status":3,"name":"Basico 300","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","note":null,"addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"servicePlanId":6,"servicePlanPeriodId":26,"price":300,"hasIndividualPrice":false,"totalPrice":300,"currencyCode":"MXN","invoiceLabel":null,"contractId":null,"contractLengthType":1,"minimumContractLengthMonths":null,"activeFrom":"2025-02-13T00:00:00-0600","activeTo":null,"contractEndDate":null,"discountType":0,"discountValue":null,"discountInvoiceLabel":"Descuento","discountFrom":null,"discountTo":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"invoicingStart":"2025-02-13T00:00:00-0600","invoicingPeriodType":1,"invoicingPeriodStartDay":1,"nextInvoicingDayAdjustment":10,"invoicingProratedSeparately":true,"invoicingSeparately":false,"sendEmailsAutomatically":null,"useCreditAutomatically":true,"servicePlanName":"Basico 300","servicePlanPrice":300,"servicePlanPeriod":1,"servicePlanType":"Internet","downloadSpeed":8,"uploadSpeed":8,"hasOutage":false,"unmsClientSiteStatus":null,"fccBlockId":null,"lastInvoicedDate":"2026-03-31T00:00:00-0600","unmsClientSiteId":"bc4103e6-5550-462c-84df-f279b498f6ff","attributes":[{"id":"4608cebe-fea9-4d3f-87ce-60e6fcbcb9f7","serviceId":131,"customAttributeId":18,"name":"Extensor Wifi","key":"extensorWifi","value":"0","clientZoneVisible":true}],"addressData":null,"suspensionReasonId":1000,"serviceChangeRequestId":null,"setupFeePrice":null,"earlyTerminationFeePrice":null,"downloadSpeedOverride":null,"uploadSpeedOverride":null,"trafficShapingOverrideEnd":null,"trafficShapingOverrideEnabled":false,"servicePlanGroupId":null,"suspensionPeriods":[{"id":135,"startDate":"2025-03-04T00:00:00-0600","endDate":"2025-03-10T00:00:00-0600"},{"id":140,"startDate":"2025-03-14T00:00:00-0600","endDate":"2026-01-08T00:00:00-0600"},{"id":188,"startDate":"2026-01-17T00:00:00-0600","endDate":"2026-01-17T13:04:11-0600"}],"surcharges":[]}}}
+
+[2026-01-17 19:04:12.095858] [debug] Evento recibido: service.suspend_cancel
+[2026-01-17 19:04:12.095980] [debug] Se reactivó el servicio a un cliente
+
+Actualizando estado del servicio
+
+Nombre del cliente al que se va a actualizar el estado del servicio: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Estado":"\ud83d\udfe2 Activo","Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 13:04"}}
+
+Response Patch CallBell: {"contact":{"uuid":"74cc2bb45eb8409f92cd5dba99200d26","name":"Delfino De los Mares venus","phoneNumber":"5214181878106","avatarUrl":null,"createdAt":"2024-01-08T17:04:13Z","closedAt":"2026-01-16T15:23:41Z","source":"whatsapp","funnelId":null,"href":"https://dash.callbell.eu/contacts/74cc2bb45eb8409f92cd5dba99200d26","conversationHref":"https://dash.callbell.eu/chat/53c8229c428c4081b197ab136feab73b","tags":["s0LOCS","PRUEBAS"],"assignedUser":null,"customFields":{"user entry point":"inbound_message","Antena/Sectorial":"Sectorial-4b 172.16.13.16/24","Site":"0LOCS","Estado":"🟢 Activo","Cliente":"146","URL":"🌐 https://sistema.siip.mx/crm/client/146","Clabe Interbancaria":"124180650741646979","Saldo Actual":"💲9350 pendientes","Domicilio":"📍 Yucatán 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., México","Monto Ultimo Pago":"💲 500","Nombre":"👤 Delfino De los Mares venus","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}","Fecha Ultimo Pago":"📆💸 17/01/2026 13:01 con Tarjeta de crédito Stripe 💳","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https://sistema.siip.mx/crm/client/146\",\"Saldo Actual\": \"💲9350 pendientes\",\"Monto Ultimo Pago\": \"$ 500\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 17/01/2026 13:01 con Tarjeta de crédito Stripe 💳\",\"Fecha Ultima Actualizacion\": \"17/01/2026 13:01\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","user name":"Daniel Humberto","Fecha Ultima Actualizacion":"📆🔄️ 17/01/2026 13:04"},"team":{"uuid":"5faeed738d6a44ccacf6509762eb288d","name":"General","default":true,"members":5,"createdAt":"2023-11-07T00:37:10Z"},"channel":{"uuid":"dbaa248932634e7ea4346a320960c24a","title":null,"type":"whatsapp","main":true},"blockedAt":null}}
+
+[2026-01-17 19:04:13.477140] [notice] Logging level set to:debug
+[2026-01-17 19:04:13.477260] [debug] Payload recibido: {"uuid":"ade98692-a1fa-4b8f-b0c1-f60661920879","changeType":"edit","entity":"service","entityId":"131","eventName":"service.edit","extraData":{"entity":{"id":131,"prepaid":false,"clientId":146,"status":1,"name":"Basico 300","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","note":null,"addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"servicePlanId":6,"servicePlanPeriodId":26,"price":300,"hasIndividualPrice":false,"totalPrice":300,"currencyCode":"MXN","invoiceLabel":null,"contractId":null,"contractLengthType":1,"minimumContractLengthMonths":null,"activeFrom":"2025-02-13T00:00:00-0600","activeTo":null,"contractEndDate":null,"discountType":0,"discountValue":null,"discountInvoiceLabel":"Descuento","discountFrom":null,"discountTo":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"invoicingStart":"2025-02-13T00:00:00-0600","invoicingPeriodType":1,"invoicingPeriodStartDay":1,"nextInvoicingDayAdjustment":10,"invoicingProratedSeparately":true,"invoicingSeparately":false,"sendEmailsAutomatically":null,"useCreditAutomatically":true,"servicePlanName":"Basico 300","servicePlanPrice":300,"servicePlanPeriod":1,"servicePlanType":"Internet","downloadSpeed":8,"uploadSpeed":8,"hasOutage":false,"unmsClientSiteStatus":null,"fccBlockId":null,"lastInvoicedDate":"2026-03-31T00:00:00-0600","unmsClientSiteId":"bc4103e6-5550-462c-84df-f279b498f6ff","attributes":[{"id":"4608cebe-fea9-4d3f-87ce-60e6fcbcb9f7","serviceId":131,"customAttributeId":18,"name":"Extensor Wifi","key":"extensorWifi","value":"0","clientZoneVisible":true}],"addressData":null,"suspensionReasonId":null,"serviceChangeRequestId":null,"setupFeePrice":null,"earlyTerminationFeePrice":null,"downloadSpeedOverride":null,"uploadSpeedOverride":null,"trafficShapingOverrideEnd":null,"trafficShapingOverrideEnabled":false,"servicePlanGroupId":null,"suspensionPeriods":[{"id":135,"startDate":"2025-03-04T00:00:00-0600","endDate":"2025-03-10T00:00:00-0600"},{"id":140,"startDate":"2025-03-14T00:00:00-0600","endDate":"2026-01-08T00:00:00-0600"},{"id":188,"startDate":"2026-01-17T00:00:00-0600","endDate":"2026-01-17T13:04:11-0600"}],"surcharges":[]},"entityBeforeEdit":{"id":131,"prepaid":false,"clientId":146,"status":3,"name":"Basico 300","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","note":null,"addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"servicePlanId":6,"servicePlanPeriodId":26,"price":300,"hasIndividualPrice":false,"totalPrice":300,"currencyCode":"MXN","invoiceLabel":null,"contractId":null,"contractLengthType":1,"minimumContractLengthMonths":null,"activeFrom":"2025-02-13T00:00:00-0600","activeTo":null,"contractEndDate":null,"discountType":0,"discountValue":null,"discountInvoiceLabel":"Descuento","discountFrom":null,"discountTo":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"invoicingStart":"2025-02-13T00:00:00-0600","invoicingPeriodType":1,"invoicingPeriodStartDay":1,"nextInvoicingDayAdjustment":10,"invoicingProratedSeparately":true,"invoicingSeparately":false,"sendEmailsAutomatically":null,"useCreditAutomatically":true,"servicePlanName":"Basico 300","servicePlanPrice":300,"servicePlanPeriod":1,"servicePlanType":"Internet","downloadSpeed":8,"uploadSpeed":8,"hasOutage":false,"unmsClientSiteStatus":null,"fccBlockId":null,"lastInvoicedDate":"2026-03-31T00:00:00-0600","unmsClientSiteId":"bc4103e6-5550-462c-84df-f279b498f6ff","attributes":[{"id":"4608cebe-fea9-4d3f-87ce-60e6fcbcb9f7","serviceId":131,"customAttributeId":18,"name":"Extensor Wifi","key":"extensorWifi","value":"0","clientZoneVisible":true}],"addressData":null,"suspensionReasonId":1000,"serviceChangeRequestId":null,"setupFeePrice":null,"earlyTerminationFeePrice":null,"downloadSpeedOverride":null,"uploadSpeedOverride":null,"trafficShapingOverrideEnd":null,"trafficShapingOverrideEnabled":false,"servicePlanGroupId":null,"suspensionPeriods":[{"id":135,"startDate":"2025-03-04T00:00:00-0600","endDate":"2025-03-10T00:00:00-0600"},{"id":140,"startDate":"2025-03-14T00:00:00-0600","endDate":"2026-01-08T00:00:00-0600"},{"id":188,"startDate":"2026-01-17T00:00:00-0600","endDate":"2026-01-17T13:04:11-0600"}],"surcharges":[]}}}
+
+[2026-01-17 19:04:13.666316] [debug] Evento recibido: service.edit
+[2026-01-17 19:04:13.666433] [debug] Se editó el servicio a un cliente
+
+Actualizando estado del servicio
+
+Nombre del cliente al que se va a actualizar el estado del servicio: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Estado":"\ud83d\udfe2 Activo","Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 13:04"}}
+
+No hay cambios en el estado del servicio que actualizar
+
+[2026-01-17 19:04:14.059151] [info] Iniciando verificación/sincronización de contraseña para el cliente ID: 146
+[2026-01-17 19:08:13.265126] [notice] Logging level set to:debug
+[2026-01-17 19:08:13.265285] [debug] Payload recibido: {"uuid":"b245a8f3-ebd7-4ac8-aef5-13f19dcd557c","changeType":"suspend","entity":"service","entityId":"131","eventName":"service.suspend","extraData":{"entity":{"id":131,"prepaid":false,"clientId":146,"status":3,"name":"Basico 300","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","note":null,"addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"servicePlanId":6,"servicePlanPeriodId":26,"price":300,"hasIndividualPrice":false,"totalPrice":300,"currencyCode":"MXN","invoiceLabel":null,"contractId":null,"contractLengthType":1,"minimumContractLengthMonths":null,"activeFrom":"2025-02-13T00:00:00-0600","activeTo":null,"contractEndDate":null,"discountType":0,"discountValue":null,"discountInvoiceLabel":"Descuento","discountFrom":null,"discountTo":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"invoicingStart":"2025-02-13T00:00:00-0600","invoicingPeriodType":1,"invoicingPeriodStartDay":1,"nextInvoicingDayAdjustment":10,"invoicingProratedSeparately":true,"invoicingSeparately":false,"sendEmailsAutomatically":null,"useCreditAutomatically":true,"servicePlanName":"Basico 300","servicePlanPrice":300,"servicePlanPeriod":1,"servicePlanType":"Internet","downloadSpeed":8,"uploadSpeed":8,"hasOutage":false,"unmsClientSiteStatus":null,"fccBlockId":null,"lastInvoicedDate":"2026-03-31T00:00:00-0600","unmsClientSiteId":"bc4103e6-5550-462c-84df-f279b498f6ff","attributes":[{"id":"4608cebe-fea9-4d3f-87ce-60e6fcbcb9f7","serviceId":131,"customAttributeId":18,"name":"Extensor Wifi","key":"extensorWifi","value":"0","clientZoneVisible":true}],"addressData":null,"suspensionReasonId":1000,"serviceChangeRequestId":null,"setupFeePrice":null,"earlyTerminationFeePrice":null,"downloadSpeedOverride":null,"uploadSpeedOverride":null,"trafficShapingOverrideEnd":null,"trafficShapingOverrideEnabled":false,"servicePlanGroupId":null,"suspensionPeriods":[{"id":135,"startDate":"2025-03-04T00:00:00-0600","endDate":"2025-03-10T00:00:00-0600"},{"id":140,"startDate":"2025-03-14T00:00:00-0600","endDate":"2026-01-08T00:00:00-0600"},{"id":188,"startDate":"2026-01-17T00:00:00-0600","endDate":"2026-01-17T00:00:00-0600"},{"id":189,"startDate":"2026-01-17T13:08:12-0600","endDate":null}],"surcharges":[]},"entityBeforeEdit":{"id":131,"prepaid":false,"clientId":146,"status":1,"name":"Basico 300","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","note":null,"addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"servicePlanId":6,"servicePlanPeriodId":26,"price":300,"hasIndividualPrice":false,"totalPrice":300,"currencyCode":"MXN","invoiceLabel":null,"contractId":null,"contractLengthType":1,"minimumContractLengthMonths":null,"activeFrom":"2025-02-13T00:00:00-0600","activeTo":null,"contractEndDate":null,"discountType":0,"discountValue":null,"discountInvoiceLabel":"Descuento","discountFrom":null,"discountTo":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"invoicingStart":"2025-02-13T00:00:00-0600","invoicingPeriodType":1,"invoicingPeriodStartDay":1,"nextInvoicingDayAdjustment":10,"invoicingProratedSeparately":true,"invoicingSeparately":false,"sendEmailsAutomatically":null,"useCreditAutomatically":true,"servicePlanName":"Basico 300","servicePlanPrice":300,"servicePlanPeriod":1,"servicePlanType":"Internet","downloadSpeed":8,"uploadSpeed":8,"hasOutage":false,"unmsClientSiteStatus":null,"fccBlockId":null,"lastInvoicedDate":"2026-03-31T00:00:00-0600","unmsClientSiteId":"bc4103e6-5550-462c-84df-f279b498f6ff","attributes":[{"id":"4608cebe-fea9-4d3f-87ce-60e6fcbcb9f7","serviceId":131,"customAttributeId":18,"name":"Extensor Wifi","key":"extensorWifi","value":"0","clientZoneVisible":true}],"addressData":null,"suspensionReasonId":null,"serviceChangeRequestId":null,"setupFeePrice":null,"earlyTerminationFeePrice":null,"downloadSpeedOverride":null,"uploadSpeedOverride":null,"trafficShapingOverrideEnd":null,"trafficShapingOverrideEnabled":false,"servicePlanGroupId":null,"suspensionPeriods":[{"id":135,"startDate":"2025-03-04T00:00:00-0600","endDate":"2025-03-10T00:00:00-0600"},{"id":140,"startDate":"2025-03-14T00:00:00-0600","endDate":"2026-01-08T00:00:00-0600"},{"id":188,"startDate":"2026-01-17T00:00:00-0600","endDate":"2026-01-17T00:00:00-0600"},{"id":189,"startDate":"2026-01-17T13:08:12-0600","endDate":null}],"surcharges":[]}}}
+
+[2026-01-17 19:08:13.522836] [debug] Evento recibido: service.suspend
+[2026-01-17 19:08:13.523045] [debug] Se suspendió el servicio a un cliente
+
+Actualizando estado del servicio
+
+Nombre del cliente al que se va a actualizar el estado del servicio: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Estado":"\ud83d\udfe0 Suspendido","Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 13:08"}}
+
+Response Patch CallBell: {"contact":{"uuid":"74cc2bb45eb8409f92cd5dba99200d26","name":"Delfino De los Mares venus","phoneNumber":"5214181878106","avatarUrl":null,"createdAt":"2024-01-08T17:04:13Z","closedAt":"2026-01-16T15:23:41Z","source":"whatsapp","funnelId":null,"href":"https://dash.callbell.eu/contacts/74cc2bb45eb8409f92cd5dba99200d26","conversationHref":"https://dash.callbell.eu/chat/53c8229c428c4081b197ab136feab73b","tags":["s0LOCS","PRUEBAS"],"assignedUser":null,"customFields":{"user entry point":"inbound_message","Antena/Sectorial":"Sectorial-4b 172.16.13.16/24","Site":"0LOCS","Estado":"🟠 Suspendido","Cliente":"146","URL":"🌐 https://sistema.siip.mx/crm/client/146","Clabe Interbancaria":"124180650741646979","Saldo Actual":"💲9350 pendientes","Domicilio":"📍 Yucatán 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., México","Monto Ultimo Pago":"💲 500","Nombre":"👤 Delfino De los Mares venus","password-antena":"{\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}","Fecha Ultimo Pago":"📆💸 17/01/2026 13:01 con Tarjeta de crédito Stripe 💳","Resumen":"{\"Cliente\": \"146\",\"Nombre\": \"Delfino De los Mares venus\",\"URL\": \"https://sistema.siip.mx/crm/client/146\",\"Saldo Actual\": \"💲9350 pendientes\",\"Monto Ultimo Pago\": \"$ 500\",\"Estado\": \"Activo\",\"Fecha Ultimo Pago\": \" 17/01/2026 13:01 con Tarjeta de crédito Stripe 💳\",\"Fecha Ultima Actualizacion\": \"17/01/2026 13:01\",\"Clabe Interbancaria\": \"\",\"Site\": \"\",\"Antena/Sectorial\": \"\",\"Password Antena\": {\"Servicio 1\":\"ETfEB8at@GAqUt#2\"}}","user name":"Daniel Humberto","Fecha Ultima Actualizacion":"📆🔄️ 17/01/2026 13:08"},"team":{"uuid":"5faeed738d6a44ccacf6509762eb288d","name":"General","default":true,"members":5,"createdAt":"2023-11-07T00:37:10Z"},"channel":{"uuid":"dbaa248932634e7ea4346a320960c24a","title":null,"type":"whatsapp","main":true},"blockedAt":null}}
+
+[2026-01-17 19:08:15.371879] [notice] Logging level set to:debug
+[2026-01-17 19:08:15.372028] [debug] Payload recibido: {"uuid":"679984bf-5a95-489a-a5bc-717ba7ab9cc2","changeType":"edit","entity":"service","entityId":"131","eventName":"service.edit","extraData":{"entity":{"id":131,"prepaid":false,"clientId":146,"status":3,"name":"Basico 300","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","note":null,"addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"servicePlanId":6,"servicePlanPeriodId":26,"price":300,"hasIndividualPrice":false,"totalPrice":300,"currencyCode":"MXN","invoiceLabel":null,"contractId":null,"contractLengthType":1,"minimumContractLengthMonths":null,"activeFrom":"2025-02-13T00:00:00-0600","activeTo":null,"contractEndDate":null,"discountType":0,"discountValue":null,"discountInvoiceLabel":"Descuento","discountFrom":null,"discountTo":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"invoicingStart":"2025-02-13T00:00:00-0600","invoicingPeriodType":1,"invoicingPeriodStartDay":1,"nextInvoicingDayAdjustment":10,"invoicingProratedSeparately":true,"invoicingSeparately":false,"sendEmailsAutomatically":null,"useCreditAutomatically":true,"servicePlanName":"Basico 300","servicePlanPrice":300,"servicePlanPeriod":1,"servicePlanType":"Internet","downloadSpeed":8,"uploadSpeed":8,"hasOutage":false,"unmsClientSiteStatus":null,"fccBlockId":null,"lastInvoicedDate":"2026-03-31T00:00:00-0600","unmsClientSiteId":"bc4103e6-5550-462c-84df-f279b498f6ff","attributes":[{"id":"4608cebe-fea9-4d3f-87ce-60e6fcbcb9f7","serviceId":131,"customAttributeId":18,"name":"Extensor Wifi","key":"extensorWifi","value":"0","clientZoneVisible":true}],"addressData":null,"suspensionReasonId":1000,"serviceChangeRequestId":null,"setupFeePrice":null,"earlyTerminationFeePrice":null,"downloadSpeedOverride":null,"uploadSpeedOverride":null,"trafficShapingOverrideEnd":null,"trafficShapingOverrideEnabled":false,"servicePlanGroupId":null,"suspensionPeriods":[{"id":135,"startDate":"2025-03-04T00:00:00-0600","endDate":"2025-03-10T00:00:00-0600"},{"id":140,"startDate":"2025-03-14T00:00:00-0600","endDate":"2026-01-08T00:00:00-0600"},{"id":188,"startDate":"2026-01-17T00:00:00-0600","endDate":"2026-01-17T00:00:00-0600"},{"id":189,"startDate":"2026-01-17T13:08:12-0600","endDate":null}],"surcharges":[]},"entityBeforeEdit":{"id":131,"prepaid":false,"clientId":146,"status":1,"name":"Basico 300","fullAddress":"Yucat\u00e1n 36, Centro, Dolores Hidalgo Cuna de la Independencia Nacional, Gto., M\u00e9xico","street1":"36 Yucat\u00e1n","street2":null,"city":"Dolores Hidalgo Cuna de la Independencia Nacional","countryId":173,"stateId":null,"zipCode":"37800","note":null,"addressGpsLat":21.1561796,"addressGpsLon":-100.9371826,"servicePlanId":6,"servicePlanPeriodId":26,"price":300,"hasIndividualPrice":false,"totalPrice":300,"currencyCode":"MXN","invoiceLabel":null,"contractId":null,"contractLengthType":1,"minimumContractLengthMonths":null,"activeFrom":"2025-02-13T00:00:00-0600","activeTo":null,"contractEndDate":null,"discountType":0,"discountValue":null,"discountInvoiceLabel":"Descuento","discountFrom":null,"discountTo":null,"tax1Id":null,"tax2Id":null,"tax3Id":null,"invoicingStart":"2025-02-13T00:00:00-0600","invoicingPeriodType":1,"invoicingPeriodStartDay":1,"nextInvoicingDayAdjustment":10,"invoicingProratedSeparately":true,"invoicingSeparately":false,"sendEmailsAutomatically":null,"useCreditAutomatically":true,"servicePlanName":"Basico 300","servicePlanPrice":300,"servicePlanPeriod":1,"servicePlanType":"Internet","downloadSpeed":8,"uploadSpeed":8,"hasOutage":false,"unmsClientSiteStatus":null,"fccBlockId":null,"lastInvoicedDate":"2026-03-31T00:00:00-0600","unmsClientSiteId":"bc4103e6-5550-462c-84df-f279b498f6ff","attributes":[{"id":"4608cebe-fea9-4d3f-87ce-60e6fcbcb9f7","serviceId":131,"customAttributeId":18,"name":"Extensor Wifi","key":"extensorWifi","value":"0","clientZoneVisible":true}],"addressData":null,"suspensionReasonId":null,"serviceChangeRequestId":null,"setupFeePrice":null,"earlyTerminationFeePrice":null,"downloadSpeedOverride":null,"uploadSpeedOverride":null,"trafficShapingOverrideEnd":null,"trafficShapingOverrideEnabled":false,"servicePlanGroupId":null,"suspensionPeriods":[{"id":135,"startDate":"2025-03-04T00:00:00-0600","endDate":"2025-03-10T00:00:00-0600"},{"id":140,"startDate":"2025-03-14T00:00:00-0600","endDate":"2026-01-08T00:00:00-0600"},{"id":188,"startDate":"2026-01-17T00:00:00-0600","endDate":"2026-01-17T00:00:00-0600"},{"id":189,"startDate":"2026-01-17T13:08:12-0600","endDate":null}],"surcharges":[]}}}
+
+[2026-01-17 19:08:15.631995] [debug] Evento recibido: service.edit
+[2026-01-17 19:08:15.632117] [debug] Se editó el servicio a un cliente
+
+Actualizando estado del servicio
+
+Nombre del cliente al que se va a actualizar el estado del servicio: Delfino De los Mares venus
+
+UUID: 74cc2bb45eb8409f92cd5dba99200d26
+
+JSON con los datos a actualizar: {"name":"Delfino De los Mares venus","custom_fields":{"Estado":"\ud83d\udfe0 Suspendido","Fecha Ultima Actualizacion":"\ud83d\udcc6\ud83d\udd04\ufe0f 17\/01\/2026 13:08"}}
+
+No hay cambios en el estado del servicio que actualizar
+
+[2026-01-17 19:08:16.389183] [info] Iniciando verificación/sincronización de contraseña para el cliente ID: 146
+[PROPAGATED_DEBUG] Image Request: File=logo-empresa.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/logo-empresa.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/logo-empresa.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/logo-empresa.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/logo-empresa.png. Size: 48352 bytes
+[PROPAGATED_DEBUG] Image Request: File=oxxo-logo.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/oxxo-logo.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png. Size: 755752 bytes
+[PROPAGATED_DEBUG] Image Request: File=instalador.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/instalador.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/instalador.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/instalador.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/instalador.png. Size: 13689 bytes
+[PROPAGATED_DEBUG] Image Request: File=whatsapp-logo.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/whatsapp-logo.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/whatsapp-logo.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/whatsapp-logo.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/whatsapp-logo.png. Size: 85794 bytes
+[PROPAGATED_DEBUG] Image Request: File=stripe-logo.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/stripe-logo.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/stripe-logo.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/stripe-logo.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/stripe-logo.png. Size: 22209 bytes
+[PROPAGATED_DEBUG] Image Request: File=instalador.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/instalador.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/instalador.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/instalador.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/instalador.png. Size: 13689 bytes
+[PROPAGATED_DEBUG] Image Request: File=logo-empresa.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/logo-empresa.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/logo-empresa.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/logo-empresa.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/logo-empresa.png. Size: 48352 bytes
+[PROPAGATED_DEBUG] Image Request: File=oxxo-logo.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/oxxo-logo.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png. Size: 755752 bytes
+[PROPAGATED_DEBUG] Image Request: File=whatsapp-logo.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/whatsapp-logo.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/whatsapp-logo.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/whatsapp-logo.png | Exists=NO
+[PROPAGATED_DEBUG] Image Request: File=stripe-logo.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/stripe-logo.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/stripe-logo.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/stripe-logo.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/stripe-logo.png. Size: 22209 bytes
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/whatsapp-logo.png. Size: 85794 bytes
+[PROPAGATED_DEBUG] Image Request: File=logo-empresa.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/logo-empresa.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/logo-empresa.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/logo-empresa.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/logo-empresa.png. Size: 48352 bytes
+[PROPAGATED_DEBUG] Image Request: File=instalador.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/instalador.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/instalador.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/instalador.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/instalador.png. Size: 13689 bytes
+[PROPAGATED_DEBUG] Image Request: File=stripe-logo.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/stripe-logo.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/stripe-logo.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/stripe-logo.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/stripe-logo.png. Size: 22209 bytes
+[PROPAGATED_DEBUG] Image Request: File=whatsapp-logo.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/whatsapp-logo.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/whatsapp-logo.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/whatsapp-logo.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/whatsapp-logo.png. Size: 85794 bytes
+[PROPAGATED_DEBUG] Image Request: File=oxxo-logo.png | PathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png | VoucherPathTry=/data/ucrm/data/plugins/siip-whatsapp-notifications/vouchers_oxxo/oxxo-logo.png | FinalPath=/data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png | Exists=NO
+[DEBUG_IMG] Serving /data/ucrm/data/plugins/siip-whatsapp-notifications/img/oxxo-logo.png. Size: 755752 bytes
diff --git a/explore_db.php b/explore_db.php
new file mode 100644
index 00000000..6fd43f89
--- /dev/null
+++ b/explore_db.php
@@ -0,0 +1,34 @@
+setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
+
+ echo "Connected to DB.\n";
+
+ // List tables in ucrm schema matching 'stripe'
+ $stmt = $pdo->query("SELECT table_name FROM information_schema.tables WHERE table_schema = 'ucrm' AND table_name LIKE '%stripe%'");
+ $tables = $stmt->fetchAll(PDO::FETCH_COLUMN);
+
+ echo "Tables found:\n";
+ foreach ($tables as $table) {
+ echo "- $table\n";
+ }
+
+ // Also check for 'payment' tables if stripe ones aren't obvious/enough
+ $stmt2 = $pdo->query("SELECT table_name FROM information_schema.tables WHERE table_schema = 'ucrm' AND table_name LIKE '%payment%' LIMIT 20");
+ $tables2 = $stmt2->fetchAll(PDO::FETCH_COLUMN);
+ echo "\nPayment Tables sample:\n";
+ foreach ($tables2 as $table) {
+ echo "- $table\n";
+ }
+
+} catch (PDOException $e) {
+ echo "Connection failed: " . $e->getMessage() . "\n";
+}
diff --git a/find_attribute_id.php b/find_attribute_id.php
new file mode 100644
index 00000000..18159101
--- /dev/null
+++ b/find_attribute_id.php
@@ -0,0 +1,33 @@
+ rtrim($ucrmUrl, '/') . '/api/v1.0/',
+ 'verify' => false,
+ 'headers' => [
+ 'X-Auth-App-Key' => $appKey
+ ]
+]);
+
+try {
+ $response = $client->get('custom-attributes');
+ $attributes = json_decode($response->getBody(), true);
+
+ foreach ($attributes as $attr) {
+ if ($attr['key'] === 'tipoPagoStripe') {
+ echo "FOUND: ID=" . $attr['id'] . " Name='" . $attr['name'] . "' Type=" . $attr['attributeType'] . "\n";
+ exit(0);
+ }
+ }
+ echo "NOT FOUND: tipoPagoStripe\n";
+} catch (\Exception $e) {
+ echo "ERROR: " . $e->getMessage() . "\n";
+}
diff --git a/inspect_payment.php b/inspect_payment.php
new file mode 100644
index 00000000..515ad03e
--- /dev/null
+++ b/inspect_payment.php
@@ -0,0 +1,24 @@
+ rtrim($ucrmUrl, '/') . '/api/v1.0/',
+ 'verify' => false,
+ 'headers' => [
+ 'X-Auth-App-Key' => $appKey
+ ]
+]);
+
+$paymentId = 818; // From screenshot
+
+try {
+ $response = $client->get("payments/$paymentId");
+ echo $response->getBody();
+} catch (\Exception $e) {
+ echo "ERROR: " . $e->getMessage() . "\n";
+}
diff --git a/list_attributes.php b/list_attributes.php
old mode 100644
new mode 100755
diff --git a/manifest.json b/manifest.json
index 6095f343..6f9771ae 100755
--- a/manifest.json
+++ b/manifest.json
@@ -5,7 +5,7 @@
"displayName": "SIIP - Procesador de Pagos en línea con Stripe, Oxxo y Transferencia, Sincronizador de CallBell y Envío de Notificaciones y comprobantes vía WhatsApp",
"description": "Este plugin sincroniza los clientes del sistema UISP CRM con los contactos de WhatsApp en CallBell, además procesa pagos de Stripe como las trasferencias bancarias y genera referencias de pago vía OXXO, además envía comprobantes de pago en formato imagen PNG o texto vía Whatsapp a los clientes",
"url": "https://siip.mx/",
- "version": "4.1.0",
+ "version": "4.2.0",
"unmsVersionCompliancy": {
"min": "2.1.0",
"max": null
diff --git a/public.php b/public.php
index 9ce0cdb7..3ebf4cc1 100755
--- a/public.php
+++ b/public.php
@@ -688,11 +688,39 @@ $installersData = json_decode($config['installersDataWhatsApp'] ?? '{"instalador
.search-item .details {
font-size: 12px;
- color: var(--text-muted);
}
.section-view { display: none; }
.section-view.active { display: block; }
+
+ /* Payment Visualizer Styles */
+ .stat-card {
+ background: var(--bg-card);
+ padding: 1.5rem;
+ border-radius: 12px;
+ border: 1px solid var(--border);
+ }
+
+ .stat-card h3 {
+ font-size: 0.875rem;
+ font-weight: 600;
+ color: var(--text-muted);
+ margin-bottom: 0.5rem;
+ }
+
+ .stat-card p {
+ font-size: 2.5rem;
+ font-weight: 700;
+ color: var(--text-main);
+ margin: 0;
+ }
+
+ .stat-card.success p { color: var(--success); }
+ .stat-card.danger p { color: var(--danger); }
+
+ @keyframes spin {
+ to { transform: rotate(360deg); }
+ }
@@ -718,6 +746,14 @@ $installersData = json_decode($config['installersDataWhatsApp'] ?? '{"instalador
Pagos OXXO
+
+
+ Visualizador Pagos
+
@@ -904,7 +940,74 @@ $installersData = json_decode($config['installersDataWhatsApp'] ?? '{"instalador
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Total Clientes Activos
+
0
+
+
+
Clientes que Pagaron
+
0
+
+
+
+
Clientes Pendientes
+
0
+
+
+
+
+
+
+
+
+
+
+
+
Clientes Pendientes de Pago
+
+
+
+
+ | ID |
+ Nombre |
+ Email |
+ Saldo |
+
+
+
+
+
+
+
+
@@ -949,6 +1052,7 @@ $installersData = json_decode($config['installersDataWhatsApp'] ?? '{"instalador
+
diff --git a/src/Facade/AbstractMessageNotifierFacade.php b/src/Facade/AbstractMessageNotifierFacade.php
index f4bc2968..48d36625 100755
--- a/src/Facade/AbstractMessageNotifierFacade.php
+++ b/src/Facade/AbstractMessageNotifierFacade.php
@@ -242,11 +242,19 @@ abstract class AbstractMessageNotifierFacade
}
public function onlyUpdate(NotificationData $notificationData, $phoneToUpdate): void {
+ $this->logger->debug("onlyUpdate: Iniciando actualización para teléfono: $phoneToUpdate");
$config = PluginConfigManager::create()->loadConfig();
$api = new ClientCallBellAPI($config['apitoken'], $config['ipserver'], $config['tokencallbell']);
$phone = $this->validarNumeroTelefono($phoneToUpdate);
+ $this->logger->debug("onlyUpdate: Teléfono validado: $phone");
$contact = json_decode($api->getContactWhatsapp($phone), true);
- if ($contact) $api->patchWhatsapp($contact, $notificationData);
+ $this->logger->debug("onlyUpdate: Contacto obtenido de CallBell: " . json_encode($contact));
+ if ($contact) {
+ $this->logger->info("onlyUpdate: Ejecutando patchWhatsapp para teléfono: $phone");
+ $api->patchWhatsapp($contact, $notificationData);
+ } else {
+ $this->logger->warning("onlyUpdate: No se encontró contacto en CallBell para teléfono: $phone");
+ }
}
public function onlyUpdateService(NotificationData $notificationData, $phoneToUpdate): void {
diff --git a/src/Facade/AbstractStripeOperationsFacade.php b/src/Facade/AbstractStripeOperationsFacade.php
index 4bcdaded..893449bb 100755
--- a/src/Facade/AbstractStripeOperationsFacade.php
+++ b/src/Facade/AbstractStripeOperationsFacade.php
@@ -611,5 +611,133 @@ abstract class AbstractStripeOperationsFacade
return (strlen($n) === 10) ? '52' . $n : $n;
}
+ public function ensureStripePaymentAttribute($notificationObject): void
+ {
+ // 1. Get Payment ID
+ $paymentId = is_object($notificationObject) ? ($notificationObject->entityId ?? null) : ($notificationObject['entityId'] ?? null);
+
+ if (!$paymentId) {
+ $this->logger->warning("ensureStripePaymentAttribute: No entityId found in notification.");
+ return;
+ }
+
+ $this->logger->info("Verificando existencia de atributo 'tipoPagoStripe' para Payment ID: $paymentId");
+
+ try {
+ // Load Config
+ $config = PluginConfigManager::create()->loadConfig();
+ $ipPuppeteer = $config['ipPuppeteer'] ?? 'localhost';
+ $portPuppeteer = $config['portPuppeteer'] ?? '3000';
+ $stripeUserId = $config['idPaymentAdminCRM'] ?? null;
+
+ $microserviceBaseUrl = "http://$ipPuppeteer:$portPuppeteer";
+ $httpClient = new Client();
+
+ // 2. Fetch Metadata from Microservice (DB Access)
+ $metadataTipoPago = null;
+ try {
+ $response = $httpClient->get("$microserviceBaseUrl/stripe-metadata/$paymentId", ['timeout' => 5]);
+ $data = json_decode($response->getBody()->getContents(), true);
+ if (isset($data['metadata']['tipoPago'])) {
+ $metadataTipoPago = $data['metadata']['tipoPago'];
+ $this->logger->info("Microservice found metadata: tipoPago = '$metadataTipoPago'");
+ }
+ } catch (\Throwable $e) {
+ $this->logger->warning("Microservice metadata fetch failed: " . $e->getMessage());
+ }
+
+ // 3. Update User ID if missing (Direct DB Patch via Microservice)
+ // UCRM API doesn't support PATCH userId, so we use microservice
+ if ($stripeUserId) {
+ try {
+ $payment = $this->ucrmApi->get('payments/' . $paymentId);
+ if (empty($payment['userId'])) {
+ $this->logger->info("Payment $paymentId has no User ID. Assigning Stripe User ID: $stripeUserId");
+ $httpClient->patch("$microserviceBaseUrl/payments/$paymentId/user", [
+ 'json' => ['userId' => $stripeUserId],
+ 'timeout' => 5
+ ]);
+ } else {
+ $this->logger->debug("Payment $paymentId already has User ID: " . $payment['userId']);
+ }
+ } catch (\Throwable $e) {
+ $this->logger->error("Failed to patch User ID via microservice: " . $e->getMessage());
+ }
+ }
+
+ // 4. Determine Target Attribute Value
+ // Truth Source Priority: 1. Metadata (DB), 2. Existing Attribute, 3. Method Name (Guess)
+
+ // A. Check Existing Attribute (Don't overwrite valid values unless Metadata says otherwise?)
+ // Actually, Metadata keys are stronger than manual edits if the flow is automatic.
+ // But let's respect existing valid attributes if metadata is missing.
+
+ $payment = $this->ucrmApi->get('payments/' . $paymentId); // Re-fetch in case changed? Or Use previous result.
+ $currentValue = null;
+ $hasAttribute = false;
+ foreach ($payment['attributes'] as $attr) {
+ if ($attr['key'] === 'tipoPagoStripe' || $attr['customAttributeId'] == 20) {
+ $hasAttribute = true;
+ $currentValue = $attr['value'];
+ break;
+ }
+ }
+
+ $targetValue = null;
+
+ if ($metadataTipoPago) {
+ // Normalize Metadata Values to Attribute Choice Values
+ if ($metadataTipoPago === 'OXXO') {
+ $targetValue = 'OXXO Pay';
+ } else {
+ $targetValue = $metadataTipoPago;
+ }
+ } else {
+ // Fallback to Method Name Guessing if Metadata missing
+ if ($hasAttribute && in_array($currentValue, ['OXXO Pay', 'Transferencia Bancaria', 'Tarjeta de Crédito'])) {
+ $this->logger->debug("Payment $paymentId ya tiene atributo '$currentValue' y no hay metadata. Respetando.");
+ return;
+ }
+
+ $methodId = $payment['methodId'];
+ $method = $this->ucrmApi->get('payment-methods/' . $methodId);
+ $methodName = $method['name'] ?? '';
+
+ if (stripos($methodName, 'OXXO') !== false) {
+ $targetValue = 'OXXO Pay';
+ } elseif (stripos($methodName, 'Transferencia') !== false) {
+ $targetValue = 'Transferencia Bancaria';
+ } elseif (stripos($methodName, 'Tarjeta') !== false && stripos($methodName, 'Stripe') !== false) {
+ $targetValue = 'Tarjeta de Crédito';
+ }
+ $this->logger->debug("Fallback Method Guessing '$methodName' -> '$targetValue'");
+ }
+
+ // 5. Apply Update
+ if ($targetValue) {
+ // Check redundancy
+ if ($hasAttribute && $currentValue === $targetValue) {
+ $this->logger->debug("Attribute already matches target '$targetValue'. Skipping patch.");
+ return;
+ }
+
+ $this->logger->info("PATCHING Payment $paymentId: Setting tipoPagoStripe = '$targetValue'");
+ $this->ucrmApi->patch('payments/' . $paymentId, [
+ 'attributes' => [
+ [
+ 'customAttributeId' => 20,
+ 'value' => $targetValue
+ ]
+ ]
+ ]);
+ } else {
+ $this->logger->debug("No se pudo determinar el tipoPagoStripe.");
+ }
+
+ } catch (\Throwable $e) {
+ $this->logger->error("Error in ensureStripePaymentAttribute: " . $e->getMessage());
+ }
+ }
+
abstract protected function sendWhatsApp(NotificationData $notificationData, string $clientPhoneNumber): void;
}
diff --git a/src/Facade/ClientCallBellAPI.php b/src/Facade/ClientCallBellAPI.php
index d0818a45..e4e43689 100755
--- a/src/Facade/ClientCallBellAPI.php
+++ b/src/Facade/ClientCallBellAPI.php
@@ -1150,6 +1150,11 @@ class ClientCallBellAPI
$contact = $response_getContactCallBell['contact'] ?? [];
$contactCustomFields = $contact['customFields'] ?? [];
+ $log->appendLog("DEBUG COMPARACIÓN - CallBell Saldo Actual: '" . ($contactCustomFields['Saldo Actual'] ?? 'NULL') . "'" . PHP_EOL);
+ $log->appendLog("DEBUG COMPARACIÓN - UCRM Saldo Actual: '" . $data_CRM['custom_fields']['Saldo Actual'] . "'" . PHP_EOL);
+ $log->appendLog("DEBUG COMPARACIÓN - CallBell Estado: '" . ($contactCustomFields['Estado'] ?? 'NULL') . "'" . PHP_EOL);
+ $log->appendLog("DEBUG COMPARACIÓN - UCRM Estado: '" . $data_CRM['custom_fields']['Estado'] . "'" . PHP_EOL);
+
if (
($contactCustomFields['Cliente'] ?? '') != $data_CRM['custom_fields']['Cliente']
|| ($contactCustomFields['Domicilio'] ?? '') != $data_CRM['custom_fields']['Domicilio']
@@ -1163,13 +1168,14 @@ class ClientCallBellAPI
|| ($contact['name'] ?? '') != $data_CRM['name']
) {
+ $log->appendLog("EJECUTANDO PATCH - Se detectaron cambios" . PHP_EOL);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data_CRM));
$response = curl_exec($ch);
- //$log->appendLog("Response Patch CallBell: " . $response . PHP_EOL);
+ $log->appendLog("Response Patch CallBell: " . $response . PHP_EOL);
curl_close($ch);
} else {
- //$log->appendLog("No hay cambios que actualizar " . PHP_EOL);
+ $log->appendLog("NO SE EJECUTA PATCH - No hay cambios que actualizar" . PHP_EOL);
curl_close($ch);
}
}
diff --git a/src/Plugin.php b/src/Plugin.php
index 4d2c686f..4d2b5cee 100755
--- a/src/Plugin.php
+++ b/src/Plugin.php
@@ -299,6 +299,9 @@ class Plugin
$result = json_encode($notification);
$this->logger->debug('Notification encodificado en JSON:' . $result . PHP_EOL);
+ // [NEW] Attempt to patch the payment with correct Stripe attribute if applicable
+ $this->pluginNotifierFacade->ensureStripePaymentAttribute($notification);
+
$payment_method_id = $notification->paymentData['methodId'];
$payment_method = '';
diff --git a/src/Service/MinioStorageService.php b/src/Service/MinioStorageService.php
old mode 100644
new mode 100755
diff --git a/src/Service/PaymentIntentService.php b/src/Service/PaymentIntentService.php
old mode 100644
new mode 100755
diff --git a/unms-swagger.json b/unms-swagger.json
old mode 100644
new mode 100755
diff --git a/unms.yaml b/unms.yaml
old mode 100644
new mode 100755
diff --git a/unmscrm.apib b/unmscrm.apib
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/CODE_OF_CONDUCT.md b/vendor/aws/aws-crt-php/CODE_OF_CONDUCT.md
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/LICENSE b/vendor/aws/aws-crt-php/LICENSE
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/NOTICE b/vendor/aws/aws-crt-php/NOTICE
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/README.md b/vendor/aws/aws-crt-php/README.md
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/composer.json b/vendor/aws/aws-crt-php/composer.json
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/AwsCredentials.php b/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/AwsCredentials.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/CredentialsProvider.php b/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/CredentialsProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/Signable.php b/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/Signable.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SignatureType.php b/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SignatureType.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SignedBodyHeaderType.php b/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SignedBodyHeaderType.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/Signing.php b/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/Signing.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SigningAlgorithm.php b/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SigningAlgorithm.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SigningConfigAWS.php b/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SigningConfigAWS.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SigningResult.php b/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/SigningResult.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/StaticCredentialsProvider.php b/vendor/aws/aws-crt-php/src/AWS/CRT/Auth/StaticCredentialsProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/CRT.php b/vendor/aws/aws-crt-php/src/AWS/CRT/CRT.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/HTTP/Headers.php b/vendor/aws/aws-crt-php/src/AWS/CRT/HTTP/Headers.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/HTTP/Message.php b/vendor/aws/aws-crt-php/src/AWS/CRT/HTTP/Message.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/HTTP/Request.php b/vendor/aws/aws-crt-php/src/AWS/CRT/HTTP/Request.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/HTTP/Response.php b/vendor/aws/aws-crt-php/src/AWS/CRT/HTTP/Response.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/IO/EventLoopGroup.php b/vendor/aws/aws-crt-php/src/AWS/CRT/IO/EventLoopGroup.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/IO/InputStream.php b/vendor/aws/aws-crt-php/src/AWS/CRT/IO/InputStream.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/Internal/Encoding.php b/vendor/aws/aws-crt-php/src/AWS/CRT/Internal/Encoding.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/Internal/Extension.php b/vendor/aws/aws-crt-php/src/AWS/CRT/Internal/Extension.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/Log.php b/vendor/aws/aws-crt-php/src/AWS/CRT/Log.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/NativeResource.php b/vendor/aws/aws-crt-php/src/AWS/CRT/NativeResource.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-crt-php/src/AWS/CRT/Options.php b/vendor/aws/aws-crt-php/src/AWS/CRT/Options.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/CODE_OF_CONDUCT.md b/vendor/aws/aws-sdk-php/CODE_OF_CONDUCT.md
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/CRT_INSTRUCTIONS.md b/vendor/aws/aws-sdk-php/CRT_INSTRUCTIONS.md
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/LICENSE b/vendor/aws/aws-sdk-php/LICENSE
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/NOTICE b/vendor/aws/aws-sdk-php/NOTICE
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/THIRD-PARTY-LICENSES b/vendor/aws/aws-sdk-php/THIRD-PARTY-LICENSES
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/composer.json b/vendor/aws/aws-sdk-php/composer.json
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ACMPCA/ACMPCAClient.php b/vendor/aws/aws-sdk-php/src/ACMPCA/ACMPCAClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ACMPCA/Exception/ACMPCAException.php b/vendor/aws/aws-sdk-php/src/ACMPCA/Exception/ACMPCAException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AIOps/AIOpsClient.php b/vendor/aws/aws-sdk-php/src/AIOps/AIOpsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AIOps/Exception/AIOpsException.php b/vendor/aws/aws-sdk-php/src/AIOps/Exception/AIOpsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ARCRegionSwitch/ARCRegionSwitchClient.php b/vendor/aws/aws-sdk-php/src/ARCRegionSwitch/ARCRegionSwitchClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ARCRegionSwitch/Exception/ARCRegionSwitchException.php b/vendor/aws/aws-sdk-php/src/ARCRegionSwitch/Exception/ARCRegionSwitchException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ARCZonalShift/ARCZonalShiftClient.php b/vendor/aws/aws-sdk-php/src/ARCZonalShift/ARCZonalShiftClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ARCZonalShift/Exception/ARCZonalShiftException.php b/vendor/aws/aws-sdk-php/src/ARCZonalShift/Exception/ARCZonalShiftException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AbstractConfigurationProvider.php b/vendor/aws/aws-sdk-php/src/AbstractConfigurationProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AccessAnalyzer/AccessAnalyzerClient.php b/vendor/aws/aws-sdk-php/src/AccessAnalyzer/AccessAnalyzerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AccessAnalyzer/Exception/AccessAnalyzerException.php b/vendor/aws/aws-sdk-php/src/AccessAnalyzer/Exception/AccessAnalyzerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Account/AccountClient.php b/vendor/aws/aws-sdk-php/src/Account/AccountClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Account/Exception/AccountException.php b/vendor/aws/aws-sdk-php/src/Account/Exception/AccountException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Acm/AcmClient.php b/vendor/aws/aws-sdk-php/src/Acm/AcmClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Acm/Exception/AcmException.php b/vendor/aws/aws-sdk-php/src/Acm/Exception/AcmException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Amplify/AmplifyClient.php b/vendor/aws/aws-sdk-php/src/Amplify/AmplifyClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Amplify/Exception/AmplifyException.php b/vendor/aws/aws-sdk-php/src/Amplify/Exception/AmplifyException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AmplifyBackend/AmplifyBackendClient.php b/vendor/aws/aws-sdk-php/src/AmplifyBackend/AmplifyBackendClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AmplifyBackend/Exception/AmplifyBackendException.php b/vendor/aws/aws-sdk-php/src/AmplifyBackend/Exception/AmplifyBackendException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AmplifyUIBuilder/AmplifyUIBuilderClient.php b/vendor/aws/aws-sdk-php/src/AmplifyUIBuilder/AmplifyUIBuilderClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AmplifyUIBuilder/Exception/AmplifyUIBuilderException.php b/vendor/aws/aws-sdk-php/src/AmplifyUIBuilder/Exception/AmplifyUIBuilderException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/AbstractModel.php b/vendor/aws/aws-sdk-php/src/Api/AbstractModel.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/ApiProvider.php b/vendor/aws/aws-sdk-php/src/Api/ApiProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/DateTimeResult.php b/vendor/aws/aws-sdk-php/src/Api/DateTimeResult.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/DocModel.php b/vendor/aws/aws-sdk-php/src/Api/DocModel.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/ErrorParser/AbstractErrorParser.php b/vendor/aws/aws-sdk-php/src/Api/ErrorParser/AbstractErrorParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/ErrorParser/JsonParserTrait.php b/vendor/aws/aws-sdk-php/src/Api/ErrorParser/JsonParserTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/ErrorParser/JsonRpcErrorParser.php b/vendor/aws/aws-sdk-php/src/Api/ErrorParser/JsonRpcErrorParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/ErrorParser/RestJsonErrorParser.php b/vendor/aws/aws-sdk-php/src/Api/ErrorParser/RestJsonErrorParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/ErrorParser/XmlErrorParser.php b/vendor/aws/aws-sdk-php/src/Api/ErrorParser/XmlErrorParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/ListShape.php b/vendor/aws/aws-sdk-php/src/Api/ListShape.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/MapShape.php b/vendor/aws/aws-sdk-php/src/Api/MapShape.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Operation.php b/vendor/aws/aws-sdk-php/src/Api/Operation.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Parser/AbstractParser.php b/vendor/aws/aws-sdk-php/src/Api/Parser/AbstractParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Parser/AbstractRestParser.php b/vendor/aws/aws-sdk-php/src/Api/Parser/AbstractRestParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Parser/Crc32ValidatingParser.php b/vendor/aws/aws-sdk-php/src/Api/Parser/Crc32ValidatingParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Parser/DecodingEventStreamIterator.php b/vendor/aws/aws-sdk-php/src/Api/Parser/DecodingEventStreamIterator.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Parser/EventParsingIterator.php b/vendor/aws/aws-sdk-php/src/Api/Parser/EventParsingIterator.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Parser/Exception/ParserException.php b/vendor/aws/aws-sdk-php/src/Api/Parser/Exception/ParserException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Parser/JsonParser.php b/vendor/aws/aws-sdk-php/src/Api/Parser/JsonParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Parser/JsonRpcParser.php b/vendor/aws/aws-sdk-php/src/Api/Parser/JsonRpcParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Parser/MetadataParserTrait.php b/vendor/aws/aws-sdk-php/src/Api/Parser/MetadataParserTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Parser/NonSeekableStreamDecodingEventStreamIterator.php b/vendor/aws/aws-sdk-php/src/Api/Parser/NonSeekableStreamDecodingEventStreamIterator.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Parser/PayloadParserTrait.php b/vendor/aws/aws-sdk-php/src/Api/Parser/PayloadParserTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Parser/QueryParser.php b/vendor/aws/aws-sdk-php/src/Api/Parser/QueryParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Parser/RestJsonParser.php b/vendor/aws/aws-sdk-php/src/Api/Parser/RestJsonParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Parser/RestXmlParser.php b/vendor/aws/aws-sdk-php/src/Api/Parser/RestXmlParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Parser/XmlParser.php b/vendor/aws/aws-sdk-php/src/Api/Parser/XmlParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Serializer/Ec2ParamBuilder.php b/vendor/aws/aws-sdk-php/src/Api/Serializer/Ec2ParamBuilder.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Serializer/JsonBody.php b/vendor/aws/aws-sdk-php/src/Api/Serializer/JsonBody.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Serializer/JsonRpcSerializer.php b/vendor/aws/aws-sdk-php/src/Api/Serializer/JsonRpcSerializer.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Serializer/QueryParamBuilder.php b/vendor/aws/aws-sdk-php/src/Api/Serializer/QueryParamBuilder.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Serializer/QuerySerializer.php b/vendor/aws/aws-sdk-php/src/Api/Serializer/QuerySerializer.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Serializer/RestJsonSerializer.php b/vendor/aws/aws-sdk-php/src/Api/Serializer/RestJsonSerializer.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Serializer/RestSerializer.php b/vendor/aws/aws-sdk-php/src/Api/Serializer/RestSerializer.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Serializer/RestXmlSerializer.php b/vendor/aws/aws-sdk-php/src/Api/Serializer/RestXmlSerializer.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Serializer/XmlBody.php b/vendor/aws/aws-sdk-php/src/Api/Serializer/XmlBody.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Service.php b/vendor/aws/aws-sdk-php/src/Api/Service.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Shape.php b/vendor/aws/aws-sdk-php/src/Api/Shape.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/ShapeMap.php b/vendor/aws/aws-sdk-php/src/Api/ShapeMap.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/StructureShape.php b/vendor/aws/aws-sdk-php/src/Api/StructureShape.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/SupportedProtocols.php b/vendor/aws/aws-sdk-php/src/Api/SupportedProtocols.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/TimestampShape.php b/vendor/aws/aws-sdk-php/src/Api/TimestampShape.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Api/Validator.php b/vendor/aws/aws-sdk-php/src/Api/Validator.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ApiGateway/ApiGatewayClient.php b/vendor/aws/aws-sdk-php/src/ApiGateway/ApiGatewayClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ApiGateway/Exception/ApiGatewayException.php b/vendor/aws/aws-sdk-php/src/ApiGateway/Exception/ApiGatewayException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ApiGatewayManagementApi/ApiGatewayManagementApiClient.php b/vendor/aws/aws-sdk-php/src/ApiGatewayManagementApi/ApiGatewayManagementApiClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ApiGatewayManagementApi/Exception/ApiGatewayManagementApiException.php b/vendor/aws/aws-sdk-php/src/ApiGatewayManagementApi/Exception/ApiGatewayManagementApiException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ApiGatewayV2/ApiGatewayV2Client.php b/vendor/aws/aws-sdk-php/src/ApiGatewayV2/ApiGatewayV2Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ApiGatewayV2/Exception/ApiGatewayV2Exception.php b/vendor/aws/aws-sdk-php/src/ApiGatewayV2/Exception/ApiGatewayV2Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AppConfig/AppConfigClient.php b/vendor/aws/aws-sdk-php/src/AppConfig/AppConfigClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AppConfig/Exception/AppConfigException.php b/vendor/aws/aws-sdk-php/src/AppConfig/Exception/AppConfigException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AppConfigData/AppConfigDataClient.php b/vendor/aws/aws-sdk-php/src/AppConfigData/AppConfigDataClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AppConfigData/Exception/AppConfigDataException.php b/vendor/aws/aws-sdk-php/src/AppConfigData/Exception/AppConfigDataException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AppFabric/AppFabricClient.php b/vendor/aws/aws-sdk-php/src/AppFabric/AppFabricClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AppFabric/Exception/AppFabricException.php b/vendor/aws/aws-sdk-php/src/AppFabric/Exception/AppFabricException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AppIntegrationsService/AppIntegrationsServiceClient.php b/vendor/aws/aws-sdk-php/src/AppIntegrationsService/AppIntegrationsServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AppIntegrationsService/Exception/AppIntegrationsServiceException.php b/vendor/aws/aws-sdk-php/src/AppIntegrationsService/Exception/AppIntegrationsServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AppMesh/AppMeshClient.php b/vendor/aws/aws-sdk-php/src/AppMesh/AppMeshClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AppMesh/Exception/AppMeshException.php b/vendor/aws/aws-sdk-php/src/AppMesh/Exception/AppMeshException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AppRegistry/AppRegistryClient.php b/vendor/aws/aws-sdk-php/src/AppRegistry/AppRegistryClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AppRegistry/Exception/AppRegistryException.php b/vendor/aws/aws-sdk-php/src/AppRegistry/Exception/AppRegistryException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AppRunner/AppRunnerClient.php b/vendor/aws/aws-sdk-php/src/AppRunner/AppRunnerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AppRunner/Exception/AppRunnerException.php b/vendor/aws/aws-sdk-php/src/AppRunner/Exception/AppRunnerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AppSync/AppSyncClient.php b/vendor/aws/aws-sdk-php/src/AppSync/AppSyncClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AppSync/Exception/AppSyncException.php b/vendor/aws/aws-sdk-php/src/AppSync/Exception/AppSyncException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Appflow/AppflowClient.php b/vendor/aws/aws-sdk-php/src/Appflow/AppflowClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Appflow/Exception/AppflowException.php b/vendor/aws/aws-sdk-php/src/Appflow/Exception/AppflowException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ApplicationAutoScaling/ApplicationAutoScalingClient.php b/vendor/aws/aws-sdk-php/src/ApplicationAutoScaling/ApplicationAutoScalingClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ApplicationAutoScaling/Exception/ApplicationAutoScalingException.php b/vendor/aws/aws-sdk-php/src/ApplicationAutoScaling/Exception/ApplicationAutoScalingException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ApplicationCostProfiler/ApplicationCostProfilerClient.php b/vendor/aws/aws-sdk-php/src/ApplicationCostProfiler/ApplicationCostProfilerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ApplicationCostProfiler/Exception/ApplicationCostProfilerException.php b/vendor/aws/aws-sdk-php/src/ApplicationCostProfiler/Exception/ApplicationCostProfilerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ApplicationDiscoveryService/ApplicationDiscoveryServiceClient.php b/vendor/aws/aws-sdk-php/src/ApplicationDiscoveryService/ApplicationDiscoveryServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ApplicationDiscoveryService/Exception/ApplicationDiscoveryServiceException.php b/vendor/aws/aws-sdk-php/src/ApplicationDiscoveryService/Exception/ApplicationDiscoveryServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ApplicationInsights/ApplicationInsightsClient.php b/vendor/aws/aws-sdk-php/src/ApplicationInsights/ApplicationInsightsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ApplicationInsights/Exception/ApplicationInsightsException.php b/vendor/aws/aws-sdk-php/src/ApplicationInsights/Exception/ApplicationInsightsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ApplicationSignals/ApplicationSignalsClient.php b/vendor/aws/aws-sdk-php/src/ApplicationSignals/ApplicationSignalsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ApplicationSignals/Exception/ApplicationSignalsException.php b/vendor/aws/aws-sdk-php/src/ApplicationSignals/Exception/ApplicationSignalsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Appstream/AppstreamClient.php b/vendor/aws/aws-sdk-php/src/Appstream/AppstreamClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Appstream/Exception/AppstreamException.php b/vendor/aws/aws-sdk-php/src/Appstream/Exception/AppstreamException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Arn/AccessPointArn.php b/vendor/aws/aws-sdk-php/src/Arn/AccessPointArn.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Arn/AccessPointArnInterface.php b/vendor/aws/aws-sdk-php/src/Arn/AccessPointArnInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Arn/Arn.php b/vendor/aws/aws-sdk-php/src/Arn/Arn.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Arn/ArnInterface.php b/vendor/aws/aws-sdk-php/src/Arn/ArnInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Arn/ArnParser.php b/vendor/aws/aws-sdk-php/src/Arn/ArnParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Arn/Exception/InvalidArnException.php b/vendor/aws/aws-sdk-php/src/Arn/Exception/InvalidArnException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Arn/ObjectLambdaAccessPointArn.php b/vendor/aws/aws-sdk-php/src/Arn/ObjectLambdaAccessPointArn.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Arn/ResourceTypeAndIdTrait.php b/vendor/aws/aws-sdk-php/src/Arn/ResourceTypeAndIdTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Arn/S3/AccessPointArn.php b/vendor/aws/aws-sdk-php/src/Arn/S3/AccessPointArn.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Arn/S3/BucketArnInterface.php b/vendor/aws/aws-sdk-php/src/Arn/S3/BucketArnInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Arn/S3/MultiRegionAccessPointArn.php b/vendor/aws/aws-sdk-php/src/Arn/S3/MultiRegionAccessPointArn.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Arn/S3/OutpostsAccessPointArn.php b/vendor/aws/aws-sdk-php/src/Arn/S3/OutpostsAccessPointArn.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Arn/S3/OutpostsArnInterface.php b/vendor/aws/aws-sdk-php/src/Arn/S3/OutpostsArnInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Arn/S3/OutpostsBucketArn.php b/vendor/aws/aws-sdk-php/src/Arn/S3/OutpostsBucketArn.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Artifact/ArtifactClient.php b/vendor/aws/aws-sdk-php/src/Artifact/ArtifactClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Artifact/Exception/ArtifactException.php b/vendor/aws/aws-sdk-php/src/Artifact/Exception/ArtifactException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Athena/AthenaClient.php b/vendor/aws/aws-sdk-php/src/Athena/AthenaClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Athena/Exception/AthenaException.php b/vendor/aws/aws-sdk-php/src/Athena/Exception/AthenaException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AuditManager/AuditManagerClient.php b/vendor/aws/aws-sdk-php/src/AuditManager/AuditManagerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AuditManager/Exception/AuditManagerException.php b/vendor/aws/aws-sdk-php/src/AuditManager/Exception/AuditManagerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AugmentedAIRuntime/AugmentedAIRuntimeClient.php b/vendor/aws/aws-sdk-php/src/AugmentedAIRuntime/AugmentedAIRuntimeClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AugmentedAIRuntime/Exception/AugmentedAIRuntimeException.php b/vendor/aws/aws-sdk-php/src/AugmentedAIRuntime/Exception/AugmentedAIRuntimeException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Auth/AuthSchemeResolver.php b/vendor/aws/aws-sdk-php/src/Auth/AuthSchemeResolver.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Auth/AuthSchemeResolverInterface.php b/vendor/aws/aws-sdk-php/src/Auth/AuthSchemeResolverInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Auth/AuthSelectionMiddleware.php b/vendor/aws/aws-sdk-php/src/Auth/AuthSelectionMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Auth/Exception/UnresolvedAuthSchemeException.php b/vendor/aws/aws-sdk-php/src/Auth/Exception/UnresolvedAuthSchemeException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AutoScaling/AutoScalingClient.php b/vendor/aws/aws-sdk-php/src/AutoScaling/AutoScalingClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AutoScaling/Exception/AutoScalingException.php b/vendor/aws/aws-sdk-php/src/AutoScaling/Exception/AutoScalingException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AutoScalingPlans/AutoScalingPlansClient.php b/vendor/aws/aws-sdk-php/src/AutoScalingPlans/AutoScalingPlansClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AutoScalingPlans/Exception/AutoScalingPlansException.php b/vendor/aws/aws-sdk-php/src/AutoScalingPlans/Exception/AutoScalingPlansException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AwsClient.php b/vendor/aws/aws-sdk-php/src/AwsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AwsClientInterface.php b/vendor/aws/aws-sdk-php/src/AwsClientInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/AwsClientTrait.php b/vendor/aws/aws-sdk-php/src/AwsClientTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/B2bi/B2biClient.php b/vendor/aws/aws-sdk-php/src/B2bi/B2biClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/B2bi/Exception/B2biException.php b/vendor/aws/aws-sdk-php/src/B2bi/Exception/B2biException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BCMDashboards/BCMDashboardsClient.php b/vendor/aws/aws-sdk-php/src/BCMDashboards/BCMDashboardsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BCMDashboards/Exception/BCMDashboardsException.php b/vendor/aws/aws-sdk-php/src/BCMDashboards/Exception/BCMDashboardsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BCMDataExports/BCMDataExportsClient.php b/vendor/aws/aws-sdk-php/src/BCMDataExports/BCMDataExportsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BCMDataExports/Exception/BCMDataExportsException.php b/vendor/aws/aws-sdk-php/src/BCMDataExports/Exception/BCMDataExportsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BCMPricingCalculator/BCMPricingCalculatorClient.php b/vendor/aws/aws-sdk-php/src/BCMPricingCalculator/BCMPricingCalculatorClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BCMPricingCalculator/Exception/BCMPricingCalculatorException.php b/vendor/aws/aws-sdk-php/src/BCMPricingCalculator/Exception/BCMPricingCalculatorException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BCMRecommendedActions/BCMRecommendedActionsClient.php b/vendor/aws/aws-sdk-php/src/BCMRecommendedActions/BCMRecommendedActionsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BCMRecommendedActions/Exception/BCMRecommendedActionsException.php b/vendor/aws/aws-sdk-php/src/BCMRecommendedActions/Exception/BCMRecommendedActionsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Backup/BackupClient.php b/vendor/aws/aws-sdk-php/src/Backup/BackupClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Backup/Exception/BackupException.php b/vendor/aws/aws-sdk-php/src/Backup/Exception/BackupException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BackupGateway/BackupGatewayClient.php b/vendor/aws/aws-sdk-php/src/BackupGateway/BackupGatewayClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BackupGateway/Exception/BackupGatewayException.php b/vendor/aws/aws-sdk-php/src/BackupGateway/Exception/BackupGatewayException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BackupSearch/BackupSearchClient.php b/vendor/aws/aws-sdk-php/src/BackupSearch/BackupSearchClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BackupSearch/Exception/BackupSearchException.php b/vendor/aws/aws-sdk-php/src/BackupSearch/Exception/BackupSearchException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Batch/BatchClient.php b/vendor/aws/aws-sdk-php/src/Batch/BatchClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Batch/Exception/BatchException.php b/vendor/aws/aws-sdk-php/src/Batch/Exception/BatchException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Bedrock/BedrockClient.php b/vendor/aws/aws-sdk-php/src/Bedrock/BedrockClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Bedrock/Exception/BedrockException.php b/vendor/aws/aws-sdk-php/src/Bedrock/Exception/BedrockException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BedrockAgent/BedrockAgentClient.php b/vendor/aws/aws-sdk-php/src/BedrockAgent/BedrockAgentClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BedrockAgent/Exception/BedrockAgentException.php b/vendor/aws/aws-sdk-php/src/BedrockAgent/Exception/BedrockAgentException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BedrockAgentCore/BedrockAgentCoreClient.php b/vendor/aws/aws-sdk-php/src/BedrockAgentCore/BedrockAgentCoreClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BedrockAgentCore/Exception/BedrockAgentCoreException.php b/vendor/aws/aws-sdk-php/src/BedrockAgentCore/Exception/BedrockAgentCoreException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BedrockAgentCoreControl/BedrockAgentCoreControlClient.php b/vendor/aws/aws-sdk-php/src/BedrockAgentCoreControl/BedrockAgentCoreControlClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BedrockAgentCoreControl/Exception/BedrockAgentCoreControlException.php b/vendor/aws/aws-sdk-php/src/BedrockAgentCoreControl/Exception/BedrockAgentCoreControlException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BedrockAgentRuntime/BedrockAgentRuntimeClient.php b/vendor/aws/aws-sdk-php/src/BedrockAgentRuntime/BedrockAgentRuntimeClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BedrockAgentRuntime/Exception/BedrockAgentRuntimeException.php b/vendor/aws/aws-sdk-php/src/BedrockAgentRuntime/Exception/BedrockAgentRuntimeException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BedrockDataAutomation/BedrockDataAutomationClient.php b/vendor/aws/aws-sdk-php/src/BedrockDataAutomation/BedrockDataAutomationClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BedrockDataAutomation/Exception/BedrockDataAutomationException.php b/vendor/aws/aws-sdk-php/src/BedrockDataAutomation/Exception/BedrockDataAutomationException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BedrockDataAutomationRuntime/BedrockDataAutomationRuntimeClient.php b/vendor/aws/aws-sdk-php/src/BedrockDataAutomationRuntime/BedrockDataAutomationRuntimeClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BedrockDataAutomationRuntime/Exception/BedrockDataAutomationRuntimeException.php b/vendor/aws/aws-sdk-php/src/BedrockDataAutomationRuntime/Exception/BedrockDataAutomationRuntimeException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BedrockRuntime/BedrockRuntimeClient.php b/vendor/aws/aws-sdk-php/src/BedrockRuntime/BedrockRuntimeClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BedrockRuntime/Exception/BedrockRuntimeException.php b/vendor/aws/aws-sdk-php/src/BedrockRuntime/Exception/BedrockRuntimeException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Billing/BillingClient.php b/vendor/aws/aws-sdk-php/src/Billing/BillingClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Billing/Exception/BillingException.php b/vendor/aws/aws-sdk-php/src/Billing/Exception/BillingException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BillingConductor/BillingConductorClient.php b/vendor/aws/aws-sdk-php/src/BillingConductor/BillingConductorClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/BillingConductor/Exception/BillingConductorException.php b/vendor/aws/aws-sdk-php/src/BillingConductor/Exception/BillingConductorException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Braket/BraketClient.php b/vendor/aws/aws-sdk-php/src/Braket/BraketClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Braket/Exception/BraketException.php b/vendor/aws/aws-sdk-php/src/Braket/Exception/BraketException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Budgets/BudgetsClient.php b/vendor/aws/aws-sdk-php/src/Budgets/BudgetsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Budgets/Exception/BudgetsException.php b/vendor/aws/aws-sdk-php/src/Budgets/Exception/BudgetsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CacheInterface.php b/vendor/aws/aws-sdk-php/src/CacheInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Chatbot/ChatbotClient.php b/vendor/aws/aws-sdk-php/src/Chatbot/ChatbotClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Chatbot/Exception/ChatbotException.php b/vendor/aws/aws-sdk-php/src/Chatbot/Exception/ChatbotException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Chime/ChimeClient.php b/vendor/aws/aws-sdk-php/src/Chime/ChimeClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Chime/Exception/ChimeException.php b/vendor/aws/aws-sdk-php/src/Chime/Exception/ChimeException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ChimeSDKIdentity/ChimeSDKIdentityClient.php b/vendor/aws/aws-sdk-php/src/ChimeSDKIdentity/ChimeSDKIdentityClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ChimeSDKIdentity/Exception/ChimeSDKIdentityException.php b/vendor/aws/aws-sdk-php/src/ChimeSDKIdentity/Exception/ChimeSDKIdentityException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ChimeSDKMediaPipelines/ChimeSDKMediaPipelinesClient.php b/vendor/aws/aws-sdk-php/src/ChimeSDKMediaPipelines/ChimeSDKMediaPipelinesClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ChimeSDKMediaPipelines/Exception/ChimeSDKMediaPipelinesException.php b/vendor/aws/aws-sdk-php/src/ChimeSDKMediaPipelines/Exception/ChimeSDKMediaPipelinesException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ChimeSDKMeetings/ChimeSDKMeetingsClient.php b/vendor/aws/aws-sdk-php/src/ChimeSDKMeetings/ChimeSDKMeetingsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ChimeSDKMeetings/Exception/ChimeSDKMeetingsException.php b/vendor/aws/aws-sdk-php/src/ChimeSDKMeetings/Exception/ChimeSDKMeetingsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ChimeSDKMessaging/ChimeSDKMessagingClient.php b/vendor/aws/aws-sdk-php/src/ChimeSDKMessaging/ChimeSDKMessagingClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ChimeSDKMessaging/Exception/ChimeSDKMessagingException.php b/vendor/aws/aws-sdk-php/src/ChimeSDKMessaging/Exception/ChimeSDKMessagingException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ChimeSDKVoice/ChimeSDKVoiceClient.php b/vendor/aws/aws-sdk-php/src/ChimeSDKVoice/ChimeSDKVoiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ChimeSDKVoice/Exception/ChimeSDKVoiceException.php b/vendor/aws/aws-sdk-php/src/ChimeSDKVoice/Exception/ChimeSDKVoiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CleanRooms/CleanRoomsClient.php b/vendor/aws/aws-sdk-php/src/CleanRooms/CleanRoomsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CleanRooms/Exception/CleanRoomsException.php b/vendor/aws/aws-sdk-php/src/CleanRooms/Exception/CleanRoomsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CleanRoomsML/CleanRoomsMLClient.php b/vendor/aws/aws-sdk-php/src/CleanRoomsML/CleanRoomsMLClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CleanRoomsML/Exception/CleanRoomsMLException.php b/vendor/aws/aws-sdk-php/src/CleanRoomsML/Exception/CleanRoomsMLException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ClientResolver.php b/vendor/aws/aws-sdk-php/src/ClientResolver.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/AbstractMonitoringMiddleware.php b/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/AbstractMonitoringMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/ApiCallAttemptMonitoringMiddleware.php b/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/ApiCallAttemptMonitoringMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/ApiCallMonitoringMiddleware.php b/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/ApiCallMonitoringMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/Configuration.php b/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/Configuration.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/ConfigurationInterface.php b/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/ConfigurationInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/ConfigurationProvider.php b/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/ConfigurationProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/Exception/ConfigurationException.php b/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/Exception/ConfigurationException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/MonitoringMiddlewareInterface.php b/vendor/aws/aws-sdk-php/src/ClientSideMonitoring/MonitoringMiddlewareInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Cloud9/Cloud9Client.php b/vendor/aws/aws-sdk-php/src/Cloud9/Cloud9Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Cloud9/Exception/Cloud9Exception.php b/vendor/aws/aws-sdk-php/src/Cloud9/Exception/Cloud9Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudControlApi/CloudControlApiClient.php b/vendor/aws/aws-sdk-php/src/CloudControlApi/CloudControlApiClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudControlApi/Exception/CloudControlApiException.php b/vendor/aws/aws-sdk-php/src/CloudControlApi/Exception/CloudControlApiException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudDirectory/CloudDirectoryClient.php b/vendor/aws/aws-sdk-php/src/CloudDirectory/CloudDirectoryClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudDirectory/Exception/CloudDirectoryException.php b/vendor/aws/aws-sdk-php/src/CloudDirectory/Exception/CloudDirectoryException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudFormation/CloudFormationClient.php b/vendor/aws/aws-sdk-php/src/CloudFormation/CloudFormationClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudFormation/Exception/CloudFormationException.php b/vendor/aws/aws-sdk-php/src/CloudFormation/Exception/CloudFormationException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudFront/CloudFrontClient.php b/vendor/aws/aws-sdk-php/src/CloudFront/CloudFrontClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudFront/CookieSigner.php b/vendor/aws/aws-sdk-php/src/CloudFront/CookieSigner.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudFront/Exception/CloudFrontException.php b/vendor/aws/aws-sdk-php/src/CloudFront/Exception/CloudFrontException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudFront/Signer.php b/vendor/aws/aws-sdk-php/src/CloudFront/Signer.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudFront/UrlSigner.php b/vendor/aws/aws-sdk-php/src/CloudFront/UrlSigner.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudFrontKeyValueStore/CloudFrontKeyValueStoreClient.php b/vendor/aws/aws-sdk-php/src/CloudFrontKeyValueStore/CloudFrontKeyValueStoreClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudFrontKeyValueStore/Exception/CloudFrontKeyValueStoreException.php b/vendor/aws/aws-sdk-php/src/CloudFrontKeyValueStore/Exception/CloudFrontKeyValueStoreException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudHSMV2/CloudHSMV2Client.php b/vendor/aws/aws-sdk-php/src/CloudHSMV2/CloudHSMV2Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudHSMV2/Exception/CloudHSMV2Exception.php b/vendor/aws/aws-sdk-php/src/CloudHSMV2/Exception/CloudHSMV2Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudHsm/CloudHsmClient.php b/vendor/aws/aws-sdk-php/src/CloudHsm/CloudHsmClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudHsm/Exception/CloudHsmException.php b/vendor/aws/aws-sdk-php/src/CloudHsm/Exception/CloudHsmException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudSearch/CloudSearchClient.php b/vendor/aws/aws-sdk-php/src/CloudSearch/CloudSearchClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudSearch/Exception/CloudSearchException.php b/vendor/aws/aws-sdk-php/src/CloudSearch/Exception/CloudSearchException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudSearchDomain/CloudSearchDomainClient.php b/vendor/aws/aws-sdk-php/src/CloudSearchDomain/CloudSearchDomainClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudSearchDomain/Exception/CloudSearchDomainException.php b/vendor/aws/aws-sdk-php/src/CloudSearchDomain/Exception/CloudSearchDomainException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudTrail/CloudTrailClient.php b/vendor/aws/aws-sdk-php/src/CloudTrail/CloudTrailClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudTrail/Exception/CloudTrailException.php b/vendor/aws/aws-sdk-php/src/CloudTrail/Exception/CloudTrailException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudTrail/LogFileIterator.php b/vendor/aws/aws-sdk-php/src/CloudTrail/LogFileIterator.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudTrail/LogFileReader.php b/vendor/aws/aws-sdk-php/src/CloudTrail/LogFileReader.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudTrail/LogRecordIterator.php b/vendor/aws/aws-sdk-php/src/CloudTrail/LogRecordIterator.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudTrailData/CloudTrailDataClient.php b/vendor/aws/aws-sdk-php/src/CloudTrailData/CloudTrailDataClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudTrailData/Exception/CloudTrailDataException.php b/vendor/aws/aws-sdk-php/src/CloudTrailData/Exception/CloudTrailDataException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudWatch/CloudWatchClient.php b/vendor/aws/aws-sdk-php/src/CloudWatch/CloudWatchClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudWatch/Exception/CloudWatchException.php b/vendor/aws/aws-sdk-php/src/CloudWatch/Exception/CloudWatchException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudWatchEvents/CloudWatchEventsClient.php b/vendor/aws/aws-sdk-php/src/CloudWatchEvents/CloudWatchEventsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudWatchEvents/Exception/CloudWatchEventsException.php b/vendor/aws/aws-sdk-php/src/CloudWatchEvents/Exception/CloudWatchEventsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudWatchEvidently/CloudWatchEvidentlyClient.php b/vendor/aws/aws-sdk-php/src/CloudWatchEvidently/CloudWatchEvidentlyClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudWatchEvidently/Exception/CloudWatchEvidentlyException.php b/vendor/aws/aws-sdk-php/src/CloudWatchEvidently/Exception/CloudWatchEvidentlyException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudWatchLogs/CloudWatchLogsClient.php b/vendor/aws/aws-sdk-php/src/CloudWatchLogs/CloudWatchLogsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudWatchLogs/Exception/CloudWatchLogsException.php b/vendor/aws/aws-sdk-php/src/CloudWatchLogs/Exception/CloudWatchLogsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudWatchRUM/CloudWatchRUMClient.php b/vendor/aws/aws-sdk-php/src/CloudWatchRUM/CloudWatchRUMClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CloudWatchRUM/Exception/CloudWatchRUMException.php b/vendor/aws/aws-sdk-php/src/CloudWatchRUM/Exception/CloudWatchRUMException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeArtifact/CodeArtifactClient.php b/vendor/aws/aws-sdk-php/src/CodeArtifact/CodeArtifactClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeArtifact/Exception/CodeArtifactException.php b/vendor/aws/aws-sdk-php/src/CodeArtifact/Exception/CodeArtifactException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeBuild/CodeBuildClient.php b/vendor/aws/aws-sdk-php/src/CodeBuild/CodeBuildClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeBuild/Exception/CodeBuildException.php b/vendor/aws/aws-sdk-php/src/CodeBuild/Exception/CodeBuildException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeCatalyst/CodeCatalystClient.php b/vendor/aws/aws-sdk-php/src/CodeCatalyst/CodeCatalystClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeCatalyst/Exception/CodeCatalystException.php b/vendor/aws/aws-sdk-php/src/CodeCatalyst/Exception/CodeCatalystException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeCommit/CodeCommitClient.php b/vendor/aws/aws-sdk-php/src/CodeCommit/CodeCommitClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeCommit/Exception/CodeCommitException.php b/vendor/aws/aws-sdk-php/src/CodeCommit/Exception/CodeCommitException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeConnections/CodeConnectionsClient.php b/vendor/aws/aws-sdk-php/src/CodeConnections/CodeConnectionsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeConnections/Exception/CodeConnectionsException.php b/vendor/aws/aws-sdk-php/src/CodeConnections/Exception/CodeConnectionsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeDeploy/CodeDeployClient.php b/vendor/aws/aws-sdk-php/src/CodeDeploy/CodeDeployClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeDeploy/Exception/CodeDeployException.php b/vendor/aws/aws-sdk-php/src/CodeDeploy/Exception/CodeDeployException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeGuruProfiler/CodeGuruProfilerClient.php b/vendor/aws/aws-sdk-php/src/CodeGuruProfiler/CodeGuruProfilerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeGuruProfiler/Exception/CodeGuruProfilerException.php b/vendor/aws/aws-sdk-php/src/CodeGuruProfiler/Exception/CodeGuruProfilerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeGuruReviewer/CodeGuruReviewerClient.php b/vendor/aws/aws-sdk-php/src/CodeGuruReviewer/CodeGuruReviewerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeGuruReviewer/Exception/CodeGuruReviewerException.php b/vendor/aws/aws-sdk-php/src/CodeGuruReviewer/Exception/CodeGuruReviewerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeGuruSecurity/CodeGuruSecurityClient.php b/vendor/aws/aws-sdk-php/src/CodeGuruSecurity/CodeGuruSecurityClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeGuruSecurity/Exception/CodeGuruSecurityException.php b/vendor/aws/aws-sdk-php/src/CodeGuruSecurity/Exception/CodeGuruSecurityException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodePipeline/CodePipelineClient.php b/vendor/aws/aws-sdk-php/src/CodePipeline/CodePipelineClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodePipeline/Exception/CodePipelineException.php b/vendor/aws/aws-sdk-php/src/CodePipeline/Exception/CodePipelineException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeStarNotifications/CodeStarNotificationsClient.php b/vendor/aws/aws-sdk-php/src/CodeStarNotifications/CodeStarNotificationsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeStarNotifications/Exception/CodeStarNotificationsException.php b/vendor/aws/aws-sdk-php/src/CodeStarNotifications/Exception/CodeStarNotificationsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeStarconnections/CodeStarconnectionsClient.php b/vendor/aws/aws-sdk-php/src/CodeStarconnections/CodeStarconnectionsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CodeStarconnections/Exception/CodeStarconnectionsException.php b/vendor/aws/aws-sdk-php/src/CodeStarconnections/Exception/CodeStarconnectionsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CognitoIdentity/CognitoIdentityClient.php b/vendor/aws/aws-sdk-php/src/CognitoIdentity/CognitoIdentityClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CognitoIdentity/CognitoIdentityProvider.php b/vendor/aws/aws-sdk-php/src/CognitoIdentity/CognitoIdentityProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CognitoIdentity/Exception/CognitoIdentityException.php b/vendor/aws/aws-sdk-php/src/CognitoIdentity/Exception/CognitoIdentityException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CognitoIdentityProvider/CognitoIdentityProviderClient.php b/vendor/aws/aws-sdk-php/src/CognitoIdentityProvider/CognitoIdentityProviderClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CognitoIdentityProvider/Exception/CognitoIdentityProviderException.php b/vendor/aws/aws-sdk-php/src/CognitoIdentityProvider/Exception/CognitoIdentityProviderException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CognitoSync/CognitoSyncClient.php b/vendor/aws/aws-sdk-php/src/CognitoSync/CognitoSyncClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CognitoSync/Exception/CognitoSyncException.php b/vendor/aws/aws-sdk-php/src/CognitoSync/Exception/CognitoSyncException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Command.php b/vendor/aws/aws-sdk-php/src/Command.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CommandInterface.php b/vendor/aws/aws-sdk-php/src/CommandInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CommandPool.php b/vendor/aws/aws-sdk-php/src/CommandPool.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Comprehend/ComprehendClient.php b/vendor/aws/aws-sdk-php/src/Comprehend/ComprehendClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Comprehend/Exception/ComprehendException.php b/vendor/aws/aws-sdk-php/src/Comprehend/Exception/ComprehendException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ComprehendMedical/ComprehendMedicalClient.php b/vendor/aws/aws-sdk-php/src/ComprehendMedical/ComprehendMedicalClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ComprehendMedical/Exception/ComprehendMedicalException.php b/vendor/aws/aws-sdk-php/src/ComprehendMedical/Exception/ComprehendMedicalException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ComputeOptimizer/ComputeOptimizerClient.php b/vendor/aws/aws-sdk-php/src/ComputeOptimizer/ComputeOptimizerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ComputeOptimizer/Exception/ComputeOptimizerException.php b/vendor/aws/aws-sdk-php/src/ComputeOptimizer/Exception/ComputeOptimizerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ComputeOptimizerAutomation/ComputeOptimizerAutomationClient.php b/vendor/aws/aws-sdk-php/src/ComputeOptimizerAutomation/ComputeOptimizerAutomationClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ComputeOptimizerAutomation/Exception/ComputeOptimizerAutomationException.php b/vendor/aws/aws-sdk-php/src/ComputeOptimizerAutomation/Exception/ComputeOptimizerAutomationException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ConfigService/ConfigServiceClient.php b/vendor/aws/aws-sdk-php/src/ConfigService/ConfigServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ConfigService/Exception/ConfigServiceException.php b/vendor/aws/aws-sdk-php/src/ConfigService/Exception/ConfigServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Configuration/ConfigurationResolver.php b/vendor/aws/aws-sdk-php/src/Configuration/ConfigurationResolver.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ConfigurationProviderInterface.php b/vendor/aws/aws-sdk-php/src/ConfigurationProviderInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Connect/ConnectClient.php b/vendor/aws/aws-sdk-php/src/Connect/ConnectClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Connect/Exception/ConnectException.php b/vendor/aws/aws-sdk-php/src/Connect/Exception/ConnectException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ConnectCampaignService/ConnectCampaignServiceClient.php b/vendor/aws/aws-sdk-php/src/ConnectCampaignService/ConnectCampaignServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ConnectCampaignService/Exception/ConnectCampaignServiceException.php b/vendor/aws/aws-sdk-php/src/ConnectCampaignService/Exception/ConnectCampaignServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ConnectCampaignsV2/ConnectCampaignsV2Client.php b/vendor/aws/aws-sdk-php/src/ConnectCampaignsV2/ConnectCampaignsV2Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ConnectCampaignsV2/Exception/ConnectCampaignsV2Exception.php b/vendor/aws/aws-sdk-php/src/ConnectCampaignsV2/Exception/ConnectCampaignsV2Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ConnectCases/ConnectCasesClient.php b/vendor/aws/aws-sdk-php/src/ConnectCases/ConnectCasesClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ConnectCases/Exception/ConnectCasesException.php b/vendor/aws/aws-sdk-php/src/ConnectCases/Exception/ConnectCasesException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ConnectContactLens/ConnectContactLensClient.php b/vendor/aws/aws-sdk-php/src/ConnectContactLens/ConnectContactLensClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ConnectContactLens/Exception/ConnectContactLensException.php b/vendor/aws/aws-sdk-php/src/ConnectContactLens/Exception/ConnectContactLensException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ConnectParticipant/ConnectParticipantClient.php b/vendor/aws/aws-sdk-php/src/ConnectParticipant/ConnectParticipantClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ConnectParticipant/Exception/ConnectParticipantException.php b/vendor/aws/aws-sdk-php/src/ConnectParticipant/Exception/ConnectParticipantException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ConnectWisdomService/ConnectWisdomServiceClient.php b/vendor/aws/aws-sdk-php/src/ConnectWisdomService/ConnectWisdomServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ConnectWisdomService/Exception/ConnectWisdomServiceException.php b/vendor/aws/aws-sdk-php/src/ConnectWisdomService/Exception/ConnectWisdomServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ControlCatalog/ControlCatalogClient.php b/vendor/aws/aws-sdk-php/src/ControlCatalog/ControlCatalogClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ControlCatalog/Exception/ControlCatalogException.php b/vendor/aws/aws-sdk-php/src/ControlCatalog/Exception/ControlCatalogException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ControlTower/ControlTowerClient.php b/vendor/aws/aws-sdk-php/src/ControlTower/ControlTowerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ControlTower/Exception/ControlTowerException.php b/vendor/aws/aws-sdk-php/src/ControlTower/Exception/ControlTowerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CostExplorer/CostExplorerClient.php b/vendor/aws/aws-sdk-php/src/CostExplorer/CostExplorerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CostExplorer/Exception/CostExplorerException.php b/vendor/aws/aws-sdk-php/src/CostExplorer/Exception/CostExplorerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CostOptimizationHub/CostOptimizationHubClient.php b/vendor/aws/aws-sdk-php/src/CostOptimizationHub/CostOptimizationHubClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CostOptimizationHub/Exception/CostOptimizationHubException.php b/vendor/aws/aws-sdk-php/src/CostOptimizationHub/Exception/CostOptimizationHubException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CostandUsageReportService/CostandUsageReportServiceClient.php b/vendor/aws/aws-sdk-php/src/CostandUsageReportService/CostandUsageReportServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CostandUsageReportService/Exception/CostandUsageReportServiceException.php b/vendor/aws/aws-sdk-php/src/CostandUsageReportService/Exception/CostandUsageReportServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Credentials/AssumeRoleCredentialProvider.php b/vendor/aws/aws-sdk-php/src/Credentials/AssumeRoleCredentialProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Credentials/AssumeRoleWithWebIdentityCredentialProvider.php b/vendor/aws/aws-sdk-php/src/Credentials/AssumeRoleWithWebIdentityCredentialProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Credentials/CredentialProvider.php b/vendor/aws/aws-sdk-php/src/Credentials/CredentialProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Credentials/CredentialSources.php b/vendor/aws/aws-sdk-php/src/Credentials/CredentialSources.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Credentials/Credentials.php b/vendor/aws/aws-sdk-php/src/Credentials/Credentials.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Credentials/CredentialsInterface.php b/vendor/aws/aws-sdk-php/src/Credentials/CredentialsInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Credentials/CredentialsUtils.php b/vendor/aws/aws-sdk-php/src/Credentials/CredentialsUtils.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Credentials/EcsCredentialProvider.php b/vendor/aws/aws-sdk-php/src/Credentials/EcsCredentialProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Credentials/InstanceProfileProvider.php b/vendor/aws/aws-sdk-php/src/Credentials/InstanceProfileProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Credentials/LoginCredentialProvider.php b/vendor/aws/aws-sdk-php/src/Credentials/LoginCredentialProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/AbstractCryptoClient.php b/vendor/aws/aws-sdk-php/src/Crypto/AbstractCryptoClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/AbstractCryptoClientV2.php b/vendor/aws/aws-sdk-php/src/Crypto/AbstractCryptoClientV2.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/AbstractCryptoClientV3.php b/vendor/aws/aws-sdk-php/src/Crypto/AbstractCryptoClientV3.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/AesDecryptingStream.php b/vendor/aws/aws-sdk-php/src/Crypto/AesDecryptingStream.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/AesEncryptingStream.php b/vendor/aws/aws-sdk-php/src/Crypto/AesEncryptingStream.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/AesGcmDecryptingStream.php b/vendor/aws/aws-sdk-php/src/Crypto/AesGcmDecryptingStream.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/AesGcmEncryptingStream.php b/vendor/aws/aws-sdk-php/src/Crypto/AesGcmEncryptingStream.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/AesStreamInterface.php b/vendor/aws/aws-sdk-php/src/Crypto/AesStreamInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/AesStreamInterfaceV2.php b/vendor/aws/aws-sdk-php/src/Crypto/AesStreamInterfaceV2.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/AlgorithmConstants.php b/vendor/aws/aws-sdk-php/src/Crypto/AlgorithmConstants.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/AlgorithmSuite.php b/vendor/aws/aws-sdk-php/src/Crypto/AlgorithmSuite.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/Cipher/Cbc.php b/vendor/aws/aws-sdk-php/src/Crypto/Cipher/Cbc.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/Cipher/CipherBuilderTrait.php b/vendor/aws/aws-sdk-php/src/Crypto/Cipher/CipherBuilderTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/Cipher/CipherMethod.php b/vendor/aws/aws-sdk-php/src/Crypto/Cipher/CipherMethod.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/DecryptionTrait.php b/vendor/aws/aws-sdk-php/src/Crypto/DecryptionTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/DecryptionTraitV2.php b/vendor/aws/aws-sdk-php/src/Crypto/DecryptionTraitV2.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/DecryptionTraitV3.php b/vendor/aws/aws-sdk-php/src/Crypto/DecryptionTraitV3.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/EncryptionTrait.php b/vendor/aws/aws-sdk-php/src/Crypto/EncryptionTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/EncryptionTraitV2.php b/vendor/aws/aws-sdk-php/src/Crypto/EncryptionTraitV2.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/EncryptionTraitV3.php b/vendor/aws/aws-sdk-php/src/Crypto/EncryptionTraitV3.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/KmsMaterialsProvider.php b/vendor/aws/aws-sdk-php/src/Crypto/KmsMaterialsProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/KmsMaterialsProviderV2.php b/vendor/aws/aws-sdk-php/src/Crypto/KmsMaterialsProviderV2.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/KmsMaterialsProviderV3.php b/vendor/aws/aws-sdk-php/src/Crypto/KmsMaterialsProviderV3.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/MaterialsProvider.php b/vendor/aws/aws-sdk-php/src/Crypto/MaterialsProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/MaterialsProviderInterface.php b/vendor/aws/aws-sdk-php/src/Crypto/MaterialsProviderInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/MaterialsProviderInterfaceV2.php b/vendor/aws/aws-sdk-php/src/Crypto/MaterialsProviderInterfaceV2.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/MaterialsProviderInterfaceV3.php b/vendor/aws/aws-sdk-php/src/Crypto/MaterialsProviderInterfaceV3.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/MaterialsProviderV2.php b/vendor/aws/aws-sdk-php/src/Crypto/MaterialsProviderV2.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/MaterialsProviderV3.php b/vendor/aws/aws-sdk-php/src/Crypto/MaterialsProviderV3.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/MetadataEnvelope.php b/vendor/aws/aws-sdk-php/src/Crypto/MetadataEnvelope.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Crypto/MetadataStrategyInterface.php b/vendor/aws/aws-sdk-php/src/Crypto/MetadataStrategyInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CustomerProfiles/CustomerProfilesClient.php b/vendor/aws/aws-sdk-php/src/CustomerProfiles/CustomerProfilesClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/CustomerProfiles/Exception/CustomerProfilesException.php b/vendor/aws/aws-sdk-php/src/CustomerProfiles/Exception/CustomerProfilesException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DAX/DAXClient.php b/vendor/aws/aws-sdk-php/src/DAX/DAXClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DAX/Exception/DAXException.php b/vendor/aws/aws-sdk-php/src/DAX/Exception/DAXException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DLM/DLMClient.php b/vendor/aws/aws-sdk-php/src/DLM/DLMClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DLM/Exception/DLMException.php b/vendor/aws/aws-sdk-php/src/DLM/Exception/DLMException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DSQL/AuthTokenGenerator.php b/vendor/aws/aws-sdk-php/src/DSQL/AuthTokenGenerator.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DSQL/DSQLClient.php b/vendor/aws/aws-sdk-php/src/DSQL/DSQLClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DSQL/Exception/DSQLException.php b/vendor/aws/aws-sdk-php/src/DSQL/Exception/DSQLException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DataExchange/DataExchangeClient.php b/vendor/aws/aws-sdk-php/src/DataExchange/DataExchangeClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DataExchange/Exception/DataExchangeException.php b/vendor/aws/aws-sdk-php/src/DataExchange/Exception/DataExchangeException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DataPipeline/DataPipelineClient.php b/vendor/aws/aws-sdk-php/src/DataPipeline/DataPipelineClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DataPipeline/Exception/DataPipelineException.php b/vendor/aws/aws-sdk-php/src/DataPipeline/Exception/DataPipelineException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DataSync/DataSyncClient.php b/vendor/aws/aws-sdk-php/src/DataSync/DataSyncClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DataSync/Exception/DataSyncException.php b/vendor/aws/aws-sdk-php/src/DataSync/Exception/DataSyncException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DataZone/DataZoneClient.php b/vendor/aws/aws-sdk-php/src/DataZone/DataZoneClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DataZone/Exception/DataZoneException.php b/vendor/aws/aws-sdk-php/src/DataZone/Exception/DataZoneException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DatabaseMigrationService/DatabaseMigrationServiceClient.php b/vendor/aws/aws-sdk-php/src/DatabaseMigrationService/DatabaseMigrationServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DatabaseMigrationService/Exception/DatabaseMigrationServiceException.php b/vendor/aws/aws-sdk-php/src/DatabaseMigrationService/Exception/DatabaseMigrationServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Deadline/DeadlineClient.php b/vendor/aws/aws-sdk-php/src/Deadline/DeadlineClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Deadline/Exception/DeadlineException.php b/vendor/aws/aws-sdk-php/src/Deadline/Exception/DeadlineException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DefaultsMode/Configuration.php b/vendor/aws/aws-sdk-php/src/DefaultsMode/Configuration.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DefaultsMode/ConfigurationInterface.php b/vendor/aws/aws-sdk-php/src/DefaultsMode/ConfigurationInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DefaultsMode/ConfigurationProvider.php b/vendor/aws/aws-sdk-php/src/DefaultsMode/ConfigurationProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DefaultsMode/Exception/ConfigurationException.php b/vendor/aws/aws-sdk-php/src/DefaultsMode/Exception/ConfigurationException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Detective/DetectiveClient.php b/vendor/aws/aws-sdk-php/src/Detective/DetectiveClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Detective/Exception/DetectiveException.php b/vendor/aws/aws-sdk-php/src/Detective/Exception/DetectiveException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DevOpsGuru/DevOpsGuruClient.php b/vendor/aws/aws-sdk-php/src/DevOpsGuru/DevOpsGuruClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DevOpsGuru/Exception/DevOpsGuruException.php b/vendor/aws/aws-sdk-php/src/DevOpsGuru/Exception/DevOpsGuruException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DeviceFarm/DeviceFarmClient.php b/vendor/aws/aws-sdk-php/src/DeviceFarm/DeviceFarmClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DeviceFarm/Exception/DeviceFarmException.php b/vendor/aws/aws-sdk-php/src/DeviceFarm/Exception/DeviceFarmException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DirectConnect/DirectConnectClient.php b/vendor/aws/aws-sdk-php/src/DirectConnect/DirectConnectClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DirectConnect/Exception/DirectConnectException.php b/vendor/aws/aws-sdk-php/src/DirectConnect/Exception/DirectConnectException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DirectoryService/DirectoryServiceClient.php b/vendor/aws/aws-sdk-php/src/DirectoryService/DirectoryServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DirectoryService/Exception/DirectoryServiceException.php b/vendor/aws/aws-sdk-php/src/DirectoryService/Exception/DirectoryServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DirectoryServiceData/DirectoryServiceDataClient.php b/vendor/aws/aws-sdk-php/src/DirectoryServiceData/DirectoryServiceDataClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DirectoryServiceData/Exception/DirectoryServiceDataException.php b/vendor/aws/aws-sdk-php/src/DirectoryServiceData/Exception/DirectoryServiceDataException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DocDB/DocDBClient.php b/vendor/aws/aws-sdk-php/src/DocDB/DocDBClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DocDB/Exception/DocDBException.php b/vendor/aws/aws-sdk-php/src/DocDB/Exception/DocDBException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DocDBElastic/DocDBElasticClient.php b/vendor/aws/aws-sdk-php/src/DocDBElastic/DocDBElasticClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DocDBElastic/Exception/DocDBElasticException.php b/vendor/aws/aws-sdk-php/src/DocDBElastic/Exception/DocDBElasticException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DoctrineCacheAdapter.php b/vendor/aws/aws-sdk-php/src/DoctrineCacheAdapter.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DynamoDb/BinaryValue.php b/vendor/aws/aws-sdk-php/src/DynamoDb/BinaryValue.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DynamoDb/DynamoDbClient.php b/vendor/aws/aws-sdk-php/src/DynamoDb/DynamoDbClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DynamoDb/Exception/DynamoDbException.php b/vendor/aws/aws-sdk-php/src/DynamoDb/Exception/DynamoDbException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DynamoDb/LockingSessionConnection.php b/vendor/aws/aws-sdk-php/src/DynamoDb/LockingSessionConnection.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DynamoDb/Marshaler.php b/vendor/aws/aws-sdk-php/src/DynamoDb/Marshaler.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DynamoDb/NumberValue.php b/vendor/aws/aws-sdk-php/src/DynamoDb/NumberValue.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DynamoDb/SessionConnectionConfigTrait.php b/vendor/aws/aws-sdk-php/src/DynamoDb/SessionConnectionConfigTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DynamoDb/SessionConnectionInterface.php b/vendor/aws/aws-sdk-php/src/DynamoDb/SessionConnectionInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DynamoDb/SessionHandler.php b/vendor/aws/aws-sdk-php/src/DynamoDb/SessionHandler.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DynamoDb/SetValue.php b/vendor/aws/aws-sdk-php/src/DynamoDb/SetValue.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DynamoDb/StandardSessionConnection.php b/vendor/aws/aws-sdk-php/src/DynamoDb/StandardSessionConnection.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DynamoDb/WriteRequestBatch.php b/vendor/aws/aws-sdk-php/src/DynamoDb/WriteRequestBatch.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DynamoDbStreams/DynamoDbStreamsClient.php b/vendor/aws/aws-sdk-php/src/DynamoDbStreams/DynamoDbStreamsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/DynamoDbStreams/Exception/DynamoDbStreamsException.php b/vendor/aws/aws-sdk-php/src/DynamoDbStreams/Exception/DynamoDbStreamsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EBS/EBSClient.php b/vendor/aws/aws-sdk-php/src/EBS/EBSClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EBS/Exception/EBSException.php b/vendor/aws/aws-sdk-php/src/EBS/Exception/EBSException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EC2InstanceConnect/EC2InstanceConnectClient.php b/vendor/aws/aws-sdk-php/src/EC2InstanceConnect/EC2InstanceConnectClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EC2InstanceConnect/Exception/EC2InstanceConnectException.php b/vendor/aws/aws-sdk-php/src/EC2InstanceConnect/Exception/EC2InstanceConnectException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ECRPublic/ECRPublicClient.php b/vendor/aws/aws-sdk-php/src/ECRPublic/ECRPublicClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ECRPublic/Exception/ECRPublicException.php b/vendor/aws/aws-sdk-php/src/ECRPublic/Exception/ECRPublicException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EKS/EKSClient.php b/vendor/aws/aws-sdk-php/src/EKS/EKSClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EKS/Exception/EKSException.php b/vendor/aws/aws-sdk-php/src/EKS/Exception/EKSException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EKSAuth/EKSAuthClient.php b/vendor/aws/aws-sdk-php/src/EKSAuth/EKSAuthClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EKSAuth/Exception/EKSAuthException.php b/vendor/aws/aws-sdk-php/src/EKSAuth/Exception/EKSAuthException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EMRContainers/EMRContainersClient.php b/vendor/aws/aws-sdk-php/src/EMRContainers/EMRContainersClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EMRContainers/Exception/EMRContainersException.php b/vendor/aws/aws-sdk-php/src/EMRContainers/Exception/EMRContainersException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EMRServerless/EMRServerlessClient.php b/vendor/aws/aws-sdk-php/src/EMRServerless/EMRServerlessClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EMRServerless/Exception/EMRServerlessException.php b/vendor/aws/aws-sdk-php/src/EMRServerless/Exception/EMRServerlessException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Ec2/Ec2Client.php b/vendor/aws/aws-sdk-php/src/Ec2/Ec2Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Ec2/Exception/Ec2Exception.php b/vendor/aws/aws-sdk-php/src/Ec2/Exception/Ec2Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Ecr/EcrClient.php b/vendor/aws/aws-sdk-php/src/Ecr/EcrClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Ecr/Exception/EcrException.php b/vendor/aws/aws-sdk-php/src/Ecr/Exception/EcrException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Ecs/EcsClient.php b/vendor/aws/aws-sdk-php/src/Ecs/EcsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Ecs/Exception/EcsException.php b/vendor/aws/aws-sdk-php/src/Ecs/Exception/EcsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Efs/EfsClient.php b/vendor/aws/aws-sdk-php/src/Efs/EfsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Efs/Exception/EfsException.php b/vendor/aws/aws-sdk-php/src/Efs/Exception/EfsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ElastiCache/ElastiCacheClient.php b/vendor/aws/aws-sdk-php/src/ElastiCache/ElastiCacheClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ElastiCache/Exception/ElastiCacheException.php b/vendor/aws/aws-sdk-php/src/ElastiCache/Exception/ElastiCacheException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ElasticBeanstalk/ElasticBeanstalkClient.php b/vendor/aws/aws-sdk-php/src/ElasticBeanstalk/ElasticBeanstalkClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ElasticBeanstalk/Exception/ElasticBeanstalkException.php b/vendor/aws/aws-sdk-php/src/ElasticBeanstalk/Exception/ElasticBeanstalkException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ElasticLoadBalancing/ElasticLoadBalancingClient.php b/vendor/aws/aws-sdk-php/src/ElasticLoadBalancing/ElasticLoadBalancingClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ElasticLoadBalancing/Exception/ElasticLoadBalancingException.php b/vendor/aws/aws-sdk-php/src/ElasticLoadBalancing/Exception/ElasticLoadBalancingException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ElasticLoadBalancingV2/ElasticLoadBalancingV2Client.php b/vendor/aws/aws-sdk-php/src/ElasticLoadBalancingV2/ElasticLoadBalancingV2Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ElasticLoadBalancingV2/Exception/ElasticLoadBalancingV2Exception.php b/vendor/aws/aws-sdk-php/src/ElasticLoadBalancingV2/Exception/ElasticLoadBalancingV2Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ElasticsearchService/ElasticsearchServiceClient.php b/vendor/aws/aws-sdk-php/src/ElasticsearchService/ElasticsearchServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ElasticsearchService/Exception/ElasticsearchServiceException.php b/vendor/aws/aws-sdk-php/src/ElasticsearchService/Exception/ElasticsearchServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Emr/EmrClient.php b/vendor/aws/aws-sdk-php/src/Emr/EmrClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Emr/Exception/EmrException.php b/vendor/aws/aws-sdk-php/src/Emr/Exception/EmrException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Endpoint/EndpointProvider.php b/vendor/aws/aws-sdk-php/src/Endpoint/EndpointProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Endpoint/Partition.php b/vendor/aws/aws-sdk-php/src/Endpoint/Partition.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Endpoint/PartitionEndpointProvider.php b/vendor/aws/aws-sdk-php/src/Endpoint/PartitionEndpointProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Endpoint/PartitionInterface.php b/vendor/aws/aws-sdk-php/src/Endpoint/PartitionInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Endpoint/PatternEndpointProvider.php b/vendor/aws/aws-sdk-php/src/Endpoint/PatternEndpointProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Endpoint/UseDualstackEndpoint/Configuration.php b/vendor/aws/aws-sdk-php/src/Endpoint/UseDualstackEndpoint/Configuration.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Endpoint/UseDualstackEndpoint/ConfigurationInterface.php b/vendor/aws/aws-sdk-php/src/Endpoint/UseDualstackEndpoint/ConfigurationInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Endpoint/UseDualstackEndpoint/ConfigurationProvider.php b/vendor/aws/aws-sdk-php/src/Endpoint/UseDualstackEndpoint/ConfigurationProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Endpoint/UseDualstackEndpoint/Exception/ConfigurationException.php b/vendor/aws/aws-sdk-php/src/Endpoint/UseDualstackEndpoint/Exception/ConfigurationException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Endpoint/UseFipsEndpoint/Configuration.php b/vendor/aws/aws-sdk-php/src/Endpoint/UseFipsEndpoint/Configuration.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Endpoint/UseFipsEndpoint/ConfigurationInterface.php b/vendor/aws/aws-sdk-php/src/Endpoint/UseFipsEndpoint/ConfigurationInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Endpoint/UseFipsEndpoint/ConfigurationProvider.php b/vendor/aws/aws-sdk-php/src/Endpoint/UseFipsEndpoint/ConfigurationProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Endpoint/UseFipsEndpoint/Exception/ConfigurationException.php b/vendor/aws/aws-sdk-php/src/Endpoint/UseFipsEndpoint/Exception/ConfigurationException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointDiscovery/Configuration.php b/vendor/aws/aws-sdk-php/src/EndpointDiscovery/Configuration.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointDiscovery/ConfigurationInterface.php b/vendor/aws/aws-sdk-php/src/EndpointDiscovery/ConfigurationInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointDiscovery/ConfigurationProvider.php b/vendor/aws/aws-sdk-php/src/EndpointDiscovery/ConfigurationProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointDiscovery/EndpointDiscoveryMiddleware.php b/vendor/aws/aws-sdk-php/src/EndpointDiscovery/EndpointDiscoveryMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointDiscovery/EndpointList.php b/vendor/aws/aws-sdk-php/src/EndpointDiscovery/EndpointList.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointDiscovery/Exception/ConfigurationException.php b/vendor/aws/aws-sdk-php/src/EndpointDiscovery/Exception/ConfigurationException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointParameterMiddleware.php b/vendor/aws/aws-sdk-php/src/EndpointParameterMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointV2/EndpointDefinitionProvider.php b/vendor/aws/aws-sdk-php/src/EndpointV2/EndpointDefinitionProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointV2/EndpointProviderV2.php b/vendor/aws/aws-sdk-php/src/EndpointV2/EndpointProviderV2.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointV2/EndpointV2Middleware.php b/vendor/aws/aws-sdk-php/src/EndpointV2/EndpointV2Middleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointV2/EndpointV2SerializerTrait.php b/vendor/aws/aws-sdk-php/src/EndpointV2/EndpointV2SerializerTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointV2/Rule/AbstractRule.php b/vendor/aws/aws-sdk-php/src/EndpointV2/Rule/AbstractRule.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointV2/Rule/EndpointRule.php b/vendor/aws/aws-sdk-php/src/EndpointV2/Rule/EndpointRule.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointV2/Rule/ErrorRule.php b/vendor/aws/aws-sdk-php/src/EndpointV2/Rule/ErrorRule.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointV2/Rule/RuleCreator.php b/vendor/aws/aws-sdk-php/src/EndpointV2/Rule/RuleCreator.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointV2/Rule/TreeRule.php b/vendor/aws/aws-sdk-php/src/EndpointV2/Rule/TreeRule.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointV2/Ruleset/Ruleset.php b/vendor/aws/aws-sdk-php/src/EndpointV2/Ruleset/Ruleset.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointV2/Ruleset/RulesetEndpoint.php b/vendor/aws/aws-sdk-php/src/EndpointV2/Ruleset/RulesetEndpoint.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointV2/Ruleset/RulesetParameter.php b/vendor/aws/aws-sdk-php/src/EndpointV2/Ruleset/RulesetParameter.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EndpointV2/Ruleset/RulesetStandardLibrary.php b/vendor/aws/aws-sdk-php/src/EndpointV2/Ruleset/RulesetStandardLibrary.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EntityResolution/EntityResolutionClient.php b/vendor/aws/aws-sdk-php/src/EntityResolution/EntityResolutionClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EntityResolution/Exception/EntityResolutionException.php b/vendor/aws/aws-sdk-php/src/EntityResolution/Exception/EntityResolutionException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EventBridge/EventBridgeClient.php b/vendor/aws/aws-sdk-php/src/EventBridge/EventBridgeClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EventBridge/EventBridgeEndpointMiddleware.php b/vendor/aws/aws-sdk-php/src/EventBridge/EventBridgeEndpointMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/EventBridge/Exception/EventBridgeException.php b/vendor/aws/aws-sdk-php/src/EventBridge/Exception/EventBridgeException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Evs/EvsClient.php b/vendor/aws/aws-sdk-php/src/Evs/EvsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Evs/Exception/EvsException.php b/vendor/aws/aws-sdk-php/src/Evs/Exception/EvsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Exception/AwsException.php b/vendor/aws/aws-sdk-php/src/Exception/AwsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Exception/CommonRuntimeException.php b/vendor/aws/aws-sdk-php/src/Exception/CommonRuntimeException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Exception/CouldNotCreateChecksumException.php b/vendor/aws/aws-sdk-php/src/Exception/CouldNotCreateChecksumException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Exception/CredentialsException.php b/vendor/aws/aws-sdk-php/src/Exception/CredentialsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Exception/CryptoException.php b/vendor/aws/aws-sdk-php/src/Exception/CryptoException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Exception/CryptoPolyfillException.php b/vendor/aws/aws-sdk-php/src/Exception/CryptoPolyfillException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Exception/EventStreamDataException.php b/vendor/aws/aws-sdk-php/src/Exception/EventStreamDataException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Exception/IncalculablePayloadException.php b/vendor/aws/aws-sdk-php/src/Exception/IncalculablePayloadException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Exception/InvalidJsonException.php b/vendor/aws/aws-sdk-php/src/Exception/InvalidJsonException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Exception/InvalidRegionException.php b/vendor/aws/aws-sdk-php/src/Exception/InvalidRegionException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Exception/MultipartUploadException.php b/vendor/aws/aws-sdk-php/src/Exception/MultipartUploadException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Exception/TokenException.php b/vendor/aws/aws-sdk-php/src/Exception/TokenException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Exception/UnresolvedApiException.php b/vendor/aws/aws-sdk-php/src/Exception/UnresolvedApiException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Exception/UnresolvedEndpointException.php b/vendor/aws/aws-sdk-php/src/Exception/UnresolvedEndpointException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Exception/UnresolvedSignatureException.php b/vendor/aws/aws-sdk-php/src/Exception/UnresolvedSignatureException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/FIS/Exception/FISException.php b/vendor/aws/aws-sdk-php/src/FIS/Exception/FISException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/FIS/FISClient.php b/vendor/aws/aws-sdk-php/src/FIS/FISClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/FMS/Exception/FMSException.php b/vendor/aws/aws-sdk-php/src/FMS/Exception/FMSException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/FMS/FMSClient.php b/vendor/aws/aws-sdk-php/src/FMS/FMSClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/FSx/Exception/FSxException.php b/vendor/aws/aws-sdk-php/src/FSx/Exception/FSxException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/FSx/FSxClient.php b/vendor/aws/aws-sdk-php/src/FSx/FSxClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/FinSpaceData/Exception/FinSpaceDataException.php b/vendor/aws/aws-sdk-php/src/FinSpaceData/Exception/FinSpaceDataException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/FinSpaceData/FinSpaceDataClient.php b/vendor/aws/aws-sdk-php/src/FinSpaceData/FinSpaceDataClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Firehose/Exception/FirehoseException.php b/vendor/aws/aws-sdk-php/src/Firehose/Exception/FirehoseException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Firehose/FirehoseClient.php b/vendor/aws/aws-sdk-php/src/Firehose/FirehoseClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ForecastQueryService/Exception/ForecastQueryServiceException.php b/vendor/aws/aws-sdk-php/src/ForecastQueryService/Exception/ForecastQueryServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ForecastQueryService/ForecastQueryServiceClient.php b/vendor/aws/aws-sdk-php/src/ForecastQueryService/ForecastQueryServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ForecastService/Exception/ForecastServiceException.php b/vendor/aws/aws-sdk-php/src/ForecastService/Exception/ForecastServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ForecastService/ForecastServiceClient.php b/vendor/aws/aws-sdk-php/src/ForecastService/ForecastServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/FraudDetector/Exception/FraudDetectorException.php b/vendor/aws/aws-sdk-php/src/FraudDetector/Exception/FraudDetectorException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/FraudDetector/FraudDetectorClient.php b/vendor/aws/aws-sdk-php/src/FraudDetector/FraudDetectorClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/FreeTier/Exception/FreeTierException.php b/vendor/aws/aws-sdk-php/src/FreeTier/Exception/FreeTierException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/FreeTier/FreeTierClient.php b/vendor/aws/aws-sdk-php/src/FreeTier/FreeTierClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GameLift/Exception/GameLiftException.php b/vendor/aws/aws-sdk-php/src/GameLift/Exception/GameLiftException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GameLift/GameLiftClient.php b/vendor/aws/aws-sdk-php/src/GameLift/GameLiftClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GameLiftStreams/Exception/GameLiftStreamsException.php b/vendor/aws/aws-sdk-php/src/GameLiftStreams/Exception/GameLiftStreamsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GameLiftStreams/GameLiftStreamsClient.php b/vendor/aws/aws-sdk-php/src/GameLiftStreams/GameLiftStreamsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GeoMaps/Exception/GeoMapsException.php b/vendor/aws/aws-sdk-php/src/GeoMaps/Exception/GeoMapsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GeoMaps/GeoMapsClient.php b/vendor/aws/aws-sdk-php/src/GeoMaps/GeoMapsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GeoPlaces/Exception/GeoPlacesException.php b/vendor/aws/aws-sdk-php/src/GeoPlaces/Exception/GeoPlacesException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GeoPlaces/GeoPlacesClient.php b/vendor/aws/aws-sdk-php/src/GeoPlaces/GeoPlacesClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GeoRoutes/Exception/GeoRoutesException.php b/vendor/aws/aws-sdk-php/src/GeoRoutes/Exception/GeoRoutesException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GeoRoutes/GeoRoutesClient.php b/vendor/aws/aws-sdk-php/src/GeoRoutes/GeoRoutesClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Glacier/Exception/GlacierException.php b/vendor/aws/aws-sdk-php/src/Glacier/Exception/GlacierException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Glacier/GlacierClient.php b/vendor/aws/aws-sdk-php/src/Glacier/GlacierClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Glacier/MultipartUploader.php b/vendor/aws/aws-sdk-php/src/Glacier/MultipartUploader.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Glacier/TreeHash.php b/vendor/aws/aws-sdk-php/src/Glacier/TreeHash.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GlobalAccelerator/Exception/GlobalAcceleratorException.php b/vendor/aws/aws-sdk-php/src/GlobalAccelerator/Exception/GlobalAcceleratorException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GlobalAccelerator/GlobalAcceleratorClient.php b/vendor/aws/aws-sdk-php/src/GlobalAccelerator/GlobalAcceleratorClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Glue/Exception/GlueException.php b/vendor/aws/aws-sdk-php/src/Glue/Exception/GlueException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Glue/GlueClient.php b/vendor/aws/aws-sdk-php/src/Glue/GlueClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GlueDataBrew/Exception/GlueDataBrewException.php b/vendor/aws/aws-sdk-php/src/GlueDataBrew/Exception/GlueDataBrewException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GlueDataBrew/GlueDataBrewClient.php b/vendor/aws/aws-sdk-php/src/GlueDataBrew/GlueDataBrewClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Greengrass/Exception/GreengrassException.php b/vendor/aws/aws-sdk-php/src/Greengrass/Exception/GreengrassException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Greengrass/GreengrassClient.php b/vendor/aws/aws-sdk-php/src/Greengrass/GreengrassClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GreengrassV2/Exception/GreengrassV2Exception.php b/vendor/aws/aws-sdk-php/src/GreengrassV2/Exception/GreengrassV2Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GreengrassV2/GreengrassV2Client.php b/vendor/aws/aws-sdk-php/src/GreengrassV2/GreengrassV2Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GroundStation/Exception/GroundStationException.php b/vendor/aws/aws-sdk-php/src/GroundStation/Exception/GroundStationException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GroundStation/GroundStationClient.php b/vendor/aws/aws-sdk-php/src/GroundStation/GroundStationClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GuardDuty/Exception/GuardDutyException.php b/vendor/aws/aws-sdk-php/src/GuardDuty/Exception/GuardDutyException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/GuardDuty/GuardDutyClient.php b/vendor/aws/aws-sdk-php/src/GuardDuty/GuardDutyClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Handler/Guzzle/GuzzleHandler.php b/vendor/aws/aws-sdk-php/src/Handler/Guzzle/GuzzleHandler.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Handler/GuzzleV6/GuzzleHandler.php b/vendor/aws/aws-sdk-php/src/Handler/GuzzleV6/GuzzleHandler.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/HandlerList.php b/vendor/aws/aws-sdk-php/src/HandlerList.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/HasDataTrait.php b/vendor/aws/aws-sdk-php/src/HasDataTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/HasMonitoringEventsTrait.php b/vendor/aws/aws-sdk-php/src/HasMonitoringEventsTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/HashInterface.php b/vendor/aws/aws-sdk-php/src/HashInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/HashingStream.php b/vendor/aws/aws-sdk-php/src/HashingStream.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Health/Exception/HealthException.php b/vendor/aws/aws-sdk-php/src/Health/Exception/HealthException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Health/HealthClient.php b/vendor/aws/aws-sdk-php/src/Health/HealthClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/HealthLake/Exception/HealthLakeException.php b/vendor/aws/aws-sdk-php/src/HealthLake/Exception/HealthLakeException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/HealthLake/HealthLakeClient.php b/vendor/aws/aws-sdk-php/src/HealthLake/HealthLakeClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/History.php b/vendor/aws/aws-sdk-php/src/History.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IVS/Exception/IVSException.php b/vendor/aws/aws-sdk-php/src/IVS/Exception/IVSException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IVS/IVSClient.php b/vendor/aws/aws-sdk-php/src/IVS/IVSClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IVSRealTime/Exception/IVSRealTimeException.php b/vendor/aws/aws-sdk-php/src/IVSRealTime/Exception/IVSRealTimeException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IVSRealTime/IVSRealTimeClient.php b/vendor/aws/aws-sdk-php/src/IVSRealTime/IVSRealTimeClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Iam/Exception/IamException.php b/vendor/aws/aws-sdk-php/src/Iam/Exception/IamException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Iam/IamClient.php b/vendor/aws/aws-sdk-php/src/Iam/IamClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IdempotencyTokenMiddleware.php b/vendor/aws/aws-sdk-php/src/IdempotencyTokenMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Identity/AwsCredentialIdentity.php b/vendor/aws/aws-sdk-php/src/Identity/AwsCredentialIdentity.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Identity/BearerTokenIdentity.php b/vendor/aws/aws-sdk-php/src/Identity/BearerTokenIdentity.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Identity/IdentityInterface.php b/vendor/aws/aws-sdk-php/src/Identity/IdentityInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Identity/S3/S3ExpressIdentity.php b/vendor/aws/aws-sdk-php/src/Identity/S3/S3ExpressIdentity.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Identity/S3/S3ExpressIdentityProvider.php b/vendor/aws/aws-sdk-php/src/Identity/S3/S3ExpressIdentityProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IdentityStore/Exception/IdentityStoreException.php b/vendor/aws/aws-sdk-php/src/IdentityStore/Exception/IdentityStoreException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IdentityStore/IdentityStoreClient.php b/vendor/aws/aws-sdk-php/src/IdentityStore/IdentityStoreClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ImportExport/Exception/ImportExportException.php b/vendor/aws/aws-sdk-php/src/ImportExport/Exception/ImportExportException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ImportExport/ImportExportClient.php b/vendor/aws/aws-sdk-php/src/ImportExport/ImportExportClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/InputValidationMiddleware.php b/vendor/aws/aws-sdk-php/src/InputValidationMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Inspector/Exception/InspectorException.php b/vendor/aws/aws-sdk-php/src/Inspector/Exception/InspectorException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Inspector/InspectorClient.php b/vendor/aws/aws-sdk-php/src/Inspector/InspectorClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Inspector2/Exception/Inspector2Exception.php b/vendor/aws/aws-sdk-php/src/Inspector2/Exception/Inspector2Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Inspector2/Inspector2Client.php b/vendor/aws/aws-sdk-php/src/Inspector2/Inspector2Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/InspectorScan/Exception/InspectorScanException.php b/vendor/aws/aws-sdk-php/src/InspectorScan/Exception/InspectorScanException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/InspectorScan/InspectorScanClient.php b/vendor/aws/aws-sdk-php/src/InspectorScan/InspectorScanClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/InternetMonitor/Exception/InternetMonitorException.php b/vendor/aws/aws-sdk-php/src/InternetMonitor/Exception/InternetMonitorException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/InternetMonitor/InternetMonitorClient.php b/vendor/aws/aws-sdk-php/src/InternetMonitor/InternetMonitorClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Invoicing/Exception/InvoicingException.php b/vendor/aws/aws-sdk-php/src/Invoicing/Exception/InvoicingException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Invoicing/InvoicingClient.php b/vendor/aws/aws-sdk-php/src/Invoicing/InvoicingClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTAnalytics/Exception/IoTAnalyticsException.php b/vendor/aws/aws-sdk-php/src/IoTAnalytics/Exception/IoTAnalyticsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTAnalytics/IoTAnalyticsClient.php b/vendor/aws/aws-sdk-php/src/IoTAnalytics/IoTAnalyticsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTDeviceAdvisor/Exception/IoTDeviceAdvisorException.php b/vendor/aws/aws-sdk-php/src/IoTDeviceAdvisor/Exception/IoTDeviceAdvisorException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTDeviceAdvisor/IoTDeviceAdvisorClient.php b/vendor/aws/aws-sdk-php/src/IoTDeviceAdvisor/IoTDeviceAdvisorClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTEvents/Exception/IoTEventsException.php b/vendor/aws/aws-sdk-php/src/IoTEvents/Exception/IoTEventsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTEvents/IoTEventsClient.php b/vendor/aws/aws-sdk-php/src/IoTEvents/IoTEventsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTEventsData/Exception/IoTEventsDataException.php b/vendor/aws/aws-sdk-php/src/IoTEventsData/Exception/IoTEventsDataException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTEventsData/IoTEventsDataClient.php b/vendor/aws/aws-sdk-php/src/IoTEventsData/IoTEventsDataClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTFleetWise/Exception/IoTFleetWiseException.php b/vendor/aws/aws-sdk-php/src/IoTFleetWise/Exception/IoTFleetWiseException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTFleetWise/IoTFleetWiseClient.php b/vendor/aws/aws-sdk-php/src/IoTFleetWise/IoTFleetWiseClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTJobsDataPlane/Exception/IoTJobsDataPlaneException.php b/vendor/aws/aws-sdk-php/src/IoTJobsDataPlane/Exception/IoTJobsDataPlaneException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTJobsDataPlane/IoTJobsDataPlaneClient.php b/vendor/aws/aws-sdk-php/src/IoTJobsDataPlane/IoTJobsDataPlaneClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTManagedIntegrations/Exception/IoTManagedIntegrationsException.php b/vendor/aws/aws-sdk-php/src/IoTManagedIntegrations/Exception/IoTManagedIntegrationsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTManagedIntegrations/IoTManagedIntegrationsClient.php b/vendor/aws/aws-sdk-php/src/IoTManagedIntegrations/IoTManagedIntegrationsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTSecureTunneling/Exception/IoTSecureTunnelingException.php b/vendor/aws/aws-sdk-php/src/IoTSecureTunneling/Exception/IoTSecureTunnelingException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTSecureTunneling/IoTSecureTunnelingClient.php b/vendor/aws/aws-sdk-php/src/IoTSecureTunneling/IoTSecureTunnelingClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTSiteWise/Exception/IoTSiteWiseException.php b/vendor/aws/aws-sdk-php/src/IoTSiteWise/Exception/IoTSiteWiseException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTSiteWise/IoTSiteWiseClient.php b/vendor/aws/aws-sdk-php/src/IoTSiteWise/IoTSiteWiseClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTThingsGraph/Exception/IoTThingsGraphException.php b/vendor/aws/aws-sdk-php/src/IoTThingsGraph/Exception/IoTThingsGraphException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTThingsGraph/IoTThingsGraphClient.php b/vendor/aws/aws-sdk-php/src/IoTThingsGraph/IoTThingsGraphClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTTwinMaker/Exception/IoTTwinMakerException.php b/vendor/aws/aws-sdk-php/src/IoTTwinMaker/Exception/IoTTwinMakerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTTwinMaker/IoTTwinMakerClient.php b/vendor/aws/aws-sdk-php/src/IoTTwinMaker/IoTTwinMakerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTWireless/Exception/IoTWirelessException.php b/vendor/aws/aws-sdk-php/src/IoTWireless/Exception/IoTWirelessException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IoTWireless/IoTWirelessClient.php b/vendor/aws/aws-sdk-php/src/IoTWireless/IoTWirelessClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Iot/Exception/IotException.php b/vendor/aws/aws-sdk-php/src/Iot/Exception/IotException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Iot/IotClient.php b/vendor/aws/aws-sdk-php/src/Iot/IotClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IotDataPlane/Exception/IotDataPlaneException.php b/vendor/aws/aws-sdk-php/src/IotDataPlane/Exception/IotDataPlaneException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/IotDataPlane/IotDataPlaneClient.php b/vendor/aws/aws-sdk-php/src/IotDataPlane/IotDataPlaneClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/JsonCompiler.php b/vendor/aws/aws-sdk-php/src/JsonCompiler.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Kafka/Exception/KafkaException.php b/vendor/aws/aws-sdk-php/src/Kafka/Exception/KafkaException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Kafka/KafkaClient.php b/vendor/aws/aws-sdk-php/src/Kafka/KafkaClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KafkaConnect/Exception/KafkaConnectException.php b/vendor/aws/aws-sdk-php/src/KafkaConnect/Exception/KafkaConnectException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KafkaConnect/KafkaConnectClient.php b/vendor/aws/aws-sdk-php/src/KafkaConnect/KafkaConnectClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KendraRanking/Exception/KendraRankingException.php b/vendor/aws/aws-sdk-php/src/KendraRanking/Exception/KendraRankingException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KendraRanking/KendraRankingClient.php b/vendor/aws/aws-sdk-php/src/KendraRanking/KendraRankingClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Keyspaces/Exception/KeyspacesException.php b/vendor/aws/aws-sdk-php/src/Keyspaces/Exception/KeyspacesException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Keyspaces/KeyspacesClient.php b/vendor/aws/aws-sdk-php/src/Keyspaces/KeyspacesClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KeyspacesStreams/Exception/KeyspacesStreamsException.php b/vendor/aws/aws-sdk-php/src/KeyspacesStreams/Exception/KeyspacesStreamsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KeyspacesStreams/KeyspacesStreamsClient.php b/vendor/aws/aws-sdk-php/src/KeyspacesStreams/KeyspacesStreamsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Kinesis/Exception/KinesisException.php b/vendor/aws/aws-sdk-php/src/Kinesis/Exception/KinesisException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Kinesis/KinesisClient.php b/vendor/aws/aws-sdk-php/src/Kinesis/KinesisClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KinesisAnalytics/Exception/KinesisAnalyticsException.php b/vendor/aws/aws-sdk-php/src/KinesisAnalytics/Exception/KinesisAnalyticsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KinesisAnalytics/KinesisAnalyticsClient.php b/vendor/aws/aws-sdk-php/src/KinesisAnalytics/KinesisAnalyticsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KinesisAnalyticsV2/Exception/KinesisAnalyticsV2Exception.php b/vendor/aws/aws-sdk-php/src/KinesisAnalyticsV2/Exception/KinesisAnalyticsV2Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KinesisAnalyticsV2/KinesisAnalyticsV2Client.php b/vendor/aws/aws-sdk-php/src/KinesisAnalyticsV2/KinesisAnalyticsV2Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KinesisVideo/Exception/KinesisVideoException.php b/vendor/aws/aws-sdk-php/src/KinesisVideo/Exception/KinesisVideoException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KinesisVideo/KinesisVideoClient.php b/vendor/aws/aws-sdk-php/src/KinesisVideo/KinesisVideoClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KinesisVideoArchivedMedia/Exception/KinesisVideoArchivedMediaException.php b/vendor/aws/aws-sdk-php/src/KinesisVideoArchivedMedia/Exception/KinesisVideoArchivedMediaException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KinesisVideoArchivedMedia/KinesisVideoArchivedMediaClient.php b/vendor/aws/aws-sdk-php/src/KinesisVideoArchivedMedia/KinesisVideoArchivedMediaClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KinesisVideoMedia/Exception/KinesisVideoMediaException.php b/vendor/aws/aws-sdk-php/src/KinesisVideoMedia/Exception/KinesisVideoMediaException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KinesisVideoMedia/KinesisVideoMediaClient.php b/vendor/aws/aws-sdk-php/src/KinesisVideoMedia/KinesisVideoMediaClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KinesisVideoSignalingChannels/Exception/KinesisVideoSignalingChannelsException.php b/vendor/aws/aws-sdk-php/src/KinesisVideoSignalingChannels/Exception/KinesisVideoSignalingChannelsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KinesisVideoSignalingChannels/KinesisVideoSignalingChannelsClient.php b/vendor/aws/aws-sdk-php/src/KinesisVideoSignalingChannels/KinesisVideoSignalingChannelsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KinesisVideoWebRTCStorage/Exception/KinesisVideoWebRTCStorageException.php b/vendor/aws/aws-sdk-php/src/KinesisVideoWebRTCStorage/Exception/KinesisVideoWebRTCStorageException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/KinesisVideoWebRTCStorage/KinesisVideoWebRTCStorageClient.php b/vendor/aws/aws-sdk-php/src/KinesisVideoWebRTCStorage/KinesisVideoWebRTCStorageClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Kms/Exception/KmsException.php b/vendor/aws/aws-sdk-php/src/Kms/Exception/KmsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Kms/KmsClient.php b/vendor/aws/aws-sdk-php/src/Kms/KmsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LakeFormation/Exception/LakeFormationException.php b/vendor/aws/aws-sdk-php/src/LakeFormation/Exception/LakeFormationException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LakeFormation/LakeFormationClient.php b/vendor/aws/aws-sdk-php/src/LakeFormation/LakeFormationClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Lambda/Exception/LambdaException.php b/vendor/aws/aws-sdk-php/src/Lambda/Exception/LambdaException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Lambda/LambdaClient.php b/vendor/aws/aws-sdk-php/src/Lambda/LambdaClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LaunchWizard/Exception/LaunchWizardException.php b/vendor/aws/aws-sdk-php/src/LaunchWizard/Exception/LaunchWizardException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LaunchWizard/LaunchWizardClient.php b/vendor/aws/aws-sdk-php/src/LaunchWizard/LaunchWizardClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LexModelBuildingService/Exception/LexModelBuildingServiceException.php b/vendor/aws/aws-sdk-php/src/LexModelBuildingService/Exception/LexModelBuildingServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LexModelBuildingService/LexModelBuildingServiceClient.php b/vendor/aws/aws-sdk-php/src/LexModelBuildingService/LexModelBuildingServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LexModelsV2/Exception/LexModelsV2Exception.php b/vendor/aws/aws-sdk-php/src/LexModelsV2/Exception/LexModelsV2Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LexModelsV2/LexModelsV2Client.php b/vendor/aws/aws-sdk-php/src/LexModelsV2/LexModelsV2Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LexRuntimeService/Exception/LexRuntimeServiceException.php b/vendor/aws/aws-sdk-php/src/LexRuntimeService/Exception/LexRuntimeServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LexRuntimeService/LexRuntimeServiceClient.php b/vendor/aws/aws-sdk-php/src/LexRuntimeService/LexRuntimeServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LexRuntimeV2/Exception/LexRuntimeV2Exception.php b/vendor/aws/aws-sdk-php/src/LexRuntimeV2/Exception/LexRuntimeV2Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LexRuntimeV2/LexRuntimeV2Client.php b/vendor/aws/aws-sdk-php/src/LexRuntimeV2/LexRuntimeV2Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LicenseManager/Exception/LicenseManagerException.php b/vendor/aws/aws-sdk-php/src/LicenseManager/Exception/LicenseManagerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LicenseManager/LicenseManagerClient.php b/vendor/aws/aws-sdk-php/src/LicenseManager/LicenseManagerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LicenseManagerLinuxSubscriptions/Exception/LicenseManagerLinuxSubscriptionsException.php b/vendor/aws/aws-sdk-php/src/LicenseManagerLinuxSubscriptions/Exception/LicenseManagerLinuxSubscriptionsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LicenseManagerLinuxSubscriptions/LicenseManagerLinuxSubscriptionsClient.php b/vendor/aws/aws-sdk-php/src/LicenseManagerLinuxSubscriptions/LicenseManagerLinuxSubscriptionsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LicenseManagerUserSubscriptions/Exception/LicenseManagerUserSubscriptionsException.php b/vendor/aws/aws-sdk-php/src/LicenseManagerUserSubscriptions/Exception/LicenseManagerUserSubscriptionsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LicenseManagerUserSubscriptions/LicenseManagerUserSubscriptionsClient.php b/vendor/aws/aws-sdk-php/src/LicenseManagerUserSubscriptions/LicenseManagerUserSubscriptionsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Lightsail/Exception/LightsailException.php b/vendor/aws/aws-sdk-php/src/Lightsail/Exception/LightsailException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Lightsail/LightsailClient.php b/vendor/aws/aws-sdk-php/src/Lightsail/LightsailClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LocationService/Exception/LocationServiceException.php b/vendor/aws/aws-sdk-php/src/LocationService/Exception/LocationServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LocationService/LocationServiceClient.php b/vendor/aws/aws-sdk-php/src/LocationService/LocationServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LookoutEquipment/Exception/LookoutEquipmentException.php b/vendor/aws/aws-sdk-php/src/LookoutEquipment/Exception/LookoutEquipmentException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LookoutEquipment/LookoutEquipmentClient.php b/vendor/aws/aws-sdk-php/src/LookoutEquipment/LookoutEquipmentClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/LruArrayCache.php b/vendor/aws/aws-sdk-php/src/LruArrayCache.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MPA/Exception/MPAException.php b/vendor/aws/aws-sdk-php/src/MPA/Exception/MPAException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MPA/MPAClient.php b/vendor/aws/aws-sdk-php/src/MPA/MPAClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MQ/Exception/MQException.php b/vendor/aws/aws-sdk-php/src/MQ/Exception/MQException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MQ/MQClient.php b/vendor/aws/aws-sdk-php/src/MQ/MQClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MTurk/Exception/MTurkException.php b/vendor/aws/aws-sdk-php/src/MTurk/Exception/MTurkException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MTurk/MTurkClient.php b/vendor/aws/aws-sdk-php/src/MTurk/MTurkClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MWAA/Exception/MWAAException.php b/vendor/aws/aws-sdk-php/src/MWAA/Exception/MWAAException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MWAA/MWAAClient.php b/vendor/aws/aws-sdk-php/src/MWAA/MWAAClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MWAAServerless/Exception/MWAAServerlessException.php b/vendor/aws/aws-sdk-php/src/MWAAServerless/Exception/MWAAServerlessException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MWAAServerless/MWAAServerlessClient.php b/vendor/aws/aws-sdk-php/src/MWAAServerless/MWAAServerlessClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MachineLearning/Exception/MachineLearningException.php b/vendor/aws/aws-sdk-php/src/MachineLearning/Exception/MachineLearningException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MachineLearning/MachineLearningClient.php b/vendor/aws/aws-sdk-php/src/MachineLearning/MachineLearningClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Macie2/Exception/Macie2Exception.php b/vendor/aws/aws-sdk-php/src/Macie2/Exception/Macie2Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Macie2/Macie2Client.php b/vendor/aws/aws-sdk-php/src/Macie2/Macie2Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MailManager/Exception/MailManagerException.php b/vendor/aws/aws-sdk-php/src/MailManager/Exception/MailManagerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MailManager/MailManagerClient.php b/vendor/aws/aws-sdk-php/src/MailManager/MailManagerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MainframeModernization/Exception/MainframeModernizationException.php b/vendor/aws/aws-sdk-php/src/MainframeModernization/Exception/MainframeModernizationException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MainframeModernization/MainframeModernizationClient.php b/vendor/aws/aws-sdk-php/src/MainframeModernization/MainframeModernizationClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ManagedBlockchain/Exception/ManagedBlockchainException.php b/vendor/aws/aws-sdk-php/src/ManagedBlockchain/Exception/ManagedBlockchainException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ManagedBlockchain/ManagedBlockchainClient.php b/vendor/aws/aws-sdk-php/src/ManagedBlockchain/ManagedBlockchainClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ManagedBlockchainQuery/Exception/ManagedBlockchainQueryException.php b/vendor/aws/aws-sdk-php/src/ManagedBlockchainQuery/Exception/ManagedBlockchainQueryException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ManagedBlockchainQuery/ManagedBlockchainQueryClient.php b/vendor/aws/aws-sdk-php/src/ManagedBlockchainQuery/ManagedBlockchainQueryClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ManagedGrafana/Exception/ManagedGrafanaException.php b/vendor/aws/aws-sdk-php/src/ManagedGrafana/Exception/ManagedGrafanaException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ManagedGrafana/ManagedGrafanaClient.php b/vendor/aws/aws-sdk-php/src/ManagedGrafana/ManagedGrafanaClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MarketplaceAgreement/Exception/MarketplaceAgreementException.php b/vendor/aws/aws-sdk-php/src/MarketplaceAgreement/Exception/MarketplaceAgreementException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MarketplaceAgreement/MarketplaceAgreementClient.php b/vendor/aws/aws-sdk-php/src/MarketplaceAgreement/MarketplaceAgreementClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MarketplaceCatalog/Exception/MarketplaceCatalogException.php b/vendor/aws/aws-sdk-php/src/MarketplaceCatalog/Exception/MarketplaceCatalogException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MarketplaceCatalog/MarketplaceCatalogClient.php b/vendor/aws/aws-sdk-php/src/MarketplaceCatalog/MarketplaceCatalogClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MarketplaceCommerceAnalytics/Exception/MarketplaceCommerceAnalyticsException.php b/vendor/aws/aws-sdk-php/src/MarketplaceCommerceAnalytics/Exception/MarketplaceCommerceAnalyticsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MarketplaceCommerceAnalytics/MarketplaceCommerceAnalyticsClient.php b/vendor/aws/aws-sdk-php/src/MarketplaceCommerceAnalytics/MarketplaceCommerceAnalyticsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MarketplaceDeployment/Exception/MarketplaceDeploymentException.php b/vendor/aws/aws-sdk-php/src/MarketplaceDeployment/Exception/MarketplaceDeploymentException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MarketplaceDeployment/MarketplaceDeploymentClient.php b/vendor/aws/aws-sdk-php/src/MarketplaceDeployment/MarketplaceDeploymentClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MarketplaceEntitlementService/Exception/MarketplaceEntitlementServiceException.php b/vendor/aws/aws-sdk-php/src/MarketplaceEntitlementService/Exception/MarketplaceEntitlementServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MarketplaceEntitlementService/MarketplaceEntitlementServiceClient.php b/vendor/aws/aws-sdk-php/src/MarketplaceEntitlementService/MarketplaceEntitlementServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MarketplaceMetering/Exception/MarketplaceMeteringException.php b/vendor/aws/aws-sdk-php/src/MarketplaceMetering/Exception/MarketplaceMeteringException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MarketplaceMetering/MarketplaceMeteringClient.php b/vendor/aws/aws-sdk-php/src/MarketplaceMetering/MarketplaceMeteringClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MarketplaceReporting/Exception/MarketplaceReportingException.php b/vendor/aws/aws-sdk-php/src/MarketplaceReporting/Exception/MarketplaceReportingException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MarketplaceReporting/MarketplaceReportingClient.php b/vendor/aws/aws-sdk-php/src/MarketplaceReporting/MarketplaceReportingClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaConnect/Exception/MediaConnectException.php b/vendor/aws/aws-sdk-php/src/MediaConnect/Exception/MediaConnectException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaConnect/MediaConnectClient.php b/vendor/aws/aws-sdk-php/src/MediaConnect/MediaConnectClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaConvert/Exception/MediaConvertException.php b/vendor/aws/aws-sdk-php/src/MediaConvert/Exception/MediaConvertException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaConvert/MediaConvertClient.php b/vendor/aws/aws-sdk-php/src/MediaConvert/MediaConvertClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaLive/Exception/MediaLiveException.php b/vendor/aws/aws-sdk-php/src/MediaLive/Exception/MediaLiveException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaLive/MediaLiveClient.php b/vendor/aws/aws-sdk-php/src/MediaLive/MediaLiveClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaPackage/Exception/MediaPackageException.php b/vendor/aws/aws-sdk-php/src/MediaPackage/Exception/MediaPackageException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaPackage/MediaPackageClient.php b/vendor/aws/aws-sdk-php/src/MediaPackage/MediaPackageClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaPackageV2/Exception/MediaPackageV2Exception.php b/vendor/aws/aws-sdk-php/src/MediaPackageV2/Exception/MediaPackageV2Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaPackageV2/MediaPackageV2Client.php b/vendor/aws/aws-sdk-php/src/MediaPackageV2/MediaPackageV2Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaPackageVod/Exception/MediaPackageVodException.php b/vendor/aws/aws-sdk-php/src/MediaPackageVod/Exception/MediaPackageVodException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaPackageVod/MediaPackageVodClient.php b/vendor/aws/aws-sdk-php/src/MediaPackageVod/MediaPackageVodClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaStore/Exception/MediaStoreException.php b/vendor/aws/aws-sdk-php/src/MediaStore/Exception/MediaStoreException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaStore/MediaStoreClient.php b/vendor/aws/aws-sdk-php/src/MediaStore/MediaStoreClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaStoreData/Exception/MediaStoreDataException.php b/vendor/aws/aws-sdk-php/src/MediaStoreData/Exception/MediaStoreDataException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaStoreData/MediaStoreDataClient.php b/vendor/aws/aws-sdk-php/src/MediaStoreData/MediaStoreDataClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaTailor/Exception/MediaTailorException.php b/vendor/aws/aws-sdk-php/src/MediaTailor/Exception/MediaTailorException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MediaTailor/MediaTailorClient.php b/vendor/aws/aws-sdk-php/src/MediaTailor/MediaTailorClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MedicalImaging/Exception/MedicalImagingException.php b/vendor/aws/aws-sdk-php/src/MedicalImaging/Exception/MedicalImagingException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MedicalImaging/MedicalImagingClient.php b/vendor/aws/aws-sdk-php/src/MedicalImaging/MedicalImagingClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MemoryDB/Exception/MemoryDBException.php b/vendor/aws/aws-sdk-php/src/MemoryDB/Exception/MemoryDBException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MemoryDB/MemoryDBClient.php b/vendor/aws/aws-sdk-php/src/MemoryDB/MemoryDBClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MetricsBuilder.php b/vendor/aws/aws-sdk-php/src/MetricsBuilder.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Middleware.php b/vendor/aws/aws-sdk-php/src/Middleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MigrationHub/Exception/MigrationHubException.php b/vendor/aws/aws-sdk-php/src/MigrationHub/Exception/MigrationHubException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MigrationHub/MigrationHubClient.php b/vendor/aws/aws-sdk-php/src/MigrationHub/MigrationHubClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MigrationHubConfig/Exception/MigrationHubConfigException.php b/vendor/aws/aws-sdk-php/src/MigrationHubConfig/Exception/MigrationHubConfigException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MigrationHubConfig/MigrationHubConfigClient.php b/vendor/aws/aws-sdk-php/src/MigrationHubConfig/MigrationHubConfigClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MigrationHubOrchestrator/Exception/MigrationHubOrchestratorException.php b/vendor/aws/aws-sdk-php/src/MigrationHubOrchestrator/Exception/MigrationHubOrchestratorException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MigrationHubOrchestrator/MigrationHubOrchestratorClient.php b/vendor/aws/aws-sdk-php/src/MigrationHubOrchestrator/MigrationHubOrchestratorClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MigrationHubRefactorSpaces/Exception/MigrationHubRefactorSpacesException.php b/vendor/aws/aws-sdk-php/src/MigrationHubRefactorSpaces/Exception/MigrationHubRefactorSpacesException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MigrationHubRefactorSpaces/MigrationHubRefactorSpacesClient.php b/vendor/aws/aws-sdk-php/src/MigrationHubRefactorSpaces/MigrationHubRefactorSpacesClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MigrationHubStrategyRecommendations/Exception/MigrationHubStrategyRecommendationsException.php b/vendor/aws/aws-sdk-php/src/MigrationHubStrategyRecommendations/Exception/MigrationHubStrategyRecommendationsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MigrationHubStrategyRecommendations/MigrationHubStrategyRecommendationsClient.php b/vendor/aws/aws-sdk-php/src/MigrationHubStrategyRecommendations/MigrationHubStrategyRecommendationsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MockHandler.php b/vendor/aws/aws-sdk-php/src/MockHandler.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MonitoringEventsInterface.php b/vendor/aws/aws-sdk-php/src/MonitoringEventsInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/MultiRegionClient.php b/vendor/aws/aws-sdk-php/src/MultiRegionClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Multipart/AbstractUploadManager.php b/vendor/aws/aws-sdk-php/src/Multipart/AbstractUploadManager.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Multipart/AbstractUploader.php b/vendor/aws/aws-sdk-php/src/Multipart/AbstractUploader.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Multipart/UploadState.php b/vendor/aws/aws-sdk-php/src/Multipart/UploadState.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Neptune/Exception/NeptuneException.php b/vendor/aws/aws-sdk-php/src/Neptune/Exception/NeptuneException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Neptune/NeptuneClient.php b/vendor/aws/aws-sdk-php/src/Neptune/NeptuneClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/NeptuneGraph/Exception/NeptuneGraphException.php b/vendor/aws/aws-sdk-php/src/NeptuneGraph/Exception/NeptuneGraphException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/NeptuneGraph/NeptuneGraphClient.php b/vendor/aws/aws-sdk-php/src/NeptuneGraph/NeptuneGraphClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Neptunedata/Exception/NeptunedataException.php b/vendor/aws/aws-sdk-php/src/Neptunedata/Exception/NeptunedataException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Neptunedata/NeptunedataClient.php b/vendor/aws/aws-sdk-php/src/Neptunedata/NeptunedataClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/NetworkFirewall/Exception/NetworkFirewallException.php b/vendor/aws/aws-sdk-php/src/NetworkFirewall/Exception/NetworkFirewallException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/NetworkFirewall/NetworkFirewallClient.php b/vendor/aws/aws-sdk-php/src/NetworkFirewall/NetworkFirewallClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/NetworkFlowMonitor/Exception/NetworkFlowMonitorException.php b/vendor/aws/aws-sdk-php/src/NetworkFlowMonitor/Exception/NetworkFlowMonitorException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/NetworkFlowMonitor/NetworkFlowMonitorClient.php b/vendor/aws/aws-sdk-php/src/NetworkFlowMonitor/NetworkFlowMonitorClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/NetworkManager/Exception/NetworkManagerException.php b/vendor/aws/aws-sdk-php/src/NetworkManager/Exception/NetworkManagerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/NetworkManager/NetworkManagerClient.php b/vendor/aws/aws-sdk-php/src/NetworkManager/NetworkManagerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/NetworkMonitor/Exception/NetworkMonitorException.php b/vendor/aws/aws-sdk-php/src/NetworkMonitor/Exception/NetworkMonitorException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/NetworkMonitor/NetworkMonitorClient.php b/vendor/aws/aws-sdk-php/src/NetworkMonitor/NetworkMonitorClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Notifications/Exception/NotificationsException.php b/vendor/aws/aws-sdk-php/src/Notifications/Exception/NotificationsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Notifications/NotificationsClient.php b/vendor/aws/aws-sdk-php/src/Notifications/NotificationsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/NotificationsContacts/Exception/NotificationsContactsException.php b/vendor/aws/aws-sdk-php/src/NotificationsContacts/Exception/NotificationsContactsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/NotificationsContacts/NotificationsContactsClient.php b/vendor/aws/aws-sdk-php/src/NotificationsContacts/NotificationsContactsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/NovaAct/Exception/NovaActException.php b/vendor/aws/aws-sdk-php/src/NovaAct/Exception/NovaActException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/NovaAct/NovaActClient.php b/vendor/aws/aws-sdk-php/src/NovaAct/NovaActClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/OAM/Exception/OAMException.php b/vendor/aws/aws-sdk-php/src/OAM/Exception/OAMException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/OAM/OAMClient.php b/vendor/aws/aws-sdk-php/src/OAM/OAMClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/OSIS/Exception/OSISException.php b/vendor/aws/aws-sdk-php/src/OSIS/Exception/OSISException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/OSIS/OSISClient.php b/vendor/aws/aws-sdk-php/src/OSIS/OSISClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ObservabilityAdmin/Exception/ObservabilityAdminException.php b/vendor/aws/aws-sdk-php/src/ObservabilityAdmin/Exception/ObservabilityAdminException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ObservabilityAdmin/ObservabilityAdminClient.php b/vendor/aws/aws-sdk-php/src/ObservabilityAdmin/ObservabilityAdminClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Odb/Exception/OdbException.php b/vendor/aws/aws-sdk-php/src/Odb/Exception/OdbException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Odb/OdbClient.php b/vendor/aws/aws-sdk-php/src/Odb/OdbClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Omics/Exception/OmicsException.php b/vendor/aws/aws-sdk-php/src/Omics/Exception/OmicsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Omics/OmicsClient.php b/vendor/aws/aws-sdk-php/src/Omics/OmicsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/OpenSearchServerless/Exception/OpenSearchServerlessException.php b/vendor/aws/aws-sdk-php/src/OpenSearchServerless/Exception/OpenSearchServerlessException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/OpenSearchServerless/OpenSearchServerlessClient.php b/vendor/aws/aws-sdk-php/src/OpenSearchServerless/OpenSearchServerlessClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/OpenSearchService/Exception/OpenSearchServiceException.php b/vendor/aws/aws-sdk-php/src/OpenSearchService/Exception/OpenSearchServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/OpenSearchService/OpenSearchServiceClient.php b/vendor/aws/aws-sdk-php/src/OpenSearchService/OpenSearchServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Organizations/Exception/OrganizationsException.php b/vendor/aws/aws-sdk-php/src/Organizations/Exception/OrganizationsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Organizations/OrganizationsClient.php b/vendor/aws/aws-sdk-php/src/Organizations/OrganizationsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Outposts/Exception/OutpostsException.php b/vendor/aws/aws-sdk-php/src/Outposts/Exception/OutpostsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Outposts/OutpostsClient.php b/vendor/aws/aws-sdk-php/src/Outposts/OutpostsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PCS/Exception/PCSException.php b/vendor/aws/aws-sdk-php/src/PCS/Exception/PCSException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PCS/PCSClient.php b/vendor/aws/aws-sdk-php/src/PCS/PCSClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PI/Exception/PIException.php b/vendor/aws/aws-sdk-php/src/PI/Exception/PIException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PI/PIClient.php b/vendor/aws/aws-sdk-php/src/PI/PIClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Panorama/Exception/PanoramaException.php b/vendor/aws/aws-sdk-php/src/Panorama/Exception/PanoramaException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Panorama/PanoramaClient.php b/vendor/aws/aws-sdk-php/src/Panorama/PanoramaClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PartnerCentralAccount/Exception/PartnerCentralAccountException.php b/vendor/aws/aws-sdk-php/src/PartnerCentralAccount/Exception/PartnerCentralAccountException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PartnerCentralAccount/PartnerCentralAccountClient.php b/vendor/aws/aws-sdk-php/src/PartnerCentralAccount/PartnerCentralAccountClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PartnerCentralBenefits/Exception/PartnerCentralBenefitsException.php b/vendor/aws/aws-sdk-php/src/PartnerCentralBenefits/Exception/PartnerCentralBenefitsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PartnerCentralBenefits/PartnerCentralBenefitsClient.php b/vendor/aws/aws-sdk-php/src/PartnerCentralBenefits/PartnerCentralBenefitsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PartnerCentralChannel/Exception/PartnerCentralChannelException.php b/vendor/aws/aws-sdk-php/src/PartnerCentralChannel/Exception/PartnerCentralChannelException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PartnerCentralChannel/PartnerCentralChannelClient.php b/vendor/aws/aws-sdk-php/src/PartnerCentralChannel/PartnerCentralChannelClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PartnerCentralSelling/Exception/PartnerCentralSellingException.php b/vendor/aws/aws-sdk-php/src/PartnerCentralSelling/Exception/PartnerCentralSellingException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PartnerCentralSelling/PartnerCentralSellingClient.php b/vendor/aws/aws-sdk-php/src/PartnerCentralSelling/PartnerCentralSellingClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PaymentCryptography/Exception/PaymentCryptographyException.php b/vendor/aws/aws-sdk-php/src/PaymentCryptography/Exception/PaymentCryptographyException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PaymentCryptography/PaymentCryptographyClient.php b/vendor/aws/aws-sdk-php/src/PaymentCryptography/PaymentCryptographyClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PaymentCryptographyData/Exception/PaymentCryptographyDataException.php b/vendor/aws/aws-sdk-php/src/PaymentCryptographyData/Exception/PaymentCryptographyDataException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PaymentCryptographyData/PaymentCryptographyDataClient.php b/vendor/aws/aws-sdk-php/src/PaymentCryptographyData/PaymentCryptographyDataClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PcaConnectorAd/Exception/PcaConnectorAdException.php b/vendor/aws/aws-sdk-php/src/PcaConnectorAd/Exception/PcaConnectorAdException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PcaConnectorAd/PcaConnectorAdClient.php b/vendor/aws/aws-sdk-php/src/PcaConnectorAd/PcaConnectorAdClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PcaConnectorScep/Exception/PcaConnectorScepException.php b/vendor/aws/aws-sdk-php/src/PcaConnectorScep/Exception/PcaConnectorScepException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PcaConnectorScep/PcaConnectorScepClient.php b/vendor/aws/aws-sdk-php/src/PcaConnectorScep/PcaConnectorScepClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Personalize/Exception/PersonalizeException.php b/vendor/aws/aws-sdk-php/src/Personalize/Exception/PersonalizeException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Personalize/PersonalizeClient.php b/vendor/aws/aws-sdk-php/src/Personalize/PersonalizeClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PersonalizeEvents/Exception/PersonalizeEventsException.php b/vendor/aws/aws-sdk-php/src/PersonalizeEvents/Exception/PersonalizeEventsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PersonalizeEvents/PersonalizeEventsClient.php b/vendor/aws/aws-sdk-php/src/PersonalizeEvents/PersonalizeEventsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PersonalizeRuntime/Exception/PersonalizeRuntimeException.php b/vendor/aws/aws-sdk-php/src/PersonalizeRuntime/Exception/PersonalizeRuntimeException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PersonalizeRuntime/PersonalizeRuntimeClient.php b/vendor/aws/aws-sdk-php/src/PersonalizeRuntime/PersonalizeRuntimeClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PhpHash.php b/vendor/aws/aws-sdk-php/src/PhpHash.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Pinpoint/Exception/PinpointException.php b/vendor/aws/aws-sdk-php/src/Pinpoint/Exception/PinpointException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Pinpoint/PinpointClient.php b/vendor/aws/aws-sdk-php/src/Pinpoint/PinpointClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PinpointEmail/Exception/PinpointEmailException.php b/vendor/aws/aws-sdk-php/src/PinpointEmail/Exception/PinpointEmailException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PinpointEmail/PinpointEmailClient.php b/vendor/aws/aws-sdk-php/src/PinpointEmail/PinpointEmailClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PinpointSMSVoice/Exception/PinpointSMSVoiceException.php b/vendor/aws/aws-sdk-php/src/PinpointSMSVoice/Exception/PinpointSMSVoiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PinpointSMSVoice/PinpointSMSVoiceClient.php b/vendor/aws/aws-sdk-php/src/PinpointSMSVoice/PinpointSMSVoiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PinpointSMSVoiceV2/Exception/PinpointSMSVoiceV2Exception.php b/vendor/aws/aws-sdk-php/src/PinpointSMSVoiceV2/Exception/PinpointSMSVoiceV2Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PinpointSMSVoiceV2/PinpointSMSVoiceV2Client.php b/vendor/aws/aws-sdk-php/src/PinpointSMSVoiceV2/PinpointSMSVoiceV2Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Pipes/Exception/PipesException.php b/vendor/aws/aws-sdk-php/src/Pipes/Exception/PipesException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Pipes/PipesClient.php b/vendor/aws/aws-sdk-php/src/Pipes/PipesClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Polly/Exception/PollyException.php b/vendor/aws/aws-sdk-php/src/Polly/Exception/PollyException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Polly/PollyClient.php b/vendor/aws/aws-sdk-php/src/Polly/PollyClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PresignUrlMiddleware.php b/vendor/aws/aws-sdk-php/src/PresignUrlMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Pricing/Exception/PricingException.php b/vendor/aws/aws-sdk-php/src/Pricing/Exception/PricingException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Pricing/PricingClient.php b/vendor/aws/aws-sdk-php/src/Pricing/PricingClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PrometheusService/Exception/PrometheusServiceException.php b/vendor/aws/aws-sdk-php/src/PrometheusService/Exception/PrometheusServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PrometheusService/PrometheusServiceClient.php b/vendor/aws/aws-sdk-php/src/PrometheusService/PrometheusServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Proton/Exception/ProtonException.php b/vendor/aws/aws-sdk-php/src/Proton/Exception/ProtonException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Proton/ProtonClient.php b/vendor/aws/aws-sdk-php/src/Proton/ProtonClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Psr16CacheAdapter.php b/vendor/aws/aws-sdk-php/src/Psr16CacheAdapter.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/PsrCacheAdapter.php b/vendor/aws/aws-sdk-php/src/PsrCacheAdapter.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/QApps/Exception/QAppsException.php b/vendor/aws/aws-sdk-php/src/QApps/Exception/QAppsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/QApps/QAppsClient.php b/vendor/aws/aws-sdk-php/src/QApps/QAppsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/QBusiness/Exception/QBusinessException.php b/vendor/aws/aws-sdk-php/src/QBusiness/Exception/QBusinessException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/QBusiness/QBusinessClient.php b/vendor/aws/aws-sdk-php/src/QBusiness/QBusinessClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/QConnect/Exception/QConnectException.php b/vendor/aws/aws-sdk-php/src/QConnect/Exception/QConnectException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/QConnect/QConnectClient.php b/vendor/aws/aws-sdk-php/src/QConnect/QConnectClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/QueryCompatibleInputMiddleware.php b/vendor/aws/aws-sdk-php/src/QueryCompatibleInputMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/QuickSight/Exception/QuickSightException.php b/vendor/aws/aws-sdk-php/src/QuickSight/Exception/QuickSightException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/QuickSight/QuickSightClient.php b/vendor/aws/aws-sdk-php/src/QuickSight/QuickSightClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/RAM/Exception/RAMException.php b/vendor/aws/aws-sdk-php/src/RAM/Exception/RAMException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/RAM/RAMClient.php b/vendor/aws/aws-sdk-php/src/RAM/RAMClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/RDSDataService/Exception/RDSDataServiceException.php b/vendor/aws/aws-sdk-php/src/RDSDataService/Exception/RDSDataServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/RDSDataService/RDSDataServiceClient.php b/vendor/aws/aws-sdk-php/src/RDSDataService/RDSDataServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/RTBFabric/Exception/RTBFabricException.php b/vendor/aws/aws-sdk-php/src/RTBFabric/Exception/RTBFabricException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/RTBFabric/RTBFabricClient.php b/vendor/aws/aws-sdk-php/src/RTBFabric/RTBFabricClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Rds/AuthTokenGenerator.php b/vendor/aws/aws-sdk-php/src/Rds/AuthTokenGenerator.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Rds/Exception/RdsException.php b/vendor/aws/aws-sdk-php/src/Rds/Exception/RdsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Rds/RdsClient.php b/vendor/aws/aws-sdk-php/src/Rds/RdsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/RecycleBin/Exception/RecycleBinException.php b/vendor/aws/aws-sdk-php/src/RecycleBin/Exception/RecycleBinException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/RecycleBin/RecycleBinClient.php b/vendor/aws/aws-sdk-php/src/RecycleBin/RecycleBinClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Redshift/Exception/RedshiftException.php b/vendor/aws/aws-sdk-php/src/Redshift/Exception/RedshiftException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Redshift/RedshiftClient.php b/vendor/aws/aws-sdk-php/src/Redshift/RedshiftClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/RedshiftDataAPIService/Exception/RedshiftDataAPIServiceException.php b/vendor/aws/aws-sdk-php/src/RedshiftDataAPIService/Exception/RedshiftDataAPIServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/RedshiftDataAPIService/RedshiftDataAPIServiceClient.php b/vendor/aws/aws-sdk-php/src/RedshiftDataAPIService/RedshiftDataAPIServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/RedshiftServerless/Exception/RedshiftServerlessException.php b/vendor/aws/aws-sdk-php/src/RedshiftServerless/Exception/RedshiftServerlessException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/RedshiftServerless/RedshiftServerlessClient.php b/vendor/aws/aws-sdk-php/src/RedshiftServerless/RedshiftServerlessClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Rekognition/Exception/RekognitionException.php b/vendor/aws/aws-sdk-php/src/Rekognition/Exception/RekognitionException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Rekognition/RekognitionClient.php b/vendor/aws/aws-sdk-php/src/Rekognition/RekognitionClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Repostspace/Exception/RepostspaceException.php b/vendor/aws/aws-sdk-php/src/Repostspace/Exception/RepostspaceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Repostspace/RepostspaceClient.php b/vendor/aws/aws-sdk-php/src/Repostspace/RepostspaceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/RequestCompressionMiddleware.php b/vendor/aws/aws-sdk-php/src/RequestCompressionMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ResilienceHub/Exception/ResilienceHubException.php b/vendor/aws/aws-sdk-php/src/ResilienceHub/Exception/ResilienceHubException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ResilienceHub/ResilienceHubClient.php b/vendor/aws/aws-sdk-php/src/ResilienceHub/ResilienceHubClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ResourceExplorer2/Exception/ResourceExplorer2Exception.php b/vendor/aws/aws-sdk-php/src/ResourceExplorer2/Exception/ResourceExplorer2Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ResourceExplorer2/ResourceExplorer2Client.php b/vendor/aws/aws-sdk-php/src/ResourceExplorer2/ResourceExplorer2Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ResourceGroups/Exception/ResourceGroupsException.php b/vendor/aws/aws-sdk-php/src/ResourceGroups/Exception/ResourceGroupsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ResourceGroups/ResourceGroupsClient.php b/vendor/aws/aws-sdk-php/src/ResourceGroups/ResourceGroupsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ResourceGroupsTaggingAPI/Exception/ResourceGroupsTaggingAPIException.php b/vendor/aws/aws-sdk-php/src/ResourceGroupsTaggingAPI/Exception/ResourceGroupsTaggingAPIException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ResourceGroupsTaggingAPI/ResourceGroupsTaggingAPIClient.php b/vendor/aws/aws-sdk-php/src/ResourceGroupsTaggingAPI/ResourceGroupsTaggingAPIClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ResponseContainerInterface.php b/vendor/aws/aws-sdk-php/src/ResponseContainerInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Result.php b/vendor/aws/aws-sdk-php/src/Result.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ResultInterface.php b/vendor/aws/aws-sdk-php/src/ResultInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ResultPaginator.php b/vendor/aws/aws-sdk-php/src/ResultPaginator.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Retry/Configuration.php b/vendor/aws/aws-sdk-php/src/Retry/Configuration.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Retry/ConfigurationInterface.php b/vendor/aws/aws-sdk-php/src/Retry/ConfigurationInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Retry/ConfigurationProvider.php b/vendor/aws/aws-sdk-php/src/Retry/ConfigurationProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Retry/Exception/ConfigurationException.php b/vendor/aws/aws-sdk-php/src/Retry/Exception/ConfigurationException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Retry/QuotaManager.php b/vendor/aws/aws-sdk-php/src/Retry/QuotaManager.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Retry/RateLimiter.php b/vendor/aws/aws-sdk-php/src/Retry/RateLimiter.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Retry/RetryHelperTrait.php b/vendor/aws/aws-sdk-php/src/Retry/RetryHelperTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/RetryMiddleware.php b/vendor/aws/aws-sdk-php/src/RetryMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/RetryMiddlewareV2.php b/vendor/aws/aws-sdk-php/src/RetryMiddlewareV2.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/RolesAnywhere/Exception/RolesAnywhereException.php b/vendor/aws/aws-sdk-php/src/RolesAnywhere/Exception/RolesAnywhereException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/RolesAnywhere/RolesAnywhereClient.php b/vendor/aws/aws-sdk-php/src/RolesAnywhere/RolesAnywhereClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Route53/Exception/Route53Exception.php b/vendor/aws/aws-sdk-php/src/Route53/Exception/Route53Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Route53/Route53Client.php b/vendor/aws/aws-sdk-php/src/Route53/Route53Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Route53Domains/Exception/Route53DomainsException.php b/vendor/aws/aws-sdk-php/src/Route53Domains/Exception/Route53DomainsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Route53Domains/Route53DomainsClient.php b/vendor/aws/aws-sdk-php/src/Route53Domains/Route53DomainsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Route53GlobalResolver/Exception/Route53GlobalResolverException.php b/vendor/aws/aws-sdk-php/src/Route53GlobalResolver/Exception/Route53GlobalResolverException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Route53GlobalResolver/Route53GlobalResolverClient.php b/vendor/aws/aws-sdk-php/src/Route53GlobalResolver/Route53GlobalResolverClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Route53Profiles/Exception/Route53ProfilesException.php b/vendor/aws/aws-sdk-php/src/Route53Profiles/Exception/Route53ProfilesException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Route53Profiles/Route53ProfilesClient.php b/vendor/aws/aws-sdk-php/src/Route53Profiles/Route53ProfilesClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Route53RecoveryCluster/Exception/Route53RecoveryClusterException.php b/vendor/aws/aws-sdk-php/src/Route53RecoveryCluster/Exception/Route53RecoveryClusterException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Route53RecoveryCluster/Route53RecoveryClusterClient.php b/vendor/aws/aws-sdk-php/src/Route53RecoveryCluster/Route53RecoveryClusterClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Route53RecoveryControlConfig/Exception/Route53RecoveryControlConfigException.php b/vendor/aws/aws-sdk-php/src/Route53RecoveryControlConfig/Exception/Route53RecoveryControlConfigException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Route53RecoveryControlConfig/Route53RecoveryControlConfigClient.php b/vendor/aws/aws-sdk-php/src/Route53RecoveryControlConfig/Route53RecoveryControlConfigClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Route53RecoveryReadiness/Exception/Route53RecoveryReadinessException.php b/vendor/aws/aws-sdk-php/src/Route53RecoveryReadiness/Exception/Route53RecoveryReadinessException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Route53RecoveryReadiness/Route53RecoveryReadinessClient.php b/vendor/aws/aws-sdk-php/src/Route53RecoveryReadiness/Route53RecoveryReadinessClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Route53Resolver/Exception/Route53ResolverException.php b/vendor/aws/aws-sdk-php/src/Route53Resolver/Exception/Route53ResolverException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Route53Resolver/Route53ResolverClient.php b/vendor/aws/aws-sdk-php/src/Route53Resolver/Route53ResolverClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/AmbiguousSuccessParser.php b/vendor/aws/aws-sdk-php/src/S3/AmbiguousSuccessParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/ApplyChecksumMiddleware.php b/vendor/aws/aws-sdk-php/src/S3/ApplyChecksumMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/BatchDelete.php b/vendor/aws/aws-sdk-php/src/S3/BatchDelete.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/BucketEndpointArnMiddleware.php b/vendor/aws/aws-sdk-php/src/S3/BucketEndpointArnMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/BucketEndpointMiddleware.php b/vendor/aws/aws-sdk-php/src/S3/BucketEndpointMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/CalculatesChecksumTrait.php b/vendor/aws/aws-sdk-php/src/S3/CalculatesChecksumTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Crypto/CryptoParamsTrait.php b/vendor/aws/aws-sdk-php/src/S3/Crypto/CryptoParamsTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Crypto/CryptoParamsTraitV2.php b/vendor/aws/aws-sdk-php/src/S3/Crypto/CryptoParamsTraitV2.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Crypto/CryptoParamsTraitV3.php b/vendor/aws/aws-sdk-php/src/S3/Crypto/CryptoParamsTraitV3.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Crypto/HeadersMetadataStrategy.php b/vendor/aws/aws-sdk-php/src/S3/Crypto/HeadersMetadataStrategy.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Crypto/InstructionFileMetadataStrategy.php b/vendor/aws/aws-sdk-php/src/S3/Crypto/InstructionFileMetadataStrategy.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionClient.php b/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionClientV2.php b/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionClientV2.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionClientV3.php b/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionClientV3.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionMultipartUploader.php b/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionMultipartUploader.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionMultipartUploaderV2.php b/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionMultipartUploaderV2.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionMultipartUploaderV3.php b/vendor/aws/aws-sdk-php/src/S3/Crypto/S3EncryptionMultipartUploaderV3.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Crypto/S3_EC_SUPPORT_POLICY.md b/vendor/aws/aws-sdk-php/src/S3/Crypto/S3_EC_SUPPORT_POLICY.md
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Crypto/UserAgentTrait.php b/vendor/aws/aws-sdk-php/src/S3/Crypto/UserAgentTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/EndpointRegionHelperTrait.php b/vendor/aws/aws-sdk-php/src/S3/EndpointRegionHelperTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Exception/DeleteMultipleObjectsException.php b/vendor/aws/aws-sdk-php/src/S3/Exception/DeleteMultipleObjectsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Exception/PermanentRedirectException.php b/vendor/aws/aws-sdk-php/src/S3/Exception/PermanentRedirectException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Exception/S3Exception.php b/vendor/aws/aws-sdk-php/src/S3/Exception/S3Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Exception/S3MultipartUploadException.php b/vendor/aws/aws-sdk-php/src/S3/Exception/S3MultipartUploadException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/ExpiresParsingMiddleware.php b/vendor/aws/aws-sdk-php/src/S3/ExpiresParsingMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/GetBucketLocationParser.php b/vendor/aws/aws-sdk-php/src/S3/GetBucketLocationParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/MultipartCopy.php b/vendor/aws/aws-sdk-php/src/S3/MultipartCopy.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/MultipartUploader.php b/vendor/aws/aws-sdk-php/src/S3/MultipartUploader.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/MultipartUploadingTrait.php b/vendor/aws/aws-sdk-php/src/S3/MultipartUploadingTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/ObjectCopier.php b/vendor/aws/aws-sdk-php/src/S3/ObjectCopier.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/ObjectUploader.php b/vendor/aws/aws-sdk-php/src/S3/ObjectUploader.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Parser/GetBucketLocationResultMutator.php b/vendor/aws/aws-sdk-php/src/S3/Parser/GetBucketLocationResultMutator.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Parser/S3Parser.php b/vendor/aws/aws-sdk-php/src/S3/Parser/S3Parser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Parser/S3ResultMutator.php b/vendor/aws/aws-sdk-php/src/S3/Parser/S3ResultMutator.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Parser/ValidateResponseChecksumResultMutator.php b/vendor/aws/aws-sdk-php/src/S3/Parser/ValidateResponseChecksumResultMutator.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/PermanentRedirectMiddleware.php b/vendor/aws/aws-sdk-php/src/S3/PermanentRedirectMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/PostObject.php b/vendor/aws/aws-sdk-php/src/S3/PostObject.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/PostObjectV4.php b/vendor/aws/aws-sdk-php/src/S3/PostObjectV4.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/PutObjectUrlMiddleware.php b/vendor/aws/aws-sdk-php/src/S3/PutObjectUrlMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/Configuration.php b/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/Configuration.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/ConfigurationInterface.php b/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/ConfigurationInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/ConfigurationProvider.php b/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/ConfigurationProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/Exception/ConfigurationException.php b/vendor/aws/aws-sdk-php/src/S3/RegionalEndpoint/Exception/ConfigurationException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/RetryableMalformedResponseParser.php b/vendor/aws/aws-sdk-php/src/S3/RetryableMalformedResponseParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Client.php b/vendor/aws/aws-sdk-php/src/S3/S3Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3ClientInterface.php b/vendor/aws/aws-sdk-php/src/S3/S3ClientInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3ClientTrait.php b/vendor/aws/aws-sdk-php/src/S3/S3ClientTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3EndpointMiddleware.php b/vendor/aws/aws-sdk-php/src/S3/S3EndpointMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3MultiRegionClient.php b/vendor/aws/aws-sdk-php/src/S3/S3MultiRegionClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/AbstractMultipartDownloader.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/AbstractMultipartDownloader.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/AbstractMultipartUploader.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/AbstractMultipartUploader.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Exception/FileDownloadException.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Exception/FileDownloadException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Exception/ProgressTrackerException.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Exception/ProgressTrackerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Exception/S3TransferException.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Exception/S3TransferException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/AbstractTransferRequest.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/AbstractTransferRequest.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/DownloadDirectoryRequest.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/DownloadDirectoryRequest.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/DownloadDirectoryResult.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/DownloadDirectoryResult.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/DownloadFileRequest.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/DownloadFileRequest.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/DownloadRequest.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/DownloadRequest.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/DownloadResult.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/DownloadResult.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/S3TransferManagerConfig.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/S3TransferManagerConfig.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/UploadDirectoryRequest.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/UploadDirectoryRequest.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/UploadDirectoryResult.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/UploadDirectoryResult.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/UploadRequest.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/UploadRequest.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/UploadResult.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Models/UploadResult.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/MultipartUploader.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/MultipartUploader.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/PartGetMultipartDownloader.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/PartGetMultipartDownloader.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/AbstractProgressBarFormat.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/AbstractProgressBarFormat.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/AbstractTransferListener.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/AbstractTransferListener.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/ColoredTransferProgressBarFormat.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/ColoredTransferProgressBarFormat.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/ConsoleProgressBar.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/ConsoleProgressBar.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/MultiProgressBarFormat.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/MultiProgressBarFormat.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/MultiProgressTracker.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/MultiProgressTracker.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/PlainProgressBarFormat.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/PlainProgressBarFormat.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/ProgressBarFactoryInterface.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/ProgressBarFactoryInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/ProgressBarInterface.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/ProgressBarInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/ProgressTrackerInterface.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/ProgressTrackerInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/SingleProgressTracker.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/SingleProgressTracker.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/TransferListenerNotifier.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/TransferListenerNotifier.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/TransferProgressBarFormat.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/TransferProgressBarFormat.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/TransferProgressSnapshot.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Progress/TransferProgressSnapshot.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/RangeGetMultipartDownloader.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/RangeGetMultipartDownloader.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/S3TransferManager.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/S3TransferManager.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Utils/AbstractDownloadHandler.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Utils/AbstractDownloadHandler.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Utils/FileDownloadHandler.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Utils/FileDownloadHandler.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Utils/StreamDownloadHandler.php b/vendor/aws/aws-sdk-php/src/S3/S3Transfer/Utils/StreamDownloadHandler.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/S3UriParser.php b/vendor/aws/aws-sdk-php/src/S3/S3UriParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/SSECMiddleware.php b/vendor/aws/aws-sdk-php/src/S3/SSECMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/StreamWrapper.php b/vendor/aws/aws-sdk-php/src/S3/StreamWrapper.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/Transfer.php b/vendor/aws/aws-sdk-php/src/S3/Transfer.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/Configuration.php b/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/Configuration.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/ConfigurationInterface.php b/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/ConfigurationInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/ConfigurationProvider.php b/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/ConfigurationProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/Exception/ConfigurationException.php b/vendor/aws/aws-sdk-php/src/S3/UseArnRegion/Exception/ConfigurationException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3/ValidateResponseChecksumParser.php b/vendor/aws/aws-sdk-php/src/S3/ValidateResponseChecksumParser.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3Control/EndpointArnMiddleware.php b/vendor/aws/aws-sdk-php/src/S3Control/EndpointArnMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3Control/Exception/S3ControlException.php b/vendor/aws/aws-sdk-php/src/S3Control/Exception/S3ControlException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3Control/S3ControlClient.php b/vendor/aws/aws-sdk-php/src/S3Control/S3ControlClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3Outposts/Exception/S3OutpostsException.php b/vendor/aws/aws-sdk-php/src/S3Outposts/Exception/S3OutpostsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3Outposts/S3OutpostsClient.php b/vendor/aws/aws-sdk-php/src/S3Outposts/S3OutpostsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3Tables/Exception/S3TablesException.php b/vendor/aws/aws-sdk-php/src/S3Tables/Exception/S3TablesException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3Tables/S3TablesClient.php b/vendor/aws/aws-sdk-php/src/S3Tables/S3TablesClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3Vectors/Exception/S3VectorsException.php b/vendor/aws/aws-sdk-php/src/S3Vectors/Exception/S3VectorsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/S3Vectors/S3VectorsClient.php b/vendor/aws/aws-sdk-php/src/S3Vectors/S3VectorsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SSMContacts/Exception/SSMContactsException.php b/vendor/aws/aws-sdk-php/src/SSMContacts/Exception/SSMContactsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SSMContacts/SSMContactsClient.php b/vendor/aws/aws-sdk-php/src/SSMContacts/SSMContactsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SSMGuiConnect/Exception/SSMGuiConnectException.php b/vendor/aws/aws-sdk-php/src/SSMGuiConnect/Exception/SSMGuiConnectException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SSMGuiConnect/SSMGuiConnectClient.php b/vendor/aws/aws-sdk-php/src/SSMGuiConnect/SSMGuiConnectClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SSMIncidents/Exception/SSMIncidentsException.php b/vendor/aws/aws-sdk-php/src/SSMIncidents/Exception/SSMIncidentsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SSMIncidents/SSMIncidentsClient.php b/vendor/aws/aws-sdk-php/src/SSMIncidents/SSMIncidentsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SSMQuickSetup/Exception/SSMQuickSetupException.php b/vendor/aws/aws-sdk-php/src/SSMQuickSetup/Exception/SSMQuickSetupException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SSMQuickSetup/SSMQuickSetupClient.php b/vendor/aws/aws-sdk-php/src/SSMQuickSetup/SSMQuickSetupClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SSO/Exception/SSOException.php b/vendor/aws/aws-sdk-php/src/SSO/Exception/SSOException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SSO/SSOClient.php b/vendor/aws/aws-sdk-php/src/SSO/SSOClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SSOAdmin/Exception/SSOAdminException.php b/vendor/aws/aws-sdk-php/src/SSOAdmin/Exception/SSOAdminException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SSOAdmin/SSOAdminClient.php b/vendor/aws/aws-sdk-php/src/SSOAdmin/SSOAdminClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SSOOIDC/Exception/SSOOIDCException.php b/vendor/aws/aws-sdk-php/src/SSOOIDC/Exception/SSOOIDCException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SSOOIDC/SSOOIDCClient.php b/vendor/aws/aws-sdk-php/src/SSOOIDC/SSOOIDCClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SageMaker/Exception/SageMakerException.php b/vendor/aws/aws-sdk-php/src/SageMaker/Exception/SageMakerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SageMaker/SageMakerClient.php b/vendor/aws/aws-sdk-php/src/SageMaker/SageMakerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SageMakerFeatureStoreRuntime/Exception/SageMakerFeatureStoreRuntimeException.php b/vendor/aws/aws-sdk-php/src/SageMakerFeatureStoreRuntime/Exception/SageMakerFeatureStoreRuntimeException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SageMakerFeatureStoreRuntime/SageMakerFeatureStoreRuntimeClient.php b/vendor/aws/aws-sdk-php/src/SageMakerFeatureStoreRuntime/SageMakerFeatureStoreRuntimeClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SageMakerGeospatial/Exception/SageMakerGeospatialException.php b/vendor/aws/aws-sdk-php/src/SageMakerGeospatial/Exception/SageMakerGeospatialException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SageMakerGeospatial/SageMakerGeospatialClient.php b/vendor/aws/aws-sdk-php/src/SageMakerGeospatial/SageMakerGeospatialClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SageMakerMetrics/Exception/SageMakerMetricsException.php b/vendor/aws/aws-sdk-php/src/SageMakerMetrics/Exception/SageMakerMetricsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SageMakerMetrics/SageMakerMetricsClient.php b/vendor/aws/aws-sdk-php/src/SageMakerMetrics/SageMakerMetricsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SageMakerRuntime/Exception/SageMakerRuntimeException.php b/vendor/aws/aws-sdk-php/src/SageMakerRuntime/Exception/SageMakerRuntimeException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SageMakerRuntime/SageMakerRuntimeClient.php b/vendor/aws/aws-sdk-php/src/SageMakerRuntime/SageMakerRuntimeClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SagemakerEdgeManager/Exception/SagemakerEdgeManagerException.php b/vendor/aws/aws-sdk-php/src/SagemakerEdgeManager/Exception/SagemakerEdgeManagerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SagemakerEdgeManager/SagemakerEdgeManagerClient.php b/vendor/aws/aws-sdk-php/src/SagemakerEdgeManager/SagemakerEdgeManagerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SavingsPlans/Exception/SavingsPlansException.php b/vendor/aws/aws-sdk-php/src/SavingsPlans/Exception/SavingsPlansException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SavingsPlans/SavingsPlansClient.php b/vendor/aws/aws-sdk-php/src/SavingsPlans/SavingsPlansClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Scheduler/Exception/SchedulerException.php b/vendor/aws/aws-sdk-php/src/Scheduler/Exception/SchedulerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Scheduler/SchedulerClient.php b/vendor/aws/aws-sdk-php/src/Scheduler/SchedulerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Schemas/Exception/SchemasException.php b/vendor/aws/aws-sdk-php/src/Schemas/Exception/SchemasException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Schemas/SchemasClient.php b/vendor/aws/aws-sdk-php/src/Schemas/SchemasClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Script/Composer/Composer.php b/vendor/aws/aws-sdk-php/src/Script/Composer/Composer.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Sdk.php b/vendor/aws/aws-sdk-php/src/Sdk.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SecretsManager/Exception/SecretsManagerException.php b/vendor/aws/aws-sdk-php/src/SecretsManager/Exception/SecretsManagerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SecretsManager/SecretsManagerClient.php b/vendor/aws/aws-sdk-php/src/SecretsManager/SecretsManagerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SecurityHub/Exception/SecurityHubException.php b/vendor/aws/aws-sdk-php/src/SecurityHub/Exception/SecurityHubException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SecurityHub/SecurityHubClient.php b/vendor/aws/aws-sdk-php/src/SecurityHub/SecurityHubClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SecurityIR/Exception/SecurityIRException.php b/vendor/aws/aws-sdk-php/src/SecurityIR/Exception/SecurityIRException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SecurityIR/SecurityIRClient.php b/vendor/aws/aws-sdk-php/src/SecurityIR/SecurityIRClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SecurityLake/Exception/SecurityLakeException.php b/vendor/aws/aws-sdk-php/src/SecurityLake/Exception/SecurityLakeException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SecurityLake/SecurityLakeClient.php b/vendor/aws/aws-sdk-php/src/SecurityLake/SecurityLakeClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ServerlessApplicationRepository/Exception/ServerlessApplicationRepositoryException.php b/vendor/aws/aws-sdk-php/src/ServerlessApplicationRepository/Exception/ServerlessApplicationRepositoryException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ServerlessApplicationRepository/ServerlessApplicationRepositoryClient.php b/vendor/aws/aws-sdk-php/src/ServerlessApplicationRepository/ServerlessApplicationRepositoryClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ServiceCatalog/Exception/ServiceCatalogException.php b/vendor/aws/aws-sdk-php/src/ServiceCatalog/Exception/ServiceCatalogException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ServiceCatalog/ServiceCatalogClient.php b/vendor/aws/aws-sdk-php/src/ServiceCatalog/ServiceCatalogClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ServiceDiscovery/Exception/ServiceDiscoveryException.php b/vendor/aws/aws-sdk-php/src/ServiceDiscovery/Exception/ServiceDiscoveryException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ServiceDiscovery/ServiceDiscoveryClient.php b/vendor/aws/aws-sdk-php/src/ServiceDiscovery/ServiceDiscoveryClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ServiceQuotas/Exception/ServiceQuotasException.php b/vendor/aws/aws-sdk-php/src/ServiceQuotas/Exception/ServiceQuotasException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ServiceQuotas/ServiceQuotasClient.php b/vendor/aws/aws-sdk-php/src/ServiceQuotas/ServiceQuotasClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Ses/Exception/SesException.php b/vendor/aws/aws-sdk-php/src/Ses/Exception/SesException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Ses/SesClient.php b/vendor/aws/aws-sdk-php/src/Ses/SesClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SesV2/Exception/SesV2Exception.php b/vendor/aws/aws-sdk-php/src/SesV2/Exception/SesV2Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SesV2/SesV2Client.php b/vendor/aws/aws-sdk-php/src/SesV2/SesV2Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Sfn/Exception/SfnException.php b/vendor/aws/aws-sdk-php/src/Sfn/Exception/SfnException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Sfn/SfnClient.php b/vendor/aws/aws-sdk-php/src/Sfn/SfnClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Shield/Exception/ShieldException.php b/vendor/aws/aws-sdk-php/src/Shield/Exception/ShieldException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Shield/ShieldClient.php b/vendor/aws/aws-sdk-php/src/Shield/ShieldClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Signature/AnonymousSignature.php b/vendor/aws/aws-sdk-php/src/Signature/AnonymousSignature.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Signature/DpopSignature.php b/vendor/aws/aws-sdk-php/src/Signature/DpopSignature.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Signature/S3ExpressSignature.php b/vendor/aws/aws-sdk-php/src/Signature/S3ExpressSignature.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Signature/S3SignatureV4.php b/vendor/aws/aws-sdk-php/src/Signature/S3SignatureV4.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Signature/SignatureInterface.php b/vendor/aws/aws-sdk-php/src/Signature/SignatureInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Signature/SignatureProvider.php b/vendor/aws/aws-sdk-php/src/Signature/SignatureProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Signature/SignatureTrait.php b/vendor/aws/aws-sdk-php/src/Signature/SignatureTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Signature/SignatureV4.php b/vendor/aws/aws-sdk-php/src/Signature/SignatureV4.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Signin/Exception/SigninException.php b/vendor/aws/aws-sdk-php/src/Signin/Exception/SigninException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Signin/SigninClient.php b/vendor/aws/aws-sdk-php/src/Signin/SigninClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SimSpaceWeaver/Exception/SimSpaceWeaverException.php b/vendor/aws/aws-sdk-php/src/SimSpaceWeaver/Exception/SimSpaceWeaverException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SimSpaceWeaver/SimSpaceWeaverClient.php b/vendor/aws/aws-sdk-php/src/SimSpaceWeaver/SimSpaceWeaverClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SnowBall/Exception/SnowBallException.php b/vendor/aws/aws-sdk-php/src/SnowBall/Exception/SnowBallException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SnowBall/SnowBallClient.php b/vendor/aws/aws-sdk-php/src/SnowBall/SnowBallClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SnowDeviceManagement/Exception/SnowDeviceManagementException.php b/vendor/aws/aws-sdk-php/src/SnowDeviceManagement/Exception/SnowDeviceManagementException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SnowDeviceManagement/SnowDeviceManagementClient.php b/vendor/aws/aws-sdk-php/src/SnowDeviceManagement/SnowDeviceManagementClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Sns/Exception/SnsException.php b/vendor/aws/aws-sdk-php/src/Sns/Exception/SnsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Sns/SnsClient.php b/vendor/aws/aws-sdk-php/src/Sns/SnsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SocialMessaging/Exception/SocialMessagingException.php b/vendor/aws/aws-sdk-php/src/SocialMessaging/Exception/SocialMessagingException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SocialMessaging/SocialMessagingClient.php b/vendor/aws/aws-sdk-php/src/SocialMessaging/SocialMessagingClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Sqs/Exception/SqsException.php b/vendor/aws/aws-sdk-php/src/Sqs/Exception/SqsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Sqs/SqsClient.php b/vendor/aws/aws-sdk-php/src/Sqs/SqsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Ssm/Exception/SsmException.php b/vendor/aws/aws-sdk-php/src/Ssm/Exception/SsmException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Ssm/SsmClient.php b/vendor/aws/aws-sdk-php/src/Ssm/SsmClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SsmSap/Exception/SsmSapException.php b/vendor/aws/aws-sdk-php/src/SsmSap/Exception/SsmSapException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SsmSap/SsmSapClient.php b/vendor/aws/aws-sdk-php/src/SsmSap/SsmSapClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/StorageGateway/Exception/StorageGatewayException.php b/vendor/aws/aws-sdk-php/src/StorageGateway/Exception/StorageGatewayException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/StorageGateway/StorageGatewayClient.php b/vendor/aws/aws-sdk-php/src/StorageGateway/StorageGatewayClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/StreamRequestPayloadMiddleware.php b/vendor/aws/aws-sdk-php/src/StreamRequestPayloadMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Sts/Exception/StsException.php b/vendor/aws/aws-sdk-php/src/Sts/Exception/StsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Sts/RegionalEndpoints/Configuration.php b/vendor/aws/aws-sdk-php/src/Sts/RegionalEndpoints/Configuration.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Sts/RegionalEndpoints/ConfigurationInterface.php b/vendor/aws/aws-sdk-php/src/Sts/RegionalEndpoints/ConfigurationInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Sts/RegionalEndpoints/ConfigurationProvider.php b/vendor/aws/aws-sdk-php/src/Sts/RegionalEndpoints/ConfigurationProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Sts/RegionalEndpoints/Exception/ConfigurationException.php b/vendor/aws/aws-sdk-php/src/Sts/RegionalEndpoints/Exception/ConfigurationException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Sts/StsClient.php b/vendor/aws/aws-sdk-php/src/Sts/StsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SupplyChain/Exception/SupplyChainException.php b/vendor/aws/aws-sdk-php/src/SupplyChain/Exception/SupplyChainException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SupplyChain/SupplyChainClient.php b/vendor/aws/aws-sdk-php/src/SupplyChain/SupplyChainClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Support/Exception/SupportException.php b/vendor/aws/aws-sdk-php/src/Support/Exception/SupportException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Support/SupportClient.php b/vendor/aws/aws-sdk-php/src/Support/SupportClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SupportApp/Exception/SupportAppException.php b/vendor/aws/aws-sdk-php/src/SupportApp/Exception/SupportAppException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/SupportApp/SupportAppClient.php b/vendor/aws/aws-sdk-php/src/SupportApp/SupportAppClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Swf/Exception/SwfException.php b/vendor/aws/aws-sdk-php/src/Swf/Exception/SwfException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Swf/SwfClient.php b/vendor/aws/aws-sdk-php/src/Swf/SwfClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Synthetics/Exception/SyntheticsException.php b/vendor/aws/aws-sdk-php/src/Synthetics/Exception/SyntheticsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Synthetics/SyntheticsClient.php b/vendor/aws/aws-sdk-php/src/Synthetics/SyntheticsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/TaxSettings/Exception/TaxSettingsException.php b/vendor/aws/aws-sdk-php/src/TaxSettings/Exception/TaxSettingsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/TaxSettings/TaxSettingsClient.php b/vendor/aws/aws-sdk-php/src/TaxSettings/TaxSettingsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Textract/Exception/TextractException.php b/vendor/aws/aws-sdk-php/src/Textract/Exception/TextractException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Textract/TextractClient.php b/vendor/aws/aws-sdk-php/src/Textract/TextractClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/TimestreamInfluxDB/Exception/TimestreamInfluxDBException.php b/vendor/aws/aws-sdk-php/src/TimestreamInfluxDB/Exception/TimestreamInfluxDBException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/TimestreamInfluxDB/TimestreamInfluxDBClient.php b/vendor/aws/aws-sdk-php/src/TimestreamInfluxDB/TimestreamInfluxDBClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/TimestreamQuery/Exception/TimestreamQueryException.php b/vendor/aws/aws-sdk-php/src/TimestreamQuery/Exception/TimestreamQueryException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/TimestreamQuery/TimestreamQueryClient.php b/vendor/aws/aws-sdk-php/src/TimestreamQuery/TimestreamQueryClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/TimestreamWrite/Exception/TimestreamWriteException.php b/vendor/aws/aws-sdk-php/src/TimestreamWrite/Exception/TimestreamWriteException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/TimestreamWrite/TimestreamWriteClient.php b/vendor/aws/aws-sdk-php/src/TimestreamWrite/TimestreamWriteClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Tnb/Exception/TnbException.php b/vendor/aws/aws-sdk-php/src/Tnb/Exception/TnbException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Tnb/TnbClient.php b/vendor/aws/aws-sdk-php/src/Tnb/TnbClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Token/BearerTokenAuthorization.php b/vendor/aws/aws-sdk-php/src/Token/BearerTokenAuthorization.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Token/BedrockTokenProvider.php b/vendor/aws/aws-sdk-php/src/Token/BedrockTokenProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Token/ParsesIniTrait.php b/vendor/aws/aws-sdk-php/src/Token/ParsesIniTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Token/RefreshableTokenProviderInterface.php b/vendor/aws/aws-sdk-php/src/Token/RefreshableTokenProviderInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Token/SsoToken.php b/vendor/aws/aws-sdk-php/src/Token/SsoToken.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Token/SsoTokenProvider.php b/vendor/aws/aws-sdk-php/src/Token/SsoTokenProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Token/Token.php b/vendor/aws/aws-sdk-php/src/Token/Token.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Token/TokenAuthorization.php b/vendor/aws/aws-sdk-php/src/Token/TokenAuthorization.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Token/TokenInterface.php b/vendor/aws/aws-sdk-php/src/Token/TokenInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Token/TokenProvider.php b/vendor/aws/aws-sdk-php/src/Token/TokenProvider.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Token/TokenSource.php b/vendor/aws/aws-sdk-php/src/Token/TokenSource.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/TraceMiddleware.php b/vendor/aws/aws-sdk-php/src/TraceMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/TranscribeService/Exception/TranscribeServiceException.php b/vendor/aws/aws-sdk-php/src/TranscribeService/Exception/TranscribeServiceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/TranscribeService/TranscribeServiceClient.php b/vendor/aws/aws-sdk-php/src/TranscribeService/TranscribeServiceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Transfer/Exception/TransferException.php b/vendor/aws/aws-sdk-php/src/Transfer/Exception/TransferException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Transfer/TransferClient.php b/vendor/aws/aws-sdk-php/src/Transfer/TransferClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Translate/Exception/TranslateException.php b/vendor/aws/aws-sdk-php/src/Translate/Exception/TranslateException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Translate/TranslateClient.php b/vendor/aws/aws-sdk-php/src/Translate/TranslateClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/TrustedAdvisor/Exception/TrustedAdvisorException.php b/vendor/aws/aws-sdk-php/src/TrustedAdvisor/Exception/TrustedAdvisorException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/TrustedAdvisor/TrustedAdvisorClient.php b/vendor/aws/aws-sdk-php/src/TrustedAdvisor/TrustedAdvisorClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/UserAgentMiddleware.php b/vendor/aws/aws-sdk-php/src/UserAgentMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/VPCLattice/Exception/VPCLatticeException.php b/vendor/aws/aws-sdk-php/src/VPCLattice/Exception/VPCLatticeException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/VPCLattice/VPCLatticeClient.php b/vendor/aws/aws-sdk-php/src/VPCLattice/VPCLatticeClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/VerifiedPermissions/Exception/VerifiedPermissionsException.php b/vendor/aws/aws-sdk-php/src/VerifiedPermissions/Exception/VerifiedPermissionsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/VerifiedPermissions/VerifiedPermissionsClient.php b/vendor/aws/aws-sdk-php/src/VerifiedPermissions/VerifiedPermissionsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/VoiceID/Exception/VoiceIDException.php b/vendor/aws/aws-sdk-php/src/VoiceID/Exception/VoiceIDException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/VoiceID/VoiceIDClient.php b/vendor/aws/aws-sdk-php/src/VoiceID/VoiceIDClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WAFV2/Exception/WAFV2Exception.php b/vendor/aws/aws-sdk-php/src/WAFV2/Exception/WAFV2Exception.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WAFV2/WAFV2Client.php b/vendor/aws/aws-sdk-php/src/WAFV2/WAFV2Client.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Waf/Exception/WafException.php b/vendor/aws/aws-sdk-php/src/Waf/Exception/WafException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Waf/WafClient.php b/vendor/aws/aws-sdk-php/src/Waf/WafClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WafRegional/Exception/WafRegionalException.php b/vendor/aws/aws-sdk-php/src/WafRegional/Exception/WafRegionalException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WafRegional/WafRegionalClient.php b/vendor/aws/aws-sdk-php/src/WafRegional/WafRegionalClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Waiter.php b/vendor/aws/aws-sdk-php/src/Waiter.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WellArchitected/Exception/WellArchitectedException.php b/vendor/aws/aws-sdk-php/src/WellArchitected/Exception/WellArchitectedException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WellArchitected/WellArchitectedClient.php b/vendor/aws/aws-sdk-php/src/WellArchitected/WellArchitectedClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Wickr/Exception/WickrException.php b/vendor/aws/aws-sdk-php/src/Wickr/Exception/WickrException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/Wickr/WickrClient.php b/vendor/aws/aws-sdk-php/src/Wickr/WickrClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WorkDocs/Exception/WorkDocsException.php b/vendor/aws/aws-sdk-php/src/WorkDocs/Exception/WorkDocsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WorkDocs/WorkDocsClient.php b/vendor/aws/aws-sdk-php/src/WorkDocs/WorkDocsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WorkMail/Exception/WorkMailException.php b/vendor/aws/aws-sdk-php/src/WorkMail/Exception/WorkMailException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WorkMail/WorkMailClient.php b/vendor/aws/aws-sdk-php/src/WorkMail/WorkMailClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WorkMailMessageFlow/Exception/WorkMailMessageFlowException.php b/vendor/aws/aws-sdk-php/src/WorkMailMessageFlow/Exception/WorkMailMessageFlowException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WorkMailMessageFlow/WorkMailMessageFlowClient.php b/vendor/aws/aws-sdk-php/src/WorkMailMessageFlow/WorkMailMessageFlowClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WorkSpaces/Exception/WorkSpacesException.php b/vendor/aws/aws-sdk-php/src/WorkSpaces/Exception/WorkSpacesException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WorkSpaces/WorkSpacesClient.php b/vendor/aws/aws-sdk-php/src/WorkSpaces/WorkSpacesClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WorkSpacesThinClient/Exception/WorkSpacesThinClientException.php b/vendor/aws/aws-sdk-php/src/WorkSpacesThinClient/Exception/WorkSpacesThinClientException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WorkSpacesThinClient/WorkSpacesThinClientClient.php b/vendor/aws/aws-sdk-php/src/WorkSpacesThinClient/WorkSpacesThinClientClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WorkSpacesWeb/Exception/WorkSpacesWebException.php b/vendor/aws/aws-sdk-php/src/WorkSpacesWeb/Exception/WorkSpacesWebException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WorkSpacesWeb/WorkSpacesWebClient.php b/vendor/aws/aws-sdk-php/src/WorkSpacesWeb/WorkSpacesWebClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WorkspacesInstances/Exception/WorkspacesInstancesException.php b/vendor/aws/aws-sdk-php/src/WorkspacesInstances/Exception/WorkspacesInstancesException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WorkspacesInstances/WorkspacesInstancesClient.php b/vendor/aws/aws-sdk-php/src/WorkspacesInstances/WorkspacesInstancesClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/WrappedHttpHandler.php b/vendor/aws/aws-sdk-php/src/WrappedHttpHandler.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/XRay/Exception/XRayException.php b/vendor/aws/aws-sdk-php/src/XRay/Exception/XRayException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/XRay/XRayClient.php b/vendor/aws/aws-sdk-php/src/XRay/XRayClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/accessanalyzer/2019-11-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/accessanalyzer/2019-11-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/accessanalyzer/2019-11-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/accessanalyzer/2019-11-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/accessanalyzer/2019-11-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/accessanalyzer/2019-11-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/account/2021-02-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/account/2021-02-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/account/2021-02-01/defaults-1.json.php b/vendor/aws/aws-sdk-php/src/data/account/2021-02-01/defaults-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/account/2021-02-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/account/2021-02-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/account/2021-02-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/account/2021-02-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/acm-pca/2017-08-22/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/acm-pca/2017-08-22/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/acm-pca/2017-08-22/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/acm-pca/2017-08-22/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/acm-pca/2017-08-22/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/acm-pca/2017-08-22/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/acm-pca/2017-08-22/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/acm-pca/2017-08-22/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/acm/2015-12-08/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/acm/2015-12-08/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/acm/2015-12-08/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/acm/2015-12-08/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/acm/2015-12-08/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/acm/2015-12-08/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/acm/2015-12-08/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/acm/2015-12-08/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/acm/2015-12-08/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/acm/2015-12-08/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/aiops/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/aiops/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/aiops/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/aiops/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/aiops/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/aiops/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/aiops/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/aiops/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/aiops/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/aiops/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/aliases.json.php b/vendor/aws/aws-sdk-php/src/data/aliases.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/amp/2020-08-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/amp/2020-08-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/amp/2020-08-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/amp/2020-08-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/amp/2020-08-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/amp/2020-08-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/amp/2020-08-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/amp/2020-08-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/amp/2020-08-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/amp/2020-08-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/amplify/2017-07-25/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/amplify/2017-07-25/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/amplify/2017-07-25/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/amplify/2017-07-25/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/amplify/2017-07-25/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/amplify/2017-07-25/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/amplifybackend/2020-08-11/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/amplifybackend/2020-08-11/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/amplifybackend/2020-08-11/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/amplifybackend/2020-08-11/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/amplifybackend/2020-08-11/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/amplifybackend/2020-08-11/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/amplifyuibuilder/2021-08-11/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/amplifyuibuilder/2021-08-11/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/amplifyuibuilder/2021-08-11/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/amplifyuibuilder/2021-08-11/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/amplifyuibuilder/2021-08-11/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/amplifyuibuilder/2021-08-11/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/amplifyuibuilder/2021-08-11/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/amplifyuibuilder/2021-08-11/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/amplifyuibuilder/2021-08-11/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/amplifyuibuilder/2021-08-11/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/apigateway/2015-07-09/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/apigateway/2015-07-09/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/apigateway/2015-07-09/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/apigateway/2015-07-09/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/apigateway/2015-07-09/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/apigateway/2015-07-09/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/apigateway/2015-07-09/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/apigateway/2015-07-09/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/apigatewaymanagementapi/2018-11-29/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/apigatewaymanagementapi/2018-11-29/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/apigatewaymanagementapi/2018-11-29/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/apigatewaymanagementapi/2018-11-29/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/apigatewaymanagementapi/2018-11-29/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/apigatewaymanagementapi/2018-11-29/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/apigatewayv2/2018-11-29/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/apigatewayv2/2018-11-29/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/apigatewayv2/2018-11-29/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/apigatewayv2/2018-11-29/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/apigatewayv2/2018-11-29/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/apigatewayv2/2018-11-29/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appconfig/2019-10-09/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/appconfig/2019-10-09/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appconfig/2019-10-09/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/appconfig/2019-10-09/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appconfig/2019-10-09/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/appconfig/2019-10-09/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appconfig/2019-10-09/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/appconfig/2019-10-09/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appconfigdata/2021-11-11/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/appconfigdata/2021-11-11/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appconfigdata/2021-11-11/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/appconfigdata/2021-11-11/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appconfigdata/2021-11-11/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/appconfigdata/2021-11-11/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appfabric/2023-05-19/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/appfabric/2023-05-19/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appfabric/2023-05-19/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/appfabric/2023-05-19/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appfabric/2023-05-19/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/appfabric/2023-05-19/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appfabric/2023-05-19/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/appfabric/2023-05-19/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appfabric/2023-05-19/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/appfabric/2023-05-19/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appflow/2020-08-23/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/appflow/2020-08-23/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appflow/2020-08-23/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/appflow/2020-08-23/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appflow/2020-08-23/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/appflow/2020-08-23/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appintegrations/2020-07-29/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/appintegrations/2020-07-29/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appintegrations/2020-07-29/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/appintegrations/2020-07-29/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appintegrations/2020-07-29/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/appintegrations/2020-07-29/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/application-autoscaling/2016-02-06/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/application-autoscaling/2016-02-06/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/application-autoscaling/2016-02-06/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/application-autoscaling/2016-02-06/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/application-autoscaling/2016-02-06/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/application-autoscaling/2016-02-06/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/application-autoscaling/2016-02-06/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/application-autoscaling/2016-02-06/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/application-insights/2018-11-25/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/application-insights/2018-11-25/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/application-insights/2018-11-25/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/application-insights/2018-11-25/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/application-insights/2018-11-25/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/application-insights/2018-11-25/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/application-signals/2024-04-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/application-signals/2024-04-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/application-signals/2024-04-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/application-signals/2024-04-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/application-signals/2024-04-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/application-signals/2024-04-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/applicationcostprofiler/2020-09-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/applicationcostprofiler/2020-09-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/applicationcostprofiler/2020-09-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/applicationcostprofiler/2020-09-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/applicationcostprofiler/2020-09-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/applicationcostprofiler/2020-09-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appmesh/2018-10-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/appmesh/2018-10-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appmesh/2018-10-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/appmesh/2018-10-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appmesh/2018-10-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/appmesh/2018-10-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appmesh/2019-01-25/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/appmesh/2019-01-25/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appmesh/2019-01-25/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/appmesh/2019-01-25/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appmesh/2019-01-25/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/appmesh/2019-01-25/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/apprunner/2020-05-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/apprunner/2020-05-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/apprunner/2020-05-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/apprunner/2020-05-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/apprunner/2020-05-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/apprunner/2020-05-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appstream/2016-12-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/appstream/2016-12-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appstream/2016-12-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/appstream/2016-12-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appstream/2016-12-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/appstream/2016-12-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appstream/2016-12-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/appstream/2016-12-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appstream/2016-12-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/appstream/2016-12-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appsync/2017-07-25/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/appsync/2017-07-25/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appsync/2017-07-25/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/appsync/2017-07-25/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/appsync/2017-07-25/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/appsync/2017-07-25/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/arc-region-switch/2022-07-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/arc-region-switch/2022-07-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/arc-region-switch/2022-07-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/arc-region-switch/2022-07-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/arc-region-switch/2022-07-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/arc-region-switch/2022-07-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/arc-region-switch/2022-07-26/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/arc-region-switch/2022-07-26/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/arc-region-switch/2022-07-26/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/arc-region-switch/2022-07-26/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/arc-zonal-shift/2022-10-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/arc-zonal-shift/2022-10-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/arc-zonal-shift/2022-10-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/arc-zonal-shift/2022-10-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/arc-zonal-shift/2022-10-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/arc-zonal-shift/2022-10-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/arc-zonal-shift/2022-10-30/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/arc-zonal-shift/2022-10-30/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/arc-zonal-shift/2022-10-30/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/arc-zonal-shift/2022-10-30/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/artifact/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/artifact/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/artifact/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/artifact/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/artifact/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/artifact/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/artifact/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/artifact/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/artifact/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/artifact/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/athena/2017-05-18/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/athena/2017-05-18/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/athena/2017-05-18/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/athena/2017-05-18/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/athena/2017-05-18/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/athena/2017-05-18/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/athena/2017-05-18/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/athena/2017-05-18/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/auditmanager/2017-07-25/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/auditmanager/2017-07-25/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/auditmanager/2017-07-25/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/auditmanager/2017-07-25/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/auditmanager/2017-07-25/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/auditmanager/2017-07-25/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/autoscaling-plans/2018-01-06/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/autoscaling-plans/2018-01-06/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/autoscaling-plans/2018-01-06/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/autoscaling-plans/2018-01-06/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/autoscaling-plans/2018-01-06/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/autoscaling-plans/2018-01-06/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/autoscaling/2011-01-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/autoscaling/2011-01-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/autoscaling/2011-01-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/autoscaling/2011-01-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/autoscaling/2011-01-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/autoscaling/2011-01-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/autoscaling/2011-01-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/autoscaling/2011-01-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/autoscaling/2011-01-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/autoscaling/2011-01-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/b2bi/2022-06-23/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/b2bi/2022-06-23/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/b2bi/2022-06-23/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/b2bi/2022-06-23/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/b2bi/2022-06-23/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/b2bi/2022-06-23/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/b2bi/2022-06-23/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/b2bi/2022-06-23/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/backup-gateway/2021-01-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/backup-gateway/2021-01-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/backup-gateway/2021-01-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/backup-gateway/2021-01-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/backup-gateway/2021-01-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/backup-gateway/2021-01-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/backup/2018-11-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/backup/2018-11-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/backup/2018-11-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/backup/2018-11-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/backup/2018-11-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/backup/2018-11-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/backupsearch/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/backupsearch/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/backupsearch/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/backupsearch/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/backupsearch/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/backupsearch/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/backupsearch/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/backupsearch/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/backupsearch/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/backupsearch/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/batch/2016-08-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/batch/2016-08-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/batch/2016-08-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/batch/2016-08-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/batch/2016-08-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/batch/2016-08-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/batch/2016-08-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/batch/2016-08-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-dashboards/2025-08-18/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-dashboards/2025-08-18/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-dashboards/2025-08-18/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-dashboards/2025-08-18/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-dashboards/2025-08-18/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-dashboards/2025-08-18/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-dashboards/2025-08-18/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-dashboards/2025-08-18/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-dashboards/2025-08-18/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-dashboards/2025-08-18/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-data-exports/2023-11-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-data-exports/2023-11-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-data-exports/2023-11-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-data-exports/2023-11-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-data-exports/2023-11-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-data-exports/2023-11-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-pricing-calculator/2024-06-19/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-pricing-calculator/2024-06-19/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-pricing-calculator/2024-06-19/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-pricing-calculator/2024-06-19/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-pricing-calculator/2024-06-19/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-pricing-calculator/2024-06-19/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-pricing-calculator/2024-06-19/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-pricing-calculator/2024-06-19/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-pricing-calculator/2024-06-19/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-pricing-calculator/2024-06-19/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-recommended-actions/2024-11-14/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-recommended-actions/2024-11-14/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-recommended-actions/2024-11-14/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-recommended-actions/2024-11-14/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-recommended-actions/2024-11-14/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-recommended-actions/2024-11-14/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-recommended-actions/2024-11-14/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-recommended-actions/2024-11-14/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bcm-recommended-actions/2024-11-14/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/bcm-recommended-actions/2024-11-14/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agent-runtime/2023-07-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agent-runtime/2023-07-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agent-runtime/2023-07-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agent-runtime/2023-07-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agent-runtime/2023-07-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agent-runtime/2023-07-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agent-runtime/2023-07-26/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agent-runtime/2023-07-26/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agent-runtime/2023-07-26/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agent-runtime/2023-07-26/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agent/2023-06-05/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agent/2023-06-05/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agent/2023-06-05/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agent/2023-06-05/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agent/2023-06-05/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agent/2023-06-05/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agent/2023-06-05/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agent/2023-06-05/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agent/2023-06-05/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agent/2023-06-05/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore-control/2023-06-05/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore-control/2023-06-05/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore-control/2023-06-05/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore-control/2023-06-05/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore-control/2023-06-05/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore-control/2023-06-05/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore-control/2023-06-05/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore-control/2023-06-05/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore-control/2023-06-05/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore-control/2023-06-05/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore/2024-02-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore/2024-02-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore/2024-02-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore/2024-02-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore/2024-02-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore/2024-02-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore/2024-02-28/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore/2024-02-28/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore/2024-02-28/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-agentcore/2024-02-28/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-data-automation-runtime/2024-06-13/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-data-automation-runtime/2024-06-13/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-data-automation-runtime/2024-06-13/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-data-automation-runtime/2024-06-13/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-data-automation-runtime/2024-06-13/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-data-automation-runtime/2024-06-13/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-data-automation/2023-07-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-data-automation/2023-07-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-data-automation/2023-07-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-data-automation/2023-07-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-data-automation/2023-07-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-data-automation/2023-07-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-runtime/2023-09-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-runtime/2023-09-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-runtime/2023-09-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-runtime/2023-09-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-runtime/2023-09-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-runtime/2023-09-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-runtime/2023-09-30/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-runtime/2023-09-30/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock-runtime/2023-09-30/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock-runtime/2023-09-30/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock/2023-04-20/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock/2023-04-20/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock/2023-04-20/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock/2023-04-20/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock/2023-04-20/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock/2023-04-20/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock/2023-04-20/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock/2023-04-20/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/bedrock/2023-04-20/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/bedrock/2023-04-20/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/billing/2023-09-07/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/billing/2023-09-07/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/billing/2023-09-07/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/billing/2023-09-07/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/billing/2023-09-07/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/billing/2023-09-07/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/billing/2023-09-07/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/billing/2023-09-07/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/billing/2023-09-07/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/billing/2023-09-07/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/billingconductor/2021-07-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/billingconductor/2021-07-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/billingconductor/2021-07-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/billingconductor/2021-07-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/billingconductor/2021-07-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/billingconductor/2021-07-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/billingconductor/2021-07-30/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/billingconductor/2021-07-30/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/billingconductor/2021-07-30/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/billingconductor/2021-07-30/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/braket/2019-09-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/braket/2019-09-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/braket/2019-09-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/braket/2019-09-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/braket/2019-09-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/braket/2019-09-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/budgets/2016-10-20/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/budgets/2016-10-20/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/budgets/2016-10-20/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/budgets/2016-10-20/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/budgets/2016-10-20/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/budgets/2016-10-20/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ce/2017-10-25/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ce/2017-10-25/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ce/2017-10-25/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ce/2017-10-25/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ce/2017-10-25/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ce/2017-10-25/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chatbot/2017-10-11/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/chatbot/2017-10-11/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chatbot/2017-10-11/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/chatbot/2017-10-11/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chatbot/2017-10-11/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/chatbot/2017-10-11/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime-sdk-identity/2021-04-20/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/chime-sdk-identity/2021-04-20/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime-sdk-identity/2021-04-20/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/chime-sdk-identity/2021-04-20/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime-sdk-identity/2021-04-20/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/chime-sdk-identity/2021-04-20/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime-sdk-media-pipelines/2021-07-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/chime-sdk-media-pipelines/2021-07-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime-sdk-media-pipelines/2021-07-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/chime-sdk-media-pipelines/2021-07-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime-sdk-media-pipelines/2021-07-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/chime-sdk-media-pipelines/2021-07-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime-sdk-meetings/2021-07-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/chime-sdk-meetings/2021-07-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime-sdk-meetings/2021-07-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/chime-sdk-meetings/2021-07-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime-sdk-meetings/2021-07-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/chime-sdk-meetings/2021-07-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime-sdk-messaging/2021-05-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/chime-sdk-messaging/2021-05-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime-sdk-messaging/2021-05-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/chime-sdk-messaging/2021-05-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime-sdk-messaging/2021-05-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/chime-sdk-messaging/2021-05-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime-sdk-voice/2022-08-03/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/chime-sdk-voice/2022-08-03/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime-sdk-voice/2022-08-03/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/chime-sdk-voice/2022-08-03/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime-sdk-voice/2022-08-03/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/chime-sdk-voice/2022-08-03/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime/2018-05-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/chime/2018-05-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime/2018-05-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/chime/2018-05-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/chime/2018-05-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/chime/2018-05-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cleanrooms/2022-02-17/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cleanrooms/2022-02-17/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cleanrooms/2022-02-17/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cleanrooms/2022-02-17/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cleanrooms/2022-02-17/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cleanrooms/2022-02-17/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cleanrooms/2022-02-17/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/cleanrooms/2022-02-17/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cleanrooms/2022-02-17/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cleanrooms/2022-02-17/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cleanroomsml/2023-09-06/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cleanroomsml/2023-09-06/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cleanroomsml/2023-09-06/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cleanroomsml/2023-09-06/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cleanroomsml/2023-09-06/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cleanroomsml/2023-09-06/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cleanroomsml/2023-09-06/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/cleanroomsml/2023-09-06/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cleanroomsml/2023-09-06/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cleanroomsml/2023-09-06/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloud9/2017-09-23/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloud9/2017-09-23/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloud9/2017-09-23/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloud9/2017-09-23/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloud9/2017-09-23/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloud9/2017-09-23/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudcontrol/2021-09-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudcontrol/2021-09-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudcontrol/2021-09-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudcontrol/2021-09-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudcontrol/2021-09-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudcontrol/2021-09-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudcontrol/2021-09-30/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/cloudcontrol/2021-09-30/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudcontrol/2021-09-30/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudcontrol/2021-09-30/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/clouddirectory/2016-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/clouddirectory/2016-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/clouddirectory/2016-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/clouddirectory/2016-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/clouddirectory/2016-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/clouddirectory/2016-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/clouddirectory/2017-01-11/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/clouddirectory/2017-01-11/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/clouddirectory/2017-01-11/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/clouddirectory/2017-01-11/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/clouddirectory/2017-01-11/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/clouddirectory/2017-01-11/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront-keyvaluestore/2022-07-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront-keyvaluestore/2022-07-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront-keyvaluestore/2022-07-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront-keyvaluestore/2022-07-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront-keyvaluestore/2022-07-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront-keyvaluestore/2022-07-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2015-07-27/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2015-07-27/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2015-07-27/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2015-07-27/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2015-07-27/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2015-07-27/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2015-07-27/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2015-07-27/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-01-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-01-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-01-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-01-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-01-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-01-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-01-28/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-01-28/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-20/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-20/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-20/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-20/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-20/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-20/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-20/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-08-20/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-07/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-09-29/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-11-25/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-11-25/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-11-25/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-11-25/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-11-25/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-11-25/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-11-25/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-11-25/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-11-25/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2016-11-25/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-03-25/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-03-25/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-03-25/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-03-25/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-03-25/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-03-25/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-03-25/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-03-25/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-03-25/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-03-25/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-10-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-10-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-10-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-10-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-10-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-10-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-10-30/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-10-30/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-10-30/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-10-30/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-10-30/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2017-10-30/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-06-18/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-06-18/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-06-18/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-06-18/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-06-18/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-06-18/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-06-18/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-06-18/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-06-18/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-06-18/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-06-18/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-06-18/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-11-05/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-11-05/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-11-05/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-11-05/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-11-05/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-11-05/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-11-05/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-11-05/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-11-05/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-11-05/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-11-05/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2018-11-05/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2019-03-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2019-03-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2019-03-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2019-03-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2019-03-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2019-03-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2019-03-26/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2019-03-26/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2019-03-26/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2019-03-26/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2019-03-26/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2019-03-26/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2020-05-31/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2020-05-31/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2020-05-31/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2020-05-31/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2020-05-31/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2020-05-31/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2020-05-31/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2020-05-31/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2020-05-31/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2020-05-31/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudfront/2020-05-31/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudfront/2020-05-31/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudhsm/2014-05-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudhsm/2014-05-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudhsm/2014-05-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudhsm/2014-05-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudhsm/2014-05-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudhsm/2014-05-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudsearch/2013-01-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudsearch/2013-01-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudsearch/2013-01-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudsearch/2013-01-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudsearch/2013-01-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudsearch/2013-01-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudsearch/2013-01-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/cloudsearch/2013-01-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudsearchdomain/2013-01-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudsearchdomain/2013-01-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudsearchdomain/2013-01-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudsearchdomain/2013-01-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudsearchdomain/2013-01-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudsearchdomain/2013-01-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudtrail-data/2021-08-11/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudtrail-data/2021-08-11/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudtrail-data/2021-08-11/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudtrail-data/2021-08-11/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudtrail-data/2021-08-11/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudtrail-data/2021-08-11/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudtrail/2013-11-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cloudtrail/2013-11-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudtrail/2013-11-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudtrail/2013-11-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudtrail/2013-11-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cloudtrail/2013-11-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cloudtrail/2013-11-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/cloudtrail/2013-11-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeartifact/2018-09-22/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/codeartifact/2018-09-22/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeartifact/2018-09-22/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/codeartifact/2018-09-22/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeartifact/2018-09-22/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/codeartifact/2018-09-22/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codebuild/2016-10-06/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/codebuild/2016-10-06/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codebuild/2016-10-06/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/codebuild/2016-10-06/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codebuild/2016-10-06/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/codebuild/2016-10-06/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codebuild/2016-10-06/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/codebuild/2016-10-06/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codecatalyst/2022-09-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/codecatalyst/2022-09-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codecatalyst/2022-09-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/codecatalyst/2022-09-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codecatalyst/2022-09-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/codecatalyst/2022-09-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codecatalyst/2022-09-28/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/codecatalyst/2022-09-28/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codecatalyst/2022-09-28/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/codecatalyst/2022-09-28/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codecommit/2015-04-13/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/codecommit/2015-04-13/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codecommit/2015-04-13/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/codecommit/2015-04-13/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codecommit/2015-04-13/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/codecommit/2015-04-13/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codecommit/2015-04-13/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/codecommit/2015-04-13/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeconnections/2023-12-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/codeconnections/2023-12-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeconnections/2023-12-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/codeconnections/2023-12-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeconnections/2023-12-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/codeconnections/2023-12-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeguru-reviewer/2019-09-19/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/codeguru-reviewer/2019-09-19/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeguru-reviewer/2019-09-19/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/codeguru-reviewer/2019-09-19/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeguru-reviewer/2019-09-19/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/codeguru-reviewer/2019-09-19/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeguru-reviewer/2019-09-19/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/codeguru-reviewer/2019-09-19/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeguru-security/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/codeguru-security/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeguru-security/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/codeguru-security/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeguru-security/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/codeguru-security/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeguru-security/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/codeguru-security/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeguru-security/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/codeguru-security/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeguruprofiler/2019-07-18/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/codeguruprofiler/2019-07-18/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeguruprofiler/2019-07-18/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/codeguruprofiler/2019-07-18/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codeguruprofiler/2019-07-18/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/codeguruprofiler/2019-07-18/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codepipeline/2015-07-09/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/codepipeline/2015-07-09/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codepipeline/2015-07-09/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/codepipeline/2015-07-09/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codepipeline/2015-07-09/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/codepipeline/2015-07-09/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codepipeline/2015-07-09/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/codepipeline/2015-07-09/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codestar-connections/2019-12-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/codestar-connections/2019-12-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codestar-connections/2019-12-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/codestar-connections/2019-12-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codestar-connections/2019-12-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/codestar-connections/2019-12-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codestar-notifications/2019-10-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/codestar-notifications/2019-10-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codestar-notifications/2019-10-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/codestar-notifications/2019-10-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/codestar-notifications/2019-10-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/codestar-notifications/2019-10-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cognito-identity/2014-06-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cognito-identity/2014-06-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cognito-identity/2014-06-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cognito-identity/2014-06-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cognito-identity/2014-06-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cognito-identity/2014-06-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cognito-identity/2014-06-30/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/cognito-identity/2014-06-30/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cognito-idp/2016-04-18/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cognito-idp/2016-04-18/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cognito-idp/2016-04-18/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cognito-idp/2016-04-18/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cognito-idp/2016-04-18/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cognito-idp/2016-04-18/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cognito-idp/2016-04-18/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/cognito-idp/2016-04-18/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cognito-sync/2014-06-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cognito-sync/2014-06-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cognito-sync/2014-06-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cognito-sync/2014-06-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cognito-sync/2014-06-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cognito-sync/2014-06-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cognito-sync/2014-06-30/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/cognito-sync/2014-06-30/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/comprehend/2017-11-27/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/comprehend/2017-11-27/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/comprehend/2017-11-27/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/comprehend/2017-11-27/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/comprehend/2017-11-27/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/comprehend/2017-11-27/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/comprehendmedical/2018-10-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/comprehendmedical/2018-10-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/comprehendmedical/2018-10-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/comprehendmedical/2018-10-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/comprehendmedical/2018-10-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/comprehendmedical/2018-10-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/compute-optimizer-automation/2025-09-22/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/compute-optimizer-automation/2025-09-22/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/compute-optimizer-automation/2025-09-22/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/compute-optimizer-automation/2025-09-22/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/compute-optimizer-automation/2025-09-22/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/compute-optimizer-automation/2025-09-22/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/compute-optimizer-automation/2025-09-22/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/compute-optimizer-automation/2025-09-22/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/compute-optimizer-automation/2025-09-22/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/compute-optimizer-automation/2025-09-22/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/compute-optimizer/2019-11-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/compute-optimizer/2019-11-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/compute-optimizer/2019-11-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/compute-optimizer/2019-11-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/compute-optimizer/2019-11-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/compute-optimizer/2019-11-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/config/2014-11-12/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/config/2014-11-12/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/config/2014-11-12/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/config/2014-11-12/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/config/2014-11-12/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/config/2014-11-12/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/config/2014-11-12/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/config/2014-11-12/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connect-contact-lens/2020-08-21/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/connect-contact-lens/2020-08-21/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connect-contact-lens/2020-08-21/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/connect-contact-lens/2020-08-21/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connect-contact-lens/2020-08-21/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/connect-contact-lens/2020-08-21/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connect/2017-08-08/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/connect/2017-08-08/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connect/2017-08-08/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/connect/2017-08-08/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connect/2017-08-08/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/connect/2017-08-08/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connectcampaigns/2021-01-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/connectcampaigns/2021-01-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connectcampaigns/2021-01-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/connectcampaigns/2021-01-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connectcampaigns/2021-01-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/connectcampaigns/2021-01-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connectcampaignsv2/2024-04-23/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/connectcampaignsv2/2024-04-23/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connectcampaignsv2/2024-04-23/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/connectcampaignsv2/2024-04-23/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connectcampaignsv2/2024-04-23/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/connectcampaignsv2/2024-04-23/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connectcases/2022-10-03/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/connectcases/2022-10-03/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connectcases/2022-10-03/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/connectcases/2022-10-03/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connectcases/2022-10-03/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/connectcases/2022-10-03/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connectcases/2022-10-03/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/connectcases/2022-10-03/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connectcases/2022-10-03/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/connectcases/2022-10-03/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connectparticipant/2018-09-07/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/connectparticipant/2018-09-07/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connectparticipant/2018-09-07/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/connectparticipant/2018-09-07/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/connectparticipant/2018-09-07/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/connectparticipant/2018-09-07/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/controlcatalog/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/controlcatalog/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/controlcatalog/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/controlcatalog/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/controlcatalog/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/controlcatalog/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/controlcatalog/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/controlcatalog/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/controlcatalog/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/controlcatalog/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/controltower/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/controltower/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/controltower/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/controltower/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/controltower/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/controltower/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/controltower/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/controltower/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/controltower/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/controltower/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cost-optimization-hub/2022-07-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cost-optimization-hub/2022-07-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cost-optimization-hub/2022-07-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cost-optimization-hub/2022-07-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cost-optimization-hub/2022-07-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cost-optimization-hub/2022-07-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cost-optimization-hub/2022-07-26/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/cost-optimization-hub/2022-07-26/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cost-optimization-hub/2022-07-26/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/cost-optimization-hub/2022-07-26/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cur/2017-01-06/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/cur/2017-01-06/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cur/2017-01-06/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/cur/2017-01-06/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cur/2017-01-06/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/cur/2017-01-06/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/cur/2017-01-06/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/cur/2017-01-06/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/customer-profiles/2020-08-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/customer-profiles/2020-08-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/customer-profiles/2020-08-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/customer-profiles/2020-08-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/customer-profiles/2020-08-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/customer-profiles/2020-08-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/data.iot/2015-05-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/data.iot/2015-05-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/data.iot/2015-05-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/data.iot/2015-05-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/data.iot/2015-05-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/data.iot/2015-05-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/data.iot/2015-05-28/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/data.iot/2015-05-28/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/databrew/2017-07-25/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/databrew/2017-07-25/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/databrew/2017-07-25/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/databrew/2017-07-25/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/databrew/2017-07-25/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/databrew/2017-07-25/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dataexchange/2017-07-25/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/dataexchange/2017-07-25/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dataexchange/2017-07-25/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/dataexchange/2017-07-25/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dataexchange/2017-07-25/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/dataexchange/2017-07-25/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dataexchange/2017-07-25/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/dataexchange/2017-07-25/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dataexchange/2017-07-25/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/dataexchange/2017-07-25/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/datapipeline/2012-10-29/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/datapipeline/2012-10-29/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/datapipeline/2012-10-29/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/datapipeline/2012-10-29/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/datapipeline/2012-10-29/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/datapipeline/2012-10-29/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/datasync/2018-11-09/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/datasync/2018-11-09/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/datasync/2018-11-09/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/datasync/2018-11-09/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/datasync/2018-11-09/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/datasync/2018-11-09/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/datazone/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/datazone/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/datazone/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/datazone/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/datazone/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/datazone/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dax/2017-04-19/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/dax/2017-04-19/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dax/2017-04-19/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/dax/2017-04-19/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dax/2017-04-19/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/dax/2017-04-19/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/deadline/2023-10-12/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/deadline/2023-10-12/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/deadline/2023-10-12/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/deadline/2023-10-12/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/deadline/2023-10-12/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/deadline/2023-10-12/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/deadline/2023-10-12/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/deadline/2023-10-12/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/detective/2018-10-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/detective/2018-10-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/detective/2018-10-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/detective/2018-10-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/detective/2018-10-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/detective/2018-10-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/devicefarm/2015-06-23/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/devicefarm/2015-06-23/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/devicefarm/2015-06-23/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/devicefarm/2015-06-23/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/devicefarm/2015-06-23/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/devicefarm/2015-06-23/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/devicefarm/2015-06-23/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/devicefarm/2015-06-23/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/devops-guru/2020-12-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/devops-guru/2020-12-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/devops-guru/2020-12-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/devops-guru/2020-12-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/devops-guru/2020-12-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/devops-guru/2020-12-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/directconnect/2012-10-25/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/directconnect/2012-10-25/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/directconnect/2012-10-25/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/directconnect/2012-10-25/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/directconnect/2012-10-25/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/directconnect/2012-10-25/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/directconnect/2012-10-25/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/directconnect/2012-10-25/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/directory-service-data/2023-05-31/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/directory-service-data/2023-05-31/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/directory-service-data/2023-05-31/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/directory-service-data/2023-05-31/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/directory-service-data/2023-05-31/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/directory-service-data/2023-05-31/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/discovery/2015-11-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/discovery/2015-11-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/discovery/2015-11-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/discovery/2015-11-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/discovery/2015-11-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/discovery/2015-11-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/discovery/2015-11-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/discovery/2015-11-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dlm/2018-01-12/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/dlm/2018-01-12/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dlm/2018-01-12/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/dlm/2018-01-12/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dlm/2018-01-12/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/dlm/2018-01-12/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dms/2016-01-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/dms/2016-01-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dms/2016-01-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/dms/2016-01-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dms/2016-01-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/dms/2016-01-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dms/2016-01-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/dms/2016-01-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dms/2016-01-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/dms/2016-01-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/docdb-elastic/2022-11-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/docdb-elastic/2022-11-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/docdb-elastic/2022-11-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/docdb-elastic/2022-11-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/docdb-elastic/2022-11-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/docdb-elastic/2022-11-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/docdb/2014-10-31/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/docdb/2014-10-31/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/docdb/2014-10-31/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/docdb/2014-10-31/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/docdb/2014-10-31/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/docdb/2014-10-31/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/docdb/2014-10-31/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/docdb/2014-10-31/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/docdb/2014-10-31/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/docdb/2014-10-31/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/drs/2020-02-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/drs/2020-02-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/drs/2020-02-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/drs/2020-02-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/drs/2020-02-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/drs/2020-02-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ds/2015-04-16/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ds/2015-04-16/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ds/2015-04-16/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ds/2015-04-16/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ds/2015-04-16/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ds/2015-04-16/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ds/2015-04-16/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/ds/2015-04-16/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ds/2015-04-16/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/ds/2015-04-16/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dsql/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/dsql/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dsql/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/dsql/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dsql/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/dsql/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dsql/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/dsql/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dynamodb/2011-12-05/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/dynamodb/2011-12-05/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dynamodb/2011-12-05/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/dynamodb/2011-12-05/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dynamodb/2011-12-05/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/dynamodb/2011-12-05/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dynamodb/2011-12-05/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/dynamodb/2011-12-05/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dynamodb/2011-12-05/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/dynamodb/2011-12-05/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dynamodb/2011-12-05/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/dynamodb/2011-12-05/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dynamodb/2012-08-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/dynamodb/2012-08-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dynamodb/2012-08-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/dynamodb/2012-08-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dynamodb/2012-08-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/dynamodb/2012-08-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dynamodb/2012-08-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/dynamodb/2012-08-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dynamodb/2012-08-10/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/dynamodb/2012-08-10/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/dynamodb/2012-08-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/dynamodb/2012-08-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ebs/2019-11-02/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ebs/2019-11-02/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ebs/2019-11-02/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ebs/2019-11-02/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ebs/2019-11-02/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ebs/2019-11-02/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2-instance-connect/2018-04-02/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ec2-instance-connect/2018-04-02/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2-instance-connect/2018-04-02/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ec2-instance-connect/2018-04-02/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2-instance-connect/2018-04-02/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ec2-instance-connect/2018-04-02/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2015-10-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2015-10-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2015-10-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2015-10-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2015-10-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2015-10-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2015-10-01/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2015-10-01/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2015-10-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2015-10-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-04-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-04-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-04-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-04-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-04-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-04-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-04-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-04-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-09-15/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-11-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-11-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-11-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-11-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-11-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-11-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-11-15/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-11-15/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-11-15/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-11-15/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ec2/2016-11-15/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/ec2/2016-11-15/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ecr-public/2020-10-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ecr-public/2020-10-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ecr-public/2020-10-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ecr-public/2020-10-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ecr-public/2020-10-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ecr-public/2020-10-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ecs/2014-11-13/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ecs/2014-11-13/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ecs/2014-11-13/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ecs/2014-11-13/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ecs/2014-11-13/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ecs/2014-11-13/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ecs/2014-11-13/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/ecs/2014-11-13/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ecs/2014-11-13/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/ecs/2014-11-13/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/eks-auth/2023-11-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/eks-auth/2023-11-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/eks-auth/2023-11-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/eks-auth/2023-11-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/eks-auth/2023-11-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/eks-auth/2023-11-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/eks-auth/2023-11-26/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/eks-auth/2023-11-26/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/eks-auth/2023-11-26/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/eks-auth/2023-11-26/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/eks/2017-11-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/eks/2017-11-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/eks/2017-11-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/eks/2017-11-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/eks/2017-11-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/eks/2017-11-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/eks/2017-11-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/eks/2017-11-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticache/2015-02-02/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/elasticache/2015-02-02/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticache/2015-02-02/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/elasticache/2015-02-02/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticache/2015-02-02/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/elasticache/2015-02-02/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticache/2015-02-02/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/elasticache/2015-02-02/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticache/2015-02-02/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/elasticache/2015-02-02/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticbeanstalk/2010-12-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/elasticbeanstalk/2010-12-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticbeanstalk/2010-12-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/elasticbeanstalk/2010-12-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticbeanstalk/2010-12-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/elasticbeanstalk/2010-12-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticbeanstalk/2010-12-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/elasticbeanstalk/2010-12-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticbeanstalk/2010-12-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/elasticbeanstalk/2010-12-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticfilesystem/2015-02-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/elasticfilesystem/2015-02-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticfilesystem/2015-02-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/elasticfilesystem/2015-02-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticfilesystem/2015-02-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/elasticfilesystem/2015-02-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticfilesystem/2015-02-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/elasticfilesystem/2015-02-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticloadbalancing/2012-06-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/elasticloadbalancing/2012-06-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticloadbalancing/2012-06-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/elasticloadbalancing/2012-06-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticloadbalancing/2012-06-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/elasticloadbalancing/2012-06-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticloadbalancing/2012-06-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/elasticloadbalancing/2012-06-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticloadbalancing/2012-06-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/elasticloadbalancing/2012-06-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticloadbalancingv2/2015-12-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/elasticloadbalancingv2/2015-12-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticloadbalancingv2/2015-12-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/elasticloadbalancingv2/2015-12-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticloadbalancingv2/2015-12-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/elasticloadbalancingv2/2015-12-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticloadbalancingv2/2015-12-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/elasticloadbalancingv2/2015-12-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticloadbalancingv2/2015-12-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/elasticloadbalancingv2/2015-12-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticmapreduce/2009-03-31/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/elasticmapreduce/2009-03-31/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticmapreduce/2009-03-31/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/elasticmapreduce/2009-03-31/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticmapreduce/2009-03-31/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/elasticmapreduce/2009-03-31/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticmapreduce/2009-03-31/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/elasticmapreduce/2009-03-31/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/elasticmapreduce/2009-03-31/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/elasticmapreduce/2009-03-31/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/email/2010-12-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/email/2010-12-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/email/2010-12-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/email/2010-12-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/email/2010-12-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/email/2010-12-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/email/2010-12-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/email/2010-12-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/email/2010-12-01/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/email/2010-12-01/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/email/2010-12-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/email/2010-12-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/emr-containers/2020-10-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/emr-containers/2020-10-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/emr-containers/2020-10-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/emr-containers/2020-10-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/emr-containers/2020-10-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/emr-containers/2020-10-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/emr-serverless/2021-07-13/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/emr-serverless/2021-07-13/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/emr-serverless/2021-07-13/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/emr-serverless/2021-07-13/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/emr-serverless/2021-07-13/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/emr-serverless/2021-07-13/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/endpoints.json.php b/vendor/aws/aws-sdk-php/src/data/endpoints.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/endpoints_prefix_history.json.php b/vendor/aws/aws-sdk-php/src/data/endpoints_prefix_history.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/entitlement.marketplace/2017-01-11/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/entitlement.marketplace/2017-01-11/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/entitlement.marketplace/2017-01-11/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/entitlement.marketplace/2017-01-11/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/entitlement.marketplace/2017-01-11/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/entitlement.marketplace/2017-01-11/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/entityresolution/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/entityresolution/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/entityresolution/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/entityresolution/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/entityresolution/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/entityresolution/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/es/2015-01-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/es/2015-01-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/es/2015-01-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/es/2015-01-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/es/2015-01-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/es/2015-01-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/es/2015-01-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/es/2015-01-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/eventbridge/2015-10-07/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/eventbridge/2015-10-07/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/eventbridge/2015-10-07/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/eventbridge/2015-10-07/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/eventbridge/2015-10-07/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/eventbridge/2015-10-07/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/eventbridge/2015-10-07/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/eventbridge/2015-10-07/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/events/2015-10-07/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/events/2015-10-07/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/events/2015-10-07/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/events/2015-10-07/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/events/2015-10-07/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/events/2015-10-07/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/events/2015-10-07/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/events/2015-10-07/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/evidently/2021-02-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/evidently/2021-02-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/evidently/2021-02-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/evidently/2021-02-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/evidently/2021-02-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/evidently/2021-02-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/evs/2023-07-27/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/evs/2023-07-27/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/evs/2023-07-27/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/evs/2023-07-27/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/evs/2023-07-27/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/evs/2023-07-27/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/evs/2023-07-27/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/evs/2023-07-27/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/evs/2023-07-27/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/evs/2023-07-27/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/finspace-data/2020-07-13/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/finspace-data/2020-07-13/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/finspace-data/2020-07-13/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/finspace-data/2020-07-13/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/finspace-data/2020-07-13/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/finspace-data/2020-07-13/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/finspace/2021-03-12/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/finspace/2021-03-12/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/finspace/2021-03-12/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/finspace/2021-03-12/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/finspace/2021-03-12/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/finspace/2021-03-12/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/firehose/2015-08-04/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/firehose/2015-08-04/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/firehose/2015-08-04/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/firehose/2015-08-04/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/firehose/2015-08-04/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/firehose/2015-08-04/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/firehose/2015-08-04/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/firehose/2015-08-04/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/fis/2020-12-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/fis/2020-12-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/fis/2020-12-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/fis/2020-12-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/fis/2020-12-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/fis/2020-12-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/fms/2018-01-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/fms/2018-01-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/fms/2018-01-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/fms/2018-01-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/fms/2018-01-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/fms/2018-01-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/forecast/2018-06-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/forecast/2018-06-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/forecast/2018-06-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/forecast/2018-06-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/forecast/2018-06-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/forecast/2018-06-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/forecastquery/2018-06-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/forecastquery/2018-06-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/forecastquery/2018-06-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/forecastquery/2018-06-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/forecastquery/2018-06-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/forecastquery/2018-06-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/frauddetector/2019-11-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/frauddetector/2019-11-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/frauddetector/2019-11-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/frauddetector/2019-11-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/frauddetector/2019-11-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/frauddetector/2019-11-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/freetier/2023-09-07/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/freetier/2023-09-07/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/freetier/2023-09-07/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/freetier/2023-09-07/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/freetier/2023-09-07/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/freetier/2023-09-07/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/freetier/2023-09-07/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/freetier/2023-09-07/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/freetier/2023-09-07/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/freetier/2023-09-07/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/fsx/2018-03-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/fsx/2018-03-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/fsx/2018-03-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/fsx/2018-03-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/fsx/2018-03-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/fsx/2018-03-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/gamelift/2015-10-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/gamelift/2015-10-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/gamelift/2015-10-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/gamelift/2015-10-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/gamelift/2015-10-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/gamelift/2015-10-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/gamelift/2015-10-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/gamelift/2015-10-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/gameliftstreams/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/gameliftstreams/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/gameliftstreams/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/gameliftstreams/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/gameliftstreams/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/gameliftstreams/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/gameliftstreams/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/gameliftstreams/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/gameliftstreams/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/gameliftstreams/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/geo-maps/2020-11-19/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/geo-maps/2020-11-19/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/geo-maps/2020-11-19/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/geo-maps/2020-11-19/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/geo-maps/2020-11-19/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/geo-maps/2020-11-19/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/geo-places/2020-11-19/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/geo-places/2020-11-19/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/geo-places/2020-11-19/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/geo-places/2020-11-19/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/geo-places/2020-11-19/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/geo-places/2020-11-19/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/geo-routes/2020-11-19/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/geo-routes/2020-11-19/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/geo-routes/2020-11-19/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/geo-routes/2020-11-19/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/geo-routes/2020-11-19/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/geo-routes/2020-11-19/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/glacier/2012-06-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/glacier/2012-06-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/glacier/2012-06-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/glacier/2012-06-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/glacier/2012-06-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/glacier/2012-06-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/glacier/2012-06-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/glacier/2012-06-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/glacier/2012-06-01/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/glacier/2012-06-01/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/glacier/2012-06-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/glacier/2012-06-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/globalaccelerator/2018-08-08/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/globalaccelerator/2018-08-08/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/globalaccelerator/2018-08-08/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/globalaccelerator/2018-08-08/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/globalaccelerator/2018-08-08/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/globalaccelerator/2018-08-08/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/glue/2017-03-31/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/glue/2017-03-31/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/glue/2017-03-31/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/glue/2017-03-31/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/glue/2017-03-31/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/glue/2017-03-31/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/glue/2017-03-31/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/glue/2017-03-31/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/grafana/2020-08-18/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/grafana/2020-08-18/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/grafana/2020-08-18/defaults-1.json.php b/vendor/aws/aws-sdk-php/src/data/grafana/2020-08-18/defaults-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/grafana/2020-08-18/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/grafana/2020-08-18/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/grafana/2020-08-18/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/grafana/2020-08-18/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/grandfathered-services.json.php b/vendor/aws/aws-sdk-php/src/data/grandfathered-services.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/greengrass/2017-06-07/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/greengrass/2017-06-07/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/greengrass/2017-06-07/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/greengrass/2017-06-07/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/greengrassv2/2020-11-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/greengrassv2/2020-11-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/greengrassv2/2020-11-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/greengrassv2/2020-11-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/greengrassv2/2020-11-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/greengrassv2/2020-11-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/groundstation/2019-05-23/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/groundstation/2019-05-23/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/groundstation/2019-05-23/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/groundstation/2019-05-23/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/groundstation/2019-05-23/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/groundstation/2019-05-23/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/groundstation/2019-05-23/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/groundstation/2019-05-23/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/guardduty/2017-11-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/guardduty/2017-11-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/guardduty/2017-11-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/guardduty/2017-11-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/guardduty/2017-11-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/guardduty/2017-11-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/health/2016-08-04/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/health/2016-08-04/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/health/2016-08-04/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/health/2016-08-04/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/health/2016-08-04/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/health/2016-08-04/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/healthlake/2017-07-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/healthlake/2017-07-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/healthlake/2017-07-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/healthlake/2017-07-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/healthlake/2017-07-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/healthlake/2017-07-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/healthlake/2017-07-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/healthlake/2017-07-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/identitystore/2020-06-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/identitystore/2020-06-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/identitystore/2020-06-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/identitystore/2020-06-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/identitystore/2020-06-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/identitystore/2020-06-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/imagebuilder/2019-12-02/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/imagebuilder/2019-12-02/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/imagebuilder/2019-12-02/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/imagebuilder/2019-12-02/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/imagebuilder/2019-12-02/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/imagebuilder/2019-12-02/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/importexport/2010-06-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/importexport/2010-06-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/importexport/2010-06-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/importexport/2010-06-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/importexport/2010-06-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/importexport/2010-06-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/inspector-scan/2023-08-08/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/inspector-scan/2023-08-08/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/inspector-scan/2023-08-08/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/inspector-scan/2023-08-08/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/inspector-scan/2023-08-08/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/inspector-scan/2023-08-08/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/inspector/2016-02-16/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/inspector/2016-02-16/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/inspector/2016-02-16/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/inspector/2016-02-16/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/inspector/2016-02-16/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/inspector/2016-02-16/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/inspector/2016-02-16/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/inspector/2016-02-16/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/inspector2/2020-06-08/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/inspector2/2020-06-08/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/inspector2/2020-06-08/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/inspector2/2020-06-08/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/inspector2/2020-06-08/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/inspector2/2020-06-08/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/internetmonitor/2021-06-03/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/internetmonitor/2021-06-03/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/internetmonitor/2021-06-03/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/internetmonitor/2021-06-03/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/internetmonitor/2021-06-03/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/internetmonitor/2021-06-03/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/internetmonitor/2021-06-03/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/internetmonitor/2021-06-03/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/internetmonitor/2021-06-03/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/internetmonitor/2021-06-03/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/invoicing/2024-12-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/invoicing/2024-12-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/invoicing/2024-12-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/invoicing/2024-12-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/invoicing/2024-12-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/invoicing/2024-12-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/invoicing/2024-12-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/invoicing/2024-12-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/invoicing/2024-12-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/invoicing/2024-12-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iot-jobs-data/2017-09-29/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/iot-jobs-data/2017-09-29/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iot-jobs-data/2017-09-29/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/iot-jobs-data/2017-09-29/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iot-jobs-data/2017-09-29/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/iot-jobs-data/2017-09-29/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iot-managed-integrations/2025-03-03/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/iot-managed-integrations/2025-03-03/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iot-managed-integrations/2025-03-03/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/iot-managed-integrations/2025-03-03/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iot-managed-integrations/2025-03-03/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/iot-managed-integrations/2025-03-03/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iot/2015-05-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/iot/2015-05-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iot/2015-05-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/iot/2015-05-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iot/2015-05-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/iot/2015-05-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iot/2015-05-28/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/iot/2015-05-28/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotanalytics/2017-11-27/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/iotanalytics/2017-11-27/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotanalytics/2017-11-27/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotanalytics/2017-11-27/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotanalytics/2017-11-27/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotanalytics/2017-11-27/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotdeviceadvisor/2020-09-18/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/iotdeviceadvisor/2020-09-18/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotdeviceadvisor/2020-09-18/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotdeviceadvisor/2020-09-18/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotdeviceadvisor/2020-09-18/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotdeviceadvisor/2020-09-18/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotevents-data/2018-10-23/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/iotevents-data/2018-10-23/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotevents-data/2018-10-23/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotevents-data/2018-10-23/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotevents-data/2018-10-23/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotevents-data/2018-10-23/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotevents/2018-07-27/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/iotevents/2018-07-27/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotevents/2018-07-27/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotevents/2018-07-27/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotevents/2018-07-27/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotevents/2018-07-27/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotfleetwise/2021-06-17/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/iotfleetwise/2021-06-17/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotfleetwise/2021-06-17/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotfleetwise/2021-06-17/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotfleetwise/2021-06-17/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotfleetwise/2021-06-17/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotfleetwise/2021-06-17/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/iotfleetwise/2021-06-17/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotfleetwise/2021-06-17/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/iotfleetwise/2021-06-17/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotsecuretunneling/2018-10-05/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/iotsecuretunneling/2018-10-05/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotsecuretunneling/2018-10-05/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotsecuretunneling/2018-10-05/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotsecuretunneling/2018-10-05/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotsecuretunneling/2018-10-05/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotsitewise/2019-12-02/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/iotsitewise/2019-12-02/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotsitewise/2019-12-02/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotsitewise/2019-12-02/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotsitewise/2019-12-02/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotsitewise/2019-12-02/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotsitewise/2019-12-02/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/iotsitewise/2019-12-02/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotthingsgraph/2018-09-06/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/iotthingsgraph/2018-09-06/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotthingsgraph/2018-09-06/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotthingsgraph/2018-09-06/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotthingsgraph/2018-09-06/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotthingsgraph/2018-09-06/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iottwinmaker/2021-11-29/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/iottwinmaker/2021-11-29/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iottwinmaker/2021-11-29/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/iottwinmaker/2021-11-29/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iottwinmaker/2021-11-29/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/iottwinmaker/2021-11-29/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iottwinmaker/2021-11-29/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/iottwinmaker/2021-11-29/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iottwinmaker/2021-11-29/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/iottwinmaker/2021-11-29/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotwireless/2020-11-22/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/iotwireless/2020-11-22/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotwireless/2020-11-22/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotwireless/2020-11-22/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/iotwireless/2020-11-22/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/iotwireless/2020-11-22/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ivs-realtime/2020-07-14/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ivs-realtime/2020-07-14/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ivs-realtime/2020-07-14/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ivs-realtime/2020-07-14/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ivs-realtime/2020-07-14/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ivs-realtime/2020-07-14/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ivs-realtime/2020-07-14/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/ivs-realtime/2020-07-14/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ivs-realtime/2020-07-14/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/ivs-realtime/2020-07-14/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ivs/2020-07-14/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ivs/2020-07-14/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ivs/2020-07-14/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ivs/2020-07-14/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ivs/2020-07-14/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ivs/2020-07-14/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ivschat/2020-07-14/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ivschat/2020-07-14/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ivschat/2020-07-14/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ivschat/2020-07-14/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ivschat/2020-07-14/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ivschat/2020-07-14/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ivschat/2020-07-14/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/ivschat/2020-07-14/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ivschat/2020-07-14/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/ivschat/2020-07-14/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kafka/2018-11-14/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/kafka/2018-11-14/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kafka/2018-11-14/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/kafka/2018-11-14/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kafka/2018-11-14/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/kafka/2018-11-14/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kafkaconnect/2021-09-14/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/kafkaconnect/2021-09-14/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kafkaconnect/2021-09-14/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/kafkaconnect/2021-09-14/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kafkaconnect/2021-09-14/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/kafkaconnect/2021-09-14/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kafkaconnect/2021-09-14/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/kafkaconnect/2021-09-14/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kafkaconnect/2021-09-14/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/kafkaconnect/2021-09-14/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kendra-ranking/2022-10-19/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/kendra-ranking/2022-10-19/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kendra-ranking/2022-10-19/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/kendra-ranking/2022-10-19/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kendra-ranking/2022-10-19/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/kendra-ranking/2022-10-19/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kendra/2019-02-03/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/kendra/2019-02-03/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kendra/2019-02-03/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/kendra/2019-02-03/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kendra/2019-02-03/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/kendra/2019-02-03/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/keyspaces/2022-02-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/keyspacesstreams/2024-09-09/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/keyspacesstreams/2024-09-09/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/keyspacesstreams/2024-09-09/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/keyspacesstreams/2024-09-09/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/keyspacesstreams/2024-09-09/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/keyspacesstreams/2024-09-09/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/keyspacesstreams/2024-09-09/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/keyspacesstreams/2024-09-09/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesis-video-archived-media/2017-09-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/kinesis-video-archived-media/2017-09-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesis-video-archived-media/2017-09-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/kinesis-video-archived-media/2017-09-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesis-video-archived-media/2017-09-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/kinesis-video-archived-media/2017-09-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesis-video-media/2017-09-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/kinesis-video-media/2017-09-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesis-video-media/2017-09-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/kinesis-video-media/2017-09-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesis-video-media/2017-09-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/kinesis-video-media/2017-09-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesis-video-signaling/2019-12-04/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/kinesis-video-signaling/2019-12-04/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesis-video-signaling/2019-12-04/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/kinesis-video-signaling/2019-12-04/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesis-video-signaling/2019-12-04/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/kinesis-video-signaling/2019-12-04/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesis-video-webrtc-storage/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/kinesis-video-webrtc-storage/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesis-video-webrtc-storage/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/kinesis-video-webrtc-storage/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesis-video-webrtc-storage/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/kinesis-video-webrtc-storage/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesis/2013-12-02/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/kinesis/2013-12-02/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesis/2013-12-02/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/kinesis/2013-12-02/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesis/2013-12-02/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/kinesis/2013-12-02/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesis/2013-12-02/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/kinesis/2013-12-02/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesis/2013-12-02/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/kinesis/2013-12-02/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesisanalytics/2015-08-14/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/kinesisanalytics/2015-08-14/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesisanalytics/2015-08-14/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/kinesisanalytics/2015-08-14/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesisanalytics/2015-08-14/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/kinesisanalytics/2015-08-14/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesisanalyticsv2/2018-05-23/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/kinesisanalyticsv2/2018-05-23/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesisanalyticsv2/2018-05-23/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/kinesisanalyticsv2/2018-05-23/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesisanalyticsv2/2018-05-23/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/kinesisanalyticsv2/2018-05-23/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesisvideo/2017-09-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/kinesisvideo/2017-09-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesisvideo/2017-09-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/kinesisvideo/2017-09-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kinesisvideo/2017-09-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/kinesisvideo/2017-09-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kms/2014-11-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/kms/2014-11-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kms/2014-11-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/kms/2014-11-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kms/2014-11-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/kms/2014-11-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/kms/2014-11-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/kms/2014-11-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lakeformation/2017-03-31/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/lakeformation/2017-03-31/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lakeformation/2017-03-31/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/lakeformation/2017-03-31/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lakeformation/2017-03-31/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/lakeformation/2017-03-31/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lambda/2015-03-31/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/lambda/2015-03-31/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lambda/2015-03-31/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/lambda/2015-03-31/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lambda/2015-03-31/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/lambda/2015-03-31/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lambda/2015-03-31/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/lambda/2015-03-31/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lambda/2015-03-31/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/lambda/2015-03-31/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/launch-wizard/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/launch-wizard/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/launch-wizard/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/launch-wizard/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/launch-wizard/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/launch-wizard/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lex-models/2017-04-19/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/lex-models/2017-04-19/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lex-models/2017-04-19/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/lex-models/2017-04-19/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lex-models/2017-04-19/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/lex-models/2017-04-19/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/license-manager-linux-subscriptions/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/license-manager-linux-subscriptions/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/license-manager-linux-subscriptions/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/license-manager-linux-subscriptions/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/license-manager-linux-subscriptions/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/license-manager-linux-subscriptions/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/license-manager-user-subscriptions/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/license-manager-user-subscriptions/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/license-manager-user-subscriptions/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/license-manager-user-subscriptions/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/license-manager-user-subscriptions/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/license-manager-user-subscriptions/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/license-manager-user-subscriptions/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/license-manager-user-subscriptions/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/license-manager-user-subscriptions/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/license-manager-user-subscriptions/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/license-manager/2018-08-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/license-manager/2018-08-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/license-manager/2018-08-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/license-manager/2018-08-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/license-manager/2018-08-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/license-manager/2018-08-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lightsail/2016-11-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/lightsail/2016-11-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lightsail/2016-11-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/lightsail/2016-11-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lightsail/2016-11-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/lightsail/2016-11-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lightsail/2016-11-28/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/lightsail/2016-11-28/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/location/2020-11-19/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/location/2020-11-19/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/location/2020-11-19/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/location/2020-11-19/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/location/2020-11-19/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/location/2020-11-19/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/logs/2014-03-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/logs/2014-03-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/logs/2014-03-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/logs/2014-03-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/logs/2014-03-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/logs/2014-03-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/logs/2014-03-28/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/logs/2014-03-28/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lookoutequipment/2020-12-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/lookoutequipment/2020-12-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lookoutequipment/2020-12-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/lookoutequipment/2020-12-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/lookoutequipment/2020-12-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/lookoutequipment/2020-12-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/m2/2021-04-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/m2/2021-04-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/m2/2021-04-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/m2/2021-04-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/m2/2021-04-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/m2/2021-04-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/machinelearning/2014-12-12/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/machinelearning/2014-12-12/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/machinelearning/2014-12-12/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/machinelearning/2014-12-12/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/machinelearning/2014-12-12/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/machinelearning/2014-12-12/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/machinelearning/2014-12-12/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/machinelearning/2014-12-12/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/macie2/2020-01-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/macie2/2020-01-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/macie2/2020-01-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/macie2/2020-01-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/macie2/2020-01-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/macie2/2020-01-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/macie2/2020-01-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/macie2/2020-01-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mailmanager/2023-10-17/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/mailmanager/2023-10-17/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mailmanager/2023-10-17/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/mailmanager/2023-10-17/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mailmanager/2023-10-17/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/mailmanager/2023-10-17/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mailmanager/2023-10-17/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/mailmanager/2023-10-17/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mailmanager/2023-10-17/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/mailmanager/2023-10-17/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/managedblockchain-query/2023-05-04/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/managedblockchain-query/2023-05-04/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/managedblockchain-query/2023-05-04/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/managedblockchain-query/2023-05-04/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/managedblockchain-query/2023-05-04/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/managedblockchain-query/2023-05-04/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/managedblockchain-query/2023-05-04/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/managedblockchain-query/2023-05-04/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/managedblockchain-query/2023-05-04/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/managedblockchain-query/2023-05-04/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/managedblockchain/2018-09-24/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/managedblockchain/2018-09-24/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/managedblockchain/2018-09-24/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/managedblockchain/2018-09-24/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/managedblockchain/2018-09-24/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/managedblockchain/2018-09-24/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/manifest.json.php b/vendor/aws/aws-sdk-php/src/data/manifest.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplace-agreement/2020-03-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/marketplace-agreement/2020-03-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplace-agreement/2020-03-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/marketplace-agreement/2020-03-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplace-agreement/2020-03-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/marketplace-agreement/2020-03-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplace-agreement/2020-03-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/marketplace-agreement/2020-03-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplace-agreement/2020-03-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/marketplace-agreement/2020-03-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplace-catalog/2018-09-17/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/marketplace-catalog/2018-09-17/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplace-catalog/2018-09-17/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/marketplace-catalog/2018-09-17/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplace-catalog/2018-09-17/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/marketplace-catalog/2018-09-17/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplace-deployment/2023-01-25/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/marketplace-deployment/2023-01-25/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplace-deployment/2023-01-25/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/marketplace-deployment/2023-01-25/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplace-deployment/2023-01-25/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/marketplace-deployment/2023-01-25/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplace-reporting/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/marketplace-reporting/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplace-reporting/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/marketplace-reporting/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplace-reporting/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/marketplace-reporting/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplace-reporting/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/marketplace-reporting/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplace-reporting/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/marketplace-reporting/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplacecommerceanalytics/2015-07-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/marketplacecommerceanalytics/2015-07-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplacecommerceanalytics/2015-07-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/marketplacecommerceanalytics/2015-07-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplacecommerceanalytics/2015-07-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/marketplacecommerceanalytics/2015-07-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/marketplacecommerceanalytics/2015-07-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/marketplacecommerceanalytics/2015-07-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediaconnect/2018-11-14/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/mediaconnect/2018-11-14/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediaconnect/2018-11-14/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/mediaconnect/2018-11-14/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediaconnect/2018-11-14/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/mediaconnect/2018-11-14/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediaconnect/2018-11-14/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/mediaconnect/2018-11-14/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediaconnect/2018-11-14/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/mediaconnect/2018-11-14/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediaconvert/2017-08-29/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/mediaconvert/2017-08-29/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediaconvert/2017-08-29/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/mediaconvert/2017-08-29/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediaconvert/2017-08-29/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/mediaconvert/2017-08-29/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/medialive/2017-10-14/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/medialive/2017-10-14/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/medialive/2017-10-14/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/medialive/2017-10-14/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/medialive/2017-10-14/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/medialive/2017-10-14/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/medialive/2017-10-14/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/medialive/2017-10-14/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediapackage-vod/2018-11-07/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/mediapackage-vod/2018-11-07/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediapackage-vod/2018-11-07/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/mediapackage-vod/2018-11-07/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediapackage-vod/2018-11-07/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/mediapackage-vod/2018-11-07/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediapackage/2017-10-12/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/mediapackage/2017-10-12/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediapackage/2017-10-12/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/mediapackage/2017-10-12/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediapackage/2017-10-12/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/mediapackage/2017-10-12/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediapackagev2/2022-12-25/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/mediapackagev2/2022-12-25/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediapackagev2/2022-12-25/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/mediapackagev2/2022-12-25/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediapackagev2/2022-12-25/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/mediapackagev2/2022-12-25/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediapackagev2/2022-12-25/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/mediapackagev2/2022-12-25/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediapackagev2/2022-12-25/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/mediapackagev2/2022-12-25/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediastore-data/2017-09-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/mediastore-data/2017-09-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediastore-data/2017-09-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/mediastore-data/2017-09-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediastore-data/2017-09-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/mediastore-data/2017-09-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediastore/2017-09-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/mediastore/2017-09-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediastore/2017-09-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/mediastore/2017-09-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediastore/2017-09-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/mediastore/2017-09-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediatailor/2018-04-23/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/mediatailor/2018-04-23/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediatailor/2018-04-23/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/mediatailor/2018-04-23/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mediatailor/2018-04-23/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/mediatailor/2018-04-23/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/medical-imaging/2023-07-19/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/medical-imaging/2023-07-19/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/medical-imaging/2023-07-19/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/medical-imaging/2023-07-19/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/medical-imaging/2023-07-19/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/medical-imaging/2023-07-19/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/medical-imaging/2023-07-19/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/medical-imaging/2023-07-19/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/medical-imaging/2023-07-19/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/medical-imaging/2023-07-19/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/memorydb/2021-01-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/memorydb/2021-01-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/memorydb/2021-01-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/memorydb/2021-01-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/memorydb/2021-01-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/memorydb/2021-01-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/metering.marketplace/2016-01-14/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/metering.marketplace/2016-01-14/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/metering.marketplace/2016-01-14/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/metering.marketplace/2016-01-14/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/metering.marketplace/2016-01-14/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/metering.marketplace/2016-01-14/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mgh/2017-05-31/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/mgh/2017-05-31/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mgh/2017-05-31/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/mgh/2017-05-31/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mgh/2017-05-31/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/mgh/2017-05-31/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mgn/2020-02-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/mgn/2020-02-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mgn/2020-02-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/mgn/2020-02-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mgn/2020-02-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/mgn/2020-02-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mgn/2020-02-26/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/mgn/2020-02-26/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mgn/2020-02-26/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/mgn/2020-02-26/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/migration-hub-refactor-spaces/2021-10-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/migration-hub-refactor-spaces/2021-10-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/migration-hub-refactor-spaces/2021-10-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/migration-hub-refactor-spaces/2021-10-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/migration-hub-refactor-spaces/2021-10-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/migration-hub-refactor-spaces/2021-10-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/migrationhub-config/2019-06-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/migrationhub-config/2019-06-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/migrationhub-config/2019-06-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/migrationhub-config/2019-06-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/migrationhub-config/2019-06-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/migrationhub-config/2019-06-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/migrationhuborchestrator/2021-08-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/migrationhuborchestrator/2021-08-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/migrationhuborchestrator/2021-08-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/migrationhuborchestrator/2021-08-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/migrationhuborchestrator/2021-08-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/migrationhuborchestrator/2021-08-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/migrationhuborchestrator/2021-08-28/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/migrationhuborchestrator/2021-08-28/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/migrationhuborchestrator/2021-08-28/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/migrationhuborchestrator/2021-08-28/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/migrationhubstrategy/2020-02-19/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/migrationhubstrategy/2020-02-19/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/migrationhubstrategy/2020-02-19/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/migrationhubstrategy/2020-02-19/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/migrationhubstrategy/2020-02-19/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/migrationhubstrategy/2020-02-19/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/models.lex.v2/2020-08-07/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/models.lex.v2/2020-08-07/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/models.lex.v2/2020-08-07/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/models.lex.v2/2020-08-07/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/models.lex.v2/2020-08-07/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/models.lex.v2/2020-08-07/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/models.lex.v2/2020-08-07/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/models.lex.v2/2020-08-07/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/monitoring/2010-08-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/monitoring/2010-08-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/monitoring/2010-08-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/monitoring/2010-08-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/monitoring/2010-08-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/monitoring/2010-08-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/monitoring/2010-08-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/monitoring/2010-08-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/monitoring/2010-08-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/monitoring/2010-08-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mpa/2022-07-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/mpa/2022-07-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mpa/2022-07-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/mpa/2022-07-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mpa/2022-07-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/mpa/2022-07-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mpa/2022-07-26/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/mpa/2022-07-26/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mpa/2022-07-26/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/mpa/2022-07-26/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mq/2017-11-27/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/mq/2017-11-27/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mq/2017-11-27/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/mq/2017-11-27/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mq/2017-11-27/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/mq/2017-11-27/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mturk-requester/2017-01-17/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/mturk-requester/2017-01-17/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mturk-requester/2017-01-17/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/mturk-requester/2017-01-17/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mturk-requester/2017-01-17/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/mturk-requester/2017-01-17/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mturk-requester/2017-01-17/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/mturk-requester/2017-01-17/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mwaa-serverless/2024-07-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/mwaa-serverless/2024-07-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mwaa-serverless/2024-07-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/mwaa-serverless/2024-07-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mwaa-serverless/2024-07-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/mwaa-serverless/2024-07-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mwaa-serverless/2024-07-26/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/mwaa-serverless/2024-07-26/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mwaa-serverless/2024-07-26/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/mwaa-serverless/2024-07-26/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mwaa/2020-07-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/mwaa/2020-07-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mwaa/2020-07-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/mwaa/2020-07-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/mwaa/2020-07-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/mwaa/2020-07-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/neptune-graph/2023-11-29/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/neptune-graph/2023-11-29/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/neptune-graph/2023-11-29/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/neptune-graph/2023-11-29/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/neptune-graph/2023-11-29/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/neptune-graph/2023-11-29/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/neptune-graph/2023-11-29/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/neptune-graph/2023-11-29/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/neptune/2014-10-31/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/neptune/2014-10-31/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/neptune/2014-10-31/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/neptune/2014-10-31/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/neptune/2014-10-31/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/neptune/2014-10-31/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/neptune/2014-10-31/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/neptune/2014-10-31/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/neptune/2014-10-31/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/neptune/2014-10-31/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/neptunedata/2023-08-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/neptunedata/2023-08-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/neptunedata/2023-08-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/neptunedata/2023-08-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/neptunedata/2023-08-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/neptunedata/2023-08-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/network-firewall/2020-11-12/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/network-firewall/2020-11-12/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/network-firewall/2020-11-12/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/network-firewall/2020-11-12/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/network-firewall/2020-11-12/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/network-firewall/2020-11-12/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/networkflowmonitor/2023-04-19/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/networkflowmonitor/2023-04-19/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/networkflowmonitor/2023-04-19/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/networkflowmonitor/2023-04-19/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/networkflowmonitor/2023-04-19/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/networkflowmonitor/2023-04-19/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/networkflowmonitor/2023-04-19/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/networkflowmonitor/2023-04-19/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/networkflowmonitor/2023-04-19/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/networkflowmonitor/2023-04-19/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/networkmanager/2019-07-05/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/networkmanager/2019-07-05/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/networkmanager/2019-07-05/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/networkmanager/2019-07-05/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/networkmanager/2019-07-05/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/networkmanager/2019-07-05/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/networkmonitor/2023-08-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/networkmonitor/2023-08-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/networkmonitor/2023-08-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/networkmonitor/2023-08-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/networkmonitor/2023-08-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/networkmonitor/2023-08-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/networkmonitor/2023-08-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/networkmonitor/2023-08-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/networkmonitor/2023-08-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/networkmonitor/2023-08-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/notifications/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/notifications/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/notifications/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/notifications/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/notifications/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/notifications/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/notifications/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/notifications/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/notifications/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/notifications/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/notificationscontacts/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/notificationscontacts/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/notificationscontacts/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/notificationscontacts/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/notificationscontacts/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/notificationscontacts/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/notificationscontacts/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/notificationscontacts/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/notificationscontacts/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/notificationscontacts/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/nova-act/2025-08-22/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/nova-act/2025-08-22/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/nova-act/2025-08-22/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/nova-act/2025-08-22/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/nova-act/2025-08-22/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/nova-act/2025-08-22/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/nova-act/2025-08-22/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/nova-act/2025-08-22/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/nova-act/2025-08-22/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/nova-act/2025-08-22/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/oam/2022-06-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/oam/2022-06-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/oam/2022-06-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/oam/2022-06-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/oam/2022-06-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/oam/2022-06-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/observabilityadmin/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/observabilityadmin/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/observabilityadmin/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/observabilityadmin/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/observabilityadmin/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/observabilityadmin/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/observabilityadmin/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/observabilityadmin/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/observabilityadmin/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/observabilityadmin/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/odb/2024-08-20/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/odb/2024-08-20/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/odb/2024-08-20/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/odb/2024-08-20/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/odb/2024-08-20/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/odb/2024-08-20/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/odb/2024-08-20/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/odb/2024-08-20/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/odb/2024-08-20/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/odb/2024-08-20/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/omics/2022-11-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/omics/2022-11-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/omics/2022-11-28/defaults-1.json.php b/vendor/aws/aws-sdk-php/src/data/omics/2022-11-28/defaults-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/omics/2022-11-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/omics/2022-11-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/omics/2022-11-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/omics/2022-11-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/omics/2022-11-28/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/omics/2022-11-28/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/omics/2022-11-28/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/omics/2022-11-28/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/opensearch/2021-01-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/opensearch/2021-01-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/opensearch/2021-01-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/opensearch/2021-01-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/opensearch/2021-01-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/opensearch/2021-01-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/opensearch/2021-01-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/opensearch/2021-01-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/opensearchserverless/2021-11-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/opensearchserverless/2021-11-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/opensearchserverless/2021-11-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/opensearchserverless/2021-11-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/opensearchserverless/2021-11-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/opensearchserverless/2021-11-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/opensearchserverless/2021-11-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/opensearchserverless/2021-11-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/opensearchserverless/2021-11-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/opensearchserverless/2021-11-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/organizations/2016-11-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/organizations/2016-11-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/organizations/2016-11-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/organizations/2016-11-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/organizations/2016-11-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/organizations/2016-11-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/osis/2022-01-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/osis/2022-01-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/osis/2022-01-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/osis/2022-01-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/osis/2022-01-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/osis/2022-01-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/outposts/2019-12-03/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/outposts/2019-12-03/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/outposts/2019-12-03/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/outposts/2019-12-03/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/outposts/2019-12-03/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/outposts/2019-12-03/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/panorama/2019-07-24/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/panorama/2019-07-24/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/panorama/2019-07-24/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/panorama/2019-07-24/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/panorama/2019-07-24/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/panorama/2019-07-24/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partitions.json.php b/vendor/aws/aws-sdk-php/src/data/partitions.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-account/2025-04-04/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-account/2025-04-04/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-account/2025-04-04/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-account/2025-04-04/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-account/2025-04-04/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-account/2025-04-04/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-account/2025-04-04/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-account/2025-04-04/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-account/2025-04-04/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-account/2025-04-04/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-benefits/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-benefits/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-benefits/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-benefits/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-benefits/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-benefits/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-benefits/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-benefits/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-benefits/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-benefits/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-channel/2024-03-18/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-channel/2024-03-18/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-channel/2024-03-18/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-channel/2024-03-18/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-channel/2024-03-18/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-channel/2024-03-18/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-channel/2024-03-18/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-channel/2024-03-18/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-channel/2024-03-18/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-channel/2024-03-18/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-selling/2022-07-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-selling/2022-07-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-selling/2022-07-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-selling/2022-07-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-selling/2022-07-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-selling/2022-07-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-selling/2022-07-26/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-selling/2022-07-26/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/partnercentral-selling/2022-07-26/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/partnercentral-selling/2022-07-26/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/payment-cryptography-data/2022-02-03/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/payment-cryptography-data/2022-02-03/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/payment-cryptography-data/2022-02-03/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/payment-cryptography-data/2022-02-03/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/payment-cryptography-data/2022-02-03/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/payment-cryptography-data/2022-02-03/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/payment-cryptography-data/2022-02-03/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/payment-cryptography-data/2022-02-03/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/payment-cryptography-data/2022-02-03/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/payment-cryptography-data/2022-02-03/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/payment-cryptography/2021-09-14/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/payment-cryptography/2021-09-14/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/payment-cryptography/2021-09-14/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/payment-cryptography/2021-09-14/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/payment-cryptography/2021-09-14/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/payment-cryptography/2021-09-14/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/payment-cryptography/2021-09-14/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/payment-cryptography/2021-09-14/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/payment-cryptography/2021-09-14/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/payment-cryptography/2021-09-14/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pca-connector-ad/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/pca-connector-ad/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pca-connector-ad/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/pca-connector-ad/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pca-connector-ad/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/pca-connector-ad/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pca-connector-scep/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/pca-connector-scep/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pca-connector-scep/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/pca-connector-scep/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pca-connector-scep/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/pca-connector-scep/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pca-connector-scep/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/pca-connector-scep/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pca-connector-scep/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/pca-connector-scep/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pcs/2023-02-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/pcs/2023-02-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pcs/2023-02-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/pcs/2023-02-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pcs/2023-02-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/pcs/2023-02-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pcs/2023-02-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/pcs/2023-02-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pcs/2023-02-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/pcs/2023-02-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/personalize-events/2018-03-22/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/personalize-events/2018-03-22/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/personalize-events/2018-03-22/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/personalize-events/2018-03-22/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/personalize-events/2018-03-22/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/personalize-events/2018-03-22/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/personalize-runtime/2018-05-22/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/personalize-runtime/2018-05-22/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/personalize-runtime/2018-05-22/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/personalize-runtime/2018-05-22/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/personalize-runtime/2018-05-22/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/personalize-runtime/2018-05-22/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/personalize/2018-05-22/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/personalize/2018-05-22/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/personalize/2018-05-22/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/personalize/2018-05-22/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/personalize/2018-05-22/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/personalize/2018-05-22/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pi/2018-02-27/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/pi/2018-02-27/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pi/2018-02-27/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/pi/2018-02-27/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pi/2018-02-27/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/pi/2018-02-27/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pinpoint-email/2018-07-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/pinpoint-email/2018-07-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pinpoint-email/2018-07-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/pinpoint-email/2018-07-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pinpoint-email/2018-07-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/pinpoint-email/2018-07-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pinpoint-sms-voice-v2/2022-03-31/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/pinpoint-sms-voice-v2/2022-03-31/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pinpoint-sms-voice-v2/2022-03-31/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/pinpoint-sms-voice-v2/2022-03-31/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pinpoint-sms-voice-v2/2022-03-31/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/pinpoint-sms-voice-v2/2022-03-31/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pinpoint-sms-voice-v2/2022-03-31/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/pinpoint-sms-voice-v2/2022-03-31/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pinpoint-sms-voice-v2/2022-03-31/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/pinpoint-sms-voice-v2/2022-03-31/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pinpoint/2016-12-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/pinpoint/2016-12-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pinpoint/2016-12-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/pinpoint/2016-12-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pipes/2015-10-07/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/pipes/2015-10-07/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pipes/2015-10-07/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/pipes/2015-10-07/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pipes/2015-10-07/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/pipes/2015-10-07/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pipes/2015-10-07/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/pipes/2015-10-07/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pipes/2015-10-07/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/pipes/2015-10-07/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/polly/2016-06-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/polly/2016-06-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/polly/2016-06-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/polly/2016-06-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/polly/2016-06-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/polly/2016-06-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/polly/2016-06-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/polly/2016-06-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pricing/2017-10-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/pricing/2017-10-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pricing/2017-10-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/pricing/2017-10-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pricing/2017-10-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/pricing/2017-10-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pricing/2017-10-15/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/pricing/2017-10-15/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/pricing/2017-10-15/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/pricing/2017-10-15/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/proton/2020-07-20/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/proton/2020-07-20/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/proton/2020-07-20/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/proton/2020-07-20/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/proton/2020-07-20/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/proton/2020-07-20/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/proton/2020-07-20/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/proton/2020-07-20/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/qapps/2023-11-27/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/qapps/2023-11-27/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/qapps/2023-11-27/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/qapps/2023-11-27/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/qapps/2023-11-27/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/qapps/2023-11-27/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/qapps/2023-11-27/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/qapps/2023-11-27/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/qapps/2023-11-27/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/qapps/2023-11-27/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/qbusiness/2023-11-27/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/qbusiness/2023-11-27/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/qbusiness/2023-11-27/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/qbusiness/2023-11-27/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/qbusiness/2023-11-27/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/qbusiness/2023-11-27/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/qbusiness/2023-11-27/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/qbusiness/2023-11-27/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/qbusiness/2023-11-27/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/qbusiness/2023-11-27/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/qconnect/2020-10-19/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/qconnect/2020-10-19/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/qconnect/2020-10-19/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/qconnect/2020-10-19/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/qconnect/2020-10-19/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/qconnect/2020-10-19/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/qconnect/2020-10-19/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/qconnect/2020-10-19/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/qconnect/2020-10-19/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/qconnect/2020-10-19/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/quicksight/2018-04-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/quicksight/2018-04-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/quicksight/2018-04-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/quicksight/2018-04-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/quicksight/2018-04-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/quicksight/2018-04-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ram/2018-01-04/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ram/2018-01-04/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ram/2018-01-04/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ram/2018-01-04/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ram/2018-01-04/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ram/2018-01-04/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rbin/2021-06-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/rbin/2021-06-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rbin/2021-06-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/rbin/2021-06-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rbin/2021-06-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/rbin/2021-06-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rds-data/2018-08-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/rds-data/2018-08-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rds-data/2018-08-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/rds-data/2018-08-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rds-data/2018-08-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/rds-data/2018-08-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rds/2014-09-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/rds/2014-09-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rds/2014-09-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/rds/2014-09-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rds/2014-09-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/rds/2014-09-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rds/2014-09-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/rds/2014-09-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rds/2014-10-31/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/rds/2014-10-31/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rds/2014-10-31/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/rds/2014-10-31/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rds/2014-10-31/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/rds/2014-10-31/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rds/2014-10-31/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/rds/2014-10-31/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rds/2014-10-31/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/rds/2014-10-31/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rds/2014-10-31/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/rds/2014-10-31/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/redshift-data/2019-12-20/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/redshift-data/2019-12-20/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/redshift-data/2019-12-20/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/redshift-data/2019-12-20/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/redshift-data/2019-12-20/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/redshift-data/2019-12-20/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/redshift-serverless/2021-04-21/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/redshift-serverless/2021-04-21/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/redshift-serverless/2021-04-21/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/redshift-serverless/2021-04-21/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/redshift-serverless/2021-04-21/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/redshift-serverless/2021-04-21/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rekognition/2016-06-27/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/rekognition/2016-06-27/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rekognition/2016-06-27/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/rekognition/2016-06-27/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rekognition/2016-06-27/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/rekognition/2016-06-27/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rekognition/2016-06-27/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/rekognition/2016-06-27/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rekognition/2016-06-27/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/rekognition/2016-06-27/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/repostspace/2022-05-13/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/repostspace/2022-05-13/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/repostspace/2022-05-13/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/repostspace/2022-05-13/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/repostspace/2022-05-13/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/repostspace/2022-05-13/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/repostspace/2022-05-13/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/repostspace/2022-05-13/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/repostspace/2022-05-13/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/repostspace/2022-05-13/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/resiliencehub/2020-04-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/resiliencehub/2020-04-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/resiliencehub/2020-04-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/resiliencehub/2020-04-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/resiliencehub/2020-04-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/resiliencehub/2020-04-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/resource-explorer-2/2022-07-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/resource-explorer-2/2022-07-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/resource-explorer-2/2022-07-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/resource-explorer-2/2022-07-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/resource-explorer-2/2022-07-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/resource-explorer-2/2022-07-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/resource-explorer-2/2022-07-28/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/resource-explorer-2/2022-07-28/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/resource-explorer-2/2022-07-28/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/resource-explorer-2/2022-07-28/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/resource-groups/2017-11-27/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/resource-groups/2017-11-27/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/resource-groups/2017-11-27/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/resource-groups/2017-11-27/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/resource-groups/2017-11-27/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/resource-groups/2017-11-27/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/resourcegroupstaggingapi/2017-01-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/resourcegroupstaggingapi/2017-01-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/resourcegroupstaggingapi/2017-01-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/resourcegroupstaggingapi/2017-01-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/resourcegroupstaggingapi/2017-01-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/resourcegroupstaggingapi/2017-01-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rolesanywhere/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/rolesanywhere/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rolesanywhere/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/rolesanywhere/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rolesanywhere/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/rolesanywhere/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rolesanywhere/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/rolesanywhere/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rolesanywhere/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/rolesanywhere/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53-recovery-cluster/2019-12-02/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/route53-recovery-cluster/2019-12-02/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53-recovery-cluster/2019-12-02/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/route53-recovery-cluster/2019-12-02/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53-recovery-cluster/2019-12-02/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/route53-recovery-cluster/2019-12-02/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53-recovery-control-config/2020-11-02/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/route53-recovery-control-config/2020-11-02/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53-recovery-control-config/2020-11-02/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/route53-recovery-control-config/2020-11-02/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53-recovery-control-config/2020-11-02/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/route53-recovery-control-config/2020-11-02/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53-recovery-control-config/2020-11-02/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/route53-recovery-control-config/2020-11-02/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53-recovery-readiness/2019-12-02/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/route53-recovery-readiness/2019-12-02/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53-recovery-readiness/2019-12-02/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/route53-recovery-readiness/2019-12-02/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53-recovery-readiness/2019-12-02/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/route53-recovery-readiness/2019-12-02/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53/2013-04-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/route53/2013-04-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53/2013-04-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/route53/2013-04-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53/2013-04-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/route53/2013-04-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53/2013-04-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/route53/2013-04-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53/2013-04-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/route53/2013-04-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53domains/2014-05-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/route53domains/2014-05-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53domains/2014-05-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/route53domains/2014-05-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53domains/2014-05-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/route53domains/2014-05-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53domains/2014-05-15/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/route53domains/2014-05-15/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53globalresolver/2022-09-27/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/route53globalresolver/2022-09-27/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53globalresolver/2022-09-27/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/route53globalresolver/2022-09-27/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53globalresolver/2022-09-27/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/route53globalresolver/2022-09-27/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53globalresolver/2022-09-27/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/route53globalresolver/2022-09-27/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53globalresolver/2022-09-27/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/route53globalresolver/2022-09-27/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53profiles/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/route53profiles/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53profiles/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/route53profiles/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53profiles/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/route53profiles/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53resolver/2018-04-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/route53resolver/2018-04-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53resolver/2018-04-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/route53resolver/2018-04-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53resolver/2018-04-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/route53resolver/2018-04-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/route53resolver/2018-04-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/route53resolver/2018-04-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rtbfabric/2023-05-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/rtbfabric/2023-05-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rtbfabric/2023-05-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/rtbfabric/2023-05-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rtbfabric/2023-05-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/rtbfabric/2023-05-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rtbfabric/2023-05-15/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/rtbfabric/2023-05-15/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rtbfabric/2023-05-15/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/rtbfabric/2023-05-15/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rum/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/rum/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rum/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/rum/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rum/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/rum/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rum/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/rum/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/rum/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/rum/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/runtime.lex.v2/2020-08-07/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/runtime.lex.v2/2020-08-07/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/runtime.lex.v2/2020-08-07/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/runtime.lex.v2/2020-08-07/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/runtime.lex.v2/2020-08-07/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/runtime.lex.v2/2020-08-07/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/runtime.lex/2016-11-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/runtime.lex/2016-11-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/runtime.lex/2016-11-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/runtime.lex/2016-11-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/runtime.lex/2016-11-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/runtime.lex/2016-11-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/runtime.sagemaker/2017-05-13/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/runtime.sagemaker/2017-05-13/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/runtime.sagemaker/2017-05-13/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/runtime.sagemaker/2017-05-13/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/runtime.sagemaker/2017-05-13/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/runtime.sagemaker/2017-05-13/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/waiters-1.json.php b/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/waiters-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3control/2018-08-20/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/s3control/2018-08-20/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3control/2018-08-20/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/s3control/2018-08-20/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3control/2018-08-20/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/s3control/2018-08-20/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3outposts/2017-07-25/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/s3outposts/2017-07-25/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3outposts/2017-07-25/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/s3outposts/2017-07-25/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3outposts/2017-07-25/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/s3outposts/2017-07-25/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3tables/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/s3tables/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3tables/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/s3tables/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3tables/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/s3tables/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3tables/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/s3tables/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3tables/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/s3tables/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3vectors/2025-07-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/s3vectors/2025-07-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3vectors/2025-07-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/s3vectors/2025-07-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3vectors/2025-07-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/s3vectors/2025-07-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3vectors/2025-07-15/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/s3vectors/2025-07-15/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/s3vectors/2025-07-15/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/s3vectors/2025-07-15/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker-a2i-runtime/2019-11-07/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker-a2i-runtime/2019-11-07/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker-a2i-runtime/2019-11-07/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker-a2i-runtime/2019-11-07/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker-a2i-runtime/2019-11-07/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker-a2i-runtime/2019-11-07/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker-edge/2020-09-23/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker-edge/2020-09-23/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker-edge/2020-09-23/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker-edge/2020-09-23/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker-edge/2020-09-23/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker-edge/2020-09-23/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker-featurestore-runtime/2020-07-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker-featurestore-runtime/2020-07-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker-featurestore-runtime/2020-07-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker-featurestore-runtime/2020-07-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker-featurestore-runtime/2020-07-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker-featurestore-runtime/2020-07-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker-geospatial/2020-05-27/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker-geospatial/2020-05-27/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker-geospatial/2020-05-27/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker-geospatial/2020-05-27/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker-geospatial/2020-05-27/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker-geospatial/2020-05-27/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker-metrics/2022-09-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker-metrics/2022-09-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker-metrics/2022-09-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker-metrics/2022-09-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker-metrics/2022-09-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker-metrics/2022-09-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker/2017-07-24/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker/2017-07-24/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker/2017-07-24/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker/2017-07-24/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker/2017-07-24/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker/2017-07-24/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sagemaker/2017-07-24/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/sagemaker/2017-07-24/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/savingsplans/2019-06-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/savingsplans/2019-06-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/savingsplans/2019-06-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/savingsplans/2019-06-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/savingsplans/2019-06-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/savingsplans/2019-06-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/scheduler/2021-06-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/scheduler/2021-06-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/scheduler/2021-06-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/scheduler/2021-06-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/scheduler/2021-06-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/scheduler/2021-06-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/schemas/2019-12-02/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/schemas/2019-12-02/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/schemas/2019-12-02/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/schemas/2019-12-02/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/schemas/2019-12-02/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/schemas/2019-12-02/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/schemas/2019-12-02/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/schemas/2019-12-02/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sdk-default-configuration.json.php b/vendor/aws/aws-sdk-php/src/data/sdk-default-configuration.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/secretsmanager/2017-10-17/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/secretsmanager/2017-10-17/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/secretsmanager/2017-10-17/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/secretsmanager/2017-10-17/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/secretsmanager/2017-10-17/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/secretsmanager/2017-10-17/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/secretsmanager/2017-10-17/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/secretsmanager/2017-10-17/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/security-ir/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/security-ir/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/security-ir/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/security-ir/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/security-ir/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/security-ir/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/security-ir/2018-05-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/security-ir/2018-05-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/security-ir/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/security-ir/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/securityhub/2018-10-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/securityhub/2018-10-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/securityhub/2018-10-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/securityhub/2018-10-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/securityhub/2018-10-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/securityhub/2018-10-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/securitylake/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/securitylake/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/securitylake/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/securitylake/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/securitylake/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/securitylake/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/serverlessrepo/2017-09-08/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/serverlessrepo/2017-09-08/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/serverlessrepo/2017-09-08/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/serverlessrepo/2017-09-08/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/serverlessrepo/2017-09-08/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/serverlessrepo/2017-09-08/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/service-quotas/2019-06-24/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/service-quotas/2019-06-24/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/service-quotas/2019-06-24/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/service-quotas/2019-06-24/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/service-quotas/2019-06-24/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/service-quotas/2019-06-24/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/servicecatalog-appregistry/2020-06-24/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/servicecatalog-appregistry/2020-06-24/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/servicecatalog-appregistry/2020-06-24/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/servicecatalog-appregistry/2020-06-24/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/servicecatalog-appregistry/2020-06-24/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/servicecatalog-appregistry/2020-06-24/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/servicecatalog/2015-12-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/servicecatalog/2015-12-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/servicecatalog/2015-12-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/servicecatalog/2015-12-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/servicecatalog/2015-12-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/servicecatalog/2015-12-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/servicecatalog/2015-12-10/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/servicecatalog/2015-12-10/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/servicediscovery/2017-03-14/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/servicediscovery/2017-03-14/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/servicediscovery/2017-03-14/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/servicediscovery/2017-03-14/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/servicediscovery/2017-03-14/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/servicediscovery/2017-03-14/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sesv2/2019-09-27/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/sesv2/2019-09-27/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sesv2/2019-09-27/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/sesv2/2019-09-27/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sesv2/2019-09-27/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/sesv2/2019-09-27/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/shield/2016-06-02/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/shield/2016-06-02/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/shield/2016-06-02/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/shield/2016-06-02/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/shield/2016-06-02/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/shield/2016-06-02/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/shield/2016-06-02/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/shield/2016-06-02/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/signer/2017-08-25/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/signer/2017-08-25/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/signer/2017-08-25/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/signer/2017-08-25/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/signer/2017-08-25/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/signer/2017-08-25/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/signer/2017-08-25/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/signer/2017-08-25/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/signin/2023-01-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/signin/2023-01-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/signin/2023-01-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/signin/2023-01-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/signin/2023-01-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/signin/2023-01-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/simspaceweaver/2022-10-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/simspaceweaver/2022-10-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/simspaceweaver/2022-10-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/simspaceweaver/2022-10-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/simspaceweaver/2022-10-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/simspaceweaver/2022-10-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sms-voice/2018-09-05/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/sms-voice/2018-09-05/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sms-voice/2018-09-05/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/sms-voice/2018-09-05/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/snow-device-management/2021-08-04/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/snow-device-management/2021-08-04/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/snow-device-management/2021-08-04/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/snow-device-management/2021-08-04/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/snow-device-management/2021-08-04/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/snow-device-management/2021-08-04/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/snowball/2016-06-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/snowball/2016-06-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/snowball/2016-06-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/snowball/2016-06-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/snowball/2016-06-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/snowball/2016-06-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/snowball/2016-06-30/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/snowball/2016-06-30/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sns/2010-03-31/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/sns/2010-03-31/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sns/2010-03-31/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/sns/2010-03-31/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sns/2010-03-31/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/sns/2010-03-31/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sns/2010-03-31/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/sns/2010-03-31/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/socialmessaging/2024-01-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/socialmessaging/2024-01-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/socialmessaging/2024-01-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/socialmessaging/2024-01-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/socialmessaging/2024-01-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/socialmessaging/2024-01-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sqs/2012-11-05/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/sqs/2012-11-05/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sqs/2012-11-05/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/sqs/2012-11-05/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sqs/2012-11-05/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/sqs/2012-11-05/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sqs/2012-11-05/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/sqs/2012-11-05/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sqs/2012-11-05/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/sqs/2012-11-05/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm-contacts/2021-05-03/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ssm-contacts/2021-05-03/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm-contacts/2021-05-03/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ssm-contacts/2021-05-03/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm-contacts/2021-05-03/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ssm-contacts/2021-05-03/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm-guiconnect/2021-05-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ssm-guiconnect/2021-05-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm-guiconnect/2021-05-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ssm-guiconnect/2021-05-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm-guiconnect/2021-05-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ssm-guiconnect/2021-05-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm-incidents/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ssm-incidents/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm-incidents/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ssm-incidents/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm-incidents/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ssm-incidents/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm-incidents/2018-05-10/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/ssm-incidents/2018-05-10/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm-quicksetup/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ssm-quicksetup/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm-quicksetup/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ssm-quicksetup/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm-quicksetup/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ssm-quicksetup/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm-sap/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ssm-sap/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm-sap/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ssm-sap/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm-sap/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ssm-sap/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm/2014-11-06/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/ssm/2014-11-06/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm/2014-11-06/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/ssm/2014-11-06/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm/2014-11-06/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/ssm/2014-11-06/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm/2014-11-06/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/ssm/2014-11-06/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/ssm/2014-11-06/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/ssm/2014-11-06/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sso-admin/2020-07-20/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/sso-admin/2020-07-20/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sso-admin/2020-07-20/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/sso-admin/2020-07-20/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sso-admin/2020-07-20/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/sso-admin/2020-07-20/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sso-admin/2020-07-20/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/sso-admin/2020-07-20/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sso-admin/2020-07-20/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/sso-admin/2020-07-20/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sso-oidc/2019-06-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/sso-oidc/2019-06-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sso-oidc/2019-06-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/sso-oidc/2019-06-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sso-oidc/2019-06-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/sso-oidc/2019-06-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sso/2019-06-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/sso/2019-06-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sso/2019-06-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/sso/2019-06-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sso/2019-06-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/sso/2019-06-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/states/2016-11-23/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/states/2016-11-23/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/states/2016-11-23/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/states/2016-11-23/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/states/2016-11-23/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/states/2016-11-23/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/states/2016-11-23/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/states/2016-11-23/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/storagegateway/2013-06-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/storagegateway/2013-06-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/storagegateway/2013-06-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/storagegateway/2013-06-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/storagegateway/2013-06-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/storagegateway/2013-06-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/streams.dynamodb/2012-08-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/streams.dynamodb/2012-08-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/streams.dynamodb/2012-08-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/streams.dynamodb/2012-08-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/streams.dynamodb/2012-08-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/streams.dynamodb/2012-08-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sts/2011-06-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/sts/2011-06-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sts/2011-06-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/sts/2011-06-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sts/2011-06-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/sts/2011-06-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/sts/2011-06-15/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/sts/2011-06-15/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/supplychain/2024-01-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/supplychain/2024-01-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/supplychain/2024-01-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/supplychain/2024-01-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/supplychain/2024-01-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/supplychain/2024-01-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/support-app/2021-08-20/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/support-app/2021-08-20/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/support-app/2021-08-20/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/support-app/2021-08-20/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/support-app/2021-08-20/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/support-app/2021-08-20/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/support/2013-04-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/support/2013-04-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/support/2013-04-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/support/2013-04-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/support/2013-04-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/support/2013-04-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/support/2013-04-15/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/support/2013-04-15/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/swf/2012-01-25/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/swf/2012-01-25/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/swf/2012-01-25/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/swf/2012-01-25/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/swf/2012-01-25/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/swf/2012-01-25/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/swf/2012-01-25/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/swf/2012-01-25/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/synthetics/2017-10-11/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/synthetics/2017-10-11/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/synthetics/2017-10-11/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/synthetics/2017-10-11/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/synthetics/2017-10-11/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/synthetics/2017-10-11/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/taxsettings/2018-05-10/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/taxsettings/2018-05-10/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/taxsettings/2018-05-10/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/taxsettings/2018-05-10/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/taxsettings/2018-05-10/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/taxsettings/2018-05-10/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/textract/2018-06-27/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/textract/2018-06-27/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/textract/2018-06-27/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/textract/2018-06-27/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/textract/2018-06-27/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/textract/2018-06-27/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/timestream-influxdb/2023-01-27/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/timestream-influxdb/2023-01-27/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/timestream-influxdb/2023-01-27/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/timestream-influxdb/2023-01-27/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/timestream-influxdb/2023-01-27/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/timestream-influxdb/2023-01-27/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/timestream-query/2018-11-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/timestream-query/2018-11-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/timestream-query/2018-11-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/timestream-query/2018-11-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/timestream-query/2018-11-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/timestream-query/2018-11-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/timestream-write/2018-11-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/timestream-write/2018-11-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/timestream-write/2018-11-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/timestream-write/2018-11-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/timestream-write/2018-11-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/timestream-write/2018-11-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/tnb/2008-10-21/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/tnb/2008-10-21/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/tnb/2008-10-21/defaults-1.json.php b/vendor/aws/aws-sdk-php/src/data/tnb/2008-10-21/defaults-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/tnb/2008-10-21/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/tnb/2008-10-21/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/tnb/2008-10-21/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/tnb/2008-10-21/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/transcribe/2017-10-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/transcribe/2017-10-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/transcribe/2017-10-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/transcribe/2017-10-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/transcribe/2017-10-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/transcribe/2017-10-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/transcribe/2017-10-26/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/transcribe/2017-10-26/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/transfer/2018-11-05/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/transfer/2018-11-05/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/transfer/2018-11-05/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/transfer/2018-11-05/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/transfer/2018-11-05/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/transfer/2018-11-05/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/transfer/2018-11-05/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/transfer/2018-11-05/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/translate/2017-07-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/translate/2017-07-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/translate/2017-07-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/translate/2017-07-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/translate/2017-07-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/translate/2017-07-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/trustedadvisor/2022-09-15/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/trustedadvisor/2022-09-15/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/trustedadvisor/2022-09-15/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/trustedadvisor/2022-09-15/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/trustedadvisor/2022-09-15/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/trustedadvisor/2022-09-15/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/verifiedpermissions/2021-12-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/verifiedpermissions/2021-12-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/verifiedpermissions/2021-12-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/verifiedpermissions/2021-12-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/verifiedpermissions/2021-12-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/verifiedpermissions/2021-12-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/verifiedpermissions/2021-12-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/verifiedpermissions/2021-12-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/verifiedpermissions/2021-12-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/verifiedpermissions/2021-12-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/voice-id/2021-09-27/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/voice-id/2021-09-27/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/voice-id/2021-09-27/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/voice-id/2021-09-27/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/voice-id/2021-09-27/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/voice-id/2021-09-27/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/vpc-lattice/2022-11-30/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/vpc-lattice/2022-11-30/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/vpc-lattice/2022-11-30/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/vpc-lattice/2022-11-30/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/vpc-lattice/2022-11-30/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/vpc-lattice/2022-11-30/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/vpc-lattice/2022-11-30/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/vpc-lattice/2022-11-30/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/vpc-lattice/2022-11-30/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/vpc-lattice/2022-11-30/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/waf-regional/2016-11-28/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/waf-regional/2016-11-28/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/waf-regional/2016-11-28/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/waf-regional/2016-11-28/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/waf-regional/2016-11-28/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/waf-regional/2016-11-28/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/waf-regional/2016-11-28/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/waf-regional/2016-11-28/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/waf/2015-08-24/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/waf/2015-08-24/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/waf/2015-08-24/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/waf/2015-08-24/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/waf/2015-08-24/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/waf/2015-08-24/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/waf/2015-08-24/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/waf/2015-08-24/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/wafv2/2019-07-29/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/wafv2/2019-07-29/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/wafv2/2019-07-29/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/wafv2/2019-07-29/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/wafv2/2019-07-29/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/wafv2/2019-07-29/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/wafv2/2019-07-29/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/wafv2/2019-07-29/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/wellarchitected/2020-03-31/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/wellarchitected/2020-03-31/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/wellarchitected/2020-03-31/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/wellarchitected/2020-03-31/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/wellarchitected/2020-03-31/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/wellarchitected/2020-03-31/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/wickr/2024-02-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/wickr/2024-02-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/wickr/2024-02-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/wickr/2024-02-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/wickr/2024-02-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/wickr/2024-02-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/wickr/2024-02-01/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/wickr/2024-02-01/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/wickr/2024-02-01/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/wickr/2024-02-01/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/wisdom/2020-10-19/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/wisdom/2020-10-19/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/wisdom/2020-10-19/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/wisdom/2020-10-19/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/wisdom/2020-10-19/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/wisdom/2020-10-19/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workdocs/2016-05-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/workdocs/2016-05-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workdocs/2016-05-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/workdocs/2016-05-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workdocs/2016-05-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/workdocs/2016-05-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workmail/2017-10-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/workmail/2017-10-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workmail/2017-10-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/workmail/2017-10-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workmail/2017-10-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/workmail/2017-10-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workmailmessageflow/2019-05-01/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/workmailmessageflow/2019-05-01/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workmailmessageflow/2019-05-01/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/workmailmessageflow/2019-05-01/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workmailmessageflow/2019-05-01/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/workmailmessageflow/2019-05-01/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workspaces-instances/2022-07-26/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/workspaces-instances/2022-07-26/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workspaces-instances/2022-07-26/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/workspaces-instances/2022-07-26/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workspaces-instances/2022-07-26/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/workspaces-instances/2022-07-26/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workspaces-instances/2022-07-26/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/workspaces-instances/2022-07-26/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workspaces-instances/2022-07-26/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/workspaces-instances/2022-07-26/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workspaces-thin-client/2023-08-22/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/workspaces-thin-client/2023-08-22/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workspaces-thin-client/2023-08-22/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/workspaces-thin-client/2023-08-22/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workspaces-thin-client/2023-08-22/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/workspaces-thin-client/2023-08-22/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workspaces-web/2020-07-08/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/workspaces-web/2020-07-08/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workspaces-web/2020-07-08/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/workspaces-web/2020-07-08/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workspaces-web/2020-07-08/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/workspaces-web/2020-07-08/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workspaces-web/2020-07-08/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/workspaces-web/2020-07-08/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workspaces-web/2020-07-08/waiters-2.json.php b/vendor/aws/aws-sdk-php/src/data/workspaces-web/2020-07-08/waiters-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workspaces/2015-04-08/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/workspaces/2015-04-08/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workspaces/2015-04-08/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/workspaces/2015-04-08/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workspaces/2015-04-08/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/workspaces/2015-04-08/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/workspaces/2015-04-08/smoke.json.php b/vendor/aws/aws-sdk-php/src/data/workspaces/2015-04-08/smoke.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/xray/2016-04-12/api-2.json.php b/vendor/aws/aws-sdk-php/src/data/xray/2016-04-12/api-2.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/xray/2016-04-12/endpoint-rule-set-1.json.php b/vendor/aws/aws-sdk-php/src/data/xray/2016-04-12/endpoint-rule-set-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/data/xray/2016-04-12/paginators-1.json.php b/vendor/aws/aws-sdk-php/src/data/xray/2016-04-12/paginators-1.json.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/drs/Exception/drsException.php b/vendor/aws/aws-sdk-php/src/drs/Exception/drsException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/drs/drsClient.php b/vendor/aws/aws-sdk-php/src/drs/drsClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/finspace/Exception/finspaceException.php b/vendor/aws/aws-sdk-php/src/finspace/Exception/finspaceException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/finspace/finspaceClient.php b/vendor/aws/aws-sdk-php/src/finspace/finspaceClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/functions.php b/vendor/aws/aws-sdk-php/src/functions.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/imagebuilder/Exception/imagebuilderException.php b/vendor/aws/aws-sdk-php/src/imagebuilder/Exception/imagebuilderException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/imagebuilder/imagebuilderClient.php b/vendor/aws/aws-sdk-php/src/imagebuilder/imagebuilderClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ivschat/Exception/ivschatException.php b/vendor/aws/aws-sdk-php/src/ivschat/Exception/ivschatException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/ivschat/ivschatClient.php b/vendor/aws/aws-sdk-php/src/ivschat/ivschatClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/kendra/Exception/kendraException.php b/vendor/aws/aws-sdk-php/src/kendra/Exception/kendraException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/kendra/kendraClient.php b/vendor/aws/aws-sdk-php/src/kendra/kendraClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/mgn/Exception/mgnException.php b/vendor/aws/aws-sdk-php/src/mgn/Exception/mgnException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/mgn/mgnClient.php b/vendor/aws/aws-sdk-php/src/mgn/mgnClient.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/signer/Exception/signerException.php b/vendor/aws/aws-sdk-php/src/signer/Exception/signerException.php
old mode 100644
new mode 100755
diff --git a/vendor/aws/aws-sdk-php/src/signer/signerClient.php b/vendor/aws/aws-sdk-php/src/signer/signerClient.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/CHANGELOG.md b/vendor/guzzlehttp/guzzle/CHANGELOG.md
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/LICENSE b/vendor/guzzlehttp/guzzle/LICENSE
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/README.md b/vendor/guzzlehttp/guzzle/README.md
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/UPGRADING.md b/vendor/guzzlehttp/guzzle/UPGRADING.md
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/composer.json b/vendor/guzzlehttp/guzzle/composer.json
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/package-lock.json b/vendor/guzzlehttp/guzzle/package-lock.json
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/BodySummarizer.php b/vendor/guzzlehttp/guzzle/src/BodySummarizer.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/BodySummarizerInterface.php b/vendor/guzzlehttp/guzzle/src/BodySummarizerInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Client.php b/vendor/guzzlehttp/guzzle/src/Client.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/ClientInterface.php b/vendor/guzzlehttp/guzzle/src/ClientInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/ClientTrait.php b/vendor/guzzlehttp/guzzle/src/ClientTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php b/vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php b/vendor/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php b/vendor/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php b/vendor/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php b/vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Exception/BadResponseException.php b/vendor/guzzlehttp/guzzle/src/Exception/BadResponseException.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Exception/ClientException.php b/vendor/guzzlehttp/guzzle/src/Exception/ClientException.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Exception/ConnectException.php b/vendor/guzzlehttp/guzzle/src/Exception/ConnectException.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php b/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php b/vendor/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php b/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Exception/ServerException.php b/vendor/guzzlehttp/guzzle/src/Exception/ServerException.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php b/vendor/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Exception/TransferException.php b/vendor/guzzlehttp/guzzle/src/Exception/TransferException.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php b/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php b/vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php b/vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php b/vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Handler/EasyHandle.php b/vendor/guzzlehttp/guzzle/src/Handler/EasyHandle.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php b/vendor/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php b/vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php b/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php b/vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/HandlerStack.php b/vendor/guzzlehttp/guzzle/src/HandlerStack.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/MessageFormatter.php b/vendor/guzzlehttp/guzzle/src/MessageFormatter.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/MessageFormatterInterface.php b/vendor/guzzlehttp/guzzle/src/MessageFormatterInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Middleware.php b/vendor/guzzlehttp/guzzle/src/Middleware.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Pool.php b/vendor/guzzlehttp/guzzle/src/Pool.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php b/vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php b/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/RequestOptions.php b/vendor/guzzlehttp/guzzle/src/RequestOptions.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php b/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/TransferStats.php b/vendor/guzzlehttp/guzzle/src/TransferStats.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/Utils.php b/vendor/guzzlehttp/guzzle/src/Utils.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/functions.php b/vendor/guzzlehttp/guzzle/src/functions.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/guzzle/src/functions_include.php b/vendor/guzzlehttp/guzzle/src/functions_include.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/CHANGELOG.md b/vendor/guzzlehttp/promises/CHANGELOG.md
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/LICENSE b/vendor/guzzlehttp/promises/LICENSE
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/README.md b/vendor/guzzlehttp/promises/README.md
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/composer.json b/vendor/guzzlehttp/promises/composer.json
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/src/AggregateException.php b/vendor/guzzlehttp/promises/src/AggregateException.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/src/CancellationException.php b/vendor/guzzlehttp/promises/src/CancellationException.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/src/Coroutine.php b/vendor/guzzlehttp/promises/src/Coroutine.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/src/Create.php b/vendor/guzzlehttp/promises/src/Create.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/src/Each.php b/vendor/guzzlehttp/promises/src/Each.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/src/EachPromise.php b/vendor/guzzlehttp/promises/src/EachPromise.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/src/FulfilledPromise.php b/vendor/guzzlehttp/promises/src/FulfilledPromise.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/src/Is.php b/vendor/guzzlehttp/promises/src/Is.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/src/Promise.php b/vendor/guzzlehttp/promises/src/Promise.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/src/PromiseInterface.php b/vendor/guzzlehttp/promises/src/PromiseInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/src/PromisorInterface.php b/vendor/guzzlehttp/promises/src/PromisorInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/src/RejectedPromise.php b/vendor/guzzlehttp/promises/src/RejectedPromise.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/src/RejectionException.php b/vendor/guzzlehttp/promises/src/RejectionException.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/src/TaskQueue.php b/vendor/guzzlehttp/promises/src/TaskQueue.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/src/TaskQueueInterface.php b/vendor/guzzlehttp/promises/src/TaskQueueInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/promises/src/Utils.php b/vendor/guzzlehttp/promises/src/Utils.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/CHANGELOG.md b/vendor/guzzlehttp/psr7/CHANGELOG.md
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/LICENSE b/vendor/guzzlehttp/psr7/LICENSE
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/README.md b/vendor/guzzlehttp/psr7/README.md
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/composer.json b/vendor/guzzlehttp/psr7/composer.json
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/AppendStream.php b/vendor/guzzlehttp/psr7/src/AppendStream.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/BufferStream.php b/vendor/guzzlehttp/psr7/src/BufferStream.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/CachingStream.php b/vendor/guzzlehttp/psr7/src/CachingStream.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/DroppingStream.php b/vendor/guzzlehttp/psr7/src/DroppingStream.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/Exception/MalformedUriException.php b/vendor/guzzlehttp/psr7/src/Exception/MalformedUriException.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/FnStream.php b/vendor/guzzlehttp/psr7/src/FnStream.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/Header.php b/vendor/guzzlehttp/psr7/src/Header.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/HttpFactory.php b/vendor/guzzlehttp/psr7/src/HttpFactory.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/InflateStream.php b/vendor/guzzlehttp/psr7/src/InflateStream.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/LazyOpenStream.php b/vendor/guzzlehttp/psr7/src/LazyOpenStream.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/LimitStream.php b/vendor/guzzlehttp/psr7/src/LimitStream.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/Message.php b/vendor/guzzlehttp/psr7/src/Message.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/MessageTrait.php b/vendor/guzzlehttp/psr7/src/MessageTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/MimeType.php b/vendor/guzzlehttp/psr7/src/MimeType.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/MultipartStream.php b/vendor/guzzlehttp/psr7/src/MultipartStream.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/NoSeekStream.php b/vendor/guzzlehttp/psr7/src/NoSeekStream.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/PumpStream.php b/vendor/guzzlehttp/psr7/src/PumpStream.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/Query.php b/vendor/guzzlehttp/psr7/src/Query.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/Request.php b/vendor/guzzlehttp/psr7/src/Request.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/Response.php b/vendor/guzzlehttp/psr7/src/Response.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/Rfc7230.php b/vendor/guzzlehttp/psr7/src/Rfc7230.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/ServerRequest.php b/vendor/guzzlehttp/psr7/src/ServerRequest.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/Stream.php b/vendor/guzzlehttp/psr7/src/Stream.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php b/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/StreamWrapper.php b/vendor/guzzlehttp/psr7/src/StreamWrapper.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/UploadedFile.php b/vendor/guzzlehttp/psr7/src/UploadedFile.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/Uri.php b/vendor/guzzlehttp/psr7/src/Uri.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/UriComparator.php b/vendor/guzzlehttp/psr7/src/UriComparator.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/UriNormalizer.php b/vendor/guzzlehttp/psr7/src/UriNormalizer.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/UriResolver.php b/vendor/guzzlehttp/psr7/src/UriResolver.php
old mode 100644
new mode 100755
diff --git a/vendor/guzzlehttp/psr7/src/Utils.php b/vendor/guzzlehttp/psr7/src/Utils.php
old mode 100644
new mode 100755
diff --git a/vendor/mtdowling/jmespath.php/CHANGELOG.md b/vendor/mtdowling/jmespath.php/CHANGELOG.md
old mode 100644
new mode 100755
diff --git a/vendor/mtdowling/jmespath.php/LICENSE b/vendor/mtdowling/jmespath.php/LICENSE
old mode 100644
new mode 100755
diff --git a/vendor/mtdowling/jmespath.php/README.rst b/vendor/mtdowling/jmespath.php/README.rst
old mode 100644
new mode 100755
diff --git a/vendor/mtdowling/jmespath.php/composer.json b/vendor/mtdowling/jmespath.php/composer.json
old mode 100644
new mode 100755
diff --git a/vendor/mtdowling/jmespath.php/src/AstRuntime.php b/vendor/mtdowling/jmespath.php/src/AstRuntime.php
old mode 100644
new mode 100755
diff --git a/vendor/mtdowling/jmespath.php/src/CompilerRuntime.php b/vendor/mtdowling/jmespath.php/src/CompilerRuntime.php
old mode 100644
new mode 100755
diff --git a/vendor/mtdowling/jmespath.php/src/DebugRuntime.php b/vendor/mtdowling/jmespath.php/src/DebugRuntime.php
old mode 100644
new mode 100755
diff --git a/vendor/mtdowling/jmespath.php/src/Env.php b/vendor/mtdowling/jmespath.php/src/Env.php
old mode 100644
new mode 100755
diff --git a/vendor/mtdowling/jmespath.php/src/FnDispatcher.php b/vendor/mtdowling/jmespath.php/src/FnDispatcher.php
old mode 100644
new mode 100755
diff --git a/vendor/mtdowling/jmespath.php/src/JmesPath.php b/vendor/mtdowling/jmespath.php/src/JmesPath.php
old mode 100644
new mode 100755
diff --git a/vendor/mtdowling/jmespath.php/src/Lexer.php b/vendor/mtdowling/jmespath.php/src/Lexer.php
old mode 100644
new mode 100755
diff --git a/vendor/mtdowling/jmespath.php/src/Parser.php b/vendor/mtdowling/jmespath.php/src/Parser.php
old mode 100644
new mode 100755
diff --git a/vendor/mtdowling/jmespath.php/src/SyntaxErrorException.php b/vendor/mtdowling/jmespath.php/src/SyntaxErrorException.php
old mode 100644
new mode 100755
diff --git a/vendor/mtdowling/jmespath.php/src/TreeCompiler.php b/vendor/mtdowling/jmespath.php/src/TreeCompiler.php
old mode 100644
new mode 100755
diff --git a/vendor/mtdowling/jmespath.php/src/TreeInterpreter.php b/vendor/mtdowling/jmespath.php/src/TreeInterpreter.php
old mode 100644
new mode 100755
diff --git a/vendor/mtdowling/jmespath.php/src/Utils.php b/vendor/mtdowling/jmespath.php/src/Utils.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/deprecation-contracts/CHANGELOG.md b/vendor/symfony/deprecation-contracts/CHANGELOG.md
old mode 100644
new mode 100755
diff --git a/vendor/symfony/deprecation-contracts/LICENSE b/vendor/symfony/deprecation-contracts/LICENSE
old mode 100644
new mode 100755
diff --git a/vendor/symfony/deprecation-contracts/README.md b/vendor/symfony/deprecation-contracts/README.md
old mode 100644
new mode 100755
diff --git a/vendor/symfony/deprecation-contracts/composer.json b/vendor/symfony/deprecation-contracts/composer.json
old mode 100644
new mode 100755
diff --git a/vendor/symfony/deprecation-contracts/function.php b/vendor/symfony/deprecation-contracts/function.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/filesystem/CHANGELOG.md b/vendor/symfony/filesystem/CHANGELOG.md
old mode 100644
new mode 100755
diff --git a/vendor/symfony/filesystem/Exception/ExceptionInterface.php b/vendor/symfony/filesystem/Exception/ExceptionInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/filesystem/Exception/FileNotFoundException.php b/vendor/symfony/filesystem/Exception/FileNotFoundException.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/filesystem/Exception/IOException.php b/vendor/symfony/filesystem/Exception/IOException.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/filesystem/Exception/IOExceptionInterface.php b/vendor/symfony/filesystem/Exception/IOExceptionInterface.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/filesystem/Exception/InvalidArgumentException.php b/vendor/symfony/filesystem/Exception/InvalidArgumentException.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/filesystem/Exception/RuntimeException.php b/vendor/symfony/filesystem/Exception/RuntimeException.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/filesystem/Filesystem.php b/vendor/symfony/filesystem/Filesystem.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/filesystem/LICENSE b/vendor/symfony/filesystem/LICENSE
old mode 100644
new mode 100755
diff --git a/vendor/symfony/filesystem/Path.php b/vendor/symfony/filesystem/Path.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/filesystem/README.md b/vendor/symfony/filesystem/README.md
old mode 100644
new mode 100755
diff --git a/vendor/symfony/filesystem/composer.json b/vendor/symfony/filesystem/composer.json
old mode 100644
new mode 100755
diff --git a/vendor/symfony/polyfill-ctype/Ctype.php b/vendor/symfony/polyfill-ctype/Ctype.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/polyfill-ctype/LICENSE b/vendor/symfony/polyfill-ctype/LICENSE
old mode 100644
new mode 100755
diff --git a/vendor/symfony/polyfill-ctype/README.md b/vendor/symfony/polyfill-ctype/README.md
old mode 100644
new mode 100755
diff --git a/vendor/symfony/polyfill-ctype/bootstrap.php b/vendor/symfony/polyfill-ctype/bootstrap.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/polyfill-ctype/bootstrap80.php b/vendor/symfony/polyfill-ctype/bootstrap80.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/polyfill-ctype/composer.json b/vendor/symfony/polyfill-ctype/composer.json
old mode 100644
new mode 100755
diff --git a/vendor/symfony/polyfill-mbstring/LICENSE b/vendor/symfony/polyfill-mbstring/LICENSE
old mode 100644
new mode 100755
diff --git a/vendor/symfony/polyfill-mbstring/Mbstring.php b/vendor/symfony/polyfill-mbstring/Mbstring.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/polyfill-mbstring/README.md b/vendor/symfony/polyfill-mbstring/README.md
old mode 100644
new mode 100755
diff --git a/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php b/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php b/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php b/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php b/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/polyfill-mbstring/bootstrap.php b/vendor/symfony/polyfill-mbstring/bootstrap.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/polyfill-mbstring/bootstrap80.php b/vendor/symfony/polyfill-mbstring/bootstrap80.php
old mode 100644
new mode 100755
diff --git a/vendor/symfony/polyfill-mbstring/composer.json b/vendor/symfony/polyfill-mbstring/composer.json
old mode 100644
new mode 100755