This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 5c34235442831185d9360a1e5e9477cf9918939a Mon Sep 17 00:00:00 2001 | |
| From: mega-greninja <roshan.s@zoca.com> | |
| Date: Fri, 24 Apr 2026 13:16:33 +0530 | |
| Subject: [PATCH 1/2] fix(win): query website.locations for correct websiteId | |
| in virtual number publish | |
| getWebsiteIdForEntity was querying entities.product_entities and returning | |
| product_entities.id (a mapping record UUID), not the actual website UUID. | |
| The website API validates against website.status.website_id, so the publish | |
| to website always failed silently. Now queries website.locations.website_id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Booking Platform Breakdown — Zoca Paid Entities</title> | |
| <style> | |
| * { margin: 0; padding: 0; box-sizing: border-box; } | |
| body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #0f1117; color: #e1e4e8; padding: 40px 20px; } | |
| .container { max-width: 1100px; margin: 0 auto; } |