@prostgles/prostgles 2.3.6-dev.1786548258
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dockerignore +14 -0
- package/.eslintrc.common.js +71 -0
- package/.gitattributes +2 -0
- package/.github/ISSUE_TEMPLATE/BUG.yml +52 -0
- package/.github/ISSUE_TEMPLATE/CUSTOM.yml +13 -0
- package/.github/ISSUE_TEMPLATE/FEATURE.yml +27 -0
- package/.github/ISSUE_TEMPLATE/bug_report.md +9 -0
- package/.github/ISSUE_TEMPLATE/config.yml +5 -0
- package/.github/ISSUE_TEMPLATE/custom.md +3 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +5 -0
- package/.github/workflows/docker_test.yml +46 -0
- package/.github/workflows/electron_build_linux.yml +40 -0
- package/.github/workflows/electron_build_macos.yml +36 -0
- package/.github/workflows/electron_build_windows.yml +34 -0
- package/.github/workflows/electron_linux_test.yml +24 -0
- package/.github/workflows/electron_macos_test.yml +25 -0
- package/.github/workflows/linux_test.yml +127 -0
- package/.github/workflows/macos_test.yml +63 -0
- package/.github/workflows/on_release.yml +185 -0
- package/.github/workflows/package_version_increased.yml +66 -0
- package/.github/workflows/publish_release.yml +67 -0
- package/.github/workflows/windows_test.yml +48 -0
- package/.prettierignore +5 -0
- package/.prettierrc +3 -0
- package/.vscode/settings.json +46 -0
- package/CODE_OF_CONDUCT +47 -0
- package/CONTRIBUTING +59 -0
- package/DB.Dockerfile +11 -0
- package/Dockerfile +31 -0
- package/LICENSE +661 -0
- package/PRIVACY +28 -0
- package/README.md +132 -0
- package/SECURITY.md +8 -0
- package/changelog/v1.0.0.md +5 -0
- package/changelog/v2.0.0.md +25 -0
- package/changelog/v2.2.0.md +13 -0
- package/changelog/v2.2.1.md +4 -0
- package/changelog/v2.2.2.md +3 -0
- package/changelog/v2.2.3.md +2 -0
- package/changelog/v2.2.4.md +3 -0
- package/changelog/v2.3.0.md +5 -0
- package/changelog/v2.3.1.md +1 -0
- package/changelog/v2.3.2.md +1 -0
- package/changelog/v2.3.3.md +2 -0
- package/changelog/v2.3.4.md +2 -0
- package/changelog/v2.3.5.md +2 -0
- package/changelog/v2.3.6.md +2 -0
- package/client/build.sh +1 -0
- package/client/eslint.config.mjs +114 -0
- package/client/package-lock.json +16513 -0
- package/client/package.json +108 -0
- package/client/public/manifest.json +12 -0
- package/client/public/robots.txt +3 -0
- package/client/setup-icons.js +59 -0
- package/client/src/App.css +31 -0
- package/client/src/App.tsx +364 -0
- package/client/src/Testing.ts +724 -0
- package/client/src/app/CommandPalette/CommandPalette.css +11 -0
- package/client/src/app/CommandPalette/CommandPalette.tsx +119 -0
- package/client/src/app/CommandPalette/Documentation.css +3 -0
- package/client/src/app/CommandPalette/Documentation.tsx +77 -0
- package/client/src/app/CommandPalette/DynamicComponent.tsx +87 -0
- package/client/src/app/CommandPalette/getDocumentation.ts +175 -0
- package/client/src/app/CommandPalette/getUIDocShortestPath.ts +62 -0
- package/client/src/app/CommandPalette/useCommandPaletteState.tsx +188 -0
- package/client/src/app/CommandPalette/useGoToUI.tsx +147 -0
- package/client/src/app/CommandPalette/useHighlightDocItem.ts +89 -0
- package/client/src/app/CommandPalette/utils.ts +111 -0
- package/client/src/app/UIDocs/UIInstallationUIDoc.ts +43 -0
- package/client/src/app/UIDocs/accountUIDoc.ts +128 -0
- package/client/src/app/UIDocs/commandPaletteUIDoc.ts +40 -0
- package/client/src/app/UIDocs/connection/AIAssistantUIDoc.ts +309 -0
- package/client/src/app/UIDocs/connection/agenticWorkflowsUIDoc.ts +37 -0
- package/client/src/app/UIDocs/connection/config/accessControlUIDoc.ts +44 -0
- package/client/src/app/UIDocs/connection/config/apiUIDoc.ts +95 -0
- package/client/src/app/UIDocs/connection/config/authentication.UIDoc.ts +96 -0
- package/client/src/app/UIDocs/connection/config/backupAndRestoreUIDoc.ts +238 -0
- package/client/src/app/UIDocs/connection/config/fileStorageUIDoc.ts +27 -0
- package/client/src/app/UIDocs/connection/connectionConfigUIDoc.ts +79 -0
- package/client/src/app/UIDocs/connection/dashboard/dashboardContentUIDoc.ts +27 -0
- package/client/src/app/UIDocs/connection/dashboard/dashboardMenuUIDoc.ts +189 -0
- package/client/src/app/UIDocs/connection/dashboard/mapUIDoc.ts +172 -0
- package/client/src/app/UIDocs/connection/dashboard/schemaGraphUIDoc.ts +66 -0
- package/client/src/app/UIDocs/connection/dashboard/serverSideFunctionUIDoc.ts +27 -0
- package/client/src/app/UIDocs/connection/dashboard/sqlEditorUIDoc.ts +284 -0
- package/client/src/app/UIDocs/connection/dashboard/table/addColumnMenuUIDoc.ts +250 -0
- package/client/src/app/UIDocs/connection/dashboard/table/columnMenuUIDoc.ts +123 -0
- package/client/src/app/UIDocs/connection/dashboard/table/paginationUIDoc.ts +56 -0
- package/client/src/app/UIDocs/connection/dashboard/table/smartFilterBarUIDoc.ts +126 -0
- package/client/src/app/UIDocs/connection/dashboard/table/smartFormUIDoc.ts +168 -0
- package/client/src/app/UIDocs/connection/dashboard/table/tableMenuUIDoc.ts +228 -0
- package/client/src/app/UIDocs/connection/dashboard/table/tableUIDoc.ts +90 -0
- package/client/src/app/UIDocs/connection/dashboard/timechartUIDoc.ts +169 -0
- package/client/src/app/UIDocs/connection/dashboardUIDoc.ts +176 -0
- package/client/src/app/UIDocs/connection/getCommonViewHeaderUIDoc.ts +146 -0
- package/client/src/app/UIDocs/connectionsUIDoc.ts +261 -0
- package/client/src/app/UIDocs/desktopInstallation.ts +32 -0
- package/client/src/app/UIDocs/editConnectionUIDoc.ts +131 -0
- package/client/src/app/UIDocs/navbarUIDoc.ts +145 -0
- package/client/src/app/UIDocs/overviewUIDoc.ts +31 -0
- package/client/src/app/UIDocs/serverSettingsUIDoc.ts +64 -0
- package/client/src/app/UIDocs.ts +274 -0
- package/client/src/app/XRealIpSpoofableAlert.tsx +39 -0
- package/client/src/app/domToSVG/SVGif/addSVGifCaption.ts +112 -0
- package/client/src/app/domToSVG/SVGif/addSVGifPointer.ts +59 -0
- package/client/src/app/domToSVG/SVGif/addSVGifTimelineControls.ts +94 -0
- package/client/src/app/domToSVG/SVGif/animations/getSVGifCursorAnimationHandler.ts +162 -0
- package/client/src/app/domToSVG/SVGif/animations/getSVGifCustomAnimation.ts +53 -0
- package/client/src/app/domToSVG/SVGif/animations/getSVGifPropertiesAnimation.ts +50 -0
- package/client/src/app/domToSVG/SVGif/animations/getSVGifTypeAnimation.ts +105 -0
- package/client/src/app/domToSVG/SVGif/animations/getSVGifZoomToAnimation.ts +114 -0
- package/client/src/app/domToSVG/SVGif/compressSVGif.ts +86 -0
- package/client/src/app/domToSVG/SVGif/getSVGif.ts +111 -0
- package/client/src/app/domToSVG/SVGif/getSVGifAnimations.ts +318 -0
- package/client/src/app/domToSVG/SVGif/getSVGifKeyframes.ts +42 -0
- package/client/src/app/domToSVG/SVGif/getSVGifParsedScenes.ts +52 -0
- package/client/src/app/domToSVG/SVGif/getSVGifRevealKeyframes.ts +73 -0
- package/client/src/app/domToSVG/SVGif/getSVGifTargetBBox.ts +36 -0
- package/client/src/app/domToSVG/addFragmentViewBoxes.ts +43 -0
- package/client/src/app/domToSVG/containers/addOverflowClipPath.ts +117 -0
- package/client/src/app/domToSVG/containers/bgAndBorderToSVG.ts +204 -0
- package/client/src/app/domToSVG/containers/deduplicateSVGPaths.ts +128 -0
- package/client/src/app/domToSVG/containers/elementToSVG.ts +231 -0
- package/client/src/app/domToSVG/containers/rectangleToSVG.ts +196 -0
- package/client/src/app/domToSVG/containers/shadowToSVG.ts +52 -0
- package/client/src/app/domToSVG/domToSVG.ts +263 -0
- package/client/src/app/domToSVG/domToSvg2.ts +129 -0
- package/client/src/app/domToSVG/domToThemeAwareSVG.ts +361 -0
- package/client/src/app/domToSVG/getCorrespondingDarkNode.ts +87 -0
- package/client/src/app/domToSVG/graphics/fontIconToSVG.ts +141 -0
- package/client/src/app/domToSVG/graphics/getForeignObject.ts +43 -0
- package/client/src/app/domToSVG/graphics/imgToSVG.ts +140 -0
- package/client/src/app/domToSVG/setThemeForSVGScreenshot.ts +82 -0
- package/client/src/app/domToSVG/text/getTextForSVG.ts +243 -0
- package/client/src/app/domToSVG/text/textToSVG.ts +264 -0
- package/client/src/app/domToSVG/utils/addNewChildren.ts +55 -0
- package/client/src/app/domToSVG/utils/canvasToDataURL.ts +6 -0
- package/client/src/app/domToSVG/utils/copyAnimationStylesToSvg.ts +127 -0
- package/client/src/app/domToSVG/utils/getWhatToRenderOnSVG.ts +218 -0
- package/client/src/app/domToSVG/utils/isElementVisible.ts +144 -0
- package/client/src/app/domToSVG/utils/toFixed.ts +3 -0
- package/client/src/appUtils.ts +135 -0
- package/client/src/components/AlertProvider.tsx +99 -0
- package/client/src/components/Animations.css +207 -0
- package/client/src/components/Animations.tsx +130 -0
- package/client/src/components/Btn.css +235 -0
- package/client/src/components/Btn.tsx +603 -0
- package/client/src/components/ButtonBar.tsx +29 -0
- package/client/src/components/ButtonGroup.tsx +135 -0
- package/client/src/components/Chat/Chat.css +116 -0
- package/client/src/components/Chat/Chat.tsx +200 -0
- package/client/src/components/Chat/ChatFileAttachments/ChatFileAttachments.tsx +126 -0
- package/client/src/components/Chat/ChatMessage.tsx +38 -0
- package/client/src/components/Chat/ChatSendControls.tsx +117 -0
- package/client/src/components/Chat/ChatSpeech/ChatSpeech.tsx +201 -0
- package/client/src/components/Chat/ChatSpeech/ChatSpeechSetup.tsx +75 -0
- package/client/src/components/Chat/ChatSpeech/hooks/SpeechRecorder.ts +295 -0
- package/client/src/components/Chat/ChatSpeech/hooks/renderSpeechAudioLevelsIcon.ts +67 -0
- package/client/src/components/Chat/ChatSpeech/hooks/useSpeechRecorder.ts +59 -0
- package/client/src/components/Chat/ChatSpeech/hooks/useSpeechToTextWeb.ts +125 -0
- package/client/src/components/Chat/ChatSpeech/useChatSpeechSetup.ts +106 -0
- package/client/src/components/Chat/Marked.tsx +258 -0
- package/client/src/components/Chat/MonacoCodeInMarkdown/MarkdownMonacoCodeHeader.tsx +179 -0
- package/client/src/components/Chat/MonacoCodeInMarkdown/MonacoCodeInMarkdown.tsx +162 -0
- package/client/src/components/Chat/MonacoCodeInMarkdown/useOnRunSQL.ts +70 -0
- package/client/src/components/Chat/useChatFileUpload.ts +167 -0
- package/client/src/components/Chat/useChatOnPaste.ts +102 -0
- package/client/src/components/Chat/useChatState.ts +118 -0
- package/client/src/components/Checkbox.css +24 -0
- package/client/src/components/Checkbox.tsx +152 -0
- package/client/src/components/Chip.css +78 -0
- package/client/src/components/Chip.tsx +150 -0
- package/client/src/components/ClickCatch.tsx +49 -0
- package/client/src/components/ClickCatchOverlay.css +7 -0
- package/client/src/components/ClickCatchOverlay.tsx +30 -0
- package/client/src/components/CodeFileBrowser/CodeFileBrowser.tsx +85 -0
- package/client/src/components/CodeFileBrowser/ProjectCodeEditor.tsx +89 -0
- package/client/src/components/CodeFileBrowser/WebAppFileBrowser.tsx +96 -0
- package/client/src/components/CompactTabs/CompactTabs.tsx +101 -0
- package/client/src/components/ConfirmationDialog.tsx +90 -0
- package/client/src/components/CopyToClipboardBtn.tsx +24 -0
- package/client/src/components/DragOverUpload/DragOverUpload.css +36 -0
- package/client/src/components/DragOverUpload/DragOverUpload.tsx +46 -0
- package/client/src/components/DraggableLI.tsx +182 -0
- package/client/src/components/ElectronSearchBar.tsx +335 -0
- package/client/src/components/ErrorComponent.tsx +240 -0
- package/client/src/components/ExpandSection.tsx +55 -0
- package/client/src/components/Expander.tsx +16 -0
- package/client/src/components/FileInput/DropZone.tsx +23 -0
- package/client/src/components/FileInput/FileInput.tsx +363 -0
- package/client/src/components/FileInput/FileInputMedia.tsx +144 -0
- package/client/src/components/FileInput/useFileDropZone.ts +51 -0
- package/client/src/components/FileTree/FILE_EXTENSION_TO_ICON_INFO.ts +687 -0
- package/client/src/components/FileTree/FileIcon.tsx +31 -0
- package/client/src/components/FileTree/FileTree.tsx +147 -0
- package/client/src/components/FileTree/FileTreeCurrentDirectory.tsx +135 -0
- package/client/src/components/FileTree/FileTreeNode.css +12 -0
- package/client/src/components/FileTree/FileTreeNode.tsx +264 -0
- package/client/src/components/FileTree/FileTreeNodeCheckbox.tsx +48 -0
- package/client/src/components/FileTree/FileTreeSearchBar.tsx +121 -0
- package/client/src/components/FileTree/FileTreeSelectedItems.tsx +73 -0
- package/client/src/components/FileTree/FolderIcon.tsx +18 -0
- package/client/src/components/FileTree/fileSystemTreeUtils.ts +15 -0
- package/client/src/components/FileTree/useFileTree.ts +255 -0
- package/client/src/components/FileTree/useFileTreeChecked.ts +158 -0
- package/client/src/components/FlashMessage.tsx +64 -0
- package/client/src/components/Flex.tsx +76 -0
- package/client/src/components/FormField/FormField.css +91 -0
- package/client/src/components/FormField/FormField.tsx +748 -0
- package/client/src/components/FormField/FormFieldCodeEditor.tsx +97 -0
- package/client/src/components/FormField/FormFieldDebounced.tsx +60 -0
- package/client/src/components/FormField/FormFieldSkeleton.tsx +206 -0
- package/client/src/components/FormField/onFormFieldKeyDown.ts +124 -0
- package/client/src/components/FullscreenWrapper/FullscreenWrapper.tsx +154 -0
- package/client/src/components/FullscreenWrapper/useFullscreen.ts +46 -0
- package/client/src/components/HeaderSection.tsx +36 -0
- package/client/src/components/Hotkey.css +12 -0
- package/client/src/components/Hotkey.tsx +26 -0
- package/client/src/components/IFrame/IFrame.tsx +54 -0
- package/client/src/components/Icon/Icon.tsx +138 -0
- package/client/src/components/IconPalette/IconPalette.tsx +194 -0
- package/client/src/components/InfoRow.tsx +64 -0
- package/client/src/components/Input.tsx +63 -0
- package/client/src/components/JSONBSchema/JSONBSchema.tsx +182 -0
- package/client/src/components/JSONBSchema/JSONBSchemaAllowedOptions.tsx +112 -0
- package/client/src/components/JSONBSchema/JSONBSchemaArray.tsx +172 -0
- package/client/src/components/JSONBSchema/JSONBSchemaLookup.tsx +249 -0
- package/client/src/components/JSONBSchema/JSONBSchemaObject.tsx +130 -0
- package/client/src/components/JSONBSchema/JSONBSchemaOneOfType.tsx +155 -0
- package/client/src/components/JSONBSchema/JSONBSchemaPrimitive.tsx +209 -0
- package/client/src/components/JSONBSchema/JSONBSchemaRecord.tsx +78 -0
- package/client/src/components/JSONBSchema/isCompleteJSONB.ts +54 -0
- package/client/src/components/Label.css +10 -0
- package/client/src/components/Label.tsx +152 -0
- package/client/src/components/LabeledRow.tsx +51 -0
- package/client/src/components/List.css +51 -0
- package/client/src/components/List.tsx +170 -0
- package/client/src/components/Loader/Loading.css +141 -0
- package/client/src/components/Loader/Loading.tsx +254 -0
- package/client/src/components/Loader/SpinnerV2.tsx +121 -0
- package/client/src/components/Loader/SpinnerV3.tsx +58 -0
- package/client/src/components/Loader/SpinnerV4.tsx +31 -0
- package/client/src/components/MarkdownWithPlugins/MarkdownWithPlugins.tsx +99 -0
- package/client/src/components/MarkdownWithPlugins/Marked.css +72 -0
- package/client/src/components/MarkdownWithPlugins/preserveDisallowedHtmlAsText.ts +76 -0
- package/client/src/components/MediaViewer/MediaViewer.tsx +252 -0
- package/client/src/components/MediaViewer/MediaViewerContent.tsx +223 -0
- package/client/src/components/MediaViewer/managedTableUtils.ts +99 -0
- package/client/src/components/MenuList.css +3 -0
- package/client/src/components/MenuList.tsx +237 -0
- package/client/src/components/MenuListItem.tsx +126 -0
- package/client/src/components/MonacoEditor/MonacoEditor.tsx +273 -0
- package/client/src/components/MonacoEditor/monacoHackyFixes.ts +56 -0
- package/client/src/components/MonacoEditor/useMonacoEditorAddActions.ts +56 -0
- package/client/src/components/MonacoEditor/useWhyDidYouUpdate.ts +80 -0
- package/client/src/components/MonacoLogs/MonacoLogs.tsx +98 -0
- package/client/src/components/MonacoLogs/MonacoLogsWithFullscreen.tsx +124 -0
- package/client/src/components/MonacoLogs/setAnsiLogContent.ts +163 -0
- package/client/src/components/NavBar/NavBar.css +110 -0
- package/client/src/components/NavBar/NavBar.tsx +152 -0
- package/client/src/components/NavBar/NavBarWrapper.tsx +55 -0
- package/client/src/components/NavBar/useNavBarItems.ts +40 -0
- package/client/src/components/Pan.tsx +63 -0
- package/client/src/components/PdfViewer/PdfViewer.css +58 -0
- package/client/src/components/PdfViewer/PdfViewer.tsx +126 -0
- package/client/src/components/PdfViewer/PdfViewerDoclingTextOverlay.tsx +44 -0
- package/client/src/components/PdfViewer/PdfViewerHeaderControls.tsx +82 -0
- package/client/src/components/PdfViewer/PdfViewerHighlights/PdfViewerHighlights.tsx +146 -0
- package/client/src/components/PdfViewer/PdfViewerHighlights/usePdfViewerHighlights.ts +212 -0
- package/client/src/components/PdfViewer/PdfViewerSearch/PdfViewerSearch.css +21 -0
- package/client/src/components/PdfViewer/PdfViewerSearch/PdfViewerSearch.tsx +323 -0
- package/client/src/components/PdfViewer/PdfViewerWithFileTableContext.tsx +209 -0
- package/client/src/components/PdfViewer/usePdfViewer.ts +215 -0
- package/client/src/components/Popup/Footer.tsx +41 -0
- package/client/src/components/Popup/FooterButtons.tsx +60 -0
- package/client/src/components/Popup/Popup.css +14 -0
- package/client/src/components/Popup/Popup.tsx +469 -0
- package/client/src/components/Popup/PopupHeader.tsx +113 -0
- package/client/src/components/Popup/getPopupPosition.ts +137 -0
- package/client/src/components/Popup/getPopupStyle.ts +57 -0
- package/client/src/components/Popup/popupCheckPosition.ts +280 -0
- package/client/src/components/PopupMenu.tsx +106 -0
- package/client/src/components/PopupMenuList.tsx +36 -0
- package/client/src/components/PostgresInstallationInstructions.tsx +112 -0
- package/client/src/components/ProgressBar.css +29 -0
- package/client/src/components/ProgressBar.tsx +131 -0
- package/client/src/components/QRCodeImage.tsx +57 -0
- package/client/src/components/Scheduler.css +7 -0
- package/client/src/components/Scheduler.tsx +149 -0
- package/client/src/components/ScrollFade/ScrollFade.css +4 -0
- package/client/src/components/ScrollFade/ScrollFade.tsx +177 -0
- package/client/src/components/ScrollFade/useAutoScrollToBottom.ts +31 -0
- package/client/src/components/ScrollFade/useResizeObserver.ts +96 -0
- package/client/src/components/SearchList/SearchInput.tsx +143 -0
- package/client/src/components/SearchList/SearchList.css +37 -0
- package/client/src/components/SearchList/SearchList.tsx +184 -0
- package/client/src/components/SearchList/SearchListContent.tsx +285 -0
- package/client/src/components/SearchList/SearchListItems.tsx +244 -0
- package/client/src/components/SearchList/SearchListRowContent.tsx +46 -0
- package/client/src/components/SearchList/getSearchListMatchAndHighlight.tsx +162 -0
- package/client/src/components/SearchList/hooks/useSearchListItems.tsx +113 -0
- package/client/src/components/SearchList/hooks/useSearchListItemsSorting.tsx +169 -0
- package/client/src/components/SearchList/hooks/useSearchListOnClick.ts +69 -0
- package/client/src/components/SearchList/hooks/useSearchListOnKeyUpDown.ts +128 -0
- package/client/src/components/SearchList/hooks/useSearchListSearch.ts +211 -0
- package/client/src/components/SearchList/searchMatchUtils/getItemSearchRank.ts +74 -0
- package/client/src/components/SearchList/searchMatchUtils/getSearchRanking.ts +18 -0
- package/client/src/components/Section.tsx +159 -0
- package/client/src/components/SegmentedToggle.tsx +57 -0
- package/client/src/components/Select/Select.css +18 -0
- package/client/src/components/Select/Select.tsx +629 -0
- package/client/src/components/Select/SelectTriggerButton.tsx +204 -0
- package/client/src/components/ShorterText.tsx +56 -0
- package/client/src/components/SidePanel.tsx +49 -0
- package/client/src/components/Slider.css +65 -0
- package/client/src/components/Slider.tsx +66 -0
- package/client/src/components/StatusChip.tsx +34 -0
- package/client/src/components/Stepper.tsx +92 -0
- package/client/src/components/Stopwatch.tsx +121 -0
- package/client/src/components/SvgIcon.tsx +181 -0
- package/client/src/components/SwitchToggle.css +136 -0
- package/client/src/components/SwitchToggle.tsx +141 -0
- package/client/src/components/Table/Pagination.tsx +178 -0
- package/client/src/components/Table/Table.css +97 -0
- package/client/src/components/Table/Table.tsx +216 -0
- package/client/src/components/Table/TableBody.tsx +146 -0
- package/client/src/components/Table/TableHeader.tsx +491 -0
- package/client/src/components/Table/TableRow.tsx +164 -0
- package/client/src/components/Table/useVirtualisedRows.ts +160 -0
- package/client/src/components/Tabs.tsx +320 -0
- package/client/src/components/Tooltip.tsx +47 -0
- package/client/src/dashboard/API/zip.ts +151 -0
- package/client/src/dashboard/AccessControl/AccessControl.tsx +164 -0
- package/client/src/dashboard/AccessControl/AccessControlRuleEditor.tsx +373 -0
- package/client/src/dashboard/AccessControl/AccessRuleEditorFooter.tsx +241 -0
- package/client/src/dashboard/AccessControl/AccessRuleSummary.tsx +159 -0
- package/client/src/dashboard/AccessControl/ContextDataSelector.tsx +89 -0
- package/client/src/dashboard/AccessControl/ContextFilter.tsx +161 -0
- package/client/src/dashboard/AccessControl/ExistingAccessRules.tsx +168 -0
- package/client/src/dashboard/AccessControl/Methods/MethodDefinition.tsx +156 -0
- package/client/src/dashboard/AccessControl/Methods/MethodDefinitionEditAsJson.tsx +73 -0
- package/client/src/dashboard/AccessControl/Methods/MethodFunctionDefinition.tsx +97 -0
- package/client/src/dashboard/AccessControl/Methods/ReferencesDefinition.tsx +155 -0
- package/client/src/dashboard/AccessControl/Methods/useCodeEditorTsTypes.ts +152 -0
- package/client/src/dashboard/AccessControl/OptionControllers/DynamicFields.tsx +145 -0
- package/client/src/dashboard/AccessControl/OptionControllers/FieldFilterControl.tsx +193 -0
- package/client/src/dashboard/AccessControl/OptionControllers/FilterControl.tsx +207 -0
- package/client/src/dashboard/AccessControl/PasswordlessSetup.tsx +90 -0
- package/client/src/dashboard/AccessControl/PermissionTypes/PAllTables.tsx +50 -0
- package/client/src/dashboard/AccessControl/PermissionTypes/PCustomTables.tsx +237 -0
- package/client/src/dashboard/AccessControl/PermissionTypes/PRunSQL.tsx +92 -0
- package/client/src/dashboard/AccessControl/PublishedWorkspaceSelector.tsx +290 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/ComparablePGPolicies.tsx +179 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/DeleteRuleControl.tsx +95 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/ExampleComparablePolicy.tsx +112 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/InsertRuleControl.tsx +115 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/RuleToggle.tsx +19 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/SelectRuleControl.tsx +186 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/SyncRuleControl.tsx +130 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/UpdateRuleControl.tsx +207 -0
- package/client/src/dashboard/AccessControl/RuleTypeControls/getComparablePGPolicy.ts +130 -0
- package/client/src/dashboard/AccessControl/TableRules/FileTableAccessControlInfo.tsx +161 -0
- package/client/src/dashboard/AccessControl/TableRules/TablePermissionControls.tsx +251 -0
- package/client/src/dashboard/AccessControl/TableRules/TableRulesPopup.tsx +167 -0
- package/client/src/dashboard/AccessControl/TableRules/useLocalTableRulesErrors.ts +27 -0
- package/client/src/dashboard/AccessControl/UserStats.tsx +83 -0
- package/client/src/dashboard/AccessControl/UserSyncConfig.tsx +168 -0
- package/client/src/dashboard/AccessControl/UserTypeSelect.tsx +86 -0
- package/client/src/dashboard/AccessControl/useAccessControlSearchParams.ts +81 -0
- package/client/src/dashboard/AccessControl/useEditedAccessRule.ts +293 -0
- package/client/src/dashboard/AskLLM/AskLLM.tsx +91 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChat.tsx +208 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatHeader.tsx +127 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMChatMessage.tsx +77 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMChatMessageContent.tsx +96 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMChatMessageContentText.tsx +57 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMChatMessageHeader.tsx +129 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMGroupedToolCallsMessage.tsx +122 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMSingleChatMessage.tsx +44 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/LLMChatMessage/LLMToolCallIcon.tsx +12 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/Agent/Agent.tsx +161 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/Agent/AgentGoalToolCall.tsx +59 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgentDefinition.tsx +206 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflow.tsx +242 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowActions.tsx +245 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowActivity/AgenticWorkflowActivity.tsx +225 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowActivity/ToolCall.tsx +137 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowActivity/useAgenticWorkflowActivityItems.ts +70 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowDefinition.tsx +173 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowDetails.tsx +141 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowMessage.tsx +103 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/AgenticWorkflowSchemaDrift.tsx +146 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/ContainerConfigurationEditor.tsx +184 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/McpToolAccess.tsx +156 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/UserInput.tsx +393 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/UserInputColumnValues.tsx +61 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/hooks/useAgenticWorkflowState.ts +50 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AgenticWorkflow/hooks/useUserInput.ts +27 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/AskUserQuestions.tsx +249 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/CreateTables.tsx +32 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DockerContainer.tsx +296 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingDocument.d.ts +154 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingDocumentViewer.tsx +98 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingDocumentViewerPage.tsx +42 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingTable.tsx +166 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingText.tsx +99 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/DoclingConvertedDocument/DoclingToolUseView.tsx +47 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/ExecuteSQL.tsx +34 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/LoadSuggestedDashboards.tsx +172 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/RequestToolAccess.tsx +272 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/RunCodeInSandbox.tsx +33 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/RunTypescriptInNodejs.tsx +48 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/ToolUseResultError.tsx +29 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/WebSearch/Favicon.tsx +34 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/WebSearch/Markdown.tsx +21 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/WebSearch/WebSearch.tsx +70 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/Webdev/CreateComponentQuickFeedbackPreview.tsx +104 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/DatabaseAccessPermissions.tsx +63 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/HeaderList.tsx +26 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/useJSONBParsedData.ts +16 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/useSendToolUseResult.ts +46 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/useToolUseResultString.ts +27 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesMCPTools/common/useTypedToolUseResultData.ts +85 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ProstglesToolUseMessage/ProstglesToolUseMessage.tsx +127 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/InChatToolApprover.tsx +82 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessage.tsx +109 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessageBtn.tsx +51 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessageBtnTextSummary.tsx +45 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessageJSONData.tsx +132 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseChatMessageResult.tsx +57 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/ToolUseReRunBtn.tsx +71 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/useToolUseChatMessage.ts +51 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/ToolUseChatMessage/utils/getToolUseResult.ts +40 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/hooks/useLLMChatMessageGrouper.tsx +168 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/hooks/useLLMChatMessages.tsx +157 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatMessages/setChatPrompt.ts +116 -0
- package/client/src/dashboard/AskLLM/Chat/AskLLMChatSettings.tsx +88 -0
- package/client/src/dashboard/AskLLM/Chat/useAskLLMChatSend.ts +111 -0
- package/client/src/dashboard/AskLLM/Chat/useLLMChat.tsx +126 -0
- package/client/src/dashboard/AskLLM/Chat/useLLMSchemaStr.ts +207 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBar.tsx +34 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarDatabaseAccess.tsx +273 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarMCPTools.tsx +102 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarMCPToolsBtn.tsx +167 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarModelSelector.tsx +238 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/AskLLMChatActionBarPromptSelector.tsx +206 -0
- package/client/src/dashboard/AskLLM/ChatActionBar/PromptAndAllowedMcpToolsSchemaPreviews.tsx +85 -0
- package/client/src/dashboard/AskLLM/LLMModelSelector.tsx +270 -0
- package/client/src/dashboard/AskLLM/Setup/AddLLMPromptForm.tsx +33 -0
- package/client/src/dashboard/AskLLM/Setup/AskLLMAccessControl.tsx +246 -0
- package/client/src/dashboard/AskLLM/Setup/LLMProviderSetup.tsx +68 -0
- package/client/src/dashboard/AskLLM/Setup/LLMSetupProvider.tsx +111 -0
- package/client/src/dashboard/AskLLM/Setup/ProstglesSignup.tsx +108 -0
- package/client/src/dashboard/AskLLM/Setup/SetupLLMCredentials.tsx +89 -0
- package/client/src/dashboard/AskLLM/Tools/AskLLMToolApprover.tsx +279 -0
- package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedBarchart.ts +126 -0
- package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedMap.ts +58 -0
- package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedTable.ts +159 -0
- package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedTimechart.ts +78 -0
- package/client/src/dashboard/AskLLM/Tools/loadGeneratedWorkspaces/loadGeneratedWorkspaces.ts +168 -0
- package/client/src/dashboard/AskLLM/Tools/useAskLLMToolApprover.ts +99 -0
- package/client/src/dashboard/AskLLM/useLocalLLM.ts +84 -0
- package/client/src/dashboard/BackupAndRestore/AutomaticBackups.tsx +212 -0
- package/client/src/dashboard/BackupAndRestore/BackupsControls.tsx +291 -0
- package/client/src/dashboard/BackupAndRestore/BackupsInProgress.tsx +98 -0
- package/client/src/dashboard/BackupAndRestore/CloudStorageCredentialSelector.tsx +215 -0
- package/client/src/dashboard/BackupAndRestore/CodeConfirmation.tsx +205 -0
- package/client/src/dashboard/BackupAndRestore/CompletedBackups/DeleteAllBackups.tsx +58 -0
- package/client/src/dashboard/BackupAndRestore/CompletedBackups.tsx +276 -0
- package/client/src/dashboard/BackupAndRestore/DumpLocationOptions.tsx +40 -0
- package/client/src/dashboard/BackupAndRestore/DumpRestoreAlerts.tsx +82 -0
- package/client/src/dashboard/BackupAndRestore/PGDumpOptions.tsx +299 -0
- package/client/src/dashboard/BackupAndRestore/RenderBackupLogs.tsx +48 -0
- package/client/src/dashboard/BackupAndRestore/RenderBackupStatus.tsx +58 -0
- package/client/src/dashboard/BackupAndRestore/Restore/Restore.tsx +205 -0
- package/client/src/dashboard/BackupAndRestore/Restore/RestoreOptions.tsx +148 -0
- package/client/src/dashboard/BackupAndRestore/Restore/useRestoreDatabaseFromFile.ts +73 -0
- package/client/src/dashboard/BackupAndRestore/useBackupsControlsState.ts +39 -0
- package/client/src/dashboard/Charts/CanvasChart.ts +746 -0
- package/client/src/dashboard/Charts/TimeChart/TimeChart.tsx +232 -0
- package/client/src/dashboard/Charts/TimeChart/getBinValueLabels.ts +125 -0
- package/client/src/dashboard/Charts/TimeChart/getCssVariableValue.ts +6 -0
- package/client/src/dashboard/Charts/TimeChart/getTimeAxisTicks.ts +426 -0
- package/client/src/dashboard/Charts/TimeChart/getTimechartBinSize.ts +121 -0
- package/client/src/dashboard/Charts/TimeChart/getTimechartTooltipIntersections.ts +94 -0
- package/client/src/dashboard/Charts/TimeChart/getTimechartTooltipShapes.ts +318 -0
- package/client/src/dashboard/Charts/TimeChart/measureText.ts +34 -0
- package/client/src/dashboard/Charts/TimeChart/onDeltaTimechart.ts +65 -0
- package/client/src/dashboard/Charts/TimeChart/onRenderTimechart.ts +354 -0
- package/client/src/dashboard/Charts/TimeChart/prepareTimechartData.ts +185 -0
- package/client/src/dashboard/Charts/constants.ts +8 -0
- package/client/src/dashboard/Charts/createHiPPICanvas.ts +31 -0
- package/client/src/dashboard/Charts/drawMonotoneXCurve.ts +171 -0
- package/client/src/dashboard/Charts/drawShapes/drawLinkLine.ts +29 -0
- package/client/src/dashboard/Charts/drawShapes/drawShapes.ts +217 -0
- package/client/src/dashboard/Charts/drawShapes/drawShapesOnSVG.ts +481 -0
- package/client/src/dashboard/Charts/drawShapes/findShortestPathAroundRectangles.ts +241 -0
- package/client/src/dashboard/Charts/drawShapes/getLinkLinePoints.ts +124 -0
- package/client/src/dashboard/Charts/drawShapes/getTimechartGradientPeakSections.ts +27 -0
- package/client/src/dashboard/Charts/drawShapes/shortestLinkLineV2.ts +182 -0
- package/client/src/dashboard/Charts/roundRect.ts +42 -0
- package/client/src/dashboard/Charts.tsx +216 -0
- package/client/src/dashboard/CodeEditor/CodeEditor.tsx +288 -0
- package/client/src/dashboard/CodeEditor/CodeEditorWithSaveButton.tsx +208 -0
- package/client/src/dashboard/CodeEditor/registerLogLang.ts +128 -0
- package/client/src/dashboard/CodeEditor/utils/getMonacoJsonSchemas.ts +31 -0
- package/client/src/dashboard/CodeEditor/utils/installGoToDefinition.ts +40 -0
- package/client/src/dashboard/CodeEditor/utils/navigateTo.ts +61 -0
- package/client/src/dashboard/CodeEditor/utils/resolveDefinition..ts +33 -0
- package/client/src/dashboard/CodeEditor/utils/setMonacoErrorMarkers.ts +67 -0
- package/client/src/dashboard/CodeEditor/utils/useSetMonacoJsonSchemas.ts +60 -0
- package/client/src/dashboard/CodeEditor/utils/useSetMonacoTsLibraries.ts +157 -0
- package/client/src/dashboard/CodeExample.tsx +34 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/APICodeExamples.tsx +280 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/APIDetails.tsx +111 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/APIDetailsHttp.tsx +123 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/APIDetailsTokens.tsx +137 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/APIDetailsWs.tsx +98 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/AllowedOriginCheck.tsx +104 -0
- package/client/src/dashboard/ConnectionConfig/APIDetails/getApiEndpoint.ts +8 -0
- package/client/src/dashboard/ConnectionConfig/ConnectionConfig.tsx +267 -0
- package/client/src/dashboard/ConnectionConfig/ConnectionConfigSync.tsx +123 -0
- package/client/src/dashboard/ConnectionConfig/ServerSideFunctions.tsx +46 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/WebAppConfig.tsx +90 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/WebAppConfigComponents.tsx +47 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/WebAppConfigFooterActions.tsx +137 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/WebAppConfigSetup.tsx +135 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/hooks/useWebAppConfigActiveSection.ts +12 -0
- package/client/src/dashboard/ConnectionConfig/WebApp/hooks/useWebAppConfigState.ts +76 -0
- package/client/src/dashboard/ConnectionConfig/useConnectionConfigSearchParams.ts +35 -0
- package/client/src/dashboard/ConnectionSelector.tsx +58 -0
- package/client/src/dashboard/Dashboard/CloseSaveSQLPopup.tsx +81 -0
- package/client/src/dashboard/Dashboard/DBS.ts +19 -0
- package/client/src/dashboard/Dashboard/Dashboard.tsx +667 -0
- package/client/src/dashboard/Dashboard/DashboardCenteredLayoutResizer.tsx +56 -0
- package/client/src/dashboard/Dashboard/PALETTE.ts +36 -0
- package/client/src/dashboard/Dashboard/ViewRenderer.tsx +498 -0
- package/client/src/dashboard/Dashboard/addChart.ts +261 -0
- package/client/src/dashboard/Dashboard/addLink.ts +48 -0
- package/client/src/dashboard/Dashboard/addWindow.ts +51 -0
- package/client/src/dashboard/Dashboard/cardLayout.ts +28 -0
- package/client/src/dashboard/Dashboard/cloneWorkspace.ts +102 -0
- package/client/src/dashboard/Dashboard/dashboardUtils.ts +377 -0
- package/client/src/dashboard/Dashboard/debuggingUtils.ts +112 -0
- package/client/src/dashboard/Dashboard/getTables.ts +31 -0
- package/client/src/dashboard/Dashboard/getViewRendererUtils.ts +108 -0
- package/client/src/dashboard/Dashboard/onLinkTable.ts +45 -0
- package/client/src/dashboard/Dashboard/useAddViewToWorkspace.ts +92 -0
- package/client/src/dashboard/DashboardMenu/CreateTable.tsx +307 -0
- package/client/src/dashboard/DashboardMenu/DashboardHotkeys.tsx +38 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenu.tsx +183 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenuContent.tsx +203 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenuHeader.tsx +86 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenuHotkeys.tsx +102 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenuResizer.tsx +68 -0
- package/client/src/dashboard/DashboardMenu/DashboardMenuSettings.tsx +241 -0
- package/client/src/dashboard/DashboardMenu/NewTableMenu.tsx +121 -0
- package/client/src/dashboard/DashboardMenu/SavedAgenticWorkflowsAndContainers.tsx +149 -0
- package/client/src/dashboard/DashboardMenu/SettingsSection.tsx +22 -0
- package/client/src/dashboard/DashboardMenu/TableList.tsx +141 -0
- package/client/src/dashboard/DashboardMenu/useTableSizeInfo.ts +98 -0
- package/client/src/dashboard/DatabaseAccessEditor/DatabaseAccessEditor.tsx +174 -0
- package/client/src/dashboard/DatabaseAccessEditor/DatabaseAccessEditorCustomTables.tsx +149 -0
- package/client/src/dashboard/DatabaseAccessEditor/TableAccessAdvancedOptions.tsx +128 -0
- package/client/src/dashboard/DatabaseAccessEditor/TableAccessAdvancedOptionsMenu.tsx +65 -0
- package/client/src/dashboard/DatabaseAccessEditor/TableAccessDetails.tsx +163 -0
- package/client/src/dashboard/DatabaseAccessEditor/TableAccessEditor.tsx +229 -0
- package/client/src/dashboard/DatabaseAccessEditor/getTableSchemaDriftState.ts +65 -0
- package/client/src/dashboard/DatabaseAccessEditor/useDatabaseAccessEditorTables.tsx +99 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseControl.tsx +139 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseControlRouter.tsx +192 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/AgeFilter.tsx +148 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/GeoFilter.tsx +255 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/ListFilter/ListFilter.tsx +235 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/ListFilter/fetchListFilterOptions.ts +76 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterBaseTypes/NumberOrDateFilter.tsx +206 -0
- package/client/src/dashboard/DetailedFilterControl/DetailedFilterControl.tsx +157 -0
- package/client/src/dashboard/DetailedFilterControl/FTS_LANGUAGES.ts +35 -0
- package/client/src/dashboard/DetailedFilterControl/FilterWrapper.css +7 -0
- package/client/src/dashboard/DetailedFilterControl/FilterWrapper.tsx +339 -0
- package/client/src/dashboard/DetailedFilterControl/validateFilter.ts +46 -0
- package/client/src/dashboard/Feedback.tsx +145 -0
- package/client/src/dashboard/FileImporter/FileImporter.tsx +770 -0
- package/client/src/dashboard/FileImporter/FileImporterFooter.tsx +100 -0
- package/client/src/dashboard/FileImporter/checkCSVColumnDataTypes.tsx +139 -0
- package/client/src/dashboard/FileImporter/importFile.ts +303 -0
- package/client/src/dashboard/FileImporter/parseCSVFile.ts +123 -0
- package/client/src/dashboard/FileImporter/setFile.ts +251 -0
- package/client/src/dashboard/FileTableControls/CreateFileColumn.tsx +189 -0
- package/client/src/dashboard/FileTableControls/FileColumnConfigControls.tsx +191 -0
- package/client/src/dashboard/FileTableControls/FileColumnConfigEditor.tsx +251 -0
- package/client/src/dashboard/FileTableControls/FileStorageControls.tsx +294 -0
- package/client/src/dashboard/FileTableControls/FileStorageDelete.tsx +106 -0
- package/client/src/dashboard/FileTableControls/FileStorageReferencedTablesConfig.tsx +80 -0
- package/client/src/dashboard/FileTableControls/FileTableConfigControls.tsx +69 -0
- package/client/src/dashboard/FileTableControls/hooks/useFileTableConfigControls.ts +70 -0
- package/client/src/dashboard/FileTableControls/hooks/useSetFileStorage.ts +128 -0
- package/client/src/dashboard/JSONBColumnEditor.tsx +60 -0
- package/client/src/dashboard/LinkMenu.tsx +332 -0
- package/client/src/dashboard/Map/DeckGLFeatureEditor.tsx +645 -0
- package/client/src/dashboard/Map/DeckGLMap.css +45 -0
- package/client/src/dashboard/Map/DeckGLMap.tsx +576 -0
- package/client/src/dashboard/Map/DeckGLWrapped.ts +312 -0
- package/client/src/dashboard/Map/InMapControls.tsx +137 -0
- package/client/src/dashboard/Map/MVTLayerProps.ts +306 -0
- package/client/src/dashboard/Map/fitBounds.ts +63 -0
- package/client/src/dashboard/Map/mapDrawUtils.ts +129 -0
- package/client/src/dashboard/Map/mapUtils.ts +183 -0
- package/client/src/dashboard/RTComp.tsx +165 -0
- package/client/src/dashboard/RenderFilter.tsx +174 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/CommonMatchImports.ts +366 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/KEYWORDS.ts +448 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/MatchCreate.ts +294 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/MatchCreateView.ts +106 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreateIndex.ts +220 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreatePolicy.ts +108 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreateRule.tsx +99 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreateTable.ts +336 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MacthCreate/matchCreateTrigger.ts +84 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchAlter/MatchAlter.tsx +258 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchAlter/matchAlterPolicy.ts +50 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchAlter/matchAlterTable.ts +325 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchAlter/matchCreateOrAlterUser.tsx +192 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchComment.ts +86 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchCopy.ts +367 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchDrop.ts +161 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchFirst.ts +471 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchGrant.ts +331 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchInsert.tsx +123 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchLast.ts +10 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchPublication.ts +126 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchReassign.ts +35 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchReindex.ts +36 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchSelect.ts +623 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchSet.ts +183 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchSubscription.ts +231 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchUpdate.ts +79 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchVacuum.ts +86 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MatchWith.ts +222 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/MathDelete.ts +18 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/PSQL.ts +136 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/STARTING_KEYWORDS.ts +931 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/TableKWDs.ts +479 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/checkIfInsideDollarFunctionDefinition.ts +88 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/checkIfUnfinishedParenthesis.ts +74 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getCodeBlock.ts +627 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getQueryReturnType.ts +274 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getTableExpressionReturnTypes.ts +243 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getTabularExpressions.ts +428 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/completionUtils/getTokens.ts +239 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/getExpected.ts +176 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/getJoinSuggestions.ts +193 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/getMatch.ts +62 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/getPGObjects.ts +1270 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/getPrevTokensNoParantheses.ts +234 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/jsonbPathSuggest.ts +188 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/monacoSQLSetup/registerHover.ts +138 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/monacoSQLSetup/registerSuggestions.ts +549 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/suggestColumnLike.ts +251 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/suggestCondition.ts +320 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/suggestFuncArgs.ts +105 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/suggestTableLike.ts +104 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/suggestValue.ts +125 -0
- package/client/src/dashboard/SQLEditor/SQLCompletion/withKWDs.ts +507 -0
- package/client/src/dashboard/SQLEditor/SQLEditorSuggestions.ts +1883 -0
- package/client/src/dashboard/SQLEditor/SQLSmartEditor.tsx +124 -0
- package/client/src/dashboard/SQLEditor/SQL_SNIPPETS.ts +43 -0
- package/client/src/dashboard/SQLEditor/W_SQLEditor.css +15 -0
- package/client/src/dashboard/SQLEditor/W_SQLEditor.tsx +746 -0
- package/client/src/dashboard/SQLEditor/addSqlEditorFunctions.ts +74 -0
- package/client/src/dashboard/SQLEditor/defineCustomMonacoSQLTheme.ts +74 -0
- package/client/src/dashboard/SQLEditor/getFormattedSql.ts +154 -0
- package/client/src/dashboard/SQLEditor/registerFunctionSuggestions.ts +175 -0
- package/client/src/dashboard/SQLEditor/utils/scrollToLineIfNeeded.ts +17 -0
- package/client/src/dashboard/SQLEditor/utils/setMonacEditorError.ts +93 -0
- package/client/src/dashboard/SampleSchemas.tsx +50 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/ERDSchema.tsx +175 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/getInitialPlacement.ts +115 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/getInitialPlacementV2.ts +343 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/useCanvasPanZoom.ts +54 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/useDrawHiddenSvgForNativeTextSearch.ts +80 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/useDrawSchemaShapes.ts +242 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/useFetchSchemaForDiagram.ts +276 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/usePanShapes.ts +160 -0
- package/client/src/dashboard/SchemaGraph/ERDSchema/useSchemaShapes.ts +352 -0
- package/client/src/dashboard/SchemaGraph/SchemaGraph.tsx +55 -0
- package/client/src/dashboard/SchemaGraph/SchemaGraphControls.tsx +226 -0
- package/client/src/dashboard/SchemaGraph/types.ts +29 -0
- package/client/src/dashboard/SearchAll/SearchAll.tsx +77 -0
- package/client/src/dashboard/SearchAll/SearchAllContent.tsx +63 -0
- package/client/src/dashboard/SearchAll/SearchAllHeader.tsx +71 -0
- package/client/src/dashboard/SearchAll/SearchMatchRow.tsx +103 -0
- package/client/src/dashboard/SearchAll/hooks/useSearchAllState.ts +46 -0
- package/client/src/dashboard/SearchAll/hooks/useSearchListProps.tsx +178 -0
- package/client/src/dashboard/SearchAll/hooks/useSearchTables.tsx +163 -0
- package/client/src/dashboard/SearchAll/hooks/useTablesAndViewsSearchItems.ts +55 -0
- package/client/src/dashboard/SilverGrid/SilverGrid.tsx +531 -0
- package/client/src/dashboard/SilverGrid/SilverGridChild.tsx +403 -0
- package/client/src/dashboard/SilverGrid/SilverGridChildHeader.tsx +235 -0
- package/client/src/dashboard/SilverGrid/SilverGridResizer.tsx +129 -0
- package/client/src/dashboard/SilverGrid/TreeBuilder.ts +261 -0
- package/client/src/dashboard/SmartCard/SmartCard.tsx +218 -0
- package/client/src/dashboard/SmartCard/SmartCardActions.tsx +113 -0
- package/client/src/dashboard/SmartCard/SmartCardColumn.tsx +49 -0
- package/client/src/dashboard/SmartCard/getSelectForFieldConfigs.ts +44 -0
- package/client/src/dashboard/SmartCard/parseFieldConfigs.tsx +165 -0
- package/client/src/dashboard/SmartCard/useFieldConfigParser.ts +55 -0
- package/client/src/dashboard/SmartCard/useSmartCardColumns.ts +46 -0
- package/client/src/dashboard/SmartCardList/SmartCardList.tsx +291 -0
- package/client/src/dashboard/SmartCardList/SmartCardListHeaderControls.tsx +130 -0
- package/client/src/dashboard/SmartCardList/SmartCardListJoinedNewRecords.tsx +97 -0
- package/client/src/dashboard/SmartCardList/useSmartCardListState.ts +273 -0
- package/client/src/dashboard/SmartFilter/AddJoinFilter.tsx +97 -0
- package/client/src/dashboard/SmartFilter/MinimisedFilter.css +13 -0
- package/client/src/dashboard/SmartFilter/MinimisedFilter.tsx +208 -0
- package/client/src/dashboard/SmartFilter/SmartAddFilter.tsx +324 -0
- package/client/src/dashboard/SmartFilter/SmartFilter.tsx +182 -0
- package/client/src/dashboard/SmartFilter/SmartSearch/SmartSearch.css +4 -0
- package/client/src/dashboard/SmartFilter/SmartSearch/SmartSearch.tsx +230 -0
- package/client/src/dashboard/SmartFilter/SmartSearch/getSmartSearchRows.ts +277 -0
- package/client/src/dashboard/SmartFilter/SmartSearch/onSearchItems.tsx +146 -0
- package/client/src/dashboard/SmartFilter/SortByControl.tsx +81 -0
- package/client/src/dashboard/SmartFilter/smartFilterUtils.ts +97 -0
- package/client/src/dashboard/SmartFilterBar/SmartFilterBar.tsx +178 -0
- package/client/src/dashboard/SmartFilterBar/SmartFilterBarFilters.tsx +103 -0
- package/client/src/dashboard/SmartFilterBar/SmartFilterBarRightActions.tsx +212 -0
- package/client/src/dashboard/SmartFilterBar/SmartFilterBarSearch.tsx +115 -0
- package/client/src/dashboard/SmartFilterBar/SmartFilterBarSort.tsx +108 -0
- package/client/src/dashboard/SmartFilterBar/useSmartFilterBarState.ts +100 -0
- package/client/src/dashboard/SmartForm/ChipArrayEditor.tsx +169 -0
- package/client/src/dashboard/SmartForm/InsertButton.tsx +89 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/JoinedRecords.tsx +155 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/JoinedRecordsAddRow.tsx +182 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/JoinedRecordsSection.tsx +168 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/getJoinFilter.ts +31 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/useJoinedRecordsSections.ts +246 -0
- package/client/src/dashboard/SmartForm/JoinedRecords/useJoinedSectionFieldConfigs.tsx +120 -0
- package/client/src/dashboard/SmartForm/SmartForm.tsx +368 -0
- package/client/src/dashboard/SmartForm/SmartFormField/RenderValue/RenderJson.tsx +72 -0
- package/client/src/dashboard/SmartForm/SmartFormField/RenderValue.tsx +294 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormField.tsx +349 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldFileSection.tsx +51 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldForeignKey.tsx +253 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldLinkedData.tsx +207 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldLinkedDataInsert/SmartFormFieldLinkedDataInsert.tsx +165 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldLinkedDataInsert/useSmartFormFieldLinkedDataInsert.tsx +77 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldLinkedDataSearch.tsx +91 -0
- package/client/src/dashboard/SmartForm/SmartFormField/SmartFormFieldRightButtons.tsx +110 -0
- package/client/src/dashboard/SmartForm/SmartFormField/ViewMoreSmartCardList.tsx +86 -0
- package/client/src/dashboard/SmartForm/SmartFormField/fetchColumnValueSuggestions.ts +92 -0
- package/client/src/dashboard/SmartForm/SmartFormField/fetchForeignKeyOptions.tsx +348 -0
- package/client/src/dashboard/SmartForm/SmartFormField/fieldUtils.ts +228 -0
- package/client/src/dashboard/SmartForm/SmartFormField/useNestedInsertDefaultData.ts +28 -0
- package/client/src/dashboard/SmartForm/SmartFormField/useSmartFormFieldAsJSON.tsx +87 -0
- package/client/src/dashboard/SmartForm/SmartFormField/useSmartFormFieldOnChange.ts +65 -0
- package/client/src/dashboard/SmartForm/SmartFormFieldList.tsx +190 -0
- package/client/src/dashboard/SmartForm/SmartFormFileSection.tsx +110 -0
- package/client/src/dashboard/SmartForm/SmartFormFooter/SmartFormFooterButtons.tsx +133 -0
- package/client/src/dashboard/SmartForm/SmartFormFooter/useSmartFormActions.ts +265 -0
- package/client/src/dashboard/SmartForm/SmartFormNewRowDataHandler.ts +168 -0
- package/client/src/dashboard/SmartForm/SmartFormPopup/SmartFormPopupWrapper.tsx +92 -0
- package/client/src/dashboard/SmartForm/SmartFormPopup/SmartFormPrevNext.tsx +33 -0
- package/client/src/dashboard/SmartForm/SmartFormPopup/SmartFormViewAsMarkdown.tsx +83 -0
- package/client/src/dashboard/SmartForm/SmartFormPopup/useSmartFormPrevNext.ts +20 -0
- package/client/src/dashboard/SmartForm/SmartFormPopup/useSmartFormSubTitle.ts +44 -0
- package/client/src/dashboard/SmartForm/SmartFormUpperFooter/SmartFormUpperFooter.tsx +198 -0
- package/client/src/dashboard/SmartForm/SmartFormUpperFooter/useActiveJoinedRecordsTab.ts +65 -0
- package/client/src/dashboard/SmartForm/constants.ts +1 -0
- package/client/src/dashboard/SmartForm/useNewRowDataHandler.ts +386 -0
- package/client/src/dashboard/SmartForm/useSmartForm.ts +67 -0
- package/client/src/dashboard/SmartForm/useSmartFormColumns.ts +127 -0
- package/client/src/dashboard/SmartForm/useSmartFormMode.ts +243 -0
- package/client/src/dashboard/SmartSelect.tsx +228 -0
- package/client/src/dashboard/SmartTable.tsx +383 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitor.tsx +41 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorBlockedByPid.tsx +35 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorConnections.tsx +127 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorInfoHeader/StatusMonitorInfoHeader.tsx +122 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorInfoHeader/StatusMonitorInfoHeaderCpu.tsx +122 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorInfoHeader/StatusMonitorInfoHeaderMemory.tsx +21 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorProcList.tsx +292 -0
- package/client/src/dashboard/StatusMonitor/StatusMonitorProcListControlsHeader.tsx +85 -0
- package/client/src/dashboard/TableConfig/ProcessLogs.tsx +65 -0
- package/client/src/dashboard/TableConfig/TableConfig.tsx +88 -0
- package/client/src/dashboard/TimeSeries.tsx +29 -0
- package/client/src/dashboard/UserManager.tsx +54 -0
- package/client/src/dashboard/W_Barchart/W_Barchart.tsx +104 -0
- package/client/src/dashboard/W_Barchart/fetchSQLBarchartData.ts +7 -0
- package/client/src/dashboard/W_Barchart/useBarchartData.ts +176 -0
- package/client/src/dashboard/W_Map/OSM/OverpassQuery.tsx +21 -0
- package/client/src/dashboard/W_Map/OSM/fetchOSMCountryBoundary.ts +73 -0
- package/client/src/dashboard/W_Map/OSM/getOSMData.ts +240 -0
- package/client/src/dashboard/W_Map/OSM/osmToGeoJSON.ts +198 -0
- package/client/src/dashboard/W_Map/OSM/osmTypes.ts +1856 -0
- package/client/src/dashboard/W_Map/W_Map.tsx +747 -0
- package/client/src/dashboard/W_Map/W_MapMenu.tsx +188 -0
- package/client/src/dashboard/W_Map/controls/MapBasemapOptions.tsx +268 -0
- package/client/src/dashboard/W_Map/controls/MapInfoSection.tsx +95 -0
- package/client/src/dashboard/W_Map/controls/MapOSMQuery.tsx +174 -0
- package/client/src/dashboard/W_Map/controls/MapOpacityMenu.tsx +60 -0
- package/client/src/dashboard/W_Map/fetchData/fetchMapLayerData.ts +401 -0
- package/client/src/dashboard/W_Map/fetchData/getMapData.ts +161 -0
- package/client/src/dashboard/W_Map/fetchData/getMapDataExtent.ts +86 -0
- package/client/src/dashboard/W_Map/fetchData/getMapLayerQueries.ts +232 -0
- package/client/src/dashboard/W_Map/getMapFeatureStyle.ts +160 -0
- package/client/src/dashboard/W_Map/onMapHover.ts +118 -0
- package/client/src/dashboard/W_Method/FunctionLabel.tsx +24 -0
- package/client/src/dashboard/W_Method/NewMethod.tsx +108 -0
- package/client/src/dashboard/W_Method/PublishedMethods.tsx +218 -0
- package/client/src/dashboard/W_Method/W_Method.tsx +48 -0
- package/client/src/dashboard/W_Method/W_MethodControls.tsx +338 -0
- package/client/src/dashboard/W_Method/W_MethodMenu.tsx +162 -0
- package/client/src/dashboard/W_QuickMenu.tsx +228 -0
- package/client/src/dashboard/W_SQL/CSVRender.tsx +18 -0
- package/client/src/dashboard/W_SQL/CopyResultBtn.tsx +246 -0
- package/client/src/dashboard/W_SQL/MonacoLanguageRegister.ts +701 -0
- package/client/src/dashboard/W_SQL/SQLHotkeys.tsx +23 -0
- package/client/src/dashboard/W_SQL/TestSQL.ts +52 -0
- package/client/src/dashboard/W_SQL/W_SQL.tsx +679 -0
- package/client/src/dashboard/W_SQL/W_SQLBottomBar/W_SQLBottomBar.tsx +484 -0
- package/client/src/dashboard/W_SQL/W_SQLBottomBar/W_SQLBottomBarProcStats.tsx +67 -0
- package/client/src/dashboard/W_SQL/W_SQLMenu.tsx +403 -0
- package/client/src/dashboard/W_SQL/W_SQLResults.tsx +161 -0
- package/client/src/dashboard/W_SQL/customRenderers.tsx +126 -0
- package/client/src/dashboard/W_SQL/demoScripts/createTables.ts +262 -0
- package/client/src/dashboard/W_SQL/demoScripts/mainTestScripts.ts +269 -0
- package/client/src/dashboard/W_SQL/demoScripts/testBugs.ts +596 -0
- package/client/src/dashboard/W_SQL/demoScripts/testMiscAndBugs.ts +61 -0
- package/client/src/dashboard/W_SQL/demoScripts/testSqlCharts.ts +117 -0
- package/client/src/dashboard/W_SQL/getChartableSQL.ts +169 -0
- package/client/src/dashboard/W_SQL/getDemoUtils.ts +260 -0
- package/client/src/dashboard/W_SQL/getSQLResultTableColumns.ts +56 -0
- package/client/src/dashboard/W_SQL/monacoEditorTypes.ts +13 -0
- package/client/src/dashboard/W_SQL/parseExplainResult.ts +99 -0
- package/client/src/dashboard/W_SQL/parseSQLError.ts +55 -0
- package/client/src/dashboard/W_SQL/parseSqlResultCols.ts +96 -0
- package/client/src/dashboard/W_SQL/runSQL/getQueryTotalRowCount.ts +38 -0
- package/client/src/dashboard/W_SQL/runSQL/runSQL.ts +432 -0
- package/client/src/dashboard/W_SQL/runSQLErrorHints.ts +150 -0
- package/client/src/dashboard/W_Table/CardView/CardItem/CardItemBody.tsx +151 -0
- package/client/src/dashboard/W_Table/CardView/CardItem/CardItemHeader.tsx +150 -0
- package/client/src/dashboard/W_Table/CardView/CardItem/CardViewRow.tsx +160 -0
- package/client/src/dashboard/W_Table/CardView/CardView.tsx +87 -0
- package/client/src/dashboard/W_Table/CardView/CardViewColumn.tsx +82 -0
- package/client/src/dashboard/W_Table/CardView/CardViewKanban.tsx +87 -0
- package/client/src/dashboard/W_Table/CardView/DragHeader.tsx +46 -0
- package/client/src/dashboard/W_Table/CardView/constants.ts +1 -0
- package/client/src/dashboard/W_Table/CardView/useCardViewState.ts +50 -0
- package/client/src/dashboard/W_Table/CardView/useDragHeader.ts +280 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AddColumnMenu.tsx +193 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AddComputedColumn/AddComputedColMenu.tsx +650 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AddComputedColumn/FunctionColumnList.tsx +75 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AddComputedColumn/QuickAddComputedColumn.tsx +129 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AddComputedColumn/useAddComputedColumn.ts +175 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/AlterColumn.tsx +421 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/AlterColumnFileOptions.tsx +84 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/ColumnEditor.tsx +229 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/CreateColumn.tsx +150 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/ReferenceEditor.tsx +243 -0
- package/client/src/dashboard/W_Table/ColumnMenu/AlterColumn/alterColumnUtilts.ts +53 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColorPicker.tsx +251 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/ChipStylePalette.tsx +127 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/ColumnDisplayFormat.tsx +116 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/ConditionalCellIconStyleControls.tsx +140 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/ConditionalCellStyleControls.tsx +235 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/NestedColumnRender.tsx +172 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnDisplayFormat/columnFormatUtils.tsx +330 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnList.tsx +291 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnMenu.tsx +537 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnQuickStats/ColumnQuickStats.tsx +176 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnQuickStats/useColumnQuickStats.ts +169 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnSelect/ColumnSelect.tsx +54 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnSelect/getColumnListItem.tsx +97 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnSortMenu.tsx +146 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnStyleControls/ColumnStyleControls.tsx +258 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnStyleControls/getValueColors.ts +101 -0
- package/client/src/dashboard/W_Table/ColumnMenu/ColumnsMenu.tsx +178 -0
- package/client/src/dashboard/W_Table/ColumnMenu/FunctionSelector/FunctionExtraArguments.tsx +140 -0
- package/client/src/dashboard/W_Table/ColumnMenu/FunctionSelector/FunctionSelector.tsx +89 -0
- package/client/src/dashboard/W_Table/ColumnMenu/FunctionSelector/functions.ts +438 -0
- package/client/src/dashboard/W_Table/ColumnMenu/JoinPathSelectorV2.tsx +212 -0
- package/client/src/dashboard/W_Table/ColumnMenu/LinkedColumn/LinkedColumn.tsx +295 -0
- package/client/src/dashboard/W_Table/ColumnMenu/LinkedColumn/LinkedColumnFooter.tsx +94 -0
- package/client/src/dashboard/W_Table/ColumnMenu/LinkedColumn/LinkedColumnSelect.tsx +160 -0
- package/client/src/dashboard/W_Table/ColumnMenu/NestedTimechartControls.tsx +167 -0
- package/client/src/dashboard/W_Table/ColumnMenu/SummariseColumns.tsx +126 -0
- package/client/src/dashboard/W_Table/ColumnMenu/UpdateColumnGlobalConfig.tsx +69 -0
- package/client/src/dashboard/W_Table/ColumnMenu/getNestedColumnTable.ts +83 -0
- package/client/src/dashboard/W_Table/ColumnMenu/rgba2hex.ts +36 -0
- package/client/src/dashboard/W_Table/JoinPathSelector/JoinPathItem.tsx +133 -0
- package/client/src/dashboard/W_Table/JoinPathSelector/JoinPathSelector.tsx +100 -0
- package/client/src/dashboard/W_Table/JoinPathSelector/getJoinTree.ts +79 -0
- package/client/src/dashboard/W_Table/NodeCountChecker.tsx +58 -0
- package/client/src/dashboard/W_Table/ProstglesTable.css +64 -0
- package/client/src/dashboard/W_Table/QuickFilterGroupsControl.tsx +86 -0
- package/client/src/dashboard/W_Table/RowCard.tsx +102 -0
- package/client/src/dashboard/W_Table/TableMenu/AddChartMenu.tsx +288 -0
- package/client/src/dashboard/W_Table/TableMenu/AutoRefreshMenu.tsx +118 -0
- package/client/src/dashboard/W_Table/TableMenu/TableDisplayOptionsJSON.tsx +71 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu.tsx +365 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_AccessRules.tsx +127 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_Constraints.tsx +140 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_CurrentQuery.tsx +82 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_DisplayOptions.tsx +266 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_Indexes.tsx +179 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_Policies.tsx +197 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_TableInfo.tsx +184 -0
- package/client/src/dashboard/W_Table/TableMenu/W_TableMenu_Triggers.tsx +199 -0
- package/client/src/dashboard/W_Table/TableMenu/getAndFixWColumnsConfig.tsx +116 -0
- package/client/src/dashboard/W_Table/TableMenu/getChartCols.ts +153 -0
- package/client/src/dashboard/W_Table/TableMenu/getTableMeta.ts +205 -0
- package/client/src/dashboard/W_Table/TooManyColumnsWarning.tsx +72 -0
- package/client/src/dashboard/W_Table/W_Table.tsx +772 -0
- package/client/src/dashboard/W_Table/W_Table_Content.tsx +51 -0
- package/client/src/dashboard/W_Table/colorBlend.ts +75 -0
- package/client/src/dashboard/W_Table/getTableData/getTableData.ts +291 -0
- package/client/src/dashboard/W_Table/getTableData/getTableFilter.ts +66 -0
- package/client/src/dashboard/W_Table/tableUtils/StyledTableColumn.tsx +322 -0
- package/client/src/dashboard/W_Table/tableUtils/getColWInfo.ts +48 -0
- package/client/src/dashboard/W_Table/tableUtils/getColWidth.ts +160 -0
- package/client/src/dashboard/W_Table/tableUtils/getEditColumn.tsx +143 -0
- package/client/src/dashboard/W_Table/tableUtils/getFullColumnConfig.ts +43 -0
- package/client/src/dashboard/W_Table/tableUtils/getJoinPaths.ts +89 -0
- package/client/src/dashboard/W_Table/tableUtils/getRowFilter.ts +114 -0
- package/client/src/dashboard/W_Table/tableUtils/getTableCols.tsx +258 -0
- package/client/src/dashboard/W_Table/tableUtils/getTableDataRequestSignature.ts +32 -0
- package/client/src/dashboard/W_Table/tableUtils/getTableSelect.ts +235 -0
- package/client/src/dashboard/W_Table/tableUtils/kFormatter.ts +12 -0
- package/client/src/dashboard/W_Table/tableUtils/onRenderColumn.tsx +107 -0
- package/client/src/dashboard/W_Table/tableUtils/prepareColsForRender.ts +69 -0
- package/client/src/dashboard/W_Table/tableUtils/tableUtils.ts +298 -0
- package/client/src/dashboard/W_TimeChart/AddTimeChartFilter.tsx +347 -0
- package/client/src/dashboard/W_TimeChart/W_TimeChart.tsx +405 -0
- package/client/src/dashboard/W_TimeChart/W_TimeChartHeaderControls.tsx +140 -0
- package/client/src/dashboard/W_TimeChart/W_TimeChartLayerLegend.tsx +99 -0
- package/client/src/dashboard/W_TimeChart/W_TimeChartMenu.tsx +228 -0
- package/client/src/dashboard/W_TimeChart/fetchData/constants.ts +5 -0
- package/client/src/dashboard/W_TimeChart/fetchData/fetchAndSetTimechartLayerData.ts +141 -0
- package/client/src/dashboard/W_TimeChart/fetchData/fetchTimechartLayer.ts +291 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimeChartData.ts +163 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimeChartLayers.ts +137 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimeChartLayersWithBins.ts +296 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimeChartSelectParams.ts +41 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimeLayerDataSignature.ts +22 -0
- package/client/src/dashboard/W_TimeChart/fetchData/getTimechartExtentFilter.ts +48 -0
- package/client/src/dashboard/Window/ChildWindowLayout.tsx +149 -0
- package/client/src/dashboard/Window/Window.tsx +322 -0
- package/client/src/dashboard/WindowControls/AddChartLayer.tsx +142 -0
- package/client/src/dashboard/WindowControls/ColorByLegend/ColorByLegend.tsx +256 -0
- package/client/src/dashboard/WindowControls/ColorByLegend/getGroupByValueColor.ts +50 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/DataLayer.tsx +182 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/DataLayerDataSource.tsx +243 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/DataLayerManager.tsx +157 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/LayerColorPicker.tsx +56 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/MapLayerStyling.tsx +192 -0
- package/client/src/dashboard/WindowControls/DataLayerManager/useSortedLayerQueries.ts +34 -0
- package/client/src/dashboard/WindowControls/OSMLayerOptions.tsx +62 -0
- package/client/src/dashboard/WindowControls/SQLChartLayerEditor.tsx +38 -0
- package/client/src/dashboard/WindowControls/TimeChartLayerOptions.tsx +336 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceAddBtn.tsx +104 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceDeleteBtn.tsx +87 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceMenu.css +13 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceMenu.tsx +124 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceMenuDropDown.tsx +178 -0
- package/client/src/dashboard/WorkspaceMenu/WorkspaceSettings.tsx +99 -0
- package/client/src/dashboard/WorkspaceMenu/useWorkspaces.ts +78 -0
- package/client/src/dashboard/getCrossFilters.ts +251 -0
- package/client/src/dashboard/localSettings.ts +94 -0
- package/client/src/dashboard/setPan.ts +358 -0
- package/client/src/dashboard/shortestPath.ts +137 -0
- package/client/src/demo/AppVideoDemo.tsx +132 -0
- package/client/src/demo/MousePointer.tsx +39 -0
- package/client/src/demo/demoUtils.ts +214 -0
- package/client/src/demo/recordDemoUtils.ts +87 -0
- package/client/src/demo/scripts/AIAssistantDemo.ts +60 -0
- package/client/src/demo/scripts/accessControlDemo.ts +44 -0
- package/client/src/demo/scripts/backupDemo.ts +50 -0
- package/client/src/demo/scripts/dashboardDemo.ts +215 -0
- package/client/src/demo/scripts/fileDemo.ts +24 -0
- package/client/src/demo/scripts/schemaDiagramDemo.ts +13 -0
- package/client/src/demo/scripts/sqlVideoDemo.ts +539 -0
- package/client/src/demo/scripts/videoDemoAccessControlScripts.ts +245 -0
- package/client/src/exports.ts +15 -0
- package/client/src/hooks/createStore.ts +24 -0
- package/client/src/hooks/useDebouncedCallback.ts +27 -0
- package/client/src/hooks/useThrottledCallback.ts +41 -0
- package/client/src/hooks/useTypedSearchParams.ts +81 -0
- package/client/src/i18n/LanguageSelector.tsx +33 -0
- package/client/src/i18n/i18nUtils.ts +187 -0
- package/client/src/i18n/translations/de.json +453 -0
- package/client/src/i18n/translations/es.json +425 -0
- package/client/src/i18n/translations/fr.json +425 -0
- package/client/src/i18n/translations/hi.json +431 -0
- package/client/src/i18n/translations/ru.json +431 -0
- package/client/src/i18n/translations/translations.ts +477 -0
- package/client/src/i18n/translations/zh.json +423 -0
- package/client/src/index.css +57 -0
- package/client/src/index.html.ejs +37 -0
- package/client/src/index.tsx +17 -0
- package/client/src/pages/Account/Account.tsx +150 -0
- package/client/src/pages/Account/ChangePassword.tsx +96 -0
- package/client/src/pages/Account/Sessions.tsx +248 -0
- package/client/src/pages/Account/Setup2FA.tsx +244 -0
- package/client/src/pages/AccountMenu.tsx +146 -0
- package/client/src/pages/Alerts.tsx +182 -0
- package/client/src/pages/AppContextProvider.tsx +26 -0
- package/client/src/pages/ComponentList.tsx +108 -0
- package/client/src/pages/ElectronSetup/ElectronSetup.tsx +122 -0
- package/client/src/pages/ElectronSetup/ElectronSetupStateDB.tsx +141 -0
- package/client/src/pages/ElectronSetup/useElectronSetup.ts +147 -0
- package/client/src/pages/Login/AuthNotifPopup.tsx +37 -0
- package/client/src/pages/Login/Login.tsx +133 -0
- package/client/src/pages/Login/LoginTotpForm.tsx +72 -0
- package/client/src/pages/Login/LoginWithProviders.tsx +62 -0
- package/client/src/pages/Login/SocialIcons.css +4 -0
- package/client/src/pages/Login/SocialIcons.tsx +85 -0
- package/client/src/pages/NewConnection/NewConnectionForm.tsx +572 -0
- package/client/src/pages/NewConnection/NewConnectionFormFields.tsx +314 -0
- package/client/src/pages/NewConnection/NewConnectionFormOptions.tsx +194 -0
- package/client/src/pages/NewConnection/SchemaFilter.tsx +87 -0
- package/client/src/pages/NewConnection/newConnectionUtils.ts +50 -0
- package/client/src/pages/NonHTTPSWarning.tsx +51 -0
- package/client/src/pages/NotFound.tsx +22 -0
- package/client/src/pages/ProjectConnection/PrglContextProvider.tsx +47 -0
- package/client/src/pages/ProjectConnection/ProjectConnection.tsx +110 -0
- package/client/src/pages/ProjectConnection/ProjectConnectionError.tsx +76 -0
- package/client/src/pages/ProjectConnection/useProjectDb.ts +253 -0
- package/client/src/pages/ProjectLogs.tsx +227 -0
- package/client/src/pages/ServerSettings/AuthProvidersSetup/AuthProvidersSetup.tsx +199 -0
- package/client/src/pages/ServerSettings/AuthProvidersSetup/useProviderProps.ts +39 -0
- package/client/src/pages/ServerSettings/EmailAuthSetup.tsx +209 -0
- package/client/src/pages/ServerSettings/EmailAuthSetupIngredients/EmailSMTPAndTemplateSetup.tsx +158 -0
- package/client/src/pages/ServerSettings/EmailAuthSetupIngredients/EmailSMTPSetup.tsx +128 -0
- package/client/src/pages/ServerSettings/EmailAuthSetupIngredients/EmailTemplateSetup.tsx +111 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfig.tsx +41 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfigActions.tsx +187 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfigAuthorizeUrlBtn.tsx +55 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfigCredentials.tsx +81 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/McpServerOAuthConfigTopControls.tsx +120 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/WebMcpConfig.tsx +162 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/CustomConfigComponents/useMcpServerOAuthConfigState.ts +132 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/MCPServerConfigButton.tsx +121 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/MCPServerConfigEditor.tsx +206 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/MCPServerConfigProvider.tsx +67 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/useMCPServerConfigState.tsx +107 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerConfig/useMCPServerEnable.ts +131 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerFooterActions/MCPServerFooterActions.tsx +108 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerFooterActions/MCPServerLogs.tsx +46 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerFooterActions/MCPServersInstall.tsx +81 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerHeaderCheckbox.tsx +120 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerTools/MCPServerTools.tsx +95 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerTools/MCPServerToolsGroupToggle.tsx +96 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerTools/useMcpServerIcons.ts +87 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServerTools/useMcpToolsSelectOptions.tsx +33 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServers.tsx +140 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServersHeader.tsx +47 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServersToolbar/AddMCPServer.tsx +196 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServersToolbar/MCPServersToolbar.tsx +77 -0
- package/client/src/pages/ServerSettings/MCPServers/MCPServersToolbar/useAddMCPServer.ts +253 -0
- package/client/src/pages/ServerSettings/MCPServers/useMCPChatAllowedTools.ts +25 -0
- package/client/src/pages/ServerSettings/MCPServers/useMCPServersListProps.tsx +118 -0
- package/client/src/pages/ServerSettings/OAuthProviderSetup.tsx +258 -0
- package/client/src/pages/ServerSettings/SecuritySettings.tsx +154 -0
- package/client/src/pages/ServerSettings/ServerSettings.tsx +151 -0
- package/client/src/pages/ServerSettings/Services.tsx +231 -0
- package/client/src/pages/ServerSettings/useEditableData.ts +55 -0
- package/client/src/pages/TopControls.tsx +182 -0
- package/client/src/pages/projectUtils.ts +0 -0
- package/client/src/theme/ThemeSelector.tsx +36 -0
- package/client/src/theme/useAppTheme.ts +47 -0
- package/client/src/theme/useSystemTheme.ts +23 -0
- package/client/src/useAppState/PrglCoreContextProvider.tsx +76 -0
- package/client/src/useAppState/useAppState.ts +92 -0
- package/client/src/useAppState/useDBSClient.ts +104 -0
- package/client/src/useAppState/useServerState.ts +62 -0
- package/client/src/useAppState/useUserData.ts +1 -0
- package/client/src/utils/colorUtils.ts +48 -0
- package/client/src/utils/hashCode.ts +52 -0
- package/client/src/utils/utils.ts +207 -0
- package/client/static/favicon-32x32.png +0 -0
- package/client/static/logos/anthropic.svg +3 -0
- package/client/static/logos/google.svg +25 -0
- package/client/static/logos/ollama.svg +7 -0
- package/client/static/logos/openai.svg +2 -0
- package/client/static/logos/openrouter.svg +1 -0
- package/client/static/mcp-oauth-close.js +5 -0
- package/client/static/prostgles-logo.svg +39 -0
- package/client/static/util.css +2024 -0
- package/client/static/v2.svg +25 -0
- package/client/tsconfig.eslint.json +5 -0
- package/client/tsconfig.json +40 -0
- package/client/tslint.json +5 -0
- package/common/DBGeneratedSchema.ts +953 -0
- package/common/DashboardTypes.ts +533 -0
- package/common/KeyObjMap.ts +100 -0
- package/common/OAuthUtils.ts +285 -0
- package/common/authTypesAndConstants.ts +1 -0
- package/common/columnDisplayFormat.schema.ts +211 -0
- package/common/electronInitTypes.ts +56 -0
- package/common/filterUtils.ts +491 -0
- package/common/getJsonSchemaAsTs.ts +335 -0
- package/common/llmUtils.ts +133 -0
- package/common/managedTableSchema.ts +38 -0
- package/common/mcp/databaseAccessSchema.ts +70 -0
- package/common/mcp/db.mcp.schema.ts +280 -0
- package/common/mcp/documents.mcp.schema.ts +45 -0
- package/common/mcp/documentsServiceInputSchema.ts +129 -0
- package/common/mcp/runCodeInSandboxSchema.ts +85 -0
- package/common/mcp/startAgenticWorkflowSchema.ts +180 -0
- package/common/mcp/tableOptionsJsonbSchema.ts +151 -0
- package/common/mcp/tablePermissionsSchema.ts +101 -0
- package/common/mcp/ui.mcp.schema.ts +496 -0
- package/common/mcp/userInputSchema.ts +87 -0
- package/common/mcp/web.mcp.schema.ts +245 -0
- package/common/mcp/webdev.mcp.schema.ts +138 -0
- package/common/mcpUtils.ts +75 -0
- package/common/prostglesApiTypes.ts +551 -0
- package/common/prostglesMcp.ts +35 -0
- package/common/psql_queries.json +657 -0
- package/common/publishUtils.ts +600 -0
- package/common/tsconfig.json +22 -0
- package/common/utils.ts +525 -0
- package/docker-compose.yml +99 -0
- package/docs/01_Overview.md +25 -0
- package/docs/02_Installation_(Docker).md +37 -0
- package/docs/03_Installation_(Desktop_Version).md +27 -0
- package/docs/04_Navigation_bar.md +37 -0
- package/docs/05_Connections.md +108 -0
- package/docs/06_Connection_dashboard.md +58 -0
- package/docs/07_Import_file.md +15 -0
- package/docs/08_Agentic_workflows.md +27 -0
- package/docs/09_Schema_diagram.md +63 -0
- package/docs/10_SQL_editor.md +69 -0
- package/docs/11_Table_view.md +188 -0
- package/docs/12_Map_view.md +56 -0
- package/docs/13_Timechart_view.md +49 -0
- package/docs/14_AI_Assistant.md +64 -0
- package/docs/15_Connection_configuration.md +20 -0
- package/docs/16_Access_control.md +12 -0
- package/docs/17_File_storage.md +8 -0
- package/docs/18_Backup_and_Restore.md +22 -0
- package/docs/19_API.md +20 -0
- package/docs/20_Server_Settings.md +28 -0
- package/docs/21_Account.md +21 -0
- package/docs/22_Command_Palette.md +10 -0
- package/docs/screenshots/table_timechart.dark.svgif.svg +375 -0
- package/docs/screenshots/table_timechart.svgif.svg +1102 -0
- package/docs/screenshots/timechart.dark.svgif.svg +221 -0
- package/docs/screenshots/timechart.svgif.svg +846 -0
- package/e2e/icon512.png +0 -0
- package/e2e/package-lock.json +401 -0
- package/e2e/package.json +31 -0
- package/e2e/playwright.config.js +65 -0
- package/e2e/playwright.config.ts +32 -0
- package/e2e/test-local.sh +5 -0
- package/e2e/tests/Testing.ts +724 -0
- package/e2e/tests/command_palette.spec.ts +114 -0
- package/e2e/tests/configTest/.env.example +10 -0
- package/e2e/tests/configTest/constants.ts +13 -0
- package/e2e/tests/configTest/functions.ts +14 -0
- package/e2e/tests/configTest/index.ts +84 -0
- package/e2e/tests/configTest/package.json +17 -0
- package/e2e/tests/configTest/tsconfig.json +13 -0
- package/e2e/tests/config_deploy.spec.ts +386 -0
- package/e2e/tests/create_docs.spec.ts +231 -0
- package/e2e/tests/create_load_test_users.spec.ts +47 -0
- package/e2e/tests/demo_video.spec.ts +139 -0
- package/e2e/tests/demo_video_setup.spec.ts +118 -0
- package/e2e/tests/fileBrowserGoToPath.ts +53 -0
- package/e2e/tests/load_test.spec.ts +53 -0
- package/e2e/tests/main.spec.ts +3820 -0
- package/e2e/tests/mockSMTPServer.ts +81 -0
- package/e2e/tests/saveDocs.ts +55 -0
- package/e2e/tests/svgScreenshots/SVG_SCREENSHOT_DETAILS.ts +132 -0
- package/e2e/tests/svgScreenshots/account.svgif.ts +14 -0
- package/e2e/tests/svgScreenshots/aiAssistant.svgif.ts +235 -0
- package/e2e/tests/svgScreenshots/aiAssistantAgenticWorkflow.svgif.ts +339 -0
- package/e2e/tests/svgScreenshots/aiAssistantAgenticWorkflowGovApi.svgif.ts +116 -0
- package/e2e/tests/svgScreenshots/backupAndRestore.svgif.ts +143 -0
- package/e2e/tests/svgScreenshots/commandPalette.svgif.ts +69 -0
- package/e2e/tests/svgScreenshots/dashboard.svgif.ts +271 -0
- package/e2e/tests/svgScreenshots/electronSetup.svgif.ts +32 -0
- package/e2e/tests/svgScreenshots/fileImporter.svgif.ts +39 -0
- package/e2e/tests/svgScreenshots/getOverviewSvgifSpecs.svgif.ts +288 -0
- package/e2e/tests/svgScreenshots/map.svgif.ts +50 -0
- package/e2e/tests/svgScreenshots/navbar.svgif.ts +22 -0
- package/e2e/tests/svgScreenshots/newConnection.svgif.ts +26 -0
- package/e2e/tests/svgScreenshots/schemaDiagram.svgif.ts +82 -0
- package/e2e/tests/svgScreenshots/sqlEditor.svgif.ts +348 -0
- package/e2e/tests/svgScreenshots/table.svgif.ts +167 -0
- package/e2e/tests/svgScreenshots/tableTimechart.svgif.ts +507 -0
- package/e2e/tests/svgScreenshots/timechart.svgif.ts +138 -0
- package/e2e/tests/svgScreenshots/utils/constants.ts +23 -0
- package/e2e/tests/svgScreenshots/utils/dedent.ts +9 -0
- package/e2e/tests/svgScreenshots/utils/getFilesFromDir.ts +30 -0
- package/e2e/tests/svgScreenshots/utils/getSceneUtils.ts +200 -0
- package/e2e/tests/svgScreenshots/utils/removeOtherElements.ts +26 -0
- package/e2e/tests/svgScreenshots/utils/saveSVGScreenshot.ts +67 -0
- package/e2e/tests/svgScreenshots/utils/saveSVGifs.ts +74 -0
- package/e2e/tests/svgScreenshots/utils/saveSVGs.ts +61 -0
- package/e2e/tests/svgScreenshots/utils/startScreencast.ts +118 -0
- package/e2e/tests/svgScreenshots/utils/svgScreenshotsCompleteReferenced.ts +98 -0
- package/e2e/tests/svgScreenshots/utils/svgifToWebm.ts +196 -0
- package/e2e/tests/svgScreenshots/utils/typeSendAddScenes.ts +86 -0
- package/e2e/tests/testAskLLM/agenticWorkflowToolUses.ts +294 -0
- package/e2e/tests/testAskLLM/createComponentToolUse.ts +49 -0
- package/e2e/tests/testAskLLM/createReceipts.ts +183 -0
- package/e2e/tests/testAskLLM/getAskUserToolUse.ts +36 -0
- package/e2e/tests/testAskLLM/hello.mp3 +0 -0
- package/e2e/tests/testAskLLM/mcpSandboxToolUse.ts +64 -0
- package/e2e/tests/testAskLLM/mockRemoteMcp/Dockerfile +32 -0
- package/e2e/tests/testAskLLM/mockRemoteMcp/package-lock.json +2120 -0
- package/e2e/tests/testAskLLM/mockRemoteMcp/package.json +20 -0
- package/e2e/tests/testAskLLM/mockRemoteMcp/server.ts +144 -0
- package/e2e/tests/testAskLLM/mockRemoteMcp/start-mock-mcp.sh +93 -0
- package/e2e/tests/testAskLLM/sample.pdf +35 -0
- package/e2e/tests/testAskLLM/sampleToolUseData.ts +1413 -0
- package/e2e/tests/testAskLLM/scenarios/geoQuestion.scenario.ts +110 -0
- package/e2e/tests/testAskLLM/scenarios/hygieneRatingsApi.scenario.ts +62 -0
- package/e2e/tests/testAskLLM/scenarios/receiptImport/receiptImport.scenario.ts +53 -0
- package/e2e/tests/testAskLLM/speechToTextTest.ts +101 -0
- package/e2e/tests/testAskLLM/stringify.ts +1 -0
- package/e2e/tests/testAskLLM/testAskLLM.ts +558 -0
- package/e2e/tests/testAskLLM/utils.ts +34 -0
- package/e2e/tests/tsconfig.json +16 -0
- package/e2e/tests/utils/constants.ts +22 -0
- package/e2e/tests/utils/goTo.ts +87 -0
- package/e2e/tests/utils/isPortFree.ts +19 -0
- package/e2e/tests/utils/utils.ts +1319 -0
- package/e2e/tsconfig.json +5 -0
- package/electron/README.md +34 -0
- package/electron/build.sh +74 -0
- package/electron/e2e-electron/electron.spec.tsx +214 -0
- package/electron/e2e-electron/tsconfig.json +10 -0
- package/electron/forge.config.js +26 -0
- package/electron/getProtocolHandler.ts +41 -0
- package/electron/handleErrors.ts +25 -0
- package/electron/icon512.png +0 -0
- package/electron/image.ico +0 -0
- package/electron/images/generate_from_svg.sh +13 -0
- package/electron/images/icon.ico +0 -0
- package/electron/images/icon512.png +0 -0
- package/electron/images/icon512notpadded.png +0 -0
- package/electron/images/loading-effect.css +43 -0
- package/electron/images/prostgles-logo-rounded.svg +46 -0
- package/electron/images/prostgles-logo.svg +39 -0
- package/electron/images/rounded/256x256.png +0 -0
- package/electron/images/rounded/512.png +0 -0
- package/electron/images/rounded/512x512.png +0 -0
- package/electron/images/rounded/64x64.png +0 -0
- package/electron/images/rounded/icon512.png +0 -0
- package/electron/loadingHTML.ts +70 -0
- package/electron/main.ts +125 -0
- package/electron/mainWindow.ts +155 -0
- package/electron/package-lock.json +3916 -0
- package/electron/package.json +111 -0
- package/electron/playwright.config.ts +17 -0
- package/electron/screenCapture.bat +275 -0
- package/electron/scripts/patch-builder.mjs +25 -0
- package/electron/setContextMenu.ts +56 -0
- package/electron/start.sh +10 -0
- package/electron/test-linux-macos.sh +1 -0
- package/electron/test-linux.sh +2 -0
- package/electron/test-setup.js +8 -0
- package/electron/test-w-debug.sh +1 -0
- package/electron/test.sh +1 -0
- package/electron/tsconfig.json +22 -0
- package/electron/win-inno-setup.ts +100 -0
- package/electron/win.js +3 -0
- package/package.json +33 -0
- package/releases/v1.0.0.md +5 -0
- package/releases/v2.0.0.md +25 -0
- package/releases/v2.2.2.md +13 -0
- package/releases/v2.2.3.md +1 -0
- package/releases/v2.2.4.md +1 -0
- package/releases/v2.2.5.md +1 -0
- package/releases/v2.3.1.md +5 -0
- package/releases/v2.3.5.md +7 -0
- package/scripts/check_release_ready.sh +53 -0
- package/scripts/demo/record-local.sh +13 -0
- package/scripts/demo/split-video.sh +6 -0
- package/scripts/get_version.sh +11 -0
- package/scripts/npm_publish_dev.sh +6 -0
- package/scripts/release.sh +35 -0
- package/scripts/start-dev-electron.sh +14 -0
- package/scripts/start-dev.sh +18 -0
- package/scripts/start-prod.sh +5 -0
- package/scripts/test.sh +62 -0
- package/scripts/update_docker_image_versions.sh +28 -0
- package/server/.vscode/settings.json +3 -0
- package/server/eslint.config.mjs +83 -0
- package/server/licenses.json +3821 -0
- package/server/package-lock.json +7252 -0
- package/server/package.json +84 -0
- package/server/sample_schemas/_crypto.sql +95 -0
- package/server/sample_schemas/cleaning.sql +49 -0
- package/server/sample_schemas/cloud_computing.sql +63 -0
- package/server/sample_schemas/countries.sql +29 -0
- package/server/sample_schemas/crypto/index.ts +3 -0
- package/server/sample_schemas/crypto/onMount.ts +802 -0
- package/server/sample_schemas/crypto/package.json +7 -0
- package/server/sample_schemas/crypto/tableConfig.ts +80 -0
- package/server/sample_schemas/crypto/tsconfig.json +12 -0
- package/server/sample_schemas/crypto/workspaceConfig.ts +261 -0
- package/server/sample_schemas/financial.sql +49 -0
- package/server/sample_schemas/food_delivery/connection.ts +1007 -0
- package/server/sample_schemas/food_delivery/databaseConfig.ts +116 -0
- package/server/sample_schemas/food_delivery/index.ts +8 -0
- package/server/sample_schemas/food_delivery/onInit.sql +1507 -0
- package/server/sample_schemas/food_delivery/onMount.ts +149 -0
- package/server/sample_schemas/food_delivery/package.json +4 -0
- package/server/sample_schemas/food_delivery/tsconfig.json +16 -0
- package/server/sample_schemas/food_delivery/workspaceConfig.ts +53 -0
- package/server/sample_schemas/lodging.sql +48 -0
- package/server/sample_schemas/maps.sql +73 -0
- package/server/sample_schemas/property_management/index.ts +2 -0
- package/server/sample_schemas/property_management/onMount.ts +55 -0
- package/server/sample_schemas/property_management/package.json +4 -0
- package/server/sample_schemas/property_management/tsconfig.json +16 -0
- package/server/sample_schemas/property_management/workspaceConfig.ts +92 -0
- package/server/sample_schemas/sales.sql +51 -0
- package/server/sample_schemas/sample.sql +72 -0
- package/server/sample_schemas/testschema.ts +21 -0
- package/server/sample_schemas/weather/index.ts +1 -0
- package/server/sample_schemas/weather/onMount.ts +284 -0
- package/server/sample_schemas/weather/package.json +4 -0
- package/server/sample_schemas/weather/tsconfig.json +16 -0
- package/server/scripts/preparePackage.mjs +18 -0
- package/server/src/BackupManager/BackupManager.ts +297 -0
- package/server/src/BackupManager/checkAutomaticBackup.ts +143 -0
- package/server/src/BackupManager/getInstalledPrograms.ts +203 -0
- package/server/src/BackupManager/pgDump.ts +242 -0
- package/server/src/BackupManager/pgRestore.ts +238 -0
- package/server/src/BackupManager/pipeFromCommand.ts +94 -0
- package/server/src/BackupManager/pipeToCommand.ts +66 -0
- package/server/src/BackupManager/utils.ts +124 -0
- package/server/src/ConnectionManager/ConnectionManager.ts +613 -0
- package/server/src/ConnectionManager/applyStartupSchemaConfig.ts +95 -0
- package/server/src/ConnectionManager/connectionManagerUtils.ts +164 -0
- package/server/src/ConnectionManager/connectionOnReady.ts +76 -0
- package/server/src/ConnectionManager/dbsConnectionOptions.ts +109 -0
- package/server/src/ConnectionManager/getConnectionAuth.ts +37 -0
- package/server/src/ConnectionManager/getConnectionHttpServer.ts +112 -0
- package/server/src/ConnectionManager/getConnectionPublish.ts +119 -0
- package/server/src/ConnectionManager/getConnectionServerFunctions.ts +108 -0
- package/server/src/ConnectionManager/getConnectionSocketPath.ts +12 -0
- package/server/src/ConnectionManager/getHotReloadConfigs.ts +161 -0
- package/server/src/ConnectionManager/getInitiatedPostgresqlPIDs.ts +84 -0
- package/server/src/ConnectionManager/getSchemaConfig.ts +84 -0
- package/server/src/ConnectionManager/initConnectionManager.ts +147 -0
- package/server/src/ConnectionManager/modifyClientSchema.ts +146 -0
- package/server/src/ConnectionManager/parseTableConfig.ts +231 -0
- package/server/src/ConnectionManager/saveCertificates.ts +68 -0
- package/server/src/ConnectionManager/startConnection.ts +353 -0
- package/server/src/ConnectionManager/startConnectionOnRequestHandler.ts +63 -0
- package/server/src/ConnectionManager/syncSchemaConfig.ts +98 -0
- package/server/src/Logger.ts +150 -0
- package/server/src/McpHub/AnthropicMcpHub/McpHub.ts +144 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/authenticateMcpServer.ts +98 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/connectToRemoteMCPServer.ts +176 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/createMcpOAuthProvider.ts +257 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/getMcpOAuthMetadata.ts +112 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/getRemoteMcpServerParameters.ts +82 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/saveServerInfo.ts +76 -0
- package/server/src/McpHub/AnthropicMcpHub/McpOAuth/updateRemoteMcpAuthorizationCode.ts +100 -0
- package/server/src/McpHub/AnthropicMcpHub/McpTypes.ts +189 -0
- package/server/src/McpHub/AnthropicMcpHub/connectToMCPServer.ts +132 -0
- package/server/src/McpHub/AnthropicMcpHub/createMcpServerHandlers.ts +116 -0
- package/server/src/McpHub/AnthropicMcpHub/installMCPServer.ts +195 -0
- package/server/src/McpHub/AnthropicMcpHub/runShellCommand.ts +53 -0
- package/server/src/McpHub/AnthropicMcpHub/startMcpHub.ts +111 -0
- package/server/src/McpHub/DefaultMCPServers/DefaultMCPServers.ts +153 -0
- package/server/src/McpHub/DefaultMCPServers/mcpGithub.ts +968 -0
- package/server/src/McpHub/DockerSandbox/createBridgeInternalDockerNetwork.ts +35 -0
- package/server/src/McpHub/DockerSandbox/createContainer.spec.ts +195 -0
- package/server/src/McpHub/DockerSandbox/createContainer.ts +125 -0
- package/server/src/McpHub/DockerSandbox/dockerMCPServerProxy/dockerContainerAuthRegistry.ts +150 -0
- package/server/src/McpHub/DockerSandbox/dockerMCPServerProxy/dockerMCPServerProxy.ts +395 -0
- package/server/src/McpHub/DockerSandbox/dockerMCPServerProxy/getDockerGatewayIP.ts +27 -0
- package/server/src/McpHub/DockerSandbox/executeDockerCommand.ts +152 -0
- package/server/src/McpHub/DockerSandbox/getContainerLogs.ts +17 -0
- package/server/src/McpHub/DockerSandbox/getDockerRunArgs.ts +114 -0
- package/server/src/McpHub/DockerSandbox/runContainerWithProxyAccess.ts +99 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServerTypes.ts +143 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Db.mcp.ts +281 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Documents.mcp.ts +89 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/createAgenticWorkflow.ts +247 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/assertTablesExistInFutureSchema.ts +14 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/getValidatedMcpServerToolsAllowed.ts +155 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/parseDDLStatements.ts +84 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/quoteIdent.ts +139 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/validateAgenticWorkflowDefinitions.ts +102 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/validateDatabaseAccessDefinitions.ts +212 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/validateUserInput.ts +159 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/definitionValidation/validateUserInputDefinitions.ts +36 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/execution/getVolumesFromUserInput.ts +134 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/execution/startAgenticWorkflowContainer.ts +341 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/proxyHandlers/createWorkflowExecutionHandlers.ts +155 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/proxyHandlers/getAgentConfigWithDefaults.ts +96 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/proxyHandlers/setupOrchestrationToolPermissions.ts +64 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/addInstrumentationToTsLogic.ts +350 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/callWorkflowProxy.ts +99 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/defineAgenticWorkflow.spec.ts +110 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/defineAgenticWorkflow.ts +576 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/defineAgenticWorkflowHandlers.ts +127 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/defineAgenticWorkflowHandlers.types.ts +72 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/definitionHandler.ts +104 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/ensureWorkflowIsExecuted.ts +53 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/getTsLogicSummary.ts +639 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/orchestrationToolHandlers.ts +55 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSdk/tableHandlers.ts +108 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getAgenticWorkflowDockerCoreFiles.spec.ts +26 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getAgenticWorkflowDockerCoreFiles.ts +225 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getDefineAgenticWorkflowTsWithDbAndMcpTypes.ts +187 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getOrchestrationContainerFiles.ts +31 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/runtimeSetup/getToolTypescriptSchemas.ts +84 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/agenticWorkflow/startAgenticWorkflow.ts +181 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/fetchTools.ts +48 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/runCodeInSandboxContainer.ts +133 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/getAgenticToolSchemas.ts +55 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/getContainerToolProxyAccessInstructions.ts +22 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/getContainerToolSchemas.ts +46 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/prostglesUiToolSchemas.ts +23 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/schemas/suggestDashboardsToolSchema.ts +26 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/startAgent.ts +166 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Prostgles/validateCreateDashboards.ts +249 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Ui.mcp.ts +343 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Web/Web.mcp.ts +265 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Web/checkConfigAccess.spec.ts +112 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Web/checkConfigAccess.ts +263 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/Web/getDocumentText.ts +34 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/WebDev.mcp.ts +114 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/createComponent.ts +94 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/createComponentQuickFeedbackPreview.ts +53 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/getWebDevChatAndConnection.ts +12 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/searchWebDevFiles.spec.ts +82 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/searchWebDevFiles.ts +118 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/WebDev/tools/utils.ts +30 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/getClientDBHandlersForChat.ts +46 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers/getExistingTablesSchema.ts +230 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMCPServers.ts +30 -0
- package/server/src/McpHub/ProstglesMcpHub/ProstglesMcpHub.ts +244 -0
- package/server/src/McpHub/callMCPServerTool.ts +148 -0
- package/server/src/McpHub/getMcpServerParameters.ts +204 -0
- package/server/src/McpHub/insertMcpServerList.ts +49 -0
- package/server/src/McpHub/reloadMcpServerTools.ts +123 -0
- package/server/src/McpHub/testMCPServerConfig.ts +29 -0
- package/server/src/McpHub/utils.ts +1 -0
- package/server/src/ServiceManager/ServiceManager.spec.ts +27 -0
- package/server/src/ServiceManager/ServiceManager.ts +162 -0
- package/server/src/ServiceManager/ServiceManagerTypes.ts +136 -0
- package/server/src/ServiceManager/buildService.ts +138 -0
- package/server/src/ServiceManager/dockerInspect.ts +33 -0
- package/server/src/ServiceManager/enableService.ts +41 -0
- package/server/src/ServiceManager/getDockerBuildHash.ts +57 -0
- package/server/src/ServiceManager/getSelectedConfigEnvs.ts +47 -0
- package/server/src/ServiceManager/getServiceEndpoints.ts +122 -0
- package/server/src/ServiceManager/initialiseServices.ts +56 -0
- package/server/src/ServiceManager/resolveBinary.ts +41 -0
- package/server/src/ServiceManager/services/documents/documents.service.ts +178 -0
- package/server/src/ServiceManager/services/documents/documents.service.types.ts +43 -0
- package/server/src/ServiceManager/services/documents/src/Dockerfile +29 -0
- package/server/src/ServiceManager/services/documents/src/layout_postprocessor.py +707 -0
- package/server/src/ServiceManager/services/documents/src/requirements.txt +3 -0
- package/server/src/ServiceManager/services/frontendDev/frontendDev.service.ts +19 -0
- package/server/src/ServiceManager/services/frontendDev/src/.prettierrc +3 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/.env.development +1 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/Dockerfile +5 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/README.md +6 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/eslint.config.js +27 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/index.html +13 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/package.json +32 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/public/vite.svg +1 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/App.css +42 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/App.tsx +19 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/api/DBGeneratedSchema.d.ts +33 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/api/ProstglesProvider.tsx +61 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/assets/react.svg +1 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/components/SampleComponent/SampleComponent.tsx +11 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/index.css +68 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/main.tsx +23 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/pages/ComponentPreview.tsx +31 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/src/pages/Home.tsx +36 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/tsconfig.app.json +28 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/tsconfig.json +7 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/tsconfig.node.json +26 -0
- package/server/src/ServiceManager/services/frontendDev/src/client/vite.config.ts +17 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/package.json +24 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/playwright.config.ts +36 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/tests/coverage.ts +67 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/tests/main.spec.ts +21 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/tests/tsconfig.json +13 -0
- package/server/src/ServiceManager/services/frontendDev/src/e2e/tsconfig.json +13 -0
- package/server/src/ServiceManager/services/frontendDev/src/package.json +15 -0
- package/server/src/ServiceManager/services/frontendDev/src/tsconfig.base.json +32 -0
- package/server/src/ServiceManager/services/speechToText/TRANSCRIBE_OUTPUT_SCHEMA.ts +53 -0
- package/server/src/ServiceManager/services/speechToText/speechToText.service.ts +125 -0
- package/server/src/ServiceManager/services/speechToText/src/Dockerfile +31 -0
- package/server/src/ServiceManager/services/speechToText/src/app.py +115 -0
- package/server/src/ServiceManager/services/speechToText/src/requirements.txt +3 -0
- package/server/src/ServiceManager/services/webSearchSearxng/src/Dockerfile +12 -0
- package/server/src/ServiceManager/services/webSearchSearxng/src/limiter.toml +0 -0
- package/server/src/ServiceManager/services/webSearchSearxng/src/settings.yml +11 -0
- package/server/src/ServiceManager/services/webSearchSearxng/webSearchSearxng.service.ts +36 -0
- package/server/src/ServiceManager/startService.ts +196 -0
- package/server/src/ServiceManager/stopService.ts +23 -0
- package/server/src/ServiceManager/withRetries.ts +19 -0
- package/server/src/authConfig/OAuthProviders/getOAuthLoginProviders.ts +67 -0
- package/server/src/authConfig/OAuthProviders/loginWithProvider.ts +94 -0
- package/server/src/authConfig/authUtils.ts +19 -0
- package/server/src/authConfig/createPasswordlessAdminSessionIfNeeded.ts +86 -0
- package/server/src/authConfig/createPublicUserSessionIfAllowed.ts +48 -0
- package/server/src/authConfig/emailProvider/getEmailAuthProvider.ts +44 -0
- package/server/src/authConfig/emailProvider/getEmailSenderWithMockTest.ts +96 -0
- package/server/src/authConfig/emailProvider/onEmailRegistration.ts +116 -0
- package/server/src/authConfig/getActiveSession.ts +76 -0
- package/server/src/authConfig/getAuth.ts +171 -0
- package/server/src/authConfig/getLogin.ts +206 -0
- package/server/src/authConfig/getUser.ts +108 -0
- package/server/src/authConfig/onMagicLinkOrOTP.ts +171 -0
- package/server/src/authConfig/onUseOrSocketConnected.ts +43 -0
- package/server/src/authConfig/sessionUtils.ts +120 -0
- package/server/src/authConfig/startRateLimitedLoginAttempt.ts +201 -0
- package/server/src/authConfig/subscribeToAuthSetupChanges.ts +144 -0
- package/server/src/authConfig/upsertSession.ts +48 -0
- package/server/src/cli/cli.ts +217 -0
- package/server/src/cli/cliUtils.ts +50 -0
- package/server/src/cloudClients/cloudClients.ts +116 -0
- package/server/src/connectionUtils/getConnectionDetails.ts +76 -0
- package/server/src/connectionUtils/testDBConnection.ts +167 -0
- package/server/src/connectionUtils/validateConnection.ts +114 -0
- package/server/src/createHttpAndIOServers/createHttpServer.ts +147 -0
- package/server/src/createHttpAndIOServers/createIOWebsocketServer.ts +31 -0
- package/server/src/createHttpAndIOServers/getCorsOptions.ts +58 -0
- package/server/src/createHttpAndIOServers/setHttpAppSecurity.ts +124 -0
- package/server/src/electronConfig.ts +223 -0
- package/server/src/envVars.ts +45 -0
- package/server/src/getPSQLQueries.ts +123 -0
- package/server/src/index.ts +273 -0
- package/server/src/init/CSP_DEFAULTS.ts +41 -0
- package/server/src/init/addDevImageProxyRoute.ts +74 -0
- package/server/src/init/cleanupTestDatabases.ts +51 -0
- package/server/src/init/initExpressAndIOServers.ts +127 -0
- package/server/src/init/initUsers.ts +113 -0
- package/server/src/init/insertStateDatabase.ts +72 -0
- package/server/src/init/isRetryableError.ts +50 -0
- package/server/src/init/logOutgoingHttpRequests.ts +15 -0
- package/server/src/init/prostglesOnReady.ts +147 -0
- package/server/src/init/saveTypescriptFilesForProduction.ts +113 -0
- package/server/src/init/setDBSRoutesForElectron.ts +206 -0
- package/server/src/init/startDevHotReloadNotifier.ts +39 -0
- package/server/src/init/startProstgles.ts +220 -0
- package/server/src/init/tryStartProstgles.ts +177 -0
- package/server/src/init/utils.ts +44 -0
- package/server/src/init.sql +1 -0
- package/server/src/methods/getPidStats.ts +336 -0
- package/server/src/methods/getPidStatsFromProc.ts +125 -0
- package/server/src/methods/statusMonitorUtils.ts +148 -0
- package/server/src/publish/getPublishLLM.ts +246 -0
- package/server/src/publish/getPublishLlmChats.ts +73 -0
- package/server/src/publish/publish.ts +398 -0
- package/server/src/schemaConfig.ts +97 -0
- package/server/src/serverFunctions/adminServerFunctions/getAdminServerFunctions.ts +477 -0
- package/server/src/serverFunctions/adminServerFunctions/getAgenticWorkflowFunctions.ts +186 -0
- package/server/src/serverFunctions/adminServerFunctions/getBackupServerFunctions.ts +178 -0
- package/server/src/serverFunctions/adminServerFunctions/getDefineAdminFunction.ts +11 -0
- package/server/src/serverFunctions/adminServerFunctions/getMcpServerFunctions.ts +283 -0
- package/server/src/serverFunctions/adminServerFunctions/getWebAppServerFunctions.ts +228 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/buildWebApp.ts +38 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getReactComponents copy.ts +188 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getReactComponents.ts +287 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getReactRenderTree.ts +180 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getTemplatedWebAppConnection.ts +23 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getValidatedWebAppPath.spec.ts +77 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/getValidatedWebAppPath.ts +22 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/readWebAppFiles.ts +45 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/runDockerForWebApp.ts +56 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/testWebApp.ts +30 -0
- package/server/src/serverFunctions/adminServerFunctions/webApp/writeWebAppFiles.ts +91 -0
- package/server/src/serverFunctions/applySampleSchema.ts +96 -0
- package/server/src/serverFunctions/askLLM/LLMResponseTypes.ts +315 -0
- package/server/src/serverFunctions/askLLM/agentConstants.ts +42 -0
- package/server/src/serverFunctions/askLLM/askLLM.ts +540 -0
- package/server/src/serverFunctions/askLLM/checkLLMLimit.ts +59 -0
- package/server/src/serverFunctions/askLLM/checkMaxCostLimitForChat.ts +51 -0
- package/server/src/serverFunctions/askLLM/defaultPrompts/base.prompt.ts +26 -0
- package/server/src/serverFunctions/askLLM/defaultPrompts/createAgenticWorkflow.prompt.ts +53 -0
- package/server/src/serverFunctions/askLLM/defaultPrompts/createDashboards.prompt.ts +15 -0
- package/server/src/serverFunctions/askLLM/fetchLLMResponse.ts +105 -0
- package/server/src/serverFunctions/askLLM/getCompactedMessages.ts +101 -0
- package/server/src/serverFunctions/askLLM/getFullPrompt.ts +86 -0
- package/server/src/serverFunctions/askLLM/getLLMRequestBody.ts +368 -0
- package/server/src/serverFunctions/askLLM/getLLMToolsAllowedInThisChat.ts +179 -0
- package/server/src/serverFunctions/askLLM/getLLMUsageCost.ts +91 -0
- package/server/src/serverFunctions/askLLM/getPastMessages.ts +9 -0
- package/server/src/serverFunctions/askLLM/getUserMessageCost.ts +21 -0
- package/server/src/serverFunctions/askLLM/getValidatedAskLLMChatOptions.ts +59 -0
- package/server/src/serverFunctions/askLLM/handleToolUseResultConfirmation.ts +87 -0
- package/server/src/serverFunctions/askLLM/parseLLMResponseObject.ts +206 -0
- package/server/src/serverFunctions/askLLM/prostglesLLMTools/getDbConnectionWithPermissions.ts +94 -0
- package/server/src/serverFunctions/askLLM/prostglesLLMTools/getMCPServerTools.ts +28 -0
- package/server/src/serverFunctions/askLLM/prostglesLLMTools/getMcpToolsWithDynamicDescription.ts +77 -0
- package/server/src/serverFunctions/askLLM/prostglesLLMTools/getTemplateUserConnection.ts +182 -0
- package/server/src/serverFunctions/askLLM/readFetchStream.ts +69 -0
- package/server/src/serverFunctions/askLLM/refreshModels.ts +223 -0
- package/server/src/serverFunctions/askLLM/runApprovedTools/getMostSimilar.ts +55 -0
- package/server/src/serverFunctions/askLLM/runApprovedTools/runAgentGoalTool.ts +116 -0
- package/server/src/serverFunctions/askLLM/runApprovedTools/runApprovedTools.ts +348 -0
- package/server/src/serverFunctions/askLLM/runApprovedTools/validateLastMessageToolUseRequests.ts +33 -0
- package/server/src/serverFunctions/askLLM/setupLLM.ts +176 -0
- package/server/src/serverFunctions/askLLM/setupLLMProviders.ts +186 -0
- package/server/src/serverFunctions/deleteConnection.ts +111 -0
- package/server/src/serverFunctions/getConnectionAndDatabaseConfig.ts +27 -0
- package/server/src/serverFunctions/getNodeTypes.spec.ts +80 -0
- package/server/src/serverFunctions/getNodeTypes.ts +306 -0
- package/server/src/serverFunctions/getServerFunctions.ts +163 -0
- package/server/src/serverFunctions/getServerFunctionsContext.ts +29 -0
- package/server/src/serverFunctions/prostglesSignup.ts +28 -0
- package/server/src/serverFunctions/setFileStorage.ts +107 -0
- package/server/src/serverFunctions/userServerFunctions/approveToolUse.ts +146 -0
- package/server/src/serverFunctions/userServerFunctions/getLLMAccessParams.ts +21 -0
- package/server/src/serverFunctions/userServerFunctions/getUserServerFunctions.ts +260 -0
- package/server/src/tableConfig/tableConfig.ts +374 -0
- package/server/src/tableConfig/tableConfigAccessControl.ts +212 -0
- package/server/src/tableConfig/tableConfigAgenticWorkflow.ts +174 -0
- package/server/src/tableConfig/tableConfigBackups.ts +160 -0
- package/server/src/tableConfig/tableConfigConnections.ts +182 -0
- package/server/src/tableConfig/tableConfigDatabaseConfig.ts +714 -0
- package/server/src/tableConfig/tableConfigGlobalSettings.ts +40 -0
- package/server/src/tableConfig/tableConfigLinks.ts +273 -0
- package/server/src/tableConfig/tableConfigLlm/tableConfigLlm.ts +347 -0
- package/server/src/tableConfig/tableConfigLlm/tableConfigLlmChats.ts +361 -0
- package/server/src/tableConfig/tableConfigLlm/tableConfigLlmExtraRequestData.ts +50 -0
- package/server/src/tableConfig/tableConfigMCPServers.ts +676 -0
- package/server/src/tableConfig/tableConfigMigrations.ts +26 -0
- package/server/src/tableConfig/tableConfigPublishedMethods.ts +120 -0
- package/server/src/tableConfig/tableConfigServices.ts +61 -0
- package/server/src/tableConfig/tableConfigUsers.ts +227 -0
- package/server/src/tableConfig/tableConfigWebApp.ts +17 -0
- package/server/src/tableConfig/tableConfigWindows.ts +164 -0
- package/server/src/tableConfig/tableConfigWorkspaces.ts +100 -0
- package/server/src/tableConfig/tablePermissionsSchema.ts +66 -0
- package/server/src/testElectron.ts +33 -0
- package/server/src/upsertConnection.ts +73 -0
- package/server/src/utils/assertIconExists.ts +24 -0
- package/server/src/utils/isPortFree.ts +40 -0
- package/server/src/utils/tout.ts +7 -0
- package/server/test-runner.mjs +28 -0
- package/server/tsconfig.json +45 -0
- package/server/tslint.json +8 -0
|
@@ -0,0 +1,1856 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* https://wiki.openstreetmap.org/wiki/Key:highway
|
|
3
|
+
* https://wiki.openstreetmap.org/wiki/Key:amenity
|
|
4
|
+
* https://wiki.openstreetmap.org/wiki/Key:building
|
|
5
|
+
* https://wiki.openstreetmap.org/wiki/Key:natural
|
|
6
|
+
*
|
|
7
|
+
|
|
8
|
+
let oTable = $0;
|
|
9
|
+
let data = [...oTable.rows].map(t => {
|
|
10
|
+
const [key, value, elemIcon, info] = [...t.children].map(u => u.innerText);
|
|
11
|
+
return { key, value, info }
|
|
12
|
+
}).filter(t => t.key === "highway");
|
|
13
|
+
console.log(data);
|
|
14
|
+
|
|
15
|
+
*/
|
|
16
|
+
const highway = [
|
|
17
|
+
{
|
|
18
|
+
key: "highway",
|
|
19
|
+
value: "motorway",
|
|
20
|
+
info: "A restricted access major divided highway, normally with 2 or more running lanes plus emergency hard shoulder. Equivalent to the Freeway, Autobahn, etc..",
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
key: "highway",
|
|
24
|
+
value: "trunk",
|
|
25
|
+
info: "The most important roads in a country's system that aren't motorways. (Need not necessarily be a divided highway.)",
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
key: "highway",
|
|
29
|
+
value: "primary",
|
|
30
|
+
info: "The next most important roads in a country's system. (Often link larger towns.)",
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
key: "highway",
|
|
34
|
+
value: "secondary",
|
|
35
|
+
info: "The next most important roads in a country's system. (Often link towns.)",
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
key: "highway",
|
|
39
|
+
value: "tertiary",
|
|
40
|
+
info: "The next most important roads in a country's system. (Often link smaller towns and villages)",
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
key: "highway",
|
|
44
|
+
value: "unclassified",
|
|
45
|
+
info: "The least important through roads in a country's system – i.e. minor roads of a lower classification than tertiary, but which serve a purpose other than access to properties. (Often link villages and hamlets.)\n\nThe word 'unclassified' is a historical artefact of the UK road system and does not mean that the classification is unknown; you can use highway=road for that.",
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
key: "highway",
|
|
49
|
+
value: "residential",
|
|
50
|
+
info: "Roads which serve as an access to housing, without function of connecting settlements. Often lined with housing.",
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
key: "highway",
|
|
54
|
+
value: "motorway_link",
|
|
55
|
+
info: "The link roads (sliproads/ramps) leading to/from a motorway from/to a motorway or lower class highway. Normally with the same motorway restrictions.",
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
key: "highway",
|
|
59
|
+
value: "trunk_link",
|
|
60
|
+
info: "The link roads (sliproads/ramps) leading to/from a trunk road from/to a trunk road or lower class highway.",
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
key: "highway",
|
|
64
|
+
value: "primary_link",
|
|
65
|
+
info: "The link roads (sliproads/ramps) leading to/from a primary road from/to a primary road or lower class highway.",
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
key: "highway",
|
|
69
|
+
value: "secondary_link",
|
|
70
|
+
info: "The link roads (sliproads/ramps) leading to/from a secondary road from/to a secondary road or lower class highway.",
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
key: "highway",
|
|
74
|
+
value: "tertiary_link",
|
|
75
|
+
info: "The link roads (sliproads/ramps) leading to/from a tertiary road from/to a tertiary road or lower class highway.",
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
key: "highway",
|
|
79
|
+
value: "living_street",
|
|
80
|
+
info: "For living streets, which are residential streets where pedestrians have legal priority over cars, speeds are kept very low and this is can use for narrow roads that usually using for motorcycle roads.",
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
key: "highway",
|
|
84
|
+
value: "service",
|
|
85
|
+
info: "For access roads to, or within an industrial estate, camp site, business park, car park, alleys, etc. Can be used in conjunction with service=* to indicate the type of usage and with access=* to indicate who can use it and in what circumstances.",
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
key: "highway",
|
|
89
|
+
value: "pedestrian",
|
|
90
|
+
info: "For roads used mainly/exclusively for pedestrians in shopping and some residential areas which may allow access by motorised vehicles only for very limited periods of the day. To create a 'square' or 'plaza' create a closed way and tag as pedestrian and also with area=yes.",
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
key: "highway",
|
|
94
|
+
value: "track",
|
|
95
|
+
info: "Roads for mostly agricultural or forestry uses. To describe the quality of a track, see tracktype=*. Note: Although tracks are often rough with unpaved surfaces, this tag is not describing the quality of a road but its use. Consequently, if you want to tag a general use road, use one of the general highway values instead of track.",
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
key: "highway",
|
|
99
|
+
value: "bus_guideway",
|
|
100
|
+
info: "A busway where the vehicle guided by the way (though not a railway) and is not suitable for other traffic. Please note: this is not a normal bus lane, use access=no, psv=yes instead!",
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
key: "highway",
|
|
104
|
+
value: "escape",
|
|
105
|
+
info: "For runaway truck ramps, runaway truck lanes, emergency escape ramps, or truck arrester beds. It enables vehicles with braking failure to safely stop.",
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
key: "highway",
|
|
109
|
+
value: "raceway",
|
|
110
|
+
info: "A course or track for (motor) racing",
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
key: "highway",
|
|
114
|
+
value: "road",
|
|
115
|
+
info: "A road/way/street/motorway/etc. of unknown type. It can stand for anything ranging from a footpath to a motorway. This tag should only be used temporarily until the road/way/etc. has been properly surveyed. If you do know the road type, do not use this value, instead use one of the more specific highway=* values.",
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
key: "highway",
|
|
119
|
+
value: "busway",
|
|
120
|
+
info: "A dedicated roadway for bus rapid transit systems",
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
key: "highway",
|
|
124
|
+
value: "footway",
|
|
125
|
+
info: "For designated footpaths; i.e., mainly/exclusively for pedestrians. This includes walking tracks and gravel paths. If bicycles are allowed as well, you can indicate this by adding a bicycle=yes tag. Should not be used for paths where the primary or intended usage is unknown. Use highway=pedestrian for pedestrianised roads in shopping or residential areas and highway=track if it is usable by agricultural or similar vehicles. For ramps (sloped paths without steps), combine this tag with incline=*.",
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
key: "highway",
|
|
129
|
+
value: "bridleway",
|
|
130
|
+
info: "For horse riders. Pedestrians are usually also permitted, cyclists may be permitted depending on local rules/laws. Motor vehicles are forbidden.",
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
key: "highway",
|
|
134
|
+
value: "steps",
|
|
135
|
+
info: "For flights of steps (stairs) on footways. Use with step_count=* to indicate the number of steps",
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
key: "highway",
|
|
139
|
+
value: "corridor",
|
|
140
|
+
info: "For a hallway inside of a building.",
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
key: "highway",
|
|
144
|
+
value: "path",
|
|
145
|
+
info: "A non-specific path. Use highway=footway for paths mainly for walkers, highway=cycleway for one also usable by cyclists, highway=bridleway for ones available to horse riders as well as walkers and highway=track for ones which is passable by agriculture or similar vehicles.",
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
key: "highway",
|
|
149
|
+
value: "via_ferrata",
|
|
150
|
+
info: "A via ferrata is a route equipped with fixed cables, stemples, ladders, and bridges in order to increase ease and security for climbers. These via ferrata require equipment : climbing harness, shock absorber and two short lengths of rope, but do not require a long rope as for climbing.",
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
key: "highway",
|
|
154
|
+
value: "cycleway",
|
|
155
|
+
info: "For designated cycleways. Add foot=*, though it may be avoided if default-access-restrictions do apply.",
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
key: "highway",
|
|
159
|
+
value: "proposed",
|
|
160
|
+
info: "For planned roads, use with proposed=* and a value of the proposed highway value.",
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
key: "highway",
|
|
164
|
+
value: "construction",
|
|
165
|
+
info: "For roads under construction. Use construction=* to hold the value for the completed road.",
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
key: "highway",
|
|
169
|
+
value: "bus_stop",
|
|
170
|
+
info: "A small bus stop. Optionally one may also use public_transport=stop_position for the position where the vehicle stops and public_transport=platform for the place where passengers wait.",
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
key: "highway",
|
|
174
|
+
value: "crossing",
|
|
175
|
+
info: "A.k.a. crosswalk. Pedestrians can cross a street here; e.g., zebra crossing",
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
key: "highway",
|
|
179
|
+
value: "cyclist_waiting_aid",
|
|
180
|
+
info: "Street furniture for cyclists that are intended to make waiting at esp. traffic lights more comfortable.",
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
key: "highway",
|
|
184
|
+
value: "elevator",
|
|
185
|
+
info: "An elevator or lift, used to travel vertically, providing passenger and freight access between pathways at different floor levels.",
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
key: "highway",
|
|
189
|
+
value: "emergency_bay",
|
|
190
|
+
info: "An area beside a highway where you can safely stop your car in case of breakdown or emergency.",
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
key: "highway",
|
|
194
|
+
value: "emergency_access_point",
|
|
195
|
+
info: "Sign number which can be used to define your current position in case of an emergency. Use with ref=NUMBER_ON_THE_SIGN. See also emergency=access_point",
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
key: "highway",
|
|
199
|
+
value: "give_way",
|
|
200
|
+
info: 'A "give way," or "Yield" sign',
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
key: "highway",
|
|
204
|
+
value: "ladder",
|
|
205
|
+
info: "A vertical or inclined set of steps or rungs intended for climbing or descending of a person with the help of hands.",
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
key: "highway",
|
|
209
|
+
value: "milestone",
|
|
210
|
+
info: "Highway location marker",
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
key: "highway",
|
|
214
|
+
value: "mini_roundabout",
|
|
215
|
+
info: "Similar to roundabouts, but at the center there is either a painted circle or a fully traversable island. In case of an untraversable center island, junction=roundabout should be used.\n\nRendered as anti-clockwise by default direction=anticlockwise. To render clockwise add the tag direction=clockwise.",
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
key: "highway",
|
|
219
|
+
value: "motorway_junction",
|
|
220
|
+
info: "Indicates a junction (UK) or exit (US). ref=* should be set to the exit number or junction identifier. (Some roads – e.g., the A14 – also carry junction numbers, so the tag may be encountered elsewhere despite its name)",
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
key: "highway",
|
|
224
|
+
value: "passing_place",
|
|
225
|
+
info: "The location of a passing space",
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
key: "highway",
|
|
229
|
+
value: "platform",
|
|
230
|
+
info: "A platform at a bus stop or station.",
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
key: "highway",
|
|
234
|
+
value: "rest_area",
|
|
235
|
+
info: "Place where drivers can leave the road to rest, but not refuel.",
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
key: "highway",
|
|
239
|
+
value: "services",
|
|
240
|
+
info: "A service station to get food and eat something, often found at motorways",
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
key: "highway",
|
|
244
|
+
value: "speed_camera",
|
|
245
|
+
info: "A fixed road-side or overhead speed camera.",
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
key: "highway",
|
|
249
|
+
value: "stop",
|
|
250
|
+
info: "A stop sign",
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
key: "highway",
|
|
254
|
+
value: "street_lamp",
|
|
255
|
+
info: "A street light, lamppost, street lamp, light standard, or lamp standard is a raised source of light on the edge of a road, which is turned on or lit at a certain time every night",
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
key: "highway",
|
|
259
|
+
value: "toll_gantry",
|
|
260
|
+
info: "A toll gantry is a gantry suspended over a way, usually a motorway, as part of a system of electronic toll collection. For a toll booth with any kind of barrier or booth see: barrier=toll_booth",
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
key: "highway",
|
|
264
|
+
value: "traffic_mirror",
|
|
265
|
+
info: "Mirror that reflects the traffic on one road when direct view is blocked.",
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
key: "highway",
|
|
269
|
+
value: "traffic_signals",
|
|
270
|
+
info: "Lights that control the traffic",
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
key: "highway",
|
|
274
|
+
value: "trailhead",
|
|
275
|
+
info: "Designated place to start on a trail or route",
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
key: "highway",
|
|
279
|
+
value: "turning_circle",
|
|
280
|
+
info: "A turning circle is a rounded, widened area usually, but not necessarily, at the end of a road to facilitate easier turning of a vehicle. Also known as a cul de sac.",
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
key: "highway",
|
|
284
|
+
value: "turning_loop",
|
|
285
|
+
info: "A widened area of a highway with a non-traversable island for turning around, often circular and at the end of a road.",
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
key: "highway",
|
|
289
|
+
value: "User Defined",
|
|
290
|
+
info: "All commonly used values according to Taginfo",
|
|
291
|
+
},
|
|
292
|
+
];
|
|
293
|
+
|
|
294
|
+
const amenities = [
|
|
295
|
+
{
|
|
296
|
+
key: "amenity",
|
|
297
|
+
value: "bar",
|
|
298
|
+
info: "Bar is a purpose-built commercial establishment that sells alcoholic drinks to be consumed on the premises. They are characterised by a noisy and vibrant atmosphere, similar to a party and usually don't sell food. See also the description of the tags amenity=pub;bar;restaurant for a distinction between these.",
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
key: "amenity",
|
|
302
|
+
value: "biergarten",
|
|
303
|
+
info: "Biergarten or beer garden is an open-air area where alcoholic beverages along with food is prepared and served. See also the description of the tags amenity=pub;bar;restaurant. A biergarten can commonly be found attached to a beer hall, pub, bar, or restaurant. In this case, you can use biergarten=yes additional to amenity=pub;bar;restaurant.",
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
key: "amenity",
|
|
307
|
+
value: "cafe",
|
|
308
|
+
info: "Cafe is generally an informal place that offers casual meals and beverages; typically, the focus is on coffee or tea. Also known as a coffeehouse/shop, bistro or sidewalk cafe. The kind of food served may be mapped with the tags cuisine=* and diet:*=*. See also the tags amenity=restaurant;bar;fast_food.",
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
key: "amenity",
|
|
312
|
+
value: "fast_food",
|
|
313
|
+
info: "Fast food restaurant (see also amenity=restaurant). The kind of food served can be tagged with cuisine=* and diet:*=*.",
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
key: "amenity",
|
|
317
|
+
value: "food_court",
|
|
318
|
+
info: "An area with several different restaurant food counters and a shared eating area. Commonly found in malls, airports, etc.",
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
key: "amenity",
|
|
322
|
+
value: "ice_cream",
|
|
323
|
+
info: "Ice cream shop or ice cream parlour. A place that sells ice cream and frozen yoghurt over the counter",
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
key: "amenity",
|
|
327
|
+
value: "pub",
|
|
328
|
+
info: "A place selling beer and other alcoholic drinks; may also provide food or accommodation (UK). See description of amenity=bar and amenity=pub for distinction between bar and pub",
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
key: "amenity",
|
|
332
|
+
value: "restaurant",
|
|
333
|
+
info: "Restaurant (not fast food, see amenity=fast_food). The kind of food served can be tagged with cuisine=* and diet:*=*.",
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
key: "amenity",
|
|
337
|
+
value: "college",
|
|
338
|
+
info: "Campus or buildings of an institute of Further Education (aka continuing education)",
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
key: "amenity",
|
|
342
|
+
value: "dancing_school",
|
|
343
|
+
info: "A dancing school or dance studio",
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
key: "amenity",
|
|
347
|
+
value: "driving_school",
|
|
348
|
+
info: "Driving School which offers motor vehicle driving lessons",
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
key: "amenity",
|
|
352
|
+
value: "first_aid_school",
|
|
353
|
+
info: "A place where people can go for first aid courses.",
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
key: "amenity",
|
|
357
|
+
value: "kindergarten",
|
|
358
|
+
info: "For children too young for a regular school (also known as preschool, playschool or nursery school), in some countries including afternoon supervision of primary school children.",
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
key: "amenity",
|
|
362
|
+
value: "language_school",
|
|
363
|
+
info: "Language School: an educational institution where one studies a foreign language.",
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
key: "amenity",
|
|
367
|
+
value: "library",
|
|
368
|
+
info: "A public library (municipal, university, …) to borrow books from.",
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
key: "amenity",
|
|
372
|
+
value: "surf_school",
|
|
373
|
+
info: "A surf school is an establishment that teaches surfing.",
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
key: "amenity",
|
|
377
|
+
value: "toy_library",
|
|
378
|
+
info: "A place to borrow games and toys, or play with them on site.",
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
key: "amenity",
|
|
382
|
+
value: "research_institute",
|
|
383
|
+
info: "An establishment endowed for doing research.",
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
key: "amenity",
|
|
387
|
+
value: "training",
|
|
388
|
+
info: "Public place where you can get training.",
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
key: "amenity",
|
|
392
|
+
value: "music_school",
|
|
393
|
+
info: "A music school, an educational institution specialized in the study, training, and research of music.",
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
key: "amenity",
|
|
397
|
+
value: "school",
|
|
398
|
+
info: "School and grounds - primary, middle and seconday schools",
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
key: "amenity",
|
|
402
|
+
value: "traffic_park",
|
|
403
|
+
info: "Juvenile traffic schools",
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
key: "amenity",
|
|
407
|
+
value: "university",
|
|
408
|
+
info: "An university campus: an institute of higher education",
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
key: "amenity",
|
|
412
|
+
value: "bicycle_parking",
|
|
413
|
+
info: "Parking for bicycles",
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
key: "amenity",
|
|
417
|
+
value: "bicycle_repair_station",
|
|
418
|
+
info: "General tools for self-service bicycle repairs, usually on the roadside; no service",
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
key: "amenity",
|
|
422
|
+
value: "bicycle_rental",
|
|
423
|
+
info: "Rent a bicycle",
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
key: "amenity",
|
|
427
|
+
value: "bicycle_wash",
|
|
428
|
+
info: "Clean a bicycle",
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
key: "amenity",
|
|
432
|
+
value: "boat_rental",
|
|
433
|
+
info: "Rent a Boat",
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
key: "amenity",
|
|
437
|
+
value: "boat_sharing",
|
|
438
|
+
info: "Share a Boat",
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
key: "amenity",
|
|
442
|
+
value: "bus_station",
|
|
443
|
+
info: "May also be tagged as public_transport=station.",
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
key: "amenity",
|
|
447
|
+
value: "car_rental",
|
|
448
|
+
info: "Rent a car",
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
key: "amenity",
|
|
452
|
+
value: "car_sharing",
|
|
453
|
+
info: "Share a car",
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
key: "amenity",
|
|
457
|
+
value: "car_wash",
|
|
458
|
+
info: "Wash a car",
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
key: "amenity",
|
|
462
|
+
value: "compressed_air",
|
|
463
|
+
info: "A device to inflate tires/tyres (e.g. motorcar, bicycle)",
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
key: "amenity",
|
|
467
|
+
value: "vehicle_inspection",
|
|
468
|
+
info: "Government vehicle inspection",
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
key: "amenity",
|
|
472
|
+
value: "charging_station",
|
|
473
|
+
info: "Charging facility for electric vehicles",
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
key: "amenity",
|
|
477
|
+
value: "driver_training",
|
|
478
|
+
info: "A place for driving training on a closed course",
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
key: "amenity",
|
|
482
|
+
value: "ferry_terminal",
|
|
483
|
+
info: "Ferry terminal/stop. A place where people/cars/etc. can board and leave a ferry.",
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
key: "amenity",
|
|
487
|
+
value: "fuel",
|
|
488
|
+
info: "Petrol station; gas station; marine fuel; … Streets to petrol stations are often tagged highway=service.",
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
key: "amenity",
|
|
492
|
+
value: "grit_bin",
|
|
493
|
+
info: "A container that holds grit or a mixture of salt and grit.",
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
key: "amenity",
|
|
497
|
+
value: "motorcycle_parking",
|
|
498
|
+
info: "Parking for motorcycles",
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
key: "amenity",
|
|
502
|
+
value: "parking",
|
|
503
|
+
info: "Car park. Nodes and areas (without access tag) will get a parking symbol. Areas will be coloured. Streets on car parking are often tagged highway=service and service=parking_aisle.",
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
key: "amenity",
|
|
507
|
+
value: "parking_entrance",
|
|
508
|
+
info: "An entrance or exit to an underground or multi-storey parking facility. Group multiple parking entrances together with a relation using the tags type=site and site=parking. Do not mix with amenity=parking.",
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
key: "amenity",
|
|
512
|
+
value: "parking_space",
|
|
513
|
+
info: "A single parking space. Group multiple parking spaces together with a relation using the tags type=site and site=parking. Do not mix with amenity=parking.",
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
key: "amenity",
|
|
517
|
+
value: "taxi",
|
|
518
|
+
info: "A place where taxis wait for passengers.",
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
key: "amenity",
|
|
522
|
+
value: "weighbridge",
|
|
523
|
+
info: "A large weight scale to weigh vehicles and goods",
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
key: "amenity",
|
|
527
|
+
value: "atm",
|
|
528
|
+
info: "ATM or cash point: a device that provides the clients of a financial institution with access to financial transactions.",
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
key: "amenity",
|
|
532
|
+
value: "payment_terminal",
|
|
533
|
+
info: "Self-service payment kiosk/terminal",
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
key: "amenity",
|
|
537
|
+
value: "bank",
|
|
538
|
+
info: "Bank or credit union: a financial establishment where customers can deposit and withdraw money, take loans, make investments and transfer funds.",
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
key: "amenity",
|
|
542
|
+
value: "bureau_de_change",
|
|
543
|
+
info: "Bureau de change, money changer, currency exchange, Wechsel, cambio – a place to change foreign bank notes and travellers cheques.",
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
key: "amenity",
|
|
547
|
+
value: "money_transfer",
|
|
548
|
+
info: "A place that offers money transfers, especially cash to cash",
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
key: "amenity",
|
|
552
|
+
value: "payment_centre",
|
|
553
|
+
info: "A non-bank place, where people can pay bills of public and private services and taxes.",
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
key: "amenity",
|
|
557
|
+
value: "baby_hatch",
|
|
558
|
+
info: "A place where a baby can be, out of necessity, anonymously left to be safely cared for and perhaps adopted.",
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
key: "amenity",
|
|
562
|
+
value: "clinic",
|
|
563
|
+
info: "A medium-sized medical facility or health centre.",
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
key: "amenity",
|
|
567
|
+
value: "dentist",
|
|
568
|
+
info: "A dentist practice / surgery.",
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
key: "amenity",
|
|
572
|
+
value: "doctors",
|
|
573
|
+
info: "A doctor's practice / surgery.",
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
key: "amenity",
|
|
577
|
+
value: "hospital",
|
|
578
|
+
info: "A hospital providing in-patient medical treatment. Often used in conjunction with emergency=* to note whether the medical centre has emergency facilities (A&E (brit.) or ER (am.))",
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
key: "amenity",
|
|
582
|
+
value: "nursing_home",
|
|
583
|
+
info: "Discouraged tag for a home for disabled or elderly persons who need permanent care. Use amenity=social_facility + social_facility=nursing_home now.",
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
key: "amenity",
|
|
587
|
+
value: "pharmacy",
|
|
588
|
+
info: "Pharmacy: a shop where a pharmacist sells medications\ndispensing=yes/no - availability of prescription-only medications",
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
key: "amenity",
|
|
592
|
+
value: "social_facility",
|
|
593
|
+
info: "A facility that provides social services: group & nursing homes, workshops for the disabled, homeless shelters, etc.",
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
key: "amenity",
|
|
597
|
+
value: "veterinary",
|
|
598
|
+
info: "A place where a veterinary surgeon, also known as a veterinarian or vet, practices.",
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
key: "amenity",
|
|
602
|
+
value: "arts_centre",
|
|
603
|
+
info: "A venue where a variety of arts are performed or conducted",
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
key: "amenity",
|
|
607
|
+
value: "brothel",
|
|
608
|
+
info: "An establishment specifically dedicated to prostitution",
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
key: "amenity",
|
|
612
|
+
value: "casino",
|
|
613
|
+
info: "A gambling venue with at least one table game(e.g. roulette, blackjack) that takes bets on sporting and other events at agreed upon odds.",
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
key: "amenity",
|
|
617
|
+
value: "cinema",
|
|
618
|
+
info: "A place where films are shown (US: movie theater)",
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
key: "amenity",
|
|
622
|
+
value: "community_centre",
|
|
623
|
+
info: "A place mostly used for local events, festivities and group activities; including special interest and special age groups. .",
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
key: "amenity",
|
|
627
|
+
value: "conference_centre",
|
|
628
|
+
info: "A large building that is used to hold a convention",
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
key: "amenity",
|
|
632
|
+
value: "events_venue",
|
|
633
|
+
info: "A building specifically used for organising events",
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
key: "amenity",
|
|
637
|
+
value: "exhibition_centre",
|
|
638
|
+
info: "An exhibition centre",
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
key: "amenity",
|
|
642
|
+
value: "fountain",
|
|
643
|
+
info: "A fountain for cultural / decorational / recreational purposes.",
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
key: "amenity",
|
|
647
|
+
value: "gambling",
|
|
648
|
+
info: "A place for gambling, not being a shop=bookmaker, shop=lottery, amenity=casino, or leisure=adult_gaming_centre.\n\nGames that are covered by this definition include bingo and pachinko.",
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
key: "amenity",
|
|
652
|
+
value: "love_hotel",
|
|
653
|
+
info: "A love hotel is a type of short-stay hotel operated primarily for the purpose of allowing guests privacy for sexual activities.",
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
key: "amenity",
|
|
657
|
+
value: "music_venue",
|
|
658
|
+
info: "An indoor place to hear contemporary live music.",
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
key: "amenity",
|
|
662
|
+
value: "nightclub",
|
|
663
|
+
info: 'A place to drink and dance (nightclub). The German word is "Disco" or "Discothek". Please don\'t confuse this with the German "Nachtclub" which is most likely amenity=stripclub.',
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
key: "amenity",
|
|
667
|
+
value: "planetarium",
|
|
668
|
+
info: "A planetarium.",
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
key: "amenity",
|
|
672
|
+
value: "public_bookcase",
|
|
673
|
+
info: "A street furniture containing books. Take one or leave one.",
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
key: "amenity",
|
|
677
|
+
value: "social_centre",
|
|
678
|
+
info: "A place for free and not-for-profit activities.",
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
key: "amenity",
|
|
682
|
+
value: "stage",
|
|
683
|
+
info: "A raised platform for performers.",
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
key: "amenity",
|
|
687
|
+
value: "stripclub",
|
|
688
|
+
info: "A place that offers striptease or lapdancing (for sexual services use amenity=brothel).",
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
key: "amenity",
|
|
692
|
+
value: "studio",
|
|
693
|
+
info: "TV radio or recording studio",
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
key: "amenity",
|
|
697
|
+
value: "swingerclub",
|
|
698
|
+
info: "A club where people meet to have a party and group sex.",
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
key: "amenity",
|
|
702
|
+
value: "theatre",
|
|
703
|
+
info: "A theatre or opera house where live performances occur, such as plays, musicals and formal concerts. Use amenity=cinema for movie theaters.",
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
key: "amenity",
|
|
707
|
+
value: "courthouse",
|
|
708
|
+
info: "A building home to a court of law, where justice is dispensed",
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
key: "amenity",
|
|
712
|
+
value: "fire_station",
|
|
713
|
+
info: "A station of a fire brigade",
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
key: "amenity",
|
|
717
|
+
value: "police",
|
|
718
|
+
info: "A police station where police officers patrol from and that is a first point of contact for civilians",
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
key: "amenity",
|
|
722
|
+
value: "post_box",
|
|
723
|
+
info: "A box for the reception of mail. Alternative mail-carriers can be tagged via operator=*",
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
key: "amenity",
|
|
727
|
+
value: "post_depot",
|
|
728
|
+
info: "Post depot or delivery office, where letters and parcels are collected and sorted prior to delivery.",
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
key: "amenity",
|
|
732
|
+
value: "post_office",
|
|
733
|
+
info: "Post office building with postal services",
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
key: "amenity",
|
|
737
|
+
value: "prison",
|
|
738
|
+
info: "A prison or jail where people are incarcerated before trial or after conviction",
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
key: "amenity",
|
|
742
|
+
value: "ranger_station",
|
|
743
|
+
info: "National Park visitor headquarters: official park visitor facility with police, visitor information, permit services, etc",
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
key: "amenity",
|
|
747
|
+
value: "townhall",
|
|
748
|
+
info: "Building where the administration of a village, town or city may be located, or just a community meeting place",
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
key: "amenity",
|
|
752
|
+
value: "bbq",
|
|
753
|
+
info: "BBQ or Barbecue is a permanently built grill for cooking food, which is most typically used outdoors by the public. For example these may be found in city parks or at beaches. Use the tag fuel=* to specify the source of heating, such as fuel=wood;electric;charcoal. For mapping nearby table and chairs, see also the tag tourism=picnic_site. For mapping campfires and firepits, instead use the tag leisure=firepit.",
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
key: "amenity",
|
|
757
|
+
value: "bench",
|
|
758
|
+
info: "A bench to sit down and relax a bit",
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
key: "amenity",
|
|
762
|
+
value: "dog_toilet",
|
|
763
|
+
info: "Area designated for dogs to urinate and excrete.",
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
key: "amenity",
|
|
767
|
+
value: "dressing_room",
|
|
768
|
+
info: "Area designated for changing clothes.",
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
key: "amenity",
|
|
772
|
+
value: "drinking_water",
|
|
773
|
+
info: "Drinking water is a place where humans can obtain potable water for consumption. Typically, the water is used for only drinking. Also known as a drinking fountain or bubbler.",
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
key: "amenity",
|
|
777
|
+
value: "give_box",
|
|
778
|
+
info: "A small facility where people drop off and pick up various types of items in the sense of free sharing and reuse.",
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
key: "amenity",
|
|
782
|
+
value: "mailroom",
|
|
783
|
+
info: "A mailroom for receiving packages or letters.",
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
key: "amenity",
|
|
787
|
+
value: "parcel_locker",
|
|
788
|
+
info: "Machine for picking up and sending parcels",
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
key: "amenity",
|
|
792
|
+
value: "shelter",
|
|
793
|
+
info: "A small shelter against bad weather conditions. To additionally describe the kind of shelter use shelter_type=*.",
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
key: "amenity",
|
|
797
|
+
value: "shower",
|
|
798
|
+
info: "Public shower.",
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
key: "amenity",
|
|
802
|
+
value: "telephone",
|
|
803
|
+
info: "Public telephone",
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
key: "amenity",
|
|
807
|
+
value: "toilets",
|
|
808
|
+
info: "Public toilets (might require a fee)",
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
key: "amenity",
|
|
812
|
+
value: "water_point",
|
|
813
|
+
info: "Place where you can get large amounts of drinking water",
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
key: "amenity",
|
|
817
|
+
value: "watering_place",
|
|
818
|
+
info: "Place where water is contained and animals can drink",
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
key: "amenity",
|
|
822
|
+
value: "sanitary_dump_station",
|
|
823
|
+
info: "A place for depositing human waste from a toilet holding tank.",
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
key: "amenity",
|
|
827
|
+
value: "recycling",
|
|
828
|
+
info: "Recycling facilities (bottle banks, etc.). Combine with recycling_type=container for containers or recycling_type=centre for recycling centres.",
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
key: "amenity",
|
|
832
|
+
value: "waste_basket",
|
|
833
|
+
info: "A single small container for depositing garbage that is easily accessible for pedestrians.",
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
key: "amenity",
|
|
837
|
+
value: "waste_disposal",
|
|
838
|
+
info: "A medium or large disposal bin, typically for bagged up household or industrial waste.",
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
key: "amenity",
|
|
842
|
+
value: "waste_transfer_station",
|
|
843
|
+
info: "A waste transfer station is a location that accepts, consolidates and transfers waste in bulk.",
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
key: "amenity",
|
|
847
|
+
value: "animal_boarding",
|
|
848
|
+
info: "A facility where you, paying a fee, can bring your animal for a limited period of time (e.g. for holidays)",
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
key: "amenity",
|
|
852
|
+
value: "animal_breeding",
|
|
853
|
+
info: "A facility where animals are bred, usually to sell them",
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
key: "amenity",
|
|
857
|
+
value: "animal_shelter",
|
|
858
|
+
info: "A shelter that recovers animals in trouble",
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
key: "amenity",
|
|
862
|
+
value: "animal_training",
|
|
863
|
+
info: "A facility used for non-competitive animal training",
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
key: "amenity",
|
|
867
|
+
value: "baking_oven",
|
|
868
|
+
info: "An oven used for baking bread and similar, for example inside a building=bakehouse.",
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
key: "amenity",
|
|
872
|
+
value: "clock",
|
|
873
|
+
info: "A public visible clock",
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
key: "amenity",
|
|
877
|
+
value: "crematorium",
|
|
878
|
+
info: "A place where dead human bodies are burnt",
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
key: "amenity",
|
|
882
|
+
value: "dive_centre",
|
|
883
|
+
info: "A dive center is the base location where sports divers usually start scuba diving or make dive guided trips at new locations.",
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
key: "amenity",
|
|
887
|
+
value: "funeral_hall",
|
|
888
|
+
info: "A place for holding a funeral ceremony, other than a place of worship.",
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
key: "amenity",
|
|
892
|
+
value: "grave_yard",
|
|
893
|
+
info: "A (smaller) place of burial, often you'll find a church nearby. Large places should be landuse=cemetery instead.",
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
key: "amenity",
|
|
897
|
+
value: "hunting_stand",
|
|
898
|
+
info: "A hunting stand: an open or enclosed platform used by hunters to place themselves at an elevated height above the terrain",
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
key: "amenity",
|
|
902
|
+
value: "internet_cafe",
|
|
903
|
+
info: "A place whose principal role is providing internet services to the public.",
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
key: "amenity",
|
|
907
|
+
value: "kitchen",
|
|
908
|
+
info: "A public kitchen in a facility to use by everyone or customers",
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
key: "amenity",
|
|
912
|
+
value: "kneipp_water_cure",
|
|
913
|
+
info: "Outdoor foot bath facility. Usually this is a pool with cold water and handrail. Popular in German speaking countries.",
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
key: "amenity",
|
|
917
|
+
value: "lounger",
|
|
918
|
+
info: "An object for people to lie down.",
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
key: "amenity",
|
|
922
|
+
value: "marketplace",
|
|
923
|
+
info: "A marketplace where goods and services are traded daily or weekly.",
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
key: "amenity",
|
|
927
|
+
value: "monastery",
|
|
928
|
+
info: "Monastery is the location of a monastery or a building in which monks and nuns live.",
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
key: "amenity",
|
|
932
|
+
value: "mortuary",
|
|
933
|
+
info: "A morgue or funeral home, used for the storage of human corpses.",
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
key: "amenity",
|
|
937
|
+
value: "photo_booth",
|
|
938
|
+
info: "A stand to create instant photos.",
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
key: "amenity",
|
|
942
|
+
value: "place_of_mourning",
|
|
943
|
+
info: "A room or building where families and friends can come, before the funeral, and view the body of the person who has died.",
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
key: "amenity",
|
|
947
|
+
value: "place_of_worship",
|
|
948
|
+
info: "A church, mosque, or temple, etc. Note that you also need religion=*, usually denomination=* and preferably name=* as well as amenity=place_of_worship. See the article for details.",
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
key: "amenity",
|
|
952
|
+
value: "public_bath",
|
|
953
|
+
info: "A location where the public may bathe in common, etc. japanese onsen, turkish bath, hot spring",
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
key: "amenity",
|
|
957
|
+
value: "public_building",
|
|
958
|
+
info: "A generic public building. Don't use! See office=government.",
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
key: "amenity",
|
|
962
|
+
value: "refugee_site",
|
|
963
|
+
info: "A human settlement sheltering refugees or internally displaced persons",
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
key: "amenity",
|
|
967
|
+
value: "vending_machine",
|
|
968
|
+
info: "A machine selling goods – food, tickets, newspapers, etc. Add type of goods using vending=*",
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
key: "amenity",
|
|
972
|
+
value: "user defined",
|
|
973
|
+
info: "All commonly used values according to Taginfo",
|
|
974
|
+
},
|
|
975
|
+
];
|
|
976
|
+
|
|
977
|
+
const buildings = [
|
|
978
|
+
{
|
|
979
|
+
key: "building",
|
|
980
|
+
value: "apartments",
|
|
981
|
+
info: "",
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
key: "building",
|
|
985
|
+
value: "barracks",
|
|
986
|
+
info: "",
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
key: "building",
|
|
990
|
+
value: "bungalow",
|
|
991
|
+
info: "",
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
key: "building",
|
|
995
|
+
value: "cabin",
|
|
996
|
+
info: "",
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
key: "building",
|
|
1000
|
+
value: "detached",
|
|
1001
|
+
info: "",
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
key: "building",
|
|
1005
|
+
value: "dormitory",
|
|
1006
|
+
info: "",
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
key: "building",
|
|
1010
|
+
value: "farm",
|
|
1011
|
+
info: "",
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
key: "building",
|
|
1015
|
+
value: "ger",
|
|
1016
|
+
info: "",
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
key: "building",
|
|
1020
|
+
value: "hotel",
|
|
1021
|
+
info: "",
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
key: "building",
|
|
1025
|
+
value: "house",
|
|
1026
|
+
info: "",
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
key: "building",
|
|
1030
|
+
value: "houseboat",
|
|
1031
|
+
info: "",
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
key: "building",
|
|
1035
|
+
value: "residential",
|
|
1036
|
+
info: "",
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
key: "building",
|
|
1040
|
+
value: "semidetached_house",
|
|
1041
|
+
info: "",
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
key: "building",
|
|
1045
|
+
value: "static_caravan",
|
|
1046
|
+
info: "",
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
key: "building",
|
|
1050
|
+
value: "stilt_house",
|
|
1051
|
+
info: "",
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
key: "building",
|
|
1055
|
+
value: "terrace",
|
|
1056
|
+
info: "",
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
key: "building",
|
|
1060
|
+
value: "tree_house",
|
|
1061
|
+
info: "",
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
key: "building",
|
|
1065
|
+
value: "trullo",
|
|
1066
|
+
info: "",
|
|
1067
|
+
},
|
|
1068
|
+
{
|
|
1069
|
+
key: "building",
|
|
1070
|
+
value: "commercial",
|
|
1071
|
+
info: "",
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
key: "building",
|
|
1075
|
+
value: "industrial",
|
|
1076
|
+
info: "",
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
key: "building",
|
|
1080
|
+
value: "kiosk",
|
|
1081
|
+
info: "",
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
key: "building",
|
|
1085
|
+
value: "office",
|
|
1086
|
+
info: "",
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
key: "building",
|
|
1090
|
+
value: "retail",
|
|
1091
|
+
info: "",
|
|
1092
|
+
},
|
|
1093
|
+
{
|
|
1094
|
+
key: "building",
|
|
1095
|
+
value: "supermarket",
|
|
1096
|
+
info: "",
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
key: "building",
|
|
1100
|
+
value: "warehouse",
|
|
1101
|
+
info: "",
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
key: "building",
|
|
1105
|
+
value: "religious",
|
|
1106
|
+
info: "",
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
key: "building",
|
|
1110
|
+
value: "cathedral",
|
|
1111
|
+
info: "",
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
key: "building",
|
|
1115
|
+
value: "chapel",
|
|
1116
|
+
info: "",
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
key: "building",
|
|
1120
|
+
value: "church",
|
|
1121
|
+
info: "",
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
key: "building",
|
|
1125
|
+
value: "kingdom_hall",
|
|
1126
|
+
info: "",
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
key: "building",
|
|
1130
|
+
value: "monastery",
|
|
1131
|
+
info: "",
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
key: "building",
|
|
1135
|
+
value: "mosque",
|
|
1136
|
+
info: "",
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
key: "building",
|
|
1140
|
+
value: "presbytery",
|
|
1141
|
+
info: "",
|
|
1142
|
+
},
|
|
1143
|
+
{
|
|
1144
|
+
key: "building",
|
|
1145
|
+
value: "shrine",
|
|
1146
|
+
info: "",
|
|
1147
|
+
},
|
|
1148
|
+
{
|
|
1149
|
+
key: "building",
|
|
1150
|
+
value: "synagogue",
|
|
1151
|
+
info: "",
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
key: "building",
|
|
1155
|
+
value: "temple",
|
|
1156
|
+
info: "",
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
key: "building",
|
|
1160
|
+
value: "bakehouse",
|
|
1161
|
+
info: "",
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
key: "building",
|
|
1165
|
+
value: "bridge",
|
|
1166
|
+
info: "",
|
|
1167
|
+
},
|
|
1168
|
+
{
|
|
1169
|
+
key: "building",
|
|
1170
|
+
value: "civic",
|
|
1171
|
+
info: "",
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
key: "building",
|
|
1175
|
+
value: "college",
|
|
1176
|
+
info: "",
|
|
1177
|
+
},
|
|
1178
|
+
{
|
|
1179
|
+
key: "building",
|
|
1180
|
+
value: "fire_station",
|
|
1181
|
+
info: "",
|
|
1182
|
+
},
|
|
1183
|
+
{
|
|
1184
|
+
key: "building",
|
|
1185
|
+
value: "government",
|
|
1186
|
+
info: "",
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
key: "building",
|
|
1190
|
+
value: "gatehouse",
|
|
1191
|
+
info: "",
|
|
1192
|
+
},
|
|
1193
|
+
{
|
|
1194
|
+
key: "building",
|
|
1195
|
+
value: "hospital",
|
|
1196
|
+
info: "",
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
key: "building",
|
|
1200
|
+
value: "kindergarten",
|
|
1201
|
+
info: "",
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
key: "building",
|
|
1205
|
+
value: "museum",
|
|
1206
|
+
info: "",
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
key: "building",
|
|
1210
|
+
value: "public",
|
|
1211
|
+
info: "",
|
|
1212
|
+
},
|
|
1213
|
+
{
|
|
1214
|
+
key: "building",
|
|
1215
|
+
value: "school",
|
|
1216
|
+
info: "",
|
|
1217
|
+
},
|
|
1218
|
+
{
|
|
1219
|
+
key: "building",
|
|
1220
|
+
value: "toilets",
|
|
1221
|
+
info: "",
|
|
1222
|
+
},
|
|
1223
|
+
{
|
|
1224
|
+
key: "building",
|
|
1225
|
+
value: "train_station",
|
|
1226
|
+
info: "",
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
key: "building",
|
|
1230
|
+
value: "transportation",
|
|
1231
|
+
info: "",
|
|
1232
|
+
},
|
|
1233
|
+
{
|
|
1234
|
+
key: "building",
|
|
1235
|
+
value: "university",
|
|
1236
|
+
info: "",
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
key: "building",
|
|
1240
|
+
value: "barn",
|
|
1241
|
+
info: "",
|
|
1242
|
+
},
|
|
1243
|
+
{
|
|
1244
|
+
key: "building",
|
|
1245
|
+
value: "conservatory",
|
|
1246
|
+
info: "",
|
|
1247
|
+
},
|
|
1248
|
+
{
|
|
1249
|
+
key: "building",
|
|
1250
|
+
value: "cowshed",
|
|
1251
|
+
info: "",
|
|
1252
|
+
},
|
|
1253
|
+
{
|
|
1254
|
+
key: "building",
|
|
1255
|
+
value: "farm_auxiliary",
|
|
1256
|
+
info: "",
|
|
1257
|
+
},
|
|
1258
|
+
{
|
|
1259
|
+
key: "building",
|
|
1260
|
+
value: "greenhouse",
|
|
1261
|
+
info: "",
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
key: "building",
|
|
1265
|
+
value: "slurry_tank",
|
|
1266
|
+
info: "",
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
key: "building",
|
|
1270
|
+
value: "stable",
|
|
1271
|
+
info: "",
|
|
1272
|
+
},
|
|
1273
|
+
{
|
|
1274
|
+
key: "building",
|
|
1275
|
+
value: "sty",
|
|
1276
|
+
info: "",
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
key: "building",
|
|
1280
|
+
value: "livestock",
|
|
1281
|
+
info: "",
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
key: "building",
|
|
1285
|
+
value: "grandstand",
|
|
1286
|
+
info: "",
|
|
1287
|
+
},
|
|
1288
|
+
{
|
|
1289
|
+
key: "building",
|
|
1290
|
+
value: "pavilion",
|
|
1291
|
+
info: "",
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
key: "building",
|
|
1295
|
+
value: "riding_hall",
|
|
1296
|
+
info: "",
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
key: "building",
|
|
1300
|
+
value: "sports_hall",
|
|
1301
|
+
info: "",
|
|
1302
|
+
},
|
|
1303
|
+
{
|
|
1304
|
+
key: "building",
|
|
1305
|
+
value: "sports_centre",
|
|
1306
|
+
info: "",
|
|
1307
|
+
},
|
|
1308
|
+
{
|
|
1309
|
+
key: "building",
|
|
1310
|
+
value: "stadium",
|
|
1311
|
+
info: "",
|
|
1312
|
+
},
|
|
1313
|
+
{
|
|
1314
|
+
key: "building",
|
|
1315
|
+
value: "allotment_house",
|
|
1316
|
+
info: "",
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
key: "building",
|
|
1320
|
+
value: "boathouse",
|
|
1321
|
+
info: "",
|
|
1322
|
+
},
|
|
1323
|
+
{
|
|
1324
|
+
key: "building",
|
|
1325
|
+
value: "hangar",
|
|
1326
|
+
info: "",
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
key: "building",
|
|
1330
|
+
value: "hut",
|
|
1331
|
+
info: "",
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
key: "building",
|
|
1335
|
+
value: "shed",
|
|
1336
|
+
info: "",
|
|
1337
|
+
},
|
|
1338
|
+
{
|
|
1339
|
+
key: "building",
|
|
1340
|
+
value: "carport",
|
|
1341
|
+
info: "",
|
|
1342
|
+
},
|
|
1343
|
+
{
|
|
1344
|
+
key: "building",
|
|
1345
|
+
value: "garage",
|
|
1346
|
+
info: "",
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
key: "building",
|
|
1350
|
+
value: "garages",
|
|
1351
|
+
info: "",
|
|
1352
|
+
},
|
|
1353
|
+
{
|
|
1354
|
+
key: "building",
|
|
1355
|
+
value: "parking",
|
|
1356
|
+
info: "",
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
key: "building",
|
|
1360
|
+
value: "digester",
|
|
1361
|
+
info: "",
|
|
1362
|
+
},
|
|
1363
|
+
{
|
|
1364
|
+
key: "building",
|
|
1365
|
+
value: "service",
|
|
1366
|
+
info: "",
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
key: "building",
|
|
1370
|
+
value: "tech_cab",
|
|
1371
|
+
info: "",
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
key: "building",
|
|
1375
|
+
value: "transformer_tower",
|
|
1376
|
+
info: "",
|
|
1377
|
+
},
|
|
1378
|
+
{
|
|
1379
|
+
key: "building",
|
|
1380
|
+
value: "water_tower",
|
|
1381
|
+
info: "",
|
|
1382
|
+
},
|
|
1383
|
+
{
|
|
1384
|
+
key: "building",
|
|
1385
|
+
value: "storage_tank",
|
|
1386
|
+
info: "",
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
key: "building",
|
|
1390
|
+
value: "silo",
|
|
1391
|
+
info: "",
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
key: "building",
|
|
1395
|
+
value: "beach_hut",
|
|
1396
|
+
info: "",
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
key: "building",
|
|
1400
|
+
value: "bunker",
|
|
1401
|
+
info: "",
|
|
1402
|
+
},
|
|
1403
|
+
{
|
|
1404
|
+
key: "building",
|
|
1405
|
+
value: "castle",
|
|
1406
|
+
info: "",
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
key: "building",
|
|
1410
|
+
value: "construction",
|
|
1411
|
+
info: "",
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
key: "building",
|
|
1415
|
+
value: "container",
|
|
1416
|
+
info: "",
|
|
1417
|
+
},
|
|
1418
|
+
{
|
|
1419
|
+
key: "building",
|
|
1420
|
+
value: "guardhouse",
|
|
1421
|
+
info: "",
|
|
1422
|
+
},
|
|
1423
|
+
{
|
|
1424
|
+
key: "building",
|
|
1425
|
+
value: "military",
|
|
1426
|
+
info: "",
|
|
1427
|
+
},
|
|
1428
|
+
{
|
|
1429
|
+
key: "building",
|
|
1430
|
+
value: "outbuilding",
|
|
1431
|
+
info: "",
|
|
1432
|
+
},
|
|
1433
|
+
{
|
|
1434
|
+
key: "building",
|
|
1435
|
+
value: "pagoda",
|
|
1436
|
+
info: "",
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
key: "building",
|
|
1440
|
+
value: "quonset_hut",
|
|
1441
|
+
info: "",
|
|
1442
|
+
},
|
|
1443
|
+
{
|
|
1444
|
+
key: "building",
|
|
1445
|
+
value: "roof",
|
|
1446
|
+
info: "",
|
|
1447
|
+
},
|
|
1448
|
+
{
|
|
1449
|
+
key: "building",
|
|
1450
|
+
value: "ruins",
|
|
1451
|
+
info: "",
|
|
1452
|
+
},
|
|
1453
|
+
{
|
|
1454
|
+
key: "building",
|
|
1455
|
+
value: "tent",
|
|
1456
|
+
info: "",
|
|
1457
|
+
},
|
|
1458
|
+
{
|
|
1459
|
+
key: "building",
|
|
1460
|
+
value: "tower",
|
|
1461
|
+
info: "",
|
|
1462
|
+
},
|
|
1463
|
+
{
|
|
1464
|
+
key: "building",
|
|
1465
|
+
value: "windmill",
|
|
1466
|
+
info: "",
|
|
1467
|
+
},
|
|
1468
|
+
{
|
|
1469
|
+
key: "building",
|
|
1470
|
+
value: "yes",
|
|
1471
|
+
info: "",
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
key: "building",
|
|
1475
|
+
value: "user defined",
|
|
1476
|
+
info: "",
|
|
1477
|
+
},
|
|
1478
|
+
];
|
|
1479
|
+
|
|
1480
|
+
const natural = [
|
|
1481
|
+
{
|
|
1482
|
+
key: "natural",
|
|
1483
|
+
value: "fell",
|
|
1484
|
+
info: "Habitat above the tree line covered with grass, dwarf shrubs and mosses.",
|
|
1485
|
+
},
|
|
1486
|
+
{
|
|
1487
|
+
key: "natural",
|
|
1488
|
+
value: "grassland",
|
|
1489
|
+
info: "Areas where the vegetation is dominated by grasses (Poaceae) and other herbaceous (non-woody) plants. For mown/managed grass see landuse=grass, for hay/pasture see landuse=meadow.",
|
|
1490
|
+
},
|
|
1491
|
+
{
|
|
1492
|
+
key: "natural",
|
|
1493
|
+
value: "heath",
|
|
1494
|
+
info: 'A dwarf-shrub habitat, characterised by open, low growing woody vegetation, often dominated by plants of the Ericaceae.\nNote. This is not for parks whose name contains the word "heath".',
|
|
1495
|
+
},
|
|
1496
|
+
{
|
|
1497
|
+
key: "natural",
|
|
1498
|
+
value: "moor",
|
|
1499
|
+
info: "Don't use, see wikipage. Upland areas, characterised by low-growing vegetation on acidic soils.",
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
key: "natural",
|
|
1503
|
+
value: "scrub",
|
|
1504
|
+
info: "Uncultivated land covered with shrubs, bushes or stunted trees.",
|
|
1505
|
+
},
|
|
1506
|
+
{
|
|
1507
|
+
key: "natural",
|
|
1508
|
+
value: "shrubbery",
|
|
1509
|
+
info: "An area of shrubbery that is actively maintained or pruned by humans. A slightly wilder look is also possible",
|
|
1510
|
+
},
|
|
1511
|
+
{
|
|
1512
|
+
key: "natural",
|
|
1513
|
+
value: "tree",
|
|
1514
|
+
info: "A single tree.",
|
|
1515
|
+
},
|
|
1516
|
+
{
|
|
1517
|
+
key: "natural",
|
|
1518
|
+
value: "tree_row",
|
|
1519
|
+
info: "A line of trees.",
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
key: "natural",
|
|
1523
|
+
value: "tree_stump",
|
|
1524
|
+
info: "A tree stump, the remains of a cut down or broken tree.",
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
key: "natural",
|
|
1528
|
+
value: "tundra",
|
|
1529
|
+
info: "Habitat above tree line in alpine and subpolar regions, principally covered with uncultivated grass, low growing shrubs and mosses and sometimes grazed.",
|
|
1530
|
+
},
|
|
1531
|
+
{
|
|
1532
|
+
key: "natural",
|
|
1533
|
+
value: "wood",
|
|
1534
|
+
info: "Tree-covered area (a 'forest' or 'wood'). Also see landuse=forest. For more detail, one can use leaf_type=* and leaf_cycle=*.",
|
|
1535
|
+
},
|
|
1536
|
+
{
|
|
1537
|
+
key: "natural",
|
|
1538
|
+
value: "bay",
|
|
1539
|
+
info: "An area of water mostly surrounded by land but with a level connection to the ocean or a lake.",
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
key: "natural",
|
|
1543
|
+
value: "beach",
|
|
1544
|
+
info: "landform along a body of water which consists of sand, shingle or other loose material",
|
|
1545
|
+
},
|
|
1546
|
+
{
|
|
1547
|
+
key: "natural",
|
|
1548
|
+
value: "blowhole",
|
|
1549
|
+
info: "An opening to a sea cave which has grown landwards resulting in blasts of water from the opening due to the wave action",
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
key: "natural",
|
|
1553
|
+
value: "cape",
|
|
1554
|
+
info: "A piece of elevated land sticking out into the sea or large lake. Includes capes, heads, headlands and (water) promontories.",
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
key: "natural",
|
|
1558
|
+
value: "coastline",
|
|
1559
|
+
info: "The mean high water springs line between the sea and land (with the water on the right side of the way.)",
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
key: "natural",
|
|
1563
|
+
value: "crevasse",
|
|
1564
|
+
info: "A large crack in a glacier",
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
key: "natural",
|
|
1568
|
+
value: "geyser",
|
|
1569
|
+
info: "A spring characterized by intermittent discharge of water ejected turbulently and accompanied by steam.",
|
|
1570
|
+
},
|
|
1571
|
+
{
|
|
1572
|
+
key: "natural",
|
|
1573
|
+
value: "glacier",
|
|
1574
|
+
info: "A permanent body of ice formed naturally from snow that is moving under its own weight.",
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
key: "natural",
|
|
1578
|
+
value: "hot_spring",
|
|
1579
|
+
info: "A spring of geothermally heated groundwater",
|
|
1580
|
+
},
|
|
1581
|
+
{
|
|
1582
|
+
key: "natural",
|
|
1583
|
+
value: "isthmus",
|
|
1584
|
+
info: "A narrow strip of land, bordered by water on both sides and connecting two larger land masses.",
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
key: "natural",
|
|
1588
|
+
value: "mud",
|
|
1589
|
+
info: "Area covered with mud: water saturated fine grained soil without significant plant growth. Also see natural=wetland + wetland=*.",
|
|
1590
|
+
},
|
|
1591
|
+
{
|
|
1592
|
+
key: "natural",
|
|
1593
|
+
value: "peninsula",
|
|
1594
|
+
info: "A piece of land projecting into water from a larger land mass, nearly surrounded by water",
|
|
1595
|
+
},
|
|
1596
|
+
{
|
|
1597
|
+
key: "natural",
|
|
1598
|
+
value: "reef",
|
|
1599
|
+
info: "A feature (rock, sandbar, coral, etc) lying beneath the surface of the water",
|
|
1600
|
+
},
|
|
1601
|
+
{
|
|
1602
|
+
key: "natural",
|
|
1603
|
+
value: "shingle",
|
|
1604
|
+
info: "An accumulation of rounded rock fragments on a beach or riverbed",
|
|
1605
|
+
},
|
|
1606
|
+
{
|
|
1607
|
+
key: "natural",
|
|
1608
|
+
value: "shoal",
|
|
1609
|
+
info: "An area of the sea floor near the sea surface (literally, becomes shallow) and exposed at low tide. See natural=sand as well.",
|
|
1610
|
+
},
|
|
1611
|
+
{
|
|
1612
|
+
key: "natural",
|
|
1613
|
+
value: "spring",
|
|
1614
|
+
info: "A place where ground water flows naturally from the ground (Other languages).",
|
|
1615
|
+
},
|
|
1616
|
+
{
|
|
1617
|
+
key: "natural",
|
|
1618
|
+
value: "strait",
|
|
1619
|
+
info: "A narrow area of water surrounded by land on two sides and by water on two other sides.",
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
key: "natural",
|
|
1623
|
+
value: "water",
|
|
1624
|
+
info: "Any body of water, from natural such as a lake or pond to artificial like moat or canal. Also see waterway=riverbank",
|
|
1625
|
+
},
|
|
1626
|
+
{
|
|
1627
|
+
key: "natural",
|
|
1628
|
+
value: "wetland",
|
|
1629
|
+
info: "A natural area subject to inundation or with waterlogged ground, further specified with wetland=*",
|
|
1630
|
+
},
|
|
1631
|
+
{
|
|
1632
|
+
key: "natural",
|
|
1633
|
+
value: "arch",
|
|
1634
|
+
info: "A rock arch naturally formed by erosion, with an opening underneath.",
|
|
1635
|
+
},
|
|
1636
|
+
{
|
|
1637
|
+
key: "natural",
|
|
1638
|
+
value: "arete",
|
|
1639
|
+
info: "An arête, a thin, almost knife-like, ridge of rock which is typically formed when two glaciers erode parallel U-shaped valleys.",
|
|
1640
|
+
},
|
|
1641
|
+
{
|
|
1642
|
+
key: "natural",
|
|
1643
|
+
value: "bare_rock",
|
|
1644
|
+
info: "An area with sparse/no soil or vegetation, so that the bedrock becomes visible.",
|
|
1645
|
+
},
|
|
1646
|
+
{
|
|
1647
|
+
key: "natural",
|
|
1648
|
+
value: "natural=blockfield",
|
|
1649
|
+
info: "A surface covered with boulders or block-sized rocks, usually the result of volcanic activity or associated with alpine and subpolar climates and ice ages.",
|
|
1650
|
+
},
|
|
1651
|
+
{
|
|
1652
|
+
key: "natural",
|
|
1653
|
+
value: "cave_entrance",
|
|
1654
|
+
info: "The entrance to a cave: a natural underground space large enough for a human to enter.",
|
|
1655
|
+
},
|
|
1656
|
+
{
|
|
1657
|
+
key: "natural",
|
|
1658
|
+
value: "cliff",
|
|
1659
|
+
info: "A vertical or almost vertical natural drop in terrain, usually with a bare rock surface (leave the lower face to the right of the way).",
|
|
1660
|
+
},
|
|
1661
|
+
{
|
|
1662
|
+
key: "natural",
|
|
1663
|
+
value: "dune",
|
|
1664
|
+
info: "A hill of sand formed by wind, covered with no or very little vegetation. See also natural=sand and natural=beach",
|
|
1665
|
+
},
|
|
1666
|
+
{
|
|
1667
|
+
key: "natural",
|
|
1668
|
+
value: "earth_bank",
|
|
1669
|
+
info: "Large erosion gully or steep earth bank",
|
|
1670
|
+
},
|
|
1671
|
+
{
|
|
1672
|
+
key: "natural",
|
|
1673
|
+
value: "fumarole",
|
|
1674
|
+
info: "A fumarole is an opening in a planet's crust, which emits steam and gases",
|
|
1675
|
+
},
|
|
1676
|
+
{
|
|
1677
|
+
key: "natural",
|
|
1678
|
+
value: "gully",
|
|
1679
|
+
info: "Small scale cut in relief created by water erosion",
|
|
1680
|
+
},
|
|
1681
|
+
{
|
|
1682
|
+
key: "natural",
|
|
1683
|
+
value: "hill",
|
|
1684
|
+
info: "A hill.",
|
|
1685
|
+
},
|
|
1686
|
+
{
|
|
1687
|
+
key: "natural",
|
|
1688
|
+
value: "peak",
|
|
1689
|
+
info: "The top (summit) of a hill or mountain.",
|
|
1690
|
+
},
|
|
1691
|
+
{
|
|
1692
|
+
key: "natural",
|
|
1693
|
+
value: "ridge",
|
|
1694
|
+
info: "A mountain or hill linear landform with a continuous elevated crest",
|
|
1695
|
+
},
|
|
1696
|
+
{
|
|
1697
|
+
key: "natural",
|
|
1698
|
+
value: "rock",
|
|
1699
|
+
info: "A notable rock or group of rocks attached to the underlying bedrock.",
|
|
1700
|
+
},
|
|
1701
|
+
{
|
|
1702
|
+
key: "natural",
|
|
1703
|
+
value: "saddle",
|
|
1704
|
+
info: "The lowest point along a ridge or between two mountain tops",
|
|
1705
|
+
},
|
|
1706
|
+
{
|
|
1707
|
+
key: "natural",
|
|
1708
|
+
value: "sand",
|
|
1709
|
+
info: "An area covered by sand with no or very little vegetation. See natural=beach and natural=dune as well.",
|
|
1710
|
+
},
|
|
1711
|
+
{
|
|
1712
|
+
key: "natural",
|
|
1713
|
+
value: "scree",
|
|
1714
|
+
info: "Unconsolidated angular rocks formed by rockfall and weathering from adjacent rockfaces.",
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
key: "natural",
|
|
1718
|
+
value: "sinkhole",
|
|
1719
|
+
info: "A natural depression or hole in the surface topography.",
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
key: "natural",
|
|
1723
|
+
value: "stone",
|
|
1724
|
+
info: "A single notable freestanding rock, which may differ from the composition of the terrain it lies in.; e.g., glacial erratic.",
|
|
1725
|
+
},
|
|
1726
|
+
{
|
|
1727
|
+
key: "natural",
|
|
1728
|
+
value: "valley",
|
|
1729
|
+
info: "A natural depression flanked by ridges or ranges of mountains or hills",
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
key: "natural",
|
|
1733
|
+
value: "volcano",
|
|
1734
|
+
info: "An opening exposed on the earth's surface where volcanic material is emitted.",
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
key: "natural",
|
|
1738
|
+
value: "user defined",
|
|
1739
|
+
info: "All commonly used values according to Taginfo",
|
|
1740
|
+
},
|
|
1741
|
+
];
|
|
1742
|
+
|
|
1743
|
+
const boundaries = [
|
|
1744
|
+
{
|
|
1745
|
+
key: "boundary",
|
|
1746
|
+
value: "aboriginal_lands",
|
|
1747
|
+
info: "A boundary representing official reservation boundaries of recognized aboriginal / indigenous / native peoples.",
|
|
1748
|
+
},
|
|
1749
|
+
{
|
|
1750
|
+
key: "boundary",
|
|
1751
|
+
value: "administrative",
|
|
1752
|
+
info: "An administrative boundary. Subdivisions of areas/territories/jurisdictions recognised by governments or other organisations for administrative purposes. These range from large groups of nation states right down to small administrative districts and suburbs, as indicated by the 'admin_level=*' combo tag.",
|
|
1753
|
+
},
|
|
1754
|
+
{
|
|
1755
|
+
key: "boundary",
|
|
1756
|
+
value: "border_zone",
|
|
1757
|
+
info: "A border zone is an area near the border where special restrictions on movement apply. Usually a permit is required for visiting.",
|
|
1758
|
+
},
|
|
1759
|
+
{
|
|
1760
|
+
key: "boundary",
|
|
1761
|
+
value: "forest",
|
|
1762
|
+
info: "A delimited forest is a land which is predominantly wooded and which is, for this reason, given defined boundaries. It may cover different tree stands, non-wooded areas, highways… but all the area within the boundaries are considered and managed as a single forest.",
|
|
1763
|
+
},
|
|
1764
|
+
{
|
|
1765
|
+
key: "boundary",
|
|
1766
|
+
value: "forest_compartment",
|
|
1767
|
+
info: "A forest compartment is a numbered sub-division within a delimited forest, physically materialized with visible, typically cleared, boundaries.",
|
|
1768
|
+
},
|
|
1769
|
+
{
|
|
1770
|
+
key: "boundary",
|
|
1771
|
+
value: "hazard",
|
|
1772
|
+
info: "A designated hazardous area, with a potential source of damage to health, life, property, or any other interest of value.",
|
|
1773
|
+
},
|
|
1774
|
+
{
|
|
1775
|
+
key: "boundary",
|
|
1776
|
+
value: "maritime",
|
|
1777
|
+
info: "Maritime boundaries which are not administrative boundaries: the Baseline, Contiguous Zone and EEZ (Exclusive Economic Zone).",
|
|
1778
|
+
},
|
|
1779
|
+
{
|
|
1780
|
+
key: "boundary",
|
|
1781
|
+
value: "marker",
|
|
1782
|
+
info: "A boundary marker, border marker, boundary stone, or border stone is a robust physical marker that identifies the start of a land boundary or the change in a boundary, especially a change in direction of a boundary. See also historic=boundary_stone",
|
|
1783
|
+
},
|
|
1784
|
+
{
|
|
1785
|
+
key: "boundary",
|
|
1786
|
+
value: "national_park",
|
|
1787
|
+
info: "Area of outstanding natural beauty, set aside for conservation and for recreation (Other languages).",
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
key: "boundary",
|
|
1791
|
+
value: "place",
|
|
1792
|
+
info: "boundary=place is commonly used to map the boundaries of a place=*, when these boundaries can be defined but these are not administrative boundaries.",
|
|
1793
|
+
},
|
|
1794
|
+
{
|
|
1795
|
+
key: "boundary",
|
|
1796
|
+
value: "political",
|
|
1797
|
+
info: "Electoral boundaries",
|
|
1798
|
+
},
|
|
1799
|
+
{
|
|
1800
|
+
key: "boundary",
|
|
1801
|
+
value: "postal_code",
|
|
1802
|
+
info: "Postal code boundaries",
|
|
1803
|
+
},
|
|
1804
|
+
{
|
|
1805
|
+
key: "boundary",
|
|
1806
|
+
value: "protected_area",
|
|
1807
|
+
info: "Protected areas, such as for national parks, marine protection areas, heritage sites, wilderness, cultural assets and similar.",
|
|
1808
|
+
},
|
|
1809
|
+
{
|
|
1810
|
+
key: "boundary",
|
|
1811
|
+
value: "special_economic_zone",
|
|
1812
|
+
info: "A government-defined area in which business and trade laws are different.",
|
|
1813
|
+
},
|
|
1814
|
+
{
|
|
1815
|
+
key: "boundary",
|
|
1816
|
+
value: "disputed",
|
|
1817
|
+
info: "An area of landed claimed by two or more parties (use with caution). See also Disputed territories.",
|
|
1818
|
+
},
|
|
1819
|
+
{
|
|
1820
|
+
key: "boundary",
|
|
1821
|
+
value: "user defined",
|
|
1822
|
+
info: "All commonly used values according to Taginfo",
|
|
1823
|
+
},
|
|
1824
|
+
];
|
|
1825
|
+
|
|
1826
|
+
export const predefinedOsmQueries = {
|
|
1827
|
+
amenities: {
|
|
1828
|
+
nodeType: `node`,
|
|
1829
|
+
subTypeTag: `amenity`,
|
|
1830
|
+
subTypes: amenities,
|
|
1831
|
+
},
|
|
1832
|
+
roads: {
|
|
1833
|
+
nodeType: "way",
|
|
1834
|
+
subTypeTag: "highway",
|
|
1835
|
+
subTypes: highway,
|
|
1836
|
+
},
|
|
1837
|
+
buildings: {
|
|
1838
|
+
nodeType: `way`,
|
|
1839
|
+
subTypeTag: `building`,
|
|
1840
|
+
subTypes: buildings,
|
|
1841
|
+
},
|
|
1842
|
+
natural: {
|
|
1843
|
+
nodeType: `node`,
|
|
1844
|
+
subTypeTag: `natural`,
|
|
1845
|
+
subTypes: natural,
|
|
1846
|
+
},
|
|
1847
|
+
boundaries: {
|
|
1848
|
+
nodeType: `relation`,
|
|
1849
|
+
subTypeTag: `boundary`,
|
|
1850
|
+
subTypes: boundaries,
|
|
1851
|
+
},
|
|
1852
|
+
country_boundary: `relation["boundary"="administrative"]["admin_level"="2"]`,
|
|
1853
|
+
boundary_3: `relation["boundary"="administrative"]["admin_level"="3"]`,
|
|
1854
|
+
boundary_4: `relation["boundary"="administrative"]["admin_level"="4"]`,
|
|
1855
|
+
boundary_5: `relation["boundary"="administrative"]["admin_level"="5"]`,
|
|
1856
|
+
};
|