├── .editorconfig ├── .github └── workflows │ ├── azureStorageTests.yml │ ├── codeql.yaml │ ├── damengDatabaseTests.yml │ ├── fsStorageTests.yml │ ├── lint-format.yml │ ├── mssqlDatabaseTests.yml │ ├── mysqlDatabaseTests.yml │ ├── oracleDatabaseTests.yml │ ├── postgreDatabaseTests.yml │ ├── s3storageTests.yml │ └── unitTests.yml ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc.js ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── 3DPARTY.md ├── 3d-party-lic-report ├── json2md.js └── license-report-config.json ├── 3rd-Party.txt ├── AdminPanel ├── client │ ├── .env.development │ ├── .env.example │ ├── .gitignore │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── images │ │ │ └── favicon.ico │ │ └── index.html │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── api │ │ │ └── index.js │ │ ├── assets │ │ │ ├── AppLogo.svg │ │ │ ├── AppMenuLogo.svg │ │ │ ├── AppMenuSprite.svg │ │ │ ├── Download.svg │ │ │ ├── FailRed.svg │ │ │ ├── Spinner.svg │ │ │ ├── Success.svg │ │ │ └── SuccessGreen.svg │ │ ├── components │ │ │ ├── AccessRules │ │ │ │ ├── AccessRules.js │ │ │ │ └── AccessRules.module.scss │ │ │ ├── AuthWrapper │ │ │ │ └── AuthWrapper.js │ │ │ ├── Button │ │ │ │ ├── Button.js │ │ │ │ └── Button.module.scss │ │ │ ├── Checkbox │ │ │ │ ├── Checkbox.js │ │ │ │ └── Checkbox.module.scss │ │ │ ├── ConfigLoader │ │ │ │ └── ConfigLoader.js │ │ │ ├── FixedSaveButton │ │ │ │ ├── FixedSaveButton.js │ │ │ │ └── FixedSaveButton.module.scss │ │ │ ├── FixedSaveButtonGroup │ │ │ │ └── FixedSaveButtonGroup.js │ │ │ ├── Input │ │ │ │ ├── Input.js │ │ │ │ └── Input.module.scss │ │ │ ├── Menu │ │ │ │ ├── Menu.js │ │ │ │ ├── Menu.module.scss │ │ │ │ └── MenuItem │ │ │ │ │ ├── MenuItem.js │ │ │ │ │ └── MenuItem.module.scss │ │ │ ├── MobileHeader │ │ │ │ ├── MobileHeader.js │ │ │ │ └── MobileHeader.module.scss │ │ │ ├── Note │ │ │ │ ├── Note.js │ │ │ │ └── Note.module.scss │ │ │ ├── PageDescription │ │ │ │ ├── PageDescription.js │ │ │ │ └── PageDescription.module.scss │ │ │ ├── PageHeader │ │ │ │ ├── PageHeader.js │ │ │ │ └── PageHeader.module.scss │ │ │ ├── PasswordInput │ │ │ │ ├── PasswordInput.js │ │ │ │ └── PasswordInput.module.scss │ │ │ ├── PasswordInputWithRequirements │ │ │ │ └── PasswordInputWithRequirements.js │ │ │ ├── PasswordRequirements │ │ │ │ ├── PasswordRequirements.js │ │ │ │ └── PasswordRequirements.module.scss │ │ │ ├── ScrollToTop │ │ │ │ └── ScrollToTop.js │ │ │ ├── Section │ │ │ │ ├── Section.js │ │ │ │ └── Section.module.scss │ │ │ ├── Select │ │ │ │ ├── Select.js │ │ │ │ └── Select.module.scss │ │ │ ├── ServerUnavailable │ │ │ │ ├── ServerUnavailable.js │ │ │ │ └── styles.module.css │ │ │ ├── StatisticsTopBlock │ │ │ │ ├── StatisticsTopBlock.js │ │ │ │ └── StatisticsTopBlock.module.scss │ │ │ ├── Tabs │ │ │ │ ├── Tabs.js │ │ │ │ └── Tabs.module.scss │ │ │ └── ToggleSwitch │ │ │ │ ├── ToggleSwitch.js │ │ │ │ └── ToggleSwitch.module.scss │ │ ├── config │ │ │ └── menuItems.js │ │ ├── hooks │ │ │ ├── useFieldValidation.js │ │ │ └── useSchemaLoader.js │ │ ├── index.js │ │ ├── pages │ │ │ ├── AiIntegration │ │ │ │ ├── ai │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── aiModelEdit.html │ │ │ │ │ ├── aiModelsList.html │ │ │ │ │ ├── chat.html │ │ │ │ │ ├── codeDesktop.js │ │ │ │ │ ├── components │ │ │ │ │ │ ├── ListView │ │ │ │ │ │ │ ├── script.js │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ └── Tooltip │ │ │ │ │ │ │ ├── script.js │ │ │ │ │ │ │ └── style.css │ │ │ │ │ ├── config.json │ │ │ │ │ ├── configDesktop.json │ │ │ │ │ ├── customProviders.html │ │ │ │ │ ├── deploy │ │ │ │ │ │ └── ai.plugin │ │ │ │ │ ├── helper.html │ │ │ │ │ ├── hyperlink.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── indexDesktop.html │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── dark │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ ├── icon@1.25x.png │ │ │ │ │ │ │ ├── icon@1.5x.png │ │ │ │ │ │ │ ├── icon@1.75x.png │ │ │ │ │ │ │ └── icon@2x.png │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ ├── dark │ │ │ │ │ │ │ │ ├── ai-audio.png │ │ │ │ │ │ │ │ ├── ai-audio@1.25x.png │ │ │ │ │ │ │ │ ├── ai-audio@1.5x.png │ │ │ │ │ │ │ │ ├── ai-audio@1.75x.png │ │ │ │ │ │ │ │ ├── ai-audio@2x.png │ │ │ │ │ │ │ │ ├── ai-code.png │ │ │ │ │ │ │ │ ├── ai-code@1.25x.png │ │ │ │ │ │ │ │ ├── ai-code@1.5x.png │ │ │ │ │ │ │ │ ├── ai-code@1.75x.png │ │ │ │ │ │ │ │ ├── ai-code@2x.png │ │ │ │ │ │ │ │ ├── ai-embeddings.png │ │ │ │ │ │ │ │ ├── ai-embeddings@1.25x.png │ │ │ │ │ │ │ │ ├── ai-embeddings@1.5x.png │ │ │ │ │ │ │ │ ├── ai-embeddings@1.75x.png │ │ │ │ │ │ │ │ ├── ai-embeddings@2x.png │ │ │ │ │ │ │ │ ├── ai-images.png │ │ │ │ │ │ │ │ ├── ai-images@1.25x.png │ │ │ │ │ │ │ │ ├── ai-images@1.5x.png │ │ │ │ │ │ │ │ ├── ai-images@1.75x.png │ │ │ │ │ │ │ │ ├── ai-images@2x.png │ │ │ │ │ │ │ │ ├── ai-moderations.png │ │ │ │ │ │ │ │ ├── ai-moderations@1.25x.png │ │ │ │ │ │ │ │ ├── ai-moderations@1.5x.png │ │ │ │ │ │ │ │ ├── ai-moderations@1.75x.png │ │ │ │ │ │ │ │ ├── ai-moderations@2x.png │ │ │ │ │ │ │ │ ├── ai-realtime.png │ │ │ │ │ │ │ │ ├── ai-realtime@1.25x.png │ │ │ │ │ │ │ │ ├── ai-realtime@1.5x.png │ │ │ │ │ │ │ │ ├── ai-realtime@1.75x.png │ │ │ │ │ │ │ │ ├── ai-realtime@2x.png │ │ │ │ │ │ │ │ ├── ai-texts.png │ │ │ │ │ │ │ │ ├── ai-texts@1.25x.png │ │ │ │ │ │ │ │ ├── ai-texts@1.5x.png │ │ │ │ │ │ │ │ ├── ai-texts@1.75x.png │ │ │ │ │ │ │ │ ├── ai-texts@2x.png │ │ │ │ │ │ │ │ ├── ai-visual-analysis.png │ │ │ │ │ │ │ │ ├── ai-visual-analysis@1.25x.png │ │ │ │ │ │ │ │ ├── ai-visual-analysis@1.5x.png │ │ │ │ │ │ │ │ ├── ai-visual-analysis@1.75x.png │ │ │ │ │ │ │ │ ├── ai-visual-analysis@2x.png │ │ │ │ │ │ │ │ ├── ask-ai.png │ │ │ │ │ │ │ │ ├── ask-ai@1.25x.png │ │ │ │ │ │ │ │ ├── ask-ai@1.5x.png │ │ │ │ │ │ │ │ ├── ask-ai@1.75x.png │ │ │ │ │ │ │ │ ├── ask-ai@2x.png │ │ │ │ │ │ │ │ ├── big │ │ │ │ │ │ │ │ │ ├── ask-ai.png │ │ │ │ │ │ │ │ │ ├── ask-ai@1.25x.png │ │ │ │ │ │ │ │ │ ├── ask-ai@1.5x.png │ │ │ │ │ │ │ │ │ ├── ask-ai@1.75x.png │ │ │ │ │ │ │ │ │ ├── ask-ai@2x.png │ │ │ │ │ │ │ │ │ ├── default.png │ │ │ │ │ │ │ │ │ ├── default@1.25.png │ │ │ │ │ │ │ │ │ ├── default@1.5x.png │ │ │ │ │ │ │ │ │ ├── default@1.75x.png │ │ │ │ │ │ │ │ │ ├── default@2x.png │ │ │ │ │ │ │ │ │ ├── ocr.png │ │ │ │ │ │ │ │ │ ├── ocr@1.25x.png │ │ │ │ │ │ │ │ │ ├── ocr@1.5x.png │ │ │ │ │ │ │ │ │ ├── ocr@1.75x.png │ │ │ │ │ │ │ │ │ ├── ocr@2x.png │ │ │ │ │ │ │ │ │ ├── settings.png │ │ │ │ │ │ │ │ │ ├── settings@1.25x.png │ │ │ │ │ │ │ │ │ ├── settings@1.5x.png │ │ │ │ │ │ │ │ │ ├── settings@1.75x.png │ │ │ │ │ │ │ │ │ ├── settings@2x.png │ │ │ │ │ │ │ │ │ ├── summarization.png │ │ │ │ │ │ │ │ │ ├── summarization@1.25x.png │ │ │ │ │ │ │ │ │ ├── summarization@1.5x.png │ │ │ │ │ │ │ │ │ ├── summarization@1.75x.png │ │ │ │ │ │ │ │ │ ├── summarization@2x.png │ │ │ │ │ │ │ │ │ ├── text-to-image.png │ │ │ │ │ │ │ │ │ ├── text-to-image@1.25x.png │ │ │ │ │ │ │ │ │ ├── text-to-image@1.5x.png │ │ │ │ │ │ │ │ │ ├── text-to-image@1.75x.png │ │ │ │ │ │ │ │ │ ├── text-to-image@2x.png │ │ │ │ │ │ │ │ │ ├── translation.png │ │ │ │ │ │ │ │ │ ├── translation@1.25x.png │ │ │ │ │ │ │ │ │ ├── translation@1.5x.png │ │ │ │ │ │ │ │ │ ├── translation@1.75x.png │ │ │ │ │ │ │ │ │ └── translation@2x.png │ │ │ │ │ │ │ │ ├── btn-copy.png │ │ │ │ │ │ │ │ ├── btn-copy@1.25x.png │ │ │ │ │ │ │ │ ├── btn-copy@1.5x.png │ │ │ │ │ │ │ │ ├── btn-copy@1.75x.png │ │ │ │ │ │ │ │ ├── btn-copy@2x.png │ │ │ │ │ │ │ │ ├── btn-demote.png │ │ │ │ │ │ │ │ ├── btn-demote@1.25x.png │ │ │ │ │ │ │ │ ├── btn-demote@1.5x.png │ │ │ │ │ │ │ │ ├── btn-demote@1.75x.png │ │ │ │ │ │ │ │ ├── btn-demote@2x.png │ │ │ │ │ │ │ │ ├── btn-edit.png │ │ │ │ │ │ │ │ ├── btn-edit@1.25x.png │ │ │ │ │ │ │ │ ├── btn-edit@1.5x.png │ │ │ │ │ │ │ │ ├── btn-edit@1.75x.png │ │ │ │ │ │ │ │ ├── btn-edit@2x.png │ │ │ │ │ │ │ │ ├── btn-ic-review.png │ │ │ │ │ │ │ │ ├── btn-ic-review@1.25x.png │ │ │ │ │ │ │ │ ├── btn-ic-review@1.5x.png │ │ │ │ │ │ │ │ ├── btn-ic-review@1.75x.png │ │ │ │ │ │ │ │ ├── btn-ic-review@2x.png │ │ │ │ │ │ │ │ ├── btn-menu-comments.png │ │ │ │ │ │ │ │ ├── btn-menu-comments@1.25x.png │ │ │ │ │ │ │ │ ├── btn-menu-comments@1.5x.png │ │ │ │ │ │ │ │ ├── btn-menu-comments@1.75x.png │ │ │ │ │ │ │ │ ├── btn-menu-comments@2x.png │ │ │ │ │ │ │ │ ├── btn-remove.png │ │ │ │ │ │ │ │ ├── btn-remove@1.25x.png │ │ │ │ │ │ │ │ ├── btn-remove@1.5x.png │ │ │ │ │ │ │ │ ├── btn-remove@1.75x.png │ │ │ │ │ │ │ │ ├── btn-remove@2x.png │ │ │ │ │ │ │ │ ├── btn-replace.png │ │ │ │ │ │ │ │ ├── btn-replace@1.25x.png │ │ │ │ │ │ │ │ ├── btn-replace@1.5x.png │ │ │ │ │ │ │ │ ├── btn-replace@1.75x.png │ │ │ │ │ │ │ │ ├── btn-replace@2x.png │ │ │ │ │ │ │ │ ├── btn-select-tool.png │ │ │ │ │ │ │ │ ├── btn-select-tool@1.25x.png │ │ │ │ │ │ │ │ ├── btn-select-tool@1.5x.png │ │ │ │ │ │ │ │ ├── btn-select-tool@1.75x.png │ │ │ │ │ │ │ │ ├── btn-select-tool@2x.png │ │ │ │ │ │ │ │ ├── btn-update.png │ │ │ │ │ │ │ │ ├── btn-update@1.25x.png │ │ │ │ │ │ │ │ ├── btn-update@1.5x.png │ │ │ │ │ │ │ │ ├── btn-update@1.75x.png │ │ │ │ │ │ │ │ ├── btn-update@2x.png │ │ │ │ │ │ │ │ ├── btn-zoomup.png │ │ │ │ │ │ │ │ ├── btn-zoomup@1.25x.png │ │ │ │ │ │ │ │ ├── btn-zoomup@1.5x.png │ │ │ │ │ │ │ │ ├── btn-zoomup@1.75x.png │ │ │ │ │ │ │ │ ├── btn-zoomup@2x.png │ │ │ │ │ │ │ │ ├── chevron-down.png │ │ │ │ │ │ │ │ ├── chevron-down@1.25x.png │ │ │ │ │ │ │ │ ├── chevron-down@1.5x.png │ │ │ │ │ │ │ │ ├── chevron-down@1.75x.png │ │ │ │ │ │ │ │ ├── chevron-down@2x.png │ │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ │ ├── close@1.25x.png │ │ │ │ │ │ │ │ ├── close@1.5x.png │ │ │ │ │ │ │ │ ├── close@1.75x.png │ │ │ │ │ │ │ │ ├── close@2x.png │ │ │ │ │ │ │ │ ├── copy.png │ │ │ │ │ │ │ │ ├── copy@1.25x.png │ │ │ │ │ │ │ │ ├── copy@1.5x.png │ │ │ │ │ │ │ │ ├── copy@1.75x.png │ │ │ │ │ │ │ │ ├── copy@2x.png │ │ │ │ │ │ │ │ ├── default.png │ │ │ │ │ │ │ │ ├── default@1.25x.png │ │ │ │ │ │ │ │ ├── default@1.5x.png │ │ │ │ │ │ │ │ ├── default@1.75x.png │ │ │ │ │ │ │ │ ├── default@2x.png │ │ │ │ │ │ │ │ ├── error.png │ │ │ │ │ │ │ │ ├── error@1.25x.png │ │ │ │ │ │ │ │ ├── error@1.5x.png │ │ │ │ │ │ │ │ ├── error@1.75x.png │ │ │ │ │ │ │ │ ├── error@2x.png │ │ │ │ │ │ │ │ ├── general-ai.png │ │ │ │ │ │ │ │ ├── general-ai@1.25x.png │ │ │ │ │ │ │ │ ├── general-ai@1.5x.png │ │ │ │ │ │ │ │ ├── general-ai@1.75x.png │ │ │ │ │ │ │ │ ├── general-ai@2x.png │ │ │ │ │ │ │ │ ├── image-ai.png │ │ │ │ │ │ │ │ ├── image-ai@1.25x.png │ │ │ │ │ │ │ │ ├── image-ai@1.5x.png │ │ │ │ │ │ │ │ ├── image-ai@1.75x.png │ │ │ │ │ │ │ │ ├── image-ai@2x.png │ │ │ │ │ │ │ │ ├── info.png │ │ │ │ │ │ │ │ ├── info@1.25x.png │ │ │ │ │ │ │ │ ├── info@1.5x.png │ │ │ │ │ │ │ │ ├── info@1.75x.png │ │ │ │ │ │ │ │ ├── info@2x.png │ │ │ │ │ │ │ │ ├── ocr.png │ │ │ │ │ │ │ │ ├── ocr@1.25x.png │ │ │ │ │ │ │ │ ├── ocr@1.5x.png │ │ │ │ │ │ │ │ ├── ocr@1.75x.png │ │ │ │ │ │ │ │ ├── ocr@2x.png │ │ │ │ │ │ │ │ ├── summarization.png │ │ │ │ │ │ │ │ ├── summarization@1.25x.png │ │ │ │ │ │ │ │ ├── summarization@1.5x.png │ │ │ │ │ │ │ │ ├── summarization@1.75x.png │ │ │ │ │ │ │ │ ├── summarization@2x.png │ │ │ │ │ │ │ │ ├── text-analysis-ai.png │ │ │ │ │ │ │ │ ├── text-analysis-ai@1.25x.png │ │ │ │ │ │ │ │ ├── text-analysis-ai@1.5x.png │ │ │ │ │ │ │ │ ├── text-analysis-ai@1.75x.png │ │ │ │ │ │ │ │ ├── text-analysis-ai@2x.png │ │ │ │ │ │ │ │ ├── text-to-image.png │ │ │ │ │ │ │ │ ├── text-to-image@1.25x.png │ │ │ │ │ │ │ │ ├── text-to-image@1.5x.png │ │ │ │ │ │ │ │ ├── text-to-image@1.75x.png │ │ │ │ │ │ │ │ ├── text-to-image@2x.png │ │ │ │ │ │ │ │ ├── translation.png │ │ │ │ │ │ │ │ ├── translation@1.25x.png │ │ │ │ │ │ │ │ ├── translation@1.5x.png │ │ │ │ │ │ │ │ ├── translation@1.75x.png │ │ │ │ │ │ │ │ ├── translation@2x.png │ │ │ │ │ │ │ │ ├── vision-ai.png │ │ │ │ │ │ │ │ ├── vision-ai@1.25x.png │ │ │ │ │ │ │ │ ├── vision-ai@1.5x.png │ │ │ │ │ │ │ │ ├── vision-ai@1.75x.png │ │ │ │ │ │ │ │ └── vision-ai@2x.png │ │ │ │ │ │ │ ├── light │ │ │ │ │ │ │ │ ├── ai-audio.png │ │ │ │ │ │ │ │ ├── ai-audio@1.25x.png │ │ │ │ │ │ │ │ ├── ai-audio@1.5x.png │ │ │ │ │ │ │ │ ├── ai-audio@1.75x.png │ │ │ │ │ │ │ │ ├── ai-audio@2x.png │ │ │ │ │ │ │ │ ├── ai-code.png │ │ │ │ │ │ │ │ ├── ai-code@1.25x.png │ │ │ │ │ │ │ │ ├── ai-code@1.5x.png │ │ │ │ │ │ │ │ ├── ai-code@1.75x.png │ │ │ │ │ │ │ │ ├── ai-code@2x.png │ │ │ │ │ │ │ │ ├── ai-embeddings.png │ │ │ │ │ │ │ │ ├── ai-embeddings@1.25x.png │ │ │ │ │ │ │ │ ├── ai-embeddings@1.5x.png │ │ │ │ │ │ │ │ ├── ai-embeddings@1.75x.png │ │ │ │ │ │ │ │ ├── ai-embeddings@2x.png │ │ │ │ │ │ │ │ ├── ai-images.png │ │ │ │ │ │ │ │ ├── ai-images@1.25x.png │ │ │ │ │ │ │ │ ├── ai-images@1.5x.png │ │ │ │ │ │ │ │ ├── ai-images@1.75x.png │ │ │ │ │ │ │ │ ├── ai-images@2x.png │ │ │ │ │ │ │ │ ├── ai-moderations.png │ │ │ │ │ │ │ │ ├── ai-moderations@1.25x.png │ │ │ │ │ │ │ │ ├── ai-moderations@1.5x.png │ │ │ │ │ │ │ │ ├── ai-moderations@1.75x.png │ │ │ │ │ │ │ │ ├── ai-moderations@2x.png │ │ │ │ │ │ │ │ ├── ai-realtime.png │ │ │ │ │ │ │ │ ├── ai-realtime@1.25x.png │ │ │ │ │ │ │ │ ├── ai-realtime@1.5x.png │ │ │ │ │ │ │ │ ├── ai-realtime@1.75x.png │ │ │ │ │ │ │ │ ├── ai-realtime@2x.png │ │ │ │ │ │ │ │ ├── ai-texts.png │ │ │ │ │ │ │ │ ├── ai-texts@1.25x.png │ │ │ │ │ │ │ │ ├── ai-texts@1.5x.png │ │ │ │ │ │ │ │ ├── ai-texts@1.75x.png │ │ │ │ │ │ │ │ ├── ai-texts@2x.png │ │ │ │ │ │ │ │ ├── ai-visual-analysis.png │ │ │ │ │ │ │ │ ├── ai-visual-analysis@1.25x.png │ │ │ │ │ │ │ │ ├── ai-visual-analysis@1.5x.png │ │ │ │ │ │ │ │ ├── ai-visual-analysis@1.75x.png │ │ │ │ │ │ │ │ ├── ai-visual-analysis@2x.png │ │ │ │ │ │ │ │ ├── ask-ai.png │ │ │ │ │ │ │ │ ├── ask-ai@1.25x.png │ │ │ │ │ │ │ │ ├── ask-ai@1.5x.png │ │ │ │ │ │ │ │ ├── ask-ai@1.75x.png │ │ │ │ │ │ │ │ ├── ask-ai@2x.png │ │ │ │ │ │ │ │ ├── big │ │ │ │ │ │ │ │ │ ├── ask-ai.png │ │ │ │ │ │ │ │ │ ├── ask-ai@1.25x.png │ │ │ │ │ │ │ │ │ ├── ask-ai@1.5x.png │ │ │ │ │ │ │ │ │ ├── ask-ai@1.75x.png │ │ │ │ │ │ │ │ │ ├── ask-ai@2x.png │ │ │ │ │ │ │ │ │ ├── default.png │ │ │ │ │ │ │ │ │ ├── default@1.25x.png │ │ │ │ │ │ │ │ │ ├── default@1.5x.png │ │ │ │ │ │ │ │ │ ├── default@1.75x.png │ │ │ │ │ │ │ │ │ ├── default@2x.png │ │ │ │ │ │ │ │ │ ├── ocr.png │ │ │ │ │ │ │ │ │ ├── ocr@1.25x.png │ │ │ │ │ │ │ │ │ ├── ocr@1.5x.png │ │ │ │ │ │ │ │ │ ├── ocr@1.75x.png │ │ │ │ │ │ │ │ │ ├── ocr@2x.png │ │ │ │ │ │ │ │ │ ├── settings.png │ │ │ │ │ │ │ │ │ ├── settings@1.25x.png │ │ │ │ │ │ │ │ │ ├── settings@1.5x.png │ │ │ │ │ │ │ │ │ ├── settings@1.75x.png │ │ │ │ │ │ │ │ │ ├── settings@2x.png │ │ │ │ │ │ │ │ │ ├── summarization.png │ │ │ │ │ │ │ │ │ ├── summarization@1.25x.png │ │ │ │ │ │ │ │ │ ├── summarization@1.5x.png │ │ │ │ │ │ │ │ │ ├── summarization@1.75x.png │ │ │ │ │ │ │ │ │ ├── summarization@2x.png │ │ │ │ │ │ │ │ │ ├── text-to-image.png │ │ │ │ │ │ │ │ │ ├── text-to-image@1.25x.png │ │ │ │ │ │ │ │ │ ├── text-to-image@1.5x.png │ │ │ │ │ │ │ │ │ ├── text-to-image@1.75x.png │ │ │ │ │ │ │ │ │ ├── text-to-image@2x.png │ │ │ │ │ │ │ │ │ ├── translation.png │ │ │ │ │ │ │ │ │ ├── translation@1.25x.png │ │ │ │ │ │ │ │ │ ├── translation@1.5x.png │ │ │ │ │ │ │ │ │ ├── translation@1.75x.png │ │ │ │ │ │ │ │ │ └── translation@2x.png │ │ │ │ │ │ │ │ ├── btn-copy.png │ │ │ │ │ │ │ │ ├── btn-copy@1.25x.png │ │ │ │ │ │ │ │ ├── btn-copy@1.5x.png │ │ │ │ │ │ │ │ ├── btn-copy@1.75x.png │ │ │ │ │ │ │ │ ├── btn-copy@2x.png │ │ │ │ │ │ │ │ ├── btn-demote.png │ │ │ │ │ │ │ │ ├── btn-demote@1.25x.png │ │ │ │ │ │ │ │ ├── btn-demote@1.5x.png │ │ │ │ │ │ │ │ ├── btn-demote@1.75x.png │ │ │ │ │ │ │ │ ├── btn-demote@2x.png │ │ │ │ │ │ │ │ ├── btn-edit.png │ │ │ │ │ │ │ │ ├── btn-edit@1.25x.png │ │ │ │ │ │ │ │ ├── btn-edit@1.5x.png │ │ │ │ │ │ │ │ ├── btn-edit@1.75x.png │ │ │ │ │ │ │ │ ├── btn-edit@2x.png │ │ │ │ │ │ │ │ ├── btn-ic-review.png │ │ │ │ │ │ │ │ ├── btn-ic-review@1.25x.png │ │ │ │ │ │ │ │ ├── btn-ic-review@1.5x.png │ │ │ │ │ │ │ │ ├── btn-ic-review@1.75x.png │ │ │ │ │ │ │ │ ├── btn-ic-review@2x.png │ │ │ │ │ │ │ │ ├── btn-menu-comments.png │ │ │ │ │ │ │ │ ├── btn-menu-comments@1.25x.png │ │ │ │ │ │ │ │ ├── btn-menu-comments@1.5x.png │ │ │ │ │ │ │ │ ├── btn-menu-comments@1.75x.png │ │ │ │ │ │ │ │ ├── btn-menu-comments@2x.png │ │ │ │ │ │ │ │ ├── btn-remove.png │ │ │ │ │ │ │ │ ├── btn-remove@1.25x.png │ │ │ │ │ │ │ │ ├── btn-remove@1.5x.png │ │ │ │ │ │ │ │ ├── btn-remove@1.75x.png │ │ │ │ │ │ │ │ ├── btn-remove@2x.png │ │ │ │ │ │ │ │ ├── btn-replace.png │ │ │ │ │ │ │ │ ├── btn-replace@1.25x.png │ │ │ │ │ │ │ │ ├── btn-replace@1.5x.png │ │ │ │ │ │ │ │ ├── btn-replace@1.75x.png │ │ │ │ │ │ │ │ ├── btn-replace@2x.png │ │ │ │ │ │ │ │ ├── btn-select-tool.png │ │ │ │ │ │ │ │ ├── btn-select-tool@1.25x.png │ │ │ │ │ │ │ │ ├── btn-select-tool@1.5x.png │ │ │ │ │ │ │ │ ├── btn-select-tool@1.75x.png │ │ │ │ │ │ │ │ ├── btn-select-tool@2x.png │ │ │ │ │ │ │ │ ├── btn-update.png │ │ │ │ │ │ │ │ ├── btn-update@1.25x.png │ │ │ │ │ │ │ │ ├── btn-update@1.5x.png │ │ │ │ │ │ │ │ ├── btn-update@1.75x.png │ │ │ │ │ │ │ │ ├── btn-update@2x.png │ │ │ │ │ │ │ │ ├── btn-zoomup.png │ │ │ │ │ │ │ │ ├── btn-zoomup@1.25x.png │ │ │ │ │ │ │ │ ├── btn-zoomup@1.5x.png │ │ │ │ │ │ │ │ ├── btn-zoomup@1.75x.png │ │ │ │ │ │ │ │ ├── btn-zoomup@2x.png │ │ │ │ │ │ │ │ ├── chevron-down.png │ │ │ │ │ │ │ │ ├── chevron-down@1.25x.png │ │ │ │ │ │ │ │ ├── chevron-down@1.5x.png │ │ │ │ │ │ │ │ ├── chevron-down@1.75x.png │ │ │ │ │ │ │ │ ├── chevron-down@2x.png │ │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ │ ├── close@1.25x.png │ │ │ │ │ │ │ │ ├── close@1.5x.png │ │ │ │ │ │ │ │ ├── close@1.75x.png │ │ │ │ │ │ │ │ ├── close@2x.png │ │ │ │ │ │ │ │ ├── copy.png │ │ │ │ │ │ │ │ ├── copy@1.25x.png │ │ │ │ │ │ │ │ ├── copy@1.5x.png │ │ │ │ │ │ │ │ ├── copy@1.75x.png │ │ │ │ │ │ │ │ ├── copy@2x.png │ │ │ │ │ │ │ │ ├── default.png │ │ │ │ │ │ │ │ ├── default@1.25x.png │ │ │ │ │ │ │ │ ├── default@1.5x.png │ │ │ │ │ │ │ │ ├── default@1.75x.png │ │ │ │ │ │ │ │ ├── default@2x.png │ │ │ │ │ │ │ │ ├── error.png │ │ │ │ │ │ │ │ ├── error@1.25x.png │ │ │ │ │ │ │ │ ├── error@1.5x.png │ │ │ │ │ │ │ │ ├── error@1.75x.png │ │ │ │ │ │ │ │ ├── error@2x.png │ │ │ │ │ │ │ │ ├── general-ai.png │ │ │ │ │ │ │ │ ├── general-ai@1.25x.png │ │ │ │ │ │ │ │ ├── general-ai@1.5x.png │ │ │ │ │ │ │ │ ├── general-ai@1.75x.png │ │ │ │ │ │ │ │ ├── general-ai@2x.png │ │ │ │ │ │ │ │ ├── image-ai.png │ │ │ │ │ │ │ │ ├── image-ai@1.25x.png │ │ │ │ │ │ │ │ ├── image-ai@1.5x.png │ │ │ │ │ │ │ │ ├── image-ai@1.75x.png │ │ │ │ │ │ │ │ ├── image-ai@2x.png │ │ │ │ │ │ │ │ ├── info.png │ │ │ │ │ │ │ │ ├── info@1.25x.png │ │ │ │ │ │ │ │ ├── info@1.5x.png │ │ │ │ │ │ │ │ ├── info@1.75x.png │ │ │ │ │ │ │ │ ├── info@2x.png │ │ │ │ │ │ │ │ ├── ocr.png │ │ │ │ │ │ │ │ ├── ocr@1.25x.png │ │ │ │ │ │ │ │ ├── ocr@1.5x.png │ │ │ │ │ │ │ │ ├── ocr@1.75x.png │ │ │ │ │ │ │ │ ├── ocr@2x.png │ │ │ │ │ │ │ │ ├── summarization.png │ │ │ │ │ │ │ │ ├── summarization@1.25x.png │ │ │ │ │ │ │ │ ├── summarization@1.5x.png │ │ │ │ │ │ │ │ ├── summarization@1.75x.png │ │ │ │ │ │ │ │ ├── summarization@2x.png │ │ │ │ │ │ │ │ ├── text-analysis-ai.png │ │ │ │ │ │ │ │ ├── text-analysis-ai@1.25x.png │ │ │ │ │ │ │ │ ├── text-analysis-ai@1.5x.png │ │ │ │ │ │ │ │ ├── text-analysis-ai@1.75x.png │ │ │ │ │ │ │ │ ├── text-analysis-ai@2x.png │ │ │ │ │ │ │ │ ├── text-to-image.png │ │ │ │ │ │ │ │ ├── text-to-image@1.25x.png │ │ │ │ │ │ │ │ ├── text-to-image@1.5x.png │ │ │ │ │ │ │ │ ├── text-to-image@1.75x.png │ │ │ │ │ │ │ │ ├── text-to-image@2x.png │ │ │ │ │ │ │ │ ├── translation.png │ │ │ │ │ │ │ │ ├── translation@1.25x.png │ │ │ │ │ │ │ │ ├── translation@1.5x.png │ │ │ │ │ │ │ │ ├── translation@1.75x.png │ │ │ │ │ │ │ │ ├── translation@2x.png │ │ │ │ │ │ │ │ ├── vision-ai.png │ │ │ │ │ │ │ │ ├── vision-ai@1.25x.png │ │ │ │ │ │ │ │ ├── vision-ai@1.5x.png │ │ │ │ │ │ │ │ ├── vision-ai@1.75x.png │ │ │ │ │ │ │ │ └── vision-ai@2x.png │ │ │ │ │ │ │ ├── theme-classic-light │ │ │ │ │ │ │ │ └── light │ │ │ │ │ │ │ │ │ ├── ask-ai.png │ │ │ │ │ │ │ │ │ ├── ask-ai@1.25x.png │ │ │ │ │ │ │ │ │ ├── ask-ai@1.5x.png │ │ │ │ │ │ │ │ │ ├── ask-ai@1.75x.png │ │ │ │ │ │ │ │ │ ├── ask-ai@2x.png │ │ │ │ │ │ │ │ │ ├── ask-ai_active.png │ │ │ │ │ │ │ │ │ ├── ask-ai_active@1.25x.png │ │ │ │ │ │ │ │ │ ├── ask-ai_active@1.5x.png │ │ │ │ │ │ │ │ │ ├── ask-ai_active@1.75x.png │ │ │ │ │ │ │ │ │ └── ask-ai_active@2x.png │ │ │ │ │ │ │ ├── theme-default │ │ │ │ │ │ │ │ ├── dark │ │ │ │ │ │ │ │ │ ├── ask-ai.png │ │ │ │ │ │ │ │ │ ├── ask-ai@1.25x.png │ │ │ │ │ │ │ │ │ ├── ask-ai@1.5x.png │ │ │ │ │ │ │ │ │ ├── ask-ai@1.75x.png │ │ │ │ │ │ │ │ │ ├── ask-ai@2x.png │ │ │ │ │ │ │ │ │ ├── ask-ai_active.png │ │ │ │ │ │ │ │ │ ├── ask-ai_active@1.25x.png │ │ │ │ │ │ │ │ │ ├── ask-ai_active@1.5x.png │ │ │ │ │ │ │ │ │ ├── ask-ai_active@1.75x.png │ │ │ │ │ │ │ │ │ └── ask-ai_active@2x.png │ │ │ │ │ │ │ │ └── light │ │ │ │ │ │ │ │ │ ├── ask-ai.png │ │ │ │ │ │ │ │ │ ├── ask-ai@1.25x.png │ │ │ │ │ │ │ │ │ ├── ask-ai@1.5x.png │ │ │ │ │ │ │ │ │ ├── ask-ai@1.75x.png │ │ │ │ │ │ │ │ │ ├── ask-ai@2x.png │ │ │ │ │ │ │ │ │ ├── ask-ai_active.png │ │ │ │ │ │ │ │ │ ├── ask-ai_active@1.25x.png │ │ │ │ │ │ │ │ │ ├── ask-ai_active@1.5x.png │ │ │ │ │ │ │ │ │ ├── ask-ai_active@1.75x.png │ │ │ │ │ │ │ │ │ └── ask-ai_active@2x.png │ │ │ │ │ │ │ └── theme-system │ │ │ │ │ │ │ │ ├── dark │ │ │ │ │ │ │ │ ├── ask-ai.png │ │ │ │ │ │ │ │ ├── ask-ai@1.25x.png │ │ │ │ │ │ │ │ ├── ask-ai@1.5x.png │ │ │ │ │ │ │ │ ├── ask-ai@1.75x.png │ │ │ │ │ │ │ │ ├── ask-ai@2x.png │ │ │ │ │ │ │ │ ├── ask-ai_active.png │ │ │ │ │ │ │ │ ├── ask-ai_active@1.25x.png │ │ │ │ │ │ │ │ ├── ask-ai_active@1.5x.png │ │ │ │ │ │ │ │ ├── ask-ai_active@1.75x.png │ │ │ │ │ │ │ │ └── ask-ai_active@2x.png │ │ │ │ │ │ │ │ └── light │ │ │ │ │ │ │ │ ├── ask-ai.png │ │ │ │ │ │ │ │ ├── ask-ai@1.25x.png │ │ │ │ │ │ │ │ ├── ask-ai@1.5x.png │ │ │ │ │ │ │ │ ├── ask-ai@1.75x.png │ │ │ │ │ │ │ │ ├── ask-ai@2x.png │ │ │ │ │ │ │ │ ├── ask-ai_active.png │ │ │ │ │ │ │ │ ├── ask-ai_active@1.25x.png │ │ │ │ │ │ │ │ ├── ask-ai_active@1.5x.png │ │ │ │ │ │ │ │ ├── ask-ai_active@1.75x.png │ │ │ │ │ │ │ │ └── ask-ai_active@2x.png │ │ │ │ │ │ ├── light │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ ├── icon@1.25x.png │ │ │ │ │ │ │ ├── icon@1.5x.png │ │ │ │ │ │ │ ├── icon@1.75x.png │ │ │ │ │ │ │ └── icon@2x.png │ │ │ │ │ │ ├── store │ │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ │ │ ├── icon@1.25x.png │ │ │ │ │ │ │ │ ├── icon@1.5x.png │ │ │ │ │ │ │ │ ├── icon@1.75x.png │ │ │ │ │ │ │ │ └── icon@2x.png │ │ │ │ │ │ │ └── screenshots │ │ │ │ │ │ │ │ ├── screen_1.png │ │ │ │ │ │ │ │ ├── screen_2.png │ │ │ │ │ │ │ │ ├── screen_3.png │ │ │ │ │ │ │ │ ├── screen_4.png │ │ │ │ │ │ │ │ ├── screen_5.png │ │ │ │ │ │ │ │ └── screen_6.png │ │ │ │ │ │ └── styles │ │ │ │ │ │ │ ├── aiModelEdit.css │ │ │ │ │ │ │ ├── aiModelsList.css │ │ │ │ │ │ │ ├── chat.css │ │ │ │ │ │ │ ├── common.css │ │ │ │ │ │ │ ├── customProviders.css │ │ │ │ │ │ │ ├── settings.css │ │ │ │ │ │ │ └── summarization.css │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── aiModelEdit.js │ │ │ │ │ │ ├── aiModelsList.js │ │ │ │ │ │ ├── chat.js │ │ │ │ │ │ ├── code.js │ │ │ │ │ │ ├── customProviders.js │ │ │ │ │ │ ├── engine │ │ │ │ │ │ │ ├── buttons.js │ │ │ │ │ │ │ ├── engine.js │ │ │ │ │ │ │ ├── library.js │ │ │ │ │ │ │ ├── local_storage.js │ │ │ │ │ │ │ ├── providers │ │ │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ │ │ ├── config.json │ │ │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ │ │ ├── anthropic-ai-models.txt │ │ │ │ │ │ │ │ │ ├── anthropic.js │ │ │ │ │ │ │ │ │ ├── deepseek-ai-models.txt │ │ │ │ │ │ │ │ │ ├── deepseek.js │ │ │ │ │ │ │ │ │ ├── google-gemini.js │ │ │ │ │ │ │ │ │ ├── gpt4all.js │ │ │ │ │ │ │ │ │ ├── groq.js │ │ │ │ │ │ │ │ │ ├── lmstudio.js │ │ │ │ │ │ │ │ │ ├── mistral.js │ │ │ │ │ │ │ │ │ ├── ollama.js │ │ │ │ │ │ │ │ │ ├── open-ai-models.txt │ │ │ │ │ │ │ │ │ ├── openai.js │ │ │ │ │ │ │ │ │ ├── proxy.js │ │ │ │ │ │ │ │ │ ├── stabilityai.js │ │ │ │ │ │ │ │ │ ├── together-ai-models.txt │ │ │ │ │ │ │ │ │ ├── together.ai.js │ │ │ │ │ │ │ │ │ ├── xAI.js │ │ │ │ │ │ │ │ │ └── zhipu.js │ │ │ │ │ │ │ │ ├── preinstall-example.json │ │ │ │ │ │ │ │ └── provider.js │ │ │ │ │ │ │ ├── register.js │ │ │ │ │ │ │ └── storage.js │ │ │ │ │ │ ├── helper.js │ │ │ │ │ │ ├── helperFuncs.js │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ │ ├── cell.js │ │ │ │ │ │ │ ├── slide.js │ │ │ │ │ │ │ └── word.js │ │ │ │ │ │ ├── hyperlink.js │ │ │ │ │ │ ├── settings.js │ │ │ │ │ │ ├── summarization.js │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── theme.js │ │ │ │ │ ├── settings.html │ │ │ │ │ ├── summarization.html │ │ │ │ │ ├── translations │ │ │ │ │ │ ├── ar-SA.json │ │ │ │ │ │ ├── cs-CS.json │ │ │ │ │ │ ├── de-DE.json │ │ │ │ │ │ ├── es-ES.json │ │ │ │ │ │ ├── fr-FR.json │ │ │ │ │ │ ├── it-IT.json │ │ │ │ │ │ ├── ja-JA.json │ │ │ │ │ │ ├── langs.json │ │ │ │ │ │ ├── pt-BR.json │ │ │ │ │ │ ├── ru-RU.json │ │ │ │ │ │ ├── sq-AL.json │ │ │ │ │ │ ├── sr-Cyrl-RS.json │ │ │ │ │ │ ├── sr-Latn-RS.json │ │ │ │ │ │ └── zh-CN.json │ │ │ │ │ ├── translationsettings.html │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── GPT-3-Encoder │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── encoder.js │ │ │ │ │ │ ├── encoder.json │ │ │ │ │ │ └── vocabulary.bpe │ │ │ │ │ │ ├── jquery │ │ │ │ │ │ └── jquery-3.7.1.min.js │ │ │ │ │ │ ├── md │ │ │ │ │ │ └── markdown-it.js │ │ │ │ │ │ └── select2-4.0.6-rc.1 │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── select2.css │ │ │ │ │ │ │ └── select2.min.css │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── select2.full.js │ │ │ │ │ │ │ ├── select2.full.min.js │ │ │ │ │ │ │ ├── select2.js │ │ │ │ │ │ │ └── select2.min.js │ │ │ │ │ │ └── docs │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── announcements-4.0.html │ │ │ │ │ │ ├── community.html │ │ │ │ │ │ ├── examples.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── options-old.html │ │ │ │ │ │ └── options.html │ │ │ │ ├── css │ │ │ │ │ ├── ai-integration.css │ │ │ │ │ └── plugins.css │ │ │ │ ├── hooks │ │ │ │ │ └── useAiPlugin.js │ │ │ │ ├── index.js │ │ │ │ └── js │ │ │ │ │ ├── plugins-sdk.js │ │ │ │ │ ├── plugins-ui.js │ │ │ │ │ └── plugins.js │ │ │ ├── ChangePassword │ │ │ │ ├── ChangePassword.js │ │ │ │ └── ChangePassword.module.scss │ │ │ ├── Example │ │ │ │ └── Example.js │ │ │ ├── Expiration │ │ │ │ ├── Expiration.js │ │ │ │ └── Expiration.module.scss │ │ │ ├── FileLimits │ │ │ │ ├── FileLimits.js │ │ │ │ └── FileLimits.module.scss │ │ │ ├── Forgotten │ │ │ │ ├── Forgotten.js │ │ │ │ └── Forgotten.module.scss │ │ │ ├── HealthCheck │ │ │ │ ├── HealthCheck.js │ │ │ │ └── HealthCheck.module.scss │ │ │ ├── LoggerConfig │ │ │ │ ├── LoggerConfig.js │ │ │ │ └── LoggerConfig.module.scss │ │ │ ├── Login │ │ │ │ ├── LoginPage.js │ │ │ │ └── styles.module.css │ │ │ ├── NotitifcationConfig │ │ │ │ ├── NotificationConfig.js │ │ │ │ └── NotificationConfig.module.scss │ │ │ ├── RequestFiltering │ │ │ │ ├── RequestFiltering.js │ │ │ │ └── RequestFiltering.module.scss │ │ │ ├── SecuritySettings │ │ │ │ ├── SecuritySettings.js │ │ │ │ └── SecuritySettings.module.scss │ │ │ ├── Settings │ │ │ │ ├── Settings.js │ │ │ │ └── Settings.scss │ │ │ ├── Setup │ │ │ │ ├── SetupPage.js │ │ │ │ └── styles.module.css │ │ │ ├── Statistics │ │ │ │ ├── InfoTable │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.module.css │ │ │ │ ├── ModeSwitcher.js │ │ │ │ ├── MonthlyStatistics.js │ │ │ │ ├── Statistics.module.scss │ │ │ │ ├── TopBlock │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.module.css │ │ │ │ ├── index.js │ │ │ │ └── styles.module.css │ │ │ └── WOPISettings │ │ │ │ ├── WOPISettings.js │ │ │ │ └── WOPISettings.module.scss │ │ ├── store │ │ │ ├── index.js │ │ │ └── slices │ │ │ │ ├── configSlice.js │ │ │ │ └── userSlice.js │ │ └── utils │ │ │ ├── getNestedValue.js │ │ │ ├── maskKey.js │ │ │ ├── mergeNestedObjects.js │ │ │ ├── passwordValidation.js │ │ │ └── paths.js │ └── webpack.config.js └── server │ ├── .gitignore │ ├── package-lock.json │ ├── package.json │ └── sources │ ├── bootstrap.js │ ├── devProxy.js │ ├── jwtSecret.js │ ├── middleware │ └── auth.js │ ├── passwordManager.js │ ├── routes │ ├── adminpanel │ │ └── router.js │ ├── config │ │ ├── config.schema.utils.js │ │ ├── config.service.js │ │ └── router.js │ └── wopi │ │ └── router.js │ └── server.js ├── CHANGELOG.md ├── Common ├── config │ ├── default.json │ ├── development-linux.json │ ├── development-mac.json │ ├── development-windows.json │ ├── log4js │ │ ├── development.json │ │ └── production.json │ ├── production-linux.json │ ├── production-windows.json │ └── schemas │ │ └── config.schema.json ├── npm-shrinkwrap.json ├── package.json └── sources │ ├── activeMQCore.js │ ├── commondefines.js │ ├── constants.js │ ├── formatchecker.js │ ├── license.js │ ├── logger.js │ ├── mailService.js │ ├── moduleReloader.js │ ├── notificationService.js │ ├── operationContext.js │ ├── rabbitMQCore.js │ ├── runtimeConfigManager.js │ ├── statsdclient.js │ ├── storage │ ├── storage-az.js │ ├── storage-base.js │ ├── storage-fs.js │ └── storage-s3.js │ ├── taskqueueRabbitMQ.js │ ├── tenantManager.js │ └── utils.js ├── DocService ├── npm-shrinkwrap.json ├── package.json ├── public │ └── healthcheck.docx └── sources │ ├── DocsCoServer.js │ ├── ai │ └── aiProxyHandler.js │ ├── canvasservice.js │ ├── changes2forgotten.js │ ├── converterservice.js │ ├── database.js │ ├── databaseConnectors │ ├── baseConnector.js │ ├── connectorUtilities.js │ ├── damengConnector.js │ ├── mssqlConnector.js │ ├── mysqlConnector.js │ ├── oracleConnector.js │ └── postgreConnector.js │ ├── editorDataMemory.js │ ├── fileuploaderservice.js │ ├── gc.js │ ├── pubsubRabbitMQ.js │ ├── routes │ ├── info.js │ └── static.js │ ├── server.js │ ├── shutdown.js │ ├── taskresult.js │ ├── utilsDocService.js │ ├── wopiClient.js │ └── wopiUtils.js ├── FileConverter ├── npm-shrinkwrap.json ├── package.json └── sources │ ├── converter.js │ └── convertermaster.js ├── Gruntfile.js ├── LICENSE.txt ├── Makefile ├── Metrics ├── config │ └── config.js ├── npm-shrinkwrap.json └── package.json ├── Readme.md ├── SpellChecker ├── npm-shrinkwrap.json ├── package.json └── sources │ ├── languages.js │ ├── server.js │ └── spellCheck.js ├── branding ├── info │ ├── img │ │ ├── favicon.ico │ │ ├── icon-cross.png │ │ └── logo.png │ └── index.html └── welcome │ ├── img │ ├── favicon.ico │ ├── icon-cross.png │ └── icon-done.png │ └── index.html ├── dictionaries └── update.py ├── eslint.config.js ├── license ├── Backbone.license ├── Bootstrap.license ├── Hunspell.license ├── Megapixel.license ├── NodeHun.license ├── PerfectScrollbar.license ├── RequireJS.license ├── SocketIO.license ├── Underscore.license ├── XRegExp.license ├── jQuery.browser.license ├── jQuery.license ├── less.license └── requirejs-text.license ├── npm-shrinkwrap.json ├── package.json ├── schema ├── dameng │ ├── createdb.sql │ └── removetbl.sql ├── json-api │ └── opening-file.json ├── mssql │ ├── createdb.sql │ └── removetbl.sql ├── mysql │ ├── createdb.sql │ ├── removetbl.sql │ └── upgrade │ │ ├── upgradev630.sql │ │ ├── upgradev710.sql │ │ └── upgradev720.sql ├── oracle │ ├── createdb.sql │ └── removetbl.sql └── postgresql │ ├── createdb.sql │ ├── removetbl.sql │ └── upgrade │ ├── upgradev630.sql │ ├── upgradev710.sql │ └── upgradev720.sql └── tests ├── env-setup.js ├── fixtures ├── README.md └── info │ ├── connections_basic.json │ ├── connections_critical_remaining.json │ ├── connections_missing_periods.json │ ├── developer_edition_users.json │ ├── open_source_connection.json │ ├── users_basic.json │ ├── users_critical_remaining.json │ ├── users_license_invalid_type.json │ ├── users_no_license.json │ ├── users_trial_limited_start_critical.json │ └── users_updates_unavailable.json ├── integration ├── databaseTests │ └── baseConnector.tests.js └── withServerInstance │ ├── forgottenFilesCommnads.tests.js │ └── storage.tests.js ├── jest.config.js ├── perf └── checkFileExpire.js └── unit ├── mailService.tests.js ├── request.tests.js ├── requestSSRF.tests.js ├── sample.tests.js ├── utils.tests.js └── utilsDocService.tests.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/azureStorageTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/.github/workflows/azureStorageTests.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/.github/workflows/codeql.yaml -------------------------------------------------------------------------------- /.github/workflows/damengDatabaseTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/.github/workflows/damengDatabaseTests.yml -------------------------------------------------------------------------------- /.github/workflows/fsStorageTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/.github/workflows/fsStorageTests.yml -------------------------------------------------------------------------------- /.github/workflows/lint-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/.github/workflows/lint-format.yml -------------------------------------------------------------------------------- /.github/workflows/mssqlDatabaseTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/.github/workflows/mssqlDatabaseTests.yml -------------------------------------------------------------------------------- /.github/workflows/mysqlDatabaseTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/.github/workflows/mysqlDatabaseTests.yml -------------------------------------------------------------------------------- /.github/workflows/oracleDatabaseTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/.github/workflows/oracleDatabaseTests.yml -------------------------------------------------------------------------------- /.github/workflows/postgreDatabaseTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/.github/workflows/postgreDatabaseTests.yml -------------------------------------------------------------------------------- /.github/workflows/s3storageTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/.github/workflows/s3storageTests.yml -------------------------------------------------------------------------------- /.github/workflows/unitTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/.github/workflows/unitTests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/.lintstagedrc.js -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/.travis.yml -------------------------------------------------------------------------------- /3DPARTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/3DPARTY.md -------------------------------------------------------------------------------- /3d-party-lic-report/json2md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/3d-party-lic-report/json2md.js -------------------------------------------------------------------------------- /3d-party-lic-report/license-report-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/3d-party-lic-report/license-report-config.json -------------------------------------------------------------------------------- /3rd-Party.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/3rd-Party.txt -------------------------------------------------------------------------------- /AdminPanel/client/.env.development: -------------------------------------------------------------------------------- 1 | REACT_APP_BACKEND_URL=http://localhost:9000 -------------------------------------------------------------------------------- /AdminPanel/client/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/.env.example -------------------------------------------------------------------------------- /AdminPanel/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/.gitignore -------------------------------------------------------------------------------- /AdminPanel/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/package-lock.json -------------------------------------------------------------------------------- /AdminPanel/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/package.json -------------------------------------------------------------------------------- /AdminPanel/client/public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/public/images/favicon.ico -------------------------------------------------------------------------------- /AdminPanel/client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/public/index.html -------------------------------------------------------------------------------- /AdminPanel/client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/App.css -------------------------------------------------------------------------------- /AdminPanel/client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/App.js -------------------------------------------------------------------------------- /AdminPanel/client/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/api/index.js -------------------------------------------------------------------------------- /AdminPanel/client/src/assets/AppLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/assets/AppLogo.svg -------------------------------------------------------------------------------- /AdminPanel/client/src/assets/AppMenuLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/assets/AppMenuLogo.svg -------------------------------------------------------------------------------- /AdminPanel/client/src/assets/AppMenuSprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/assets/AppMenuSprite.svg -------------------------------------------------------------------------------- /AdminPanel/client/src/assets/Download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/assets/Download.svg -------------------------------------------------------------------------------- /AdminPanel/client/src/assets/FailRed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/assets/FailRed.svg -------------------------------------------------------------------------------- /AdminPanel/client/src/assets/Spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/assets/Spinner.svg -------------------------------------------------------------------------------- /AdminPanel/client/src/assets/Success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/assets/Success.svg -------------------------------------------------------------------------------- /AdminPanel/client/src/assets/SuccessGreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/assets/SuccessGreen.svg -------------------------------------------------------------------------------- /AdminPanel/client/src/components/AccessRules/AccessRules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/AccessRules/AccessRules.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/AccessRules/AccessRules.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/AccessRules/AccessRules.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/components/AuthWrapper/AuthWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/AuthWrapper/AuthWrapper.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Button/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Button/Button.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Button/Button.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Button/Button.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Checkbox/Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Checkbox/Checkbox.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Checkbox/Checkbox.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Checkbox/Checkbox.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/components/ConfigLoader/ConfigLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/ConfigLoader/ConfigLoader.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/FixedSaveButton/FixedSaveButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/FixedSaveButton/FixedSaveButton.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/FixedSaveButton/FixedSaveButton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/FixedSaveButton/FixedSaveButton.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/components/FixedSaveButtonGroup/FixedSaveButtonGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/FixedSaveButtonGroup/FixedSaveButtonGroup.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Input/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Input/Input.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Input/Input.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Input/Input.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Menu/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Menu/Menu.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Menu/Menu.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Menu/Menu.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Menu/MenuItem/MenuItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Menu/MenuItem/MenuItem.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Menu/MenuItem/MenuItem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Menu/MenuItem/MenuItem.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/components/MobileHeader/MobileHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/MobileHeader/MobileHeader.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/MobileHeader/MobileHeader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/MobileHeader/MobileHeader.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Note/Note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Note/Note.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Note/Note.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Note/Note.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/components/PageDescription/PageDescription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/PageDescription/PageDescription.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/PageDescription/PageDescription.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/PageDescription/PageDescription.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/components/PageHeader/PageHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/PageHeader/PageHeader.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/PageHeader/PageHeader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/PageHeader/PageHeader.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/components/PasswordInput/PasswordInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/PasswordInput/PasswordInput.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/PasswordInput/PasswordInput.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/PasswordInput/PasswordInput.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/components/PasswordRequirements/PasswordRequirements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/PasswordRequirements/PasswordRequirements.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/PasswordRequirements/PasswordRequirements.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/PasswordRequirements/PasswordRequirements.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/components/ScrollToTop/ScrollToTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/ScrollToTop/ScrollToTop.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Section/Section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Section/Section.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Section/Section.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Section/Section.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Select/Select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Select/Select.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Select/Select.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Select/Select.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/components/ServerUnavailable/ServerUnavailable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/ServerUnavailable/ServerUnavailable.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/ServerUnavailable/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/ServerUnavailable/styles.module.css -------------------------------------------------------------------------------- /AdminPanel/client/src/components/StatisticsTopBlock/StatisticsTopBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/StatisticsTopBlock/StatisticsTopBlock.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/StatisticsTopBlock/StatisticsTopBlock.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/StatisticsTopBlock/StatisticsTopBlock.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Tabs/Tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Tabs/Tabs.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/Tabs/Tabs.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/Tabs/Tabs.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/components/ToggleSwitch/ToggleSwitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/ToggleSwitch/ToggleSwitch.js -------------------------------------------------------------------------------- /AdminPanel/client/src/components/ToggleSwitch/ToggleSwitch.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/components/ToggleSwitch/ToggleSwitch.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/config/menuItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/config/menuItems.js -------------------------------------------------------------------------------- /AdminPanel/client/src/hooks/useFieldValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/hooks/useFieldValidation.js -------------------------------------------------------------------------------- /AdminPanel/client/src/hooks/useSchemaLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/hooks/useSchemaLoader.js -------------------------------------------------------------------------------- /AdminPanel/client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/index.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/CHANGELOG.md -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/LICENSE.txt -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/aiModelEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/aiModelEdit.html -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/aiModelsList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/aiModelsList.html -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/chat.html -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/codeDesktop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/codeDesktop.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/components/ListView/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/components/ListView/script.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/components/ListView/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/components/ListView/style.css -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/components/Tooltip/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/components/Tooltip/script.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/components/Tooltip/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/components/Tooltip/style.css -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/config.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/configDesktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/configDesktop.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/customProviders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/customProviders.html -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/deploy/ai.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/deploy/ai.plugin -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/helper.html -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/hyperlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/hyperlink.html -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/index.html -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/indexDesktop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/indexDesktop.html -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/dark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/dark/icon.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/dark/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/dark/icon@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/dark/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/dark/icon@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/dark/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/dark/icon@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/dark/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/dark/icon@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-audio.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-audio@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-audio@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-audio@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-audio@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-audio@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-audio@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-audio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-audio@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-code.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-code@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-code@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-code@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-code@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-code@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-code@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-code@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-code@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-embeddings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-embeddings.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-embeddings@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-embeddings@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-embeddings@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-embeddings@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-embeddings@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-embeddings@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-embeddings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-embeddings@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-images.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-images@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-images@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-images@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-images@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-images@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-images@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-images@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-images@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-moderations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-moderations.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-moderations@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-moderations@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-moderations@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-moderations@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-moderations@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-moderations@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-moderations@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-moderations@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-realtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-realtime.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-realtime@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-realtime@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-realtime@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-realtime@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-realtime@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-realtime@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-realtime@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-realtime@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-texts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-texts.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-texts@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-texts@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-texts@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-texts@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-texts@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-texts@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-texts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-texts@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-visual-analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ai-visual-analysis.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ask-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ask-ai.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ask-ai@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ask-ai@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ask-ai@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ask-ai@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ask-ai@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ask-ai@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ask-ai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ask-ai@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ask-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ask-ai.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ask-ai@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ask-ai@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ask-ai@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ask-ai@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ask-ai@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ask-ai@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ask-ai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ask-ai@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/default.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/default@1.25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/default@1.25.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/default@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/default@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/default@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/default@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/default@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ocr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ocr.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ocr@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ocr@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ocr@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ocr@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ocr@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ocr@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ocr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/ocr@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/settings.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/settings@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/settings@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/settings@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/settings@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/settings@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/settings@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/settings@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/summarization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/summarization.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/summarization@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/summarization@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/text-to-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/text-to-image.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/text-to-image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/text-to-image@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/translation.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/translation@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/translation@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/translation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/big/translation@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-copy.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-copy@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-copy@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-copy@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-copy@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-copy@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-copy@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-copy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-copy@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-demote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-demote.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-demote@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-demote@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-demote@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-demote@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-demote@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-demote@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-demote@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-demote@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-edit.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-edit@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-edit@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-edit@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-edit@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-edit@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-edit@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-edit@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-ic-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-ic-review.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-ic-review@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-ic-review@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-ic-review@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-ic-review@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-ic-review@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-ic-review@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-ic-review@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-ic-review@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-menu-comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-menu-comments.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-menu-comments@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-menu-comments@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-remove.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-remove@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-remove@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-remove@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-remove@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-remove@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-remove@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-remove@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-remove@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-replace.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-replace@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-replace@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-replace@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-replace@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-replace@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-replace@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-replace@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-replace@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-select-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-select-tool.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-update.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-update@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-update@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-update@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-update@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-update@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-update@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-update@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-update@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-zoomup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-zoomup.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-zoomup@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-zoomup@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-zoomup@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-zoomup@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-zoomup@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-zoomup@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-zoomup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/btn-zoomup@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/chevron-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/chevron-down.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/chevron-down@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/chevron-down@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/chevron-down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/chevron-down@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/close.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/close@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/close@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/close@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/close@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/close@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/close@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/close@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/copy.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/copy@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/copy@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/copy@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/copy@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/copy@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/copy@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/copy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/copy@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/default.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/default@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/default@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/default@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/default@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/default@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/default@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/default@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/error.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/error@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/error@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/error@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/error@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/error@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/error@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/error@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/general-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/general-ai.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/general-ai@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/general-ai@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/general-ai@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/general-ai@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/general-ai@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/general-ai@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/general-ai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/general-ai@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/image-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/image-ai.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/image-ai@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/image-ai@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/image-ai@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/image-ai@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/image-ai@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/image-ai@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/image-ai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/image-ai@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/info.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/info@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/info@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/info@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/info@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/info@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/info@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/info@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ocr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ocr.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ocr@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ocr@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ocr@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ocr@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ocr@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ocr@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ocr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/ocr@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/summarization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/summarization.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/summarization@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/summarization@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/text-analysis-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/text-analysis-ai.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/text-to-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/text-to-image.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/text-to-image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/text-to-image@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/translation.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/translation@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/translation@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/translation@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/translation@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/translation@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/translation@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/translation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/translation@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/vision-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/vision-ai.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/vision-ai@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/vision-ai@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/vision-ai@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/vision-ai@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/vision-ai@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/vision-ai@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/vision-ai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/dark/vision-ai@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-audio.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-audio@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-audio@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-audio@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-audio@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-audio@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-audio@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-audio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-audio@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-code.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-code@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-code@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-code@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-code@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-code@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-code@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-code@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-code@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-embeddings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-embeddings.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-embeddings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-embeddings@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-images.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-images@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-images@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-images@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-images@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-images@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-images@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-images@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-images@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-moderations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-moderations.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-realtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-realtime.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-realtime@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-realtime@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-realtime@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-realtime@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-texts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-texts.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-texts@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-texts@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-texts@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-texts@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-texts@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-texts@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-texts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ai-texts@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ask-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ask-ai.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ask-ai@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ask-ai@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ask-ai@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ask-ai@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ask-ai@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ask-ai@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ask-ai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ask-ai@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ask-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ask-ai.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ask-ai@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ask-ai@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ask-ai@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ask-ai@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ask-ai@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ask-ai@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ask-ai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ask-ai@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/default.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/default@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/default@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/default@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ocr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ocr.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ocr@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ocr@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ocr@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ocr@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ocr@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ocr@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ocr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/ocr@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/settings.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/settings@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/big/translation.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-copy.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-copy@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-copy@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-copy@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-copy@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-copy@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-copy@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-copy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-copy@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-demote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-demote.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-demote@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-demote@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-demote@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-demote@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-demote@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-demote@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-demote@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-demote@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-edit.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-edit@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-edit@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-edit@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-edit@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-edit@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-edit@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-edit@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-ic-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-ic-review.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-ic-review@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-ic-review@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-remove.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-remove@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-remove@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-remove@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-remove@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-remove@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-remove@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-remove@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-remove@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-replace.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-replace@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-replace@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-replace@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-replace@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-select-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-select-tool.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-update.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-update@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-update@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-update@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-update@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-update@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-update@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-update@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-update@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-zoomup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-zoomup.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-zoomup@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-zoomup@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-zoomup@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-zoomup@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-zoomup@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-zoomup@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-zoomup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/btn-zoomup@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/chevron-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/chevron-down.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/chevron-down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/chevron-down@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/close.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/close@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/close@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/close@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/close@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/close@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/close@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/close@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/copy.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/copy@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/copy@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/copy@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/copy@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/copy@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/copy@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/copy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/copy@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/default.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/default@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/default@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/default@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/default@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/default@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/default@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/default@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/error.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/error@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/error@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/error@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/error@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/error@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/error@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/error@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/general-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/general-ai.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/general-ai@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/general-ai@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/general-ai@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/general-ai@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/general-ai@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/general-ai@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/general-ai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/general-ai@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/image-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/image-ai.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/image-ai@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/image-ai@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/image-ai@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/image-ai@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/image-ai@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/image-ai@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/image-ai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/image-ai@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/info.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/info@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/info@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/info@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/info@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/info@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/info@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/info@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ocr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ocr.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ocr@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ocr@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ocr@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ocr@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ocr@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ocr@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ocr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/ocr@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/summarization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/summarization.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/summarization@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/summarization@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/text-analysis-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/text-analysis-ai.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/text-to-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/text-to-image.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/text-to-image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/text-to-image@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/translation.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/translation@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/translation@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/translation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/translation@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/vision-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/vision-ai.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/vision-ai@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/vision-ai@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/vision-ai@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/vision-ai@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/vision-ai@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/vision-ai@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/vision-ai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/icons/light/vision-ai@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/light/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/light/icon.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/light/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/light/icon@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/light/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/light/icon@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/light/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/light/icon@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/light/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/light/icon@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/store/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/store/icons/icon.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/store/icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/store/icons/icon.svg -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/store/icons/icon@1.25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/store/icons/icon@1.25x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/store/icons/icon@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/store/icons/icon@1.5x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/store/icons/icon@1.75x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/store/icons/icon@1.75x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/store/icons/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/store/icons/icon@2x.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/store/screenshots/screen_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/store/screenshots/screen_1.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/store/screenshots/screen_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/store/screenshots/screen_2.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/store/screenshots/screen_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/store/screenshots/screen_3.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/store/screenshots/screen_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/store/screenshots/screen_4.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/store/screenshots/screen_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/store/screenshots/screen_5.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/store/screenshots/screen_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/store/screenshots/screen_6.png -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/styles/aiModelEdit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/styles/aiModelEdit.css -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/styles/aiModelsList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/styles/aiModelsList.css -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/styles/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/styles/chat.css -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/styles/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/styles/common.css -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/styles/customProviders.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/styles/customProviders.css -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/styles/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/styles/settings.css -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/resources/styles/summarization.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/resources/styles/summarization.css -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/aiModelEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/aiModelEdit.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/aiModelsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/aiModelsList.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/chat.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/code.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/customProviders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/customProviders.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/buttons.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/engine.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/library.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/local_storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/local_storage.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/providers/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/providers/base.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/providers/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/providers/config.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/providers/internal/groq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/providers/internal/groq.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/providers/internal/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/providers/internal/proxy.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/providers/internal/xAI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/providers/internal/xAI.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/providers/internal/zhipu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/providers/internal/zhipu.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/providers/provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/providers/provider.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/register.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/engine/storage.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/helper.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/helperFuncs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/helperFuncs.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/helpers/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/helpers/cell.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/helpers/slide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/helpers/slide.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/helpers/word.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/helpers/word.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/hyperlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/hyperlink.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/settings.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/summarization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/summarization.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/scripts/utils/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/scripts/utils/theme.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/settings.html -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/summarization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/summarization.html -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/translations/ar-SA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/translations/ar-SA.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/translations/cs-CS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/translations/cs-CS.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/translations/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/translations/de-DE.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/translations/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/translations/es-ES.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/translations/fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/translations/fr-FR.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/translations/it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/translations/it-IT.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/translations/ja-JA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/translations/ja-JA.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/translations/langs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/translations/langs.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/translations/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/translations/pt-BR.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/translations/ru-RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/translations/ru-RU.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/translations/sq-AL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/translations/sq-AL.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/translations/sr-Cyrl-RS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/translations/sr-Cyrl-RS.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/translations/sr-Latn-RS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/translations/sr-Latn-RS.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/translations/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/translations/zh-CN.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/translationsettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/translationsettings.html -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/vendor/GPT-3-Encoder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/vendor/GPT-3-Encoder/LICENSE -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/vendor/GPT-3-Encoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/vendor/GPT-3-Encoder/README.md -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/vendor/GPT-3-Encoder/encoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/vendor/GPT-3-Encoder/encoder.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/vendor/GPT-3-Encoder/encoder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/vendor/GPT-3-Encoder/encoder.json -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/vendor/GPT-3-Encoder/vocabulary.bpe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/vendor/GPT-3-Encoder/vocabulary.bpe -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/vendor/jquery/jquery-3.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/vendor/jquery/jquery-3.7.1.min.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/vendor/md/markdown-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/vendor/md/markdown-it.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/vendor/select2-4.0.6-rc.1/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/vendor/select2-4.0.6-rc.1/LICENSE.md -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/vendor/select2-4.0.6-rc.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/vendor/select2-4.0.6-rc.1/README.md -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/vendor/select2-4.0.6-rc.1/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/vendor/select2-4.0.6-rc.1/docs/README.md -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/ai/vendor/select2-4.0.6-rc.1/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/ai/vendor/select2-4.0.6-rc.1/docs/index.html -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/css/ai-integration.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/css/ai-integration.css -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/css/plugins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/css/plugins.css -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/hooks/useAiPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/hooks/useAiPlugin.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/index.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/js/plugins-sdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/js/plugins-sdk.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/js/plugins-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/js/plugins-ui.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/AiIntegration/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/AiIntegration/js/plugins.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/ChangePassword/ChangePassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/ChangePassword/ChangePassword.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/ChangePassword/ChangePassword.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/ChangePassword/ChangePassword.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Example/Example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Example/Example.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Expiration/Expiration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Expiration/Expiration.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Expiration/Expiration.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Expiration/Expiration.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/FileLimits/FileLimits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/FileLimits/FileLimits.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/FileLimits/FileLimits.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/FileLimits/FileLimits.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Forgotten/Forgotten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Forgotten/Forgotten.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Forgotten/Forgotten.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Forgotten/Forgotten.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/HealthCheck/HealthCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/HealthCheck/HealthCheck.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/HealthCheck/HealthCheck.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/HealthCheck/HealthCheck.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/LoggerConfig/LoggerConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/LoggerConfig/LoggerConfig.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/LoggerConfig/LoggerConfig.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/LoggerConfig/LoggerConfig.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Login/LoginPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Login/LoginPage.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Login/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Login/styles.module.css -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/NotitifcationConfig/NotificationConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/NotitifcationConfig/NotificationConfig.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/NotitifcationConfig/NotificationConfig.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/NotitifcationConfig/NotificationConfig.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/RequestFiltering/RequestFiltering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/RequestFiltering/RequestFiltering.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/RequestFiltering/RequestFiltering.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/RequestFiltering/RequestFiltering.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/SecuritySettings/SecuritySettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/SecuritySettings/SecuritySettings.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/SecuritySettings/SecuritySettings.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/SecuritySettings/SecuritySettings.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Settings/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Settings/Settings.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Settings/Settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Settings/Settings.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Setup/SetupPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Setup/SetupPage.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Setup/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Setup/styles.module.css -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Statistics/InfoTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Statistics/InfoTable/index.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Statistics/InfoTable/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Statistics/InfoTable/styles.module.css -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Statistics/ModeSwitcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Statistics/ModeSwitcher.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Statistics/MonthlyStatistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Statistics/MonthlyStatistics.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Statistics/Statistics.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Statistics/Statistics.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Statistics/TopBlock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Statistics/TopBlock/index.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Statistics/TopBlock/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Statistics/TopBlock/styles.module.css -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Statistics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Statistics/index.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/Statistics/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/Statistics/styles.module.css -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/WOPISettings/WOPISettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/WOPISettings/WOPISettings.js -------------------------------------------------------------------------------- /AdminPanel/client/src/pages/WOPISettings/WOPISettings.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/pages/WOPISettings/WOPISettings.module.scss -------------------------------------------------------------------------------- /AdminPanel/client/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/store/index.js -------------------------------------------------------------------------------- /AdminPanel/client/src/store/slices/configSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/store/slices/configSlice.js -------------------------------------------------------------------------------- /AdminPanel/client/src/store/slices/userSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/store/slices/userSlice.js -------------------------------------------------------------------------------- /AdminPanel/client/src/utils/getNestedValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/utils/getNestedValue.js -------------------------------------------------------------------------------- /AdminPanel/client/src/utils/maskKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/utils/maskKey.js -------------------------------------------------------------------------------- /AdminPanel/client/src/utils/mergeNestedObjects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/utils/mergeNestedObjects.js -------------------------------------------------------------------------------- /AdminPanel/client/src/utils/passwordValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/utils/passwordValidation.js -------------------------------------------------------------------------------- /AdminPanel/client/src/utils/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/src/utils/paths.js -------------------------------------------------------------------------------- /AdminPanel/client/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/client/webpack.config.js -------------------------------------------------------------------------------- /AdminPanel/server/.gitignore: -------------------------------------------------------------------------------- 1 | runtime/config.json 2 | node_modules/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /AdminPanel/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/server/package-lock.json -------------------------------------------------------------------------------- /AdminPanel/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/server/package.json -------------------------------------------------------------------------------- /AdminPanel/server/sources/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/server/sources/bootstrap.js -------------------------------------------------------------------------------- /AdminPanel/server/sources/devProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/server/sources/devProxy.js -------------------------------------------------------------------------------- /AdminPanel/server/sources/jwtSecret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/server/sources/jwtSecret.js -------------------------------------------------------------------------------- /AdminPanel/server/sources/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/server/sources/middleware/auth.js -------------------------------------------------------------------------------- /AdminPanel/server/sources/passwordManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/server/sources/passwordManager.js -------------------------------------------------------------------------------- /AdminPanel/server/sources/routes/adminpanel/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/server/sources/routes/adminpanel/router.js -------------------------------------------------------------------------------- /AdminPanel/server/sources/routes/config/config.schema.utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/server/sources/routes/config/config.schema.utils.js -------------------------------------------------------------------------------- /AdminPanel/server/sources/routes/config/config.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/server/sources/routes/config/config.service.js -------------------------------------------------------------------------------- /AdminPanel/server/sources/routes/config/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/server/sources/routes/config/router.js -------------------------------------------------------------------------------- /AdminPanel/server/sources/routes/wopi/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/server/sources/routes/wopi/router.js -------------------------------------------------------------------------------- /AdminPanel/server/sources/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/AdminPanel/server/sources/server.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Common/config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/config/default.json -------------------------------------------------------------------------------- /Common/config/development-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/config/development-linux.json -------------------------------------------------------------------------------- /Common/config/development-mac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/config/development-mac.json -------------------------------------------------------------------------------- /Common/config/development-windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/config/development-windows.json -------------------------------------------------------------------------------- /Common/config/log4js/development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/config/log4js/development.json -------------------------------------------------------------------------------- /Common/config/log4js/production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/config/log4js/production.json -------------------------------------------------------------------------------- /Common/config/production-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/config/production-linux.json -------------------------------------------------------------------------------- /Common/config/production-windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/config/production-windows.json -------------------------------------------------------------------------------- /Common/config/schemas/config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/config/schemas/config.schema.json -------------------------------------------------------------------------------- /Common/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/npm-shrinkwrap.json -------------------------------------------------------------------------------- /Common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/package.json -------------------------------------------------------------------------------- /Common/sources/activeMQCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/activeMQCore.js -------------------------------------------------------------------------------- /Common/sources/commondefines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/commondefines.js -------------------------------------------------------------------------------- /Common/sources/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/constants.js -------------------------------------------------------------------------------- /Common/sources/formatchecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/formatchecker.js -------------------------------------------------------------------------------- /Common/sources/license.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/license.js -------------------------------------------------------------------------------- /Common/sources/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/logger.js -------------------------------------------------------------------------------- /Common/sources/mailService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/mailService.js -------------------------------------------------------------------------------- /Common/sources/moduleReloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/moduleReloader.js -------------------------------------------------------------------------------- /Common/sources/notificationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/notificationService.js -------------------------------------------------------------------------------- /Common/sources/operationContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/operationContext.js -------------------------------------------------------------------------------- /Common/sources/rabbitMQCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/rabbitMQCore.js -------------------------------------------------------------------------------- /Common/sources/runtimeConfigManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/runtimeConfigManager.js -------------------------------------------------------------------------------- /Common/sources/statsdclient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/statsdclient.js -------------------------------------------------------------------------------- /Common/sources/storage/storage-az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/storage/storage-az.js -------------------------------------------------------------------------------- /Common/sources/storage/storage-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/storage/storage-base.js -------------------------------------------------------------------------------- /Common/sources/storage/storage-fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/storage/storage-fs.js -------------------------------------------------------------------------------- /Common/sources/storage/storage-s3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/storage/storage-s3.js -------------------------------------------------------------------------------- /Common/sources/taskqueueRabbitMQ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/taskqueueRabbitMQ.js -------------------------------------------------------------------------------- /Common/sources/tenantManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/tenantManager.js -------------------------------------------------------------------------------- /Common/sources/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Common/sources/utils.js -------------------------------------------------------------------------------- /DocService/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/npm-shrinkwrap.json -------------------------------------------------------------------------------- /DocService/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/package.json -------------------------------------------------------------------------------- /DocService/public/healthcheck.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/public/healthcheck.docx -------------------------------------------------------------------------------- /DocService/sources/DocsCoServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/DocsCoServer.js -------------------------------------------------------------------------------- /DocService/sources/ai/aiProxyHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/ai/aiProxyHandler.js -------------------------------------------------------------------------------- /DocService/sources/canvasservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/canvasservice.js -------------------------------------------------------------------------------- /DocService/sources/changes2forgotten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/changes2forgotten.js -------------------------------------------------------------------------------- /DocService/sources/converterservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/converterservice.js -------------------------------------------------------------------------------- /DocService/sources/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/database.js -------------------------------------------------------------------------------- /DocService/sources/databaseConnectors/baseConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/databaseConnectors/baseConnector.js -------------------------------------------------------------------------------- /DocService/sources/databaseConnectors/connectorUtilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/databaseConnectors/connectorUtilities.js -------------------------------------------------------------------------------- /DocService/sources/databaseConnectors/damengConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/databaseConnectors/damengConnector.js -------------------------------------------------------------------------------- /DocService/sources/databaseConnectors/mssqlConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/databaseConnectors/mssqlConnector.js -------------------------------------------------------------------------------- /DocService/sources/databaseConnectors/mysqlConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/databaseConnectors/mysqlConnector.js -------------------------------------------------------------------------------- /DocService/sources/databaseConnectors/oracleConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/databaseConnectors/oracleConnector.js -------------------------------------------------------------------------------- /DocService/sources/databaseConnectors/postgreConnector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/databaseConnectors/postgreConnector.js -------------------------------------------------------------------------------- /DocService/sources/editorDataMemory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/editorDataMemory.js -------------------------------------------------------------------------------- /DocService/sources/fileuploaderservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/fileuploaderservice.js -------------------------------------------------------------------------------- /DocService/sources/gc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/gc.js -------------------------------------------------------------------------------- /DocService/sources/pubsubRabbitMQ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/pubsubRabbitMQ.js -------------------------------------------------------------------------------- /DocService/sources/routes/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/routes/info.js -------------------------------------------------------------------------------- /DocService/sources/routes/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/routes/static.js -------------------------------------------------------------------------------- /DocService/sources/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/server.js -------------------------------------------------------------------------------- /DocService/sources/shutdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/shutdown.js -------------------------------------------------------------------------------- /DocService/sources/taskresult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/taskresult.js -------------------------------------------------------------------------------- /DocService/sources/utilsDocService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/utilsDocService.js -------------------------------------------------------------------------------- /DocService/sources/wopiClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/wopiClient.js -------------------------------------------------------------------------------- /DocService/sources/wopiUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/DocService/sources/wopiUtils.js -------------------------------------------------------------------------------- /FileConverter/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/FileConverter/npm-shrinkwrap.json -------------------------------------------------------------------------------- /FileConverter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/FileConverter/package.json -------------------------------------------------------------------------------- /FileConverter/sources/converter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/FileConverter/sources/converter.js -------------------------------------------------------------------------------- /FileConverter/sources/convertermaster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/FileConverter/sources/convertermaster.js -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Makefile -------------------------------------------------------------------------------- /Metrics/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Metrics/config/config.js -------------------------------------------------------------------------------- /Metrics/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Metrics/npm-shrinkwrap.json -------------------------------------------------------------------------------- /Metrics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Metrics/package.json -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/Readme.md -------------------------------------------------------------------------------- /SpellChecker/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/SpellChecker/npm-shrinkwrap.json -------------------------------------------------------------------------------- /SpellChecker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/SpellChecker/package.json -------------------------------------------------------------------------------- /SpellChecker/sources/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/SpellChecker/sources/languages.js -------------------------------------------------------------------------------- /SpellChecker/sources/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/SpellChecker/sources/server.js -------------------------------------------------------------------------------- /SpellChecker/sources/spellCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/SpellChecker/sources/spellCheck.js -------------------------------------------------------------------------------- /branding/info/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/branding/info/img/favicon.ico -------------------------------------------------------------------------------- /branding/info/img/icon-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/branding/info/img/icon-cross.png -------------------------------------------------------------------------------- /branding/info/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/branding/info/img/logo.png -------------------------------------------------------------------------------- /branding/info/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/branding/info/index.html -------------------------------------------------------------------------------- /branding/welcome/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/branding/welcome/img/favicon.ico -------------------------------------------------------------------------------- /branding/welcome/img/icon-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/branding/welcome/img/icon-cross.png -------------------------------------------------------------------------------- /branding/welcome/img/icon-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/branding/welcome/img/icon-done.png -------------------------------------------------------------------------------- /branding/welcome/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/branding/welcome/index.html -------------------------------------------------------------------------------- /dictionaries/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/dictionaries/update.py -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/eslint.config.js -------------------------------------------------------------------------------- /license/Backbone.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/license/Backbone.license -------------------------------------------------------------------------------- /license/Bootstrap.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/license/Bootstrap.license -------------------------------------------------------------------------------- /license/Hunspell.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/license/Hunspell.license -------------------------------------------------------------------------------- /license/Megapixel.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/license/Megapixel.license -------------------------------------------------------------------------------- /license/NodeHun.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/license/NodeHun.license -------------------------------------------------------------------------------- /license/PerfectScrollbar.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/license/PerfectScrollbar.license -------------------------------------------------------------------------------- /license/RequireJS.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/license/RequireJS.license -------------------------------------------------------------------------------- /license/SocketIO.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/license/SocketIO.license -------------------------------------------------------------------------------- /license/Underscore.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/license/Underscore.license -------------------------------------------------------------------------------- /license/XRegExp.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/license/XRegExp.license -------------------------------------------------------------------------------- /license/jQuery.browser.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/license/jQuery.browser.license -------------------------------------------------------------------------------- /license/jQuery.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/license/jQuery.license -------------------------------------------------------------------------------- /license/less.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/license/less.license -------------------------------------------------------------------------------- /license/requirejs-text.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/license/requirejs-text.license -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/package.json -------------------------------------------------------------------------------- /schema/dameng/createdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/schema/dameng/createdb.sql -------------------------------------------------------------------------------- /schema/dameng/removetbl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/schema/dameng/removetbl.sql -------------------------------------------------------------------------------- /schema/json-api/opening-file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/schema/json-api/opening-file.json -------------------------------------------------------------------------------- /schema/mssql/createdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/schema/mssql/createdb.sql -------------------------------------------------------------------------------- /schema/mssql/removetbl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/schema/mssql/removetbl.sql -------------------------------------------------------------------------------- /schema/mysql/createdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/schema/mysql/createdb.sql -------------------------------------------------------------------------------- /schema/mysql/removetbl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/schema/mysql/removetbl.sql -------------------------------------------------------------------------------- /schema/mysql/upgrade/upgradev630.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/schema/mysql/upgrade/upgradev630.sql -------------------------------------------------------------------------------- /schema/mysql/upgrade/upgradev710.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/schema/mysql/upgrade/upgradev710.sql -------------------------------------------------------------------------------- /schema/mysql/upgrade/upgradev720.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/schema/mysql/upgrade/upgradev720.sql -------------------------------------------------------------------------------- /schema/oracle/createdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/schema/oracle/createdb.sql -------------------------------------------------------------------------------- /schema/oracle/removetbl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/schema/oracle/removetbl.sql -------------------------------------------------------------------------------- /schema/postgresql/createdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/schema/postgresql/createdb.sql -------------------------------------------------------------------------------- /schema/postgresql/removetbl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/schema/postgresql/removetbl.sql -------------------------------------------------------------------------------- /schema/postgresql/upgrade/upgradev630.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/schema/postgresql/upgrade/upgradev630.sql -------------------------------------------------------------------------------- /schema/postgresql/upgrade/upgradev710.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/schema/postgresql/upgrade/upgradev710.sql -------------------------------------------------------------------------------- /schema/postgresql/upgrade/upgradev720.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/schema/postgresql/upgrade/upgradev720.sql -------------------------------------------------------------------------------- /tests/env-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/env-setup.js -------------------------------------------------------------------------------- /tests/fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/fixtures/README.md -------------------------------------------------------------------------------- /tests/fixtures/info/connections_basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/fixtures/info/connections_basic.json -------------------------------------------------------------------------------- /tests/fixtures/info/connections_critical_remaining.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/fixtures/info/connections_critical_remaining.json -------------------------------------------------------------------------------- /tests/fixtures/info/connections_missing_periods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/fixtures/info/connections_missing_periods.json -------------------------------------------------------------------------------- /tests/fixtures/info/developer_edition_users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/fixtures/info/developer_edition_users.json -------------------------------------------------------------------------------- /tests/fixtures/info/open_source_connection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/fixtures/info/open_source_connection.json -------------------------------------------------------------------------------- /tests/fixtures/info/users_basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/fixtures/info/users_basic.json -------------------------------------------------------------------------------- /tests/fixtures/info/users_critical_remaining.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/fixtures/info/users_critical_remaining.json -------------------------------------------------------------------------------- /tests/fixtures/info/users_license_invalid_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/fixtures/info/users_license_invalid_type.json -------------------------------------------------------------------------------- /tests/fixtures/info/users_no_license.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/fixtures/info/users_no_license.json -------------------------------------------------------------------------------- /tests/fixtures/info/users_trial_limited_start_critical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/fixtures/info/users_trial_limited_start_critical.json -------------------------------------------------------------------------------- /tests/fixtures/info/users_updates_unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/fixtures/info/users_updates_unavailable.json -------------------------------------------------------------------------------- /tests/integration/databaseTests/baseConnector.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/integration/databaseTests/baseConnector.tests.js -------------------------------------------------------------------------------- /tests/integration/withServerInstance/forgottenFilesCommnads.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/integration/withServerInstance/forgottenFilesCommnads.tests.js -------------------------------------------------------------------------------- /tests/integration/withServerInstance/storage.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/integration/withServerInstance/storage.tests.js -------------------------------------------------------------------------------- /tests/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/jest.config.js -------------------------------------------------------------------------------- /tests/perf/checkFileExpire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/perf/checkFileExpire.js -------------------------------------------------------------------------------- /tests/unit/mailService.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/unit/mailService.tests.js -------------------------------------------------------------------------------- /tests/unit/request.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/unit/request.tests.js -------------------------------------------------------------------------------- /tests/unit/requestSSRF.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/unit/requestSSRF.tests.js -------------------------------------------------------------------------------- /tests/unit/sample.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/unit/sample.tests.js -------------------------------------------------------------------------------- /tests/unit/utils.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/unit/utils.tests.js -------------------------------------------------------------------------------- /tests/unit/utilsDocService.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/server/HEAD/tests/unit/utilsDocService.tests.js --------------------------------------------------------------------------------