@ian2018cs/agenthub 0.1.68 → 0.1.69
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/assets/index-u5cEXvaS.js +184 -0
- package/dist/index.html +1 -1
- package/package.json +1 -1
- package/server/routes/agents.js +1 -1
- package/dist/assets/index-C9BhBQzI.js +0 -184
package/dist/index.html
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
|
|
26
26
|
<!-- Prevent zoom on iOS -->
|
|
27
27
|
<meta name="format-detection" content="telephone=no" />
|
|
28
|
-
<script type="module" crossorigin src="/assets/index-
|
|
28
|
+
<script type="module" crossorigin src="/assets/index-u5cEXvaS.js"></script>
|
|
29
29
|
<link rel="modulepreload" crossorigin href="/assets/vendor-react-Bv0Nkan8.js">
|
|
30
30
|
<link rel="modulepreload" crossorigin href="/assets/vendor-codemirror-sVRjxPVQ.js">
|
|
31
31
|
<link rel="modulepreload" crossorigin href="/assets/vendor-utils-00TdZexr.js">
|
package/package.json
CHANGED
package/server/routes/agents.js
CHANGED
|
@@ -794,7 +794,7 @@ router.post('/submit', async (req, res) => {
|
|
|
794
794
|
|
|
795
795
|
// Save ZIP to disk
|
|
796
796
|
const publicPaths = getPublicPaths();
|
|
797
|
-
const userSubmitDir = path.join(publicPaths.agentSubmissionsDir,
|
|
797
|
+
const userSubmitDir = path.join(publicPaths.agentSubmissionsDir, userUuid);
|
|
798
798
|
await fs.mkdir(userSubmitDir, { recursive: true });
|
|
799
799
|
|
|
800
800
|
const timestamp = Date.now();
|