@sync-in/server 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +93 -0
- package/LICENSE +660 -0
- package/README.md +106 -0
- package/environment/environment.dist.min.yaml +11 -0
- package/environment/environment.dist.yaml +95 -0
- package/migrations/0000_init.sql +324 -0
- package/migrations/meta/0000_snapshot.json +2417 -0
- package/migrations/meta/_journal.json +13 -0
- package/package.json +80 -0
- package/server/app.bootstrap.js +103 -0
- package/server/app.bootstrap.js.map +1 -0
- package/server/app.constants.js +58 -0
- package/server/app.constants.js.map +1 -0
- package/server/app.e2e-spec.js +34 -0
- package/server/app.e2e-spec.js.map +1 -0
- package/server/app.module.js +72 -0
- package/server/app.module.js.map +1 -0
- package/server/app.service.js +72 -0
- package/server/app.service.js.map +1 -0
- package/server/app.service.spec.js +94 -0
- package/server/app.service.spec.js.map +1 -0
- package/server/applications/admin/admin.module.js +31 -0
- package/server/applications/admin/admin.module.js.map +1 -0
- package/server/applications/admin/constants/routes.js +19 -0
- package/server/applications/admin/constants/routes.js.map +1 -0
- package/server/applications/applications.config.js +50 -0
- package/server/applications/applications.config.js.map +1 -0
- package/server/applications/applications.constants.js +69 -0
- package/server/applications/applications.constants.js.map +1 -0
- package/server/applications/applications.module.js +59 -0
- package/server/applications/applications.module.js.map +1 -0
- package/server/applications/comments/comments.controller.js +133 -0
- package/server/applications/comments/comments.controller.js.map +1 -0
- package/server/applications/comments/comments.controller.spec.js +63 -0
- package/server/applications/comments/comments.controller.spec.js.map +1 -0
- package/server/applications/comments/comments.module.js +39 -0
- package/server/applications/comments/comments.module.js.map +1 -0
- package/server/applications/comments/constants/routes.js +35 -0
- package/server/applications/comments/constants/routes.js.map +1 -0
- package/server/applications/comments/dto/comment.dto.js +62 -0
- package/server/applications/comments/dto/comment.dto.js.map +1 -0
- package/server/applications/comments/interfaces/comment-recent.interface.js +10 -0
- package/server/applications/comments/interfaces/comment-recent.interface.js.map +1 -0
- package/server/applications/comments/schemas/comment.interface.js +18 -0
- package/server/applications/comments/schemas/comment.interface.js.map +1 -0
- package/server/applications/comments/schemas/comments.schema.js +57 -0
- package/server/applications/comments/schemas/comments.schema.js.map +1 -0
- package/server/applications/comments/services/comments-manager.service.js +137 -0
- package/server/applications/comments/services/comments-manager.service.js.map +1 -0
- package/server/applications/comments/services/comments-manager.service.spec.js +51 -0
- package/server/applications/comments/services/comments-manager.service.spec.js.map +1 -0
- package/server/applications/comments/services/comments-queries.service.js +185 -0
- package/server/applications/comments/services/comments-queries.service.js.map +1 -0
- package/server/applications/files/adapters/files-indexer-mysql.service.js +174 -0
- package/server/applications/files/adapters/files-indexer-mysql.service.js.map +1 -0
- package/server/applications/files/assets/samples/sample.docx +0 -0
- package/server/applications/files/assets/samples/sample.odp +0 -0
- package/server/applications/files/assets/samples/sample.ods +0 -0
- package/server/applications/files/assets/samples/sample.odt +0 -0
- package/server/applications/files/assets/samples/sample.pptx +0 -0
- package/server/applications/files/assets/samples/sample.rtf +194 -0
- package/server/applications/files/assets/samples/sample.xlsx +0 -0
- package/server/applications/files/constants/cache.js +36 -0
- package/server/applications/files/constants/cache.js.map +1 -0
- package/server/applications/files/constants/compress.js +26 -0
- package/server/applications/files/constants/compress.js.map +1 -0
- package/server/applications/files/constants/files.js +103 -0
- package/server/applications/files/constants/files.js.map +1 -0
- package/server/applications/files/constants/indexing.js +49 -0
- package/server/applications/files/constants/indexing.js.map +1 -0
- package/server/applications/files/constants/only-office.js +536 -0
- package/server/applications/files/constants/only-office.js.map +1 -0
- package/server/applications/files/constants/operations.js +29 -0
- package/server/applications/files/constants/operations.js.map +1 -0
- package/server/applications/files/constants/routes.js +100 -0
- package/server/applications/files/constants/routes.js.map +1 -0
- package/server/applications/files/constants/samples.js +35 -0
- package/server/applications/files/constants/samples.js.map +1 -0
- package/server/applications/files/decorators/only-office-environment.decorator.js +32 -0
- package/server/applications/files/decorators/only-office-environment.decorator.js.map +1 -0
- package/server/applications/files/dto/file-operations.dto.js +145 -0
- package/server/applications/files/dto/file-operations.dto.js.map +1 -0
- package/server/applications/files/events/file-task-event.js +23 -0
- package/server/applications/files/events/file-task-event.js.map +1 -0
- package/server/applications/files/files-only-office.controller.js +111 -0
- package/server/applications/files/files-only-office.controller.js.map +1 -0
- package/server/applications/files/files-only-office.controller.spec.js +47 -0
- package/server/applications/files/files-only-office.controller.spec.js.map +1 -0
- package/server/applications/files/files-tasks.controller.js +97 -0
- package/server/applications/files/files-tasks.controller.js.map +1 -0
- package/server/applications/files/files-tasks.controller.spec.js +40 -0
- package/server/applications/files/files-tasks.controller.spec.js.map +1 -0
- package/server/applications/files/files.config.js +96 -0
- package/server/applications/files/files.config.js.map +1 -0
- package/server/applications/files/files.controller.js +319 -0
- package/server/applications/files/files.controller.js.map +1 -0
- package/server/applications/files/files.controller.spec.js +84 -0
- package/server/applications/files/files.controller.spec.js.map +1 -0
- package/server/applications/files/files.module.js +78 -0
- package/server/applications/files/files.module.js.map +1 -0
- package/server/applications/files/guards/files-only-office.guard.js +48 -0
- package/server/applications/files/guards/files-only-office.guard.js.map +1 -0
- package/server/applications/files/guards/files-only-office.guard.spec.js +16 -0
- package/server/applications/files/guards/files-only-office.guard.spec.js.map +1 -0
- package/server/applications/files/guards/files-only-office.strategy.js +60 -0
- package/server/applications/files/guards/files-only-office.strategy.js.map +1 -0
- package/server/applications/files/interfaces/file-db-props.interface.js +10 -0
- package/server/applications/files/interfaces/file-db-props.interface.js.map +1 -0
- package/server/applications/files/interfaces/file-lock.interface.js +10 -0
- package/server/applications/files/interfaces/file-lock.interface.js.map +1 -0
- package/server/applications/files/interfaces/file-parse-index.js +10 -0
- package/server/applications/files/interfaces/file-parse-index.js.map +1 -0
- package/server/applications/files/interfaces/file-props.interface.js +10 -0
- package/server/applications/files/interfaces/file-props.interface.js.map +1 -0
- package/server/applications/files/interfaces/file-recent-location.interface.js +10 -0
- package/server/applications/files/interfaces/file-recent-location.interface.js.map +1 -0
- package/server/applications/files/interfaces/file-space.interface.js +18 -0
- package/server/applications/files/interfaces/file-space.interface.js.map +1 -0
- package/server/applications/files/interfaces/file-tree.interface.js +10 -0
- package/server/applications/files/interfaces/file-tree.interface.js.map +1 -0
- package/server/applications/files/interfaces/only-office-config.interface.js +10 -0
- package/server/applications/files/interfaces/only-office-config.interface.js.map +1 -0
- package/server/applications/files/models/file-error.js +23 -0
- package/server/applications/files/models/file-error.js.map +1 -0
- package/server/applications/files/models/file-lock-error.js +23 -0
- package/server/applications/files/models/file-lock-error.js.map +1 -0
- package/server/applications/files/models/file-task.js +52 -0
- package/server/applications/files/models/file-task.js.map +1 -0
- package/server/applications/files/models/files-indexer.js +18 -0
- package/server/applications/files/models/files-indexer.js.map +1 -0
- package/server/applications/files/schemas/file-content.interface.js +10 -0
- package/server/applications/files/schemas/file-content.interface.js.map +1 -0
- package/server/applications/files/schemas/file-recent.interface.js +18 -0
- package/server/applications/files/schemas/file-recent.interface.js.map +1 -0
- package/server/applications/files/schemas/file.interface.js +18 -0
- package/server/applications/files/schemas/file.interface.js.map +1 -0
- package/server/applications/files/schemas/files-content.schema.js +41 -0
- package/server/applications/files/schemas/files-content.schema.js.map +1 -0
- package/server/applications/files/schemas/files-recents.schema.js +63 -0
- package/server/applications/files/schemas/files-recents.schema.js.map +1 -0
- package/server/applications/files/schemas/files.schema.js +100 -0
- package/server/applications/files/schemas/files.schema.js.map +1 -0
- package/server/applications/files/services/files-content-manager.service.js +204 -0
- package/server/applications/files/services/files-content-manager.service.js.map +1 -0
- package/server/applications/files/services/files-lock-manager.service.js +285 -0
- package/server/applications/files/services/files-lock-manager.service.js.map +1 -0
- package/server/applications/files/services/files-lock-manager.service.spec.js +40 -0
- package/server/applications/files/services/files-lock-manager.service.spec.js.map +1 -0
- package/server/applications/files/services/files-manager.service.js +565 -0
- package/server/applications/files/services/files-manager.service.js.map +1 -0
- package/server/applications/files/services/files-manager.service.spec.js +43 -0
- package/server/applications/files/services/files-manager.service.spec.js.map +1 -0
- package/server/applications/files/services/files-methods.service.js +180 -0
- package/server/applications/files/services/files-methods.service.js.map +1 -0
- package/server/applications/files/services/files-methods.service.spec.js +135 -0
- package/server/applications/files/services/files-methods.service.spec.js.map +1 -0
- package/server/applications/files/services/files-only-office-manager.service.js +395 -0
- package/server/applications/files/services/files-only-office-manager.service.js.map +1 -0
- package/server/applications/files/services/files-only-office-manager.service.spec.js +58 -0
- package/server/applications/files/services/files-only-office-manager.service.spec.js.map +1 -0
- package/server/applications/files/services/files-parser.service.js +189 -0
- package/server/applications/files/services/files-parser.service.js.map +1 -0
- package/server/applications/files/services/files-parser.service.spec.js +31 -0
- package/server/applications/files/services/files-parser.service.spec.js.map +1 -0
- package/server/applications/files/services/files-queries.service.js +314 -0
- package/server/applications/files/services/files-queries.service.js.map +1 -0
- package/server/applications/files/services/files-recents.service.js +97 -0
- package/server/applications/files/services/files-recents.service.js.map +1 -0
- package/server/applications/files/services/files-recents.service.spec.js +41 -0
- package/server/applications/files/services/files-recents.service.spec.js.map +1 -0
- package/server/applications/files/services/files-scheduler.service.js +179 -0
- package/server/applications/files/services/files-scheduler.service.js.map +1 -0
- package/server/applications/files/services/files-search-manager.service.js +146 -0
- package/server/applications/files/services/files-search-manager.service.js.map +1 -0
- package/server/applications/files/services/files-search-manager.service.spec.js +46 -0
- package/server/applications/files/services/files-search-manager.service.spec.js.map +1 -0
- package/server/applications/files/services/files-tasks-manager.service.js +253 -0
- package/server/applications/files/services/files-tasks-manager.service.js.map +1 -0
- package/server/applications/files/services/files-tasks-manager.service.spec.js +46 -0
- package/server/applications/files/services/files-tasks-manager.service.spec.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/excel.js +91 -0
- package/server/applications/files/utils/doc-textify/adapters/excel.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/html.js +33 -0
- package/server/applications/files/utils/doc-textify/adapters/html.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/open-office.js +110 -0
- package/server/applications/files/utils/doc-textify/adapters/open-office.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/pdf.js +67 -0
- package/server/applications/files/utils/doc-textify/adapters/pdf.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/power-point.js +111 -0
- package/server/applications/files/utils/doc-textify/adapters/power-point.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/text.js +27 -0
- package/server/applications/files/utils/doc-textify/adapters/text.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/word.js +101 -0
- package/server/applications/files/utils/doc-textify/adapters/word.js.map +1 -0
- package/server/applications/files/utils/doc-textify/doc-textify.js +75 -0
- package/server/applications/files/utils/doc-textify/doc-textify.js.map +1 -0
- package/server/applications/files/utils/doc-textify/interfaces/doc-textify.interfaces.js +10 -0
- package/server/applications/files/utils/doc-textify/interfaces/doc-textify.interfaces.js.map +1 -0
- package/server/applications/files/utils/doc-textify/utils/clean.js +34 -0
- package/server/applications/files/utils/doc-textify/utils/clean.js.map +1 -0
- package/server/applications/files/utils/files-search.js +144 -0
- package/server/applications/files/utils/files-search.js.map +1 -0
- package/server/applications/files/utils/files-tree.js +86 -0
- package/server/applications/files/utils/files-tree.js.map +1 -0
- package/server/applications/files/utils/files.js +386 -0
- package/server/applications/files/utils/files.js.map +1 -0
- package/server/applications/files/utils/send-file.js +70 -0
- package/server/applications/files/utils/send-file.js.map +1 -0
- package/server/applications/files/utils/unzip-file.js +60 -0
- package/server/applications/files/utils/unzip-file.js.map +1 -0
- package/server/applications/files/utils/url-file.js +39 -0
- package/server/applications/files/utils/url-file.js.map +1 -0
- package/server/applications/links/constants/cache.js +28 -0
- package/server/applications/links/constants/cache.js.map +1 -0
- package/server/applications/links/constants/links.js +36 -0
- package/server/applications/links/constants/links.js.map +1 -0
- package/server/applications/links/constants/routes.js +41 -0
- package/server/applications/links/constants/routes.js.map +1 -0
- package/server/applications/links/dto/create-or-update-link.dto.js +95 -0
- package/server/applications/links/dto/create-or-update-link.dto.js.map +1 -0
- package/server/applications/links/interfaces/link-guest.interface.js +10 -0
- package/server/applications/links/interfaces/link-guest.interface.js.map +1 -0
- package/server/applications/links/interfaces/link-space.interface.js +10 -0
- package/server/applications/links/interfaces/link-space.interface.js.map +1 -0
- package/server/applications/links/links.controller.js +107 -0
- package/server/applications/links/links.controller.js.map +1 -0
- package/server/applications/links/links.controller.spec.js +88 -0
- package/server/applications/links/links.controller.spec.js.map +1 -0
- package/server/applications/links/schemas/link.interface.js +18 -0
- package/server/applications/links/schemas/link.interface.js.map +1 -0
- package/server/applications/links/schemas/links.schema.js +56 -0
- package/server/applications/links/schemas/links.schema.js.map +1 -0
- package/server/applications/links/services/links-manager.service.js +158 -0
- package/server/applications/links/services/links-manager.service.js.map +1 -0
- package/server/applications/links/services/links-manager.service.spec.js +84 -0
- package/server/applications/links/services/links-manager.service.spec.js.map +1 -0
- package/server/applications/links/services/links-queries.service.js +181 -0
- package/server/applications/links/services/links-queries.service.js.map +1 -0
- package/server/applications/notifications/constants/notifications.js +62 -0
- package/server/applications/notifications/constants/notifications.js.map +1 -0
- package/server/applications/notifications/constants/routes.js +30 -0
- package/server/applications/notifications/constants/routes.js.map +1 -0
- package/server/applications/notifications/constants/websocket.js +22 -0
- package/server/applications/notifications/constants/websocket.js.map +1 -0
- package/server/applications/notifications/i18n/fr.js +43 -0
- package/server/applications/notifications/i18n/fr.js.map +1 -0
- package/server/applications/notifications/i18n/index.js +37 -0
- package/server/applications/notifications/i18n/index.js.map +1 -0
- package/server/applications/notifications/interfaces/notification-properties.interface.js +10 -0
- package/server/applications/notifications/interfaces/notification-properties.interface.js.map +1 -0
- package/server/applications/notifications/interfaces/user-mail-notification.js +10 -0
- package/server/applications/notifications/interfaces/user-mail-notification.js.map +1 -0
- package/server/applications/notifications/mails/models.js +133 -0
- package/server/applications/notifications/mails/models.js.map +1 -0
- package/server/applications/notifications/mails/templates.js +51 -0
- package/server/applications/notifications/mails/templates.js.map +1 -0
- package/server/applications/notifications/mails/urls.js +51 -0
- package/server/applications/notifications/mails/urls.js.map +1 -0
- package/server/applications/notifications/notifications.controller.js +110 -0
- package/server/applications/notifications/notifications.controller.js.map +1 -0
- package/server/applications/notifications/notifications.controller.spec.js +33 -0
- package/server/applications/notifications/notifications.controller.spec.js.map +1 -0
- package/server/applications/notifications/notifications.gateway.js +45 -0
- package/server/applications/notifications/notifications.gateway.js.map +1 -0
- package/server/applications/notifications/notifications.module.js +44 -0
- package/server/applications/notifications/notifications.module.js.map +1 -0
- package/server/applications/notifications/schemas/notification.interface.js +18 -0
- package/server/applications/notifications/schemas/notification.interface.js.map +1 -0
- package/server/applications/notifications/schemas/notifications.schema.js +45 -0
- package/server/applications/notifications/schemas/notifications.schema.js.map +1 -0
- package/server/applications/notifications/services/notifications-manager.service.js +143 -0
- package/server/applications/notifications/services/notifications-manager.service.js.map +1 -0
- package/server/applications/notifications/services/notifications-manager.service.spec.js +46 -0
- package/server/applications/notifications/services/notifications-manager.service.spec.js.map +1 -0
- package/server/applications/notifications/services/notifications-queries.service.js +100 -0
- package/server/applications/notifications/services/notifications-queries.service.js.map +1 -0
- package/server/applications/shares/constants/routes.js +46 -0
- package/server/applications/shares/constants/routes.js.map +1 -0
- package/server/applications/shares/constants/shares.js +31 -0
- package/server/applications/shares/constants/shares.js.map +1 -0
- package/server/applications/shares/dto/create-or-update-share.dto.js +232 -0
- package/server/applications/shares/dto/create-or-update-share.dto.js.map +1 -0
- package/server/applications/shares/interfaces/share-child.interface.js +10 -0
- package/server/applications/shares/interfaces/share-child.interface.js.map +1 -0
- package/server/applications/shares/interfaces/share-env.interface.js +10 -0
- package/server/applications/shares/interfaces/share-env.interface.js.map +1 -0
- package/server/applications/shares/interfaces/share-file.interface.js +21 -0
- package/server/applications/shares/interfaces/share-file.interface.js.map +1 -0
- package/server/applications/shares/interfaces/share-link.interface.js +10 -0
- package/server/applications/shares/interfaces/share-link.interface.js.map +1 -0
- package/server/applications/shares/interfaces/share-props.interface.js +22 -0
- package/server/applications/shares/interfaces/share-props.interface.js.map +1 -0
- package/server/applications/shares/models/share-child.model.js +30 -0
- package/server/applications/shares/models/share-child.model.js.map +1 -0
- package/server/applications/shares/schemas/share-members.interface.js +18 -0
- package/server/applications/shares/schemas/share-members.interface.js.map +1 -0
- package/server/applications/shares/schemas/share.interface.js +18 -0
- package/server/applications/shares/schemas/share.interface.js.map +1 -0
- package/server/applications/shares/schemas/shares-members.schema.js +69 -0
- package/server/applications/shares/schemas/shares-members.schema.js.map +1 -0
- package/server/applications/shares/schemas/shares.schema.js +91 -0
- package/server/applications/shares/schemas/shares.schema.js.map +1 -0
- package/server/applications/shares/services/shares-manager.service.js +1010 -0
- package/server/applications/shares/services/shares-manager.service.js.map +1 -0
- package/server/applications/shares/services/shares-manager.service.spec.js +56 -0
- package/server/applications/shares/services/shares-manager.service.spec.js.map +1 -0
- package/server/applications/shares/services/shares-queries.service.js +892 -0
- package/server/applications/shares/services/shares-queries.service.js.map +1 -0
- package/server/applications/shares/shares.controller.js +293 -0
- package/server/applications/shares/shares.controller.js.map +1 -0
- package/server/applications/shares/shares.controller.spec.js +60 -0
- package/server/applications/shares/shares.controller.spec.js.map +1 -0
- package/server/applications/shares/shares.module.js +49 -0
- package/server/applications/shares/shares.module.js.map +1 -0
- package/server/applications/spaces/constants/cache.js +32 -0
- package/server/applications/spaces/constants/cache.js.map +1 -0
- package/server/applications/spaces/constants/routes.js +58 -0
- package/server/applications/spaces/constants/routes.js.map +1 -0
- package/server/applications/spaces/constants/spaces.js +104 -0
- package/server/applications/spaces/constants/spaces.js.map +1 -0
- package/server/applications/spaces/decorators/space-skip-guard.decorator.js +27 -0
- package/server/applications/spaces/decorators/space-skip-guard.decorator.js.map +1 -0
- package/server/applications/spaces/decorators/space-skip-permissions.decorator.js +27 -0
- package/server/applications/spaces/decorators/space-skip-permissions.decorator.js.map +1 -0
- package/server/applications/spaces/decorators/space.decorator.js +20 -0
- package/server/applications/spaces/decorators/space.decorator.js.map +1 -0
- package/server/applications/spaces/dto/create-or-update-space.dto.js +164 -0
- package/server/applications/spaces/dto/create-or-update-space.dto.js.map +1 -0
- package/server/applications/spaces/dto/delete-space.dto.js +33 -0
- package/server/applications/spaces/dto/delete-space.dto.js.map +1 -0
- package/server/applications/spaces/dto/search-space.dto.js +47 -0
- package/server/applications/spaces/dto/search-space.dto.js.map +1 -0
- package/server/applications/spaces/dto/space-roots.dto.js +117 -0
- package/server/applications/spaces/dto/space-roots.dto.js.map +1 -0
- package/server/applications/spaces/guards/space.guard.js +151 -0
- package/server/applications/spaces/guards/space.guard.js.map +1 -0
- package/server/applications/spaces/guards/space.guard.spec.js +457 -0
- package/server/applications/spaces/guards/space.guard.spec.js.map +1 -0
- package/server/applications/spaces/interfaces/space-diff.interface.js +10 -0
- package/server/applications/spaces/interfaces/space-diff.interface.js.map +1 -0
- package/server/applications/spaces/interfaces/space-files.interface.js +10 -0
- package/server/applications/spaces/interfaces/space-files.interface.js.map +1 -0
- package/server/applications/spaces/interfaces/space-quota.interface.js +10 -0
- package/server/applications/spaces/interfaces/space-quota.interface.js.map +1 -0
- package/server/applications/spaces/interfaces/space-request.interface.js +10 -0
- package/server/applications/spaces/interfaces/space-request.interface.js.map +1 -0
- package/server/applications/spaces/interfaces/space-trash.interface.js +10 -0
- package/server/applications/spaces/interfaces/space-trash.interface.js.map +1 -0
- package/server/applications/spaces/models/space-env.model.js +112 -0
- package/server/applications/spaces/models/space-env.model.js.map +1 -0
- package/server/applications/spaces/models/space-props.model.js +60 -0
- package/server/applications/spaces/models/space-props.model.js.map +1 -0
- package/server/applications/spaces/models/space-root-props.model.js +18 -0
- package/server/applications/spaces/models/space-root-props.model.js.map +1 -0
- package/server/applications/spaces/models/space.model.js +64 -0
- package/server/applications/spaces/models/space.model.js.map +1 -0
- package/server/applications/spaces/schemas/space-members.interface.js +18 -0
- package/server/applications/spaces/schemas/space-members.interface.js.map +1 -0
- package/server/applications/spaces/schemas/space-root.interface.js +18 -0
- package/server/applications/spaces/schemas/space-root.interface.js.map +1 -0
- package/server/applications/spaces/schemas/space.interface.js +18 -0
- package/server/applications/spaces/schemas/space.interface.js.map +1 -0
- package/server/applications/spaces/schemas/spaces-members.schema.js +73 -0
- package/server/applications/spaces/schemas/spaces-members.schema.js.map +1 -0
- package/server/applications/spaces/schemas/spaces-roots.schema.js +61 -0
- package/server/applications/spaces/schemas/spaces-roots.schema.js.map +1 -0
- package/server/applications/spaces/schemas/spaces.schema.js +63 -0
- package/server/applications/spaces/schemas/spaces.schema.js.map +1 -0
- package/server/applications/spaces/services/spaces-browser.service.js +308 -0
- package/server/applications/spaces/services/spaces-browser.service.js.map +1 -0
- package/server/applications/spaces/services/spaces-browser.service.spec.js +74 -0
- package/server/applications/spaces/services/spaces-browser.service.spec.js.map +1 -0
- package/server/applications/spaces/services/spaces-manager.service.js +818 -0
- package/server/applications/spaces/services/spaces-manager.service.js.map +1 -0
- package/server/applications/spaces/services/spaces-manager.service.spec.js +269 -0
- package/server/applications/spaces/services/spaces-manager.service.spec.js.map +1 -0
- package/server/applications/spaces/services/spaces-queries.service.js +763 -0
- package/server/applications/spaces/services/spaces-queries.service.js.map +1 -0
- package/server/applications/spaces/services/spaces-scheduler.service.js +88 -0
- package/server/applications/spaces/services/spaces-scheduler.service.js.map +1 -0
- package/server/applications/spaces/spaces.controller.js +386 -0
- package/server/applications/spaces/spaces.controller.js.map +1 -0
- package/server/applications/spaces/spaces.controller.spec.js +65 -0
- package/server/applications/spaces/spaces.controller.spec.js.map +1 -0
- package/server/applications/spaces/spaces.module.js +51 -0
- package/server/applications/spaces/spaces.module.js.map +1 -0
- package/server/applications/spaces/utils/paths.js +241 -0
- package/server/applications/spaces/utils/paths.js.map +1 -0
- package/server/applications/spaces/utils/permissions.js +88 -0
- package/server/applications/spaces/utils/permissions.js.map +1 -0
- package/server/applications/spaces/utils/routes.js +20 -0
- package/server/applications/spaces/utils/routes.js.map +1 -0
- package/server/applications/sync/constants/auth.js +38 -0
- package/server/applications/sync/constants/auth.js.map +1 -0
- package/server/applications/sync/constants/routes.js +47 -0
- package/server/applications/sync/constants/routes.js.map +1 -0
- package/server/applications/sync/constants/store.js +48 -0
- package/server/applications/sync/constants/store.js.map +1 -0
- package/server/applications/sync/constants/sync.js +128 -0
- package/server/applications/sync/constants/sync.js.map +1 -0
- package/server/applications/sync/decorators/sync-context.decorator.js +27 -0
- package/server/applications/sync/decorators/sync-context.decorator.js.map +1 -0
- package/server/applications/sync/decorators/sync-environment.decorator.js +25 -0
- package/server/applications/sync/decorators/sync-environment.decorator.js.map +1 -0
- package/server/applications/sync/dtos/sync-client-auth.dto.js +47 -0
- package/server/applications/sync/dtos/sync-client-auth.dto.js.map +1 -0
- package/server/applications/sync/dtos/sync-client-registration.dto.js +51 -0
- package/server/applications/sync/dtos/sync-client-registration.dto.js.map +1 -0
- package/server/applications/sync/dtos/sync-operations.dto.js +104 -0
- package/server/applications/sync/dtos/sync-operations.dto.js.map +1 -0
- package/server/applications/sync/dtos/sync-path.dto.js +130 -0
- package/server/applications/sync/dtos/sync-path.dto.js.map +1 -0
- package/server/applications/sync/dtos/sync-upload.dto.js +49 -0
- package/server/applications/sync/dtos/sync-upload.dto.js.map +1 -0
- package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.js +55 -0
- package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.js.map +1 -0
- package/server/applications/sync/interfaces/store-manifest.interface.js +10 -0
- package/server/applications/sync/interfaces/store-manifest.interface.js.map +1 -0
- package/server/applications/sync/interfaces/sync-client-auth.interface.js +30 -0
- package/server/applications/sync/interfaces/sync-client-auth.interface.js.map +1 -0
- package/server/applications/sync/interfaces/sync-client-paths.interface.js +10 -0
- package/server/applications/sync/interfaces/sync-client-paths.interface.js.map +1 -0
- package/server/applications/sync/interfaces/sync-client.interface.js +10 -0
- package/server/applications/sync/interfaces/sync-client.interface.js.map +1 -0
- package/server/applications/sync/interfaces/sync-diff.interface.js +11 -0
- package/server/applications/sync/interfaces/sync-diff.interface.js.map +1 -0
- package/server/applications/sync/interfaces/sync-path.interface.js +10 -0
- package/server/applications/sync/interfaces/sync-path.interface.js.map +1 -0
- package/server/applications/sync/schemas/sync-client.interface.js +18 -0
- package/server/applications/sync/schemas/sync-client.interface.js.map +1 -0
- package/server/applications/sync/schemas/sync-clients.schema.js +57 -0
- package/server/applications/sync/schemas/sync-clients.schema.js.map +1 -0
- package/server/applications/sync/schemas/sync-path.interface.js +18 -0
- package/server/applications/sync/schemas/sync-path.interface.js.map +1 -0
- package/server/applications/sync/schemas/sync-paths.schema.js +76 -0
- package/server/applications/sync/schemas/sync-paths.schema.js.map +1 -0
- package/server/applications/sync/services/sync-clients-manager.service.js +218 -0
- package/server/applications/sync/services/sync-clients-manager.service.js.map +1 -0
- package/server/applications/sync/services/sync-clients-manager.service.spec.js +56 -0
- package/server/applications/sync/services/sync-clients-manager.service.spec.js.map +1 -0
- package/server/applications/sync/services/sync-manager.service.js +299 -0
- package/server/applications/sync/services/sync-manager.service.js.map +1 -0
- package/server/applications/sync/services/sync-manager.service.spec.js +41 -0
- package/server/applications/sync/services/sync-manager.service.spec.js.map +1 -0
- package/server/applications/sync/services/sync-paths-manager.service.js +290 -0
- package/server/applications/sync/services/sync-paths-manager.service.js.map +1 -0
- package/server/applications/sync/services/sync-paths-manager.service.spec.js +56 -0
- package/server/applications/sync/services/sync-paths-manager.service.spec.js.map +1 -0
- package/server/applications/sync/services/sync-queries.service.js +238 -0
- package/server/applications/sync/services/sync-queries.service.js.map +1 -0
- package/server/applications/sync/sync.config.js +36 -0
- package/server/applications/sync/sync.config.js.map +1 -0
- package/server/applications/sync/sync.controller.js +407 -0
- package/server/applications/sync/sync.controller.js.map +1 -0
- package/server/applications/sync/sync.controller.spec.js +53 -0
- package/server/applications/sync/sync.controller.spec.js.map +1 -0
- package/server/applications/sync/sync.module.js +45 -0
- package/server/applications/sync/sync.module.js.map +1 -0
- package/server/applications/sync/utils/functions.js +26 -0
- package/server/applications/sync/utils/functions.js.map +1 -0
- package/server/applications/sync/utils/normalizedMap.js +52 -0
- package/server/applications/sync/utils/normalizedMap.js.map +1 -0
- package/server/applications/sync/utils/routes.js +27 -0
- package/server/applications/sync/utils/routes.js.map +1 -0
- package/server/applications/users/admin-users.controller.js +350 -0
- package/server/applications/users/admin-users.controller.js.map +1 -0
- package/server/applications/users/admin-users.controller.spec.js +60 -0
- package/server/applications/users/admin-users.controller.spec.js.map +1 -0
- package/server/applications/users/constants/group.js +35 -0
- package/server/applications/users/constants/group.js.map +1 -0
- package/server/applications/users/constants/member.js +39 -0
- package/server/applications/users/constants/member.js.map +1 -0
- package/server/applications/users/constants/routes.js +134 -0
- package/server/applications/users/constants/routes.js.map +1 -0
- package/server/applications/users/constants/user.js +118 -0
- package/server/applications/users/constants/user.js.map +1 -0
- package/server/applications/users/constants/websocket.js +33 -0
- package/server/applications/users/constants/websocket.js.map +1 -0
- package/server/applications/users/decorators/permissions.decorator.js +18 -0
- package/server/applications/users/decorators/permissions.decorator.js.map +1 -0
- package/server/applications/users/decorators/roles.decorator.js +18 -0
- package/server/applications/users/decorators/roles.decorator.js.map +1 -0
- package/server/applications/users/decorators/user.decorator.js +20 -0
- package/server/applications/users/decorators/user.decorator.js.map +1 -0
- package/server/applications/users/dto/create-or-update-group.dto.js +66 -0
- package/server/applications/users/dto/create-or-update-group.dto.js.map +1 -0
- package/server/applications/users/dto/create-or-update-user.dto.js +167 -0
- package/server/applications/users/dto/create-or-update-user.dto.js.map +1 -0
- package/server/applications/users/dto/delete-user.dto.js +54 -0
- package/server/applications/users/dto/delete-user.dto.js.map +1 -0
- package/server/applications/users/dto/search-members.dto.js +79 -0
- package/server/applications/users/dto/search-members.dto.js.map +1 -0
- package/server/applications/users/dto/user-password.dto.js +35 -0
- package/server/applications/users/dto/user-password.dto.js.map +1 -0
- package/server/applications/users/dto/user-properties.dto.js +64 -0
- package/server/applications/users/dto/user-properties.dto.js.map +1 -0
- package/server/applications/users/guards/permissions.guard.js +71 -0
- package/server/applications/users/guards/permissions.guard.js.map +1 -0
- package/server/applications/users/guards/permissions.guard.spec.js +103 -0
- package/server/applications/users/guards/permissions.guard.spec.js.map +1 -0
- package/server/applications/users/guards/roles.guard.js +62 -0
- package/server/applications/users/guards/roles.guard.js.map +1 -0
- package/server/applications/users/guards/roles.guard.spec.js +90 -0
- package/server/applications/users/guards/roles.guard.spec.js.map +1 -0
- package/server/applications/users/interfaces/admin-group.interface.js +10 -0
- package/server/applications/users/interfaces/admin-group.interface.js.map +1 -0
- package/server/applications/users/interfaces/admin-user.interface.js +10 -0
- package/server/applications/users/interfaces/admin-user.interface.js.map +1 -0
- package/server/applications/users/interfaces/group-browse.interface.js +10 -0
- package/server/applications/users/interfaces/group-browse.interface.js.map +1 -0
- package/server/applications/users/interfaces/group-member.js +10 -0
- package/server/applications/users/interfaces/group-member.js.map +1 -0
- package/server/applications/users/interfaces/guest-user.interface.js +10 -0
- package/server/applications/users/interfaces/guest-user.interface.js.map +1 -0
- package/server/applications/users/interfaces/member.interface.js +10 -0
- package/server/applications/users/interfaces/member.interface.js.map +1 -0
- package/server/applications/users/interfaces/owner.interface.js +10 -0
- package/server/applications/users/interfaces/owner.interface.js.map +1 -0
- package/server/applications/users/interfaces/websocket.interface.js +10 -0
- package/server/applications/users/interfaces/websocket.interface.js.map +1 -0
- package/server/applications/users/models/user.model.js +226 -0
- package/server/applications/users/models/user.model.js.map +1 -0
- package/server/applications/users/schemas/group.interface.js +18 -0
- package/server/applications/users/schemas/group.interface.js.map +1 -0
- package/server/applications/users/schemas/groups.schema.js +56 -0
- package/server/applications/users/schemas/groups.schema.js.map +1 -0
- package/server/applications/users/schemas/user-group.interface.js +18 -0
- package/server/applications/users/schemas/user-group.interface.js.map +1 -0
- package/server/applications/users/schemas/user.interface.js +18 -0
- package/server/applications/users/schemas/user.interface.js.map +1 -0
- package/server/applications/users/schemas/users-groups.schema.js +49 -0
- package/server/applications/users/schemas/users-groups.schema.js.map +1 -0
- package/server/applications/users/schemas/users-guests.schema.js +46 -0
- package/server/applications/users/schemas/users-guests.schema.js.map +1 -0
- package/server/applications/users/schemas/users.schema.js +94 -0
- package/server/applications/users/schemas/users.schema.js.map +1 -0
- package/server/applications/users/services/admin-users-manager.service.js +385 -0
- package/server/applications/users/services/admin-users-manager.service.js.map +1 -0
- package/server/applications/users/services/admin-users-manager.service.spec.js +50 -0
- package/server/applications/users/services/admin-users-manager.service.spec.js.map +1 -0
- package/server/applications/users/services/admin-users-queries.service.js +315 -0
- package/server/applications/users/services/admin-users-queries.service.js.map +1 -0
- package/server/applications/users/services/users-manager.service.js +424 -0
- package/server/applications/users/services/users-manager.service.js.map +1 -0
- package/server/applications/users/services/users-manager.service.spec.js +151 -0
- package/server/applications/users/services/users-manager.service.spec.js.map +1 -0
- package/server/applications/users/services/users-queries.service.js +570 -0
- package/server/applications/users/services/users-queries.service.js.map +1 -0
- package/server/applications/users/users.controller.js +371 -0
- package/server/applications/users/users.controller.js.map +1 -0
- package/server/applications/users/users.controller.spec.js +86 -0
- package/server/applications/users/users.controller.spec.js.map +1 -0
- package/server/applications/users/users.e2e-spec.js +97 -0
- package/server/applications/users/users.e2e-spec.js.map +1 -0
- package/server/applications/users/users.gateway.js +182 -0
- package/server/applications/users/users.gateway.js.map +1 -0
- package/server/applications/users/users.gateway.spec.js +36 -0
- package/server/applications/users/users.gateway.spec.js.map +1 -0
- package/server/applications/users/users.module.js +57 -0
- package/server/applications/users/users.module.js.map +1 -0
- package/server/applications/users/utils/test.js +34 -0
- package/server/applications/users/utils/test.js.map +1 -0
- package/server/applications/webdav/constants/routes.js +73 -0
- package/server/applications/webdav/constants/routes.js.map +1 -0
- package/server/applications/webdav/constants/webdav.js +168 -0
- package/server/applications/webdav/constants/webdav.js.map +1 -0
- package/server/applications/webdav/decorators/if-header.decorator.js +27 -0
- package/server/applications/webdav/decorators/if-header.decorator.js.map +1 -0
- package/server/applications/webdav/decorators/webdav-context.decorator.js +36 -0
- package/server/applications/webdav/decorators/webdav-context.decorator.js.map +1 -0
- package/server/applications/webdav/filters/webdav.filter.js +45 -0
- package/server/applications/webdav/filters/webdav.filter.js.map +1 -0
- package/server/applications/webdav/guards/webdav-protocol.guard.js +262 -0
- package/server/applications/webdav/guards/webdav-protocol.guard.js.map +1 -0
- package/server/applications/webdav/interfaces/if-header.interface.js +10 -0
- package/server/applications/webdav/interfaces/if-header.interface.js.map +1 -0
- package/server/applications/webdav/interfaces/webdav.interface.js +10 -0
- package/server/applications/webdav/interfaces/webdav.interface.js.map +1 -0
- package/server/applications/webdav/models/webdav-file.model.js +74 -0
- package/server/applications/webdav/models/webdav-file.model.js.map +1 -0
- package/server/applications/webdav/services/webdav-methods.service.js +520 -0
- package/server/applications/webdav/services/webdav-methods.service.js.map +1 -0
- package/server/applications/webdav/services/webdav-methods.service.spec.js +41 -0
- package/server/applications/webdav/services/webdav-methods.service.spec.js.map +1 -0
- package/server/applications/webdav/services/webdav-spaces.service.js +169 -0
- package/server/applications/webdav/services/webdav-spaces.service.js.map +1 -0
- package/server/applications/webdav/services/webdav-spaces.service.spec.js +36 -0
- package/server/applications/webdav/services/webdav-spaces.service.spec.js.map +1 -0
- package/server/applications/webdav/utils/if-header.js +89 -0
- package/server/applications/webdav/utils/if-header.js.map +1 -0
- package/server/applications/webdav/utils/routes.js +30 -0
- package/server/applications/webdav/utils/routes.js.map +1 -0
- package/server/applications/webdav/utils/webdav.js +167 -0
- package/server/applications/webdav/utils/webdav.js.map +1 -0
- package/server/applications/webdav/utils/xml.js +72 -0
- package/server/applications/webdav/utils/xml.js.map +1 -0
- package/server/applications/webdav/webdav.controller.js +173 -0
- package/server/applications/webdav/webdav.controller.js.map +1 -0
- package/server/applications/webdav/webdav.controller.spec.js +41 -0
- package/server/applications/webdav/webdav.controller.spec.js.map +1 -0
- package/server/applications/webdav/webdav.e2e-spec.js +69 -0
- package/server/applications/webdav/webdav.e2e-spec.js.map +1 -0
- package/server/applications/webdav/webdav.module.js +41 -0
- package/server/applications/webdav/webdav.module.js.map +1 -0
- package/server/authentication/auth.config.js +223 -0
- package/server/authentication/auth.config.js.map +1 -0
- package/server/authentication/auth.controller.js +126 -0
- package/server/authentication/auth.controller.js.map +1 -0
- package/server/authentication/auth.controller.spec.js +132 -0
- package/server/authentication/auth.controller.spec.js.map +1 -0
- package/server/authentication/auth.e2e-spec.js +340 -0
- package/server/authentication/auth.e2e-spec.js.map +1 -0
- package/server/authentication/auth.module.js +84 -0
- package/server/authentication/auth.module.js.map +1 -0
- package/server/authentication/constants/auth.js +54 -0
- package/server/authentication/constants/auth.js.map +1 -0
- package/server/authentication/constants/routes.js +55 -0
- package/server/authentication/constants/routes.js.map +1 -0
- package/server/authentication/decorators/auth-token-optional.decorator.js +26 -0
- package/server/authentication/decorators/auth-token-optional.decorator.js.map +1 -0
- package/server/authentication/decorators/auth-token-skip.decorator.js +27 -0
- package/server/authentication/decorators/auth-token-skip.decorator.js.map +1 -0
- package/server/authentication/dto/login-response.dto.js +23 -0
- package/server/authentication/dto/login-response.dto.js.map +1 -0
- package/server/authentication/dto/token-response.dto.js +44 -0
- package/server/authentication/dto/token-response.dto.js.map +1 -0
- package/server/authentication/guards/auth-anonymous.guard.js +37 -0
- package/server/authentication/guards/auth-anonymous.guard.js.map +1 -0
- package/server/authentication/guards/auth-anonymous.guard.spec.js +65 -0
- package/server/authentication/guards/auth-anonymous.guard.spec.js.map +1 -0
- package/server/authentication/guards/auth-anonymous.strategy.js +44 -0
- package/server/authentication/guards/auth-anonymous.strategy.js.map +1 -0
- package/server/authentication/guards/auth-basic.guard.js +54 -0
- package/server/authentication/guards/auth-basic.guard.js.map +1 -0
- package/server/authentication/guards/auth-basic.guard.spec.js +148 -0
- package/server/authentication/guards/auth-basic.guard.spec.js.map +1 -0
- package/server/authentication/guards/auth-basic.strategy.js +79 -0
- package/server/authentication/guards/auth-basic.strategy.js.map +1 -0
- package/server/authentication/guards/auth-digest.guard.js +24 -0
- package/server/authentication/guards/auth-digest.guard.js.map +1 -0
- package/server/authentication/guards/auth-digest.strategy.js +28 -0
- package/server/authentication/guards/auth-digest.strategy.js.map +1 -0
- package/server/authentication/guards/auth-local.guard.js +40 -0
- package/server/authentication/guards/auth-local.guard.js.map +1 -0
- package/server/authentication/guards/auth-local.guard.spec.js +87 -0
- package/server/authentication/guards/auth-local.guard.spec.js.map +1 -0
- package/server/authentication/guards/auth-local.strategy.js +59 -0
- package/server/authentication/guards/auth-local.strategy.js.map +1 -0
- package/server/authentication/guards/auth-token-access.guard.js +66 -0
- package/server/authentication/guards/auth-token-access.guard.js.map +1 -0
- package/server/authentication/guards/auth-token-access.guard.spec.js +262 -0
- package/server/authentication/guards/auth-token-access.guard.spec.js.map +1 -0
- package/server/authentication/guards/auth-token-access.strategy.js +68 -0
- package/server/authentication/guards/auth-token-access.strategy.js.map +1 -0
- package/server/authentication/guards/auth-token-refresh.guard.js +40 -0
- package/server/authentication/guards/auth-token-refresh.guard.js.map +1 -0
- package/server/authentication/guards/auth-token-refresh.guard.spec.js +189 -0
- package/server/authentication/guards/auth-token-refresh.guard.spec.js.map +1 -0
- package/server/authentication/guards/auth-token-refresh.strategy.js +72 -0
- package/server/authentication/guards/auth-token-refresh.strategy.js.map +1 -0
- package/server/authentication/interfaces/auth-request.interface.js +10 -0
- package/server/authentication/interfaces/auth-request.interface.js.map +1 -0
- package/server/authentication/interfaces/jwt-payload.interface.js +28 -0
- package/server/authentication/interfaces/jwt-payload.interface.js.map +1 -0
- package/server/authentication/interfaces/token.interface.js +23 -0
- package/server/authentication/interfaces/token.interface.js.map +1 -0
- package/server/authentication/models/auth-method.js +18 -0
- package/server/authentication/models/auth-method.js.map +1 -0
- package/server/authentication/services/auth-manager.service.js +174 -0
- package/server/authentication/services/auth-manager.service.js.map +1 -0
- package/server/authentication/services/auth-manager.service.spec.js +41 -0
- package/server/authentication/services/auth-manager.service.spec.js.map +1 -0
- package/server/authentication/services/auth-methods/auth-method-database.service.js +55 -0
- package/server/authentication/services/auth-methods/auth-method-database.service.js.map +1 -0
- package/server/authentication/services/auth-methods/auth-method-database.service.spec.js +88 -0
- package/server/authentication/services/auth-methods/auth-method-database.service.spec.js.map +1 -0
- package/server/authentication/services/auth-methods/auth-method-ldap.service.js +185 -0
- package/server/authentication/services/auth-methods/auth-method-ldap.service.js.map +1 -0
- package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js +36 -0
- package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js.map +1 -0
- package/server/common/constants.js +23 -0
- package/server/common/constants.js.map +1 -0
- package/server/common/decorators.js +35 -0
- package/server/common/decorators.js.map +1 -0
- package/server/common/fonts/avatar.ttf +0 -0
- package/server/common/functions.js +292 -0
- package/server/common/functions.js.map +1 -0
- package/server/common/image.js +113 -0
- package/server/common/image.js.map +1 -0
- package/server/common/interfaces.js +10 -0
- package/server/common/interfaces.js.map +1 -0
- package/server/common/shared.js +105 -0
- package/server/common/shared.js.map +1 -0
- package/server/configuration/config.constants.js +65 -0
- package/server/configuration/config.constants.js.map +1 -0
- package/server/configuration/config.environment.js +57 -0
- package/server/configuration/config.environment.js.map +1 -0
- package/server/configuration/config.loader.js +195 -0
- package/server/configuration/config.loader.js.map +1 -0
- package/server/configuration/config.logger.js +69 -0
- package/server/configuration/config.logger.js.map +1 -0
- package/server/configuration/config.validation.js +175 -0
- package/server/configuration/config.validation.js.map +1 -0
- package/server/infrastructure/cache/adapters/mysql-cache.adapter.js +169 -0
- package/server/infrastructure/cache/adapters/mysql-cache.adapter.js.map +1 -0
- package/server/infrastructure/cache/adapters/redis-cache.adapter.js +129 -0
- package/server/infrastructure/cache/adapters/redis-cache.adapter.js.map +1 -0
- package/server/infrastructure/cache/cache.config.js +53 -0
- package/server/infrastructure/cache/cache.config.js.map +1 -0
- package/server/infrastructure/cache/cache.decorator.js +53 -0
- package/server/infrastructure/cache/cache.decorator.js.map +1 -0
- package/server/infrastructure/cache/cache.e2e-spec.js +111 -0
- package/server/infrastructure/cache/cache.e2e-spec.js.map +1 -0
- package/server/infrastructure/cache/cache.module.js +58 -0
- package/server/infrastructure/cache/cache.module.js.map +1 -0
- package/server/infrastructure/cache/schemas/mysql-cache.interface.js +18 -0
- package/server/infrastructure/cache/schemas/mysql-cache.interface.js.map +1 -0
- package/server/infrastructure/cache/schemas/mysql-cache.schema.js +26 -0
- package/server/infrastructure/cache/schemas/mysql-cache.schema.js.map +1 -0
- package/server/infrastructure/cache/services/cache.service.js +18 -0
- package/server/infrastructure/cache/services/cache.service.js.map +1 -0
- package/server/infrastructure/context/context.module.js +40 -0
- package/server/infrastructure/context/context.module.js.map +1 -0
- package/server/infrastructure/context/interceptors/context.interceptor.js +45 -0
- package/server/infrastructure/context/interceptors/context.interceptor.js.map +1 -0
- package/server/infrastructure/context/interfaces/context-store.interface.js +10 -0
- package/server/infrastructure/context/interfaces/context-store.interface.js.map +1 -0
- package/server/infrastructure/context/services/context-manager.service.js +43 -0
- package/server/infrastructure/context/services/context-manager.service.js.map +1 -0
- package/server/infrastructure/database/configuration.js +29 -0
- package/server/infrastructure/database/configuration.js.map +1 -0
- package/server/infrastructure/database/constants.js +41 -0
- package/server/infrastructure/database/constants.js.map +1 -0
- package/server/infrastructure/database/database.config.js +44 -0
- package/server/infrastructure/database/database.config.js.map +1 -0
- package/server/infrastructure/database/database.logger.js +22 -0
- package/server/infrastructure/database/database.logger.js.map +1 -0
- package/server/infrastructure/database/database.module.js +94 -0
- package/server/infrastructure/database/database.module.js.map +1 -0
- package/server/infrastructure/database/interfaces/database.interface.js +10 -0
- package/server/infrastructure/database/interfaces/database.interface.js.map +1 -0
- package/server/infrastructure/database/schema.js +40 -0
- package/server/infrastructure/database/schema.js.map +1 -0
- package/server/infrastructure/database/scripts/create-user.js +97 -0
- package/server/infrastructure/database/scripts/create-user.js.map +1 -0
- package/server/infrastructure/database/scripts/db.js +68 -0
- package/server/infrastructure/database/scripts/db.js.map +1 -0
- package/server/infrastructure/database/scripts/seed/main.js +18 -0
- package/server/infrastructure/database/scripts/seed/main.js.map +1 -0
- package/server/infrastructure/database/scripts/seed/usersgroups.js +92 -0
- package/server/infrastructure/database/scripts/seed/usersgroups.js.map +1 -0
- package/server/infrastructure/database/utils.js +117 -0
- package/server/infrastructure/database/utils.js.map +1 -0
- package/server/infrastructure/mailer/interfaces/mail.interface.js +10 -0
- package/server/infrastructure/mailer/interfaces/mail.interface.js.map +1 -0
- package/server/infrastructure/mailer/mailer.config.js +94 -0
- package/server/infrastructure/mailer/mailer.config.js.map +1 -0
- package/server/infrastructure/mailer/mailer.module.js +37 -0
- package/server/infrastructure/mailer/mailer.module.js.map +1 -0
- package/server/infrastructure/mailer/mailer.service.js +93 -0
- package/server/infrastructure/mailer/mailer.service.js.map +1 -0
- package/server/infrastructure/scheduler/scheduler.constants.js +30 -0
- package/server/infrastructure/scheduler/scheduler.constants.js.map +1 -0
- package/server/infrastructure/scheduler/scheduler.module.js +52 -0
- package/server/infrastructure/scheduler/scheduler.module.js.map +1 -0
- package/server/infrastructure/websocket/adapters/cluster.adapter.js +40 -0
- package/server/infrastructure/websocket/adapters/cluster.adapter.js.map +1 -0
- package/server/infrastructure/websocket/adapters/redis.adapter.js +61 -0
- package/server/infrastructure/websocket/adapters/redis.adapter.js.map +1 -0
- package/server/infrastructure/websocket/adapters/web-socket.adapter.js +127 -0
- package/server/infrastructure/websocket/adapters/web-socket.adapter.js.map +1 -0
- package/server/infrastructure/websocket/decorators/web-socket-user.decorator.js +20 -0
- package/server/infrastructure/websocket/decorators/web-socket-user.decorator.js.map +1 -0
- package/server/infrastructure/websocket/interfaces/auth-socket-io.interface.js +10 -0
- package/server/infrastructure/websocket/interfaces/auth-socket-io.interface.js.map +1 -0
- package/server/infrastructure/websocket/utils.js +23 -0
- package/server/infrastructure/websocket/utils.js.map +1 -0
- package/server/infrastructure/websocket/web-socket.config.js +54 -0
- package/server/infrastructure/websocket/web-socket.config.js.map +1 -0
- package/server/main.js +27 -0
- package/server/main.js.map +1 -0
- package/static/3rdpartylicenses.txt +1522 -0
- package/static/assets/avatar.svg +7 -0
- package/static/assets/codemirror/mode/apl/apl.js +174 -0
- package/static/assets/codemirror/mode/asciiarmor/asciiarmor.js +74 -0
- package/static/assets/codemirror/mode/asn.1/asn.1.js +204 -0
- package/static/assets/codemirror/mode/asterisk/asterisk.js +220 -0
- package/static/assets/codemirror/mode/brainfuck/brainfuck.js +85 -0
- package/static/assets/codemirror/mode/clike/clike.js +942 -0
- package/static/assets/codemirror/mode/clojure/clojure.js +293 -0
- package/static/assets/codemirror/mode/cmake/cmake.js +97 -0
- package/static/assets/codemirror/mode/cobol/cobol.js +255 -0
- package/static/assets/codemirror/mode/coffeescript/coffeescript.js +359 -0
- package/static/assets/codemirror/mode/commonlisp/commonlisp.js +125 -0
- package/static/assets/codemirror/mode/crystal/crystal.js +433 -0
- package/static/assets/codemirror/mode/css/css.js +862 -0
- package/static/assets/codemirror/mode/cypher/cypher.js +152 -0
- package/static/assets/codemirror/mode/d/d.js +223 -0
- package/static/assets/codemirror/mode/dart/dart.js +168 -0
- package/static/assets/codemirror/mode/diff/diff.js +47 -0
- package/static/assets/codemirror/mode/django/django.js +356 -0
- package/static/assets/codemirror/mode/dockerfile/dockerfile.js +211 -0
- package/static/assets/codemirror/mode/dtd/dtd.js +142 -0
- package/static/assets/codemirror/mode/dylan/dylan.js +352 -0
- package/static/assets/codemirror/mode/ebnf/ebnf.js +195 -0
- package/static/assets/codemirror/mode/ecl/ecl.js +206 -0
- package/static/assets/codemirror/mode/eiffel/eiffel.js +160 -0
- package/static/assets/codemirror/mode/elm/elm.js +245 -0
- package/static/assets/codemirror/mode/erlang/erlang.js +619 -0
- package/static/assets/codemirror/mode/factor/factor.js +85 -0
- package/static/assets/codemirror/mode/fcl/fcl.js +173 -0
- package/static/assets/codemirror/mode/forth/forth.js +180 -0
- package/static/assets/codemirror/mode/fortran/fortran.js +188 -0
- package/static/assets/codemirror/mode/gas/gas.js +353 -0
- package/static/assets/codemirror/mode/gfm/gfm.js +129 -0
- package/static/assets/codemirror/mode/gherkin/gherkin.js +194 -0
- package/static/assets/codemirror/mode/go/go.js +187 -0
- package/static/assets/codemirror/mode/groovy/groovy.js +245 -0
- package/static/assets/codemirror/mode/haml/haml.js +161 -0
- package/static/assets/codemirror/mode/handlebars/handlebars.js +70 -0
- package/static/assets/codemirror/mode/haskell/haskell.js +268 -0
- package/static/assets/codemirror/mode/haskell-literate/haskell-literate.js +43 -0
- package/static/assets/codemirror/mode/haxe/haxe.js +515 -0
- package/static/assets/codemirror/mode/htmlembedded/htmlembedded.js +37 -0
- package/static/assets/codemirror/mode/htmlmixed/htmlmixed.js +153 -0
- package/static/assets/codemirror/mode/http/http.js +113 -0
- package/static/assets/codemirror/mode/idl/idl.js +290 -0
- package/static/assets/codemirror/mode/javascript/javascript.js +960 -0
- package/static/assets/codemirror/mode/jinja2/jinja2.js +193 -0
- package/static/assets/codemirror/mode/jsx/jsx.js +149 -0
- package/static/assets/codemirror/mode/julia/julia.js +390 -0
- package/static/assets/codemirror/mode/livescript/livescript.js +280 -0
- package/static/assets/codemirror/mode/lua/lua.js +160 -0
- package/static/assets/codemirror/mode/markdown/markdown.js +886 -0
- package/static/assets/codemirror/mode/mathematica/mathematica.js +176 -0
- package/static/assets/codemirror/mode/mbox/mbox.js +129 -0
- package/static/assets/codemirror/mode/meta.js +221 -0
- package/static/assets/codemirror/mode/mirc/mirc.js +193 -0
- package/static/assets/codemirror/mode/mllike/mllike.js +359 -0
- package/static/assets/codemirror/mode/modelica/modelica.js +245 -0
- package/static/assets/codemirror/mode/mscgen/mscgen.js +175 -0
- package/static/assets/codemirror/mode/mumps/mumps.js +148 -0
- package/static/assets/codemirror/mode/nginx/nginx.js +178 -0
- package/static/assets/codemirror/mode/nsis/nsis.js +95 -0
- package/static/assets/codemirror/mode/ntriples/ntriples.js +195 -0
- package/static/assets/codemirror/mode/octave/octave.js +139 -0
- package/static/assets/codemirror/mode/oz/oz.js +252 -0
- package/static/assets/codemirror/mode/pascal/pascal.js +136 -0
- package/static/assets/codemirror/mode/pegjs/pegjs.js +111 -0
- package/static/assets/codemirror/mode/perl/perl.js +836 -0
- package/static/assets/codemirror/mode/php/php.js +234 -0
- package/static/assets/codemirror/mode/pig/pig.js +178 -0
- package/static/assets/codemirror/mode/powershell/powershell.js +398 -0
- package/static/assets/codemirror/mode/properties/properties.js +78 -0
- package/static/assets/codemirror/mode/protobuf/protobuf.js +72 -0
- package/static/assets/codemirror/mode/pug/pug.js +591 -0
- package/static/assets/codemirror/mode/puppet/puppet.js +220 -0
- package/static/assets/codemirror/mode/python/python.js +402 -0
- package/static/assets/codemirror/mode/q/q.js +139 -0
- package/static/assets/codemirror/mode/r/r.js +190 -0
- package/static/assets/codemirror/mode/rpm/changes/index.html +66 -0
- package/static/assets/codemirror/mode/rpm/rpm.js +109 -0
- package/static/assets/codemirror/mode/rst/rst.js +557 -0
- package/static/assets/codemirror/mode/ruby/ruby.js +303 -0
- package/static/assets/codemirror/mode/rust/rust.js +72 -0
- package/static/assets/codemirror/mode/sas/sas.js +303 -0
- package/static/assets/codemirror/mode/sass/sass.js +459 -0
- package/static/assets/codemirror/mode/scheme/scheme.js +284 -0
- package/static/assets/codemirror/mode/shell/shell.js +168 -0
- package/static/assets/codemirror/mode/sieve/sieve.js +193 -0
- package/static/assets/codemirror/mode/slim/slim.js +575 -0
- package/static/assets/codemirror/mode/smalltalk/smalltalk.js +168 -0
- package/static/assets/codemirror/mode/smarty/smarty.js +225 -0
- package/static/assets/codemirror/mode/solr/solr.js +104 -0
- package/static/assets/codemirror/mode/soy/soy.js +665 -0
- package/static/assets/codemirror/mode/sparql/sparql.js +184 -0
- package/static/assets/codemirror/mode/spreadsheet/spreadsheet.js +112 -0
- package/static/assets/codemirror/mode/sql/sql.js +529 -0
- package/static/assets/codemirror/mode/stex/stex.js +264 -0
- package/static/assets/codemirror/mode/stylus/stylus.js +775 -0
- package/static/assets/codemirror/mode/swift/swift.js +221 -0
- package/static/assets/codemirror/mode/tcl/tcl.js +140 -0
- package/static/assets/codemirror/mode/textile/textile.js +469 -0
- package/static/assets/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
- package/static/assets/codemirror/mode/tiddlywiki/tiddlywiki.js +308 -0
- package/static/assets/codemirror/mode/tiki/tiki.css +26 -0
- package/static/assets/codemirror/mode/tiki/tiki.js +312 -0
- package/static/assets/codemirror/mode/toml/toml.js +88 -0
- package/static/assets/codemirror/mode/tornado/tornado.js +68 -0
- package/static/assets/codemirror/mode/troff/troff.js +84 -0
- package/static/assets/codemirror/mode/ttcn/ttcn.js +283 -0
- package/static/assets/codemirror/mode/ttcn-cfg/ttcn-cfg.js +214 -0
- package/static/assets/codemirror/mode/turtle/turtle.js +162 -0
- package/static/assets/codemirror/mode/twig/twig.js +141 -0
- package/static/assets/codemirror/mode/vb/vb.js +275 -0
- package/static/assets/codemirror/mode/vbscript/vbscript.js +350 -0
- package/static/assets/codemirror/mode/velocity/velocity.js +202 -0
- package/static/assets/codemirror/mode/verilog/verilog.js +781 -0
- package/static/assets/codemirror/mode/vhdl/vhdl.js +189 -0
- package/static/assets/codemirror/mode/vue/vue.js +77 -0
- package/static/assets/codemirror/mode/wast/wast.js +132 -0
- package/static/assets/codemirror/mode/webidl/webidl.js +195 -0
- package/static/assets/codemirror/mode/xml/xml.js +417 -0
- package/static/assets/codemirror/mode/xquery/xquery.js +448 -0
- package/static/assets/codemirror/mode/yacas/yacas.js +204 -0
- package/static/assets/codemirror/mode/yaml/yaml.js +120 -0
- package/static/assets/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js +72 -0
- package/static/assets/codemirror/mode/z80/z80.js +116 -0
- package/static/assets/favicon.svg +25 -0
- package/static/assets/logo-dark.svg +32 -0
- package/static/assets/logo.svg +32 -0
- package/static/assets/mimes/7zip.svg +14 -0
- package/static/assets/mimes/application-7zip.svg +14 -0
- package/static/assets/mimes/application-atom+xml.svg +15 -0
- package/static/assets/mimes/application-atom.svg +15 -0
- package/static/assets/mimes/application-certificate.svg +28 -0
- package/static/assets/mimes/application-epub+zip.svg +10 -0
- package/static/assets/mimes/application-gzip.svg +16 -0
- package/static/assets/mimes/application-javascript.svg +6 -0
- package/static/assets/mimes/application-json.svg +11 -0
- package/static/assets/mimes/application-mathml+xml.svg +188 -0
- package/static/assets/mimes/application-mp4.svg +18 -0
- package/static/assets/mimes/application-msexcel.svg +1 -0
- package/static/assets/mimes/application-msword-template.svg +1 -0
- package/static/assets/mimes/application-msword.svg +1 -0
- package/static/assets/mimes/application-octet-stream.svg +273 -0
- package/static/assets/mimes/application-pdf.svg +13 -0
- package/static/assets/mimes/application-pgp-encrypted.svg +16 -0
- package/static/assets/mimes/application-pgp-keys.svg +16 -0
- package/static/assets/mimes/application-pgp-signature.svg +16 -0
- package/static/assets/mimes/application-pgp.svg +16 -0
- package/static/assets/mimes/application-postscript.svg +57 -0
- package/static/assets/mimes/application-powerpoint.svg +1 -0
- package/static/assets/mimes/application-rdf+xml.svg +14 -0
- package/static/assets/mimes/application-rss+xml.svg +15 -0
- package/static/assets/mimes/application-rtf.svg +14 -0
- package/static/assets/mimes/application-script-blank.svg +15 -0
- package/static/assets/mimes/application-sql.svg +1 -0
- package/static/assets/mimes/application-text.svg +14 -0
- package/static/assets/mimes/application-vnd.android.package-archive.svg +16 -0
- package/static/assets/mimes/application-vnd.apple.keynote.svg +16 -0
- package/static/assets/mimes/application-vnd.apple.numbers.svg +16 -0
- package/static/assets/mimes/application-vnd.apple.pages.svg +16 -0
- package/static/assets/mimes/application-vnd.ms-excel.sheet.binary.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-excel.sheet.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-excel.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-excel.template.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-powerpoint.presentation.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-powerpoint.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-powerpoint.template.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-word.document.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-word.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-word.template.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.mspowerpoint.svg +1 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.chart.svg +1 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.database.svg +155 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.formula-template.svg +263 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.formula.svg +188 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.graphics-template.svg +530 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.graphics.svg +89 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.presentation-template.svg +197 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.presentation.svg +122 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.spreadsheet-template.svg +452 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.spreadsheet.svg +266 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.text-master.svg +92 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.text-template.svg +90 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.text-web.svg +18 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.text.svg +92 -0
- package/static/assets/mimes/application-vnd.openofficeorg.extension.svg +59 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.presentationml.presentation.svg +1 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg +1 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg +1 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.spreadsheetml.template.svg +1 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg +1 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.wordprocessingml.template.svg +1 -0
- package/static/assets/mimes/application-vnd.rn-realmedia.svg +18 -0
- package/static/assets/mimes/application-vnd.sun.xml.calc.svg +1 -0
- package/static/assets/mimes/application-vnd.sun.xml.writer-global.svg +1 -0
- package/static/assets/mimes/application-vnd.sun.xml.writer-template.svg +1 -0
- package/static/assets/mimes/application-vnd.sun.xml.writer.svg +1 -0
- package/static/assets/mimes/application-vnd.sun.xml.writer.template.svg +14 -0
- package/static/assets/mimes/application-vnd.visio.svg +26 -0
- package/static/assets/mimes/application-wps-office.doc.svg +1 -0
- package/static/assets/mimes/application-wps-office.docx.svg +1 -0
- package/static/assets/mimes/application-wps-office.ppt.svg +1 -0
- package/static/assets/mimes/application-wps-office.pptx.svg +1 -0
- package/static/assets/mimes/application-wps-office.xls.svg +1 -0
- package/static/assets/mimes/application-wps-office.xlsx.svg +1 -0
- package/static/assets/mimes/application-x-7z-compressed.svg +14 -0
- package/static/assets/mimes/application-x-7zip.svg +14 -0
- package/static/assets/mimes/application-x-ace.svg +14 -0
- package/static/assets/mimes/application-x-addon.svg +59 -0
- package/static/assets/mimes/application-x-apple-diskimage.svg +1 -0
- package/static/assets/mimes/application-x-ar.svg +16 -0
- package/static/assets/mimes/application-x-arc.svg +14 -0
- package/static/assets/mimes/application-x-archive.svg +16 -0
- package/static/assets/mimes/application-x-arj.svg +14 -0
- package/static/assets/mimes/application-x-audacity-project.svg +24 -0
- package/static/assets/mimes/application-x-bittorrent.svg +53 -0
- package/static/assets/mimes/application-x-blender.svg +353 -0
- package/static/assets/mimes/application-x-bzdvi.svg +14 -0
- package/static/assets/mimes/application-x-bzip-compressed-tar.svg +14 -0
- package/static/assets/mimes/application-x-bzip.svg +16 -0
- package/static/assets/mimes/application-x-cd-image.svg +292 -0
- package/static/assets/mimes/application-x-cda.svg +358 -0
- package/static/assets/mimes/application-x-class-file.svg +37 -0
- package/static/assets/mimes/application-x-compress-tar.svg +16 -0
- package/static/assets/mimes/application-x-compress.svg +16 -0
- package/static/assets/mimes/application-x-compressed-tar.svg +14 -0
- package/static/assets/mimes/application-x-core.svg +20 -0
- package/static/assets/mimes/application-x-cpio.svg +16 -0
- package/static/assets/mimes/application-x-deb.svg +14 -0
- package/static/assets/mimes/application-x-designer.svg +48 -0
- package/static/assets/mimes/application-x-egon.svg +12 -0
- package/static/assets/mimes/application-x-executable.svg +40 -0
- package/static/assets/mimes/application-x-extension-html.svg +18 -0
- package/static/assets/mimes/application-x-font-afm.svg +14 -0
- package/static/assets/mimes/application-x-font-snf.svg +14 -0
- package/static/assets/mimes/application-x-font-speedo.svg +14 -0
- package/static/assets/mimes/application-x-font-type1.svg +14 -0
- package/static/assets/mimes/application-x-gettext-translation.svg +14 -0
- package/static/assets/mimes/application-x-glade.svg +48 -0
- package/static/assets/mimes/application-x-gnome-theme-package.svg +109 -0
- package/static/assets/mimes/application-x-gzdvi.svg +16 -0
- package/static/assets/mimes/application-x-gzip.svg +16 -0
- package/static/assets/mimes/application-x-httpd-php.svg +18 -0
- package/static/assets/mimes/application-x-iso9660-image.svg +292 -0
- package/static/assets/mimes/application-x-java-archive.svg +16 -0
- package/static/assets/mimes/application-x-java.svg +37 -0
- package/static/assets/mimes/application-x-jokosher.svg +24 -0
- package/static/assets/mimes/application-x-kcachegrind.svg +273 -0
- package/static/assets/mimes/application-x-kcsrc.svg +109 -0
- package/static/assets/mimes/application-x-keepass.svg +2 -0
- package/static/assets/mimes/application-x-keepass2.svg +2 -0
- package/static/assets/mimes/application-x-kgetlist.svg +53 -0
- package/static/assets/mimes/application-x-lha.svg +14 -0
- package/static/assets/mimes/application-x-lzma-compressed-tar.svg +16 -0
- package/static/assets/mimes/application-x-lzop.svg +16 -0
- package/static/assets/mimes/application-x-m4.svg +14 -0
- package/static/assets/mimes/application-x-matroska.svg +18 -0
- package/static/assets/mimes/application-x-mplayer2.svg +18 -0
- package/static/assets/mimes/application-x-ms-application.svg +306 -0
- package/static/assets/mimes/application-x-ms-dos-executable.svg +306 -0
- package/static/assets/mimes/application-x-msdos-program.svg +306 -0
- package/static/assets/mimes/application-x-msdownload.svg +306 -0
- package/static/assets/mimes/application-x-msi.svg +306 -0
- package/static/assets/mimes/application-x-mswinurl.svg +18 -0
- package/static/assets/mimes/application-x-mswrite.svg +1 -0
- package/static/assets/mimes/application-x-nzb.svg +15 -0
- package/static/assets/mimes/application-x-object.svg +273 -0
- package/static/assets/mimes/application-x-ole-storage.svg +273 -0
- package/static/assets/mimes/application-x-pak.svg +16 -0
- package/static/assets/mimes/application-x-perl.svg +15 -0
- package/static/assets/mimes/application-x-php.svg +18 -0
- package/static/assets/mimes/application-x-plasma.svg +20 -0
- package/static/assets/mimes/application-x-python-bytecode.svg +16 -0
- package/static/assets/mimes/application-x-rar.svg +14 -0
- package/static/assets/mimes/application-x-rpm.svg +14 -0
- package/static/assets/mimes/application-x-ruby.svg +22 -0
- package/static/assets/mimes/application-x-sh.svg +17 -0
- package/static/assets/mimes/application-x-shared-library-la.svg +62 -0
- package/static/assets/mimes/application-x-sharedlib.svg +62 -0
- package/static/assets/mimes/application-x-shellscript.svg +17 -0
- package/static/assets/mimes/application-x-shockwave-flash.svg +18 -0
- package/static/assets/mimes/application-x-srt.svg +210 -0
- package/static/assets/mimes/application-x-subrip.svg +210 -0
- package/static/assets/mimes/application-x-tar.svg +16 -0
- package/static/assets/mimes/application-x-tarz.svg +14 -0
- package/static/assets/mimes/application-x-tex.svg +79 -0
- package/static/assets/mimes/application-x-theme.svg +109 -0
- package/static/assets/mimes/application-x-trash.svg +14 -0
- package/static/assets/mimes/application-x-tzo.svg +14 -0
- package/static/assets/mimes/application-x-wine-extension-pdd.svg +14 -0
- package/static/assets/mimes/application-x-zip.svg +14 -0
- package/static/assets/mimes/application-x-zoo.svg +14 -0
- package/static/assets/mimes/application-xhtml+xml.svg +18 -0
- package/static/assets/mimes/application-xhtml.svg +18 -0
- package/static/assets/mimes/application-xml.svg +18 -0
- package/static/assets/mimes/application-xsd.svg +18 -0
- package/static/assets/mimes/application-xslt+xml.svg +18 -0
- package/static/assets/mimes/application-zip.svg +14 -0
- package/static/assets/mimes/applications-java.svg +14 -0
- package/static/assets/mimes/archive.svg +16 -0
- package/static/assets/mimes/ascii.svg +14 -0
- package/static/assets/mimes/audio-ac3.svg +24 -0
- package/static/assets/mimes/audio-flac.svg +24 -0
- package/static/assets/mimes/audio-mpeg.svg +24 -0
- package/static/assets/mimes/audio-vn.rn-realmedia.svg +18 -0
- package/static/assets/mimes/audio-vnd.rn-realvideo.svg +18 -0
- package/static/assets/mimes/audio-x-adpcm.svg +24 -0
- package/static/assets/mimes/audio-x-aiff.svg +24 -0
- package/static/assets/mimes/audio-x-flac+ogg.svg +24 -0
- package/static/assets/mimes/audio-x-flac.svg +24 -0
- package/static/assets/mimes/audio-x-generic.svg +24 -0
- package/static/assets/mimes/audio-x-it.svg +24 -0
- package/static/assets/mimes/audio-x-monkey.svg +24 -0
- package/static/assets/mimes/audio-x-mpegurl.svg +24 -0
- package/static/assets/mimes/audio-x-wav.svg +24 -0
- package/static/assets/mimes/audio-x-xi.svg +24 -0
- package/static/assets/mimes/audio-x-xm.svg +24 -0
- package/static/assets/mimes/binary.svg +40 -0
- package/static/assets/mimes/deb.svg +14 -0
- package/static/assets/mimes/directory.svg +9 -0
- package/static/assets/mimes/directory_disabled.svg +9 -0
- package/static/assets/mimes/directory_error.svg +9 -0
- package/static/assets/mimes/directory_share.svg +9 -0
- package/static/assets/mimes/directory_sync.svg +9 -0
- package/static/assets/mimes/divx.svg +18 -0
- package/static/assets/mimes/document.svg +14 -0
- package/static/assets/mimes/emblem-package.svg +16 -0
- package/static/assets/mimes/eps.svg +24 -0
- package/static/assets/mimes/exec.svg +40 -0
- package/static/assets/mimes/extension.svg +59 -0
- package/static/assets/mimes/file.svg +12 -0
- package/static/assets/mimes/folder-tar.svg +16 -0
- package/static/assets/mimes/folder_tar.svg +16 -0
- package/static/assets/mimes/font-otf.svg +14 -0
- package/static/assets/mimes/font-x-generic.svg +14 -0
- package/static/assets/mimes/font.svg +14 -0
- package/static/assets/mimes/font_bitmap.svg +14 -0
- package/static/assets/mimes/font_truetype.svg +14 -0
- package/static/assets/mimes/font_type1.svg +14 -0
- package/static/assets/mimes/fonts-package.svg +16 -0
- package/static/assets/mimes/gedit-plugin.svg +59 -0
- package/static/assets/mimes/gnome-exe-thumbnailer-generic-x.svg +306 -0
- package/static/assets/mimes/gnome-exe-thumbnailer-generic.svg +306 -0
- package/static/assets/mimes/gnome-exe-thumbnailer-template.svg +306 -0
- package/static/assets/mimes/gnome-fs-executable.svg +40 -0
- package/static/assets/mimes/gnome-mime-application-atom+xml.svg +15 -0
- package/static/assets/mimes/gnome-mime-application-msexcel.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-msword.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-ogg.svg +24 -0
- package/static/assets/mimes/gnome-mime-application-pdf.svg +13 -0
- package/static/assets/mimes/gnome-mime-application-postscript.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-powerpoint.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-rss+xml.svg +15 -0
- package/static/assets/mimes/gnome-mime-application-rtf.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-vnd.ms-excel.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.ms-powerpoint.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.ms-word.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.mspowerpoint.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.oasis.opendocument.formula.svg +188 -0
- package/static/assets/mimes/gnome-mime-application-vnd.oasis.opendocument.text-web.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.presentation.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.rn-realmedia-secure.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-vnd.rn-realmedia-vbr.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-vnd.rn-realmedia.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.doc.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.docx.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.ppt.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.pptx.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.xls.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.xlsx.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-x-7z-compressed.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-7zip.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-archive.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-arj.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-bittorrent.svg +53 -0
- package/static/assets/mimes/gnome-mime-application-x-bzip-compressed-tar.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-bzip-compressed.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-bzip.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-class-file.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-compress.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-compressed-tar.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-cpio-compressed.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-cpio.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-deb.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-designer.svg +48 -0
- package/static/assets/mimes/gnome-mime-application-x-executable.svg +40 -0
- package/static/assets/mimes/gnome-mime-application-x-font-afm.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-font-bdf.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-font-linux-psf.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-font-pcf.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-font-sunos-news.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-font-ttf.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-glade.svg +48 -0
- package/static/assets/mimes/gnome-mime-application-x-gnome-app-info.svg +109 -0
- package/static/assets/mimes/gnome-mime-application-x-gnome-theme-package.svg +109 -0
- package/static/assets/mimes/gnome-mime-application-x-gzip.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-gzpostscript.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-jar.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-java.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-killustrator.svg +12 -0
- package/static/assets/mimes/gnome-mime-application-x-lha.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-lhz.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-lzma-compressed-tar.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-lzma.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-ms-dos-executable.svg +306 -0
- package/static/assets/mimes/gnome-mime-application-x-perl.svg +15 -0
- package/static/assets/mimes/gnome-mime-application-x-php.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-x-python-bytecode.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-rar.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-rpm.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-ruby.svg +22 -0
- package/static/assets/mimes/gnome-mime-application-x-shellscript.svg +17 -0
- package/static/assets/mimes/gnome-mime-application-x-shockwave-flash.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-x-stuffit.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-tar.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-tarz.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-tex.svg +79 -0
- package/static/assets/mimes/gnome-mime-application-x-theme.svg +109 -0
- package/static/assets/mimes/gnome-mime-application-x-zip.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-xhtml+xml.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-xml.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-zip.svg +14 -0
- package/static/assets/mimes/gnome-mime-application.svg +40 -0
- package/static/assets/mimes/gnome-mime-audio.svg +24 -0
- package/static/assets/mimes/gnome-mime-image-vnd.adobe.photoshop.svg +14 -0
- package/static/assets/mimes/gnome-mime-image-x-cmu-raster.svg +12 -0
- package/static/assets/mimes/gnome-mime-image-x-killustrator.svg +12 -0
- package/static/assets/mimes/gnome-mime-image-x-psd.svg +14 -0
- package/static/assets/mimes/gnome-mime-image-x-xpixmap.svg +12 -0
- package/static/assets/mimes/gnome-mime-image.svg +12 -0
- package/static/assets/mimes/gnome-mime-text-html.svg +18 -0
- package/static/assets/mimes/gnome-mime-text-install.svg +20 -0
- package/static/assets/mimes/gnome-mime-text-plain.svg +14 -0
- package/static/assets/mimes/gnome-mime-text-vnd.wap.wml.svg +18 -0
- package/static/assets/mimes/gnome-mime-text-x-changelog.svg +208 -0
- package/static/assets/mimes/gnome-mime-text-x-copying.svg +17 -0
- package/static/assets/mimes/gnome-mime-text-x-csh.svg +17 -0
- package/static/assets/mimes/gnome-mime-text-x-gtkrc.svg +109 -0
- package/static/assets/mimes/gnome-mime-text-x-install.svg +17 -0
- package/static/assets/mimes/gnome-mime-text-x-java-source.svg +14 -0
- package/static/assets/mimes/gnome-mime-text-x-java.svg +14 -0
- package/static/assets/mimes/gnome-mime-text-x-makefile.svg +176 -0
- package/static/assets/mimes/gnome-mime-text-x-opml+xml.svg +15 -0
- package/static/assets/mimes/gnome-mime-text-x-opml.svg +15 -0
- package/static/assets/mimes/gnome-mime-text-x-python.svg +16 -0
- package/static/assets/mimes/gnome-mime-text-x-readme.svg +15 -0
- package/static/assets/mimes/gnome-mime-text-x-sh.svg +17 -0
- package/static/assets/mimes/gnome-mime-text-x-zsh.svg +17 -0
- package/static/assets/mimes/gnome-mime-text.svg +14 -0
- package/static/assets/mimes/gnome-mime-video-x-ms-asf.svg +18 -0
- package/static/assets/mimes/gnome-mime-video-x-ms-wmv.svg +18 -0
- package/static/assets/mimes/gnome-mime-video.svg +18 -0
- package/static/assets/mimes/gnome-mime-x-font-afm.svg +14 -0
- package/static/assets/mimes/gnome-mime-x-install.svg +20 -0
- package/static/assets/mimes/gnome-package.svg +16 -0
- package/static/assets/mimes/html.svg +18 -0
- package/static/assets/mimes/image-gif.svg +12 -0
- package/static/assets/mimes/image-jpeg.svg +12 -0
- package/static/assets/mimes/image-png.svg +12 -0
- package/static/assets/mimes/image-svg+xml-compressed.svg +12 -0
- package/static/assets/mimes/image-svg+xml.svg +12 -0
- package/static/assets/mimes/image-svg.svg +12 -0
- package/static/assets/mimes/image-vnd.adobe.photoshop.svg +14 -0
- package/static/assets/mimes/image-vnd.microsoft.icon.svg +12 -0
- package/static/assets/mimes/image-x-eps.svg +24 -0
- package/static/assets/mimes/image-x-generic.svg +12 -0
- package/static/assets/mimes/image-x-psd.svg +14 -0
- package/static/assets/mimes/image-x-psdimage-x-psd.svg +14 -0
- package/static/assets/mimes/image-x-xcf.svg +21 -0
- package/static/assets/mimes/image-x-xfig.svg +12 -0
- package/static/assets/mimes/image.svg +12 -0
- package/static/assets/mimes/internet-feed.svg +15 -0
- package/static/assets/mimes/libpeas-plugin.svg +59 -0
- package/static/assets/mimes/libreoffice-database.svg +155 -0
- package/static/assets/mimes/libreoffice-extension.svg +59 -0
- package/static/assets/mimes/libreoffice-extensionn.svg +59 -0
- package/static/assets/mimes/libreoffice-formula.svg +188 -0
- package/static/assets/mimes/libreoffice-oasis-formula.svg +188 -0
- package/static/assets/mimes/libreoffice34-extension.svg +59 -0
- package/static/assets/mimes/media-audio.svg +24 -0
- package/static/assets/mimes/media-video.svg +18 -0
- package/static/assets/mimes/mime-ascii.svg +14 -0
- package/static/assets/mimes/mime_ascii.svg +14 -0
- package/static/assets/mimes/misc.svg +14 -0
- package/static/assets/mimes/multipart-encrypted.svg +273 -0
- package/static/assets/mimes/music.svg +24 -0
- package/static/assets/mimes/none.svg +110 -0
- package/static/assets/mimes/old-file.svg +22 -0
- package/static/assets/mimes/openofficeorg3-extension.svg +59 -0
- package/static/assets/mimes/package-x-generic.svg +16 -0
- package/static/assets/mimes/package.svg +16 -0
- package/static/assets/mimes/package_editors.svg +14 -0
- package/static/assets/mimes/packages-gdebi.svg +14 -0
- package/static/assets/mimes/pdf.svg +13 -0
- package/static/assets/mimes/preferences-certificate.svg +28 -0
- package/static/assets/mimes/preferences-plugin.svg +59 -0
- package/static/assets/mimes/rar.svg +14 -0
- package/static/assets/mimes/raw.svg +12 -0
- package/static/assets/mimes/rpm.svg +14 -0
- package/static/assets/mimes/scii.svg +14 -0
- package/static/assets/mimes/shellscript.svg +17 -0
- package/static/assets/mimes/sound.svg +24 -0
- package/static/assets/mimes/stock_certificate.svg +28 -0
- package/static/assets/mimes/stock_new-formula.svg +188 -0
- package/static/assets/mimes/stock_new-html.svg +18 -0
- package/static/assets/mimes/stock_script.svg +17 -0
- package/static/assets/mimes/stock_scripts.svg +17 -0
- package/static/assets/mimes/tar.svg +16 -0
- package/static/assets/mimes/text-css.svg +18 -0
- package/static/assets/mimes/text-enriched.svg +14 -0
- package/static/assets/mimes/text-html.svg +18 -0
- package/static/assets/mimes/text-htmlh.svg +18 -0
- package/static/assets/mimes/text-javascript.svg +6 -0
- package/static/assets/mimes/text-markdown.svg +26 -0
- package/static/assets/mimes/text-mht.svg +18 -0
- package/static/assets/mimes/text-plain.svg +14 -0
- package/static/assets/mimes/text-richtext.svg +14 -0
- package/static/assets/mimes/text-typescript.svg +1 -0
- package/static/assets/mimes/text-x-bak.svg +14 -0
- package/static/assets/mimes/text-x-bibtex.svg +79 -0
- package/static/assets/mimes/text-x-changelog.svg +208 -0
- package/static/assets/mimes/text-x-copying.svg +17 -0
- package/static/assets/mimes/text-x-generic.svg +14 -0
- package/static/assets/mimes/text-x-gtkrc.svg +109 -0
- package/static/assets/mimes/text-x-install.svg +20 -0
- package/static/assets/mimes/text-x-java-source.svg +14 -0
- package/static/assets/mimes/text-x-java.svg +14 -0
- package/static/assets/mimes/text-x-log.svg +1135 -0
- package/static/assets/mimes/text-x-lua.svg +14 -0
- package/static/assets/mimes/text-x-makefile.svg +176 -0
- package/static/assets/mimes/text-x-microdvd.svg +210 -0
- package/static/assets/mimes/text-x-nfo.svg +14 -0
- package/static/assets/mimes/text-x-opml+xml.svg +15 -0
- package/static/assets/mimes/text-x-opml.svg +15 -0
- package/static/assets/mimes/text-x-patch.svg +19 -0
- package/static/assets/mimes/text-x-perl.svg +15 -0
- package/static/assets/mimes/text-x-python.svg +16 -0
- package/static/assets/mimes/text-x-readme.svg +15 -0
- package/static/assets/mimes/text-x-ruby.svg +22 -0
- package/static/assets/mimes/text-x-script.svg +17 -0
- package/static/assets/mimes/text-x-tex.svg +79 -0
- package/static/assets/mimes/text-x-vala.svg +14 -0
- package/static/assets/mimes/text-x.svg +14 -0
- package/static/assets/mimes/text-xmcd.svg +358 -0
- package/static/assets/mimes/text-xml.svg +18 -0
- package/static/assets/mimes/text-yaml.svg +1 -0
- package/static/assets/mimes/text.svg +14 -0
- package/static/assets/mimes/text2.svg +14 -0
- package/static/assets/mimes/tgz.svg +16 -0
- package/static/assets/mimes/txt.svg +14 -0
- package/static/assets/mimes/txt2.svg +14 -0
- package/static/assets/mimes/unknown.svg +110 -0
- package/static/assets/mimes/uri-mms.svg +18 -0
- package/static/assets/mimes/uri-mmst.svg +18 -0
- package/static/assets/mimes/uri-mmsu.svg +18 -0
- package/static/assets/mimes/uri-pnm.svg +18 -0
- package/static/assets/mimes/uri-rtspt.svg +18 -0
- package/static/assets/mimes/uri-rtspu.svg +18 -0
- package/static/assets/mimes/video-quicktime.svg +18 -0
- package/static/assets/mimes/video-vivo.svg +18 -0
- package/static/assets/mimes/video-wavelet.svg +18 -0
- package/static/assets/mimes/video-webm.svg +18 -0
- package/static/assets/mimes/video-x-anim.svg +18 -0
- package/static/assets/mimes/video-x-flic.svg +18 -0
- package/static/assets/mimes/video-x-generic.svg +18 -0
- package/static/assets/mimes/video-x-google-vlc-plugin.svg +18 -0
- package/static/assets/mimes/video-x-javafx.svg +18 -0
- package/static/assets/mimes/video-x-matroska.svg +18 -0
- package/static/assets/mimes/video-x-mng.svg +18 -0
- package/static/assets/mimes/video-x-ms-asf-plugin.svg +18 -0
- package/static/assets/mimes/video-x-ms-asf.svg +18 -0
- package/static/assets/mimes/video-x-ms-wmp.svg +18 -0
- package/static/assets/mimes/video-x-ms-wmv.svg +18 -0
- package/static/assets/mimes/video-x-nsv.svg +18 -0
- package/static/assets/mimes/video-x-sgi-movie.svg +18 -0
- package/static/assets/mimes/video-x-theora+ogg.svg +18 -0
- package/static/assets/mimes/video-x-wmv.svg +18 -0
- package/static/assets/mimes/video.svg +18 -0
- package/static/assets/mimes/www.svg +18 -0
- package/static/assets/mimes/x-kde-nsplugin-generated.svg +59 -0
- package/static/assets/mimes/zip.svg +14 -0
- package/static/assets/pdfjs/LICENSE +177 -0
- package/static/assets/pdfjs/build/pdf.mjs +23371 -0
- package/static/assets/pdfjs/build/pdf.mjs.map +1 -0
- package/static/assets/pdfjs/build/pdf.sandbox.mjs +218 -0
- package/static/assets/pdfjs/build/pdf.sandbox.mjs.map +1 -0
- package/static/assets/pdfjs/build/pdf.worker.mjs +58148 -0
- package/static/assets/pdfjs/build/pdf.worker.mjs.map +1 -0
- package/static/assets/pdfjs/version +1 -0
- package/static/assets/pdfjs/web/cmaps/78-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Add-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Add-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Add-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Add-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-0.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-1.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-3.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-4.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-5.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/B5pc-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/B5pc-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS1-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS1-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS2-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS2-V.bcmap +3 -0
- package/static/assets/pdfjs/web/cmaps/ETHK-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/ETHK-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/ETen-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/ETen-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/ETenms-B5-H.bcmap +3 -0
- package/static/assets/pdfjs/web/cmaps/ETenms-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Ext-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Ext-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GB-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GB-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GB-H.bcmap +4 -0
- package/static/assets/pdfjs/web/cmaps/GB-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBK-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBK-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBK2K-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBK2K-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBKp-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBKp-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBT-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBT-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBT-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBT-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBpc-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBpc-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKdla-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKdla-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKdlb-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKdlb-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKgccs-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKgccs-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKm314-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKm314-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKm471-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKm471-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKscs-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKscs-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Hankaku.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Hiragana.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-Johab-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-Johab-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCms-UHC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCms-UHC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Katakana.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/LICENSE +36 -0
- package/static/assets/pdfjs/web/cmaps/NWP-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/NWP-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Roman.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/WP-Symbol.bcmap +0 -0
- package/static/assets/pdfjs/web/compressed.tracemonkey-pldi-09.pdf +0 -0
- package/static/assets/pdfjs/web/debugger.css +114 -0
- package/static/assets/pdfjs/web/debugger.mjs +627 -0
- package/static/assets/pdfjs/web/iccs/CGATS001Compat-v2-micro.icc +0 -0
- package/static/assets/pdfjs/web/iccs/LICENSE +116 -0
- package/static/assets/pdfjs/web/images/altText_add.svg +3 -0
- package/static/assets/pdfjs/web/images/altText_disclaimer.svg +3 -0
- package/static/assets/pdfjs/web/images/altText_done.svg +3 -0
- package/static/assets/pdfjs/web/images/altText_spinner.svg +30 -0
- package/static/assets/pdfjs/web/images/altText_warning.svg +3 -0
- package/static/assets/pdfjs/web/images/annotation-check.svg +11 -0
- package/static/assets/pdfjs/web/images/annotation-comment.svg +16 -0
- package/static/assets/pdfjs/web/images/annotation-help.svg +26 -0
- package/static/assets/pdfjs/web/images/annotation-insert.svg +10 -0
- package/static/assets/pdfjs/web/images/annotation-key.svg +11 -0
- package/static/assets/pdfjs/web/images/annotation-newparagraph.svg +11 -0
- package/static/assets/pdfjs/web/images/annotation-noicon.svg +7 -0
- package/static/assets/pdfjs/web/images/annotation-note.svg +42 -0
- package/static/assets/pdfjs/web/images/annotation-paperclip.svg +6 -0
- package/static/assets/pdfjs/web/images/annotation-paragraph.svg +16 -0
- package/static/assets/pdfjs/web/images/annotation-pushpin.svg +7 -0
- package/static/assets/pdfjs/web/images/comment-actionsButton.svg +3 -0
- package/static/assets/pdfjs/web/images/comment-closeButton.svg +3 -0
- package/static/assets/pdfjs/web/images/comment-editButton.svg +3 -0
- package/static/assets/pdfjs/web/images/cursor-editorFreeHighlight.svg +6 -0
- package/static/assets/pdfjs/web/images/cursor-editorFreeText.svg +3 -0
- package/static/assets/pdfjs/web/images/cursor-editorInk.svg +4 -0
- package/static/assets/pdfjs/web/images/cursor-editorTextHighlight.svg +8 -0
- package/static/assets/pdfjs/web/images/editor-toolbar-delete.svg +5 -0
- package/static/assets/pdfjs/web/images/editor-toolbar-edit.svg +3 -0
- package/static/assets/pdfjs/web/images/findbarButton-next.svg +3 -0
- package/static/assets/pdfjs/web/images/findbarButton-previous.svg +3 -0
- package/static/assets/pdfjs/web/images/gv-toolbarButton-download.svg +3 -0
- package/static/assets/pdfjs/web/images/loading-icon.gif +0 -0
- package/static/assets/pdfjs/web/images/loading.svg +1 -0
- package/static/assets/pdfjs/web/images/messageBar_closingButton.svg +3 -0
- package/static/assets/pdfjs/web/images/messageBar_info.svg +3 -0
- package/static/assets/pdfjs/web/images/messageBar_warning.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-documentProperties.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-firstPage.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-handTool.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-lastPage.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-rotateCcw.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-rotateCw.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollHorizontal.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollPage.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollVertical.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollWrapped.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-selectTool.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-spreadEven.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-spreadNone.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-spreadOdd.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-bookmark.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-currentOutlineItem.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-download.svg +4 -0
- package/static/assets/pdfjs/web/images/toolbarButton-editorFreeText.svg +5 -0
- package/static/assets/pdfjs/web/images/toolbarButton-editorHighlight.svg +6 -0
- package/static/assets/pdfjs/web/images/toolbarButton-editorInk.svg +4 -0
- package/static/assets/pdfjs/web/images/toolbarButton-editorSignature.svg +6 -0
- package/static/assets/pdfjs/web/images/toolbarButton-editorStamp.svg +8 -0
- package/static/assets/pdfjs/web/images/toolbarButton-menuArrow.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-openFile.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-pageDown.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-pageUp.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-presentationMode.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-print.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-search.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-sidebarToggle.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-viewAttachments.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-viewLayers.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-viewOutline.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-viewThumbnail.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-zoomIn.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-zoomOut.svg +3 -0
- package/static/assets/pdfjs/web/images/treeitem-collapsed.svg +1 -0
- package/static/assets/pdfjs/web/images/treeitem-expanded.svg +1 -0
- package/static/assets/pdfjs/web/locale/ach/viewer.ftl +275 -0
- package/static/assets/pdfjs/web/locale/af/viewer.ftl +262 -0
- package/static/assets/pdfjs/web/locale/an/viewer.ftl +307 -0
- package/static/assets/pdfjs/web/locale/ar/viewer.ftl +627 -0
- package/static/assets/pdfjs/web/locale/ast/viewer.ftl +251 -0
- package/static/assets/pdfjs/web/locale/az/viewer.ftl +307 -0
- package/static/assets/pdfjs/web/locale/be/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/bg/viewer.ftl +451 -0
- package/static/assets/pdfjs/web/locale/bn/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/bo/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/br/viewer.ftl +382 -0
- package/static/assets/pdfjs/web/locale/brx/viewer.ftl +268 -0
- package/static/assets/pdfjs/web/locale/bs/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/ca/viewer.ftl +343 -0
- package/static/assets/pdfjs/web/locale/cak/viewer.ftl +341 -0
- package/static/assets/pdfjs/web/locale/ckb/viewer.ftl +292 -0
- package/static/assets/pdfjs/web/locale/cs/viewer.ftl +621 -0
- package/static/assets/pdfjs/web/locale/cy/viewer.ftl +627 -0
- package/static/assets/pdfjs/web/locale/da/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/de/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/dsb/viewer.ftl +621 -0
- package/static/assets/pdfjs/web/locale/el/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/en-CA/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/en-GB/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/en-US/viewer.ftl +667 -0
- package/static/assets/pdfjs/web/locale/eo/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/es-AR/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/es-CL/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/es-ES/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/es-MX/viewer.ftl +580 -0
- package/static/assets/pdfjs/web/locale/et/viewer.ftl +319 -0
- package/static/assets/pdfjs/web/locale/eu/viewer.ftl +619 -0
- package/static/assets/pdfjs/web/locale/fa/viewer.ftl +378 -0
- package/static/assets/pdfjs/web/locale/ff/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/fi/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/fr/viewer.ftl +611 -0
- package/static/assets/pdfjs/web/locale/fur/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/fy-NL/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/ga-IE/viewer.ftl +263 -0
- package/static/assets/pdfjs/web/locale/gd/viewer.ftl +343 -0
- package/static/assets/pdfjs/web/locale/gl/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/gn/viewer.ftl +614 -0
- package/static/assets/pdfjs/web/locale/gu-IN/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/he/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/hi-IN/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/hr/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/hsb/viewer.ftl +621 -0
- package/static/assets/pdfjs/web/locale/hu/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/hy-AM/viewer.ftl +314 -0
- package/static/assets/pdfjs/web/locale/hye/viewer.ftl +318 -0
- package/static/assets/pdfjs/web/locale/ia/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/id/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/is/viewer.ftl +600 -0
- package/static/assets/pdfjs/web/locale/it/viewer.ftl +623 -0
- package/static/assets/pdfjs/web/locale/ja/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/ka/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/kab/viewer.ftl +595 -0
- package/static/assets/pdfjs/web/locale/kk/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/km/viewer.ftl +273 -0
- package/static/assets/pdfjs/web/locale/kn/viewer.ftl +263 -0
- package/static/assets/pdfjs/web/locale/ko/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/lij/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/lo/viewer.ftl +343 -0
- package/static/assets/pdfjs/web/locale/locale.json +1 -0
- package/static/assets/pdfjs/web/locale/lt/viewer.ftl +318 -0
- package/static/assets/pdfjs/web/locale/ltg/viewer.ftl +296 -0
- package/static/assets/pdfjs/web/locale/lv/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/meh/viewer.ftl +137 -0
- package/static/assets/pdfjs/web/locale/mk/viewer.ftl +265 -0
- package/static/assets/pdfjs/web/locale/ml/viewer.ftl +524 -0
- package/static/assets/pdfjs/web/locale/mr/viewer.ftl +289 -0
- package/static/assets/pdfjs/web/locale/ms/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/my/viewer.ftl +256 -0
- package/static/assets/pdfjs/web/locale/nb-NO/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/ne-NP/viewer.ftl +284 -0
- package/static/assets/pdfjs/web/locale/nl/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/nn-NO/viewer.ftl +609 -0
- package/static/assets/pdfjs/web/locale/oc/viewer.ftl +436 -0
- package/static/assets/pdfjs/web/locale/pa-IN/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/pl/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/pt-BR/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/pt-PT/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/rm/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/ro/viewer.ftl +302 -0
- package/static/assets/pdfjs/web/locale/ru/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/sat/viewer.ftl +355 -0
- package/static/assets/pdfjs/web/locale/sc/viewer.ftl +394 -0
- package/static/assets/pdfjs/web/locale/scn/viewer.ftl +124 -0
- package/static/assets/pdfjs/web/locale/sco/viewer.ftl +314 -0
- package/static/assets/pdfjs/web/locale/si/viewer.ftl +301 -0
- package/static/assets/pdfjs/web/locale/sk/viewer.ftl +621 -0
- package/static/assets/pdfjs/web/locale/skr/viewer.ftl +524 -0
- package/static/assets/pdfjs/web/locale/sl/viewer.ftl +621 -0
- package/static/assets/pdfjs/web/locale/son/viewer.ftl +256 -0
- package/static/assets/pdfjs/web/locale/sq/viewer.ftl +606 -0
- package/static/assets/pdfjs/web/locale/sr/viewer.ftl +451 -0
- package/static/assets/pdfjs/web/locale/sv-SE/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/szl/viewer.ftl +307 -0
- package/static/assets/pdfjs/web/locale/ta/viewer.ftl +273 -0
- package/static/assets/pdfjs/web/locale/te/viewer.ftl +289 -0
- package/static/assets/pdfjs/web/locale/tg/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/th/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/tl/viewer.ftl +307 -0
- package/static/assets/pdfjs/web/locale/tr/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/trs/viewer.ftl +247 -0
- package/static/assets/pdfjs/web/locale/uk/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/ur/viewer.ftl +298 -0
- package/static/assets/pdfjs/web/locale/uz/viewer.ftl +237 -0
- package/static/assets/pdfjs/web/locale/vi/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/wo/viewer.ftl +177 -0
- package/static/assets/pdfjs/web/locale/xh/viewer.ftl +262 -0
- package/static/assets/pdfjs/web/locale/zh-CN/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/zh-TW/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitDingbats.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitFixed.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitFixedBold.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitFixedBoldItalic.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitFixedItalic.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitSerif.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitSerifBold.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitSerifBoldItalic.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitSerifItalic.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitSymbol.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/LICENSE_FOXIT +27 -0
- package/static/assets/pdfjs/web/standard_fonts/LICENSE_LIBERATION +102 -0
- package/static/assets/pdfjs/web/standard_fonts/LiberationSans-Bold.ttf +0 -0
- package/static/assets/pdfjs/web/standard_fonts/LiberationSans-BoldItalic.ttf +0 -0
- package/static/assets/pdfjs/web/standard_fonts/LiberationSans-Italic.ttf +0 -0
- package/static/assets/pdfjs/web/standard_fonts/LiberationSans-Regular.ttf +0 -0
- package/static/assets/pdfjs/web/viewer.css +6766 -0
- package/static/assets/pdfjs/web/viewer.html +768 -0
- package/static/assets/pdfjs/web/viewer.mjs +17445 -0
- package/static/assets/pdfjs/web/viewer.mjs.map +1 -0
- package/static/assets/pdfjs/web/wasm/LICENSE_OPENJPEG +39 -0
- package/static/assets/pdfjs/web/wasm/LICENSE_PDFJS_OPENJPEG +22 -0
- package/static/assets/pdfjs/web/wasm/LICENSE_PDFJS_QCMS +22 -0
- package/static/assets/pdfjs/web/wasm/LICENSE_QCMS +21 -0
- package/static/assets/pdfjs/web/wasm/openjpeg.wasm +0 -0
- package/static/assets/pdfjs/web/wasm/openjpeg_nowasm_fallback.js +29 -0
- package/static/assets/pdfjs/web/wasm/qcms_bg.wasm +0 -0
- package/static/assets/protected.png +0 -0
- package/static/chunk-2EBPSJJT.js +1 -0
- package/static/chunk-3V7XYPSJ.js +4 -0
- package/static/chunk-4IYQWOGR.js +1 -0
- package/static/chunk-5RFOYHL3.js +1 -0
- package/static/chunk-7PCJMNDR.js +1 -0
- package/static/chunk-7WRQICEB.js +1 -0
- package/static/chunk-AKM2LQUU.js +1 -0
- package/static/chunk-ATFX6EIO.js +1 -0
- package/static/chunk-ATLT5DK5.js +1 -0
- package/static/chunk-DVHXFWN7.js +1 -0
- package/static/chunk-E27KCFP6.js +24 -0
- package/static/chunk-FPEGN42P.js +564 -0
- package/static/chunk-GAL4ENT6.js +1 -0
- package/static/chunk-GWUCWOVK.js +1 -0
- package/static/chunk-I644MKAO.js +1 -0
- package/static/chunk-IFJD2ISM.js +1 -0
- package/static/chunk-IUUTIYHF.js +1 -0
- package/static/chunk-JXZCNFW7.js +1 -0
- package/static/chunk-MEKYVWV4.js +1 -0
- package/static/chunk-MQZEETHL.js +7 -0
- package/static/chunk-NPLV4M2H.js +1 -0
- package/static/chunk-NU3TPXFY.js +4 -0
- package/static/chunk-O4CXCITB.js +1 -0
- package/static/chunk-OWGR4BYT.js +1 -0
- package/static/chunk-QFRQQ4K3.js +1 -0
- package/static/chunk-RAVRSB6R.js +1 -0
- package/static/chunk-RUNMEQOV.js +1 -0
- package/static/chunk-UGSGMP2I.js +1 -0
- package/static/chunk-UV4UIX6J.js +1 -0
- package/static/chunk-VBD7QTEP.js +1 -0
- package/static/chunk-VBWPPICY.js +1 -0
- package/static/chunk-VQRN7HFP.js +1 -0
- package/static/chunk-WTPZUBNX.js +24 -0
- package/static/chunk-XI72YZ2M.js +1 -0
- package/static/chunk-Z6IHRUVL.js +1 -0
- package/static/chunk-ZVPX26RB.js +1 -0
- package/static/chunk-ZZ3LHYOY.js +1 -0
- package/static/favicon.ico +0 -0
- package/static/index.html +19 -0
- package/static/main-ILCPT3IK.js +10 -0
- package/static/media/videogular-54D7AHHD.woff +0 -0
- package/static/media/videogular-H7MSXT3I.eot +0 -0
- package/static/media/videogular-ULU7CHZC.ttf +0 -0
- package/static/media/videogular-WX5DESMV.svg +29 -0
- package/static/polyfills-GNKGQMRJ.js +2 -0
- package/static/prerendered-routes.json +3 -0
- package/static/scripts-MQMRSPYD.js +30 -0
- package/static/styles-TJJDSCD4.css +1 -0
- package/sync-in-server.js +309 -0
|
@@ -0,0 +1,2417 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "5",
|
|
3
|
+
"dialect": "mysql",
|
|
4
|
+
"id": "d84b6bb0-f597-48b0-b14e-a2e0a8742a0a",
|
|
5
|
+
"prevId": "00000000-0000-0000-0000-000000000000",
|
|
6
|
+
"tables": {
|
|
7
|
+
"cache": {
|
|
8
|
+
"name": "cache",
|
|
9
|
+
"columns": {
|
|
10
|
+
"key": {
|
|
11
|
+
"name": "key",
|
|
12
|
+
"type": "varchar(768)",
|
|
13
|
+
"primaryKey": false,
|
|
14
|
+
"notNull": true,
|
|
15
|
+
"autoincrement": false
|
|
16
|
+
},
|
|
17
|
+
"value": {
|
|
18
|
+
"name": "value",
|
|
19
|
+
"type": "json",
|
|
20
|
+
"primaryKey": false,
|
|
21
|
+
"notNull": false,
|
|
22
|
+
"autoincrement": false
|
|
23
|
+
},
|
|
24
|
+
"expiration": {
|
|
25
|
+
"name": "expiration",
|
|
26
|
+
"type": "int",
|
|
27
|
+
"primaryKey": false,
|
|
28
|
+
"notNull": true,
|
|
29
|
+
"autoincrement": false,
|
|
30
|
+
"default": -1
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"indexes": {
|
|
34
|
+
"expiration_idx": {
|
|
35
|
+
"name": "expiration_idx",
|
|
36
|
+
"columns": [
|
|
37
|
+
"expiration"
|
|
38
|
+
],
|
|
39
|
+
"isUnique": false
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"foreignKeys": {},
|
|
43
|
+
"compositePrimaryKeys": {
|
|
44
|
+
"cache_key": {
|
|
45
|
+
"name": "cache_key",
|
|
46
|
+
"columns": [
|
|
47
|
+
"key"
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"uniqueConstraints": {},
|
|
52
|
+
"checkConstraint": {}
|
|
53
|
+
},
|
|
54
|
+
"users": {
|
|
55
|
+
"name": "users",
|
|
56
|
+
"columns": {
|
|
57
|
+
"id": {
|
|
58
|
+
"name": "id",
|
|
59
|
+
"type": "bigint unsigned",
|
|
60
|
+
"primaryKey": false,
|
|
61
|
+
"notNull": true,
|
|
62
|
+
"autoincrement": true
|
|
63
|
+
},
|
|
64
|
+
"email": {
|
|
65
|
+
"name": "email",
|
|
66
|
+
"type": "varchar(255)",
|
|
67
|
+
"primaryKey": false,
|
|
68
|
+
"notNull": true,
|
|
69
|
+
"autoincrement": false
|
|
70
|
+
},
|
|
71
|
+
"login": {
|
|
72
|
+
"name": "login",
|
|
73
|
+
"type": "varchar(255)",
|
|
74
|
+
"primaryKey": false,
|
|
75
|
+
"notNull": true,
|
|
76
|
+
"autoincrement": false
|
|
77
|
+
},
|
|
78
|
+
"firstName": {
|
|
79
|
+
"name": "firstName",
|
|
80
|
+
"type": "varchar(255)",
|
|
81
|
+
"primaryKey": false,
|
|
82
|
+
"notNull": false,
|
|
83
|
+
"autoincrement": false
|
|
84
|
+
},
|
|
85
|
+
"lastName": {
|
|
86
|
+
"name": "lastName",
|
|
87
|
+
"type": "varchar(255)",
|
|
88
|
+
"primaryKey": false,
|
|
89
|
+
"notNull": false,
|
|
90
|
+
"autoincrement": false
|
|
91
|
+
},
|
|
92
|
+
"password": {
|
|
93
|
+
"name": "password",
|
|
94
|
+
"type": "varchar(255)",
|
|
95
|
+
"primaryKey": false,
|
|
96
|
+
"notNull": true,
|
|
97
|
+
"autoincrement": false
|
|
98
|
+
},
|
|
99
|
+
"passwordAttempts": {
|
|
100
|
+
"name": "passwordAttempts",
|
|
101
|
+
"type": "tinyint unsigned",
|
|
102
|
+
"primaryKey": false,
|
|
103
|
+
"notNull": true,
|
|
104
|
+
"autoincrement": false,
|
|
105
|
+
"default": 0
|
|
106
|
+
},
|
|
107
|
+
"role": {
|
|
108
|
+
"name": "role",
|
|
109
|
+
"type": "tinyint unsigned",
|
|
110
|
+
"primaryKey": false,
|
|
111
|
+
"notNull": true,
|
|
112
|
+
"autoincrement": false,
|
|
113
|
+
"default": 1
|
|
114
|
+
},
|
|
115
|
+
"isActive": {
|
|
116
|
+
"name": "isActive",
|
|
117
|
+
"type": "boolean",
|
|
118
|
+
"primaryKey": false,
|
|
119
|
+
"notNull": true,
|
|
120
|
+
"autoincrement": false,
|
|
121
|
+
"default": true
|
|
122
|
+
},
|
|
123
|
+
"language": {
|
|
124
|
+
"name": "language",
|
|
125
|
+
"type": "char(2)",
|
|
126
|
+
"primaryKey": false,
|
|
127
|
+
"notNull": false,
|
|
128
|
+
"autoincrement": false
|
|
129
|
+
},
|
|
130
|
+
"permissions": {
|
|
131
|
+
"name": "permissions",
|
|
132
|
+
"type": "varchar(255)",
|
|
133
|
+
"primaryKey": false,
|
|
134
|
+
"notNull": true,
|
|
135
|
+
"autoincrement": false,
|
|
136
|
+
"default": "''"
|
|
137
|
+
},
|
|
138
|
+
"storageUsage": {
|
|
139
|
+
"name": "storageUsage",
|
|
140
|
+
"type": "bigint unsigned",
|
|
141
|
+
"primaryKey": false,
|
|
142
|
+
"notNull": false,
|
|
143
|
+
"autoincrement": false,
|
|
144
|
+
"default": 0
|
|
145
|
+
},
|
|
146
|
+
"storageQuota": {
|
|
147
|
+
"name": "storageQuota",
|
|
148
|
+
"type": "bigint unsigned",
|
|
149
|
+
"primaryKey": false,
|
|
150
|
+
"notNull": false,
|
|
151
|
+
"autoincrement": false
|
|
152
|
+
},
|
|
153
|
+
"notification": {
|
|
154
|
+
"name": "notification",
|
|
155
|
+
"type": "tinyint unsigned",
|
|
156
|
+
"primaryKey": false,
|
|
157
|
+
"notNull": true,
|
|
158
|
+
"autoincrement": false,
|
|
159
|
+
"default": 1
|
|
160
|
+
},
|
|
161
|
+
"onlineStatus": {
|
|
162
|
+
"name": "onlineStatus",
|
|
163
|
+
"type": "tinyint unsigned",
|
|
164
|
+
"primaryKey": false,
|
|
165
|
+
"notNull": true,
|
|
166
|
+
"autoincrement": false,
|
|
167
|
+
"default": 0
|
|
168
|
+
},
|
|
169
|
+
"currentIp": {
|
|
170
|
+
"name": "currentIp",
|
|
171
|
+
"type": "char(15)",
|
|
172
|
+
"primaryKey": false,
|
|
173
|
+
"notNull": false,
|
|
174
|
+
"autoincrement": false
|
|
175
|
+
},
|
|
176
|
+
"lastIp": {
|
|
177
|
+
"name": "lastIp",
|
|
178
|
+
"type": "char(15)",
|
|
179
|
+
"primaryKey": false,
|
|
180
|
+
"notNull": false,
|
|
181
|
+
"autoincrement": false
|
|
182
|
+
},
|
|
183
|
+
"currentAccess": {
|
|
184
|
+
"name": "currentAccess",
|
|
185
|
+
"type": "datetime",
|
|
186
|
+
"primaryKey": false,
|
|
187
|
+
"notNull": false,
|
|
188
|
+
"autoincrement": false
|
|
189
|
+
},
|
|
190
|
+
"lastAccess": {
|
|
191
|
+
"name": "lastAccess",
|
|
192
|
+
"type": "datetime",
|
|
193
|
+
"primaryKey": false,
|
|
194
|
+
"notNull": false,
|
|
195
|
+
"autoincrement": false
|
|
196
|
+
},
|
|
197
|
+
"createdAt": {
|
|
198
|
+
"name": "createdAt",
|
|
199
|
+
"type": "datetime",
|
|
200
|
+
"primaryKey": false,
|
|
201
|
+
"notNull": true,
|
|
202
|
+
"autoincrement": false,
|
|
203
|
+
"default": "CURRENT_TIMESTAMP"
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
"indexes": {
|
|
207
|
+
"email_idx": {
|
|
208
|
+
"name": "email_idx",
|
|
209
|
+
"columns": [
|
|
210
|
+
"email"
|
|
211
|
+
],
|
|
212
|
+
"isUnique": true
|
|
213
|
+
},
|
|
214
|
+
"login_idx": {
|
|
215
|
+
"name": "login_idx",
|
|
216
|
+
"columns": [
|
|
217
|
+
"login"
|
|
218
|
+
],
|
|
219
|
+
"isUnique": true
|
|
220
|
+
},
|
|
221
|
+
"role_idx": {
|
|
222
|
+
"name": "role_idx",
|
|
223
|
+
"columns": [
|
|
224
|
+
"role"
|
|
225
|
+
],
|
|
226
|
+
"isUnique": false
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"foreignKeys": {},
|
|
230
|
+
"compositePrimaryKeys": {
|
|
231
|
+
"users_id": {
|
|
232
|
+
"name": "users_id",
|
|
233
|
+
"columns": [
|
|
234
|
+
"id"
|
|
235
|
+
]
|
|
236
|
+
}
|
|
237
|
+
},
|
|
238
|
+
"uniqueConstraints": {},
|
|
239
|
+
"checkConstraint": {}
|
|
240
|
+
},
|
|
241
|
+
"groups": {
|
|
242
|
+
"name": "groups",
|
|
243
|
+
"columns": {
|
|
244
|
+
"id": {
|
|
245
|
+
"name": "id",
|
|
246
|
+
"type": "bigint unsigned",
|
|
247
|
+
"primaryKey": false,
|
|
248
|
+
"notNull": true,
|
|
249
|
+
"autoincrement": true
|
|
250
|
+
},
|
|
251
|
+
"name": {
|
|
252
|
+
"name": "name",
|
|
253
|
+
"type": "varchar(255)",
|
|
254
|
+
"primaryKey": false,
|
|
255
|
+
"notNull": true,
|
|
256
|
+
"autoincrement": false
|
|
257
|
+
},
|
|
258
|
+
"description": {
|
|
259
|
+
"name": "description",
|
|
260
|
+
"type": "varchar(255)",
|
|
261
|
+
"primaryKey": false,
|
|
262
|
+
"notNull": false,
|
|
263
|
+
"autoincrement": false
|
|
264
|
+
},
|
|
265
|
+
"type": {
|
|
266
|
+
"name": "type",
|
|
267
|
+
"type": "tinyint unsigned",
|
|
268
|
+
"primaryKey": false,
|
|
269
|
+
"notNull": true,
|
|
270
|
+
"autoincrement": false,
|
|
271
|
+
"default": 0
|
|
272
|
+
},
|
|
273
|
+
"visibility": {
|
|
274
|
+
"name": "visibility",
|
|
275
|
+
"type": "tinyint unsigned",
|
|
276
|
+
"primaryKey": false,
|
|
277
|
+
"notNull": true,
|
|
278
|
+
"autoincrement": false,
|
|
279
|
+
"default": 0
|
|
280
|
+
},
|
|
281
|
+
"parentId": {
|
|
282
|
+
"name": "parentId",
|
|
283
|
+
"type": "bigint unsigned",
|
|
284
|
+
"primaryKey": false,
|
|
285
|
+
"notNull": false,
|
|
286
|
+
"autoincrement": false
|
|
287
|
+
},
|
|
288
|
+
"permissions": {
|
|
289
|
+
"name": "permissions",
|
|
290
|
+
"type": "varchar(255)",
|
|
291
|
+
"primaryKey": false,
|
|
292
|
+
"notNull": true,
|
|
293
|
+
"autoincrement": false,
|
|
294
|
+
"default": "''"
|
|
295
|
+
},
|
|
296
|
+
"createdAt": {
|
|
297
|
+
"name": "createdAt",
|
|
298
|
+
"type": "datetime",
|
|
299
|
+
"primaryKey": false,
|
|
300
|
+
"notNull": true,
|
|
301
|
+
"autoincrement": false,
|
|
302
|
+
"default": "CURRENT_TIMESTAMP"
|
|
303
|
+
},
|
|
304
|
+
"modifiedAt": {
|
|
305
|
+
"name": "modifiedAt",
|
|
306
|
+
"type": "datetime",
|
|
307
|
+
"primaryKey": false,
|
|
308
|
+
"notNull": false,
|
|
309
|
+
"autoincrement": false,
|
|
310
|
+
"default": "CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP"
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
"indexes": {
|
|
314
|
+
"name_idx": {
|
|
315
|
+
"name": "name_idx",
|
|
316
|
+
"columns": [
|
|
317
|
+
"name"
|
|
318
|
+
],
|
|
319
|
+
"isUnique": true
|
|
320
|
+
},
|
|
321
|
+
"parent_idx": {
|
|
322
|
+
"name": "parent_idx",
|
|
323
|
+
"columns": [
|
|
324
|
+
"parentId"
|
|
325
|
+
],
|
|
326
|
+
"isUnique": false
|
|
327
|
+
},
|
|
328
|
+
"type_idx": {
|
|
329
|
+
"name": "type_idx",
|
|
330
|
+
"columns": [
|
|
331
|
+
"type"
|
|
332
|
+
],
|
|
333
|
+
"isUnique": false
|
|
334
|
+
},
|
|
335
|
+
"visibility_idx": {
|
|
336
|
+
"name": "visibility_idx",
|
|
337
|
+
"columns": [
|
|
338
|
+
"visibility"
|
|
339
|
+
],
|
|
340
|
+
"isUnique": false
|
|
341
|
+
}
|
|
342
|
+
},
|
|
343
|
+
"foreignKeys": {
|
|
344
|
+
"groups_parentId_groups_id_fk": {
|
|
345
|
+
"name": "groups_parentId_groups_id_fk",
|
|
346
|
+
"tableFrom": "groups",
|
|
347
|
+
"tableTo": "groups",
|
|
348
|
+
"columnsFrom": [
|
|
349
|
+
"parentId"
|
|
350
|
+
],
|
|
351
|
+
"columnsTo": [
|
|
352
|
+
"id"
|
|
353
|
+
],
|
|
354
|
+
"onDelete": "set null",
|
|
355
|
+
"onUpdate": "no action"
|
|
356
|
+
}
|
|
357
|
+
},
|
|
358
|
+
"compositePrimaryKeys": {
|
|
359
|
+
"groups_id": {
|
|
360
|
+
"name": "groups_id",
|
|
361
|
+
"columns": [
|
|
362
|
+
"id"
|
|
363
|
+
]
|
|
364
|
+
}
|
|
365
|
+
},
|
|
366
|
+
"uniqueConstraints": {},
|
|
367
|
+
"checkConstraint": {}
|
|
368
|
+
},
|
|
369
|
+
"users_groups": {
|
|
370
|
+
"name": "users_groups",
|
|
371
|
+
"columns": {
|
|
372
|
+
"userId": {
|
|
373
|
+
"name": "userId",
|
|
374
|
+
"type": "bigint unsigned",
|
|
375
|
+
"primaryKey": false,
|
|
376
|
+
"notNull": true,
|
|
377
|
+
"autoincrement": false
|
|
378
|
+
},
|
|
379
|
+
"groupId": {
|
|
380
|
+
"name": "groupId",
|
|
381
|
+
"type": "bigint unsigned",
|
|
382
|
+
"primaryKey": false,
|
|
383
|
+
"notNull": true,
|
|
384
|
+
"autoincrement": false
|
|
385
|
+
},
|
|
386
|
+
"role": {
|
|
387
|
+
"name": "role",
|
|
388
|
+
"type": "tinyint unsigned",
|
|
389
|
+
"primaryKey": false,
|
|
390
|
+
"notNull": true,
|
|
391
|
+
"autoincrement": false,
|
|
392
|
+
"default": 0
|
|
393
|
+
},
|
|
394
|
+
"createdAt": {
|
|
395
|
+
"name": "createdAt",
|
|
396
|
+
"type": "datetime",
|
|
397
|
+
"primaryKey": false,
|
|
398
|
+
"notNull": true,
|
|
399
|
+
"autoincrement": false,
|
|
400
|
+
"default": "CURRENT_TIMESTAMP"
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
"indexes": {
|
|
404
|
+
"user_idx": {
|
|
405
|
+
"name": "user_idx",
|
|
406
|
+
"columns": [
|
|
407
|
+
"userId"
|
|
408
|
+
],
|
|
409
|
+
"isUnique": false
|
|
410
|
+
},
|
|
411
|
+
"group_idx": {
|
|
412
|
+
"name": "group_idx",
|
|
413
|
+
"columns": [
|
|
414
|
+
"groupId"
|
|
415
|
+
],
|
|
416
|
+
"isUnique": false
|
|
417
|
+
}
|
|
418
|
+
},
|
|
419
|
+
"foreignKeys": {
|
|
420
|
+
"users_groups_userId_users_id_fk": {
|
|
421
|
+
"name": "users_groups_userId_users_id_fk",
|
|
422
|
+
"tableFrom": "users_groups",
|
|
423
|
+
"tableTo": "users",
|
|
424
|
+
"columnsFrom": [
|
|
425
|
+
"userId"
|
|
426
|
+
],
|
|
427
|
+
"columnsTo": [
|
|
428
|
+
"id"
|
|
429
|
+
],
|
|
430
|
+
"onDelete": "cascade",
|
|
431
|
+
"onUpdate": "no action"
|
|
432
|
+
},
|
|
433
|
+
"users_groups_groupId_groups_id_fk": {
|
|
434
|
+
"name": "users_groups_groupId_groups_id_fk",
|
|
435
|
+
"tableFrom": "users_groups",
|
|
436
|
+
"tableTo": "groups",
|
|
437
|
+
"columnsFrom": [
|
|
438
|
+
"groupId"
|
|
439
|
+
],
|
|
440
|
+
"columnsTo": [
|
|
441
|
+
"id"
|
|
442
|
+
],
|
|
443
|
+
"onDelete": "cascade",
|
|
444
|
+
"onUpdate": "no action"
|
|
445
|
+
}
|
|
446
|
+
},
|
|
447
|
+
"compositePrimaryKeys": {
|
|
448
|
+
"users_groups_userId_groupId_pk": {
|
|
449
|
+
"name": "users_groups_userId_groupId_pk",
|
|
450
|
+
"columns": [
|
|
451
|
+
"userId",
|
|
452
|
+
"groupId"
|
|
453
|
+
]
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
"uniqueConstraints": {},
|
|
457
|
+
"checkConstraint": {}
|
|
458
|
+
},
|
|
459
|
+
"users_guests": {
|
|
460
|
+
"name": "users_guests",
|
|
461
|
+
"columns": {
|
|
462
|
+
"userId": {
|
|
463
|
+
"name": "userId",
|
|
464
|
+
"type": "bigint unsigned",
|
|
465
|
+
"primaryKey": false,
|
|
466
|
+
"notNull": true,
|
|
467
|
+
"autoincrement": false
|
|
468
|
+
},
|
|
469
|
+
"guestId": {
|
|
470
|
+
"name": "guestId",
|
|
471
|
+
"type": "bigint unsigned",
|
|
472
|
+
"primaryKey": false,
|
|
473
|
+
"notNull": true,
|
|
474
|
+
"autoincrement": false
|
|
475
|
+
},
|
|
476
|
+
"createdAt": {
|
|
477
|
+
"name": "createdAt",
|
|
478
|
+
"type": "datetime",
|
|
479
|
+
"primaryKey": false,
|
|
480
|
+
"notNull": true,
|
|
481
|
+
"autoincrement": false,
|
|
482
|
+
"default": "CURRENT_TIMESTAMP"
|
|
483
|
+
}
|
|
484
|
+
},
|
|
485
|
+
"indexes": {
|
|
486
|
+
"user_idx": {
|
|
487
|
+
"name": "user_idx",
|
|
488
|
+
"columns": [
|
|
489
|
+
"userId"
|
|
490
|
+
],
|
|
491
|
+
"isUnique": false
|
|
492
|
+
},
|
|
493
|
+
"guest_id": {
|
|
494
|
+
"name": "guest_id",
|
|
495
|
+
"columns": [
|
|
496
|
+
"guestId"
|
|
497
|
+
],
|
|
498
|
+
"isUnique": false
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
"foreignKeys": {
|
|
502
|
+
"users_guests_userId_users_id_fk": {
|
|
503
|
+
"name": "users_guests_userId_users_id_fk",
|
|
504
|
+
"tableFrom": "users_guests",
|
|
505
|
+
"tableTo": "users",
|
|
506
|
+
"columnsFrom": [
|
|
507
|
+
"userId"
|
|
508
|
+
],
|
|
509
|
+
"columnsTo": [
|
|
510
|
+
"id"
|
|
511
|
+
],
|
|
512
|
+
"onDelete": "cascade",
|
|
513
|
+
"onUpdate": "no action"
|
|
514
|
+
},
|
|
515
|
+
"users_guests_guestId_users_id_fk": {
|
|
516
|
+
"name": "users_guests_guestId_users_id_fk",
|
|
517
|
+
"tableFrom": "users_guests",
|
|
518
|
+
"tableTo": "users",
|
|
519
|
+
"columnsFrom": [
|
|
520
|
+
"guestId"
|
|
521
|
+
],
|
|
522
|
+
"columnsTo": [
|
|
523
|
+
"id"
|
|
524
|
+
],
|
|
525
|
+
"onDelete": "cascade",
|
|
526
|
+
"onUpdate": "no action"
|
|
527
|
+
}
|
|
528
|
+
},
|
|
529
|
+
"compositePrimaryKeys": {
|
|
530
|
+
"users_guests_userId_guestId_pk": {
|
|
531
|
+
"name": "users_guests_userId_guestId_pk",
|
|
532
|
+
"columns": [
|
|
533
|
+
"userId",
|
|
534
|
+
"guestId"
|
|
535
|
+
]
|
|
536
|
+
}
|
|
537
|
+
},
|
|
538
|
+
"uniqueConstraints": {},
|
|
539
|
+
"checkConstraint": {
|
|
540
|
+
"user_guest_check": {
|
|
541
|
+
"name": "user_guest_check",
|
|
542
|
+
"value": "`users_guests`.`userId` <> `users_guests`.`guestId`"
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
},
|
|
546
|
+
"spaces": {
|
|
547
|
+
"name": "spaces",
|
|
548
|
+
"columns": {
|
|
549
|
+
"id": {
|
|
550
|
+
"name": "id",
|
|
551
|
+
"type": "bigint unsigned",
|
|
552
|
+
"primaryKey": false,
|
|
553
|
+
"notNull": true,
|
|
554
|
+
"autoincrement": true
|
|
555
|
+
},
|
|
556
|
+
"alias": {
|
|
557
|
+
"name": "alias",
|
|
558
|
+
"type": "varchar(255)",
|
|
559
|
+
"primaryKey": false,
|
|
560
|
+
"notNull": true,
|
|
561
|
+
"autoincrement": false
|
|
562
|
+
},
|
|
563
|
+
"name": {
|
|
564
|
+
"name": "name",
|
|
565
|
+
"type": "varchar(255)",
|
|
566
|
+
"primaryKey": false,
|
|
567
|
+
"notNull": true,
|
|
568
|
+
"autoincrement": false
|
|
569
|
+
},
|
|
570
|
+
"description": {
|
|
571
|
+
"name": "description",
|
|
572
|
+
"type": "varchar(255)",
|
|
573
|
+
"primaryKey": false,
|
|
574
|
+
"notNull": false,
|
|
575
|
+
"autoincrement": false
|
|
576
|
+
},
|
|
577
|
+
"enabled": {
|
|
578
|
+
"name": "enabled",
|
|
579
|
+
"type": "boolean",
|
|
580
|
+
"primaryKey": false,
|
|
581
|
+
"notNull": true,
|
|
582
|
+
"autoincrement": false,
|
|
583
|
+
"default": true
|
|
584
|
+
},
|
|
585
|
+
"storageUsage": {
|
|
586
|
+
"name": "storageUsage",
|
|
587
|
+
"type": "bigint unsigned",
|
|
588
|
+
"primaryKey": false,
|
|
589
|
+
"notNull": true,
|
|
590
|
+
"autoincrement": false,
|
|
591
|
+
"default": 0
|
|
592
|
+
},
|
|
593
|
+
"storageQuota": {
|
|
594
|
+
"name": "storageQuota",
|
|
595
|
+
"type": "bigint unsigned",
|
|
596
|
+
"primaryKey": false,
|
|
597
|
+
"notNull": false,
|
|
598
|
+
"autoincrement": false
|
|
599
|
+
},
|
|
600
|
+
"createdAt": {
|
|
601
|
+
"name": "createdAt",
|
|
602
|
+
"type": "datetime",
|
|
603
|
+
"primaryKey": false,
|
|
604
|
+
"notNull": true,
|
|
605
|
+
"autoincrement": false,
|
|
606
|
+
"default": "CURRENT_TIMESTAMP"
|
|
607
|
+
},
|
|
608
|
+
"modifiedAt": {
|
|
609
|
+
"name": "modifiedAt",
|
|
610
|
+
"type": "datetime",
|
|
611
|
+
"primaryKey": false,
|
|
612
|
+
"notNull": false,
|
|
613
|
+
"autoincrement": false,
|
|
614
|
+
"default": "CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP"
|
|
615
|
+
},
|
|
616
|
+
"disabledAt": {
|
|
617
|
+
"name": "disabledAt",
|
|
618
|
+
"type": "datetime",
|
|
619
|
+
"primaryKey": false,
|
|
620
|
+
"notNull": false,
|
|
621
|
+
"autoincrement": false
|
|
622
|
+
}
|
|
623
|
+
},
|
|
624
|
+
"indexes": {
|
|
625
|
+
"alias_idx": {
|
|
626
|
+
"name": "alias_idx",
|
|
627
|
+
"columns": [
|
|
628
|
+
"alias"
|
|
629
|
+
],
|
|
630
|
+
"isUnique": true
|
|
631
|
+
}
|
|
632
|
+
},
|
|
633
|
+
"foreignKeys": {},
|
|
634
|
+
"compositePrimaryKeys": {
|
|
635
|
+
"spaces_id": {
|
|
636
|
+
"name": "spaces_id",
|
|
637
|
+
"columns": [
|
|
638
|
+
"id"
|
|
639
|
+
]
|
|
640
|
+
}
|
|
641
|
+
},
|
|
642
|
+
"uniqueConstraints": {},
|
|
643
|
+
"checkConstraint": {}
|
|
644
|
+
},
|
|
645
|
+
"spaces_members": {
|
|
646
|
+
"name": "spaces_members",
|
|
647
|
+
"columns": {
|
|
648
|
+
"id": {
|
|
649
|
+
"name": "id",
|
|
650
|
+
"type": "bigint unsigned",
|
|
651
|
+
"primaryKey": false,
|
|
652
|
+
"notNull": true,
|
|
653
|
+
"autoincrement": true
|
|
654
|
+
},
|
|
655
|
+
"spaceId": {
|
|
656
|
+
"name": "spaceId",
|
|
657
|
+
"type": "bigint unsigned",
|
|
658
|
+
"primaryKey": false,
|
|
659
|
+
"notNull": true,
|
|
660
|
+
"autoincrement": false
|
|
661
|
+
},
|
|
662
|
+
"userId": {
|
|
663
|
+
"name": "userId",
|
|
664
|
+
"type": "bigint unsigned",
|
|
665
|
+
"primaryKey": false,
|
|
666
|
+
"notNull": false,
|
|
667
|
+
"autoincrement": false
|
|
668
|
+
},
|
|
669
|
+
"groupId": {
|
|
670
|
+
"name": "groupId",
|
|
671
|
+
"type": "bigint unsigned",
|
|
672
|
+
"primaryKey": false,
|
|
673
|
+
"notNull": false,
|
|
674
|
+
"autoincrement": false
|
|
675
|
+
},
|
|
676
|
+
"linkId": {
|
|
677
|
+
"name": "linkId",
|
|
678
|
+
"type": "bigint unsigned",
|
|
679
|
+
"primaryKey": false,
|
|
680
|
+
"notNull": false,
|
|
681
|
+
"autoincrement": false
|
|
682
|
+
},
|
|
683
|
+
"role": {
|
|
684
|
+
"name": "role",
|
|
685
|
+
"type": "tinyint unsigned",
|
|
686
|
+
"primaryKey": false,
|
|
687
|
+
"notNull": true,
|
|
688
|
+
"autoincrement": false,
|
|
689
|
+
"default": 0
|
|
690
|
+
},
|
|
691
|
+
"permissions": {
|
|
692
|
+
"name": "permissions",
|
|
693
|
+
"type": "varchar(32)",
|
|
694
|
+
"primaryKey": false,
|
|
695
|
+
"notNull": false,
|
|
696
|
+
"autoincrement": false,
|
|
697
|
+
"default": "''"
|
|
698
|
+
},
|
|
699
|
+
"createdAt": {
|
|
700
|
+
"name": "createdAt",
|
|
701
|
+
"type": "datetime",
|
|
702
|
+
"primaryKey": false,
|
|
703
|
+
"notNull": true,
|
|
704
|
+
"autoincrement": false,
|
|
705
|
+
"default": "CURRENT_TIMESTAMP"
|
|
706
|
+
},
|
|
707
|
+
"modifiedAt": {
|
|
708
|
+
"name": "modifiedAt",
|
|
709
|
+
"type": "datetime",
|
|
710
|
+
"primaryKey": false,
|
|
711
|
+
"notNull": false,
|
|
712
|
+
"autoincrement": false,
|
|
713
|
+
"default": "CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP"
|
|
714
|
+
}
|
|
715
|
+
},
|
|
716
|
+
"indexes": {
|
|
717
|
+
"space_idx": {
|
|
718
|
+
"name": "space_idx",
|
|
719
|
+
"columns": [
|
|
720
|
+
"spaceId"
|
|
721
|
+
],
|
|
722
|
+
"isUnique": false
|
|
723
|
+
},
|
|
724
|
+
"user_idx": {
|
|
725
|
+
"name": "user_idx",
|
|
726
|
+
"columns": [
|
|
727
|
+
"userId"
|
|
728
|
+
],
|
|
729
|
+
"isUnique": false
|
|
730
|
+
},
|
|
731
|
+
"group_idx": {
|
|
732
|
+
"name": "group_idx",
|
|
733
|
+
"columns": [
|
|
734
|
+
"groupId"
|
|
735
|
+
],
|
|
736
|
+
"isUnique": false
|
|
737
|
+
},
|
|
738
|
+
"link_idx": {
|
|
739
|
+
"name": "link_idx",
|
|
740
|
+
"columns": [
|
|
741
|
+
"linkId"
|
|
742
|
+
],
|
|
743
|
+
"isUnique": false
|
|
744
|
+
},
|
|
745
|
+
"role_idx": {
|
|
746
|
+
"name": "role_idx",
|
|
747
|
+
"columns": [
|
|
748
|
+
"role"
|
|
749
|
+
],
|
|
750
|
+
"isUnique": false
|
|
751
|
+
}
|
|
752
|
+
},
|
|
753
|
+
"foreignKeys": {
|
|
754
|
+
"spaces_members_spaceId_spaces_id_fk": {
|
|
755
|
+
"name": "spaces_members_spaceId_spaces_id_fk",
|
|
756
|
+
"tableFrom": "spaces_members",
|
|
757
|
+
"tableTo": "spaces",
|
|
758
|
+
"columnsFrom": [
|
|
759
|
+
"spaceId"
|
|
760
|
+
],
|
|
761
|
+
"columnsTo": [
|
|
762
|
+
"id"
|
|
763
|
+
],
|
|
764
|
+
"onDelete": "cascade",
|
|
765
|
+
"onUpdate": "no action"
|
|
766
|
+
},
|
|
767
|
+
"spaces_members_userId_users_id_fk": {
|
|
768
|
+
"name": "spaces_members_userId_users_id_fk",
|
|
769
|
+
"tableFrom": "spaces_members",
|
|
770
|
+
"tableTo": "users",
|
|
771
|
+
"columnsFrom": [
|
|
772
|
+
"userId"
|
|
773
|
+
],
|
|
774
|
+
"columnsTo": [
|
|
775
|
+
"id"
|
|
776
|
+
],
|
|
777
|
+
"onDelete": "cascade",
|
|
778
|
+
"onUpdate": "no action"
|
|
779
|
+
},
|
|
780
|
+
"spaces_members_groupId_groups_id_fk": {
|
|
781
|
+
"name": "spaces_members_groupId_groups_id_fk",
|
|
782
|
+
"tableFrom": "spaces_members",
|
|
783
|
+
"tableTo": "groups",
|
|
784
|
+
"columnsFrom": [
|
|
785
|
+
"groupId"
|
|
786
|
+
],
|
|
787
|
+
"columnsTo": [
|
|
788
|
+
"id"
|
|
789
|
+
],
|
|
790
|
+
"onDelete": "cascade",
|
|
791
|
+
"onUpdate": "no action"
|
|
792
|
+
},
|
|
793
|
+
"spaces_members_linkId_links_id_fk": {
|
|
794
|
+
"name": "spaces_members_linkId_links_id_fk",
|
|
795
|
+
"tableFrom": "spaces_members",
|
|
796
|
+
"tableTo": "links",
|
|
797
|
+
"columnsFrom": [
|
|
798
|
+
"linkId"
|
|
799
|
+
],
|
|
800
|
+
"columnsTo": [
|
|
801
|
+
"id"
|
|
802
|
+
],
|
|
803
|
+
"onDelete": "cascade",
|
|
804
|
+
"onUpdate": "no action"
|
|
805
|
+
}
|
|
806
|
+
},
|
|
807
|
+
"compositePrimaryKeys": {
|
|
808
|
+
"spaces_members_id": {
|
|
809
|
+
"name": "spaces_members_id",
|
|
810
|
+
"columns": [
|
|
811
|
+
"id"
|
|
812
|
+
]
|
|
813
|
+
}
|
|
814
|
+
},
|
|
815
|
+
"uniqueConstraints": {
|
|
816
|
+
"space_user_uniq": {
|
|
817
|
+
"name": "space_user_uniq",
|
|
818
|
+
"columns": [
|
|
819
|
+
"spaceId",
|
|
820
|
+
"userId"
|
|
821
|
+
]
|
|
822
|
+
},
|
|
823
|
+
"space_group_uniq": {
|
|
824
|
+
"name": "space_group_uniq",
|
|
825
|
+
"columns": [
|
|
826
|
+
"spaceId",
|
|
827
|
+
"groupId"
|
|
828
|
+
]
|
|
829
|
+
},
|
|
830
|
+
"space_link_uniq": {
|
|
831
|
+
"name": "space_link_uniq",
|
|
832
|
+
"columns": [
|
|
833
|
+
"spaceId",
|
|
834
|
+
"linkId"
|
|
835
|
+
]
|
|
836
|
+
}
|
|
837
|
+
},
|
|
838
|
+
"checkConstraint": {}
|
|
839
|
+
},
|
|
840
|
+
"spaces_roots": {
|
|
841
|
+
"name": "spaces_roots",
|
|
842
|
+
"columns": {
|
|
843
|
+
"id": {
|
|
844
|
+
"name": "id",
|
|
845
|
+
"type": "bigint unsigned",
|
|
846
|
+
"primaryKey": false,
|
|
847
|
+
"notNull": true,
|
|
848
|
+
"autoincrement": true
|
|
849
|
+
},
|
|
850
|
+
"spaceId": {
|
|
851
|
+
"name": "spaceId",
|
|
852
|
+
"type": "bigint unsigned",
|
|
853
|
+
"primaryKey": false,
|
|
854
|
+
"notNull": true,
|
|
855
|
+
"autoincrement": false
|
|
856
|
+
},
|
|
857
|
+
"fileId": {
|
|
858
|
+
"name": "fileId",
|
|
859
|
+
"type": "bigint unsigned",
|
|
860
|
+
"primaryKey": false,
|
|
861
|
+
"notNull": false,
|
|
862
|
+
"autoincrement": false
|
|
863
|
+
},
|
|
864
|
+
"alias": {
|
|
865
|
+
"name": "alias",
|
|
866
|
+
"type": "varchar(255)",
|
|
867
|
+
"primaryKey": false,
|
|
868
|
+
"notNull": true,
|
|
869
|
+
"autoincrement": false
|
|
870
|
+
},
|
|
871
|
+
"name": {
|
|
872
|
+
"name": "name",
|
|
873
|
+
"type": "varchar(255)",
|
|
874
|
+
"primaryKey": false,
|
|
875
|
+
"notNull": true,
|
|
876
|
+
"autoincrement": false
|
|
877
|
+
},
|
|
878
|
+
"externalPath": {
|
|
879
|
+
"name": "externalPath",
|
|
880
|
+
"type": "varchar(4096)",
|
|
881
|
+
"primaryKey": false,
|
|
882
|
+
"notNull": false,
|
|
883
|
+
"autoincrement": false
|
|
884
|
+
},
|
|
885
|
+
"permissions": {
|
|
886
|
+
"name": "permissions",
|
|
887
|
+
"type": "varchar(32)",
|
|
888
|
+
"primaryKey": false,
|
|
889
|
+
"notNull": false,
|
|
890
|
+
"autoincrement": false,
|
|
891
|
+
"default": "''"
|
|
892
|
+
},
|
|
893
|
+
"createdAt": {
|
|
894
|
+
"name": "createdAt",
|
|
895
|
+
"type": "datetime",
|
|
896
|
+
"primaryKey": false,
|
|
897
|
+
"notNull": true,
|
|
898
|
+
"autoincrement": false,
|
|
899
|
+
"default": "CURRENT_TIMESTAMP"
|
|
900
|
+
},
|
|
901
|
+
"modifiedAt": {
|
|
902
|
+
"name": "modifiedAt",
|
|
903
|
+
"type": "datetime",
|
|
904
|
+
"primaryKey": false,
|
|
905
|
+
"notNull": false,
|
|
906
|
+
"autoincrement": false,
|
|
907
|
+
"default": "CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP"
|
|
908
|
+
}
|
|
909
|
+
},
|
|
910
|
+
"indexes": {
|
|
911
|
+
"alias_idx": {
|
|
912
|
+
"name": "alias_idx",
|
|
913
|
+
"columns": [
|
|
914
|
+
"alias"
|
|
915
|
+
],
|
|
916
|
+
"isUnique": false
|
|
917
|
+
},
|
|
918
|
+
"space_idx": {
|
|
919
|
+
"name": "space_idx",
|
|
920
|
+
"columns": [
|
|
921
|
+
"spaceId"
|
|
922
|
+
],
|
|
923
|
+
"isUnique": false
|
|
924
|
+
},
|
|
925
|
+
"file_idx": {
|
|
926
|
+
"name": "file_idx",
|
|
927
|
+
"columns": [
|
|
928
|
+
"fileId"
|
|
929
|
+
],
|
|
930
|
+
"isUnique": false
|
|
931
|
+
}
|
|
932
|
+
},
|
|
933
|
+
"foreignKeys": {
|
|
934
|
+
"spaces_roots_spaceId_spaces_id_fk": {
|
|
935
|
+
"name": "spaces_roots_spaceId_spaces_id_fk",
|
|
936
|
+
"tableFrom": "spaces_roots",
|
|
937
|
+
"tableTo": "spaces",
|
|
938
|
+
"columnsFrom": [
|
|
939
|
+
"spaceId"
|
|
940
|
+
],
|
|
941
|
+
"columnsTo": [
|
|
942
|
+
"id"
|
|
943
|
+
],
|
|
944
|
+
"onDelete": "cascade",
|
|
945
|
+
"onUpdate": "no action"
|
|
946
|
+
},
|
|
947
|
+
"spaces_roots_fileId_files_id_fk": {
|
|
948
|
+
"name": "spaces_roots_fileId_files_id_fk",
|
|
949
|
+
"tableFrom": "spaces_roots",
|
|
950
|
+
"tableTo": "files",
|
|
951
|
+
"columnsFrom": [
|
|
952
|
+
"fileId"
|
|
953
|
+
],
|
|
954
|
+
"columnsTo": [
|
|
955
|
+
"id"
|
|
956
|
+
],
|
|
957
|
+
"onDelete": "cascade",
|
|
958
|
+
"onUpdate": "no action"
|
|
959
|
+
}
|
|
960
|
+
},
|
|
961
|
+
"compositePrimaryKeys": {
|
|
962
|
+
"spaces_roots_id": {
|
|
963
|
+
"name": "spaces_roots_id",
|
|
964
|
+
"columns": [
|
|
965
|
+
"id"
|
|
966
|
+
]
|
|
967
|
+
}
|
|
968
|
+
},
|
|
969
|
+
"uniqueConstraints": {
|
|
970
|
+
"space_root_alias_uniq": {
|
|
971
|
+
"name": "space_root_alias_uniq",
|
|
972
|
+
"columns": [
|
|
973
|
+
"id",
|
|
974
|
+
"alias"
|
|
975
|
+
]
|
|
976
|
+
}
|
|
977
|
+
},
|
|
978
|
+
"checkConstraint": {}
|
|
979
|
+
},
|
|
980
|
+
"shares": {
|
|
981
|
+
"name": "shares",
|
|
982
|
+
"columns": {
|
|
983
|
+
"id": {
|
|
984
|
+
"name": "id",
|
|
985
|
+
"type": "bigint unsigned",
|
|
986
|
+
"primaryKey": false,
|
|
987
|
+
"notNull": true,
|
|
988
|
+
"autoincrement": true
|
|
989
|
+
},
|
|
990
|
+
"ownerId": {
|
|
991
|
+
"name": "ownerId",
|
|
992
|
+
"type": "bigint unsigned",
|
|
993
|
+
"primaryKey": false,
|
|
994
|
+
"notNull": false,
|
|
995
|
+
"autoincrement": false
|
|
996
|
+
},
|
|
997
|
+
"parentId": {
|
|
998
|
+
"name": "parentId",
|
|
999
|
+
"type": "bigint unsigned",
|
|
1000
|
+
"primaryKey": false,
|
|
1001
|
+
"notNull": false,
|
|
1002
|
+
"autoincrement": false
|
|
1003
|
+
},
|
|
1004
|
+
"spaceId": {
|
|
1005
|
+
"name": "spaceId",
|
|
1006
|
+
"type": "bigint unsigned",
|
|
1007
|
+
"primaryKey": false,
|
|
1008
|
+
"notNull": false,
|
|
1009
|
+
"autoincrement": false
|
|
1010
|
+
},
|
|
1011
|
+
"spaceRootId": {
|
|
1012
|
+
"name": "spaceRootId",
|
|
1013
|
+
"type": "bigint unsigned",
|
|
1014
|
+
"primaryKey": false,
|
|
1015
|
+
"notNull": false,
|
|
1016
|
+
"autoincrement": false
|
|
1017
|
+
},
|
|
1018
|
+
"fileId": {
|
|
1019
|
+
"name": "fileId",
|
|
1020
|
+
"type": "bigint unsigned",
|
|
1021
|
+
"primaryKey": false,
|
|
1022
|
+
"notNull": false,
|
|
1023
|
+
"autoincrement": false
|
|
1024
|
+
},
|
|
1025
|
+
"externalPath": {
|
|
1026
|
+
"name": "externalPath",
|
|
1027
|
+
"type": "varchar(4096)",
|
|
1028
|
+
"primaryKey": false,
|
|
1029
|
+
"notNull": false,
|
|
1030
|
+
"autoincrement": false
|
|
1031
|
+
},
|
|
1032
|
+
"type": {
|
|
1033
|
+
"name": "type",
|
|
1034
|
+
"type": "tinyint unsigned",
|
|
1035
|
+
"primaryKey": false,
|
|
1036
|
+
"notNull": true,
|
|
1037
|
+
"autoincrement": false,
|
|
1038
|
+
"default": 0
|
|
1039
|
+
},
|
|
1040
|
+
"alias": {
|
|
1041
|
+
"name": "alias",
|
|
1042
|
+
"type": "varchar(255)",
|
|
1043
|
+
"primaryKey": false,
|
|
1044
|
+
"notNull": true,
|
|
1045
|
+
"autoincrement": false
|
|
1046
|
+
},
|
|
1047
|
+
"name": {
|
|
1048
|
+
"name": "name",
|
|
1049
|
+
"type": "varchar(255)",
|
|
1050
|
+
"primaryKey": false,
|
|
1051
|
+
"notNull": true,
|
|
1052
|
+
"autoincrement": false
|
|
1053
|
+
},
|
|
1054
|
+
"enabled": {
|
|
1055
|
+
"name": "enabled",
|
|
1056
|
+
"type": "boolean",
|
|
1057
|
+
"primaryKey": false,
|
|
1058
|
+
"notNull": true,
|
|
1059
|
+
"autoincrement": false,
|
|
1060
|
+
"default": true
|
|
1061
|
+
},
|
|
1062
|
+
"description": {
|
|
1063
|
+
"name": "description",
|
|
1064
|
+
"type": "varchar(255)",
|
|
1065
|
+
"primaryKey": false,
|
|
1066
|
+
"notNull": false,
|
|
1067
|
+
"autoincrement": false
|
|
1068
|
+
},
|
|
1069
|
+
"createdAt": {
|
|
1070
|
+
"name": "createdAt",
|
|
1071
|
+
"type": "datetime",
|
|
1072
|
+
"primaryKey": false,
|
|
1073
|
+
"notNull": true,
|
|
1074
|
+
"autoincrement": false,
|
|
1075
|
+
"default": "CURRENT_TIMESTAMP"
|
|
1076
|
+
},
|
|
1077
|
+
"modifiedAt": {
|
|
1078
|
+
"name": "modifiedAt",
|
|
1079
|
+
"type": "datetime",
|
|
1080
|
+
"primaryKey": false,
|
|
1081
|
+
"notNull": false,
|
|
1082
|
+
"autoincrement": false,
|
|
1083
|
+
"default": "CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP"
|
|
1084
|
+
},
|
|
1085
|
+
"disabledAt": {
|
|
1086
|
+
"name": "disabledAt",
|
|
1087
|
+
"type": "datetime",
|
|
1088
|
+
"primaryKey": false,
|
|
1089
|
+
"notNull": false,
|
|
1090
|
+
"autoincrement": false
|
|
1091
|
+
}
|
|
1092
|
+
},
|
|
1093
|
+
"indexes": {
|
|
1094
|
+
"alias_idx": {
|
|
1095
|
+
"name": "alias_idx",
|
|
1096
|
+
"columns": [
|
|
1097
|
+
"alias"
|
|
1098
|
+
],
|
|
1099
|
+
"isUnique": true
|
|
1100
|
+
},
|
|
1101
|
+
"parent_idx": {
|
|
1102
|
+
"name": "parent_idx",
|
|
1103
|
+
"columns": [
|
|
1104
|
+
"parentId"
|
|
1105
|
+
],
|
|
1106
|
+
"isUnique": false
|
|
1107
|
+
},
|
|
1108
|
+
"owner_idx": {
|
|
1109
|
+
"name": "owner_idx",
|
|
1110
|
+
"columns": [
|
|
1111
|
+
"ownerId"
|
|
1112
|
+
],
|
|
1113
|
+
"isUnique": false
|
|
1114
|
+
},
|
|
1115
|
+
"space_idx": {
|
|
1116
|
+
"name": "space_idx",
|
|
1117
|
+
"columns": [
|
|
1118
|
+
"spaceId"
|
|
1119
|
+
],
|
|
1120
|
+
"isUnique": false
|
|
1121
|
+
},
|
|
1122
|
+
"space_root_idx": {
|
|
1123
|
+
"name": "space_root_idx",
|
|
1124
|
+
"columns": [
|
|
1125
|
+
"spaceRootId"
|
|
1126
|
+
],
|
|
1127
|
+
"isUnique": false
|
|
1128
|
+
},
|
|
1129
|
+
"file_idx": {
|
|
1130
|
+
"name": "file_idx",
|
|
1131
|
+
"columns": [
|
|
1132
|
+
"fileId"
|
|
1133
|
+
],
|
|
1134
|
+
"isUnique": false
|
|
1135
|
+
},
|
|
1136
|
+
"type_idx": {
|
|
1137
|
+
"name": "type_idx",
|
|
1138
|
+
"columns": [
|
|
1139
|
+
"type"
|
|
1140
|
+
],
|
|
1141
|
+
"isUnique": false
|
|
1142
|
+
}
|
|
1143
|
+
},
|
|
1144
|
+
"foreignKeys": {
|
|
1145
|
+
"shares_ownerId_users_id_fk": {
|
|
1146
|
+
"name": "shares_ownerId_users_id_fk",
|
|
1147
|
+
"tableFrom": "shares",
|
|
1148
|
+
"tableTo": "users",
|
|
1149
|
+
"columnsFrom": [
|
|
1150
|
+
"ownerId"
|
|
1151
|
+
],
|
|
1152
|
+
"columnsTo": [
|
|
1153
|
+
"id"
|
|
1154
|
+
],
|
|
1155
|
+
"onDelete": "cascade",
|
|
1156
|
+
"onUpdate": "no action"
|
|
1157
|
+
},
|
|
1158
|
+
"shares_parentId_shares_id_fk": {
|
|
1159
|
+
"name": "shares_parentId_shares_id_fk",
|
|
1160
|
+
"tableFrom": "shares",
|
|
1161
|
+
"tableTo": "shares",
|
|
1162
|
+
"columnsFrom": [
|
|
1163
|
+
"parentId"
|
|
1164
|
+
],
|
|
1165
|
+
"columnsTo": [
|
|
1166
|
+
"id"
|
|
1167
|
+
],
|
|
1168
|
+
"onDelete": "cascade",
|
|
1169
|
+
"onUpdate": "no action"
|
|
1170
|
+
},
|
|
1171
|
+
"shares_spaceId_spaces_id_fk": {
|
|
1172
|
+
"name": "shares_spaceId_spaces_id_fk",
|
|
1173
|
+
"tableFrom": "shares",
|
|
1174
|
+
"tableTo": "spaces",
|
|
1175
|
+
"columnsFrom": [
|
|
1176
|
+
"spaceId"
|
|
1177
|
+
],
|
|
1178
|
+
"columnsTo": [
|
|
1179
|
+
"id"
|
|
1180
|
+
],
|
|
1181
|
+
"onDelete": "cascade",
|
|
1182
|
+
"onUpdate": "no action"
|
|
1183
|
+
},
|
|
1184
|
+
"shares_spaceRootId_spaces_roots_id_fk": {
|
|
1185
|
+
"name": "shares_spaceRootId_spaces_roots_id_fk",
|
|
1186
|
+
"tableFrom": "shares",
|
|
1187
|
+
"tableTo": "spaces_roots",
|
|
1188
|
+
"columnsFrom": [
|
|
1189
|
+
"spaceRootId"
|
|
1190
|
+
],
|
|
1191
|
+
"columnsTo": [
|
|
1192
|
+
"id"
|
|
1193
|
+
],
|
|
1194
|
+
"onDelete": "cascade",
|
|
1195
|
+
"onUpdate": "no action"
|
|
1196
|
+
},
|
|
1197
|
+
"shares_fileId_files_id_fk": {
|
|
1198
|
+
"name": "shares_fileId_files_id_fk",
|
|
1199
|
+
"tableFrom": "shares",
|
|
1200
|
+
"tableTo": "files",
|
|
1201
|
+
"columnsFrom": [
|
|
1202
|
+
"fileId"
|
|
1203
|
+
],
|
|
1204
|
+
"columnsTo": [
|
|
1205
|
+
"id"
|
|
1206
|
+
],
|
|
1207
|
+
"onDelete": "cascade",
|
|
1208
|
+
"onUpdate": "no action"
|
|
1209
|
+
}
|
|
1210
|
+
},
|
|
1211
|
+
"compositePrimaryKeys": {
|
|
1212
|
+
"shares_id": {
|
|
1213
|
+
"name": "shares_id",
|
|
1214
|
+
"columns": [
|
|
1215
|
+
"id"
|
|
1216
|
+
]
|
|
1217
|
+
}
|
|
1218
|
+
},
|
|
1219
|
+
"uniqueConstraints": {},
|
|
1220
|
+
"checkConstraint": {}
|
|
1221
|
+
},
|
|
1222
|
+
"shares_members": {
|
|
1223
|
+
"name": "shares_members",
|
|
1224
|
+
"columns": {
|
|
1225
|
+
"id": {
|
|
1226
|
+
"name": "id",
|
|
1227
|
+
"type": "bigint unsigned",
|
|
1228
|
+
"primaryKey": false,
|
|
1229
|
+
"notNull": true,
|
|
1230
|
+
"autoincrement": true
|
|
1231
|
+
},
|
|
1232
|
+
"shareId": {
|
|
1233
|
+
"name": "shareId",
|
|
1234
|
+
"type": "bigint unsigned",
|
|
1235
|
+
"primaryKey": false,
|
|
1236
|
+
"notNull": true,
|
|
1237
|
+
"autoincrement": false
|
|
1238
|
+
},
|
|
1239
|
+
"userId": {
|
|
1240
|
+
"name": "userId",
|
|
1241
|
+
"type": "bigint unsigned",
|
|
1242
|
+
"primaryKey": false,
|
|
1243
|
+
"notNull": false,
|
|
1244
|
+
"autoincrement": false
|
|
1245
|
+
},
|
|
1246
|
+
"groupId": {
|
|
1247
|
+
"name": "groupId",
|
|
1248
|
+
"type": "bigint unsigned",
|
|
1249
|
+
"primaryKey": false,
|
|
1250
|
+
"notNull": false,
|
|
1251
|
+
"autoincrement": false
|
|
1252
|
+
},
|
|
1253
|
+
"linkId": {
|
|
1254
|
+
"name": "linkId",
|
|
1255
|
+
"type": "bigint unsigned",
|
|
1256
|
+
"primaryKey": false,
|
|
1257
|
+
"notNull": false,
|
|
1258
|
+
"autoincrement": false
|
|
1259
|
+
},
|
|
1260
|
+
"permissions": {
|
|
1261
|
+
"name": "permissions",
|
|
1262
|
+
"type": "varchar(32)",
|
|
1263
|
+
"primaryKey": false,
|
|
1264
|
+
"notNull": false,
|
|
1265
|
+
"autoincrement": false,
|
|
1266
|
+
"default": "''"
|
|
1267
|
+
},
|
|
1268
|
+
"createdAt": {
|
|
1269
|
+
"name": "createdAt",
|
|
1270
|
+
"type": "datetime",
|
|
1271
|
+
"primaryKey": false,
|
|
1272
|
+
"notNull": true,
|
|
1273
|
+
"autoincrement": false,
|
|
1274
|
+
"default": "CURRENT_TIMESTAMP"
|
|
1275
|
+
},
|
|
1276
|
+
"modifiedAt": {
|
|
1277
|
+
"name": "modifiedAt",
|
|
1278
|
+
"type": "datetime",
|
|
1279
|
+
"primaryKey": false,
|
|
1280
|
+
"notNull": false,
|
|
1281
|
+
"autoincrement": false,
|
|
1282
|
+
"default": "CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP"
|
|
1283
|
+
}
|
|
1284
|
+
},
|
|
1285
|
+
"indexes": {
|
|
1286
|
+
"share_idx": {
|
|
1287
|
+
"name": "share_idx",
|
|
1288
|
+
"columns": [
|
|
1289
|
+
"shareId"
|
|
1290
|
+
],
|
|
1291
|
+
"isUnique": false
|
|
1292
|
+
},
|
|
1293
|
+
"user_idx": {
|
|
1294
|
+
"name": "user_idx",
|
|
1295
|
+
"columns": [
|
|
1296
|
+
"userId"
|
|
1297
|
+
],
|
|
1298
|
+
"isUnique": false
|
|
1299
|
+
},
|
|
1300
|
+
"group_idx": {
|
|
1301
|
+
"name": "group_idx",
|
|
1302
|
+
"columns": [
|
|
1303
|
+
"groupId"
|
|
1304
|
+
],
|
|
1305
|
+
"isUnique": false
|
|
1306
|
+
},
|
|
1307
|
+
"link_idx": {
|
|
1308
|
+
"name": "link_idx",
|
|
1309
|
+
"columns": [
|
|
1310
|
+
"linkId"
|
|
1311
|
+
],
|
|
1312
|
+
"isUnique": false
|
|
1313
|
+
}
|
|
1314
|
+
},
|
|
1315
|
+
"foreignKeys": {
|
|
1316
|
+
"shares_members_shareId_shares_id_fk": {
|
|
1317
|
+
"name": "shares_members_shareId_shares_id_fk",
|
|
1318
|
+
"tableFrom": "shares_members",
|
|
1319
|
+
"tableTo": "shares",
|
|
1320
|
+
"columnsFrom": [
|
|
1321
|
+
"shareId"
|
|
1322
|
+
],
|
|
1323
|
+
"columnsTo": [
|
|
1324
|
+
"id"
|
|
1325
|
+
],
|
|
1326
|
+
"onDelete": "cascade",
|
|
1327
|
+
"onUpdate": "no action"
|
|
1328
|
+
},
|
|
1329
|
+
"shares_members_userId_users_id_fk": {
|
|
1330
|
+
"name": "shares_members_userId_users_id_fk",
|
|
1331
|
+
"tableFrom": "shares_members",
|
|
1332
|
+
"tableTo": "users",
|
|
1333
|
+
"columnsFrom": [
|
|
1334
|
+
"userId"
|
|
1335
|
+
],
|
|
1336
|
+
"columnsTo": [
|
|
1337
|
+
"id"
|
|
1338
|
+
],
|
|
1339
|
+
"onDelete": "cascade",
|
|
1340
|
+
"onUpdate": "no action"
|
|
1341
|
+
},
|
|
1342
|
+
"shares_members_groupId_groups_id_fk": {
|
|
1343
|
+
"name": "shares_members_groupId_groups_id_fk",
|
|
1344
|
+
"tableFrom": "shares_members",
|
|
1345
|
+
"tableTo": "groups",
|
|
1346
|
+
"columnsFrom": [
|
|
1347
|
+
"groupId"
|
|
1348
|
+
],
|
|
1349
|
+
"columnsTo": [
|
|
1350
|
+
"id"
|
|
1351
|
+
],
|
|
1352
|
+
"onDelete": "cascade",
|
|
1353
|
+
"onUpdate": "no action"
|
|
1354
|
+
},
|
|
1355
|
+
"shares_members_linkId_links_id_fk": {
|
|
1356
|
+
"name": "shares_members_linkId_links_id_fk",
|
|
1357
|
+
"tableFrom": "shares_members",
|
|
1358
|
+
"tableTo": "links",
|
|
1359
|
+
"columnsFrom": [
|
|
1360
|
+
"linkId"
|
|
1361
|
+
],
|
|
1362
|
+
"columnsTo": [
|
|
1363
|
+
"id"
|
|
1364
|
+
],
|
|
1365
|
+
"onDelete": "cascade",
|
|
1366
|
+
"onUpdate": "no action"
|
|
1367
|
+
}
|
|
1368
|
+
},
|
|
1369
|
+
"compositePrimaryKeys": {
|
|
1370
|
+
"shares_members_id": {
|
|
1371
|
+
"name": "shares_members_id",
|
|
1372
|
+
"columns": [
|
|
1373
|
+
"id"
|
|
1374
|
+
]
|
|
1375
|
+
}
|
|
1376
|
+
},
|
|
1377
|
+
"uniqueConstraints": {
|
|
1378
|
+
"share_user_uniq": {
|
|
1379
|
+
"name": "share_user_uniq",
|
|
1380
|
+
"columns": [
|
|
1381
|
+
"shareId",
|
|
1382
|
+
"userId"
|
|
1383
|
+
]
|
|
1384
|
+
},
|
|
1385
|
+
"share_group_uniq": {
|
|
1386
|
+
"name": "share_group_uniq",
|
|
1387
|
+
"columns": [
|
|
1388
|
+
"shareId",
|
|
1389
|
+
"groupId"
|
|
1390
|
+
]
|
|
1391
|
+
},
|
|
1392
|
+
"share_link_uniq": {
|
|
1393
|
+
"name": "share_link_uniq",
|
|
1394
|
+
"columns": [
|
|
1395
|
+
"shareId",
|
|
1396
|
+
"linkId"
|
|
1397
|
+
]
|
|
1398
|
+
}
|
|
1399
|
+
},
|
|
1400
|
+
"checkConstraint": {}
|
|
1401
|
+
},
|
|
1402
|
+
"files": {
|
|
1403
|
+
"name": "files",
|
|
1404
|
+
"columns": {
|
|
1405
|
+
"id": {
|
|
1406
|
+
"name": "id",
|
|
1407
|
+
"type": "bigint unsigned",
|
|
1408
|
+
"primaryKey": false,
|
|
1409
|
+
"notNull": true,
|
|
1410
|
+
"autoincrement": true
|
|
1411
|
+
},
|
|
1412
|
+
"ownerId": {
|
|
1413
|
+
"name": "ownerId",
|
|
1414
|
+
"type": "bigint unsigned",
|
|
1415
|
+
"primaryKey": false,
|
|
1416
|
+
"notNull": false,
|
|
1417
|
+
"autoincrement": false
|
|
1418
|
+
},
|
|
1419
|
+
"spaceId": {
|
|
1420
|
+
"name": "spaceId",
|
|
1421
|
+
"type": "bigint unsigned",
|
|
1422
|
+
"primaryKey": false,
|
|
1423
|
+
"notNull": false,
|
|
1424
|
+
"autoincrement": false
|
|
1425
|
+
},
|
|
1426
|
+
"spaceExternalRootId": {
|
|
1427
|
+
"name": "spaceExternalRootId",
|
|
1428
|
+
"type": "bigint unsigned",
|
|
1429
|
+
"primaryKey": false,
|
|
1430
|
+
"notNull": false,
|
|
1431
|
+
"autoincrement": false
|
|
1432
|
+
},
|
|
1433
|
+
"shareExternalId": {
|
|
1434
|
+
"name": "shareExternalId",
|
|
1435
|
+
"type": "bigint unsigned",
|
|
1436
|
+
"primaryKey": false,
|
|
1437
|
+
"notNull": false,
|
|
1438
|
+
"autoincrement": false
|
|
1439
|
+
},
|
|
1440
|
+
"path": {
|
|
1441
|
+
"name": "path",
|
|
1442
|
+
"type": "varchar(4096)",
|
|
1443
|
+
"primaryKey": false,
|
|
1444
|
+
"notNull": true,
|
|
1445
|
+
"autoincrement": false
|
|
1446
|
+
},
|
|
1447
|
+
"name": {
|
|
1448
|
+
"name": "name",
|
|
1449
|
+
"type": "varchar(255)",
|
|
1450
|
+
"primaryKey": false,
|
|
1451
|
+
"notNull": true,
|
|
1452
|
+
"autoincrement": false
|
|
1453
|
+
},
|
|
1454
|
+
"isDir": {
|
|
1455
|
+
"name": "isDir",
|
|
1456
|
+
"type": "boolean",
|
|
1457
|
+
"primaryKey": false,
|
|
1458
|
+
"notNull": true,
|
|
1459
|
+
"autoincrement": false
|
|
1460
|
+
},
|
|
1461
|
+
"inTrash": {
|
|
1462
|
+
"name": "inTrash",
|
|
1463
|
+
"type": "boolean",
|
|
1464
|
+
"primaryKey": false,
|
|
1465
|
+
"notNull": true,
|
|
1466
|
+
"autoincrement": false,
|
|
1467
|
+
"default": false
|
|
1468
|
+
},
|
|
1469
|
+
"mime": {
|
|
1470
|
+
"name": "mime",
|
|
1471
|
+
"type": "varchar(255)",
|
|
1472
|
+
"primaryKey": false,
|
|
1473
|
+
"notNull": false,
|
|
1474
|
+
"autoincrement": false
|
|
1475
|
+
},
|
|
1476
|
+
"size": {
|
|
1477
|
+
"name": "size",
|
|
1478
|
+
"type": "bigint unsigned",
|
|
1479
|
+
"primaryKey": false,
|
|
1480
|
+
"notNull": false,
|
|
1481
|
+
"autoincrement": false,
|
|
1482
|
+
"default": 0
|
|
1483
|
+
},
|
|
1484
|
+
"mtime": {
|
|
1485
|
+
"name": "mtime",
|
|
1486
|
+
"type": "bigint unsigned",
|
|
1487
|
+
"primaryKey": false,
|
|
1488
|
+
"notNull": false,
|
|
1489
|
+
"autoincrement": false,
|
|
1490
|
+
"default": 0
|
|
1491
|
+
},
|
|
1492
|
+
"ctime": {
|
|
1493
|
+
"name": "ctime",
|
|
1494
|
+
"type": "bigint unsigned",
|
|
1495
|
+
"primaryKey": false,
|
|
1496
|
+
"notNull": false,
|
|
1497
|
+
"autoincrement": false,
|
|
1498
|
+
"default": 0
|
|
1499
|
+
}
|
|
1500
|
+
},
|
|
1501
|
+
"indexes": {
|
|
1502
|
+
"owner_idx": {
|
|
1503
|
+
"name": "owner_idx",
|
|
1504
|
+
"columns": [
|
|
1505
|
+
"ownerId"
|
|
1506
|
+
],
|
|
1507
|
+
"isUnique": false
|
|
1508
|
+
},
|
|
1509
|
+
"space_idx": {
|
|
1510
|
+
"name": "space_idx",
|
|
1511
|
+
"columns": [
|
|
1512
|
+
"spaceId"
|
|
1513
|
+
],
|
|
1514
|
+
"isUnique": false
|
|
1515
|
+
},
|
|
1516
|
+
"space_external_root_idx": {
|
|
1517
|
+
"name": "space_external_root_idx",
|
|
1518
|
+
"columns": [
|
|
1519
|
+
"spaceExternalRootId"
|
|
1520
|
+
],
|
|
1521
|
+
"isUnique": false
|
|
1522
|
+
},
|
|
1523
|
+
"share_external_idx": {
|
|
1524
|
+
"name": "share_external_idx",
|
|
1525
|
+
"columns": [
|
|
1526
|
+
"shareExternalId"
|
|
1527
|
+
],
|
|
1528
|
+
"isUnique": false
|
|
1529
|
+
},
|
|
1530
|
+
"name_idx": {
|
|
1531
|
+
"name": "name_idx",
|
|
1532
|
+
"columns": [
|
|
1533
|
+
"name"
|
|
1534
|
+
],
|
|
1535
|
+
"isUnique": false
|
|
1536
|
+
},
|
|
1537
|
+
"path_idx": {
|
|
1538
|
+
"name": "path_idx",
|
|
1539
|
+
"columns": [
|
|
1540
|
+
"path"
|
|
1541
|
+
],
|
|
1542
|
+
"isUnique": false
|
|
1543
|
+
}
|
|
1544
|
+
},
|
|
1545
|
+
"foreignKeys": {
|
|
1546
|
+
"files_ownerId_users_id_fk": {
|
|
1547
|
+
"name": "files_ownerId_users_id_fk",
|
|
1548
|
+
"tableFrom": "files",
|
|
1549
|
+
"tableTo": "users",
|
|
1550
|
+
"columnsFrom": [
|
|
1551
|
+
"ownerId"
|
|
1552
|
+
],
|
|
1553
|
+
"columnsTo": [
|
|
1554
|
+
"id"
|
|
1555
|
+
],
|
|
1556
|
+
"onDelete": "cascade",
|
|
1557
|
+
"onUpdate": "no action"
|
|
1558
|
+
},
|
|
1559
|
+
"files_spaceId_spaces_id_fk": {
|
|
1560
|
+
"name": "files_spaceId_spaces_id_fk",
|
|
1561
|
+
"tableFrom": "files",
|
|
1562
|
+
"tableTo": "spaces",
|
|
1563
|
+
"columnsFrom": [
|
|
1564
|
+
"spaceId"
|
|
1565
|
+
],
|
|
1566
|
+
"columnsTo": [
|
|
1567
|
+
"id"
|
|
1568
|
+
],
|
|
1569
|
+
"onDelete": "cascade",
|
|
1570
|
+
"onUpdate": "no action"
|
|
1571
|
+
},
|
|
1572
|
+
"files_spaceExternalRootId_spaces_roots_id_fk": {
|
|
1573
|
+
"name": "files_spaceExternalRootId_spaces_roots_id_fk",
|
|
1574
|
+
"tableFrom": "files",
|
|
1575
|
+
"tableTo": "spaces_roots",
|
|
1576
|
+
"columnsFrom": [
|
|
1577
|
+
"spaceExternalRootId"
|
|
1578
|
+
],
|
|
1579
|
+
"columnsTo": [
|
|
1580
|
+
"id"
|
|
1581
|
+
],
|
|
1582
|
+
"onDelete": "cascade",
|
|
1583
|
+
"onUpdate": "no action"
|
|
1584
|
+
},
|
|
1585
|
+
"files_shareExternalId_shares_id_fk": {
|
|
1586
|
+
"name": "files_shareExternalId_shares_id_fk",
|
|
1587
|
+
"tableFrom": "files",
|
|
1588
|
+
"tableTo": "shares",
|
|
1589
|
+
"columnsFrom": [
|
|
1590
|
+
"shareExternalId"
|
|
1591
|
+
],
|
|
1592
|
+
"columnsTo": [
|
|
1593
|
+
"id"
|
|
1594
|
+
],
|
|
1595
|
+
"onDelete": "cascade",
|
|
1596
|
+
"onUpdate": "no action"
|
|
1597
|
+
}
|
|
1598
|
+
},
|
|
1599
|
+
"compositePrimaryKeys": {
|
|
1600
|
+
"files_id": {
|
|
1601
|
+
"name": "files_id",
|
|
1602
|
+
"columns": [
|
|
1603
|
+
"id"
|
|
1604
|
+
]
|
|
1605
|
+
}
|
|
1606
|
+
},
|
|
1607
|
+
"uniqueConstraints": {},
|
|
1608
|
+
"checkConstraint": {}
|
|
1609
|
+
},
|
|
1610
|
+
"files_recents": {
|
|
1611
|
+
"name": "files_recents",
|
|
1612
|
+
"columns": {
|
|
1613
|
+
"id": {
|
|
1614
|
+
"name": "id",
|
|
1615
|
+
"type": "bigint",
|
|
1616
|
+
"primaryKey": false,
|
|
1617
|
+
"notNull": false,
|
|
1618
|
+
"autoincrement": false
|
|
1619
|
+
},
|
|
1620
|
+
"ownerId": {
|
|
1621
|
+
"name": "ownerId",
|
|
1622
|
+
"type": "bigint unsigned",
|
|
1623
|
+
"primaryKey": false,
|
|
1624
|
+
"notNull": false,
|
|
1625
|
+
"autoincrement": false
|
|
1626
|
+
},
|
|
1627
|
+
"spaceId": {
|
|
1628
|
+
"name": "spaceId",
|
|
1629
|
+
"type": "bigint unsigned",
|
|
1630
|
+
"primaryKey": false,
|
|
1631
|
+
"notNull": false,
|
|
1632
|
+
"autoincrement": false
|
|
1633
|
+
},
|
|
1634
|
+
"shareId": {
|
|
1635
|
+
"name": "shareId",
|
|
1636
|
+
"type": "bigint unsigned",
|
|
1637
|
+
"primaryKey": false,
|
|
1638
|
+
"notNull": false,
|
|
1639
|
+
"autoincrement": false
|
|
1640
|
+
},
|
|
1641
|
+
"path": {
|
|
1642
|
+
"name": "path",
|
|
1643
|
+
"type": "varchar(4096)",
|
|
1644
|
+
"primaryKey": false,
|
|
1645
|
+
"notNull": true,
|
|
1646
|
+
"autoincrement": false
|
|
1647
|
+
},
|
|
1648
|
+
"name": {
|
|
1649
|
+
"name": "name",
|
|
1650
|
+
"type": "varchar(255)",
|
|
1651
|
+
"primaryKey": false,
|
|
1652
|
+
"notNull": true,
|
|
1653
|
+
"autoincrement": false
|
|
1654
|
+
},
|
|
1655
|
+
"mime": {
|
|
1656
|
+
"name": "mime",
|
|
1657
|
+
"type": "varchar(255)",
|
|
1658
|
+
"primaryKey": false,
|
|
1659
|
+
"notNull": false,
|
|
1660
|
+
"autoincrement": false
|
|
1661
|
+
},
|
|
1662
|
+
"mtime": {
|
|
1663
|
+
"name": "mtime",
|
|
1664
|
+
"type": "bigint unsigned",
|
|
1665
|
+
"primaryKey": false,
|
|
1666
|
+
"notNull": true,
|
|
1667
|
+
"autoincrement": false
|
|
1668
|
+
}
|
|
1669
|
+
},
|
|
1670
|
+
"indexes": {
|
|
1671
|
+
"owner_idx": {
|
|
1672
|
+
"name": "owner_idx",
|
|
1673
|
+
"columns": [
|
|
1674
|
+
"ownerId"
|
|
1675
|
+
],
|
|
1676
|
+
"isUnique": false
|
|
1677
|
+
},
|
|
1678
|
+
"space_idx": {
|
|
1679
|
+
"name": "space_idx",
|
|
1680
|
+
"columns": [
|
|
1681
|
+
"spaceId"
|
|
1682
|
+
],
|
|
1683
|
+
"isUnique": false
|
|
1684
|
+
},
|
|
1685
|
+
"share_idx": {
|
|
1686
|
+
"name": "share_idx",
|
|
1687
|
+
"columns": [
|
|
1688
|
+
"shareId"
|
|
1689
|
+
],
|
|
1690
|
+
"isUnique": false
|
|
1691
|
+
},
|
|
1692
|
+
"mtime_idx": {
|
|
1693
|
+
"name": "mtime_idx",
|
|
1694
|
+
"columns": [
|
|
1695
|
+
"mtime"
|
|
1696
|
+
],
|
|
1697
|
+
"isUnique": false
|
|
1698
|
+
},
|
|
1699
|
+
"path_idx": {
|
|
1700
|
+
"name": "path_idx",
|
|
1701
|
+
"columns": [
|
|
1702
|
+
"path"
|
|
1703
|
+
],
|
|
1704
|
+
"isUnique": false
|
|
1705
|
+
}
|
|
1706
|
+
},
|
|
1707
|
+
"foreignKeys": {
|
|
1708
|
+
"files_recents_ownerId_users_id_fk": {
|
|
1709
|
+
"name": "files_recents_ownerId_users_id_fk",
|
|
1710
|
+
"tableFrom": "files_recents",
|
|
1711
|
+
"tableTo": "users",
|
|
1712
|
+
"columnsFrom": [
|
|
1713
|
+
"ownerId"
|
|
1714
|
+
],
|
|
1715
|
+
"columnsTo": [
|
|
1716
|
+
"id"
|
|
1717
|
+
],
|
|
1718
|
+
"onDelete": "cascade",
|
|
1719
|
+
"onUpdate": "no action"
|
|
1720
|
+
},
|
|
1721
|
+
"files_recents_spaceId_spaces_id_fk": {
|
|
1722
|
+
"name": "files_recents_spaceId_spaces_id_fk",
|
|
1723
|
+
"tableFrom": "files_recents",
|
|
1724
|
+
"tableTo": "spaces",
|
|
1725
|
+
"columnsFrom": [
|
|
1726
|
+
"spaceId"
|
|
1727
|
+
],
|
|
1728
|
+
"columnsTo": [
|
|
1729
|
+
"id"
|
|
1730
|
+
],
|
|
1731
|
+
"onDelete": "cascade",
|
|
1732
|
+
"onUpdate": "no action"
|
|
1733
|
+
},
|
|
1734
|
+
"files_recents_shareId_shares_id_fk": {
|
|
1735
|
+
"name": "files_recents_shareId_shares_id_fk",
|
|
1736
|
+
"tableFrom": "files_recents",
|
|
1737
|
+
"tableTo": "shares",
|
|
1738
|
+
"columnsFrom": [
|
|
1739
|
+
"shareId"
|
|
1740
|
+
],
|
|
1741
|
+
"columnsTo": [
|
|
1742
|
+
"id"
|
|
1743
|
+
],
|
|
1744
|
+
"onDelete": "cascade",
|
|
1745
|
+
"onUpdate": "no action"
|
|
1746
|
+
}
|
|
1747
|
+
},
|
|
1748
|
+
"compositePrimaryKeys": {},
|
|
1749
|
+
"uniqueConstraints": {},
|
|
1750
|
+
"checkConstraint": {}
|
|
1751
|
+
},
|
|
1752
|
+
"links": {
|
|
1753
|
+
"name": "links",
|
|
1754
|
+
"columns": {
|
|
1755
|
+
"id": {
|
|
1756
|
+
"name": "id",
|
|
1757
|
+
"type": "bigint unsigned",
|
|
1758
|
+
"primaryKey": false,
|
|
1759
|
+
"notNull": true,
|
|
1760
|
+
"autoincrement": true
|
|
1761
|
+
},
|
|
1762
|
+
"uuid": {
|
|
1763
|
+
"name": "uuid",
|
|
1764
|
+
"type": "varchar(32)",
|
|
1765
|
+
"primaryKey": false,
|
|
1766
|
+
"notNull": true,
|
|
1767
|
+
"autoincrement": false
|
|
1768
|
+
},
|
|
1769
|
+
"userId": {
|
|
1770
|
+
"name": "userId",
|
|
1771
|
+
"type": "bigint unsigned",
|
|
1772
|
+
"primaryKey": false,
|
|
1773
|
+
"notNull": true,
|
|
1774
|
+
"autoincrement": false
|
|
1775
|
+
},
|
|
1776
|
+
"name": {
|
|
1777
|
+
"name": "name",
|
|
1778
|
+
"type": "varchar(255)",
|
|
1779
|
+
"primaryKey": false,
|
|
1780
|
+
"notNull": true,
|
|
1781
|
+
"autoincrement": false
|
|
1782
|
+
},
|
|
1783
|
+
"email": {
|
|
1784
|
+
"name": "email",
|
|
1785
|
+
"type": "varchar(255)",
|
|
1786
|
+
"primaryKey": false,
|
|
1787
|
+
"notNull": false,
|
|
1788
|
+
"autoincrement": false
|
|
1789
|
+
},
|
|
1790
|
+
"requireAuth": {
|
|
1791
|
+
"name": "requireAuth",
|
|
1792
|
+
"type": "boolean",
|
|
1793
|
+
"primaryKey": false,
|
|
1794
|
+
"notNull": true,
|
|
1795
|
+
"autoincrement": false,
|
|
1796
|
+
"default": false
|
|
1797
|
+
},
|
|
1798
|
+
"nbAccess": {
|
|
1799
|
+
"name": "nbAccess",
|
|
1800
|
+
"type": "int unsigned",
|
|
1801
|
+
"primaryKey": false,
|
|
1802
|
+
"notNull": true,
|
|
1803
|
+
"autoincrement": false,
|
|
1804
|
+
"default": 0
|
|
1805
|
+
},
|
|
1806
|
+
"limitAccess": {
|
|
1807
|
+
"name": "limitAccess",
|
|
1808
|
+
"type": "int unsigned",
|
|
1809
|
+
"primaryKey": false,
|
|
1810
|
+
"notNull": true,
|
|
1811
|
+
"autoincrement": false,
|
|
1812
|
+
"default": 0
|
|
1813
|
+
},
|
|
1814
|
+
"expiresAt": {
|
|
1815
|
+
"name": "expiresAt",
|
|
1816
|
+
"type": "date",
|
|
1817
|
+
"primaryKey": false,
|
|
1818
|
+
"notNull": false,
|
|
1819
|
+
"autoincrement": false
|
|
1820
|
+
},
|
|
1821
|
+
"createdAt": {
|
|
1822
|
+
"name": "createdAt",
|
|
1823
|
+
"type": "datetime",
|
|
1824
|
+
"primaryKey": false,
|
|
1825
|
+
"notNull": true,
|
|
1826
|
+
"autoincrement": false,
|
|
1827
|
+
"default": "CURRENT_TIMESTAMP"
|
|
1828
|
+
}
|
|
1829
|
+
},
|
|
1830
|
+
"indexes": {
|
|
1831
|
+
"user_idx": {
|
|
1832
|
+
"name": "user_idx",
|
|
1833
|
+
"columns": [
|
|
1834
|
+
"userId"
|
|
1835
|
+
],
|
|
1836
|
+
"isUnique": false
|
|
1837
|
+
},
|
|
1838
|
+
"uuid_idx": {
|
|
1839
|
+
"name": "uuid_idx",
|
|
1840
|
+
"columns": [
|
|
1841
|
+
"uuid"
|
|
1842
|
+
],
|
|
1843
|
+
"isUnique": true
|
|
1844
|
+
}
|
|
1845
|
+
},
|
|
1846
|
+
"foreignKeys": {
|
|
1847
|
+
"links_userId_users_id_fk": {
|
|
1848
|
+
"name": "links_userId_users_id_fk",
|
|
1849
|
+
"tableFrom": "links",
|
|
1850
|
+
"tableTo": "users",
|
|
1851
|
+
"columnsFrom": [
|
|
1852
|
+
"userId"
|
|
1853
|
+
],
|
|
1854
|
+
"columnsTo": [
|
|
1855
|
+
"id"
|
|
1856
|
+
],
|
|
1857
|
+
"onDelete": "cascade",
|
|
1858
|
+
"onUpdate": "no action"
|
|
1859
|
+
}
|
|
1860
|
+
},
|
|
1861
|
+
"compositePrimaryKeys": {
|
|
1862
|
+
"links_id": {
|
|
1863
|
+
"name": "links_id",
|
|
1864
|
+
"columns": [
|
|
1865
|
+
"id"
|
|
1866
|
+
]
|
|
1867
|
+
}
|
|
1868
|
+
},
|
|
1869
|
+
"uniqueConstraints": {},
|
|
1870
|
+
"checkConstraint": {}
|
|
1871
|
+
},
|
|
1872
|
+
"comments": {
|
|
1873
|
+
"name": "comments",
|
|
1874
|
+
"columns": {
|
|
1875
|
+
"id": {
|
|
1876
|
+
"name": "id",
|
|
1877
|
+
"type": "bigint unsigned",
|
|
1878
|
+
"primaryKey": false,
|
|
1879
|
+
"notNull": true,
|
|
1880
|
+
"autoincrement": true
|
|
1881
|
+
},
|
|
1882
|
+
"userId": {
|
|
1883
|
+
"name": "userId",
|
|
1884
|
+
"type": "bigint unsigned",
|
|
1885
|
+
"primaryKey": false,
|
|
1886
|
+
"notNull": true,
|
|
1887
|
+
"autoincrement": false
|
|
1888
|
+
},
|
|
1889
|
+
"fileId": {
|
|
1890
|
+
"name": "fileId",
|
|
1891
|
+
"type": "bigint unsigned",
|
|
1892
|
+
"primaryKey": false,
|
|
1893
|
+
"notNull": true,
|
|
1894
|
+
"autoincrement": false
|
|
1895
|
+
},
|
|
1896
|
+
"content": {
|
|
1897
|
+
"name": "content",
|
|
1898
|
+
"type": "text",
|
|
1899
|
+
"primaryKey": false,
|
|
1900
|
+
"notNull": false,
|
|
1901
|
+
"autoincrement": false
|
|
1902
|
+
},
|
|
1903
|
+
"modifiedAt": {
|
|
1904
|
+
"name": "modifiedAt",
|
|
1905
|
+
"type": "datetime",
|
|
1906
|
+
"primaryKey": false,
|
|
1907
|
+
"notNull": false,
|
|
1908
|
+
"autoincrement": false,
|
|
1909
|
+
"default": "CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP"
|
|
1910
|
+
},
|
|
1911
|
+
"createdAt": {
|
|
1912
|
+
"name": "createdAt",
|
|
1913
|
+
"type": "datetime",
|
|
1914
|
+
"primaryKey": false,
|
|
1915
|
+
"notNull": true,
|
|
1916
|
+
"autoincrement": false,
|
|
1917
|
+
"default": "CURRENT_TIMESTAMP"
|
|
1918
|
+
}
|
|
1919
|
+
},
|
|
1920
|
+
"indexes": {
|
|
1921
|
+
"user_idx": {
|
|
1922
|
+
"name": "user_idx",
|
|
1923
|
+
"columns": [
|
|
1924
|
+
"userId"
|
|
1925
|
+
],
|
|
1926
|
+
"isUnique": false
|
|
1927
|
+
},
|
|
1928
|
+
"file_idx": {
|
|
1929
|
+
"name": "file_idx",
|
|
1930
|
+
"columns": [
|
|
1931
|
+
"fileId"
|
|
1932
|
+
],
|
|
1933
|
+
"isUnique": false
|
|
1934
|
+
}
|
|
1935
|
+
},
|
|
1936
|
+
"foreignKeys": {
|
|
1937
|
+
"comments_userId_users_id_fk": {
|
|
1938
|
+
"name": "comments_userId_users_id_fk",
|
|
1939
|
+
"tableFrom": "comments",
|
|
1940
|
+
"tableTo": "users",
|
|
1941
|
+
"columnsFrom": [
|
|
1942
|
+
"userId"
|
|
1943
|
+
],
|
|
1944
|
+
"columnsTo": [
|
|
1945
|
+
"id"
|
|
1946
|
+
],
|
|
1947
|
+
"onDelete": "cascade",
|
|
1948
|
+
"onUpdate": "no action"
|
|
1949
|
+
},
|
|
1950
|
+
"comments_fileId_files_id_fk": {
|
|
1951
|
+
"name": "comments_fileId_files_id_fk",
|
|
1952
|
+
"tableFrom": "comments",
|
|
1953
|
+
"tableTo": "files",
|
|
1954
|
+
"columnsFrom": [
|
|
1955
|
+
"fileId"
|
|
1956
|
+
],
|
|
1957
|
+
"columnsTo": [
|
|
1958
|
+
"id"
|
|
1959
|
+
],
|
|
1960
|
+
"onDelete": "cascade",
|
|
1961
|
+
"onUpdate": "no action"
|
|
1962
|
+
}
|
|
1963
|
+
},
|
|
1964
|
+
"compositePrimaryKeys": {
|
|
1965
|
+
"comments_id": {
|
|
1966
|
+
"name": "comments_id",
|
|
1967
|
+
"columns": [
|
|
1968
|
+
"id"
|
|
1969
|
+
]
|
|
1970
|
+
}
|
|
1971
|
+
},
|
|
1972
|
+
"uniqueConstraints": {},
|
|
1973
|
+
"checkConstraint": {}
|
|
1974
|
+
},
|
|
1975
|
+
"notifications": {
|
|
1976
|
+
"name": "notifications",
|
|
1977
|
+
"columns": {
|
|
1978
|
+
"id": {
|
|
1979
|
+
"name": "id",
|
|
1980
|
+
"type": "bigint unsigned",
|
|
1981
|
+
"primaryKey": false,
|
|
1982
|
+
"notNull": true,
|
|
1983
|
+
"autoincrement": true
|
|
1984
|
+
},
|
|
1985
|
+
"fromUserId": {
|
|
1986
|
+
"name": "fromUserId",
|
|
1987
|
+
"type": "bigint unsigned",
|
|
1988
|
+
"primaryKey": false,
|
|
1989
|
+
"notNull": false,
|
|
1990
|
+
"autoincrement": false
|
|
1991
|
+
},
|
|
1992
|
+
"toUserId": {
|
|
1993
|
+
"name": "toUserId",
|
|
1994
|
+
"type": "bigint unsigned",
|
|
1995
|
+
"primaryKey": false,
|
|
1996
|
+
"notNull": true,
|
|
1997
|
+
"autoincrement": false
|
|
1998
|
+
},
|
|
1999
|
+
"content": {
|
|
2000
|
+
"name": "content",
|
|
2001
|
+
"type": "json",
|
|
2002
|
+
"primaryKey": false,
|
|
2003
|
+
"notNull": false,
|
|
2004
|
+
"autoincrement": false
|
|
2005
|
+
},
|
|
2006
|
+
"wasRead": {
|
|
2007
|
+
"name": "wasRead",
|
|
2008
|
+
"type": "boolean",
|
|
2009
|
+
"primaryKey": false,
|
|
2010
|
+
"notNull": true,
|
|
2011
|
+
"autoincrement": false,
|
|
2012
|
+
"default": false
|
|
2013
|
+
},
|
|
2014
|
+
"createdAt": {
|
|
2015
|
+
"name": "createdAt",
|
|
2016
|
+
"type": "datetime",
|
|
2017
|
+
"primaryKey": false,
|
|
2018
|
+
"notNull": true,
|
|
2019
|
+
"autoincrement": false,
|
|
2020
|
+
"default": "CURRENT_TIMESTAMP"
|
|
2021
|
+
}
|
|
2022
|
+
},
|
|
2023
|
+
"indexes": {
|
|
2024
|
+
"from_user_idx": {
|
|
2025
|
+
"name": "from_user_idx",
|
|
2026
|
+
"columns": [
|
|
2027
|
+
"fromUserId"
|
|
2028
|
+
],
|
|
2029
|
+
"isUnique": false
|
|
2030
|
+
},
|
|
2031
|
+
"to_user_idx": {
|
|
2032
|
+
"name": "to_user_idx",
|
|
2033
|
+
"columns": [
|
|
2034
|
+
"toUserId"
|
|
2035
|
+
],
|
|
2036
|
+
"isUnique": false
|
|
2037
|
+
}
|
|
2038
|
+
},
|
|
2039
|
+
"foreignKeys": {
|
|
2040
|
+
"notifications_fromUserId_users_id_fk": {
|
|
2041
|
+
"name": "notifications_fromUserId_users_id_fk",
|
|
2042
|
+
"tableFrom": "notifications",
|
|
2043
|
+
"tableTo": "users",
|
|
2044
|
+
"columnsFrom": [
|
|
2045
|
+
"fromUserId"
|
|
2046
|
+
],
|
|
2047
|
+
"columnsTo": [
|
|
2048
|
+
"id"
|
|
2049
|
+
],
|
|
2050
|
+
"onDelete": "cascade",
|
|
2051
|
+
"onUpdate": "no action"
|
|
2052
|
+
},
|
|
2053
|
+
"notifications_toUserId_users_id_fk": {
|
|
2054
|
+
"name": "notifications_toUserId_users_id_fk",
|
|
2055
|
+
"tableFrom": "notifications",
|
|
2056
|
+
"tableTo": "users",
|
|
2057
|
+
"columnsFrom": [
|
|
2058
|
+
"toUserId"
|
|
2059
|
+
],
|
|
2060
|
+
"columnsTo": [
|
|
2061
|
+
"id"
|
|
2062
|
+
],
|
|
2063
|
+
"onDelete": "cascade",
|
|
2064
|
+
"onUpdate": "no action"
|
|
2065
|
+
}
|
|
2066
|
+
},
|
|
2067
|
+
"compositePrimaryKeys": {
|
|
2068
|
+
"notifications_id": {
|
|
2069
|
+
"name": "notifications_id",
|
|
2070
|
+
"columns": [
|
|
2071
|
+
"id"
|
|
2072
|
+
]
|
|
2073
|
+
}
|
|
2074
|
+
},
|
|
2075
|
+
"uniqueConstraints": {},
|
|
2076
|
+
"checkConstraint": {}
|
|
2077
|
+
},
|
|
2078
|
+
"sync_clients": {
|
|
2079
|
+
"name": "sync_clients",
|
|
2080
|
+
"columns": {
|
|
2081
|
+
"id": {
|
|
2082
|
+
"name": "id",
|
|
2083
|
+
"type": "char(36)",
|
|
2084
|
+
"primaryKey": false,
|
|
2085
|
+
"notNull": true,
|
|
2086
|
+
"autoincrement": false
|
|
2087
|
+
},
|
|
2088
|
+
"ownerId": {
|
|
2089
|
+
"name": "ownerId",
|
|
2090
|
+
"type": "bigint unsigned",
|
|
2091
|
+
"primaryKey": false,
|
|
2092
|
+
"notNull": true,
|
|
2093
|
+
"autoincrement": false
|
|
2094
|
+
},
|
|
2095
|
+
"token": {
|
|
2096
|
+
"name": "token",
|
|
2097
|
+
"type": "char(36)",
|
|
2098
|
+
"primaryKey": false,
|
|
2099
|
+
"notNull": true,
|
|
2100
|
+
"autoincrement": false
|
|
2101
|
+
},
|
|
2102
|
+
"tokenExpiration": {
|
|
2103
|
+
"name": "tokenExpiration",
|
|
2104
|
+
"type": "bigint unsigned",
|
|
2105
|
+
"primaryKey": false,
|
|
2106
|
+
"notNull": true,
|
|
2107
|
+
"autoincrement": false
|
|
2108
|
+
},
|
|
2109
|
+
"info": {
|
|
2110
|
+
"name": "info",
|
|
2111
|
+
"type": "json",
|
|
2112
|
+
"primaryKey": false,
|
|
2113
|
+
"notNull": true,
|
|
2114
|
+
"autoincrement": false
|
|
2115
|
+
},
|
|
2116
|
+
"enabled": {
|
|
2117
|
+
"name": "enabled",
|
|
2118
|
+
"type": "boolean",
|
|
2119
|
+
"primaryKey": false,
|
|
2120
|
+
"notNull": true,
|
|
2121
|
+
"autoincrement": false,
|
|
2122
|
+
"default": true
|
|
2123
|
+
},
|
|
2124
|
+
"currentIp": {
|
|
2125
|
+
"name": "currentIp",
|
|
2126
|
+
"type": "char(15)",
|
|
2127
|
+
"primaryKey": false,
|
|
2128
|
+
"notNull": false,
|
|
2129
|
+
"autoincrement": false
|
|
2130
|
+
},
|
|
2131
|
+
"lastIp": {
|
|
2132
|
+
"name": "lastIp",
|
|
2133
|
+
"type": "char(15)",
|
|
2134
|
+
"primaryKey": false,
|
|
2135
|
+
"notNull": false,
|
|
2136
|
+
"autoincrement": false
|
|
2137
|
+
},
|
|
2138
|
+
"currentAccess": {
|
|
2139
|
+
"name": "currentAccess",
|
|
2140
|
+
"type": "datetime",
|
|
2141
|
+
"primaryKey": false,
|
|
2142
|
+
"notNull": false,
|
|
2143
|
+
"autoincrement": false
|
|
2144
|
+
},
|
|
2145
|
+
"lastAccess": {
|
|
2146
|
+
"name": "lastAccess",
|
|
2147
|
+
"type": "datetime",
|
|
2148
|
+
"primaryKey": false,
|
|
2149
|
+
"notNull": false,
|
|
2150
|
+
"autoincrement": false
|
|
2151
|
+
},
|
|
2152
|
+
"createdAt": {
|
|
2153
|
+
"name": "createdAt",
|
|
2154
|
+
"type": "datetime",
|
|
2155
|
+
"primaryKey": false,
|
|
2156
|
+
"notNull": true,
|
|
2157
|
+
"autoincrement": false,
|
|
2158
|
+
"default": "CURRENT_TIMESTAMP"
|
|
2159
|
+
}
|
|
2160
|
+
},
|
|
2161
|
+
"indexes": {
|
|
2162
|
+
"owner_idx": {
|
|
2163
|
+
"name": "owner_idx",
|
|
2164
|
+
"columns": [
|
|
2165
|
+
"ownerId"
|
|
2166
|
+
],
|
|
2167
|
+
"isUnique": false
|
|
2168
|
+
},
|
|
2169
|
+
"token_idx": {
|
|
2170
|
+
"name": "token_idx",
|
|
2171
|
+
"columns": [
|
|
2172
|
+
"token"
|
|
2173
|
+
],
|
|
2174
|
+
"isUnique": false
|
|
2175
|
+
}
|
|
2176
|
+
},
|
|
2177
|
+
"foreignKeys": {
|
|
2178
|
+
"sync_clients_ownerId_users_id_fk": {
|
|
2179
|
+
"name": "sync_clients_ownerId_users_id_fk",
|
|
2180
|
+
"tableFrom": "sync_clients",
|
|
2181
|
+
"tableTo": "users",
|
|
2182
|
+
"columnsFrom": [
|
|
2183
|
+
"ownerId"
|
|
2184
|
+
],
|
|
2185
|
+
"columnsTo": [
|
|
2186
|
+
"id"
|
|
2187
|
+
],
|
|
2188
|
+
"onDelete": "cascade",
|
|
2189
|
+
"onUpdate": "no action"
|
|
2190
|
+
}
|
|
2191
|
+
},
|
|
2192
|
+
"compositePrimaryKeys": {
|
|
2193
|
+
"sync_clients_id": {
|
|
2194
|
+
"name": "sync_clients_id",
|
|
2195
|
+
"columns": [
|
|
2196
|
+
"id"
|
|
2197
|
+
]
|
|
2198
|
+
}
|
|
2199
|
+
},
|
|
2200
|
+
"uniqueConstraints": {},
|
|
2201
|
+
"checkConstraint": {}
|
|
2202
|
+
},
|
|
2203
|
+
"sync_paths": {
|
|
2204
|
+
"name": "sync_paths",
|
|
2205
|
+
"columns": {
|
|
2206
|
+
"id": {
|
|
2207
|
+
"name": "id",
|
|
2208
|
+
"type": "bigint unsigned",
|
|
2209
|
+
"primaryKey": false,
|
|
2210
|
+
"notNull": true,
|
|
2211
|
+
"autoincrement": true
|
|
2212
|
+
},
|
|
2213
|
+
"clientId": {
|
|
2214
|
+
"name": "clientId",
|
|
2215
|
+
"type": "char(36)",
|
|
2216
|
+
"primaryKey": false,
|
|
2217
|
+
"notNull": true,
|
|
2218
|
+
"autoincrement": false
|
|
2219
|
+
},
|
|
2220
|
+
"ownerId": {
|
|
2221
|
+
"name": "ownerId",
|
|
2222
|
+
"type": "bigint unsigned",
|
|
2223
|
+
"primaryKey": false,
|
|
2224
|
+
"notNull": false,
|
|
2225
|
+
"autoincrement": false
|
|
2226
|
+
},
|
|
2227
|
+
"spaceId": {
|
|
2228
|
+
"name": "spaceId",
|
|
2229
|
+
"type": "bigint unsigned",
|
|
2230
|
+
"primaryKey": false,
|
|
2231
|
+
"notNull": false,
|
|
2232
|
+
"autoincrement": false
|
|
2233
|
+
},
|
|
2234
|
+
"spaceRootId": {
|
|
2235
|
+
"name": "spaceRootId",
|
|
2236
|
+
"type": "bigint unsigned",
|
|
2237
|
+
"primaryKey": false,
|
|
2238
|
+
"notNull": false,
|
|
2239
|
+
"autoincrement": false
|
|
2240
|
+
},
|
|
2241
|
+
"shareId": {
|
|
2242
|
+
"name": "shareId",
|
|
2243
|
+
"type": "bigint unsigned",
|
|
2244
|
+
"primaryKey": false,
|
|
2245
|
+
"notNull": false,
|
|
2246
|
+
"autoincrement": false
|
|
2247
|
+
},
|
|
2248
|
+
"fileId": {
|
|
2249
|
+
"name": "fileId",
|
|
2250
|
+
"type": "bigint unsigned",
|
|
2251
|
+
"primaryKey": false,
|
|
2252
|
+
"notNull": false,
|
|
2253
|
+
"autoincrement": false
|
|
2254
|
+
},
|
|
2255
|
+
"settings": {
|
|
2256
|
+
"name": "settings",
|
|
2257
|
+
"type": "json",
|
|
2258
|
+
"primaryKey": false,
|
|
2259
|
+
"notNull": true,
|
|
2260
|
+
"autoincrement": false
|
|
2261
|
+
},
|
|
2262
|
+
"createdAt": {
|
|
2263
|
+
"name": "createdAt",
|
|
2264
|
+
"type": "datetime",
|
|
2265
|
+
"primaryKey": false,
|
|
2266
|
+
"notNull": true,
|
|
2267
|
+
"autoincrement": false,
|
|
2268
|
+
"default": "CURRENT_TIMESTAMP"
|
|
2269
|
+
}
|
|
2270
|
+
},
|
|
2271
|
+
"indexes": {
|
|
2272
|
+
"client_idx": {
|
|
2273
|
+
"name": "client_idx",
|
|
2274
|
+
"columns": [
|
|
2275
|
+
"clientId"
|
|
2276
|
+
],
|
|
2277
|
+
"isUnique": false
|
|
2278
|
+
},
|
|
2279
|
+
"owner_idx": {
|
|
2280
|
+
"name": "owner_idx",
|
|
2281
|
+
"columns": [
|
|
2282
|
+
"ownerId"
|
|
2283
|
+
],
|
|
2284
|
+
"isUnique": false
|
|
2285
|
+
},
|
|
2286
|
+
"space_idx": {
|
|
2287
|
+
"name": "space_idx",
|
|
2288
|
+
"columns": [
|
|
2289
|
+
"spaceId"
|
|
2290
|
+
],
|
|
2291
|
+
"isUnique": false
|
|
2292
|
+
},
|
|
2293
|
+
"space_root_idx": {
|
|
2294
|
+
"name": "space_root_idx",
|
|
2295
|
+
"columns": [
|
|
2296
|
+
"spaceRootId"
|
|
2297
|
+
],
|
|
2298
|
+
"isUnique": false
|
|
2299
|
+
},
|
|
2300
|
+
"share_idx": {
|
|
2301
|
+
"name": "share_idx",
|
|
2302
|
+
"columns": [
|
|
2303
|
+
"shareId"
|
|
2304
|
+
],
|
|
2305
|
+
"isUnique": false
|
|
2306
|
+
},
|
|
2307
|
+
"file_idx": {
|
|
2308
|
+
"name": "file_idx",
|
|
2309
|
+
"columns": [
|
|
2310
|
+
"fileId"
|
|
2311
|
+
],
|
|
2312
|
+
"isUnique": false
|
|
2313
|
+
}
|
|
2314
|
+
},
|
|
2315
|
+
"foreignKeys": {
|
|
2316
|
+
"sync_paths_clientId_sync_clients_id_fk": {
|
|
2317
|
+
"name": "sync_paths_clientId_sync_clients_id_fk",
|
|
2318
|
+
"tableFrom": "sync_paths",
|
|
2319
|
+
"tableTo": "sync_clients",
|
|
2320
|
+
"columnsFrom": [
|
|
2321
|
+
"clientId"
|
|
2322
|
+
],
|
|
2323
|
+
"columnsTo": [
|
|
2324
|
+
"id"
|
|
2325
|
+
],
|
|
2326
|
+
"onDelete": "cascade",
|
|
2327
|
+
"onUpdate": "no action"
|
|
2328
|
+
},
|
|
2329
|
+
"sync_paths_ownerId_users_id_fk": {
|
|
2330
|
+
"name": "sync_paths_ownerId_users_id_fk",
|
|
2331
|
+
"tableFrom": "sync_paths",
|
|
2332
|
+
"tableTo": "users",
|
|
2333
|
+
"columnsFrom": [
|
|
2334
|
+
"ownerId"
|
|
2335
|
+
],
|
|
2336
|
+
"columnsTo": [
|
|
2337
|
+
"id"
|
|
2338
|
+
],
|
|
2339
|
+
"onDelete": "cascade",
|
|
2340
|
+
"onUpdate": "no action"
|
|
2341
|
+
},
|
|
2342
|
+
"sync_paths_spaceId_spaces_id_fk": {
|
|
2343
|
+
"name": "sync_paths_spaceId_spaces_id_fk",
|
|
2344
|
+
"tableFrom": "sync_paths",
|
|
2345
|
+
"tableTo": "spaces",
|
|
2346
|
+
"columnsFrom": [
|
|
2347
|
+
"spaceId"
|
|
2348
|
+
],
|
|
2349
|
+
"columnsTo": [
|
|
2350
|
+
"id"
|
|
2351
|
+
],
|
|
2352
|
+
"onDelete": "cascade",
|
|
2353
|
+
"onUpdate": "no action"
|
|
2354
|
+
},
|
|
2355
|
+
"sync_paths_spaceRootId_spaces_roots_id_fk": {
|
|
2356
|
+
"name": "sync_paths_spaceRootId_spaces_roots_id_fk",
|
|
2357
|
+
"tableFrom": "sync_paths",
|
|
2358
|
+
"tableTo": "spaces_roots",
|
|
2359
|
+
"columnsFrom": [
|
|
2360
|
+
"spaceRootId"
|
|
2361
|
+
],
|
|
2362
|
+
"columnsTo": [
|
|
2363
|
+
"id"
|
|
2364
|
+
],
|
|
2365
|
+
"onDelete": "cascade",
|
|
2366
|
+
"onUpdate": "no action"
|
|
2367
|
+
},
|
|
2368
|
+
"sync_paths_shareId_shares_id_fk": {
|
|
2369
|
+
"name": "sync_paths_shareId_shares_id_fk",
|
|
2370
|
+
"tableFrom": "sync_paths",
|
|
2371
|
+
"tableTo": "shares",
|
|
2372
|
+
"columnsFrom": [
|
|
2373
|
+
"shareId"
|
|
2374
|
+
],
|
|
2375
|
+
"columnsTo": [
|
|
2376
|
+
"id"
|
|
2377
|
+
],
|
|
2378
|
+
"onDelete": "cascade",
|
|
2379
|
+
"onUpdate": "no action"
|
|
2380
|
+
},
|
|
2381
|
+
"sync_paths_fileId_files_id_fk": {
|
|
2382
|
+
"name": "sync_paths_fileId_files_id_fk",
|
|
2383
|
+
"tableFrom": "sync_paths",
|
|
2384
|
+
"tableTo": "files",
|
|
2385
|
+
"columnsFrom": [
|
|
2386
|
+
"fileId"
|
|
2387
|
+
],
|
|
2388
|
+
"columnsTo": [
|
|
2389
|
+
"id"
|
|
2390
|
+
],
|
|
2391
|
+
"onDelete": "cascade",
|
|
2392
|
+
"onUpdate": "no action"
|
|
2393
|
+
}
|
|
2394
|
+
},
|
|
2395
|
+
"compositePrimaryKeys": {
|
|
2396
|
+
"sync_paths_id": {
|
|
2397
|
+
"name": "sync_paths_id",
|
|
2398
|
+
"columns": [
|
|
2399
|
+
"id"
|
|
2400
|
+
]
|
|
2401
|
+
}
|
|
2402
|
+
},
|
|
2403
|
+
"uniqueConstraints": {},
|
|
2404
|
+
"checkConstraint": {}
|
|
2405
|
+
}
|
|
2406
|
+
},
|
|
2407
|
+
"views": {},
|
|
2408
|
+
"_meta": {
|
|
2409
|
+
"schemas": {},
|
|
2410
|
+
"tables": {},
|
|
2411
|
+
"columns": {}
|
|
2412
|
+
},
|
|
2413
|
+
"internal": {
|
|
2414
|
+
"tables": {},
|
|
2415
|
+
"indexes": {}
|
|
2416
|
+
}
|
|
2417
|
+
}
|