@sync-in/server 1.9.3 → 1.10.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/CHANGELOG.md +41 -4
- package/environment/environment.dist.yaml +15 -5
- package/package.json +18 -19
- package/server/app.bootstrap.js +1 -1
- package/server/app.bootstrap.js.map +1 -1
- package/server/app.constants.js +3 -2
- package/server/app.constants.js.map +1 -1
- package/server/applications/files/constants/cache.js +2 -5
- package/server/applications/files/constants/cache.js.map +1 -1
- package/server/applications/files/constants/files.js +4 -0
- package/server/applications/files/constants/files.js.map +1 -1
- package/server/applications/files/constants/operations.js +4 -0
- package/server/applications/files/constants/operations.js.map +1 -1
- package/server/applications/files/constants/routes.js +1 -26
- package/server/applications/files/constants/routes.js.map +1 -1
- package/server/applications/files/files.config.js +15 -39
- package/server/applications/files/files.config.js.map +1 -1
- package/server/applications/files/files.controller.js +4 -4
- package/server/applications/files/files.controller.js.map +1 -1
- package/server/applications/files/files.module.js +12 -9
- package/server/applications/files/files.module.js.map +1 -1
- package/server/applications/files/interfaces/file-lock.interface.js.map +1 -1
- package/server/applications/files/interfaces/file-props.interface.js.map +1 -1
- package/server/applications/files/modules/collabora-online/collabora-online-environment.decorator.js +32 -0
- package/server/applications/files/modules/collabora-online/collabora-online-environment.decorator.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online-manager.service.js +280 -0
- package/server/applications/files/modules/collabora-online/collabora-online-manager.service.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online-manager.service.spec.js +552 -0
- package/server/applications/files/modules/collabora-online/collabora-online-manager.service.spec.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.config.js +40 -0
- package/server/applications/files/modules/collabora-online/collabora-online.config.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.constants.js +110 -0
- package/server/applications/files/modules/collabora-online/collabora-online.constants.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.controller.js +128 -0
- package/server/applications/files/modules/collabora-online/collabora-online.controller.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.controller.spec.js +47 -0
- package/server/applications/files/modules/collabora-online/collabora-online.controller.spec.js.map +1 -0
- package/server/applications/files/{interfaces/only-office-config.interface.js → modules/collabora-online/collabora-online.dtos.js} +1 -1
- package/server/applications/files/modules/collabora-online/collabora-online.dtos.js.map +1 -0
- package/server/applications/files/{guards/files-only-office.guard.js → modules/collabora-online/collabora-online.guard.js} +7 -21
- package/server/applications/files/modules/collabora-online/collabora-online.guard.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.guard.spec.js +86 -0
- package/server/applications/files/modules/collabora-online/collabora-online.guard.spec.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.interface.js +10 -0
- package/server/applications/files/modules/collabora-online/collabora-online.interface.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.module.js +41 -0
- package/server/applications/files/modules/collabora-online/collabora-online.module.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.routes.js +35 -0
- package/server/applications/files/modules/collabora-online/collabora-online.routes.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.strategy.js +59 -0
- package/server/applications/files/modules/collabora-online/collabora-online.strategy.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.utils.js +28 -0
- package/server/applications/files/modules/collabora-online/collabora-online.utils.js.map +1 -0
- package/server/applications/files/{decorators → modules/only-office}/only-office-environment.decorator.js +5 -5
- package/server/applications/files/modules/only-office/only-office-environment.decorator.js.map +1 -0
- package/server/applications/files/{services/files-only-office-manager.service.js → modules/only-office/only-office-manager.service.js} +101 -97
- package/server/applications/files/modules/only-office/only-office-manager.service.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office-manager.service.spec.js +477 -0
- package/server/applications/files/modules/only-office/only-office-manager.service.spec.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.config.js +51 -0
- package/server/applications/files/modules/only-office/only-office.config.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.constants.js +417 -0
- package/server/applications/files/modules/only-office/only-office.constants.js.map +1 -0
- package/server/applications/files/{files-only-office.controller.js → modules/only-office/only-office.controller.js} +35 -52
- package/server/applications/files/modules/only-office/only-office.controller.js.map +1 -0
- package/server/applications/files/{files-only-office.controller.spec.js → modules/only-office/only-office.controller.spec.js} +24 -21
- package/server/applications/files/modules/only-office/only-office.controller.spec.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.dtos.js +10 -0
- package/server/applications/files/modules/only-office/only-office.dtos.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.guard.js +40 -0
- package/server/applications/files/modules/only-office/only-office.guard.js.map +1 -0
- package/server/applications/files/{guards/files-only-office.guard.spec.js → modules/only-office/only-office.guard.spec.js} +15 -21
- package/server/applications/files/modules/only-office/only-office.guard.spec.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.interface.js +10 -0
- package/server/applications/files/modules/only-office/only-office.interface.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.module.js +41 -0
- package/server/applications/files/modules/only-office/only-office.module.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.routes.js +45 -0
- package/server/applications/files/modules/only-office/only-office.routes.js.map +1 -0
- package/server/applications/files/{guards/files-only-office.strategy.js → modules/only-office/only-office.strategy.js} +11 -11
- package/server/applications/files/modules/only-office/only-office.strategy.js.map +1 -0
- package/server/applications/files/services/files-lock-manager.service.js +25 -33
- package/server/applications/files/services/files-lock-manager.service.js.map +1 -1
- package/server/applications/files/services/files-manager.service.js +17 -16
- package/server/applications/files/services/files-manager.service.js.map +1 -1
- package/server/applications/files/services/files-methods.service.js +2 -2
- package/server/applications/files/services/files-methods.service.js.map +1 -1
- package/server/applications/files/services/files-methods.service.spec.js +5 -5
- package/server/applications/files/services/files-methods.service.spec.js.map +1 -1
- package/server/applications/files/services/files-recents.service.js +4 -0
- package/server/applications/files/services/files-recents.service.js.map +1 -1
- package/server/applications/files/services/files-scheduler.service.js +24 -5
- package/server/applications/files/services/files-scheduler.service.js.map +1 -1
- package/server/applications/files/utils/files.js +10 -2
- package/server/applications/files/utils/files.js.map +1 -1
- package/server/applications/links/constants/routes.js +5 -0
- package/server/applications/links/constants/routes.js.map +1 -1
- package/server/applications/links/interfaces/link-space.interface.js.map +1 -1
- package/server/applications/links/links.controller.js +25 -5
- package/server/applications/links/links.controller.js.map +1 -1
- package/server/applications/links/services/links-manager.service.js +43 -21
- package/server/applications/links/services/links-manager.service.js.map +1 -1
- package/server/applications/links/services/links-manager.service.spec.js +4 -3
- package/server/applications/links/services/links-manager.service.spec.js.map +1 -1
- package/server/applications/links/services/links-queries.service.js +9 -2
- package/server/applications/links/services/links-queries.service.js.map +1 -1
- package/server/applications/shares/interfaces/share-link.interface.js.map +1 -1
- package/server/applications/shares/services/shares-manager.service.js +3 -0
- package/server/applications/shares/services/shares-manager.service.js.map +1 -1
- package/server/applications/shares/services/shares-manager.service.spec.js +2 -1
- package/server/applications/shares/services/shares-manager.service.spec.js.map +1 -1
- package/server/applications/shares/services/shares-queries.service.js +1 -0
- package/server/applications/shares/services/shares-queries.service.js.map +1 -1
- package/server/applications/spaces/constants/spaces.js +2 -2
- package/server/applications/spaces/constants/spaces.js.map +1 -1
- package/server/applications/spaces/decorators/space-override-permission.decorator.js +18 -0
- package/server/applications/spaces/decorators/space-override-permission.decorator.js.map +1 -0
- package/server/applications/spaces/guards/space.guard.js +40 -33
- package/server/applications/spaces/guards/space.guard.js.map +1 -1
- package/server/applications/spaces/guards/space.guard.spec.js +10 -15
- package/server/applications/spaces/guards/space.guard.spec.js.map +1 -1
- package/server/applications/spaces/services/spaces-scheduler.service.js +9 -1
- package/server/applications/spaces/services/spaces-scheduler.service.js.map +1 -1
- package/server/applications/webdav/constants/webdav.js +4 -0
- package/server/applications/webdav/constants/webdav.js.map +1 -1
- package/server/applications/webdav/guards/webdav-protocol.guard.js +9 -8
- package/server/applications/webdav/guards/webdav-protocol.guard.js.map +1 -1
- package/server/applications/webdav/guards/webdav-protocol.guard.spec.js +1 -1
- package/server/applications/webdav/guards/webdav-protocol.guard.spec.js.map +1 -1
- package/server/applications/webdav/interfaces/webdav.interface.js.map +1 -1
- package/server/applications/webdav/services/webdav-methods.service.js +40 -17
- package/server/applications/webdav/services/webdav-methods.service.js.map +1 -1
- package/server/applications/webdav/services/webdav-methods.service.spec.js +2157 -1289
- package/server/applications/webdav/services/webdav-methods.service.spec.js.map +1 -1
- package/server/applications/webdav/utils/webdav.js +8 -4
- package/server/applications/webdav/utils/webdav.js.map +1 -1
- package/server/applications/webdav/webdav.controller.js +4 -4
- package/server/applications/webdav/webdav.controller.js.map +1 -1
- package/server/authentication/guards/auth-token-access.guard.js +8 -3
- package/server/authentication/guards/auth-token-access.guard.js.map +1 -1
- package/server/authentication/services/auth-methods/auth-method-two-fa.service.js +1 -1
- package/server/authentication/services/auth-methods/auth-method-two-fa.service.js.map +1 -1
- package/server/authentication/services/auth-methods/auth-method-two-fa.service.spec.js +350 -4
- package/server/authentication/services/auth-methods/auth-method-two-fa.service.spec.js.map +1 -1
- package/server/configuration/config.environment.js +5 -1
- package/server/configuration/config.environment.js.map +1 -1
- package/server/configuration/config.interfaces.js.map +1 -1
- package/static/3rdpartylicenses.txt +507 -507
- package/static/assets/pdfjs/build/pdf.mjs +93 -33
- package/static/assets/pdfjs/build/pdf.mjs.map +1 -1
- package/static/assets/pdfjs/build/pdf.sandbox.mjs +3 -3
- package/static/assets/pdfjs/build/pdf.sandbox.mjs.map +1 -1
- package/static/assets/pdfjs/build/pdf.worker.mjs +166 -54
- package/static/assets/pdfjs/build/pdf.worker.mjs.map +1 -1
- package/static/assets/pdfjs/version +1 -1
- package/static/assets/pdfjs/web/images/checkmark.svg +5 -0
- package/static/assets/pdfjs/web/images/pages_closeButton.svg +3 -0
- package/static/assets/pdfjs/web/images/pages_selected.svg +7 -0
- package/static/assets/pdfjs/web/images/pages_viewArrow.svg +3 -0
- package/static/assets/pdfjs/web/images/pages_viewButton.svg +3 -0
- package/static/assets/pdfjs/web/locale/be/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/bs/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/cs/viewer.ftl +4 -6
- package/static/assets/pdfjs/web/locale/cy/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/da/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/de/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/dsb/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/el/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/en-CA/viewer.ftl +6 -2
- package/static/assets/pdfjs/web/locale/en-GB/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/en-US/viewer.ftl +82 -17
- package/static/assets/pdfjs/web/locale/eo/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/es-AR/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/es-CL/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/es-ES/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/es-MX/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/eu/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/fi/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/fr/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/fur/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/fy-NL/viewer.ftl +3 -5
- package/static/assets/pdfjs/web/locale/gn/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/he/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/hr/viewer.ftl +66 -0
- package/static/assets/pdfjs/web/locale/hsb/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/hu/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/hy-AM/viewer.ftl +3 -8
- package/static/assets/pdfjs/web/locale/ia/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/id/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/is/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/it/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/ja/viewer.ftl +0 -14
- package/static/assets/pdfjs/web/locale/ka/viewer.ftl +4 -6
- package/static/assets/pdfjs/web/locale/kab/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/kk/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/ko/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/nb-NO/viewer.ftl +1 -3
- package/static/assets/pdfjs/web/locale/nl/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/nn-NO/viewer.ftl +4 -2
- package/static/assets/pdfjs/web/locale/pa-IN/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/pl/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/pt-BR/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/pt-PT/viewer.ftl +35 -0
- package/static/assets/pdfjs/web/locale/rm/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/ro/viewer.ftl +4 -6
- package/static/assets/pdfjs/web/locale/ru/viewer.ftl +3 -5
- package/static/assets/pdfjs/web/locale/sk/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/sl/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/sq/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/sv-SE/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/tg/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/th/viewer.ftl +2 -2
- package/static/assets/pdfjs/web/locale/tr/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/vi/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/zh-CN/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/zh-TW/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/viewer.css +1778 -835
- package/static/assets/pdfjs/web/viewer.html +167 -86
- package/static/assets/pdfjs/web/viewer.mjs +1106 -801
- package/static/assets/pdfjs/web/viewer.mjs.map +1 -1
- package/static/chunk-27V66YJV.js +2 -0
- package/static/{chunk-WJYVS27M.js → chunk-27Z3SYRL.js} +1 -1
- package/static/{chunk-NFIES7BC.js → chunk-2RWLNKZH.js} +1 -1
- package/static/chunk-2YQ4SX3A.js +13 -0
- package/static/{chunk-GENTF6JM.js → chunk-3JYMJQYT.js} +1 -1
- package/static/chunk-3QTROEHV.js +1 -0
- package/static/{chunk-ZPI7RQ2S.js → chunk-3RPUQ22U.js} +1 -1
- package/static/{chunk-R6VB3INJ.js → chunk-3WZ6F3LC.js} +1 -1
- package/static/chunk-3ZLBVUCX.js +2 -0
- package/static/{chunk-5HCVWZMA.js → chunk-45AZ6ZML.js} +1 -1
- package/static/chunk-46TJLPJY.js +1 -0
- package/static/chunk-4NIYCYRS.js +2 -0
- package/static/{chunk-XXYMVRSH.js → chunk-4TPFERL6.js} +1 -1
- package/static/{chunk-CAZSNVMS.js → chunk-5O66CLTD.js} +1 -1
- package/static/chunk-6OEOADR6.js +1 -0
- package/static/chunk-6WMXMIE4.js +1 -0
- package/static/{chunk-NK2NMAJI.js → chunk-7VRYTDX4.js} +1 -1
- package/static/{chunk-ASBPYTLT.js → chunk-ARS47O5X.js} +1 -1
- package/static/chunk-B6HQYQYG.js +1 -0
- package/static/chunk-BCN4T5DO.js +2 -0
- package/static/{chunk-PKU4IIIR.js → chunk-CCZWPM7Q.js} +1 -1
- package/static/{chunk-QUSS6SUC.js → chunk-CMNMPG6Z.js} +1 -1
- package/static/{chunk-GDPJRUVU.js → chunk-CSVPAZHK.js} +1 -1
- package/static/{chunk-BJARRIS6.js → chunk-D55YR5X7.js} +4 -4
- package/static/{chunk-Z6RJZIDG.js → chunk-D5FQ72R4.js} +1 -1
- package/static/{chunk-4DF2SQD4.js → chunk-DGCVA6BM.js} +1 -1
- package/static/{chunk-TVJQXN73.js → chunk-DVCN3P7Q.js} +1 -1
- package/static/chunk-E32J777S.js +5 -0
- package/static/{chunk-5NHB7SV3.js → chunk-FIUF2JM4.js} +1 -1
- package/static/{chunk-RJOHDAPM.js → chunk-G3PL6YX3.js} +1 -1
- package/static/chunk-G7RZN7HN.js +1 -0
- package/static/{chunk-DDRGLHOP.js → chunk-GQHXYX6Z.js} +1 -1
- package/static/{chunk-5HYSNQR4.js → chunk-GWRAGN3M.js} +1 -1
- package/static/{chunk-ZC5ZDCDC.js → chunk-GXWGB7WO.js} +1 -1
- package/static/{chunk-25PWAXTJ.js → chunk-HGODIZTV.js} +1 -1
- package/static/{chunk-4KXJ6C4N.js → chunk-HZAB6F4Q.js} +1 -1
- package/static/chunk-I3FR3A45.js +1 -0
- package/static/{chunk-A6J6SOM6.js → chunk-I5SPA4G2.js} +1 -1
- package/static/{chunk-TGHBDJZA.js → chunk-IMFO2MI7.js} +1 -1
- package/static/{chunk-CURVLK7L.js → chunk-JNTNMIUH.js} +1 -1
- package/static/chunk-JRXG43AA.js +2 -0
- package/static/{chunk-XAIOGRBO.js → chunk-KAUCN24H.js} +1 -1
- package/static/chunk-KDUAB76O.js +1 -0
- package/static/chunk-KPOQLDWF.js +1 -0
- package/static/{chunk-HE6EDXWI.js → chunk-KWFELZTM.js} +1 -1
- package/static/{chunk-2CAAJBRO.js → chunk-L3BIP4AA.js} +1 -1
- package/static/{chunk-U75PLYIJ.js → chunk-LGIVVJDD.js} +1 -1
- package/static/{chunk-JEVBUJQ4.js → chunk-LNLBIJZD.js} +1 -1
- package/static/chunk-LTJNLOX2.js +1 -0
- package/static/{chunk-SDR3UG2F.js → chunk-LZUHREOF.js} +1 -1
- package/static/{chunk-VO4WVT6K.js → chunk-NIR4YE2E.js} +1 -1
- package/static/{chunk-S6YKBWJE.js → chunk-NJJURHX4.js} +1 -1
- package/static/chunk-NNZWSNAW.js +1 -0
- package/static/chunk-NWKBB7J4.js +1 -0
- package/static/chunk-O3YLAEVE.js +3 -0
- package/static/chunk-OUHCDDT6.js +1 -0
- package/static/{chunk-ZRBLCAOK.js → chunk-PDG7DOEF.js} +1 -1
- package/static/chunk-POUWUMC4.js +1 -0
- package/static/{chunk-YTBSB2GE.js → chunk-PPJCVBJH.js} +1 -1
- package/static/{chunk-K3MOXDU5.js → chunk-PQZLR4P3.js} +1 -1
- package/static/chunk-PVYVY3GD.js +1 -0
- package/static/chunk-Q5X5TPAG.js +1 -0
- package/static/{chunk-LFAQLJZK.js → chunk-QHJT5H4M.js} +1 -1
- package/static/{chunk-A7DSX7VP.js → chunk-R4VMWCM5.js} +1 -1
- package/static/{chunk-27XEAHMV.js → chunk-R7PLNX75.js} +1 -1
- package/static/chunk-RJULB733.js +1 -0
- package/static/{chunk-MBFMTBVJ.js → chunk-RNVPQQKT.js} +5 -5
- package/static/chunk-RTNEBRKJ.js +1 -0
- package/static/{chunk-FXM7XXWA.js → chunk-S3TTWPQA.js} +1 -1
- package/static/{chunk-6VJI4X2A.js → chunk-SDJNZULP.js} +1 -1
- package/static/chunk-SNOOCDJD.js +1 -0
- package/static/chunk-T42BV6TR.js +1 -0
- package/static/{chunk-4OV3SAUS.js → chunk-TNCKNU6I.js} +1 -1
- package/static/{chunk-2LHHXDD5.js → chunk-ULSPQ3HP.js} +1 -1
- package/static/{chunk-4EUHBTWV.js → chunk-UOK3LKSX.js} +1 -1
- package/static/{chunk-7NI353LS.js → chunk-VD5JHSDS.js} +1 -1
- package/static/{chunk-YXWF2DGF.js → chunk-XBKCQCBI.js} +1 -1
- package/static/{chunk-KBWK65KM.js → chunk-XEWLBWFF.js} +1 -1
- package/static/{chunk-FLPZB3OX.js → chunk-XTVNHFKX.js} +1 -1
- package/static/chunk-ZCSHU3D7.js +1 -0
- package/static/{chunk-FRBTL2ER.js → chunk-ZEJLIGAY.js} +1 -1
- package/static/{chunk-7H5O4BLV.js → chunk-ZHOE5VEY.js} +1 -1
- package/static/chunk-ZOMRIN3G.js +2 -0
- package/static/index.html +2 -2
- package/static/main-YKDNJ7LK.js +11 -0
- package/static/{styles-S5HVK4H5.css → styles-XLLEY5Y3.css} +1 -1
- package/server/applications/files/constants/only-office.js +0 -531
- package/server/applications/files/constants/only-office.js.map +0 -1
- package/server/applications/files/decorators/only-office-environment.decorator.js.map +0 -1
- package/server/applications/files/files-only-office.controller.js.map +0 -1
- package/server/applications/files/files-only-office.controller.spec.js.map +0 -1
- package/server/applications/files/guards/files-only-office.guard.js.map +0 -1
- package/server/applications/files/guards/files-only-office.guard.spec.js.map +0 -1
- package/server/applications/files/guards/files-only-office.strategy.js.map +0 -1
- package/server/applications/files/interfaces/only-office-config.interface.js.map +0 -1
- package/server/applications/files/services/files-only-office-manager.service.js.map +0 -1
- package/server/applications/files/services/files-only-office-manager.service.spec.js +0 -58
- package/server/applications/files/services/files-only-office-manager.service.spec.js.map +0 -1
- package/static/chunk-2XY4PMI5.js +0 -1
- package/static/chunk-33WFRCUP.js +0 -1
- package/static/chunk-3LVFDMTN.js +0 -1
- package/static/chunk-42L6C5MT.js +0 -1
- package/static/chunk-5WCQBTXW.js +0 -1
- package/static/chunk-A7R246NW.js +0 -1
- package/static/chunk-BSB4VROD.js +0 -2
- package/static/chunk-DHFQIFOF.js +0 -1
- package/static/chunk-DRHPEERW.js +0 -2
- package/static/chunk-FCGTI42I.js +0 -1
- package/static/chunk-H4RLHI3Y.js +0 -1
- package/static/chunk-ITVA26X2.js +0 -2
- package/static/chunk-IUJ4IK26.js +0 -1
- package/static/chunk-L3PDWJZ3.js +0 -3
- package/static/chunk-LBXOAKBD.js +0 -1
- package/static/chunk-LZKI5P5T.js +0 -1
- package/static/chunk-MYM43ENO.js +0 -1
- package/static/chunk-MZBO5PAR.js +0 -1
- package/static/chunk-NAH4V2R6.js +0 -2
- package/static/chunk-O7UXVNR2.js +0 -1
- package/static/chunk-PCFH5HCI.js +0 -2
- package/static/chunk-SRBOO7AO.js +0 -1
- package/static/chunk-UUX3M6DC.js +0 -1
- package/static/chunk-VJ2HWQRJ.js +0 -5
- package/static/chunk-VZPCXSRG.js +0 -2
- package/static/chunk-W72JYHOH.js +0 -1
- package/static/chunk-XHQEF2IX.js +0 -1
- package/static/chunk-XKEBQNQJ.js +0 -1
- package/static/chunk-ZERBTNFW.js +0 -13
- package/static/main-FE6GWZXU.js +0 -11
- /package/static/assets/pdfjs/web/images/{toolbarButton-sidebarToggle.svg → toolbarButton-viewsManagerToggle.svg} +0 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import"./chunk-KAVP6UXH.js";var a="Autentica\xE7\xE3o",r="Usu\xE1rio",i="Senha",s="Confirmar",n="Cancelar",t="Fechar",d="Abrir",c="Filtrar",l="Filtros",u="pesquisar",p="Pesquisar",m="Ver",h="Nenhuma tarefa",v="{{ nb }} tarefa conclu\xEDda",f="{{ nb }} tarefas conclu\xEDdas",g="{{ nba }} tarefa em andamento de {{ nb }}",b="{{ nba }} tarefas em andamento de {{ nb }}",y="{{nb}} elemento(s)",w="{{nb}} a\xE7\xE3o(\xF5es)",S="{{ nb }} nova mensagem",x="{{ nb }} novas mensagens",A="{{ nb }} notifica\xE7\xE3o n\xE3o lida",C="{{ nb }} notifica\xE7\xF5es n\xE3o lidas",E="Aplicativo",z="aplicativo",q="Notifica\xE7\xE3o",T="Notifica\xE7\xF5es",k="Evento",N="Arquivo",D="Arquivos",O="Pessoais",P="Externo",U="Grupos",_="Grupo",L="grupo",F="grupos",M="Vis\xEDvel",R="Privado",G="Isolado",V="Adicionar",j="Administrador",I="Administra\xE7\xE3o",Y="Usu\xE1rio",W="usu\xE1rio",B="Usu\xE1rios",Q="usu\xE1rios",H="conta",K="Conta",J="E-mail",X="Status",Z="Fun\xE7\xE3o",$="IP",ee="Visto",oe="Conex\xE3o",ae="Conex\xF5es",re="Espa\xE7o dispon\xEDvel baixo ( {{ nb }}% )",ie="online",se="Ilimitado",ne="membro",te="membros",de="Membro",ce="Membros",le="Gerente",ue="gerente",pe="Gerentes",me="Gerar",he="Importar",ve="Configura\xE7\xE3o",fe="Aplicativos",ge="aplicativos",be="Avatar",ye="Atualizar",we="Idioma",Se="In\xEDcio",xe="Recentes",Ae="recentes",Ce="Lixeira",Ee="Compartilhamentos",ze="Compartilhar",qe="compartilhamentos",Te="compartilhado",ke="Acesso ao espa\xE7o pessoal",Ne="Acesso aos espa\xE7os",De="Administra\xE7\xE3o de espa\xE7os",Oe="Acesso aos compartilhamentos",Pe="Administra\xE7\xE3o de compartilhamentos",Ue="Administra\xE7\xE3o de convidados",_e="Administra\xE7\xE3o de grupos pessoais",Le="Acesso pelo aplicativo de desktop",Fe="Sincroniza\xE7\xE3o pelo aplicativo de desktop",Me="Acesso WebDAV",Re="WebDAV",Ge="Espa\xE7o",Ve="Espa\xE7os",je="espa\xE7os",Ie="ancorou",Ye="desancorou",We="Localiza\xE7\xE3o",Be="Ancorado",Qe="Configura\xE7\xF5es",He="Op\xE7\xF5es",Ke="Nome",Je="Baixar",Xe="Mover",Ze="Copiar",$e="Renomear",eo="Editar",oo="Remover",ao="\xC1rea de transfer\xEAncia",ro="Atualizar",io="Esvaziar",so="Lista",no="Exibi\xE7\xE3o",to="Deseja mover <b>{{arg}}</b> para a lixeira?",co="Deseja excluir <b>{{arg}}</b> permanentemente?",lo="Deseja mover estes <b>{{arg}} arquivos</b> para a lixeira?",uo="Deseja excluir estes <b>{{arg}} arquivos</b> permanentemente?",po="sincroniza\xE7\xE3o",mo="Sincroniza\xE7\xE3o",ho="Sincroniza\xE7\xF5es",vo="Sincronizar",fo="Sync",go="Sincronizado",bo="Comprimir",yo="Descomprimir",wo="Info",So="Tamanho",xo="Modificado",Ao="modificado",Co="Tarefas",Eo="Texto",zo="Elementos",qo="Novo",To="Pasta",ko="pasta",No="arquivo",Do="arquivos",Oo="diret\xF3rio",Po="diret\xF3rios",Uo="Total",_o="nenhum item selecionado",Lo="{{ nb }} item selecionado",Fo="{{ nb }} itens selecionados",Mo="item",Ro="itens",Go="criar",Vo="escrever",jo="mover",Io="excluir",Yo="modificar",Wo="compartilhamento",Bo="Link",Qo="link",Ho="Links",Ko="links",Jo="Convidado",Xo="Convidados",Zo="convidado",$o="convidados",ea="Expirado",oa="expirado",aa="nenhum",ra="Permiss\xF5es",ia="Propriet\xE1rio",sa="Eu",na="Compartilhado",ta="Criado",da="Data",ca="Caminho",la="ativo",ua="Ativo",pa="suspenso",ma="Tipo",ha="Descri\xE7\xE3o",va="Visibilidade",fa="Desconhecido",ga="Expira\xE7\xE3o",ba="Acesso",ya="Acessado",wa="Comentar",Sa="Coment\xE1rios",xa="coment\xE1rios",Aa="comentou",Ca="sim",Ea="n\xE3o",za="Cliente",qa="Clientes",Ta="dispon\xEDvel",ka="ocupado",Na="ausente",Da="desconectado",Oa="sair",Pa="dias",Ua="dia",_a="Excluir",La="Agendador",Fa="paralelo",Ma="sequencial",Ra="Transfer\xEAncias",Ga="Simular",Va="Redefinir",ja="Navegar",Ia="A\xE7\xE3o",Ya="Adicionado",Wa="Removido",Ba="Copiado",Qa="Movido",Ha="Filtrado",Ka="Erro",Ja="Servidor",Xa="Dire\xE7\xE3o",Za="Conflito",$a="recente",er="Origem",or="Destino",ar="Modo",rr="Sequencialmente",ir="Ass\xEDncronamente",sr="r\xE1pido",nr="seguro",tr="ativado",dr="Ativar",cr="desativado",lr="Desativar",ur="horas",pr="minutos",mr="dias",hr="ambos",vr="nunca",fr="Assistente",gr="Pr\xF3ximo",br="Anterior",yr="Conclu\xEDdo",wr="para",Sr="Reposit\xF3rio",xr="p\xFAblico",Ar="local",Cr="remoto",Er="Site",zr="Documenta\xE7\xE3o",qr="Vers\xF5es",Tr="Seguran\xE7a",kr="Gerenciar",Nr="Deseja renomear <b>{{ old }}</b> para <b>{{ new }}</b>?",Dr="Salvar",Or="Desfazer",Pr="Refazer",Ur="eu",_r="Desbloquear",Lr="Bloqueio",Fr="Exclusivo",Mr="Tela cheia",Rr="Dimens\xF5es",Gr="Prefer\xEAncias",Vr={"Sign-in to your account":"Fa\xE7a login na sua conta","Wrong login or password":"Usu\xE1rio ou senha incorretos","Authentication service error":"Erro do servi\xE7o de autentica\xE7\xE3o","Account locked":"Conta bloqueada","Account is not allowed":"Conta n\xE3o autorizada","Account matching error":"Erro de correspond\xEAncia de conta",Authentication:a,"Sign in":"Entrar",Login:r,Password:i,"Login or Email":"Usu\xE1rio ou e-mail","Login already used":"Usu\xE1rio j\xE1 utilizado","You are already logged in":"Voc\xEA j\xE1 est\xE1 conectado","Name already used":"Nome j\xE1 utilizado","Token has expired":"O token expirou",Confirm:s,Cancel:n,Close:t,Open:d,"Server connection error":"Erro de conex\xE3o com o servidor",Filter:c,Filters:l,search:u,Search:p,"Search for content":"Pesquisar conte\xFAdo","Search for files":"Pesquisar arquivos","Full-text search":"Pesquisa de texto completo","Full-text search is disabled":"A pesquisa de texto completo est\xE1 desativada","Type to search for users or groups to add":"Digite para procurar usu\xE1rios ou grupos para adicionar","Type to search for groups to add":"Digite para procurar grupos para adicionar","Type to search for users to add":"Digite para procurar usu\xE1rios para adicionar","Type to search for managers to add":"Digite para procurar gerentes para adicionar","Member since":"Membro desde","Windows Manager":"Gerenciador de janelas","Mark as read":"Marcar como lido",See:m,no_task:h,one_task:v,nb_tasks:f,one_active_task:g,nb_active_tasks:b,nb_elements:y,nb_actions:w,one_message:S,nb_messages:x,one_notification:A,nb_notifications:C,Application:E,application:z,"application and email":"aplicativo e e-mail",Notification:q,Notifications:T,Event:k,File:N,Files:D,"Personal files":"Arquivos pessoais",Personal:O,External:P,"Share status":"Status do compartilhamento","Share description":"Descri\xE7\xE3o do compartilhamento","No recent files":"Nenhum arquivo recente",Groups:U,Group:_,group:L,"New personal group":"Novo grupo pessoal","Edit personal group":"Editar grupo pessoal","personal group":"grupo pessoal","Personal group":"Grupo pessoal","Personal groups":"Grupos pessoais",groups:F,"Parent group":"Grupo pai","Group updated":"Grupo atualizado","Group created":"Grupo criado","Group not found":"Grupo n\xE3o encontrado","Group error":"Erro do grupo","Set as group manager":"Definir como gerente do grupo","As a manager, the user will be able to manage the group and its members.":"Como gerente, o usu\xE1rio poder\xE1 gerenciar o grupo e seus membros.","As a manager, the user will be able to manage group members but not group properties.":`Como gerente, o usu\xE1rio poder\xE1 gerenciar os membros do grupo, mas n\xE3o as propriedades do grupo.
|
|
2
|
+
`,Visible:M,Private:R,Isolated:G,"Select the parent group":"Selecionar o grupo pai","from the group":"do grupo","New group":"Novo grupo","Edit group":"Editar grupo","Leave group":"Sair do grupo","Delete group":"Excluir grupo","Remove from group":"Remover do grupo","Group must have at least one manager":"O grupo deve ter pelo menos um gerente","The group was left":"O grupo foi abandonado","The group was not left":"O grupo n\xE3o foi abandonado","will be left, you will no longer be a member of this group":"ser\xE1 abandonado, voc\xEA n\xE3o ser\xE1 mais membro deste grupo","All users can see this group.":"Todos os usu\xE1rios podem ver este grupo.","Users who are not members of this group cannot see it.":"Os usu\xE1rios que n\xE3o s\xE3o membros deste grupo n\xE3o podem v\xEA-lo.","The group is not visible, its members cannot see it and cannot see each other.":"O grupo n\xE3o \xE9 vis\xEDvel, seus membros n\xE3o podem v\xEA-lo nem ver uns aos outros.",Add:V,"Add members":"Adicionar membros","See members":"Ver membros",Administrator:j,Administration:I,User:Y,user:W,Users:B,users:Q,"New user":"Novo usu\xE1rio",account:H,Account:K,"Account status":"Status da conta",Email:J,"Email already used":"E-mail j\xE1 utilizado","First name":"Nome","Last name":"Sobrenome","Full name":"Nome completo",Status:X,Role:Z,IP:$,"IP Addresses":"Endere\xE7os IP",Seen:ee,Connection:oe,Connections:ae,"Confirm deletion":"Confirmar exclus\xE3o","Confirm permanent deletion of data":"Confirmar a exclus\xE3o permanente dos dados","Space and data will be deleted in":"O espa\xE7o e os dados ser\xE3o exclu\xEDdos em","Space is disabled":"O espa\xE7o est\xE1 desativado","Storage Space":"Espa\xE7o de armazenamento","Storage Quota":"Cota de armazenamento","Storage Usage":"Uso do armazenamento","Space status":"Estado do espa\xE7o","Storage quota exceeded":"A cota de armazenamento foi excedida","Storage quota will be exceeded":"A cota de armazenamento ser\xE1 excedida","No more space available":"Sem mais espa\xE7o dispon\xEDvel",available_space_is_low:re,online:ie,"Online users":"Usu\xE1rios online",Unlimited:se,member:ne,members:te,Member:de,Members:ce,Manager:le,manager:ue,Managers:pe,"At least one manager is required":"\xC9 necess\xE1rio pelo menos um gerente",Generate:me,Import:he,Configuration:ve,Applications:fe,applications:ge,"Permissions inherited from groups":"Permiss\xF5es herdadas dos grupos","Only the group will be deleted, the members will no longer be part of it.":"Somente o grupo ser\xE1 exclu\xEDdo, os membros n\xE3o far\xE3o mais parte dele.",Avatar:be,Update:ye,"current password":"senha atual","new password":"nova senha","Change me !":"Mude-me!","Current password missing !":"Senha atual ausente!","New password missing !":"Nova senha ausente!","New password must have 8 characters minimum":"A nova senha deve ter no m\xEDnimo 8 caracteres","Current password does not match":"A senha atual n\xE3o confere","Password has been updated":"A senha foi atualizada","Unable to update password":"N\xE3o \xE9 poss\xEDvel atualizar a senha","Bad password":"Senha incorreta","too many login attempts":"muitas tentativas de login",Language:we,"Language updated":"Idioma atualizado","Unable to update language":"N\xE3o \xE9 poss\xEDvel atualizar o idioma","Notification preference updated":"Prefer\xEAncia de notifica\xE7\xE3o atualizada","Full-text search preference updated":"Prefer\xEAncia de pesquisa de texto completo atualizada","Unable to update notification preference":"N\xE3o \xE9 poss\xEDvel atualizar a prefer\xEAncia de notifica\xE7\xE3o","Unable to update full-text search preference":"N\xE3o \xE9 poss\xEDvel atualizar a prefer\xEAncia de pesquisa de texto completo","Unable to open document":"N\xE3o \xE9 poss\xEDvel abrir o documento","Unable to save document":"N\xE3o \xE9 poss\xEDvel salvar o documento",Home:Se,Recents:xe,recents:Ae,Trash:Ce,"trash bins":"lixeiras",Shares:Ee,Share:ze,shares:qe,shared:Te,personal_space:ke,spaces_access:Ne,spaces_admin:De,shares_access:Oe,shares_admin:Pe,guests_admin:Ue,personal_groups_admin:_e,desktop_app_access:Le,desktop_app_sync:Fe,webdav_access:Me,"Create share":"Criar compartilhamento","Edit share":"Editar compartilhamento","Delete share":"Excluir compartilhamento","Child shares":"Compartilhamentos filhos",webdav:Re,"Share is disabled":"O compartilhamento est\xE1 desativado",Space:Ge,Spaces:Ve,spaces:je,"Space name":"Nome do espa\xE7o","New space":"Novo espa\xE7o","Create a new space":"Criar um novo espa\xE7o","Create space":"Criar espa\xE7o","Edit space":"Editar espa\xE7o","Delete space":"Excluir espa\xE7o","Create a new share":"Criar um novo compartilhamento","Type to search for space to select":"Digite para procurar o espa\xE7o a selecionar","Anchor to a space":"Ancorar a um espa\xE7o","Anchor files to a space":"Ancorar arquivos a um espa\xE7o","You have been invited to join this space":"Voc\xEA foi convidado a participar deste espa\xE7o","You have been invited to join this share":"Voc\xEA foi convidado a participar deste compartilhamento","Shared with others":"Compartilhado com outros","With others":"Com outros","Shared with me":"Compartilhado comigo","With me":"Comigo","Shared via links":"Compartilhado por links","Via links":"Por links","Shared from":"Compartilhado de","share with you this":"compartilha com voc\xEA este","shared with you":"compartilhou com voc\xEA","no longer share with you":"n\xE3o compartilha mais com voc\xEA","You now have access to the space":"Agora voc\xEA tem acesso ao espa\xE7o","You no longer have access to the space":"Voc\xEA n\xE3o tem mais acesso ao espa\xE7o","This space has been permanently deleted":"Este espa\xE7o foi exclu\xEDdo permanentemente","You now have access to the share":"Agora voc\xEA tem acesso ao compartilhamento","You no longer have access to the share":"Voc\xEA n\xE3o tem mais acesso ao compartilhamento","You are no longer a member of the parent share, your child share has been deleted":"Voc\xEA n\xE3o \xE9 mais membro do compartilhamento pai; seu compartilhamento filho foi exclu\xEDdo",anchored:Ie,unanchored:Ye,"Share not found":"Compartilhamento n\xE3o encontrado","Go to":"Ir para",Location:We,"Name and location are required":"Nome e localiza\xE7\xE3o s\xE3o obrigat\xF3rios","Parent location already exists in files":"A localiza\xE7\xE3o pai j\xE1 existe nos arquivos","Check the location":"Verificar a localiza\xE7\xE3o","Location not found":"Localiza\xE7\xE3o n\xE3o encontrada","Forbidden resource":"Localiza\xE7\xE3o n\xE3o autorizada","Resource already exists":"O item j\xE1 existe","The location does not exist":"A localiza\xE7\xE3o n\xE3o existe","The location is not readable":"A localiza\xE7\xE3o n\xE3o \xE9 leg\xEDvel","The location is not writeable":"A localiza\xE7\xE3o n\xE3o \xE9 grav\xE1vel","The location is a directory":"A localiza\xE7\xE3o \xE9 um diret\xF3rio","The file is locked":"O arquivo est\xE1 bloqueado","This access is protected by a password":"Este acesso est\xE1 protegido por senha","You do not have share permission":"Voc\xEA n\xE3o tem permiss\xE3o para compartilhar","You can not share a space":"Voc\xEA n\xE3o pode compartilhar um espa\xE7o","You can not remove an anchored file":"Voc\xEA n\xE3o pode remover um arquivo ancorado","You are not allowed to write here":"Voc\xEA n\xE3o est\xE1 autorizado a escrever aqui","You are not allowed to do this action":"Voc\xEA n\xE3o est\xE1 autorizado a realizar esta a\xE7\xE3o","You can not move an anchored file":"Voc\xEA n\xE3o pode mover um arquivo ancorado","You can not move a locked file":"Voc\xEA n\xE3o pode mover um arquivo bloqueado",Anchored:Be,"Anchored by":"Ancorado por","Manage my anchored files":"Gerenciar meus arquivos ancorados","You have no files anchored on this space":"Voc\xEA n\xE3o tem arquivos ancorados neste espa\xE7o","An anchored file already has this name":"Um arquivo ancorado j\xE1 tem este nome",Settings:Qe,Options:He,Name:Ke,Download:Je,"Download done":"Download conclu\xEDdo","Download failed":"Falha no download","Upload done":"Envio conclu\xEDdo","Upload failed":"Falha no envio","Copy \xB7 Move":"Copiar \xB7 Mover",Move:Xe,"Move done":"Movimenta\xE7\xE3o conclu\xEDda","Move failed":"Falha na movimenta\xE7\xE3o","Deletion done":"Exclus\xE3o conclu\xEDda","Deletion failed":"Falha na exclus\xE3o","Creation failed":"Falha na cria\xE7\xE3o",Copy:Ze,"Copy done":"C\xF3pia conclu\xEDda","Copy failed":"Falha na c\xF3pia","Copy-Paste":"Copiar-Colar","Cut-Paste":"Recortar-Colar",Rename:$e,Edit:eo,"Share inside":"Compartilhar internamente","Share outside":"Compartilhar externamente",Remove:oo,Clipboard:ao,"Send to Clipboard":"Enviar para a \xE1rea de transfer\xEAncia","will be removed":"ser\xE1 removido",Refresh:ro,Empty:io,List:so,Display:no,"Sort by":"Ordenar por",trash_one_file:to,delete_one_file:co,trash_multiple_files:lo,delete_multiple_files:uo,"Moving to trash":"Movendo para a lixeira","Permanent deletion":"Exclus\xE3o permanente","Would you like to empty the trash ?":"Deseja esvaziar a lixeira?","All items will be permanently deleted":"Todos os itens ser\xE3o exclu\xEDdos permanentemente","Actions will be performed in the current folder":"As a\xE7\xF5es ser\xE3o realizadas na pasta atual","The client will no longer have permission to access your account and will no longer be able to synchronize.":"O cliente n\xE3o ter\xE1 mais permiss\xE3o para acessar sua conta e n\xE3o poder\xE1 mais sincronizar.","The access expires":"O acesso expira","The access has expired":"O acesso expirou","Never expires":"Nunca expira",synchronization:po,Synchronization:mo,Synchronizations:ho,Synchronize:vo,Sync:fo,"Stop synchronization":"Parar sincroniza\xE7\xE3o","Synchronize all":"Sincronizar tudo","Stop synchronizations":"Parar sincroniza\xE7\xF5es",Synced:go,"Sync already exists":"A sincroniza\xE7\xE3o j\xE1 existe","Sync was reset":"Sincroniza\xE7\xE3o redefinida","Sync deleted":"Sincroniza\xE7\xE3o exclu\xEDda","This client":"Este cliente","You are no longer synchronizing":"Voc\xEA n\xE3o est\xE1 mais sincronizando",Compress:bo,Decompress:yo,"Compress and Download":"Comprimir e baixar","Compress and Save":"Comprimir e salvar","Enable compression":"Ativar compress\xE3o","Compression done":"Compress\xE3o conclu\xEDda","Compression failed":"Falha na compress\xE3o","Decompression done":"Descompress\xE3o conclu\xEDda","Decompression failed":"Falha na descompress\xE3o","(this may take longer)":"(isso pode demorar mais)","Save in the current directory":"Salvar no diret\xF3rio atual","This name is already used":"Este nome j\xE1 est\xE1 em uso",Info:wo,Size:So,Modified:xo,modified:Ao,Tasks:Co,"Download from URL":"Baixar de uma URL","Upload files":"Enviar arquivos","Upload folders":"Enviar pastas","Folder name":"Nome da pasta","New folder":"Nova pasta","Document name":"Nome do documento","New document":"Novo documento","File name":"Nome do arquivo","File permissions":"Permiss\xF5es do arquivo",Text:Eo,"Rich Text Format":"Texto enriquecido","Forbidden characters":"Caracteres proibidos",Elements:zo,"Malformed URL":"URL malformada",New:qo,Folder:To,folder:ko,file:No,files:Do,directory:Oo,directories:Po,Total:Uo,no_selection:_o,one_selection:Lo,nb_selections:Fo,"Archive name":"Nome do arquivo compactado","Drag and drop your files here":"Arraste e solte seus arquivos aqui","The destination already exists":"O destino j\xE1 existe","This item is already selected":"Este item j\xE1 est\xE1 selecionado","Parent item is already selected":"O item pai j\xE1 est\xE1 selecionado","This file contains binary data that can not be read":"Este arquivo cont\xE9m dados bin\xE1rios que n\xE3o podem ser lidos","Navigation Tree":"\xC1rvore de navega\xE7\xE3o",item:Mo,items:Ro,create:Go,write:Vo,move:jo,delete:Io,modify:Yo,"Delete user":"Excluir usu\xE1rio","Delete all user files":"Excluir todos os arquivos do usu\xE1rio",share:Wo,"Share name":"Nome do compartilhamento","New share":"Novo compartilhamento","New share link":"Novo link de compartilhamento","New link":"Novo link","Edit children shares":"Editar compartilhamentos filhos",Link:Bo,link:Qo,Links:Ho,links:Ko,"Link copied":"Link copiado","Link created":"Link criado","Link deleted":"Link exclu\xEDdo","Link error":"Erro de link","Copy link":"Copiar link","Edit link":"Editar link","Guest Link":"Link de convidado","Guest name":"Nome do convidado","Guest email":"E-mail do convidado","Guest language":"Idioma do convidado",Guest:Jo,Guests:Xo,guest:Zo,guests:$o,"New guest":"Novo convidado","Edit guest":"Editar convidado","Guest created":"Convidado criado","Guest deleted":"Convidado exclu\xEDdo","Guest updated":"Convidado atualizado","Guest error":"Erro do convidado","Add an external location":"Adicionar uma localiza\xE7\xE3o externa","External location":"Localiza\xE7\xE3o externa","Select a file":"Selecionar um arquivo","The link is expired":"O link expirou","The link is disabled":"O link est\xE1 desativado","The link was not found":"O link n\xE3o foi encontrado",Expired:ea,expired:oa,none:aa,"The maximum number of access allowed to the link is exceeded":"O n\xFAmero m\xE1ximo de acessos permitidos ao link foi excedido","Set a password":"Definir uma senha","Enter your password":"Digite sua senha",Permissions:ra,"No permissions":"Sem permiss\xF5es",Owner:ia,Me:sa,Shared:na,Created:ta,"Created & Modified":"Criado e modificado","Creation date":"Data de cria\xE7\xE3o","Modification date":"Data de modifica\xE7\xE3o","Deactivation date":"Data de desativa\xE7\xE3o",Date:da,Path:ca,active:la,Active:ua,suspended:pa,"Unable to rename user space":"N\xE3o \xE9 poss\xEDvel renomear o espa\xE7o do usu\xE1rio","Unable to delete user space":"N\xE3o \xE9 poss\xEDvel excluir o espa\xE7o do usu\xE1rio","Unable to update user":"N\xE3o \xE9 poss\xEDvel atualizar o usu\xE1rio","Unable to update user groups":"N\xE3o \xE9 poss\xEDvel atualizar os grupos do usu\xE1rio","User created":"Usu\xE1rio criado","User updated":"Usu\xE1rio atualizado","User not found":"Usu\xE1rio n\xE3o encontrado","Edit user":"Editar usu\xE1rio","Impersonate identity":"Assumir identidade",Type:ma,Description:ha,Visibility:va,"Unknown error !":"Erro desconhecido!",Unknown:fa,Expiration:ga,"Limit access":"Limitar acessos","Current access count":"N\xFAmero atual de acessos",Access:ba,Accessed:ya,"Last access":"\xDAltimo acesso","Last accesses":"\xDAltimos acessos",Comment:wa,Comments:Sa,comments:xa,commented:Aa,"No recent comments":"Nenhum coment\xE1rio recente","Write a comment ...":"Escreva um coment\xE1rio ...",yes:Ca,no:Ea,Client:za,Clients:qa,available:Ta,busy:ka,absent:Na,offline:Da,"Session has expired":"A sess\xE3o expirou","Please sign in":"Por favor, fa\xE7a login",logout:Oa,days:Pa,day:Ua,Delete:_a,Scheduler:La,async:Fa,seq:Ma,Transfers:Ra,Simulate:Ga,Reset:Va,Browse:ja,Action:Ia,Added:Ya,Removed:Wa,Copied:Ba,Moved:Qa,Filtered:Ha,Error:Ka,Server:Ja,Direction:Xa,Conflict:Za,"Show filtered files":"Mostrar arquivos filtrados",recent:$a,Source:er,Destination:or,Mode:ar,Sequentially:rr,Asynchronously:ir,fast:sr,secure:nr,enabled:tr,Enable:dr,disabled:cr,Disable:lr,scheduler_unit_hour:ur,scheduler_unit_minute:pr,scheduler_unit_day:mr,"You must have permission to modify the server folder to choose a different sync mode":"Voc\xEA deve ter permiss\xE3o para modificar a pasta do servidor para escolher um modo de sincroniza\xE7\xE3o diferente","upload only":"enviar apenas","download only":"baixar apenas",both:hr,never:vr,"Clear events":"Limpar eventos","Events from":"Eventos de","All syncs":"Todas as sincroniza\xE7\xF5es","All events":"Todos os eventos","will be cleared":"ser\xE3o limpos","No differences":"Sem diferen\xE7as","Select a folder":"Selecionar uma pasta","The files containing":"Os arquivos contendo","The files starting":"Os arquivos come\xE7ando","The files ending":"Os arquivos terminando","Expert (Regexp)":"Especialista (Regexp)","click on the browse button":"clique no bot\xE3o navegar","with a name or pattern":"por um nome ou padr\xE3o","with the extension ('.mp3', '.avi', '.mov' ...)":"pela extens\xE3o ('.mp3', '.avi', '.mov' ...)",Wizard:fr,Next:gr,Previous:br,Done:yr,"This wizard will help you synchronize a directory on your computer with a Sync-in directory.":"Este assistente vai ajud\xE1-lo a sincronizar um diret\xF3rio do seu computador com um diret\xF3rio do Sync-in.","To begin, select a folder on your computer.":"Para come\xE7ar, selecione uma pasta no seu computador.",'You can drag the folder into the area below or click on the "Select" button.':'Voc\xEA pode arrastar a pasta para a \xE1rea abaixo ou clicar no bot\xE3o "Selecionar".',"Drop folder here":"Solte a pasta aqui","This directory is already synced":"Este diret\xF3rio j\xE1 est\xE1 sincronizado","The parent directory is already synced":"O diret\xF3rio pai j\xE1 est\xE1 sincronizado","This directory is not accessible":"Este diret\xF3rio n\xE3o \xE9 acess\xEDvel","This directory is read-only, you will not be able to modify it":"Este diret\xF3rio \xE9 somente leitura; voc\xEA n\xE3o poder\xE1 modific\xE1-lo","Please select the server directory to sync, if it doesn't exist you can create it.":"Selecione o diret\xF3rio do servidor para sincronizar; se n\xE3o existir, voc\xEA poder\xE1 cri\xE1-lo.","Double click to browse directories":"Clique duas vezes para navegar pelos diret\xF3rios","The data will be synchronized from":"Os dados ser\xE3o sincronizados de","the client folder":"a pasta do cliente","the server folder":"a pasta do servidor","(One-Way)":"(unidirecional)","(Two-Way)":"(bidirecional)",to:wr,"and from":"e de","All files created or modified in":"Todos os arquivos criados ou modificados em","will be ignored and deleted":"ser\xE3o ignorados e exclu\xEDdos","In case of conflict,":"Em caso de conflito,","the most recent files will be kept":"os arquivos mais recentes ser\xE3o mantidos","the client\u2019s files take precedence":"os arquivos do cliente t\xEAm preced\xEAncia","the server\u2019s files take precedence":"os arquivos do servidor t\xEAm preced\xEAncia","the files in":"os arquivos em","will be preferred":"ser\xE3o preferidos","Loading...":"Carregando...","No results":"Sem resultados","Download ARM64 version":"Baixar a vers\xE3o ARM64","Download Apple Silicon ARM64 version":"Baixar a vers\xE3o Apple Silicon ARM64","Download tar.gz version":"Baixar a vers\xE3o tar.gz",Repository:Sr,public:xr,local:Ar,remote:Cr,"System requirements":"Requisitos do sistema","Feature not enabled":"Funcionalidade n\xE3o habilitada",Website:Er,Documentation:zr,Versions:qr,Security:Tr,"Recovery code":"C\xF3digo de recupera\xE7\xE3o","Use a recovery code":"Usar um c\xF3digo de recupera\xE7\xE3o","Authentication code":"C\xF3digo de autentica\xE7\xE3o","Secret copied":"Segredo copiado","Recovery codes copied":"C\xF3digos de recupera\xE7\xE3o copiados","Invalid code":"C\xF3digo inv\xE1lido","Incorrect code or password":"C\xF3digo ou senha incorretos","Application Passwords":"Senhas de aplicativo","Generate a new app password":"Gerar uma nova senha de aplicativo","Generated password":"Senha gerada","This password will only be shown once after it is generated":"Esta senha ser\xE1 mostrada apenas uma vez ap\xF3s ser gerada","Password name":"Nome da senha",Manage:kr,"Manage app passwords":"Gerenciar senhas de aplicativo","Password Authentication":"Autentica\xE7\xE3o por senha","Two-Factor Authentication":"Autentica\xE7\xE3o de dois fatores","Two-Factor Authentication is enabled":"A autentica\xE7\xE3o de dois fatores est\xE1 ativada","Two-Factor Authentication is disabled":"A autentica\xE7\xE3o de dois fatores est\xE1 desativada","Scan this QR code using your authenticator app.":"Escaneie este c\xF3digo QR com seu aplicativo de autentica\xE7\xE3o.","(Such as FreeOTP, Proton Authenticator etc.)":"(Como FreeOTP, Proton Authenticator, etc.)","Or enter this secret manually":"Ou insira este segredo manualmente","Valid with your TOTP code":"Valide com seu c\xF3digo TOTP","The secret has expired":"O segredo expirou","Keep these codes in a safe place. They will allow you to access your account if you lose access to your two-factor authentication.":"Guarde estes c\xF3digos em um local seguro. Eles permitir\xE3o que voc\xEA acesse sua conta se perder o acesso \xE0 sua autentica\xE7\xE3o de dois fatores.","These recovery codes are for one-time use only and will only be displayed here once.":"Estes c\xF3digos de recupera\xE7\xE3o s\xE3o de uso \xFAnico e ser\xE3o exibidos aqui apenas uma vez.","Overwrite Existing File(s)":"Sobrescrever arquivo(s) existente(s)","Replace Existing File":"Substituir arquivo existente","Do you want to replace the existing file(s)?":"Deseja substituir o(s) arquivo(s) existente(s)?",RenameFileToExisting:Nr,Save:Dr,"Line Wrap":"Quebra de linha autom\xE1tica","Read-only":"Somente leitura","Read-write":"Leitura e escrita","Save And Exit":"Salvar e sair","Close Without Saving":"Fechar sem salvar",Undo:Or,Redo:Pr,me:Ur,"The file is locked by":"O arquivo est\xE1 bloqueado por",Unlock:_r,Lock:Lr,Exclusive:Fr,"Send an unlock request":"Enviar um pedido de desbloqueio","sends you a request to unlock the file":"lhe envia um pedido para desbloquear o arquivo","As the file owner, you can unlock the file or request the current lock owner to release it.":"Como propriet\xE1rio do arquivo, voc\xEA pode desbloquear o arquivo ou solicitar ao atual propriet\xE1rio do bloqueio que o libere.","The file is edited by":"O arquivo est\xE1 sendo editado por","A new update is available":"Est\xE1 dispon\xEDvel uma nova atualiza\xE7\xE3o",Fullscreen:Mr,Dimensions:Rr,"Start Slideshow":"Iniciar apresenta\xE7\xE3o de slides","Unable to load OnlyOffice editor":"N\xE3o foi poss\xEDvel carregar o editor OnlyOffice","The document server may be unreachable or the configuration is invalid":"O servidor de documentos pode estar inacess\xEDvel ou a configura\xE7\xE3o \xE9 inv\xE1lida","OnlyOffice editor failed to initialize":"Falha ao inicializar o editor OnlyOffice","DocsAPI not available":"DocsAPI n\xE3o est\xE1 dispon\xEDvel","Unknown OnlyOffice error":"Erro desconhecido do OnlyOffice","No editor found":"Nenhum editor encontrado","Choose which editor you want to use to open this document.":"Escolha qual editor deseja usar para abrir este documento.","Open-source office suite built on LibreOffice.":"Su\xEDte de escrit\xF3rio de c\xF3digo aberto baseada no LibreOffice.","Open-source office suite for Microsoft Office.":"Su\xEDte de escrit\xF3rio de c\xF3digo aberto para Microsoft Office.","Remember my choice for next time":"Lembrar minha escolha para a pr\xF3xima vez","Document editor":"Editor de documentos","Ask Me":"Perguntar sempre","Used when both editors support the file type.":"Usado quando ambos os editores suportam o tipo de arquivo.","Enable content indexation for personal files.":"Ativar indexa\xE7\xE3o de conte\xFAdo para ficheiros pessoais.",Preferences:Gr};export{ba as Access,ya as Accessed,K as Account,Ia as Action,ua as Active,V as Add,Ya as Added,I as Administration,j as Administrator,Be as Anchored,E as Application,fe as Applications,ir as Asynchronously,a as Authentication,be as Avatar,ja as Browse,n as Cancel,za as Client,qa as Clients,ao as Clipboard,t as Close,wa as Comment,Sa as Comments,bo as Compress,ve as Configuration,s as Confirm,Za as Conflict,oe as Connection,ae as Connections,Ba as Copied,Ze as Copy,ta as Created,da as Date,yo as Decompress,_a as Delete,ha as Description,or as Destination,Rr as Dimensions,Xa as Direction,lr as Disable,no as Display,zr as Documentation,yr as Done,Je as Download,eo as Edit,zo as Elements,J as Email,io as Empty,dr as Enable,Ka as Error,k as Event,Fr as Exclusive,ga as Expiration,ea as Expired,P as External,N as File,D as Files,c as Filter,Ha as Filtered,l as Filters,To as Folder,Mr as Fullscreen,me as Generate,_ as Group,U as Groups,Jo as Guest,Xo as Guests,Se as Home,$ as IP,he as Import,wo as Info,G as Isolated,we as Language,Bo as Link,Ho as Links,so as List,We as Location,Lr as Lock,r as Login,kr as Manage,le as Manager,pe as Managers,sa as Me,de as Member,ce as Members,ar as Mode,xo as Modified,Xe as Move,Qa as Moved,Ke as Name,qo as New,gr as Next,q as Notification,T as Notifications,d as Open,He as Options,ia as Owner,i as Password,ca as Path,ra as Permissions,O as Personal,Gr as Preferences,br as Previous,R as Private,xe as Recents,Pr as Redo,ro as Refresh,oo as Remove,Wa as Removed,$e as Rename,Nr as RenameFileToExisting,Sr as Repository,Va as Reset,Z as Role,Dr as Save,La as Scheduler,p as Search,Tr as Security,m as See,ee as Seen,rr as Sequentially,Ja as Server,Qe as Settings,ze as Share,na as Shared,Ee as Shares,Ga as Simulate,So as Size,er as Source,Ge as Space,Ve as Spaces,X as Status,fo as Sync,go as Synced,mo as Synchronization,ho as Synchronizations,vo as Synchronize,Co as Tasks,Eo as Text,Uo as Total,Ra as Transfers,Ce as Trash,ma as Type,Or as Undo,fa as Unknown,se as Unlimited,_r as Unlock,ye as Update,Y as User,B as Users,qr as Versions,va as Visibility,M as Visible,Er as Website,fr as Wizard,Na as absent,H as account,la as active,Ie as anchored,z as application,ge as applications,Fa as async,Ta as available,re as available_space_is_low,hr as both,ka as busy,Aa as commented,xa as comments,Go as create,Ua as day,Pa as days,Vr as default,Io as delete,uo as delete_multiple_files,co as delete_one_file,Le as desktop_app_access,Fe as desktop_app_sync,Po as directories,Oo as directory,cr as disabled,tr as enabled,oa as expired,sr as fast,No as file,Do as files,ko as folder,L as group,F as groups,Zo as guest,$o as guests,Ue as guests_admin,Mo as item,Ro as items,Qo as link,Ko as links,Ar as local,Oa as logout,ue as manager,Ur as me,ne as member,te as members,Ao as modified,Yo as modify,jo as move,w as nb_actions,b as nb_active_tasks,y as nb_elements,x as nb_messages,C as nb_notifications,Fo as nb_selections,f as nb_tasks,vr as never,Ea as no,_o as no_selection,h as no_task,aa as none,Da as offline,g as one_active_task,S as one_message,A as one_notification,Lo as one_selection,v as one_task,ie as online,_e as personal_groups_admin,ke as personal_space,xr as public,$a as recent,Ae as recents,Cr as remote,mr as scheduler_unit_day,ur as scheduler_unit_hour,pr as scheduler_unit_minute,u as search,nr as secure,Ma as seq,Wo as share,Te as shared,qe as shares,Oe as shares_access,Pe as shares_admin,je as spaces,Ne as spaces_access,De as spaces_admin,pa as suspended,po as synchronization,wr as to,lo as trash_multiple_files,to as trash_one_file,Ye as unanchored,W as user,Q as users,Re as webdav,Me as webdav_access,Vo as write,Ca as yes};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{Oa as a,Xa as f}from"./chunk-
|
|
1
|
+
import{Oa as a,Xa as f}from"./chunk-O3YLAEVE.js";function b(c,n,i,e){let t=f(i,".");switch(c){case"number":N(n,i,e,t);break;case"string":r(n,i,e,t);break;case"length":g(n,i,e,t);break;case"date":u(n,i,e,t);break;default:console.warn(`Sort function not handles: ${c}.`)}}function u(c,n,i,e=!1){c.sort((t,l)=>{let o=new Date(e?a(t,n):t[n]).getTime(),s=new Date(e?a(l,n):l[n]).getTime();return isNaN(o)?1:isNaN(s)?-1:o===s?0:i?o>s?1:-1:s>o?1:-1})}function r(c,n,i,e=!1){c.sort((t,l)=>{let o=e?(a(t,n)||"z").toLowerCase():t[n].toLowerCase(),s=e?(a(l,n)||"z").toLowerCase():l[n].toLowerCase();return i?o<s?1:o>s?-1:0:o<s?-1:o>s?1:0})}function g(c,n,i,e=!1){c.sort((t,l)=>{let o=e?a(t,n).length:t[n].length,s=e?a(l,n).length:l[n].length;return i?o-s:s-o})}function N(c,n,i,e=!1){c.sort((t,l)=>{let o=e?a(t,n):t[n],s=e?a(l,n):l[n];return i?o-s:s-o})}export{b as a,u as b,N as c};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{b as M,d as K}from"./chunk-
|
|
1
|
+
import{b as M,d as K}from"./chunk-G7RZN7HN.js";import{b as E,c as W}from"./chunk-SDJNZULP.js";import{ca as R,da as i,ia as D,ja as Z,la as N,sa as V,va as $,ya as A}from"./chunk-2YQ4SX3A.js";import{a as X,b as I}from"./chunk-KAVP6UXH.js";var _e=36,F=1,ge=2,b=3,C=4,he=5,ye=6,be=7,ve=8,ke=9,xe=10,Oe=11,we=12,Qe=13,Ce=14,Se=15,qe=16,Pe=17,G=18,Te=19,ne=20,ie=21,Y=22,ze=23,je=24;function q(t){return t>=65&&t<=90||t>=97&&t<=122||t>=48&&t<=57}function Ue(t){return t>=48&&t<=57||t>=97&&t<=102||t>=65&&t<=70}function g(t,e,a){for(let r=!1;;){if(t.next<0)return;if(t.next==e&&!r){t.advance();return}r=a&&!r&&t.next==92,t.advance()}}function Be(t,e){e:for(;;){if(t.next<0)return;if(t.next==36){t.advance();for(let a=0;a<e.length;a++){if(t.next!=e.charCodeAt(a))continue e;t.advance()}if(t.next==36){t.advance();return}}else t.advance()}}function Le(t,e){let a="[{<(".indexOf(String.fromCharCode(e)),r=a<0?e:"]}>)".charCodeAt(a);for(;;){if(t.next<0)return;if(t.next==r&&t.peek(1)==39){t.advance(2);return}t.advance()}}function P(t,e){for(;!(t.next!=95&&!q(t.next));)e!=null&&(e+=String.fromCharCode(t.next)),t.advance();return e}function Xe(t){if(t.next==39||t.next==34||t.next==96){let e=t.next;t.advance(),g(t,e,!1)}else P(t)}function H(t,e){for(;t.next==48||t.next==49;)t.advance();e&&t.next==e&&t.advance()}function J(t,e){for(;;){if(t.next==46){if(e)break;e=!0}else if(t.next<48||t.next>57)break;t.advance()}if(t.next==69||t.next==101)for(t.advance(),(t.next==43||t.next==45)&&t.advance();t.next>=48&&t.next<=57;)t.advance()}function ee(t){for(;!(t.next<0||t.next==10);)t.advance()}function _(t,e){for(let a=0;a<e.length;a++)if(e.charCodeAt(a)==t)return!0;return!1}var S=` \r
|
|
2
2
|
`;function se(t,e,a){let r=Object.create(null);r.true=r.false=he,r.null=r.unknown=ye;for(let n of t.split(" "))n&&(r[n]=ne);for(let n of e.split(" "))n&&(r[n]=ie);for(let n of(a||"").split(" "))n&&(r[n]=je);return r}var h="array binary bit boolean char character clob date decimal double float int integer interval large national nchar nclob numeric object precision real smallint time timestamp varchar varying ",y="absolute action add after all allocate alter and any are as asc assertion at authorization before begin between both breadth by call cascade cascaded case cast catalog check close collate collation column commit condition connect connection constraint constraints constructor continue corresponding count create cross cube current current_date current_default_transform_group current_transform_group_for_type current_path current_role current_time current_timestamp current_user cursor cycle data day deallocate declare default deferrable deferred delete depth deref desc describe descriptor deterministic diagnostics disconnect distinct do domain drop dynamic each else elseif end end-exec equals escape except exception exec execute exists exit external fetch first for foreign found from free full function general get global go goto grant group grouping handle having hold hour identity if immediate in indicator initially inner inout input insert intersect into is isolation join key language last lateral leading leave left level like limit local localtime localtimestamp locator loop map match method minute modifies module month names natural nesting new next no none not of old on only open option or order ordinality out outer output overlaps pad parameter partial path prepare preserve primary prior privileges procedure public read reads recursive redo ref references referencing relative release repeat resignal restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scroll search second section select session session_user set sets signal similar size some space specific specifictype sql sqlexception sqlstate sqlwarning start state static system_user table temporary then timezone_hour timezone_minute to trailing transaction translation treat trigger under undo union unique unnest until update usage user using value values view when whenever where while with without work write year zone ",T={backslashEscapes:!1,hashComments:!1,spaceAfterDashes:!1,slashComments:!1,doubleQuotedStrings:!1,doubleDollarQuotedStrings:!1,unquotedBitLiterals:!1,treatBitsAsBytes:!1,charSetCasts:!1,plsqlQuotingMechanism:!1,operatorChars:"*+-%<>!=&|~^/",specialVar:"?",identifierQuotes:'"',caseInsensitiveIdentifiers:!1,words:se(y,h)};function Ie(t,e,a,r){let n={};for(let s in T)n[s]=(t.hasOwnProperty(s)?t:T)[s];return e&&(n.words=se(e,a||"",r)),n}function oe(t){return new M(e=>{var a;let{next:r}=e;if(e.advance(),_(r,S)){for(;_(e.next,S);)e.advance();e.acceptToken(_e)}else if(r==36&&t.doubleDollarQuotedStrings){let n=P(e,"");e.next==36&&(e.advance(),Be(e,n),e.acceptToken(b))}else if(r==39||r==34&&t.doubleQuotedStrings)g(e,r,t.backslashEscapes),e.acceptToken(b);else if(r==35&&t.hashComments||r==47&&e.next==47&&t.slashComments)ee(e),e.acceptToken(F);else if(r==45&&e.next==45&&(!t.spaceAfterDashes||e.peek(1)==32))ee(e),e.acceptToken(F);else if(r==47&&e.next==42){e.advance();for(let n=1;;){let s=e.next;if(e.next<0)break;if(e.advance(),s==42&&e.next==47){if(n--,e.advance(),!n)break}else s==47&&e.next==42&&(n++,e.advance())}e.acceptToken(ge)}else if((r==101||r==69)&&e.next==39)e.advance(),g(e,39,!0),e.acceptToken(b);else if((r==110||r==78)&&e.next==39&&t.charSetCasts)e.advance(),g(e,39,t.backslashEscapes),e.acceptToken(b);else if(r==95&&t.charSetCasts)for(let n=0;;n++){if(e.next==39&&n>1){e.advance(),g(e,39,t.backslashEscapes),e.acceptToken(b);break}if(!q(e.next))break;e.advance()}else if(t.plsqlQuotingMechanism&&(r==113||r==81)&&e.next==39&&e.peek(1)>0&&!_(e.peek(1),S)){let n=e.peek(1);e.advance(2),Le(e,n),e.acceptToken(b)}else if(_(r,t.identifierQuotes)){let n=r==91?93:r;g(e,n,!1),e.acceptToken(Te)}else if(r==40)e.acceptToken(be);else if(r==41)e.acceptToken(ve);else if(r==123)e.acceptToken(ke);else if(r==125)e.acceptToken(xe);else if(r==91)e.acceptToken(Oe);else if(r==93)e.acceptToken(we);else if(r==59)e.acceptToken(Qe);else if(t.unquotedBitLiterals&&r==48&&e.next==98)e.advance(),H(e),e.acceptToken(Y);else if((r==98||r==66)&&(e.next==39||e.next==34)){let n=e.next;e.advance(),t.treatBitsAsBytes?(g(e,n,t.backslashEscapes),e.acceptToken(ze)):(H(e,n),e.acceptToken(Y))}else if(r==48&&(e.next==120||e.next==88)||(r==120||r==88)&&e.next==39){let n=e.next==39;for(e.advance();Ue(e.next);)e.advance();n&&e.next==39&&e.advance(),e.acceptToken(C)}else if(r==46&&e.next>=48&&e.next<=57)J(e,!0),e.acceptToken(C);else if(r==46)e.acceptToken(Ce);else if(r>=48&&r<=57)J(e,!1),e.acceptToken(C);else if(_(r,t.operatorChars)){for(;_(e.next,t.operatorChars);)e.advance();e.acceptToken(Se)}else if(_(r,t.specialVar))e.next==r&&e.advance(),Xe(e),e.acceptToken(Pe);else if(r==58||r==44)e.acceptToken(qe);else if(q(r)){let n=P(e,String.fromCharCode(r));e.acceptToken(e.next==46||e.peek(-n.length-1)==46?G:(a=t.words[n.toLowerCase()])!==null&&a!==void 0?a:G)}})}var le=oe(T),Re=K.deserialize({version:14,states:"%vQ]QQOOO#wQRO'#DSO$OQQO'#CwO%eQQO'#CxO%lQQO'#CyO%sQQO'#CzOOQQ'#DS'#DSOOQQ'#C}'#C}O'UQRO'#C{OOQQ'#Cv'#CvOOQQ'#C|'#C|Q]QQOOQOQQOOO'`QQO'#DOO(xQRO,59cO)PQQO,59cO)UQQO'#DSOOQQ,59d,59dO)cQQO,59dOOQQ,59e,59eO)jQQO,59eOOQQ,59f,59fO)qQQO,59fOOQQ-E6{-E6{OOQQ,59b,59bOOQQ-E6z-E6zOOQQ,59j,59jOOQQ-E6|-E6|O+VQRO1G.}O+^QQO,59cOOQQ1G/O1G/OOOQQ1G/P1G/POOQQ1G/Q1G/QP+kQQO'#C}O+rQQO1G.}O)PQQO,59cO,PQQO'#Cw",stateData:",[~OtOSPOSQOS~ORUOSUOTUOUUOVROXSOZTO]XO^QO_UO`UOaPObPOcPOdUOeUOfUOgUOhUO~O^]ORvXSvXTvXUvXVvXXvXZvX]vX_vX`vXavXbvXcvXdvXevXfvXgvXhvX~OsvX~P!jOa_Ob_Oc_O~ORUOSUOTUOUUOVROXSOZTO^tO_UO`UOa`Ob`Oc`OdUOeUOfUOgUOhUO~OWaO~P$ZOYcO~P$ZO[eO~P$ZORUOSUOTUOUUOVROXSOZTO^QO_UO`UOaPObPOcPOdUOeUOfUOgUOhUO~O]hOsoX~P%zOajObjOcjO~O^]ORkaSkaTkaUkaVkaXkaZka]ka_ka`kaakabkackadkaekafkagkahka~Oska~P'kO^]O~OWvXYvX[vX~P!jOWnO~P$ZOYoO~P$ZO[pO~P$ZO^]ORkiSkiTkiUkiVkiXkiZki]ki_ki`kiakibkickidkiekifkigkihki~Oski~P)xOWkaYka[ka~P'kO]hO~P$ZOWkiYki[ki~P)xOasObsOcsO~O",goto:"#hwPPPPPPPPPPPPPPPPPPPPPPPPPPx||||!Y!^!d!xPPP#[TYOZeUORSTWZbdfqT[OZQZORiZSWOZQbRQdSQfTZgWbdfqQ^PWk^lmrQl_Qm`RrseVORSTWZbdfq",nodeNames:"\u26A0 LineComment BlockComment String Number Bool Null ( ) { } [ ] ; . Operator Punctuation SpecialVar Identifier QuotedIdentifier Keyword Type Bits Bytes Builtin Script Statement CompositeIdentifier Parens Braces Brackets Statement",maxTerm:38,nodeProps:[["isolate",-4,1,2,3,19,""]],skippedNodes:[0,1,2],repeatNodeCount:3,tokenData:"RORO",tokenizers:[0,le],topRules:{Script:[0,25]},tokenPrec:0});function z(t){let e=t.cursor().moveTo(t.from,-1);for(;/Comment/.test(e.name);)e.moveTo(e.from,-1);return e.node}function x(t,e){let a=t.sliceString(e.from,e.to),r=/^([`'"\[])(.*)([`'"\]])$/.exec(a);return r?r[2]:a}function Q(t){return t&&(t.name=="Identifier"||t.name=="QuotedIdentifier")}function De(t,e){if(e.name=="CompositeIdentifier"){let a=[];for(let r=e.firstChild;r;r=r.nextSibling)Q(r)&&a.push(x(t,r));return a}return[x(t,e)]}function te(t,e){for(let a=[];;){if(!e||e.name!=".")return a;let r=z(e);if(!Q(r))return a;a.unshift(x(t,r)),e=z(r)}}function Ze(t,e){let a=Z(t).resolveInner(e,-1),r=Ve(t.doc,a);return a.name=="Identifier"||a.name=="QuotedIdentifier"||a.name=="Keyword"?{from:a.from,quoted:a.name=="QuotedIdentifier"?t.doc.sliceString(a.from,a.from+1):null,parents:te(t.doc,z(a)),aliases:r}:a.name=="."?{from:e,quoted:null,parents:te(t.doc,a),aliases:r}:{from:e,quoted:null,parents:[],empty:!0,aliases:r}}var Ne=new Set("where group having order union intersect except all distinct limit offset fetch for".split(" "));function Ve(t,e){let a;for(let n=e;!a;n=n.parent){if(!n)return null;n.name=="Statement"&&(a=n)}let r=null;for(let n=a.firstChild,s=!1,c=null;n;n=n.nextSibling){let l=n.name=="Keyword"?t.sliceString(n.from,n.to).toLowerCase():null,o=null;if(!s)s=l=="from";else if(l=="as"&&c&&Q(n.nextSibling))o=x(t,n.nextSibling);else{if(l&&Ne.has(l))break;c&&Q(n)&&(o=x(t,n))}o&&(r||(r=Object.create(null)),r[o]=De(t,c)),c=/Identifier$/.test(n.name)?n:null}return r}function $e(t,e,a){return a.map(r=>I(X({},r),{label:r.label[0]==t?r.label:t+r.label+e,apply:void 0}))}var Ae=/^\w*$/,Ee=/^[`'"\[]?\w*[`'"\]]?$/;function re(t){return t.self&&typeof t.self.label=="string"}var j=class t{constructor(e,a){this.idQuote=e,this.idCaseInsensitive=a,this.list=[],this.children=void 0}child(e){let a=this.children||(this.children=Object.create(null)),r=a[e];return r||(e&&!this.list.some(n=>n.label==e)&&this.list.push(ae(e,"type",this.idQuote,this.idCaseInsensitive)),a[e]=new t(this.idQuote,this.idCaseInsensitive))}maybeChild(e){return this.children?this.children[e]:null}addCompletion(e){let a=this.list.findIndex(r=>r.label==e.label);a>-1?this.list[a]=e:this.list.push(e)}addCompletions(e){for(let a of e)this.addCompletion(typeof a=="string"?ae(a,"property",this.idQuote,this.idCaseInsensitive):a)}addNamespace(e){Array.isArray(e)?this.addCompletions(e):re(e)?this.addNamespace(e.children):this.addNamespaceObject(e)}addNamespaceObject(e){for(let a of Object.keys(e)){let r=e[a],n=null,s=a.replace(/\\?\./g,l=>l=="."?"\0":l).split("\0"),c=this;re(r)&&(n=r.self,r=r.children);for(let l=0;l<s.length;l++)n&&l==s.length-1&&c.addCompletion(n),c=c.child(s[l].replace(/\\\./g,"."));c.addNamespace(r)}}};function ae(t,e,a,r){return new RegExp("^[a-z_][a-z_\\d]*$",r?"i":"").test(t)?{label:t,type:e}:{label:t,type:e,apply:a+t+ce(a)}}function ce(t){return t==="["?"]":t}function We(t,e,a,r,n,s){var c;let l=((c=s?.spec.identifierQuotes)===null||c===void 0?void 0:c[0])||'"',o=new j(l,!!s?.spec.caseInsensitiveIdentifiers),u=n?o.child(n):null;return o.addNamespace(t),e&&(u||o).addCompletions(e),a&&o.addCompletions(a),u&&o.addCompletions(u.list),r&&o.addCompletions((u||o).child(r).list),p=>{let{parents:v,from:B,quoted:L,empty:pe,aliases:O}=Ze(p.state,p.pos);if(pe&&!p.explicit)return null;O&&v.length==1&&(v=O[v[0]]||v);let d=o;for(let f of v){for(;!d.children||!d.children[f];)if(d==o&&u)d=u;else if(d==u&&r)d=d.child(r);else return null;let k=d.maybeChild(f);if(!k)return null;d=k}let w=d.list;if(d==o&&O&&(w=w.concat(Object.keys(O).map(f=>({label:f,type:"constant"})))),L){let f=L[0],k=ce(f),fe=p.state.sliceDoc(p.pos,p.pos+1)==k;return{from:B,to:fe?p.pos+1:void 0,options:$e(f,k,w),validFor:Ee}}else return{from:B,options:w,validFor:Ae}}}function Me(t){return t==ie?"type":t==ne?"keyword":"variable"}function Ke(t,e,a){let r=Object.keys(t).map(n=>a(e?n.toUpperCase():n,Me(t[n])));return W(["QuotedIdentifier","String","LineComment","BlockComment","."],E(r))}var Fe=Re.configure({props:[V.add({Statement:$()}),A.add({Statement(t,e){return{from:Math.min(t.from+100,e.doc.lineAt(t.from).to),to:t.to}},BlockComment(t){return{from:t.from+2,to:t.to-2}}}),R({Keyword:i.keyword,Type:i.typeName,Builtin:i.standard(i.name),Bits:i.number,Bytes:i.string,Bool:i.bool,Null:i.null,Number:i.number,String:i.string,Identifier:i.name,QuotedIdentifier:i.special(i.string),SpecialVar:i.special(i.name),LineComment:i.lineComment,BlockComment:i.blockComment,Operator:i.operator,"Semi Punctuation":i.punctuation,"( )":i.paren,"{ }":i.brace,"[ ]":i.squareBracket})]}),m=class t{constructor(e,a,r){this.dialect=e,this.language=a,this.spec=r}get extension(){return this.language.extension}configureLanguage(e,a){return new t(this.dialect,this.language.configure(e,a),this.spec)}static define(e){let a=Ie(e,e.keywords,e.types,e.builtin),r=D.define({name:"sql",parser:Fe.configure({tokenizers:[{from:le,to:oe(a)}]}),languageData:{commentTokens:{line:"--",block:{open:"/*",close:"*/"}},closeBrackets:{brackets:["(","[","{","'",'"',"`"]}}});return new t(a,r,e)}};function Ge(t,e){return{label:t,type:e,boost:-1}}function Ye(t,e=!1,a){return Ke(t.dialect.words,e,a||Ge)}function He(t){return t.schema?We(t.schema,t.tables,t.schemas,t.defaultTable,t.defaultSchema,t.dialect||U):()=>null}function Je(t){return t.schema?(t.dialect||U).language.data.of({autocomplete:He(t)}):[]}function it(t={}){let e=t.dialect||U;return new N(e.language,[Je(t),e.language.data.of({autocomplete:Ye(e,t.upperCaseKeywords,t.keywordCompletion)})])}var U=m.define({}),st=m.define({charSetCasts:!0,doubleDollarQuotedStrings:!0,operatorChars:"+-*/<>=~!@#%^&|`?",specialVar:"",keywords:y+"abort abs absent access according ada admin aggregate alias also always analyse analyze array_agg array_max_cardinality asensitive assert assignment asymmetric atomic attach attribute attributes avg backward base64 begin_frame begin_partition bernoulli bit_length blocked bom cache called cardinality catalog_name ceil ceiling chain char_length character_length character_set_catalog character_set_name character_set_schema characteristics characters checkpoint class class_origin cluster coalesce cobol collation_catalog collation_name collation_schema collect column_name columns command_function command_function_code comment comments committed concurrently condition_number configuration conflict connection_name constant constraint_catalog constraint_name constraint_schema contains content control conversion convert copy corr cost covar_pop covar_samp csv cume_dist current_catalog current_row current_schema cursor_name database datalink datatype datetime_interval_code datetime_interval_precision db debug defaults defined definer degree delimiter delimiters dense_rank depends derived detach detail dictionary disable discard dispatch dlnewcopy dlpreviouscopy dlurlcomplete dlurlcompleteonly dlurlcompletewrite dlurlpath dlurlpathonly dlurlpathwrite dlurlscheme dlurlserver dlvalue document dump dynamic_function dynamic_function_code element elsif empty enable encoding encrypted end_frame end_partition endexec enforced enum errcode error event every exclude excluding exclusive exp explain expression extension extract family file filter final first_value flag floor following force foreach fortran forward frame_row freeze fs functions fusion generated granted greatest groups handler header hex hierarchy hint id ignore ilike immediately immutable implementation implicit import include including increment indent index indexes info inherit inherits inline insensitive instance instantiable instead integrity intersection invoker isnull key_member key_type label lag last_value lead leakproof least length library like_regex link listen ln load location lock locked log logged lower mapping matched materialized max max_cardinality maxvalue member merge message message_length message_octet_length message_text min minvalue mod mode more move multiset mumps name namespace nfc nfd nfkc nfkd nil normalize normalized nothing notice notify notnull nowait nth_value ntile nullable nullif nulls number occurrences_regex octet_length octets off offset oids operator options ordering others over overlay overriding owned owner parallel parameter_mode parameter_name parameter_ordinal_position parameter_specific_catalog parameter_specific_name parameter_specific_schema parser partition pascal passing passthrough password percent percent_rank percentile_cont percentile_disc perform period permission pg_context pg_datatype_name pg_exception_context pg_exception_detail pg_exception_hint placing plans pli policy portion position position_regex power precedes preceding prepared print_strict_params procedural procedures program publication query quote raise range rank reassign recheck recovery refresh regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy regr_syy reindex rename repeatable replace replica requiring reset respect restart restore result_oid returned_cardinality returned_length returned_octet_length returned_sqlstate returning reverse routine_catalog routine_name routine_schema routines row_count row_number rowtype rule scale schema_name schemas scope scope_catalog scope_name scope_schema security selective self sensitive sequence sequences serializable server server_name setof share show simple skip slice snapshot source specific_name sqlcode sqlerror sqrt stable stacked standalone statement statistics stddev_pop stddev_samp stdin stdout storage strict strip structure style subclass_origin submultiset subscription substring substring_regex succeeds sum symmetric sysid system system_time table_name tables tablesample tablespace temp template ties token top_level_count transaction_active transactions_committed transactions_rolled_back transform transforms translate translate_regex trigger_catalog trigger_name trigger_schema trim trim_array truncate trusted type types uescape unbounded uncommitted unencrypted unlink unlisten unlogged unnamed untyped upper uri use_column use_variable user_defined_type_catalog user_defined_type_code user_defined_type_name user_defined_type_schema vacuum valid validate validator value_of var_pop var_samp varbinary variable_conflict variadic verbose version versioning views volatile warning whitespace width_bucket window within wrapper xmlagg xmlattributes xmlbinary xmlcast xmlcomment xmlconcat xmldeclaration xmldocument xmlelement xmlexists xmlforest xmliterate xmlnamespaces xmlparse xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltext xmlvalidate yes",types:h+"bigint int8 bigserial serial8 varbit bool box bytea cidr circle precision float8 inet int4 json jsonb line lseg macaddr macaddr8 money numeric pg_lsn point polygon float4 int2 smallserial serial2 serial serial4 text timetz timestamptz tsquery tsvector txid_snapshot uuid xml"}),de="accessible algorithm analyze asensitive authors auto_increment autocommit avg avg_row_length binlog btree cache catalog_name chain change changed checkpoint checksum class_origin client_statistics coalesce code collations columns comment committed completion concurrent consistent contains contributors convert database databases day_hour day_microsecond day_minute day_second delay_key_write delayed delimiter des_key_file dev_pop dev_samp deviance directory disable discard distinctrow div dual dumpfile enable enclosed ends engine engines enum errors escaped even event events every explain extended fast field fields flush force found_rows fulltext grants handler hash high_priority hosts hour_microsecond hour_minute hour_second ignore ignore_server_ids import index index_statistics infile innodb insensitive insert_method install invoker iterate keys kill linear lines list load lock logs low_priority master master_heartbeat_period master_ssl_verify_server_cert masters max max_rows maxvalue message_text middleint migrate min min_rows minute_microsecond minute_second mod mode modify mutex mysql_errno no_write_to_binlog offline offset one online optimize optionally outfile pack_keys parser partition partitions password phase plugin plugins prev processlist profile profiles purge query quick range read_write rebuild recover regexp relaylog remove rename reorganize repair repeatable replace require resume rlike row_format rtree schedule schema_name schemas second_microsecond security sensitive separator serializable server share show slave slow snapshot soname spatial sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_no_cache sql_small_result ssl starting starts std stddev stddev_pop stddev_samp storage straight_join subclass_origin sum suspend table_name table_statistics tables tablespace terminated triggers truncate uncommitted uninstall unlock upgrade use use_frm user_resources user_statistics utc_date utc_time utc_timestamp variables views warnings xa xor year_month zerofill",me=h+"bool blob long longblob longtext medium mediumblob mediumint mediumtext tinyblob tinyint tinytext text bigint int1 int2 int3 int4 int8 float4 float8 varbinary varcharacter precision datetime unsigned signed",ue="charset clear edit ego help nopager notee nowarning pager print prompt quit rehash source status system tee",ot=m.define({operatorChars:"*+-%<>!=&|^",charSetCasts:!0,doubleQuotedStrings:!0,unquotedBitLiterals:!0,hashComments:!0,spaceAfterDashes:!0,specialVar:"@?",identifierQuotes:"`",keywords:y+"group_concat "+de,types:me,builtin:ue}),lt=m.define({operatorChars:"*+-%<>!=&|^",charSetCasts:!0,doubleQuotedStrings:!0,unquotedBitLiterals:!0,hashComments:!0,spaceAfterDashes:!0,specialVar:"@?",identifierQuotes:"`",keywords:y+"always generated groupby_concat hard persistent shutdown soft virtual "+de,types:me,builtin:ue}),et="approx_count_distinct approx_percentile_cont approx_percentile_disc avg checksum_agg count count_big grouping grouping_id max min product stdev stdevp sum var varp ai_generate_embeddings ai_generate_chunks cume_dist first_value lag last_value lead percentile_cont percentile_disc percent_rank left_shift right_shift bit_count get_bit set_bit collationproperty tertiary_weights @@datefirst @@dbts @@langid @@language @@lock_timeout @@max_connections @@max_precision @@nestlevel @@options @@remserver @@servername @@servicename @@spid @@textsize @@version cast convert parse try_cast try_convert try_parse asymkey_id asymkeyproperty certproperty cert_id crypt_gen_random decryptbyasymkey decryptbycert decryptbykey decryptbykeyautoasymkey decryptbykeyautocert decryptbypassphrase encryptbyasymkey encryptbycert encryptbykey encryptbypassphrase hashbytes is_objectsigned key_guid key_id key_name signbyasymkey signbycert symkeyproperty verifysignedbycert verifysignedbyasymkey @@cursor_rows @@fetch_status cursor_status datalength ident_current ident_incr ident_seed identity sql_variant_property @@datefirst current_timestamp current_timezone current_timezone_id date_bucket dateadd datediff datediff_big datefromparts datename datepart datetime2fromparts datetimefromparts datetimeoffsetfromparts datetrunc day eomonth getdate getutcdate isdate month smalldatetimefromparts switchoffset sysdatetime sysdatetimeoffset sysutcdatetime timefromparts todatetimeoffset year edit_distance edit_distance_similarity jaro_winkler_distance jaro_winkler_similarity edge_id_from_parts graph_id_from_edge_id graph_id_from_node_id node_id_from_parts object_id_from_edge_id object_id_from_node_id json isjson json_array json_contains json_modify json_object json_path_exists json_query json_value regexp_like regexp_replace regexp_substr regexp_instr regexp_count regexp_matches regexp_split_to_table abs acos asin atan atn2 ceiling cos cot degrees exp floor log log10 pi power radians rand round sign sin sqrt square tan choose greatest iif least @@procid app_name applock_mode applock_test assemblyproperty col_length col_name columnproperty databasepropertyex db_id db_name file_id file_idex file_name filegroup_id filegroup_name filegroupproperty fileproperty filepropertyex fulltextcatalogproperty fulltextserviceproperty index_col indexkey_property indexproperty next value for object_definition object_id object_name object_schema_name objectproperty objectpropertyex original_db_name parsename schema_id schema_name scope_identity serverproperty stats_date type_id type_name typeproperty dense_rank ntile rank row_number publishingservername certenclosed certprivatekey current_user database_principal_id has_dbaccess has_perms_by_name is_member is_rolemember is_srvrolemember loginproperty original_login permissions pwdencrypt pwdcompare session_user sessionproperty suser_id suser_name suser_sid suser_sname system_user user user_id user_name ascii char charindex concat concat_ws difference format left len lower ltrim nchar patindex quotename replace replicate reverse right rtrim soundex space str string_agg string_escape stuff substring translate trim unicode upper $partition @@error @@identity @@pack_received @@rowcount @@trancount binary_checksum checksum compress connectionproperty context_info current_request_id current_transaction_id decompress error_line error_message error_number error_procedure error_severity error_state formatmessage get_filestream_transaction_context getansinull host_id host_name isnull isnumeric min_active_rowversion newid newsequentialid rowcount_big session_context xact_state @@connections @@cpu_busy @@idle @@io_busy @@pack_sent @@packet_errors @@timeticks @@total_errors @@total_read @@total_write textptr textvalid columns_updated eventdata trigger_nestlevel vector_distance vectorproperty vector_search generate_series opendatasource openjson openquery openrowset openxml predict string_split coalesce nullif apply catch filter force include keep keepfixed modify optimize parameterization parameters partition recompile sequence set",ct=m.define({keywords:y+"add external procedure all fetch public alter file raiserror and fillfactor read any for readtext as foreign reconfigure asc freetext references authorization freetexttable replication backup from restore begin full restrict between function return break goto revert browse grant revoke bulk group right by having rollback cascade holdlock rowcount case identity rowguidcol check identity_insert rule checkpoint identitycol save close if schema clustered in securityaudit coalesce index select collate inner semantickeyphrasetable column insert semanticsimilaritydetailstable commit intersect semanticsimilaritytable compute into session_user constraint is set contains join setuser containstable key shutdown continue kill some convert left statistics create like system_user cross lineno table current load tablesample current_date merge textsize current_time national then current_timestamp nocheck to current_user nonclustered top cursor not tran database null transaction dbcc nullif trigger deallocate of truncate declare off try_convert default offsets tsequal delete on union deny open unique desc opendatasource unpivot disk openquery update distinct openrowset updatetext distributed openxml use double option user drop or values dump order varying else outer view end over waitfor errlvl percent when escape pivot where except plan while exec precision with execute primary within group exists print writetext exit proc noexpand index forceseek forcescan holdlock nolock nowait paglock readcommitted readcommittedlock readpast readuncommitted repeatableread rowlock serializable snapshot spatial_window_max_cells tablock tablockx updlock xlock keepidentity keepdefaults ignore_constraints ignore_triggers",types:h+"smalldatetime datetimeoffset datetime2 datetime bigint smallint smallmoney tinyint money real text nvarchar ntext varbinary image hierarchyid uniqueidentifier sql_variant xml",builtin:et,operatorChars:"*+-%<>!=^&|/",specialVar:"@",identifierQuotes:'"['}),dt=m.define({keywords:y+"abort analyze attach autoincrement conflict database detach exclusive fail glob ignore index indexed instead isnull notnull offset plan pragma query raise regexp reindex rename replace temp vacuum virtual",types:h+"bool blob long longblob longtext medium mediumblob mediumint mediumtext tinyblob tinyint tinytext text bigint int2 int8 unsigned signed real",builtin:"auth backup bail changes clone databases dbinfo dump echo eqp explain fullschema headers help import imposter indexes iotrace lint load log mode nullvalue once print prompt quit restore save scanstats separator shell show stats system tables testcase timeout timer trace vfsinfo vfslist vfsname width",operatorChars:"*+-%<>!=&|/~",identifierQuotes:'`"',specialVar:"@:?$"}),mt=m.define({keywords:"add all allow alter and any apply as asc authorize batch begin by clustering columnfamily compact consistency count create custom delete desc distinct drop each_quorum exists filtering from grant if in index insert into key keyspace keyspaces level limit local_one local_quorum modify nan norecursive nosuperuser not of on one order password permission permissions primary quorum rename revoke schema select set storage superuser table three to token truncate ttl two type unlogged update use user users using values where with writetime infinity NaN",types:h+"ascii bigint blob counter frozen inet list map static text timeuuid tuple uuid varint",slashComments:!0}),ut=m.define({keywords:y+"abort accept access add all alter and any arraylen as asc assert assign at attributes audit authorization avg base_table begin between binary_integer body by case cast char_base check close cluster clusters colauth column comment commit compress connected constant constraint crash create current currval cursor data_base database dba deallocate debugoff debugon declare default definition delay delete desc digits dispose distinct do drop else elseif elsif enable end entry exception exception_init exchange exclusive exists external fast fetch file for force form from function generic goto grant group having identified if immediate in increment index indexes indicator initial initrans insert interface intersect into is key level library like limited local lock log logging loop master maxextents maxtrans member minextents minus mislabel mode modify multiset new next no noaudit nocompress nologging noparallel not nowait number_base of off offline on online only option or order out package parallel partition pctfree pctincrease pctused pls_integer positive positiven pragma primary prior private privileges procedure public raise range raw rebuild record ref references refresh rename replace resource restrict return returning returns reverse revoke rollback row rowid rowlabel rownum rows run savepoint schema segment select separate set share snapshot some space split sql start statement storage subtype successful synonym tabauth table tables tablespace task terminate then to trigger truncate type union unique unlimited unrecoverable unusable update use using validate value values variable view views when whenever where while with work",builtin:"appinfo arraysize autocommit autoprint autorecovery autotrace blockterminator break btitle cmdsep colsep compatibility compute concat copycommit copytypecheck define echo editfile embedded feedback flagger flush heading headsep instance linesize lno loboffset logsource longchunksize markup native newpage numformat numwidth pagesize pause pno recsep recsepchar repfooter repheader serveroutput shiftinout show showmode spool sqlblanklines sqlcase sqlcode sqlcontinue sqlnumber sqlpluscompatibility sqlprefix sqlprompt sqlterminator suffix tab term termout timing trimout trimspool ttitle underline verify version wrap",types:h+"ascii bfile bfilename bigserial bit blob dec long number nvarchar nvarchar2 serial smallint string text uid varchar2 xml",operatorChars:"*/+-%<>!=~",doubleQuotedStrings:!0,charSetCasts:!0,plsqlQuotingMechanism:!0});export{mt as Cassandra,ct as MSSQL,lt as MariaSQL,ot as MySQL,ut as PLSQL,st as PostgreSQL,m as SQLDialect,dt as SQLite,U as StandardSQL,Ye as keywordCompletionSource,He as schemaCompletionSource,it as sql};
|