@rubytech/create-realagent 1.0.695 → 1.0.696
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/package.json +1 -1
- package/payload/platform/plugins/admin/skills/unzip-attachment/SKILL.md +58 -0
- package/payload/platform/plugins/admin/skills/unzip-attachment/references/safety.md +81 -0
- package/payload/platform/plugins/docs/references/attachments.md +44 -0
- package/payload/server/public/assets/{admin-zbb1g-mh.js → admin-BZSstsyc.js} +60 -60
- package/payload/server/public/index.html +1 -1
- package/payload/server/server.js +4 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>Real Agent</title>
|
|
7
7
|
<link rel="icon" href="/favicon.ico">
|
|
8
|
-
<script type="module" crossorigin src="/assets/admin-
|
|
8
|
+
<script type="module" crossorigin src="/assets/admin-BZSstsyc.js"></script>
|
|
9
9
|
<link rel="modulepreload" crossorigin href="/assets/chunk-DD-I1_y5.js">
|
|
10
10
|
<link rel="modulepreload" crossorigin href="/assets/jsx-runtime-7o3Lvx89.js">
|
|
11
11
|
<link rel="modulepreload" crossorigin href="/assets/preload-helper-qlgyTAkD.js">
|
package/payload/server/server.js
CHANGED
|
@@ -4947,10 +4947,13 @@ var SUPPORTED_MIME_TYPES = /* @__PURE__ */ new Set([
|
|
|
4947
4947
|
"text/markdown",
|
|
4948
4948
|
"text/csv",
|
|
4949
4949
|
"text/html",
|
|
4950
|
-
"text/calendar"
|
|
4950
|
+
"text/calendar",
|
|
4951
|
+
"application/zip",
|
|
4952
|
+
"application/x-zip-compressed"
|
|
4951
4953
|
]);
|
|
4952
4954
|
var MAX_FILE_SIZE_BYTES = 20 * 1024 * 1024;
|
|
4953
4955
|
var MAX_FILES_PER_MESSAGE = 5;
|
|
4956
|
+
var MAX_ZIP_UNCOMPRESSED_BYTES = 100 * 1024 * 1024;
|
|
4954
4957
|
function assertSupportedMime(mimeType) {
|
|
4955
4958
|
if (!SUPPORTED_MIME_TYPES.has(mimeType)) {
|
|
4956
4959
|
throw new Error(
|