Compare commits

..

2 Commits

Author SHA1 Message Date
Philipinho b99e3d67f5 v0.80.2 2026-05-02 11:25:11 +01:00
Philipinho 184811911f fix: parse AWS_S3_FORCE_PATH_STYLE env var as boolean 2026-05-02 11:21:42 +01:00
13 changed files with 295 additions and 244 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "client",
"private": true,
"version": "0.80.1",
"version": "0.80.2",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
-1
View File
@@ -8,7 +8,6 @@ export const Feature = {
AI: 'ai',
CONFLUENCE_IMPORT: 'import:confluence',
DOCX_IMPORT: 'import:docx',
PDF_IMPORT: 'import:pdf',
ATTACHMENT_INDEXING: 'attachment:indexing',
SECURITY_SETTINGS: 'security:settings',
MCP: 'mcp',
@@ -140,7 +140,7 @@ export function PagePermissionList({
)}
</Group>
<ScrollArea.Autosize mah={400} viewportRef={viewportRef}>
<ScrollArea mah={250} viewportRef={viewportRef}>
{sortedMembers.map((member) => (
<PagePermissionItem
key={`${member.type}-${member.id}`}
@@ -158,7 +158,7 @@ export function PagePermissionList({
<Loader size="xs" />
</Center>
)}
</ScrollArea.Autosize>
</ScrollArea>
</>
);
}
@@ -19,9 +19,7 @@ export const uploadAttachmentAction = handleAttachmentUpload({
},
validateFn: (file, allowMedia: boolean) => {
if (
(file.type.includes("image/") ||
file.type.includes("video/") ||
file.type === "application/pdf") &&
(file.type.includes("image/") || file.type.includes("video/")) &&
!allowMedia
) {
return false;
@@ -12,7 +12,6 @@ import {
IconCheck,
IconFileCode,
IconFileTypeDocx,
IconFileTypePdf,
IconFileTypeZip,
IconMarkdown,
IconX,
@@ -91,14 +90,12 @@ function ImportFormatSelection({ spaceId, onClose }: ImportFormatSelection) {
const markdownFileRef = useRef<() => void>(null);
const htmlFileRef = useRef<() => void>(null);
const docxFileRef = useRef<() => void>(null);
const pdfFileRef = useRef<() => void>(null);
const notionFileRef = useRef<() => void>(null);
const confluenceFileRef = useRef<() => void>(null);
const zipFileRef = useRef<() => void>(null);
const canUseConfluence = useHasFeature(Feature.CONFLUENCE_IMPORT);
const canUseDocx = useHasFeature(Feature.DOCX_IMPORT);
const canUsePdf = useHasFeature(Feature.PDF_IMPORT);
const upgradeLabel = useUpgradeLabel();
const handleZipUpload = async (selectedFile: File, source: string) => {
@@ -247,7 +244,7 @@ function ImportFormatSelection({ spaceId, onClose }: ImportFormatSelection) {
}, 3000);
}, [fileTaskId]);
const maxSingleFileSize = bytes("30mb");
const maxSingleFileSize = bytes("20mb");
const handleFileUpload = async (selectedFiles: File[]) => {
if (!selectedFiles) {
@@ -301,7 +298,6 @@ function ImportFormatSelection({ spaceId, onClose }: ImportFormatSelection) {
if (markdownFileRef.current) markdownFileRef.current();
if (htmlFileRef.current) htmlFileRef.current();
if (docxFileRef.current) docxFileRef.current();
if (pdfFileRef.current) pdfFileRef.current();
const pageCountText =
pageCount === 1 ? `1 ${t("page")}` : `${pageCount} ${t("pages")}`;
@@ -382,30 +378,6 @@ function ImportFormatSelection({ spaceId, onClose }: ImportFormatSelection) {
)}
</FileButton>
<FileButton
onChange={handleFileUpload}
accept=".pdf"
multiple
resetRef={pdfFileRef}
>
{(props) => (
<Tooltip
label={upgradeLabel}
disabled={canUsePdf}
>
<Button
disabled={!canUsePdf}
justify="start"
variant="default"
leftSection={<IconFileTypePdf size={18} />}
{...props}
>
PDF
</Button>
</Tooltip>
)}
</FileButton>
<FileButton
onChange={(file) => handleZipUpload(file, "notion")}
accept="application/zip"
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "server",
"version": "0.80.1",
"version": "0.80.2",
"description": "",
"author": "",
"private": true,
@@ -33,11 +33,10 @@
"@ai-sdk/google": "^3.0.52",
"@ai-sdk/openai": "^3.0.47",
"@ai-sdk/openai-compatible": "^2.0.37",
"@aws-sdk/client-s3": "3.1037.0",
"@aws-sdk/lib-storage": "3.1037.0",
"@aws-sdk/s3-request-presigner": "3.1037.0",
"@aws-sdk/client-s3": "3.1041.0",
"@aws-sdk/lib-storage": "3.1041.0",
"@aws-sdk/s3-request-presigner": "3.1041.0",
"@clickhouse/client": "^1.18.2",
"@docmost/pdf-inspector": "1.9.4",
"@fastify/cookie": "^11.0.2",
"@fastify/multipart": "^10.0.0",
"@fastify/static": "^9.1.3",
@@ -101,6 +100,7 @@
"p-limit": "^7.3.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"pdfjs-dist": "^5.5.207",
"pg-tsquery": "^8.4.2",
"pgvector": "^0.2.1",
"pino-http": "^11.0.0",
-1
View File
@@ -8,7 +8,6 @@ export const Feature = {
AI: 'ai',
CONFLUENCE_IMPORT: 'import:confluence',
DOCX_IMPORT: 'import:docx',
PDF_IMPORT: 'import:pdf',
ATTACHMENT_INDEXING: 'attachment:indexing',
SECURITY_SETTINGS: 'security:settings',
MCP: 'mcp',
@@ -112,7 +112,10 @@ export class EnvironmentService {
}
getAwsS3ForcePathStyle(): boolean {
return this.configService.get<boolean>('AWS_S3_FORCE_PATH_STYLE');
const forcePathStyle = this.configService
.get<string>('AWS_S3_FORCE_PATH_STYLE', 'false')
.toLowerCase();
return forcePathStyle === 'true';
}
getAwsS3Url(): string {
@@ -51,9 +51,9 @@ export class ImportController {
@AuthUser() user: User,
@AuthWorkspace() workspace: Workspace,
) {
const validFileExtensions = ['.md', '.html', '.docx', '.pdf'];
const validFileExtensions = ['.md', '.html', '.docx'];
const maxFileSize = bytes('30mb');
const maxFileSize = bytes('20mb');
let file = null;
try {
@@ -102,7 +102,6 @@ export class ImportController {
'.md': 'markdown',
'.html': 'html',
'.docx': 'docx',
'.pdf': 'pdf',
};
if (createdPage) {
@@ -61,10 +61,7 @@ export class ImportService {
let createdPage = null;
// For DOCX, we need the page ID upfront so images can reference it
const pageId =
fileExtension === '.docx' || fileExtension === '.pdf'
? uuid7()
: undefined;
const pageId = fileExtension === '.docx' ? uuid7() : undefined;
try {
if (fileExtension.endsWith('.md')) {
@@ -79,14 +76,6 @@ export class ImportService {
pageId,
userId,
);
} else if (fileExtension.endsWith('.pdf')) {
prosemirrorState = await this.processPdf(
fileBuffer,
workspaceId,
spaceId,
pageId,
userId,
);
}
} catch (err) {
const message = 'Error processing file content';
@@ -163,7 +152,7 @@ export class ImportService {
let DocxImportModule: any;
try {
// eslint-disable-next-line @typescript-eslint/no-require-imports
DocxImportModule = require('./../../../ee/document-import/docx-import.service');
DocxImportModule = require('./../../../ee/docx-import/docx-import.service');
} catch (err) {
this.logger.error(
'DOCX import requested but EE module not bundled in this build',
@@ -189,42 +178,6 @@ export class ImportService {
return this.processHTML(html);
}
async processPdf(
fileBuffer: Buffer,
workspaceId: string,
spaceId: string,
pageId: string,
userId: string,
): Promise<any> {
let PdfImportModule: any;
try {
// eslint-disable-next-line @typescript-eslint/no-require-imports
PdfImportModule = require('./../../../ee/document-import/pdf-import.service');
} catch (err) {
this.logger.error(
'PDF import requested but EE module not bundled in this build',
);
throw new BadRequestException(
'This feature requires a valid enterprise license.',
);
}
const pdfImportService = this.moduleRef.get(
PdfImportModule.PdfImportService,
{ strict: false },
);
const html = await pdfImportService.convertPdfToHtml(
fileBuffer,
workspaceId,
spaceId,
pageId,
userId,
);
return this.processHTML(html);
}
async createYdoc(prosemirrorJson: any): Promise<Buffer | null> {
if (prosemirrorJson) {
// this.logger.debug(`Converting prosemirror json state to ydoc`);
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "docmost",
"homepage": "https://docmost.com",
"version": "0.80.1",
"version": "0.80.2",
"private": true,
"scripts": {
"build": "nx run-many -t build",
+275 -147
View File
@@ -468,20 +468,17 @@ importers:
specifier: ^2.0.37
version: 2.0.37(zod@4.3.6)
'@aws-sdk/client-s3':
specifier: 3.1037.0
version: 3.1037.0
specifier: 3.1041.0
version: 3.1041.0
'@aws-sdk/lib-storage':
specifier: 3.1037.0
version: 3.1037.0(@aws-sdk/client-s3@3.1037.0)
specifier: 3.1041.0
version: 3.1041.0(@aws-sdk/client-s3@3.1041.0)
'@aws-sdk/s3-request-presigner':
specifier: 3.1037.0
version: 3.1037.0
specifier: 3.1041.0
version: 3.1041.0
'@clickhouse/client':
specifier: ^1.18.2
version: 1.18.2
'@docmost/pdf-inspector':
specifier: 1.9.4
version: 1.9.4
'@fastify/cookie':
specifier: ^11.0.2
version: 11.0.2
@@ -671,6 +668,9 @@ importers:
passport-jwt:
specifier: ^4.0.1
version: 4.0.1
pdfjs-dist:
specifier: ^5.5.207
version: 5.5.207
pg-tsquery:
specifier: ^8.4.2
version: 8.4.2
@@ -935,55 +935,55 @@ packages:
'@aws-crypto/util@5.2.0':
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
'@aws-sdk/client-s3@3.1037.0':
resolution: {integrity: sha512-DBmA1jAW8ST6C4srBxeL1/RLIir/d8WOm4s4mi59mGp6mBktHM59Kwb7GuURaCO60cotuce5zr0sKpMLPcBQyA==}
'@aws-sdk/client-s3@3.1041.0':
resolution: {integrity: sha512-sQV14bIqslnBHuSlLMD+fc3pH+ajop6vnrFlJ4wM4JDqcYwVik4O+9srnZUrkesFw5y+CN0GfOQ06CAgtC4mjQ==}
engines: {node: '>=20.0.0'}
'@aws-sdk/core@3.974.5':
resolution: {integrity: sha512-lMPlYlYfQdNZhlkJgnkmESwrY+hNh3PljmZ+37oAqLNdJ6rnILAwFSyc6B3bJeDOtMORNnMQIej0aTRuOlDyhQ==}
'@aws-sdk/core@3.974.8':
resolution: {integrity: sha512-njR2qoG6ZuB0kvAS2FyICsFZJ6gmCcf2X/7JcD14sUvGDm26wiZ5BrA6LOiUxKFEF+IVe7kdroxyE00YlkiYsw==}
engines: {node: '>=20.0.0'}
'@aws-sdk/crc64-nvme@3.972.7':
resolution: {integrity: sha512-QUagVVBbC8gODCF6e1aV0mE2TXWB9Opz4k8EJFdNrujUVQm5R4AjJa1mpOqzwOuROBzqJU9zawzig7M96L8Ejg==}
engines: {node: '>=20.0.0'}
'@aws-sdk/credential-provider-env@3.972.31':
resolution: {integrity: sha512-X/yGB73LmDW/6MdDJGCDzZBUXnM3ys4vs9l+5ZTJmiEswDdP1OjeoAFlFjVGS9o4KB2wZWQ9KOfdVNSSK6Ep3w==}
'@aws-sdk/credential-provider-env@3.972.34':
resolution: {integrity: sha512-XT0jtf8Fw9JE6ppsQeoNnZRiG+jqRixMT1v1ZR17G60UvVdsQmTG8nbEyHuEPfMxDXEhfdARaM/XiEhca4lGHQ==}
engines: {node: '>=20.0.0'}
'@aws-sdk/credential-provider-http@3.972.33':
resolution: {integrity: sha512-c0ZF+lwoWVvX5iCaGKL5T/4DnIw88CGqxA0BcBs3U86mIp5EZYPVg+KSPkMXOyokmADvNewiMUfSG2uFwjRp0g==}
'@aws-sdk/credential-provider-http@3.972.36':
resolution: {integrity: sha512-DPoGWfy7J7RKxvbf5kOKIGQkD2ek3dbKgzKIGrnLuvZBz5myU+Im/H6pmc14QcnFbqHMqxvtWSgRDSJW3qXLQg==}
engines: {node: '>=20.0.0'}
'@aws-sdk/credential-provider-ini@3.972.35':
resolution: {integrity: sha512-jsU4u/cRkKFLKQS0k918FQ27fzXLG5ENiLWQMYE6581zLeI2hWh04ptlrvZMB3wJT/5d+vSzJk74X1CMFr4y8Q==}
'@aws-sdk/credential-provider-ini@3.972.38':
resolution: {integrity: sha512-oDzUBu2MGJFgoar05sPMCwSrhw44ASyccrHzj66vO69OZqi7I6hZZxXfuPLC8OCzW7C+sU+bI73XHij41yekgQ==}
engines: {node: '>=20.0.0'}
'@aws-sdk/credential-provider-login@3.972.35':
resolution: {integrity: sha512-5oa3j0cA50jPqgNhZ9XdJVopuzUf1klRb28/2MfLYWWiPi9DRVvbrBWT+DidbHTT36520VuXZJahQwR+YgSjrg==}
'@aws-sdk/credential-provider-login@3.972.38':
resolution: {integrity: sha512-g1NosS8qe4OF++G2UFCM5ovSkgipC7YYor5KCWatG0UoMSO5YFj9C8muePlyVmOBV/WTI16Jo3/s1NUo/o1Bww==}
engines: {node: '>=20.0.0'}
'@aws-sdk/credential-provider-node@3.972.36':
resolution: {integrity: sha512-4nT2T8Z7vH8KE9EdjEsuIlHpZSlcaK2PrKbQBjuUGU46BCCzF3WvP0u0Uiosni3Ykmmn4rWLVawoOCLotUtCbg==}
'@aws-sdk/credential-provider-node@3.972.39':
resolution: {integrity: sha512-HEswDQyxUtadoZ/bJsPPENHg7R0Lzym5LuMksJeHvqhCOpP+rtkDLKI4/ZChH4w3cf5kG8n6bZuI8PzajoiqMg==}
engines: {node: '>=20.0.0'}
'@aws-sdk/credential-provider-process@3.972.31':
resolution: {integrity: sha512-eKeT4MXumpBJsrDLCYcSzIkFPVTFn/es7It2oogp2OhU/ic7P/+xzFpQx9ZhwtXS57Mc5S42BPWi7lHmvs/nYg==}
'@aws-sdk/credential-provider-process@3.972.34':
resolution: {integrity: sha512-T3IFs4EVmVi1dVN5RciFnklCANSzvrQd/VuHY9ThHSQmYkTogjcGkoJEr+oNUPQZnso52183088NqysMPji1/Q==}
engines: {node: '>=20.0.0'}
'@aws-sdk/credential-provider-sso@3.972.35':
resolution: {integrity: sha512-bCuBdfnj0KGDMdLp6utMTLiJcFN2ek9EgZinxQZZSc3FxjJ/HSqeqab2cjbnoNfy8RM6suDCsRkmVY1izp9I+A==}
'@aws-sdk/credential-provider-sso@3.972.38':
resolution: {integrity: sha512-5ZxG+t0+3Q3QPh8KEjX6syskhgNf7I0MN7oGioTf6Lm1NTjfP7sIcYGNsthXC2qR8vcD3edNZwCr2ovfSSWuRA==}
engines: {node: '>=20.0.0'}
'@aws-sdk/credential-provider-web-identity@3.972.35':
resolution: {integrity: sha512-swW6Bwvl8lanyEMtZOWE/oR6yqcRQH4HTQZUVsnDVgoXvRjRywpYpLv2BWwjUFyjPrqsdX6FeTkf4tMSe/qFTQ==}
'@aws-sdk/credential-provider-web-identity@3.972.38':
resolution: {integrity: sha512-lYHFF30DGI20jZcYX8cm6Ns0V7f1dDN6g/MBDLTyD/5iw+bXs3yBr2iAiHDkx4RFU5JgsnZvCHYKiRVPRdmOgw==}
engines: {node: '>=20.0.0'}
'@aws-sdk/lib-storage@3.1037.0':
resolution: {integrity: sha512-ZFg5Vf4RKS48xTm7DfXTeR0Rvn/Fcu6YFdRygGnvhA+gW3W0WtsRqM1CzkWevYBztdUUAsZqtGbMj9Eu0OaeEg==}
'@aws-sdk/lib-storage@3.1041.0':
resolution: {integrity: sha512-kDJVrZTzRdeFFEppKQVbXzXOCwEzxUsBGIblH0OaeJbaOV5//ZphqxhznMd3QWckqicbIuShJWkmnQeBt+VmBw==}
engines: {node: '>=20.0.0'}
peerDependencies:
'@aws-sdk/client-s3': ^3.1037.0
'@aws-sdk/client-s3': ^3.1041.0
'@aws-sdk/middleware-bucket-endpoint@3.972.10':
resolution: {integrity: sha512-Vbc2frZH7wXlMNd+ZZSXUEs/l1Sv8Jj4zUnIfwrYF5lwaLdXHZ9xx4U3rjUcaye3HRhFVc+E5DbBxpRAbB16BA==}
@@ -993,8 +993,8 @@ packages:
resolution: {integrity: sha512-2Yn0f1Qiq/DjxYR3wfI3LokXnjOhFM7Ssn4LTdFDIxRMCE6I32MAsVnhPX1cUZsuVA9tiZtwwhlSLAtFGxAZlQ==}
engines: {node: '>=20.0.0'}
'@aws-sdk/middleware-flexible-checksums@3.974.13':
resolution: {integrity: sha512-b6QUe2hQX9XsnCzp6mtzVaERhganDKeb8lmGL6pVhr7rRVH9S9keDFW7uKytuuqmcY5943FixoGqn/QL+sbUBA==}
'@aws-sdk/middleware-flexible-checksums@3.974.16':
resolution: {integrity: sha512-6ru8doI0/XzszqLIPXf0E/V7HhAw1Pu94010XCKYtBUfD0LxF0BuOzrUf8OQGR6j2o6wgKTHUniOmndQycHwCA==}
engines: {node: '>=20.0.0'}
'@aws-sdk/middleware-host-header@3.972.10':
@@ -1013,36 +1013,36 @@ packages:
resolution: {integrity: sha512-+zz6f79Kj9V5qFK2P+D8Ehjnw4AhphAlCAsPjUqEcInA9umtSSKMrHbSagEeOIsDNuvVrH98bjRHcyQukTrhaQ==}
engines: {node: '>=20.0.0'}
'@aws-sdk/middleware-sdk-s3@3.972.34':
resolution: {integrity: sha512-/UL96JKjsjdodcRRMKl99tLQvK6Oi9ptLC9iU1yiTF/ruaDX0mtBBtnLNZDxIZRJOCVOtB49ed1YaTadqygk8Q==}
'@aws-sdk/middleware-sdk-s3@3.972.37':
resolution: {integrity: sha512-Km7M+i8DrLArVzrid1gfxeGhYHBd3uxvE77g0s5a52zPSVosxzQBnJ0gwWb6NIp/DOk8gsBMhi7V+cpJG0ndTA==}
engines: {node: '>=20.0.0'}
'@aws-sdk/middleware-ssec@3.972.10':
resolution: {integrity: sha512-Gli9A0u8EVVb+5bFDGS/QbSVg28w/wpEidg1ggVcSj65BDTdGR6punsOcVjqdiu1i42WHWo51MCvARPIIz9juw==}
engines: {node: '>=20.0.0'}
'@aws-sdk/middleware-user-agent@3.972.35':
resolution: {integrity: sha512-hOFWNOjVmOocpRlrU04nYxjMOeoe0Obu5AXEuhB8zblMCPl3cG1hdluQCZERRKFyhMQjwZnDbhSHjoMUjetFGw==}
'@aws-sdk/middleware-user-agent@3.972.38':
resolution: {integrity: sha512-iz+B29TXcAZsJpwB+AwG/TTGA5l/VnmMZ2UxtiySOZjI6gCdmviXPwdgzcmuazMy16rXoPY4mYCGe7zdNKfx5A==}
engines: {node: '>=20.0.0'}
'@aws-sdk/nested-clients@3.997.3':
resolution: {integrity: sha512-SivE6GP228IVgfsrr2c/vqTg95X0Qj39Yw4uIrcddpkUzIltNMoNOR62leHOLhODfjv9K8X2mPTwS69A5kT0nQ==}
'@aws-sdk/nested-clients@3.997.6':
resolution: {integrity: sha512-WBDnqatJl+kGObpfmfSxqnXeYTu3Me8wx8WCtvoxX3pfWrrTv8I4WTMSSs7PZqcRcVh8WeUKMgGFjMG+52SR1w==}
engines: {node: '>=20.0.0'}
'@aws-sdk/region-config-resolver@3.972.13':
resolution: {integrity: sha512-CvJ2ZIjK/jVD/lbOpowBVElJyC1YxLTIJ13yM0AEo0t2v7swOzGjSA6lJGH+DwZXQhcjUjoYwc8bVYCX5MDr1A==}
engines: {node: '>=20.0.0'}
'@aws-sdk/s3-request-presigner@3.1037.0':
resolution: {integrity: sha512-rZQS8DxrqPYXzOvaoysf6L4fHmgFbndZz3GfUMhlHG1iWmcQqH7v0AGhpjyNBY3cYAX8+CAkOkD4VUrntnHNbQ==}
'@aws-sdk/s3-request-presigner@3.1041.0':
resolution: {integrity: sha512-DlKsPQ8Z75wgeDSHbjUPNDQCYUF0OLBkqllZqFei61KIoQDqEeKUCwuCf6RhNLjaP4b8oSpBA9+FmUS+zm3xUg==}
engines: {node: '>=20.0.0'}
'@aws-sdk/signature-v4-multi-region@3.996.22':
resolution: {integrity: sha512-/rXhMXteD+BqhFd0nYprAgcZ/KtU+963uftPqd3tiFcFfooHZINXUGtOmo2SQjRVauCTNqIEzkwuSETdZFqTTA==}
'@aws-sdk/signature-v4-multi-region@3.996.25':
resolution: {integrity: sha512-+CMIt3e1VzlklAECmG+DtP1sV8iKq25FuA0OKpnJ4KA0kxUtd7CgClY7/RU6VzJBQwbN4EJ9Ue6plvqx1qGadw==}
engines: {node: '>=20.0.0'}
'@aws-sdk/token-providers@3.1036.0':
resolution: {integrity: sha512-aNSJ6jjDYayxN9ZA1JpycVScX93Lx03kKZ1EXt3DGOTahcWVLJj3oLAlop0xKP+vP2Ga2t49p1tEaMkTbCCaZA==}
'@aws-sdk/token-providers@3.1041.0':
resolution: {integrity: sha512-Th7kPI6YPtvJUcdznooXJMy+9rQWjmEF81LxaJssngBzuysK4a/x+l8kjm1zb7nYsUPbndnBdUnwng/3PLvtGw==}
engines: {node: '>=20.0.0'}
'@aws-sdk/types@3.973.8':
@@ -1068,8 +1068,8 @@ packages:
'@aws-sdk/util-user-agent-browser@3.972.10':
resolution: {integrity: sha512-FAzqXvfEssGdSIz8ejatan0bOdx1qefBWKF/gWmVBXIP1HkS7v/wjjaqrAGGKvyihrXTXW00/2/1nTJtxpXz7g==}
'@aws-sdk/util-user-agent-node@3.973.21':
resolution: {integrity: sha512-Av4UHTcAWgdvbN0IP9pbtf4Qa1+6LtJqQdZWj5pLn5J67w0pnJJAZZ+7JPPcj2KN3378zD2JDM9DwJKEyvyMTQ==}
'@aws-sdk/util-user-agent-node@3.973.24':
resolution: {integrity: sha512-ZWwlkjcIp7cEL8ZfTpTAPNkwx25p7xol0xlKoWVVf22+nsjwmLcHYtTPjIV1cSpmB/b6DaK4cb1fSkvCXHgRdw==}
engines: {node: '>=20.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
@@ -1077,8 +1077,8 @@ packages:
aws-crt:
optional: true
'@aws-sdk/xml-builder@3.972.19':
resolution: {integrity: sha512-Cw8IOMdBUEIl8ZlhRC3Dc/E64D5B5/8JhV6vhPLiPfJwcRC84S6F8aBOIi/N4vR9ZyA4I5Cc0Ateb/9EHaJXeQ==}
'@aws-sdk/xml-builder@3.972.22':
resolution: {integrity: sha512-PMYKKtJd70IsSG0yHrdAbxBr+ZWBKLvzFZfD3/urxgf6hXVMzuU5M+3MJ5G67RpOmLBu1fAUN65SbWuKUCOlAA==}
engines: {node: '>=20.0.0'}
'@aws/lambda-invoke-store@0.2.3':
@@ -1820,9 +1820,6 @@ packages:
resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==}
engines: {node: '>=18'}
'@docmost/pdf-inspector@1.9.4':
resolution: {integrity: sha512-G5DNyDtLNxybTXWakqi7PuOEuSb/A2ZjDlv2WCkOkiHszPeILdrC+G0a4e4UP10yxvzuLfb23pJ5jy8fUSYZPw==}
'@emnapi/core@1.8.1':
resolution: {integrity: sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==}
@@ -2759,6 +2756,76 @@ packages:
cpu: [x64]
os: [win32]
'@napi-rs/canvas-android-arm64@0.1.97':
resolution: {integrity: sha512-V1c/WVw+NzH8vk7ZK/O8/nyBSCQimU8sfMsB/9qeSvdkGKNU7+mxy/bIF0gTgeBFmHpj30S4E9WHMSrxXGQuVQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [android]
'@napi-rs/canvas-darwin-arm64@0.1.97':
resolution: {integrity: sha512-ok+SCEF4YejcxuJ9Rm+WWunHHpf2HmiPxfz6z1a/NFQECGXtsY7A4B8XocK1LmT1D7P174MzwPF9Wy3AUAwEPw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
'@napi-rs/canvas-darwin-x64@0.1.97':
resolution: {integrity: sha512-PUP6e6/UGlclUvAQNnuXCcnkpdUou6VYZfQOQxExLp86epOylmiwLkqXIvpFmjoTEDmPmXrI+coL/9EFU1gKPA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
'@napi-rs/canvas-linux-arm-gnueabihf@0.1.97':
resolution: {integrity: sha512-XyXH2L/cic8eTNtbrXCcvqHtMX/nEOxN18+7rMrAM2XtLYC/EB5s0wnO1FsLMWmK+04ZSLN9FBGipo7kpIkcOw==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
'@napi-rs/canvas-linux-arm64-gnu@0.1.97':
resolution: {integrity: sha512-Kuq/M3djq0K8ktgz6nPlK7Ne5d4uWeDxPpyKWOjWDK2RIOhHVtLtyLiJw2fuldw7Vn4mhw05EZXCEr4Q76rs9w==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@napi-rs/canvas-linux-arm64-musl@0.1.97':
resolution: {integrity: sha512-kKmSkQVnWeqg7qdsiXvYxKhAFuHz3tkBjW/zyQv5YKUPhotpaVhpBGv5LqCngzyuRV85SXoe+OFj+Tv0a0QXkQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@napi-rs/canvas-linux-riscv64-gnu@0.1.97':
resolution: {integrity: sha512-Jc7I3A51jnEOIAXeLsN/M/+Z28LUeakcsXs07FLq9prXc0eYOtVwsDEv913Gr+06IRo34gJJVgT0TXvmz+N2VA==}
engines: {node: '>= 10'}
cpu: [riscv64]
os: [linux]
'@napi-rs/canvas-linux-x64-gnu@0.1.97':
resolution: {integrity: sha512-iDUBe7AilfuBSRbSa8/IGX38Mf+iCSBqoVKLSQ5XaY2JLOaqz1TVyPFEyIck7wT6mRQhQt5sN6ogfjIDfi74tg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@napi-rs/canvas-linux-x64-musl@0.1.97':
resolution: {integrity: sha512-AKLFd/v0Z5fvgqBDqhvqtAdx+fHMJ5t9JcUNKq4FIZ5WH+iegGm8HPdj00NFlCSnm83Fp3Ln8I2f7uq1aIiWaA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@napi-rs/canvas-win32-arm64-msvc@0.1.97':
resolution: {integrity: sha512-u883Yr6A6fO7Vpsy9YE4FVCIxzzo5sO+7pIUjjoDLjS3vQaNMkVzx5bdIpEL+ob+gU88WDK4VcxYMZ6nmnoX9A==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
'@napi-rs/canvas-win32-x64-msvc@0.1.97':
resolution: {integrity: sha512-sWtD2EE3fV0IzN+iiQUqr/Q1SwqWhs2O1FKItFlxtdDkikpEj5g7DKQpY3x55H/MAOnL8iomnlk3mcEeGiUMoQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
'@napi-rs/canvas@0.1.97':
resolution: {integrity: sha512-8cFniXvrIEnVwuNSRCW9wirRZbHvrD3JVujdS2P5n5xiJZNZMOZcfOvJ1pb66c7jXMKHHglJEDVJGbm8XWFcXQ==}
engines: {node: '>= 10'}
'@napi-rs/wasm-runtime@0.2.12':
resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
@@ -4275,8 +4342,8 @@ packages:
resolution: {integrity: sha512-ZZkgyjnJppiZbIm6Qbx92pbXYi1uzenIvGhBSCDlc7NwuAkiqSgS75j1czAD25ZLs2FjMjYy1q7gyRVWG6JA0Q==}
engines: {node: '>=18.0.0'}
'@smithy/middleware-retry@4.5.5':
resolution: {integrity: sha512-wnYOpB5vATFKWrY2Z9Alb0KhjZI6AbzU6Fbz3Hq2GnURdRYWB4q+qWivQtSTwXcmWUA3MZ6krfwL6Cq5MAbxsA==}
'@smithy/middleware-retry@4.5.7':
resolution: {integrity: sha512-bRt6ZImqVSeTk39Nm81K20ObIiAZ3WefY7G6+iz/0tZjs4dgRRjvRX2sgsH+zi6iDCRR/aQvQofLKxxz4rPBZg==}
engines: {node: '>=18.0.0'}
'@smithy/middleware-serde@4.2.20':
@@ -4311,8 +4378,8 @@ packages:
resolution: {integrity: sha512-hr+YyqBD23GVvRxGGrcc/oOeNlK3PzT5Fu4dzrDXxzS1LpFiuL2PQQqKPs87M79aW7ziMs+nvB3qdw77SqE7Lw==}
engines: {node: '>=18.0.0'}
'@smithy/service-error-classification@4.3.0':
resolution: {integrity: sha512-9jKsBYQRPR0xBLgc2415RsA5PIcP2sis4oBdN9s0D13cg1B1284mNTjx9Yc+BEERXzuPm5ObktI96OxsKh8E9A==}
'@smithy/service-error-classification@4.3.1':
resolution: {integrity: sha512-aUQuDGh760ts/8MU+APjIZhlLPKhIIfqyzZaJikLEIMrdxFvxuLYD0WxWzaYWpmLbQlXDe9p7EWM3HsBe0K6Gw==}
engines: {node: '>=18.0.0'}
'@smithy/shared-ini-file-loader@4.4.9':
@@ -4379,8 +4446,8 @@ packages:
resolution: {integrity: sha512-1Su2vj9RYNDEv/V+2E+jXkkwGsgR7dc4sfHn9Z7ruzQHJIEni9zzw5CauvRXlFJfmgcqYP8fWa0dkh2Q2YaQyw==}
engines: {node: '>=18.0.0'}
'@smithy/util-retry@4.3.4':
resolution: {integrity: sha512-FY1UQQ1VFmMwiYp1GVS4MeaGD5O0blLNYK0xCRHU+mJgeoH/hSY8Ld8sJWKQ6uznkh14HveRGQJncgPyNl9J+A==}
'@smithy/util-retry@4.3.8':
resolution: {integrity: sha512-LUIxbTBi+OpvXpg91poGA6BdyoleMDLnfXjVDqyi2RvZmTveY5loE/FgYUBCR5LU2BThW2SoZRh8dTIIy38IPw==}
engines: {node: '>=18.0.0'}
'@smithy/util-stream@4.5.25':
@@ -4399,8 +4466,8 @@ packages:
resolution: {integrity: sha512-75MeYpjdWRe8M5E3AW0O4Cx3UadweS+cwdXjwYGBW5h/gxxnbeZ877sLPX/ZJA9GVTlL/qG0dXP29JWFCD1Ayw==}
engines: {node: '>=18.0.0'}
'@smithy/util-waiter@4.2.16':
resolution: {integrity: sha512-GtclrKoZ3Lt7jPQ7aTIYKfjY92OgceScftVnkTsG8e1KV8rkvZgN+ny6YSRhd9hxB8rZtwVbmln7NTvE5O3GmQ==}
'@smithy/util-waiter@4.3.0':
resolution: {integrity: sha512-JyjYmLAfS+pdxF92o4yLgEoy0zhayKTw73FU1aofLWwLcJw7iSqIY2exGmMTrl/lmZugP5p/zxdFSippJDfKWA==}
engines: {node: '>=18.0.0'}
'@smithy/uuid@1.1.2':
@@ -6856,8 +6923,8 @@ packages:
fast-xml-builder@1.1.5:
resolution: {integrity: sha512-4TJn/8FKLeslLAH3dnohXqE3QSoxkhvaMzepOIZytwJXZO69Bfz0HBdDHzOTOon6G59Zrk6VQ2bEiv1t61rfkA==}
fast-xml-parser@5.7.1:
resolution: {integrity: sha512-8Cc3f8GUGUULg34pBch/KGyPLglS+OFs05deyOlY7fL2MTagYPKrVQNmR1fLF/yJ9PH5ZSTd3YDF6pnmeZU+zA==}
fast-xml-parser@5.7.2:
resolution: {integrity: sha512-P7oW7tLbYnhOLQk/Gv7cZgzgMPP/XN03K02/Jy6Y/NHzyIAIpxuZIM/YqAkfiXFPxA2CTm7NtCijK9EDu09u2w==}
hasBin: true
fastify-ip@2.0.0:
@@ -8478,6 +8545,9 @@ packages:
node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
node-readable-to-web-readable-stream@0.4.2:
resolution: {integrity: sha512-/cMZNI34v//jUTrI+UIo4ieHAB5EZRY/+7OmXZgBxaWBMcW2tGdceIw06RFxWxrKZ5Jp3sI2i5TsRo+CBhtVLQ==}
node-releases@2.0.27:
resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
@@ -8769,6 +8839,10 @@ packages:
pause@0.0.1:
resolution: {integrity: sha512-KG8UEiEVkR3wGEb4m5yZkVCzigAD+cVEJck2CzYZO37ZGJfctvVptVO192MwrtPhzONn6go8ylnOdMhKqi4nfg==}
pdfjs-dist@5.5.207:
resolution: {integrity: sha512-WMqqw06w1vUt9ZfT0gOFhMf3wHsWhaCrxGrckGs5Cci6ybDW87IvPaOd2pnBwT6BJuP/CzXDZxjFgmSULLdsdw==}
engines: {node: '>=20.19.0 || >=22.13.0 || >=24'}
peberminta@0.9.0:
resolution: {integrity: sha512-XIxfHpEuSJbITd1H3EeQwpcZbTLHc+VVr8ANI9t5sit565tsI4/xK3KWTUFE2e6QiangUkh3B0jihzmGnNrRsQ==}
@@ -10244,7 +10318,6 @@ packages:
uuid@10.0.0:
resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028).
hasBin: true
uuid@11.1.0:
@@ -10804,29 +10877,29 @@ snapshots:
'@smithy/util-utf8': 2.3.0
tslib: 2.8.1
'@aws-sdk/client-s3@3.1037.0':
'@aws-sdk/client-s3@3.1041.0':
dependencies:
'@aws-crypto/sha1-browser': 5.2.0
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
'@aws-sdk/core': 3.974.5
'@aws-sdk/credential-provider-node': 3.972.36
'@aws-sdk/core': 3.974.8
'@aws-sdk/credential-provider-node': 3.972.39
'@aws-sdk/middleware-bucket-endpoint': 3.972.10
'@aws-sdk/middleware-expect-continue': 3.972.10
'@aws-sdk/middleware-flexible-checksums': 3.974.13
'@aws-sdk/middleware-flexible-checksums': 3.974.16
'@aws-sdk/middleware-host-header': 3.972.10
'@aws-sdk/middleware-location-constraint': 3.972.10
'@aws-sdk/middleware-logger': 3.972.10
'@aws-sdk/middleware-recursion-detection': 3.972.11
'@aws-sdk/middleware-sdk-s3': 3.972.34
'@aws-sdk/middleware-sdk-s3': 3.972.37
'@aws-sdk/middleware-ssec': 3.972.10
'@aws-sdk/middleware-user-agent': 3.972.35
'@aws-sdk/middleware-user-agent': 3.972.38
'@aws-sdk/region-config-resolver': 3.972.13
'@aws-sdk/signature-v4-multi-region': 3.996.22
'@aws-sdk/signature-v4-multi-region': 3.996.25
'@aws-sdk/types': 3.973.8
'@aws-sdk/util-endpoints': 3.996.8
'@aws-sdk/util-user-agent-browser': 3.972.10
'@aws-sdk/util-user-agent-node': 3.973.21
'@aws-sdk/util-user-agent-node': 3.973.24
'@smithy/config-resolver': 4.4.17
'@smithy/core': 3.23.17
'@smithy/eventstream-serde-browser': 4.2.14
@@ -10840,7 +10913,7 @@ snapshots:
'@smithy/md5-js': 4.2.14
'@smithy/middleware-content-length': 4.2.14
'@smithy/middleware-endpoint': 4.4.32
'@smithy/middleware-retry': 4.5.5
'@smithy/middleware-retry': 4.5.7
'@smithy/middleware-serde': 4.2.20
'@smithy/middleware-stack': 4.2.14
'@smithy/node-config-provider': 4.3.14
@@ -10856,18 +10929,18 @@ snapshots:
'@smithy/util-defaults-mode-node': 4.2.54
'@smithy/util-endpoints': 3.4.2
'@smithy/util-middleware': 4.2.14
'@smithy/util-retry': 4.3.4
'@smithy/util-retry': 4.3.8
'@smithy/util-stream': 4.5.25
'@smithy/util-utf8': 4.2.2
'@smithy/util-waiter': 4.2.16
'@smithy/util-waiter': 4.3.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
'@aws-sdk/core@3.974.5':
'@aws-sdk/core@3.974.8':
dependencies:
'@aws-sdk/types': 3.973.8
'@aws-sdk/xml-builder': 3.972.19
'@aws-sdk/xml-builder': 3.972.22
'@smithy/core': 3.23.17
'@smithy/node-config-provider': 4.3.14
'@smithy/property-provider': 4.2.14
@@ -10877,7 +10950,7 @@ snapshots:
'@smithy/types': 4.14.1
'@smithy/util-base64': 4.3.2
'@smithy/util-middleware': 4.2.14
'@smithy/util-retry': 4.3.4
'@smithy/util-retry': 4.3.8
'@smithy/util-utf8': 4.2.2
tslib: 2.8.1
@@ -10886,17 +10959,17 @@ snapshots:
'@smithy/types': 4.14.1
tslib: 2.8.1
'@aws-sdk/credential-provider-env@3.972.31':
'@aws-sdk/credential-provider-env@3.972.34':
dependencies:
'@aws-sdk/core': 3.974.5
'@aws-sdk/core': 3.974.8
'@aws-sdk/types': 3.973.8
'@smithy/property-provider': 4.2.14
'@smithy/types': 4.14.1
tslib: 2.8.1
'@aws-sdk/credential-provider-http@3.972.33':
'@aws-sdk/credential-provider-http@3.972.36':
dependencies:
'@aws-sdk/core': 3.974.5
'@aws-sdk/core': 3.974.8
'@aws-sdk/types': 3.973.8
'@smithy/fetch-http-handler': 5.3.17
'@smithy/node-http-handler': 4.6.1
@@ -10907,16 +10980,16 @@ snapshots:
'@smithy/util-stream': 4.5.25
tslib: 2.8.1
'@aws-sdk/credential-provider-ini@3.972.35':
'@aws-sdk/credential-provider-ini@3.972.38':
dependencies:
'@aws-sdk/core': 3.974.5
'@aws-sdk/credential-provider-env': 3.972.31
'@aws-sdk/credential-provider-http': 3.972.33
'@aws-sdk/credential-provider-login': 3.972.35
'@aws-sdk/credential-provider-process': 3.972.31
'@aws-sdk/credential-provider-sso': 3.972.35
'@aws-sdk/credential-provider-web-identity': 3.972.35
'@aws-sdk/nested-clients': 3.997.3
'@aws-sdk/core': 3.974.8
'@aws-sdk/credential-provider-env': 3.972.34
'@aws-sdk/credential-provider-http': 3.972.36
'@aws-sdk/credential-provider-login': 3.972.38
'@aws-sdk/credential-provider-process': 3.972.34
'@aws-sdk/credential-provider-sso': 3.972.38
'@aws-sdk/credential-provider-web-identity': 3.972.38
'@aws-sdk/nested-clients': 3.997.6
'@aws-sdk/types': 3.973.8
'@smithy/credential-provider-imds': 4.2.14
'@smithy/property-provider': 4.2.14
@@ -10926,10 +10999,10 @@ snapshots:
transitivePeerDependencies:
- aws-crt
'@aws-sdk/credential-provider-login@3.972.35':
'@aws-sdk/credential-provider-login@3.972.38':
dependencies:
'@aws-sdk/core': 3.974.5
'@aws-sdk/nested-clients': 3.997.3
'@aws-sdk/core': 3.974.8
'@aws-sdk/nested-clients': 3.997.6
'@aws-sdk/types': 3.973.8
'@smithy/property-provider': 4.2.14
'@smithy/protocol-http': 5.3.14
@@ -10939,14 +11012,14 @@ snapshots:
transitivePeerDependencies:
- aws-crt
'@aws-sdk/credential-provider-node@3.972.36':
'@aws-sdk/credential-provider-node@3.972.39':
dependencies:
'@aws-sdk/credential-provider-env': 3.972.31
'@aws-sdk/credential-provider-http': 3.972.33
'@aws-sdk/credential-provider-ini': 3.972.35
'@aws-sdk/credential-provider-process': 3.972.31
'@aws-sdk/credential-provider-sso': 3.972.35
'@aws-sdk/credential-provider-web-identity': 3.972.35
'@aws-sdk/credential-provider-env': 3.972.34
'@aws-sdk/credential-provider-http': 3.972.36
'@aws-sdk/credential-provider-ini': 3.972.38
'@aws-sdk/credential-provider-process': 3.972.34
'@aws-sdk/credential-provider-sso': 3.972.38
'@aws-sdk/credential-provider-web-identity': 3.972.38
'@aws-sdk/types': 3.973.8
'@smithy/credential-provider-imds': 4.2.14
'@smithy/property-provider': 4.2.14
@@ -10956,20 +11029,20 @@ snapshots:
transitivePeerDependencies:
- aws-crt
'@aws-sdk/credential-provider-process@3.972.31':
'@aws-sdk/credential-provider-process@3.972.34':
dependencies:
'@aws-sdk/core': 3.974.5
'@aws-sdk/core': 3.974.8
'@aws-sdk/types': 3.973.8
'@smithy/property-provider': 4.2.14
'@smithy/shared-ini-file-loader': 4.4.9
'@smithy/types': 4.14.1
tslib: 2.8.1
'@aws-sdk/credential-provider-sso@3.972.35':
'@aws-sdk/credential-provider-sso@3.972.38':
dependencies:
'@aws-sdk/core': 3.974.5
'@aws-sdk/nested-clients': 3.997.3
'@aws-sdk/token-providers': 3.1036.0
'@aws-sdk/core': 3.974.8
'@aws-sdk/nested-clients': 3.997.6
'@aws-sdk/token-providers': 3.1041.0
'@aws-sdk/types': 3.973.8
'@smithy/property-provider': 4.2.14
'@smithy/shared-ini-file-loader': 4.4.9
@@ -10978,10 +11051,10 @@ snapshots:
transitivePeerDependencies:
- aws-crt
'@aws-sdk/credential-provider-web-identity@3.972.35':
'@aws-sdk/credential-provider-web-identity@3.972.38':
dependencies:
'@aws-sdk/core': 3.974.5
'@aws-sdk/nested-clients': 3.997.3
'@aws-sdk/core': 3.974.8
'@aws-sdk/nested-clients': 3.997.6
'@aws-sdk/types': 3.973.8
'@smithy/property-provider': 4.2.14
'@smithy/shared-ini-file-loader': 4.4.9
@@ -10990,9 +11063,9 @@ snapshots:
transitivePeerDependencies:
- aws-crt
'@aws-sdk/lib-storage@3.1037.0(@aws-sdk/client-s3@3.1037.0)':
'@aws-sdk/lib-storage@3.1041.0(@aws-sdk/client-s3@3.1041.0)':
dependencies:
'@aws-sdk/client-s3': 3.1037.0
'@aws-sdk/client-s3': 3.1041.0
'@smithy/middleware-endpoint': 4.4.32
'@smithy/protocol-http': 5.3.14
'@smithy/smithy-client': 4.12.13
@@ -11019,12 +11092,12 @@ snapshots:
'@smithy/types': 4.14.1
tslib: 2.8.1
'@aws-sdk/middleware-flexible-checksums@3.974.13':
'@aws-sdk/middleware-flexible-checksums@3.974.16':
dependencies:
'@aws-crypto/crc32': 5.2.0
'@aws-crypto/crc32c': 5.2.0
'@aws-crypto/util': 5.2.0
'@aws-sdk/core': 3.974.5
'@aws-sdk/core': 3.974.8
'@aws-sdk/crc64-nvme': 3.972.7
'@aws-sdk/types': 3.973.8
'@smithy/is-array-buffer': 4.2.2
@@ -11063,9 +11136,9 @@ snapshots:
'@smithy/types': 4.14.1
tslib: 2.8.1
'@aws-sdk/middleware-sdk-s3@3.972.34':
'@aws-sdk/middleware-sdk-s3@3.972.37':
dependencies:
'@aws-sdk/core': 3.974.5
'@aws-sdk/core': 3.974.8
'@aws-sdk/types': 3.973.8
'@aws-sdk/util-arn-parser': 3.972.3
'@smithy/core': 3.23.17
@@ -11086,32 +11159,32 @@ snapshots:
'@smithy/types': 4.14.1
tslib: 2.8.1
'@aws-sdk/middleware-user-agent@3.972.35':
'@aws-sdk/middleware-user-agent@3.972.38':
dependencies:
'@aws-sdk/core': 3.974.5
'@aws-sdk/core': 3.974.8
'@aws-sdk/types': 3.973.8
'@aws-sdk/util-endpoints': 3.996.8
'@smithy/core': 3.23.17
'@smithy/protocol-http': 5.3.14
'@smithy/types': 4.14.1
'@smithy/util-retry': 4.3.4
'@smithy/util-retry': 4.3.8
tslib: 2.8.1
'@aws-sdk/nested-clients@3.997.3':
'@aws-sdk/nested-clients@3.997.6':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
'@aws-sdk/core': 3.974.5
'@aws-sdk/core': 3.974.8
'@aws-sdk/middleware-host-header': 3.972.10
'@aws-sdk/middleware-logger': 3.972.10
'@aws-sdk/middleware-recursion-detection': 3.972.11
'@aws-sdk/middleware-user-agent': 3.972.35
'@aws-sdk/middleware-user-agent': 3.972.38
'@aws-sdk/region-config-resolver': 3.972.13
'@aws-sdk/signature-v4-multi-region': 3.996.22
'@aws-sdk/signature-v4-multi-region': 3.996.25
'@aws-sdk/types': 3.973.8
'@aws-sdk/util-endpoints': 3.996.8
'@aws-sdk/util-user-agent-browser': 3.972.10
'@aws-sdk/util-user-agent-node': 3.973.21
'@aws-sdk/util-user-agent-node': 3.973.24
'@smithy/config-resolver': 4.4.17
'@smithy/core': 3.23.17
'@smithy/fetch-http-handler': 5.3.17
@@ -11119,7 +11192,7 @@ snapshots:
'@smithy/invalid-dependency': 4.2.14
'@smithy/middleware-content-length': 4.2.14
'@smithy/middleware-endpoint': 4.4.32
'@smithy/middleware-retry': 4.5.5
'@smithy/middleware-retry': 4.5.7
'@smithy/middleware-serde': 4.2.20
'@smithy/middleware-stack': 4.2.14
'@smithy/node-config-provider': 4.3.14
@@ -11135,7 +11208,7 @@ snapshots:
'@smithy/util-defaults-mode-node': 4.2.54
'@smithy/util-endpoints': 3.4.2
'@smithy/util-middleware': 4.2.14
'@smithy/util-retry': 4.3.4
'@smithy/util-retry': 4.3.8
'@smithy/util-utf8': 4.2.2
tslib: 2.8.1
transitivePeerDependencies:
@@ -11149,9 +11222,9 @@ snapshots:
'@smithy/types': 4.14.1
tslib: 2.8.1
'@aws-sdk/s3-request-presigner@3.1037.0':
'@aws-sdk/s3-request-presigner@3.1041.0':
dependencies:
'@aws-sdk/signature-v4-multi-region': 3.996.22
'@aws-sdk/signature-v4-multi-region': 3.996.25
'@aws-sdk/types': 3.973.8
'@aws-sdk/util-format-url': 3.972.10
'@smithy/middleware-endpoint': 4.4.32
@@ -11160,19 +11233,19 @@ snapshots:
'@smithy/types': 4.14.1
tslib: 2.8.1
'@aws-sdk/signature-v4-multi-region@3.996.22':
'@aws-sdk/signature-v4-multi-region@3.996.25':
dependencies:
'@aws-sdk/middleware-sdk-s3': 3.972.34
'@aws-sdk/middleware-sdk-s3': 3.972.37
'@aws-sdk/types': 3.973.8
'@smithy/protocol-http': 5.3.14
'@smithy/signature-v4': 5.3.14
'@smithy/types': 4.14.1
tslib: 2.8.1
'@aws-sdk/token-providers@3.1036.0':
'@aws-sdk/token-providers@3.1041.0':
dependencies:
'@aws-sdk/core': 3.974.5
'@aws-sdk/nested-clients': 3.997.3
'@aws-sdk/core': 3.974.8
'@aws-sdk/nested-clients': 3.997.6
'@aws-sdk/types': 3.973.8
'@smithy/property-provider': 4.2.14
'@smithy/shared-ini-file-loader': 4.4.9
@@ -11216,19 +11289,20 @@ snapshots:
bowser: 2.14.1
tslib: 2.8.1
'@aws-sdk/util-user-agent-node@3.973.21':
'@aws-sdk/util-user-agent-node@3.973.24':
dependencies:
'@aws-sdk/middleware-user-agent': 3.972.35
'@aws-sdk/middleware-user-agent': 3.972.38
'@aws-sdk/types': 3.973.8
'@smithy/node-config-provider': 4.3.14
'@smithy/types': 4.14.1
'@smithy/util-config-provider': 4.2.2
tslib: 2.8.1
'@aws-sdk/xml-builder@3.972.19':
'@aws-sdk/xml-builder@3.972.22':
dependencies:
'@nodable/entities': 2.1.0
'@smithy/types': 4.14.1
fast-xml-parser: 5.7.1
fast-xml-parser: 5.7.2
tslib: 2.8.1
'@aws/lambda-invoke-store@0.2.3': {}
@@ -12110,8 +12184,6 @@ snapshots:
'@csstools/css-tokenizer@3.0.3': {}
'@docmost/pdf-inspector@1.9.4': {}
'@emnapi/core@1.8.1':
dependencies:
'@emnapi/wasi-threads': 1.1.0
@@ -13112,6 +13184,54 @@ snapshots:
'@msgpackr-extract/msgpackr-extract-win32-x64@3.0.2':
optional: true
'@napi-rs/canvas-android-arm64@0.1.97':
optional: true
'@napi-rs/canvas-darwin-arm64@0.1.97':
optional: true
'@napi-rs/canvas-darwin-x64@0.1.97':
optional: true
'@napi-rs/canvas-linux-arm-gnueabihf@0.1.97':
optional: true
'@napi-rs/canvas-linux-arm64-gnu@0.1.97':
optional: true
'@napi-rs/canvas-linux-arm64-musl@0.1.97':
optional: true
'@napi-rs/canvas-linux-riscv64-gnu@0.1.97':
optional: true
'@napi-rs/canvas-linux-x64-gnu@0.1.97':
optional: true
'@napi-rs/canvas-linux-x64-musl@0.1.97':
optional: true
'@napi-rs/canvas-win32-arm64-msvc@0.1.97':
optional: true
'@napi-rs/canvas-win32-x64-msvc@0.1.97':
optional: true
'@napi-rs/canvas@0.1.97':
optionalDependencies:
'@napi-rs/canvas-android-arm64': 0.1.97
'@napi-rs/canvas-darwin-arm64': 0.1.97
'@napi-rs/canvas-darwin-x64': 0.1.97
'@napi-rs/canvas-linux-arm-gnueabihf': 0.1.97
'@napi-rs/canvas-linux-arm64-gnu': 0.1.97
'@napi-rs/canvas-linux-arm64-musl': 0.1.97
'@napi-rs/canvas-linux-riscv64-gnu': 0.1.97
'@napi-rs/canvas-linux-x64-gnu': 0.1.97
'@napi-rs/canvas-linux-x64-musl': 0.1.97
'@napi-rs/canvas-win32-arm64-msvc': 0.1.97
'@napi-rs/canvas-win32-x64-msvc': 0.1.97
optional: true
'@napi-rs/wasm-runtime@0.2.12':
dependencies:
'@emnapi/core': 1.8.1
@@ -14674,16 +14794,16 @@ snapshots:
'@smithy/util-middleware': 4.2.14
tslib: 2.8.1
'@smithy/middleware-retry@4.5.5':
'@smithy/middleware-retry@4.5.7':
dependencies:
'@smithy/core': 3.23.17
'@smithy/node-config-provider': 4.3.14
'@smithy/protocol-http': 5.3.14
'@smithy/service-error-classification': 4.3.0
'@smithy/service-error-classification': 4.3.1
'@smithy/smithy-client': 4.12.13
'@smithy/types': 4.14.1
'@smithy/util-middleware': 4.2.14
'@smithy/util-retry': 4.3.4
'@smithy/util-retry': 4.3.8
'@smithy/uuid': 1.1.2
tslib: 2.8.1
@@ -14734,7 +14854,7 @@ snapshots:
'@smithy/types': 4.14.1
tslib: 2.8.1
'@smithy/service-error-classification@4.3.0':
'@smithy/service-error-classification@4.3.1':
dependencies:
'@smithy/types': 4.14.1
@@ -14834,9 +14954,9 @@ snapshots:
'@smithy/types': 4.14.1
tslib: 2.8.1
'@smithy/util-retry@4.3.4':
'@smithy/util-retry@4.3.8':
dependencies:
'@smithy/service-error-classification': 4.3.0
'@smithy/service-error-classification': 4.3.1
'@smithy/types': 4.14.1
tslib: 2.8.1
@@ -14865,7 +14985,7 @@ snapshots:
'@smithy/util-buffer-from': 4.2.2
tslib: 2.8.1
'@smithy/util-waiter@4.2.16':
'@smithy/util-waiter@4.3.0':
dependencies:
'@smithy/types': 4.14.1
tslib: 2.8.1
@@ -17725,7 +17845,7 @@ snapshots:
dependencies:
path-expression-matcher: 1.5.0
fast-xml-parser@5.7.1:
fast-xml-parser@5.7.2:
dependencies:
'@nodable/entities': 2.1.0
fast-xml-builder: 1.1.5
@@ -19498,6 +19618,9 @@ snapshots:
node-int64@0.4.0: {}
node-readable-to-web-readable-stream@0.4.2:
optional: true
node-releases@2.0.27: {}
nodemailer@8.0.5: {}
@@ -19849,6 +19972,11 @@ snapshots:
pause@0.0.1: {}
pdfjs-dist@5.5.207:
optionalDependencies:
'@napi-rs/canvas': 0.1.97
node-readable-to-web-readable-stream: 0.4.2
peberminta@0.9.0: {}
pend@1.2.0: {}