@anton.andrusenko/shopify-mcp-admin 2.2.1 → 2.3.0
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/dist/{chunk-PQKNBYJN.js → chunk-EQUN4XCH.js} +5 -2
- package/dist/{chunk-LMFNHULG.js → chunk-RBXQOPVF.js} +758 -50
- package/dist/dashboard/assets/index-ClITn1me.css +1 -0
- package/dist/dashboard/assets/index-Cvo1L2xM.js +126 -0
- package/dist/dashboard/assets/index-Cvo1L2xM.js.map +1 -0
- package/dist/dashboard/index.html +3 -3
- package/dist/dashboard/mcp-icon.svg +29 -31
- package/dist/index.js +781 -440
- package/dist/{mcp-auth-F25V6FEY.js → mcp-auth-CWOWKID3.js} +1 -1
- package/dist/{tools-HVUCP53D.js → tools-BCI3Z2AW.js} +1 -1
- package/package.json +10 -1
- package/dist/dashboard/assets/index-BfNrQS4y.js +0 -120
- package/dist/dashboard/assets/index-BfNrQS4y.js.map +0 -1
- package/dist/dashboard/assets/index-HBHxyHsM.css +0 -1
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
|
-
<link rel="icon" type="image/svg+xml" href="/
|
|
5
|
+
<link rel="icon" type="image/svg+xml" href="/app/mcp-icon.svg" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>Shopify MCP Dashboard</title>
|
|
8
|
-
<script type="module" crossorigin src="/app/assets/index-
|
|
9
|
-
<link rel="stylesheet" crossorigin href="/app/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/app/assets/index-Cvo1L2xM.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="/app/assets/index-ClITn1me.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="root"></div>
|
|
@@ -1,36 +1,34 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none">
|
|
2
2
|
<defs>
|
|
3
|
-
<linearGradient id="
|
|
4
|
-
<stop offset="0%" style="stop-color:#
|
|
5
|
-
<stop offset="100%" style="stop-color:#
|
|
6
|
-
</linearGradient>
|
|
7
|
-
<linearGradient id="mcp-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
8
|
-
<stop offset="0%" style="stop-color:#667eea"/>
|
|
9
|
-
<stop offset="100%" style="stop-color:#764ba2"/>
|
|
3
|
+
<linearGradient id="logo-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
4
|
+
<stop offset="0%" style="stop-color:#14b8a6"/>
|
|
5
|
+
<stop offset="100%" style="stop-color:#10b981"/>
|
|
10
6
|
</linearGradient>
|
|
11
7
|
</defs>
|
|
12
|
-
|
|
13
8
|
<!-- Background circle -->
|
|
14
|
-
<circle cx="
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
<
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
9
|
+
<circle cx="12" cy="12" r="11" fill="url(#logo-gradient)"/>
|
|
10
|
+
<!-- Stacked layers icon -->
|
|
11
|
+
<path
|
|
12
|
+
d="M12 4L4 8L12 12L20 8L12 4Z"
|
|
13
|
+
stroke="white"
|
|
14
|
+
stroke-width="1.5"
|
|
15
|
+
stroke-linecap="round"
|
|
16
|
+
stroke-linejoin="round"
|
|
17
|
+
fill="white"
|
|
18
|
+
fill-opacity="0.9"
|
|
19
|
+
/>
|
|
20
|
+
<path
|
|
21
|
+
d="M4 16L12 20L20 16"
|
|
22
|
+
stroke="white"
|
|
23
|
+
stroke-width="1.5"
|
|
24
|
+
stroke-linecap="round"
|
|
25
|
+
stroke-linejoin="round"
|
|
26
|
+
/>
|
|
27
|
+
<path
|
|
28
|
+
d="M4 12L12 16L20 12"
|
|
29
|
+
stroke="white"
|
|
30
|
+
stroke-width="1.5"
|
|
31
|
+
stroke-linecap="round"
|
|
32
|
+
stroke-linejoin="round"
|
|
33
|
+
/>
|
|
35
34
|
</svg>
|
|
36
|
-
|