@kaikybrofc/omnizap-system 2.2.5 → 2.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.prettierrc +16 -0
- package/README.md +10 -10
- package/app/modules/stickerPackModule/autoPackCollectorService.js +63 -8
- package/app/modules/stickerPackModule/stickerPackCatalogHttp.js +33 -7
- package/kaikybrofc-omnizap-system-2.2.6.tgz +0 -0
- package/observability/sticker-catalog-slo.md +83 -0
- package/observability/sticker-scale-hardening-rollout.md +128 -0
- package/package.json +3 -35
- package/public/assets/images/brand-icon-192.png +0 -0
- package/public/assets/images/brand-logo-128.webp +0 -0
- package/public/assets/images/hero-banner-1280.avif +0 -0
- package/public/assets/images/hero-banner-1280.jpg +0 -0
- package/public/assets/images/hero-banner-1280.webp +0 -0
- package/public/assets/images/hero-banner-720.avif +0 -0
- package/public/assets/images/hero-banner-720.webp +0 -0
- package/public/index.html +91 -16
- package/public/js/apps/homeApp.js +469 -353
- package/public/robots.txt +9 -0
- package/public/sitemap.xml +28 -0
- package/observability/mysql-exporter.cnf +0 -5
package/public/index.html
CHANGED
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
|
|
11
11
|
<meta name="theme-color" content="#0b1020" />
|
|
12
12
|
<link rel="canonical" href="https://omnizap.shop/" />
|
|
13
|
-
<link rel="icon" type="image/
|
|
14
|
-
<link rel="apple-touch-icon" href="
|
|
13
|
+
<link rel="icon" type="image/png" href="/assets/images/brand-icon-192.png" />
|
|
14
|
+
<link rel="apple-touch-icon" href="/assets/images/brand-icon-192.png" />
|
|
15
15
|
<link rel="sitemap" type="application/xml" href="https://omnizap.shop/sitemap.xml" />
|
|
16
16
|
<link rel="me" href="https://github.com/Kaikygr/omnizap-system" />
|
|
17
17
|
<link rel="me" href="https://wa.me/?text=iniciar" />
|
|
@@ -22,19 +22,55 @@
|
|
|
22
22
|
<meta property="og:title" content="OmniZap System | Plataforma Open Source de Automação WhatsApp" />
|
|
23
23
|
<meta property="og:description" content="Infraestrutura técnica para bots WhatsApp com API, observabilidade e arquitetura modular pronta para produção." />
|
|
24
24
|
<meta property="og:url" content="https://omnizap.shop/" />
|
|
25
|
-
<meta property="og:image" content="https://
|
|
25
|
+
<meta property="og:image" content="https://omnizap.shop/assets/images/hero-banner-1280.jpg" />
|
|
26
26
|
<meta property="og:image:alt" content="Banner OmniZap System com identidade visual tecnológica" />
|
|
27
27
|
|
|
28
28
|
<meta name="twitter:card" content="summary_large_image" />
|
|
29
29
|
<meta name="twitter:title" content="OmniZap System" />
|
|
30
30
|
<meta name="twitter:description" content="Plataforma open source de automação WhatsApp com API, telemetria e stack de produção." />
|
|
31
|
-
<meta name="twitter:image" content="https://
|
|
31
|
+
<meta name="twitter:image" content="https://omnizap.shop/assets/images/hero-banner-1280.jpg" />
|
|
32
|
+
|
|
33
|
+
<link
|
|
34
|
+
rel="preload"
|
|
35
|
+
as="image"
|
|
36
|
+
href="/assets/images/hero-banner-720.webp"
|
|
37
|
+
imagesrcset="/assets/images/hero-banner-720.webp 720w, /assets/images/hero-banner-1280.webp 1280w"
|
|
38
|
+
imagesizes="(max-width: 860px) 92vw, 1150px"
|
|
39
|
+
fetchpriority="high"
|
|
40
|
+
/>
|
|
32
41
|
|
|
33
42
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
34
43
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
35
|
-
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700&display=swap"
|
|
36
|
-
<link
|
|
37
|
-
|
|
44
|
+
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700&display=swap" />
|
|
45
|
+
<link
|
|
46
|
+
rel="stylesheet"
|
|
47
|
+
href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700&display=swap"
|
|
48
|
+
media="print"
|
|
49
|
+
onload="this.media='all'"
|
|
50
|
+
/>
|
|
51
|
+
<noscript>
|
|
52
|
+
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700&display=swap" rel="stylesheet" />
|
|
53
|
+
</noscript>
|
|
54
|
+
<link rel="preload" as="style" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" />
|
|
55
|
+
<link
|
|
56
|
+
rel="stylesheet"
|
|
57
|
+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
|
|
58
|
+
media="print"
|
|
59
|
+
onload="this.media='all'"
|
|
60
|
+
/>
|
|
61
|
+
<noscript>
|
|
62
|
+
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" rel="stylesheet" />
|
|
63
|
+
</noscript>
|
|
64
|
+
<link rel="preload" as="style" href="/css/github-project-panel.css?v=20260226c" />
|
|
65
|
+
<link
|
|
66
|
+
rel="stylesheet"
|
|
67
|
+
href="/css/github-project-panel.css?v=20260226c"
|
|
68
|
+
media="print"
|
|
69
|
+
onload="this.media='all'"
|
|
70
|
+
/>
|
|
71
|
+
<noscript>
|
|
72
|
+
<link href="/css/github-project-panel.css?v=20260226c" rel="stylesheet" />
|
|
73
|
+
</noscript>
|
|
38
74
|
|
|
39
75
|
<script type="application/ld+json">
|
|
40
76
|
{
|
|
@@ -58,7 +94,7 @@
|
|
|
58
94
|
"@type": "Organization",
|
|
59
95
|
"name": "OmniZap System",
|
|
60
96
|
"url": "https://omnizap.shop/",
|
|
61
|
-
"logo": "https://
|
|
97
|
+
"logo": "https://omnizap.shop/assets/images/brand-icon-192.png",
|
|
62
98
|
"sameAs": [
|
|
63
99
|
"https://github.com/Kaikygr/omnizap-system",
|
|
64
100
|
"https://wa.me/?text=iniciar"
|
|
@@ -369,7 +405,6 @@
|
|
|
369
405
|
background: linear-gradient(150deg, #0f1a31ee, #101d35f0);
|
|
370
406
|
box-shadow: 0 18px 48px #040c1f7a, inset 0 1px 0 #b7d3ff14;
|
|
371
407
|
padding: clamp(16px, 3vw, 34px);
|
|
372
|
-
animation: rise .5s ease-out;
|
|
373
408
|
}
|
|
374
409
|
|
|
375
410
|
.hero::before {
|
|
@@ -396,14 +431,20 @@
|
|
|
396
431
|
z-index: -1;
|
|
397
432
|
}
|
|
398
433
|
|
|
434
|
+
.hero-banner-frame {
|
|
435
|
+
display: block;
|
|
436
|
+
margin-bottom: 15px;
|
|
437
|
+
}
|
|
438
|
+
|
|
399
439
|
.hero-banner {
|
|
400
440
|
display: block;
|
|
401
441
|
width: 100%;
|
|
442
|
+
height: auto;
|
|
443
|
+
aspect-ratio: 1280 / 544;
|
|
402
444
|
max-height: 238px;
|
|
403
445
|
object-fit: cover;
|
|
404
446
|
border-radius: 16px;
|
|
405
447
|
border: 1px solid #3a5279;
|
|
406
|
-
margin-bottom: 15px;
|
|
407
448
|
box-shadow: 0 12px 30px #00000052;
|
|
408
449
|
filter: saturate(1.06) contrast(1.03);
|
|
409
450
|
transition: transform 200ms cubic-bezier(.4, 0, .2, 1), box-shadow 200ms cubic-bezier(.4, 0, .2, 1), border-color 200ms cubic-bezier(.4, 0, .2, 1);
|
|
@@ -1154,9 +1195,11 @@
|
|
|
1154
1195
|
<div class="brand">
|
|
1155
1196
|
<img
|
|
1156
1197
|
class="brand-logo"
|
|
1157
|
-
src="
|
|
1198
|
+
src="/assets/images/brand-logo-128.webp"
|
|
1158
1199
|
alt="OmniZap"
|
|
1159
|
-
loading="
|
|
1200
|
+
loading="eager"
|
|
1201
|
+
width="30"
|
|
1202
|
+
height="30"
|
|
1160
1203
|
decoding="async"
|
|
1161
1204
|
/>
|
|
1162
1205
|
<span>OmniZap System</span>
|
|
@@ -1180,7 +1223,25 @@
|
|
|
1180
1223
|
|
|
1181
1224
|
<main class="container">
|
|
1182
1225
|
<section class="hero">
|
|
1183
|
-
<
|
|
1226
|
+
<picture class="hero-banner-frame">
|
|
1227
|
+
<source
|
|
1228
|
+
type="image/webp"
|
|
1229
|
+
srcset="/assets/images/hero-banner-720.webp 720w, /assets/images/hero-banner-1280.webp 1280w"
|
|
1230
|
+
sizes="(max-width: 860px) 92vw, 1150px"
|
|
1231
|
+
/>
|
|
1232
|
+
<img
|
|
1233
|
+
class="hero-banner"
|
|
1234
|
+
src="/assets/images/hero-banner-720.webp"
|
|
1235
|
+
srcset="/assets/images/hero-banner-720.webp 720w, /assets/images/hero-banner-1280.webp 1280w"
|
|
1236
|
+
sizes="(max-width: 860px) 92vw, 1150px"
|
|
1237
|
+
alt="Banner OmniZap System"
|
|
1238
|
+
width="1280"
|
|
1239
|
+
height="544"
|
|
1240
|
+
loading="eager"
|
|
1241
|
+
fetchpriority="high"
|
|
1242
|
+
decoding="async"
|
|
1243
|
+
/>
|
|
1244
|
+
</picture>
|
|
1184
1245
|
<span class="eyebrow">Plataforma Open Source de Automação WhatsApp</span>
|
|
1185
1246
|
<h1>Infraestrutura completa para bots, automação e gestão de WhatsApp em escala.</h1>
|
|
1186
1247
|
<p class="lead">Foco em API, observabilidade, gestão de grupos, mídia, comandos automatizados e arquitetura pronta para produção.</p>
|
|
@@ -1422,8 +1483,22 @@ curl -sS https://omnizap.shop/api/sticker-packs/system-summary | jq</code></pre>
|
|
|
1422
1483
|
hidden
|
|
1423
1484
|
><i class="fa-brands fa-whatsapp" aria-hidden="true"></i></a>
|
|
1424
1485
|
|
|
1425
|
-
<
|
|
1426
|
-
<script type="module"
|
|
1427
|
-
|
|
1486
|
+
<script type="module" src="/js/apps/homeApp.js?v=20260228-perf-lcp1"></script>
|
|
1487
|
+
<script type="module">
|
|
1488
|
+
const loadGithubPanel = () =>
|
|
1489
|
+
import('/js/github-panel/index.js?v=20260228-perf-lcp1').catch(() => {});
|
|
1490
|
+
|
|
1491
|
+
if (typeof window.requestIdleCallback === 'function') {
|
|
1492
|
+
window.requestIdleCallback(() => {
|
|
1493
|
+
void loadGithubPanel();
|
|
1494
|
+
}, { timeout: 4000 });
|
|
1495
|
+
} else {
|
|
1496
|
+
window.addEventListener('load', () => {
|
|
1497
|
+
window.setTimeout(() => {
|
|
1498
|
+
void loadGithubPanel();
|
|
1499
|
+
}, 900);
|
|
1500
|
+
}, { once: true });
|
|
1501
|
+
}
|
|
1502
|
+
</script>
|
|
1428
1503
|
</body>
|
|
1429
1504
|
</html>
|