@cccsaurora/howler-ui 2.14.0-dev.263 → 2.14.0-dev.265
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/api/action/execute.ts +19 -0
- package/api/action/index.ts +36 -0
- package/api/action/operations.ts +11 -0
- package/api/analytic/comments/index.ts +27 -0
- package/api/analytic/comments/react.ts +14 -0
- package/api/analytic/favourite.ts +14 -0
- package/api/analytic/index.ts +27 -0
- package/api/analytic/notebooks/index.ts +15 -0
- package/api/analytic/owner.ts +11 -0
- package/api/analytic/rules.ts +13 -0
- package/api/auth/apikey.ts +20 -0
- package/api/auth/index.ts +9 -0
- package/api/auth/login.ts +35 -0
- package/api/configs/index.ts +10 -0
- package/api/dossier/hit.ts +10 -0
- package/api/dossier/index.ts +26 -0
- package/api/help.ts +71 -0
- package/api/hit/assign.ts +11 -0
- package/api/hit/comments/index.ts +27 -0
- package/api/hit/comments/react.ts +15 -0
- package/api/hit/index.ts +56 -0
- package/api/hit/labels.ts +16 -0
- package/api/hit/overwrite.ts +11 -0
- package/api/hit/transition.ts +12 -0
- package/api/index.ts +301 -0
- package/api/notebook/environments.ts +14 -0
- package/api/notebook/index.ts +20 -0
- package/api/overview/index.ts +22 -0
- package/api/search/action.ts +12 -0
- package/api/search/analytic.ts +12 -0
- package/api/search/count/hit.ts +11 -0
- package/api/search/count/index.ts +18 -0
- package/api/search/dossier.ts +12 -0
- package/api/search/eql/hit.ts +12 -0
- package/api/search/facet/hit.ts +11 -0
- package/api/search/facet/index.ts +19 -0
- package/api/search/fields/hit.ts +12 -0
- package/api/search/fields/index.ts +29 -0
- package/api/search/fields/user.ts +14 -0
- package/api/search/grouped/hit.ts +15 -0
- package/api/search/grouped/index.ts +34 -0
- package/api/search/grouped/user.ts +30 -0
- package/api/search/histogram/hit.ts +11 -0
- package/api/search/histogram/index.ts +20 -0
- package/api/search/hit.ts +17 -0
- package/api/search/index.ts +63 -0
- package/api/search/overview.ts +12 -0
- package/api/search/sigma/hit.ts +12 -0
- package/api/search/template.ts +12 -0
- package/api/search/user.ts +21 -0
- package/api/search/view.ts +12 -0
- package/api/template/index.ts +22 -0
- package/api/user/avatar/index.ts +10 -0
- package/api/user/groups.ts +12 -0
- package/api/user/index.ts +20 -0
- package/api/user/whoami.ts +11 -0
- package/api/view/favourite.ts +14 -0
- package/api/view/index.ts +25 -0
- package/branding/AppBrand.tsx +161 -0
- package/commons/components/app/AppConfigs.ts +179 -0
- package/commons/components/app/AppConstants.ts +11 -0
- package/commons/components/app/AppContexts.ts +142 -0
- package/commons/components/app/AppDefaults.ts +52 -0
- package/commons/components/app/AppNotificationService.ts +7 -0
- package/commons/components/app/AppProvider.tsx +86 -0
- package/commons/components/app/AppSearchService.ts +33 -0
- package/commons/components/app/AppSkeleton.tsx +321 -0
- package/commons/components/app/AppUserService.ts +21 -0
- package/commons/components/app/hooks/index.ts +18 -0
- package/commons/components/app/hooks/useApp.tsx +6 -0
- package/commons/components/app/hooks/useAppBanner.tsx +7 -0
- package/commons/components/app/hooks/useAppBar.tsx +6 -0
- package/commons/components/app/hooks/useAppBarHeight.tsx +27 -0
- package/commons/components/app/hooks/useAppBarScrollTrigger.tsx +8 -0
- package/commons/components/app/hooks/useAppBreadcrumbs.tsx +6 -0
- package/commons/components/app/hooks/useAppConfigs.tsx +54 -0
- package/commons/components/app/hooks/useAppLanguage.tsx +29 -0
- package/commons/components/app/hooks/useAppLayout.tsx +6 -0
- package/commons/components/app/hooks/useAppLeftNav.tsx +6 -0
- package/commons/components/app/hooks/useAppLogo.tsx +9 -0
- package/commons/components/app/hooks/useAppNotification.tsx +6 -0
- package/commons/components/app/hooks/useAppQuickSearch.tsx +6 -0
- package/commons/components/app/hooks/useAppSearchService.tsx +7 -0
- package/commons/components/app/hooks/useAppSitemap.tsx +84 -0
- package/commons/components/app/hooks/useAppSwitcher.tsx +6 -0
- package/commons/components/app/hooks/useAppTheme.tsx +23 -0
- package/commons/components/app/hooks/useAppUser.tsx +7 -0
- package/commons/components/app/providers/AppBarProvider.tsx +48 -0
- package/commons/components/app/providers/AppBreadcrumbsProvider.tsx +53 -0
- package/commons/components/app/providers/AppLayoutProvider.tsx +114 -0
- package/commons/components/app/providers/AppLeftNavProvider.tsx +30 -0
- package/commons/components/app/providers/AppNotificationProvider.tsx +49 -0
- package/commons/components/app/providers/AppQuickSearchProvider.tsx +32 -0
- package/commons/components/app/providers/AppSearchServiceProvider.tsx +65 -0
- package/commons/components/app/providers/AppSnackbarProvider.tsx +16 -0
- package/commons/components/app/providers/AppSwitcherProvider.tsx +16 -0
- package/commons/components/app/providers/AppUserProvider.tsx +22 -0
- package/commons/components/breadcrumbs/BreadcrumbIcon.tsx +21 -0
- package/commons/components/breadcrumbs/BreadcrumbLastItem.tsx +40 -0
- package/commons/components/breadcrumbs/BreadcrumbLinkItem.tsx +43 -0
- package/commons/components/breadcrumbs/BreadcrumbList.tsx +87 -0
- package/commons/components/breadcrumbs/Breadcrumbs.tsx +40 -0
- package/commons/components/display/AppAvatar.tsx +34 -0
- package/commons/components/display/AppInfoPanel.tsx +30 -0
- package/commons/components/display/AppListEmpty.tsx +5 -0
- package/commons/components/display/AppToc.tsx +160 -0
- package/commons/components/display/hooks/useAppColor.tsx +21 -0
- package/commons/components/leftnav/LeftNavDrawer.tsx +172 -0
- package/commons/components/leftnav/LeftNavGroup.tsx +144 -0
- package/commons/components/leftnav/LeftNavItem.tsx +73 -0
- package/commons/components/notification/FeedModels.ts +163 -0
- package/commons/components/notification/Notification.tsx +152 -0
- package/commons/components/notification/elements/NotificationCloseButton.tsx +14 -0
- package/commons/components/notification/elements/NotificationContainer.tsx +87 -0
- package/commons/components/notification/elements/NotificationEndOfPage.tsx +48 -0
- package/commons/components/notification/elements/NotificationError.tsx +24 -0
- package/commons/components/notification/elements/NotificationHeader.tsx +41 -0
- package/commons/components/notification/elements/NotificationItems.tsx +47 -0
- package/commons/components/notification/elements/NotificationSkeleton.tsx +59 -0
- package/commons/components/notification/elements/NotificationTopNavButton.tsx +27 -0
- package/commons/components/notification/elements/item/NotificationItem.tsx +44 -0
- package/commons/components/notification/elements/item/NotificationItemAuthor.tsx +72 -0
- package/commons/components/notification/elements/item/NotificationItemContent.tsx +29 -0
- package/commons/components/notification/elements/item/NotificationItemDate.tsx +14 -0
- package/commons/components/notification/elements/item/NotificationItemImage.tsx +19 -0
- package/commons/components/notification/elements/item/NotificationItemTag.tsx +18 -0
- package/commons/components/notification/elements/item/NotificationItemTitle.tsx +38 -0
- package/commons/components/notification/index.tsx +2 -0
- package/commons/components/pages/PageCardCentered.tsx +32 -0
- package/commons/components/pages/PageCenter.tsx +46 -0
- package/commons/components/pages/PageContent.tsx +13 -0
- package/commons/components/pages/PageFullScreen.tsx +74 -0
- package/commons/components/pages/PageFullWidth.tsx +30 -0
- package/commons/components/pages/PageHeader.tsx +117 -0
- package/commons/components/pages/hooks/usePageProps.tsx +41 -0
- package/commons/components/search/AppSearch.tsx +256 -0
- package/commons/components/search/AppSearchInput.tsx +104 -0
- package/commons/components/search/AppSearchResult.tsx +66 -0
- package/commons/components/topnav/AppBar.tsx +137 -0
- package/commons/components/topnav/AppName.tsx +53 -0
- package/commons/components/topnav/AppSwitcher.tsx +116 -0
- package/commons/components/topnav/Notifications.tsx +16 -0
- package/commons/components/topnav/ThemeSelection.tsx +143 -0
- package/commons/components/topnav/ThemeSelectionIcon.tsx +39 -0
- package/commons/components/topnav/UserProfile.tsx +196 -0
- package/commons/components/utils/hooks/useClipboard.tsx +31 -0
- package/commons/components/utils/hooks/useEnv.tsx +13 -0
- package/commons/components/utils/hooks/useFullscreenStatus.tsx +47 -0
- package/commons/components/utils/hooks/useGravatar.tsx +13 -0
- package/commons/components/utils/hooks/useLocalStorage.ts +75 -0
- package/commons/components/utils/hooks/useLocalStorageItem.tsx +45 -0
- package/commons/components/utils/hooks/useThemeBuilder.tsx +55 -0
- package/commons/components/utils/keyboard.ts +61 -0
- package/components/app/App.tsx +434 -0
- package/components/app/AppContainer.tsx +19 -0
- package/components/app/drawers/ApiKeyDrawer.tsx +173 -0
- package/components/app/drawers/AppDrawerType.ts +7 -0
- package/components/app/drawers/AssignUserDrawer.tsx +126 -0
- package/components/app/drawers/ViewGroupsDrawer.tsx +24 -0
- package/components/app/hooks/useMatchers.tsx +107 -0
- package/components/app/hooks/useTitle.tsx +77 -0
- package/components/app/providers/AnalyticProvider.tsx +87 -0
- package/components/app/providers/ApiConfigProvider.tsx +31 -0
- package/components/app/providers/AppDrawerProvider.tsx +54 -0
- package/components/app/providers/AvatarProvider.tsx +47 -0
- package/components/app/providers/CustomPluginProvider.tsx +19 -0
- package/components/app/providers/FavouritesProvider.tsx +157 -0
- package/components/app/providers/FieldProvider.tsx +34 -0
- package/components/app/providers/HitProvider.tsx +164 -0
- package/components/app/providers/HitSearchProvider.tsx +248 -0
- package/components/app/providers/LocalStorageProvider.tsx +67 -0
- package/components/app/providers/ModalProvider.tsx +57 -0
- package/components/app/providers/OverviewProvider.tsx +90 -0
- package/components/app/providers/ParameterProvider.tsx +270 -0
- package/components/app/providers/SocketProvider.tsx +329 -0
- package/components/app/providers/UserListProvider.tsx +56 -0
- package/components/app/providers/ViewProvider.tsx +207 -0
- package/components/elements/Comment.tsx +315 -0
- package/components/elements/EditRow.tsx +268 -0
- package/components/elements/PluginChip.tsx +32 -0
- package/components/elements/PluginTypography.tsx +31 -0
- package/components/elements/ThemedEditor.tsx +130 -0
- package/components/elements/UserList.tsx +79 -0
- package/components/elements/addons/buttons/CustomButton.tsx +93 -0
- package/components/elements/addons/buttons/CustomIconButton.tsx +122 -0
- package/components/elements/addons/buttons/index.ts +7 -0
- package/components/elements/addons/layout/FlexOne.tsx +6 -0
- package/components/elements/addons/layout/FlexPort.tsx +39 -0
- package/components/elements/addons/layout/FlexVertical.tsx +28 -0
- package/components/elements/addons/layout/vsbox/VSBox.tsx +52 -0
- package/components/elements/addons/layout/vsbox/VSBoxContent.tsx +13 -0
- package/components/elements/addons/layout/vsbox/VSBoxElement.tsx +60 -0
- package/components/elements/addons/layout/vsbox/VSBoxHeader.tsx +41 -0
- package/components/elements/addons/lists/TuiList.tsx +31 -0
- package/components/elements/addons/lists/TuiListBase.tsx +98 -0
- package/components/elements/addons/lists/TuiListElement.tsx +51 -0
- package/components/elements/addons/lists/TuiListMenu.tsx +61 -0
- package/components/elements/addons/lists/TuiListProvider.tsx +162 -0
- package/components/elements/addons/lists/hooks/useTuiListKeyboard.tsx +60 -0
- package/components/elements/addons/lists/index.tsx +25 -0
- package/components/elements/addons/lists/table/TuiTable.tsx +151 -0
- package/components/elements/addons/lists/table/TuiTableBody.tsx +77 -0
- package/components/elements/addons/lists/table/TuiTableHead.tsx +29 -0
- package/components/elements/addons/lists/table/TuiTableHeader.tsx +15 -0
- package/components/elements/addons/lists/table/TuiTableLayout.ts +53 -0
- package/components/elements/addons/lists/table/index.tsx +24 -0
- package/components/elements/addons/search/SearchPagination.tsx +26 -0
- package/components/elements/addons/search/SearchTotal.tsx +35 -0
- package/components/elements/addons/search/phrase/Phrase.tsx +175 -0
- package/components/elements/addons/search/phrase/PhraseConsumer.ts +35 -0
- package/components/elements/addons/search/phrase/PhraseLexer.ts +167 -0
- package/components/elements/addons/search/phrase/index.ts +86 -0
- package/components/elements/addons/search/phrase/word/WordLexer.ts +10 -0
- package/components/elements/addons/search/phrase/word/WordSuggester.ts +9 -0
- package/components/elements/addons/search/phrase/word/consumers/WhitespaceConsumer.ts +21 -0
- package/components/elements/addons/search/phrase/word/consumers/WordConsumer.ts +21 -0
- package/components/elements/display/ActionButton.tsx +40 -0
- package/components/elements/display/Classification.tsx +29 -0
- package/components/elements/display/DocumentationButton.tsx +46 -0
- package/components/elements/display/DynamicTabs.tsx +52 -0
- package/components/elements/display/HandlebarsMarkdown.tsx +105 -0
- package/components/elements/display/HowlerAvatar.tsx +66 -0
- package/components/elements/display/HowlerAvatarHeader.tsx +37 -0
- package/components/elements/display/HowlerCard.tsx +10 -0
- package/components/elements/display/Image.tsx +43 -0
- package/components/elements/display/ItemManager.tsx +146 -0
- package/components/elements/display/Markdown.tsx +200 -0
- package/components/elements/display/Modal.tsx +44 -0
- package/components/elements/display/Notebook.tsx +7 -0
- package/components/elements/display/QueryResultText.tsx +25 -0
- package/components/elements/display/TextDivider.tsx +48 -0
- package/components/elements/display/TypingIndicator.tsx +41 -0
- package/components/elements/display/UserPageWrapper.tsx +20 -0
- package/components/elements/display/features/DevelopmentBanner.tsx +24 -0
- package/components/elements/display/features/DevelopmentIcon.tsx +24 -0
- package/components/elements/display/handlebars/helpers.tsx +276 -0
- package/components/elements/display/icons/BundleButton.tsx +77 -0
- package/components/elements/display/icons/Iconified.tsx +16 -0
- package/components/elements/display/icons/SocketBadge.tsx +82 -0
- package/components/elements/display/icons/svg/howler-icon-darkmode.svg +1 -0
- package/components/elements/display/icons/svg/howler-icon-lightmode.svg +1 -0
- package/components/elements/display/icons/svg/howler-logo-full.svg +1 -0
- package/components/elements/display/icons/svg/howler-logo.svg +1 -0
- package/components/elements/display/json/JSONViewer.tsx +98 -0
- package/components/elements/display/markdownPlugins/tabs.ts +81 -0
- package/components/elements/display/modals/ConfirmDeleteModal.tsx +32 -0
- package/components/elements/display/modals/ConfirmNotebookModal.tsx +32 -0
- package/components/elements/display/modals/CreateActionModal.tsx +63 -0
- package/components/elements/display/modals/LoginErrorModal.tsx +31 -0
- package/components/elements/display/modals/RationaleModal.tsx +59 -0
- package/components/elements/hit/HitActions.tsx +298 -0
- package/components/elements/hit/HitBanner.tsx +367 -0
- package/components/elements/hit/HitBannerTooltip.tsx +41 -0
- package/components/elements/hit/HitCard.tsx +42 -0
- package/components/elements/hit/HitComments.tsx +372 -0
- package/components/elements/hit/HitDetails.tsx +324 -0
- package/components/elements/hit/HitLabels.tsx +265 -0
- package/components/elements/hit/HitLayout.ts +5 -0
- package/components/elements/hit/HitNotebooks.tsx +264 -0
- package/components/elements/hit/HitOutline.tsx +56 -0
- package/components/elements/hit/HitOverview.tsx +53 -0
- package/components/elements/hit/HitQuickSearch.tsx +111 -0
- package/components/elements/hit/HitRelated.tsx +18 -0
- package/components/elements/hit/HitShortcuts.ts +5 -0
- package/components/elements/hit/HitSummary.tsx +301 -0
- package/components/elements/hit/HitWorklog.tsx +201 -0
- package/components/elements/hit/actions/ButtonActions.tsx +269 -0
- package/components/elements/hit/actions/DropdownActions.tsx +157 -0
- package/components/elements/hit/actions/SharedComponents.tsx +40 -0
- package/components/elements/hit/aggregate/HitGraph.tsx +351 -0
- package/components/elements/hit/elements/Assigned.tsx +71 -0
- package/components/elements/hit/elements/EscalationChip.tsx +26 -0
- package/components/elements/hit/elements/HitTimestamp.tsx +81 -0
- package/components/elements/hit/outlines/DefaultOutline.tsx +107 -0
- package/components/elements/hit/outlines/al/AssemblyLineRules.tsx +130 -0
- package/components/elements/hit/related/PivotLink.tsx +67 -0
- package/components/elements/hit/related/RelatedIcon.tsx +51 -0
- package/components/elements/hit/related/RelatedLink.tsx +43 -0
- package/components/elements/view/ViewTitle.tsx +61 -0
- package/components/hooks/useHitActions.tsx +276 -0
- package/components/hooks/useHitSelection.tsx +102 -0
- package/components/hooks/useMyApi.tsx +64 -0
- package/components/hooks/useMyChart.tsx +164 -0
- package/components/hooks/useMyLocalStorage.ts +20 -0
- package/components/hooks/useMyPreferences.tsx +309 -0
- package/components/hooks/useMySearch.tsx +77 -0
- package/components/hooks/useMySitemap.tsx +248 -0
- package/components/hooks/useMySnackbar.tsx +67 -0
- package/components/hooks/useMyTheme.tsx +34 -0
- package/components/hooks/useMyUser.tsx +39 -0
- package/components/hooks/useMyUserFunctions.tsx +166 -0
- package/components/hooks/useMyUserList.tsx +15 -0
- package/components/hooks/useMyUtils.tsx +16 -0
- package/components/hooks/useScrollRestoration.tsx +37 -0
- package/components/logins/Login.tsx +62 -0
- package/components/logins/auth/OAuthLogin.tsx +49 -0
- package/components/logins/auth/UserPassLogin.tsx +57 -0
- package/components/logins/hooks/useLogin.tsx +101 -0
- package/components/routes/404.tsx +24 -0
- package/components/routes/ErrorBoundary.tsx +44 -0
- package/components/routes/ErrorOccured.tsx +28 -0
- package/components/routes/Logout.tsx +56 -0
- package/components/routes/action/edit/ActionEditor.tsx +358 -0
- package/components/routes/action/shared/ActionReportDisplay.tsx +84 -0
- package/components/routes/action/shared/OperationEntry.tsx +121 -0
- package/components/routes/action/shared/OperationStep.tsx +219 -0
- package/components/routes/action/useMyActionFunctions.tsx +225 -0
- package/components/routes/action/view/ActionDetails.tsx +205 -0
- package/components/routes/action/view/ActionSearch.tsx +249 -0
- package/components/routes/action/view/Integrations.tsx +49 -0
- package/components/routes/admin/users/UserEditor.tsx +55 -0
- package/components/routes/admin/users/UserSearch.tsx +228 -0
- package/components/routes/advanced/QueryBuilder.tsx +584 -0
- package/components/routes/advanced/QueryEditor.tsx +148 -0
- package/components/routes/advanced/RuleModal.tsx +217 -0
- package/components/routes/advanced/eqlCompletionProvider.ts +94 -0
- package/components/routes/advanced/eqlTokenProvider.ts +110 -0
- package/components/routes/advanced/historyCompletionProvider.ts +61 -0
- package/components/routes/advanced/luceneCompletionProvider.ts +111 -0
- package/components/routes/advanced/luceneTokenProvider.ts +131 -0
- package/components/routes/advanced/yamlCompletionProvider.ts +58 -0
- package/components/routes/analytics/AnalyticComments.tsx +218 -0
- package/components/routes/analytics/AnalyticDetails.tsx +343 -0
- package/components/routes/analytics/AnalyticHitComments.tsx +99 -0
- package/components/routes/analytics/AnalyticNotebooks.tsx +185 -0
- package/components/routes/analytics/AnalyticOverview.tsx +165 -0
- package/components/routes/analytics/AnalyticOverviews.tsx +75 -0
- package/components/routes/analytics/AnalyticSearch.tsx +301 -0
- package/components/routes/analytics/AnalyticTemplates.tsx +77 -0
- package/components/routes/analytics/RuleView.tsx +80 -0
- package/components/routes/analytics/TriageSettings.tsx +146 -0
- package/components/routes/analytics/widgets/Assessment.tsx +71 -0
- package/components/routes/analytics/widgets/Created.tsx +61 -0
- package/components/routes/analytics/widgets/Detection.tsx +11 -0
- package/components/routes/analytics/widgets/Escalation.tsx +65 -0
- package/components/routes/analytics/widgets/Stacked.tsx +109 -0
- package/components/routes/analytics/widgets/Status.tsx +21 -0
- package/components/routes/dossiers/DossierCard.tsx +48 -0
- package/components/routes/dossiers/DossierEditor.tsx +247 -0
- package/components/routes/dossiers/Dossiers.tsx +173 -0
- package/components/routes/dossiers/LeadEditor.tsx +122 -0
- package/components/routes/dossiers/LeadForm.tsx +106 -0
- package/components/routes/dossiers/PivotForm.tsx +311 -0
- package/components/routes/help/ActionDocumentation.tsx +77 -0
- package/components/routes/help/ActionIntroductionDocumentation.tsx +128 -0
- package/components/routes/help/ApiDocumentation.tsx +217 -0
- package/components/routes/help/AuthDocumentation.tsx +26 -0
- package/components/routes/help/BundleDocumentation.tsx +17 -0
- package/components/routes/help/ClientDocumentation.tsx +27 -0
- package/components/routes/help/Help.tsx +96 -0
- package/components/routes/help/HitBannerDocumentation.tsx +71 -0
- package/components/routes/help/HitDocumentation.tsx +77 -0
- package/components/routes/help/HitLabelsDocumentation.tsx +57 -0
- package/components/routes/help/HitLinksDocumentation.tsx +23 -0
- package/components/routes/help/HitSchemaDocumentation.tsx +253 -0
- package/components/routes/help/NotebookDocumentation.tsx +28 -0
- package/components/routes/help/OverviewDocumentation.tsx +21 -0
- package/components/routes/help/RetentionDocumentation.tsx +55 -0
- package/components/routes/help/SearchDocumentation.tsx +700 -0
- package/components/routes/help/TemplateDocumentation.tsx +73 -0
- package/components/routes/help/ViewDocumentation.tsx +32 -0
- package/components/routes/help/components/HelpTabs.tsx +47 -0
- package/components/routes/help/markdown/en/actionIntroduction.md +33 -0
- package/components/routes/help/markdown/en/authentication.md +261 -0
- package/components/routes/help/markdown/en/bundles.md +70 -0
- package/components/routes/help/markdown/en/client.md +213 -0
- package/components/routes/help/markdown/en/links.md +37 -0
- package/components/routes/help/markdown/en/notebook.md +157 -0
- package/components/routes/help/markdown/en/retention.md +15 -0
- package/components/routes/help/markdown/en/schema.md +20 -0
- package/components/routes/help/markdown/en/templates.md +23 -0
- package/components/routes/help/markdown/en/views.md +11 -0
- package/components/routes/help/markdown/fr/actionIntroduction.md +33 -0
- package/components/routes/help/markdown/fr/authentication.md +259 -0
- package/components/routes/help/markdown/fr/bundles.md +70 -0
- package/components/routes/help/markdown/fr/client.md +209 -0
- package/components/routes/help/markdown/fr/links.md +37 -0
- package/components/routes/help/markdown/fr/notebook.md +157 -0
- package/components/routes/help/markdown/fr/retention.md +15 -0
- package/components/routes/help/markdown/fr/schema.md +20 -0
- package/components/routes/help/markdown/fr/templates.md +23 -0
- package/components/routes/help/markdown/fr/views.md +11 -0
- package/components/routes/hits/search/BundleParentMenu.tsx +73 -0
- package/components/routes/hits/search/BundleScroller.tsx +8 -0
- package/components/routes/hits/search/CustomSort.tsx +94 -0
- package/components/routes/hits/search/HitBrowser.tsx +318 -0
- package/components/routes/hits/search/HitContextMenu.tsx +260 -0
- package/components/routes/hits/search/HitQuery.tsx +268 -0
- package/components/routes/hits/search/InformationPane.tsx +430 -0
- package/components/routes/hits/search/SearchPane.tsx +291 -0
- package/components/routes/hits/search/ViewLink.tsx +96 -0
- package/components/routes/hits/search/grid/AddColumnModal.tsx +98 -0
- package/components/routes/hits/search/grid/ColumnHeader.tsx +70 -0
- package/components/routes/hits/search/grid/EnhancedCell.tsx +50 -0
- package/components/routes/hits/search/grid/HitGrid.tsx +342 -0
- package/components/routes/hits/search/grid/HitRow.tsx +121 -0
- package/components/routes/hits/search/shared/CustomSpan.tsx +54 -0
- package/components/routes/hits/search/shared/HitFilter.tsx +110 -0
- package/components/routes/hits/search/shared/HitSort.tsx +111 -0
- package/components/routes/hits/search/shared/QuerySettings.tsx +40 -0
- package/components/routes/hits/search/shared/SearchSpan.tsx +68 -0
- package/components/routes/hits/view/HitViewer.tsx +372 -0
- package/components/routes/hits/view/LeadRenderer.tsx +42 -0
- package/components/routes/home/AddNewCard.tsx +295 -0
- package/components/routes/home/AnalyticCard.tsx +68 -0
- package/components/routes/home/EntryWrapper.tsx +54 -0
- package/components/routes/home/ViewCard.tsx +96 -0
- package/components/routes/home/index.tsx +278 -0
- package/components/routes/overviews/OverviewCard.tsx +51 -0
- package/components/routes/overviews/OverviewEditor.tsx +102 -0
- package/components/routes/overviews/OverviewViewer.tsx +387 -0
- package/components/routes/overviews/Overviews.tsx +179 -0
- package/components/routes/overviews/markdownExtendedTokenProvider.ts +296 -0
- package/components/routes/overviews/startingTemplate.ts +40 -0
- package/components/routes/overviews/template/en.md +167 -0
- package/components/routes/overviews/template/fr.md +167 -0
- package/components/routes/settings/AdminSection.tsx +18 -0
- package/components/routes/settings/LocalSection.tsx +168 -0
- package/components/routes/settings/ProfileSection.tsx +138 -0
- package/components/routes/settings/SecuritySection.tsx +95 -0
- package/components/routes/settings/Settings.tsx +51 -0
- package/components/routes/settings/SettingsSection.tsx +28 -0
- package/components/routes/templates/TemplateCard.tsx +38 -0
- package/components/routes/templates/TemplateDnD.tsx +51 -0
- package/components/routes/templates/TemplateEditor.tsx +121 -0
- package/components/routes/templates/TemplateViewer.tsx +285 -0
- package/components/routes/templates/Templates.tsx +187 -0
- package/components/routes/views/ViewComposer.tsx +317 -0
- package/components/routes/views/Views.tsx +379 -0
- package/i18n.ts +50 -0
- package/index.tsx +19 -0
- package/locales/en/help/main.json +13 -0
- package/locales/en/help/search.json +186 -0
- package/locales/en/translation.json +799 -0
- package/locales/fr/help/main.json +13 -0
- package/locales/fr/help/search.json +186 -0
- package/locales/fr/translation.json +797 -0
- package/models/ActionTypes.d.ts +2 -1
- package/models/WithMetadata.d.ts +5 -4
- package/models/entities/HowlerUser.d.ts +2 -1
- package/models/entities/generated/Action.d.ts +2 -1
- package/models/entities/generated/Analytic.d.ts +4 -3
- package/models/entities/generated/Assemblyline.d.ts +9 -8
- package/models/entities/generated/Attachment.d.ts +2 -1
- package/models/entities/generated/Aws.d.ts +3 -2
- package/models/entities/generated/Cbs.d.ts +2 -1
- package/models/entities/generated/Cloud.d.ts +6 -5
- package/models/entities/generated/Container.d.ts +2 -1
- package/models/entities/generated/Destination.d.ts +6 -5
- package/models/entities/generated/Dns.d.ts +3 -2
- package/models/entities/generated/Dossier.d.ts +3 -2
- package/models/entities/generated/Elf.d.ts +4 -3
- package/models/entities/generated/Email.d.ts +9 -8
- package/models/entities/generated/Enrichment.d.ts +3 -2
- package/models/entities/generated/Faas.d.ts +2 -1
- package/models/entities/generated/File.d.ts +2 -1
- package/models/entities/generated/Geo.d.ts +2 -1
- package/models/entities/generated/Hit.d.ts +37 -36
- package/models/entities/generated/HitFile.d.ts +5 -4
- package/models/entities/generated/Howler.d.ts +9 -8
- package/models/entities/generated/HowlerDossier.d.ts +2 -1
- package/models/entities/generated/Http.d.ts +3 -2
- package/models/entities/generated/Image.d.ts +2 -1
- package/models/entities/generated/Indicator.d.ts +3 -2
- package/models/entities/generated/IndicatorFile.d.ts +5 -4
- package/models/entities/generated/Ingress.d.ts +2 -1
- package/models/entities/generated/Lead.d.ts +2 -1
- package/models/entities/generated/Mitre.d.ts +3 -2
- package/models/entities/generated/Observer.d.ts +4 -3
- package/models/entities/generated/Original.d.ts +4 -3
- package/models/entities/generated/Parent.d.ts +5 -4
- package/models/entities/generated/ParentParent.d.ts +6 -5
- package/models/entities/generated/Pivot.d.ts +3 -2
- package/models/entities/generated/Process.d.ts +7 -6
- package/models/entities/generated/ProcessParent.d.ts +7 -6
- package/models/entities/generated/Registry.d.ts +2 -1
- package/models/entities/generated/Request.d.ts +2 -1
- package/models/entities/generated/Response.d.ts +2 -1
- package/models/entities/generated/Sharepoint.d.ts +3 -2
- package/models/entities/generated/Source.d.ts +6 -5
- package/models/entities/generated/SourceOriginal.d.ts +4 -3
- package/models/entities/generated/Threat.d.ts +8 -7
- package/models/entities/generated/ThreatIndicator.d.ts +3 -2
- package/models/entities/generated/Tls.d.ts +3 -2
- package/models/entities/generated/User.d.ts +2 -1
- package/models/entities/generated/UserAgent.d.ts +3 -2
- package/models/entities/generated/UserUser.d.ts +2 -1
- package/models/entities/generated/View.d.ts +2 -1
- package/models/socket/HitUpdate.d.ts +2 -1
- package/package.json +576 -154
- package/plugins/HowlerPlugin.ts +375 -0
- package/plugins/store.ts +152 -0
- package/rest/AxiosClient.ts +81 -0
- package/rest/FetchClient.ts +27 -0
- package/rest/index.ts +12 -0
- package/setupTests.ts +17 -0
- package/utils/Throttler.ts +43 -0
- package/utils/actionUtils.ts +112 -0
- package/utils/constants.tsx +131 -0
- package/utils/hit.json +30356 -0
- package/utils/hitFunctions.ts +10 -0
- package/utils/localStorage.ts +54 -0
- package/utils/menuUtils.ts +274 -0
- package/utils/sessionStorage.ts +59 -0
- package/utils/socketUtils.ts +11 -0
- package/utils/stringUtils.ts +57 -0
- package/utils/utils.ts +222 -0
- package/utils/xsrf.ts +17 -0
- package/Notification-BHyOHttL.js +0 -324
- package/TuiList-D7-CH2oS.js +0 -48
- package/api/action/execute.d.ts +0 -3
- package/api/action/execute.js +0 -5
- package/api/action/index.d.ts +0 -10
- package/api/action/index.js +0 -11
- package/api/action/operations.d.ts +0 -3
- package/api/action/operations.js +0 -5
- package/api/analytic/comments/index.d.ts +0 -13
- package/api/analytic/comments/index.js +0 -9
- package/api/analytic/comments/react.d.ts +0 -3
- package/api/analytic/comments/react.js +0 -6
- package/api/analytic/favourite.d.ts +0 -7
- package/api/analytic/favourite.js +0 -6
- package/api/analytic/index.d.ts +0 -12
- package/api/analytic/index.js +0 -12
- package/api/analytic/notebooks/index.d.ts +0 -10
- package/api/analytic/notebooks/index.js +0 -6
- package/api/analytic/owner.d.ts +0 -5
- package/api/analytic/owner.js +0 -5
- package/api/analytic/rules.d.ts +0 -3
- package/api/analytic/rules.js +0 -5
- package/api/auth/apikey.d.ts +0 -8
- package/api/auth/apikey.js +0 -6
- package/api/auth/index.d.ts +0 -4
- package/api/auth/index.js +0 -6
- package/api/auth/login.d.ts +0 -14
- package/api/auth/login.js +0 -7
- package/api/configs/index.d.ts +0 -3
- package/api/configs/index.js +0 -5
- package/api/dossier/hit.d.ts +0 -2
- package/api/dossier/hit.js +0 -4
- package/api/dossier/index.d.ts +0 -8
- package/api/dossier/index.js +0 -9
- package/api/help.d.ts +0 -55
- package/api/help.js +0 -5
- package/api/hit/assign.d.ts +0 -3
- package/api/hit/assign.js +0 -5
- package/api/hit/comments/index.d.ts +0 -13
- package/api/hit/comments/index.js +0 -9
- package/api/hit/comments/react.d.ts +0 -3
- package/api/hit/comments/react.js +0 -6
- package/api/hit/index.d.ts +0 -35
- package/api/hit/index.js +0 -12
- package/api/hit/labels.d.ts +0 -5
- package/api/hit/labels.js +0 -6
- package/api/hit/overwrite.d.ts +0 -3
- package/api/hit/overwrite.js +0 -5
- package/api/hit/transition.d.ts +0 -4
- package/api/hit/transition.js +0 -5
- package/api/index.d.ts +0 -142
- package/api/index.js +0 -21
- package/api/notebook/environments.d.ts +0 -10
- package/api/notebook/environments.js +0 -5
- package/api/notebook/index.d.ts +0 -14
- package/api/notebook/index.js +0 -6
- package/api/overview/index.d.ts +0 -6
- package/api/overview/index.js +0 -8
- package/api/search/action.d.ts +0 -4
- package/api/search/action.js +0 -5
- package/api/search/analytic.d.ts +0 -4
- package/api/search/analytic.js +0 -5
- package/api/search/count/hit.d.ts +0 -3
- package/api/search/count/hit.js +0 -5
- package/api/search/count/index.d.ts +0 -10
- package/api/search/count/index.js +0 -5
- package/api/search/dossier.d.ts +0 -4
- package/api/search/dossier.js +0 -5
- package/api/search/eql/hit.d.ts +0 -4
- package/api/search/eql/hit.js +0 -5
- package/api/search/facet/hit.d.ts +0 -5
- package/api/search/facet/hit.js +0 -5
- package/api/search/facet/index.d.ts +0 -13
- package/api/search/facet/index.js +0 -5
- package/api/search/fields/hit.d.ts +0 -3
- package/api/search/fields/hit.js +0 -5
- package/api/search/fields/index.d.ts +0 -19
- package/api/search/fields/index.js +0 -8
- package/api/search/fields/user.d.ts +0 -3
- package/api/search/fields/user.js +0 -5
- package/api/search/grouped/hit.d.ts +0 -4
- package/api/search/grouped/hit.js +0 -5
- package/api/search/grouped/index.d.ts +0 -25
- package/api/search/grouped/index.js +0 -6
- package/api/search/grouped/user.d.ts +0 -7
- package/api/search/grouped/user.js +0 -5
- package/api/search/histogram/hit.d.ts +0 -3
- package/api/search/histogram/hit.js +0 -5
- package/api/search/histogram/index.d.ts +0 -14
- package/api/search/histogram/index.js +0 -5
- package/api/search/hit.d.ts +0 -7
- package/api/search/hit.js +0 -7
- package/api/search/index.d.ts +0 -53
- package/api/search/index.js +0 -17
- package/api/search/overview.d.ts +0 -4
- package/api/search/overview.js +0 -5
- package/api/search/sigma/hit.d.ts +0 -4
- package/api/search/sigma/hit.js +0 -5
- package/api/search/template.d.ts +0 -4
- package/api/search/template.js +0 -5
- package/api/search/user.d.ts +0 -7
- package/api/search/user.js +0 -5
- package/api/search/view.d.ts +0 -4
- package/api/search/view.js +0 -5
- package/api/template/index.d.ts +0 -6
- package/api/template/index.js +0 -8
- package/api/user/avatar/index.d.ts +0 -2
- package/api/user/avatar/index.js +0 -5
- package/api/user/groups.d.ts +0 -6
- package/api/user/groups.js +0 -5
- package/api/user/index.d.ts +0 -10
- package/api/user/index.js +0 -9
- package/api/user/whoami.d.ts +0 -3
- package/api/user/whoami.js +0 -5
- package/api/view/favourite.d.ts +0 -7
- package/api/view/favourite.js +0 -6
- package/api/view/index.d.ts +0 -8
- package/api/view/index.js +0 -9
- package/assets/howler-ui.css +0 -21
- package/branding/AppBrand.d.ts +0 -85
- package/branding/AppBrand.js +0 -135
- package/branding/howler/favicon.svg +0 -38
- package/branding/howler/name-dark.svg +0 -21
- package/branding/howler/name-light.svg +0 -21
- package/branding/howler/noswoosh-dark.svg +0 -24
- package/branding/howler/noswoosh-light.svg +0 -28
- package/branding/howler/swoosh-dark.svg +0 -41
- package/branding/howler/swoosh-light.svg +0 -45
- package/commons/components/app/AppConfigs.d.ts +0 -137
- package/commons/components/app/AppConfigs.js +0 -1
- package/commons/components/app/AppConstants.d.ts +0 -10
- package/commons/components/app/AppConstants.js +0 -14
- package/commons/components/app/AppContexts.d.ts +0 -105
- package/commons/components/app/AppContexts.js +0 -23
- package/commons/components/app/AppDefaults.d.ts +0 -6
- package/commons/components/app/AppDefaults.js +0 -42
- package/commons/components/app/AppNotificationService.d.ts +0 -6
- package/commons/components/app/AppNotificationService.js +0 -1
- package/commons/components/app/AppProvider.d.ts +0 -15
- package/commons/components/app/AppProvider.js +0 -44
- package/commons/components/app/AppSearchService.d.ts +0 -21
- package/commons/components/app/AppSearchService.js +0 -1
- package/commons/components/app/AppSkeleton.d.ts +0 -5
- package/commons/components/app/AppSkeleton.js +0 -259
- package/commons/components/app/AppUserService.d.ts +0 -17
- package/commons/components/app/AppUserService.js +0 -1
- package/commons/components/app/hooks/index.d.ts +0 -18
- package/commons/components/app/hooks/index.js +0 -40
- package/commons/components/app/hooks/useApp.d.ts +0 -1
- package/commons/components/app/hooks/useApp.js +0 -8
- package/commons/components/app/hooks/useAppBanner.d.ts +0 -1
- package/commons/components/app/hooks/useAppBanner.js +0 -14
- package/commons/components/app/hooks/useAppBar.d.ts +0 -1
- package/commons/components/app/hooks/useAppBar.js +0 -8
- package/commons/components/app/hooks/useAppBarHeight.d.ts +0 -2
- package/commons/components/app/hooks/useAppBarHeight.js +0 -26
- package/commons/components/app/hooks/useAppBarScrollTrigger.d.ts +0 -1
- package/commons/components/app/hooks/useAppBarScrollTrigger.js +0 -10
- package/commons/components/app/hooks/useAppBreadcrumbs.d.ts +0 -1
- package/commons/components/app/hooks/useAppBreadcrumbs.js +0 -8
- package/commons/components/app/hooks/useAppConfigs.d.ts +0 -59
- package/commons/components/app/hooks/useAppConfigs.js +0 -39
- package/commons/components/app/hooks/useAppLanguage.d.ts +0 -6
- package/commons/components/app/hooks/useAppLanguage.js +0 -23
- package/commons/components/app/hooks/useAppLayout.d.ts +0 -1
- package/commons/components/app/hooks/useAppLayout.js +0 -8
- package/commons/components/app/hooks/useAppLeftNav.d.ts +0 -1
- package/commons/components/app/hooks/useAppLeftNav.js +0 -8
- package/commons/components/app/hooks/useAppLogo.d.ts +0 -1
- package/commons/components/app/hooks/useAppLogo.js +0 -11
- package/commons/components/app/hooks/useAppNotification.d.ts +0 -1
- package/commons/components/app/hooks/useAppNotification.js +0 -8
- package/commons/components/app/hooks/useAppQuickSearch.d.ts +0 -1
- package/commons/components/app/hooks/useAppQuickSearch.js +0 -8
- package/commons/components/app/hooks/useAppSearchService.d.ts +0 -2
- package/commons/components/app/hooks/useAppSearchService.js +0 -8
- package/commons/components/app/hooks/useAppSitemap.d.ts +0 -13
- package/commons/components/app/hooks/useAppSitemap.js +0 -60
- package/commons/components/app/hooks/useAppSwitcher.d.ts +0 -1
- package/commons/components/app/hooks/useAppSwitcher.js +0 -8
- package/commons/components/app/hooks/useAppTheme.d.ts +0 -8
- package/commons/components/app/hooks/useAppTheme.js +0 -20
- package/commons/components/app/hooks/useAppUser.d.ts +0 -2
- package/commons/components/app/hooks/useAppUser.js +0 -8
- package/commons/components/app/providers/AppBarProvider.d.ts +0 -10
- package/commons/components/app/providers/AppBarProvider.js +0 -35
- package/commons/components/app/providers/AppBreadcrumbsProvider.d.ts +0 -6
- package/commons/components/app/providers/AppBreadcrumbsProvider.js +0 -41
- package/commons/components/app/providers/AppLayoutProvider.d.ts +0 -6
- package/commons/components/app/providers/AppLayoutProvider.js +0 -95
- package/commons/components/app/providers/AppLeftNavProvider.d.ts +0 -6
- package/commons/components/app/providers/AppLeftNavProvider.js +0 -29
- package/commons/components/app/providers/AppNotificationProvider.d.ts +0 -6
- package/commons/components/app/providers/AppNotificationProvider.js +0 -33
- package/commons/components/app/providers/AppQuickSearchProvider.d.ts +0 -8
- package/commons/components/app/providers/AppQuickSearchProvider.js +0 -26
- package/commons/components/app/providers/AppSearchServiceProvider.d.ts +0 -6
- package/commons/components/app/providers/AppSearchServiceProvider.js +0 -49
- package/commons/components/app/providers/AppSnackbarProvider.d.ts +0 -3
- package/commons/components/app/providers/AppSnackbarProvider.js +0 -14
- package/commons/components/app/providers/AppSwitcherProvider.d.ts +0 -6
- package/commons/components/app/providers/AppSwitcherProvider.js +0 -15
- package/commons/components/app/providers/AppUserProvider.d.ts +0 -8
- package/commons/components/app/providers/AppUserProvider.js +0 -18
- package/commons/components/breadcrumbs/BreadcrumbIcon.d.ts +0 -6
- package/commons/components/breadcrumbs/BreadcrumbIcon.js +0 -16
- package/commons/components/breadcrumbs/BreadcrumbLastItem.d.ts +0 -7
- package/commons/components/breadcrumbs/BreadcrumbLastItem.js +0 -40
- package/commons/components/breadcrumbs/BreadcrumbLinkItem.d.ts +0 -7
- package/commons/components/breadcrumbs/BreadcrumbLinkItem.js +0 -44
- package/commons/components/breadcrumbs/BreadcrumbList.d.ts +0 -11
- package/commons/components/breadcrumbs/BreadcrumbList.js +0 -74
- package/commons/components/breadcrumbs/Breadcrumbs.d.ts +0 -4
- package/commons/components/breadcrumbs/Breadcrumbs.js +0 -45
- package/commons/components/display/AppAvatar.d.ts +0 -8
- package/commons/components/display/AppAvatar.js +0 -28
- package/commons/components/display/AppInfoPanel.d.ts +0 -5
- package/commons/components/display/AppInfoPanel.js +0 -33
- package/commons/components/display/AppListEmpty.d.ts +0 -2
- package/commons/components/display/AppListEmpty.js +0 -8
- package/commons/components/display/AppToc.d.ts +0 -19
- package/commons/components/display/AppToc.js +0 -116
- package/commons/components/display/hooks/useAppColor.d.ts +0 -5
- package/commons/components/display/hooks/useAppColor.js +0 -15
- package/commons/components/leftnav/LeftNavDrawer.d.ts +0 -2
- package/commons/components/leftnav/LeftNavDrawer.js +0 -141
- package/commons/components/leftnav/LeftNavGroup.d.ts +0 -7
- package/commons/components/leftnav/LeftNavGroup.js +0 -125
- package/commons/components/leftnav/LeftNavItem.d.ts +0 -10
- package/commons/components/leftnav/LeftNavItem.js +0 -50
- package/commons/components/notification/FeedModels.d.ts +0 -64
- package/commons/components/notification/FeedModels.js +0 -91
- package/commons/components/notification/Notification.d.ts +0 -10
- package/commons/components/notification/Notification.js +0 -8
- package/commons/components/notification/elements/NotificationCloseButton.d.ts +0 -3
- package/commons/components/notification/elements/NotificationCloseButton.js +0 -8
- package/commons/components/notification/elements/NotificationContainer.d.ts +0 -16
- package/commons/components/notification/elements/NotificationContainer.js +0 -10
- package/commons/components/notification/elements/NotificationEndOfPage.d.ts +0 -5
- package/commons/components/notification/elements/NotificationEndOfPage.js +0 -41
- package/commons/components/notification/elements/NotificationError.d.ts +0 -2
- package/commons/components/notification/elements/NotificationError.js +0 -27
- package/commons/components/notification/elements/NotificationHeader.d.ts +0 -8
- package/commons/components/notification/elements/NotificationHeader.js +0 -41
- package/commons/components/notification/elements/NotificationItems.d.ts +0 -12
- package/commons/components/notification/elements/NotificationItems.js +0 -10
- package/commons/components/notification/elements/NotificationSkeleton.d.ts +0 -2
- package/commons/components/notification/elements/NotificationSkeleton.js +0 -54
- package/commons/components/notification/elements/NotificationTopNavButton.d.ts +0 -9
- package/commons/components/notification/elements/NotificationTopNavButton.js +0 -14
- package/commons/components/notification/elements/item/NotificationItem.d.ts +0 -5
- package/commons/components/notification/elements/item/NotificationItem.js +0 -10
- package/commons/components/notification/elements/item/NotificationItemAuthor.d.ts +0 -5
- package/commons/components/notification/elements/item/NotificationItemAuthor.js +0 -63
- package/commons/components/notification/elements/item/NotificationItemContent.d.ts +0 -3
- package/commons/components/notification/elements/item/NotificationItemContent.js +0 -9
- package/commons/components/notification/elements/item/NotificationItemDate.d.ts +0 -3
- package/commons/components/notification/elements/item/NotificationItemDate.js +0 -9
- package/commons/components/notification/elements/item/NotificationItemImage.d.ts +0 -4
- package/commons/components/notification/elements/item/NotificationItemImage.js +0 -20
- package/commons/components/notification/elements/item/NotificationItemTag.d.ts +0 -4
- package/commons/components/notification/elements/item/NotificationItemTag.js +0 -16
- package/commons/components/notification/elements/item/NotificationItemTitle.d.ts +0 -3
- package/commons/components/notification/elements/item/NotificationItemTitle.js +0 -8
- package/commons/components/notification/index.d.ts +0 -2
- package/commons/components/notification/index.js +0 -13
- package/commons/components/pages/PageCardCentered.d.ts +0 -5
- package/commons/components/pages/PageCardCentered.js +0 -35
- package/commons/components/pages/PageCenter.d.ts +0 -8
- package/commons/components/pages/PageCenter.js +0 -39
- package/commons/components/pages/PageContent.d.ts +0 -7
- package/commons/components/pages/PageContent.js +0 -11
- package/commons/components/pages/PageFullScreen.d.ts +0 -10
- package/commons/components/pages/PageFullScreen.js +0 -57
- package/commons/components/pages/PageFullWidth.d.ts +0 -11
- package/commons/components/pages/PageFullWidth.js +0 -18
- package/commons/components/pages/PageHeader.d.ts +0 -23
- package/commons/components/pages/PageHeader.js +0 -83
- package/commons/components/pages/hooks/usePageProps.d.ts +0 -24
- package/commons/components/pages/hooks/usePageProps.js +0 -28
- package/commons/components/search/AppSearch.d.ts +0 -1
- package/commons/components/search/AppSearch.js +0 -211
- package/commons/components/search/AppSearchInput.d.ts +0 -11
- package/commons/components/search/AppSearchInput.js +0 -68
- package/commons/components/search/AppSearchResult.d.ts +0 -4
- package/commons/components/search/AppSearchResult.js +0 -43
- package/commons/components/topnav/AppBar.d.ts +0 -5
- package/commons/components/topnav/AppBar.js +0 -119
- package/commons/components/topnav/AppName.d.ts +0 -4
- package/commons/components/topnav/AppName.js +0 -52
- package/commons/components/topnav/AppSwitcher.d.ts +0 -2
- package/commons/components/topnav/AppSwitcher.js +0 -76
- package/commons/components/topnav/Notifications.d.ts +0 -2
- package/commons/components/topnav/Notifications.js +0 -19
- package/commons/components/topnav/ThemeSelection.d.ts +0 -2
- package/commons/components/topnav/ThemeSelection.js +0 -89
- package/commons/components/topnav/ThemeSelectionIcon.d.ts +0 -2
- package/commons/components/topnav/ThemeSelectionIcon.js +0 -31
- package/commons/components/topnav/UserProfile.d.ts +0 -5
- package/commons/components/topnav/UserProfile.js +0 -144
- package/commons/components/utils/hooks/useClipboard.d.ts +0 -3
- package/commons/components/utils/hooks/useClipboard.js +0 -31
- package/commons/components/utils/hooks/useEnv.d.ts +0 -1
- package/commons/components/utils/hooks/useEnv.js +0 -14
- package/commons/components/utils/hooks/useFullscreenStatus.d.ts +0 -2
- package/commons/components/utils/hooks/useFullscreenStatus.js +0 -37
- package/commons/components/utils/hooks/useGravatar.d.ts +0 -2
- package/commons/components/utils/hooks/useGravatar.js +0 -11
- package/commons/components/utils/hooks/useLocalStorage.d.ts +0 -12
- package/commons/components/utils/hooks/useLocalStorage.js +0 -50
- package/commons/components/utils/hooks/useLocalStorageItem.d.ts +0 -14
- package/commons/components/utils/hooks/useLocalStorageItem.js +0 -31
- package/commons/components/utils/hooks/useThemeBuilder.d.ts +0 -7
- package/commons/components/utils/hooks/useThemeBuilder.js +0 -61
- package/commons/components/utils/keyboard.d.ts +0 -30
- package/commons/components/utils/keyboard.js +0 -70
- package/components/app/App.d.ts +0 -3
- package/components/app/App.js +0 -342
- package/components/app/AppContainer.d.ts +0 -3
- package/components/app/AppContainer.js +0 -12
- package/components/app/drawers/ApiKeyDrawer.d.ts +0 -6
- package/components/app/drawers/ApiKeyDrawer.js +0 -143
- package/components/app/drawers/AppDrawerType.d.ts +0 -6
- package/components/app/drawers/AppDrawerType.js +0 -1
- package/components/app/drawers/AssignUserDrawer.d.ts +0 -9
- package/components/app/drawers/AssignUserDrawer.js +0 -104
- package/components/app/drawers/ViewGroupsDrawer.d.ts +0 -7
- package/components/app/drawers/ViewGroupsDrawer.js +0 -11
- package/components/app/hooks/useMatchers.d.ts +0 -9
- package/components/app/hooks/useMatchers.js +0 -84
- package/components/app/hooks/useTitle.d.ts +0 -2
- package/components/app/hooks/useTitle.js +0 -64
- package/components/app/providers/AnalyticProvider.d.ts +0 -10
- package/components/app/providers/AnalyticProvider.js +0 -63
- package/components/app/providers/ApiConfigProvider.d.ts +0 -9
- package/components/app/providers/ApiConfigProvider.js +0 -24
- package/components/app/providers/AppDrawerProvider.d.ts +0 -10
- package/components/app/providers/AppDrawerProvider.js +0 -38
- package/components/app/providers/AvatarProvider.d.ts +0 -7
- package/components/app/providers/AvatarProvider.js +0 -32
- package/components/app/providers/CustomPluginProvider.d.ts +0 -3
- package/components/app/providers/CustomPluginProvider.js +0 -16
- package/components/app/providers/FavouritesProvider.d.ts +0 -4
- package/components/app/providers/FavouritesProvider.js +0 -136
- package/components/app/providers/FieldProvider.d.ts +0 -9
- package/components/app/providers/FieldProvider.js +0 -22
- package/components/app/providers/HitProvider.d.ts +0 -22
- package/components/app/providers/HitProvider.js +0 -103
- package/components/app/providers/HitSearchProvider.d.ts +0 -27
- package/components/app/providers/HitSearchProvider.js +0 -188
- package/components/app/providers/LocalStorageProvider.d.ts +0 -13
- package/components/app/providers/LocalStorageProvider.js +0 -49
- package/components/app/providers/ModalProvider.d.ts +0 -16
- package/components/app/providers/ModalProvider.js +0 -34
- package/components/app/providers/OverviewProvider.d.ts +0 -13
- package/components/app/providers/OverviewProvider.js +0 -68
- package/components/app/providers/ParameterProvider.d.ts +0 -26
- package/components/app/providers/ParameterProvider.js +0 -166
- package/components/app/providers/SocketProvider.d.ts +0 -57
- package/components/app/providers/SocketProvider.js +0 -175
- package/components/app/providers/UserListProvider.d.ts +0 -12
- package/components/app/providers/UserListProvider.js +0 -40
- package/components/app/providers/ViewProvider.d.ts +0 -23
- package/components/app/providers/ViewProvider.js +0 -163
- package/components/elements/Comment.d.ts +0 -17
- package/components/elements/Comment.js +0 -258
- package/components/elements/EditRow.d.ts +0 -14
- package/components/elements/EditRow.js +0 -208
- package/components/elements/PluginChip.d.ts +0 -9
- package/components/elements/PluginChip.js +0 -24
- package/components/elements/PluginTypography.d.ts +0 -9
- package/components/elements/PluginTypography.js +0 -24
- package/components/elements/ThemedEditor.d.ts +0 -3
- package/components/elements/ThemedEditor.js +0 -119
- package/components/elements/UserList.d.ts +0 -9
- package/components/elements/UserList.js +0 -67
- package/components/elements/addons/buttons/CustomButton.d.ts +0 -12
- package/components/elements/addons/buttons/CustomButton.js +0 -59
- package/components/elements/addons/buttons/CustomIconButton.d.ts +0 -15
- package/components/elements/addons/buttons/CustomIconButton.js +0 -81
- package/components/elements/addons/buttons/index.d.ts +0 -3
- package/components/elements/addons/buttons/index.js +0 -8
- package/components/elements/addons/layout/FlexOne.d.ts +0 -4
- package/components/elements/addons/layout/FlexOne.js +0 -9
- package/components/elements/addons/layout/FlexPort.d.ts +0 -12
- package/components/elements/addons/layout/FlexPort.js +0 -32
- package/components/elements/addons/layout/FlexVertical.d.ts +0 -8
- package/components/elements/addons/layout/FlexVertical.js +0 -23
- package/components/elements/addons/layout/vsbox/VSBox.d.ts +0 -16
- package/components/elements/addons/layout/vsbox/VSBox.js +0 -31
- package/components/elements/addons/layout/vsbox/VSBoxContent.d.ts +0 -4
- package/components/elements/addons/layout/vsbox/VSBoxContent.js +0 -8
- package/components/elements/addons/layout/vsbox/VSBoxElement.d.ts +0 -8
- package/components/elements/addons/layout/vsbox/VSBoxElement.js +0 -33
- package/components/elements/addons/layout/vsbox/VSBoxHeader.d.ts +0 -5
- package/components/elements/addons/layout/vsbox/VSBoxHeader.js +0 -36
- package/components/elements/addons/lists/TuiList.d.ts +0 -8
- package/components/elements/addons/lists/TuiList.js +0 -8
- package/components/elements/addons/lists/TuiListBase.d.ts +0 -10
- package/components/elements/addons/lists/TuiListBase.js +0 -82
- package/components/elements/addons/lists/TuiListElement.d.ts +0 -9
- package/components/elements/addons/lists/TuiListElement.js +0 -8
- package/components/elements/addons/lists/TuiListMenu.d.ts +0 -49
- package/components/elements/addons/lists/TuiListMenu.js +0 -45
- package/components/elements/addons/lists/TuiListProvider.d.ts +0 -22
- package/components/elements/addons/lists/TuiListProvider.js +0 -125
- package/components/elements/addons/lists/hooks/useTuiListKeyboard.d.ts +0 -5
- package/components/elements/addons/lists/hooks/useTuiListKeyboard.js +0 -43
- package/components/elements/addons/lists/index.d.ts +0 -19
- package/components/elements/addons/lists/index.js +0 -7
- package/components/elements/addons/lists/table/TuiTable.d.ts +0 -14
- package/components/elements/addons/lists/table/TuiTable.js +0 -114
- package/components/elements/addons/lists/table/TuiTableBody.d.ts +0 -14
- package/components/elements/addons/lists/table/TuiTableBody.js +0 -47
- package/components/elements/addons/lists/table/TuiTableHead.d.ts +0 -8
- package/components/elements/addons/lists/table/TuiTableHead.js +0 -21
- package/components/elements/addons/lists/table/TuiTableHeader.d.ts +0 -6
- package/components/elements/addons/lists/table/TuiTableHeader.js +0 -11
- package/components/elements/addons/lists/table/TuiTableLayout.d.ts +0 -12
- package/components/elements/addons/lists/table/TuiTableLayout.js +0 -47
- package/components/elements/addons/lists/table/index.d.ts +0 -15
- package/components/elements/addons/lists/table/index.js +0 -4
- package/components/elements/addons/search/SearchPagination.d.ts +0 -9
- package/components/elements/addons/search/SearchPagination.js +0 -17
- package/components/elements/addons/search/SearchTotal.d.ts +0 -8
- package/components/elements/addons/search/SearchTotal.js +0 -27
- package/components/elements/addons/search/phrase/Phrase.d.ts +0 -19
- package/components/elements/addons/search/phrase/Phrase.js +0 -137
- package/components/elements/addons/search/phrase/PhraseConsumer.d.ts +0 -13
- package/components/elements/addons/search/phrase/PhraseConsumer.js +0 -30
- package/components/elements/addons/search/phrase/PhraseLexer.d.ts +0 -26
- package/components/elements/addons/search/phrase/PhraseLexer.js +0 -121
- package/components/elements/addons/search/phrase/index.d.ts +0 -40
- package/components/elements/addons/search/phrase/index.js +0 -49
- package/components/elements/addons/search/phrase/word/WordLexer.d.ts +0 -5
- package/components/elements/addons/search/phrase/word/WordLexer.js +0 -11
- package/components/elements/addons/search/phrase/word/WordSuggester.d.ts +0 -6
- package/components/elements/addons/search/phrase/word/WordSuggester.js +0 -11
- package/components/elements/addons/search/phrase/word/consumers/WhitespaceConsumer.d.ts +0 -7
- package/components/elements/addons/search/phrase/word/consumers/WhitespaceConsumer.js +0 -20
- package/components/elements/addons/search/phrase/word/consumers/WordConsumer.d.ts +0 -7
- package/components/elements/addons/search/phrase/word/consumers/WordConsumer.js +0 -20
- package/components/elements/display/ActionButton.d.ts +0 -8
- package/components/elements/display/ActionButton.js +0 -36
- package/components/elements/display/Classification.d.ts +0 -3
- package/components/elements/display/Classification.js +0 -31
- package/components/elements/display/DocumentationButton.d.ts +0 -3
- package/components/elements/display/DocumentationButton.js +0 -36
- package/components/elements/display/DynamicTabs.d.ts +0 -8
- package/components/elements/display/DynamicTabs.js +0 -26
- package/components/elements/display/HandlebarsMarkdown.d.ts +0 -9
- package/components/elements/display/HandlebarsMarkdown.js +0 -77
- package/components/elements/display/HowlerAvatar.d.ts +0 -6
- package/components/elements/display/HowlerAvatar.js +0 -53
- package/components/elements/display/HowlerAvatarHeader.d.ts +0 -6
- package/components/elements/display/HowlerAvatarHeader.js +0 -30
- package/components/elements/display/HowlerCard.d.ts +0 -3
- package/components/elements/display/HowlerCard.js +0 -8
- package/components/elements/display/Image.d.ts +0 -3
- package/components/elements/display/Image.js +0 -45
- package/components/elements/display/ItemManager.d.ts +0 -25
- package/components/elements/display/ItemManager.js +0 -119
- package/components/elements/display/Markdown.d.ts +0 -10
- package/components/elements/display/Markdown.js +0 -156
- package/components/elements/display/Modal.d.ts +0 -3
- package/components/elements/display/Modal.js +0 -39
- package/components/elements/display/Notebook.d.ts +0 -4
- package/components/elements/display/Notebook.js +0 -9
- package/components/elements/display/QueryResultText.d.ts +0 -6
- package/components/elements/display/QueryResultText.js +0 -28
- package/components/elements/display/TextDivider.d.ts +0 -3
- package/components/elements/display/TextDivider.js +0 -42
- package/components/elements/display/TypingIndicator.d.ts +0 -2
- package/components/elements/display/TypingIndicator.js +0 -44
- package/components/elements/display/UserPageWrapper.d.ts +0 -6
- package/components/elements/display/UserPageWrapper.js +0 -11
- package/components/elements/display/features/DevelopmentBanner.d.ts +0 -3
- package/components/elements/display/features/DevelopmentBanner.js +0 -19
- package/components/elements/display/features/DevelopmentIcon.d.ts +0 -3
- package/components/elements/display/features/DevelopmentIcon.js +0 -17
- package/components/elements/display/handlebars/helpers.d.ts +0 -12
- package/components/elements/display/handlebars/helpers.js +0 -229
- package/components/elements/display/icons/BundleButton.d.ts +0 -6
- package/components/elements/display/icons/BundleButton.js +0 -70
- package/components/elements/display/icons/Iconified.d.ts +0 -9
- package/components/elements/display/icons/Iconified.js +0 -14
- package/components/elements/display/icons/SocketBadge.d.ts +0 -5
- package/components/elements/display/icons/SocketBadge.js +0 -79
- package/components/elements/display/json/JSONViewer.d.ts +0 -8
- package/components/elements/display/json/JSONViewer.js +0 -86
- package/components/elements/display/markdownPlugins/tabs.d.ts +0 -3
- package/components/elements/display/markdownPlugins/tabs.js +0 -66
- package/components/elements/display/modals/ConfirmDeleteModal.d.ts +0 -5
- package/components/elements/display/modals/ConfirmDeleteModal.js +0 -24
- package/components/elements/display/modals/ConfirmNotebookModal.d.ts +0 -5
- package/components/elements/display/modals/ConfirmNotebookModal.js +0 -24
- package/components/elements/display/modals/CreateActionModal.d.ts +0 -5
- package/components/elements/display/modals/CreateActionModal.js +0 -54
- package/components/elements/display/modals/LoginErrorModal.d.ts +0 -5
- package/components/elements/display/modals/LoginErrorModal.js +0 -24
- package/components/elements/display/modals/RationaleModal.d.ts +0 -5
- package/components/elements/display/modals/RationaleModal.js +0 -50
- package/components/elements/hit/HitActions.d.ts +0 -6
- package/components/elements/hit/HitActions.js +0 -255
- package/components/elements/hit/HitBanner.d.ts +0 -15
- package/components/elements/hit/HitBanner.js +0 -330
- package/components/elements/hit/HitBannerTooltip.d.ts +0 -6
- package/components/elements/hit/HitBannerTooltip.js +0 -39
- package/components/elements/hit/HitCard.d.ts +0 -7
- package/components/elements/hit/HitCard.js +0 -33
- package/components/elements/hit/HitComments.d.ts +0 -11
- package/components/elements/hit/HitComments.js +0 -280
- package/components/elements/hit/HitDetails.d.ts +0 -5
- package/components/elements/hit/HitDetails.js +0 -238
- package/components/elements/hit/HitLabels.d.ts +0 -6
- package/components/elements/hit/HitLabels.js +0 -210
- package/components/elements/hit/HitLayout.d.ts +0 -5
- package/components/elements/hit/HitLayout.js +0 -9
- package/components/elements/hit/HitNotebooks.d.ts +0 -8
- package/components/elements/hit/HitNotebooks.js +0 -213
- package/components/elements/hit/HitOutline.d.ts +0 -9
- package/components/elements/hit/HitOutline.js +0 -43
- package/components/elements/hit/HitOverview.d.ts +0 -6
- package/components/elements/hit/HitOverview.js +0 -35
- package/components/elements/hit/HitQuickSearch.d.ts +0 -8
- package/components/elements/hit/HitQuickSearch.js +0 -118
- package/components/elements/hit/HitRelated.d.ts +0 -6
- package/components/elements/hit/HitRelated.js +0 -10
- package/components/elements/hit/HitShortcuts.d.ts +0 -5
- package/components/elements/hit/HitShortcuts.js +0 -9
- package/components/elements/hit/HitSummary.d.ts +0 -11
- package/components/elements/hit/HitSummary.js +0 -234
- package/components/elements/hit/HitWorklog.d.ts +0 -10
- package/components/elements/hit/HitWorklog.js +0 -163
- package/components/elements/hit/actions/ButtonActions.d.ts +0 -12
- package/components/elements/hit/actions/ButtonActions.js +0 -215
- package/components/elements/hit/actions/DropdownActions.d.ts +0 -12
- package/components/elements/hit/actions/DropdownActions.js +0 -98
- package/components/elements/hit/actions/SharedComponents.d.ts +0 -18
- package/components/elements/hit/actions/SharedComponents.js +0 -27
- package/components/elements/hit/aggregate/HitGraph.d.ts +0 -5
- package/components/elements/hit/aggregate/HitGraph.js +0 -321
- package/components/elements/hit/elements/Assigned.d.ts +0 -9
- package/components/elements/hit/elements/Assigned.js +0 -65
- package/components/elements/hit/elements/EscalationChip.d.ts +0 -9
- package/components/elements/hit/elements/EscalationChip.js +0 -24
- package/components/elements/hit/elements/HitTimestamp.d.ts +0 -8
- package/components/elements/hit/elements/HitTimestamp.js +0 -73
- package/components/elements/hit/outlines/DefaultOutline.d.ts +0 -12
- package/components/elements/hit/outlines/DefaultOutline.js +0 -77
- package/components/elements/hit/outlines/al/AssemblyLineRules.d.ts +0 -5
- package/components/elements/hit/outlines/al/AssemblyLineRules.js +0 -87
- package/components/elements/hit/related/PivotLink.d.ts +0 -10
- package/components/elements/hit/related/PivotLink.js +0 -49
- package/components/elements/hit/related/RelatedIcon.d.ts +0 -8
- package/components/elements/hit/related/RelatedIcon.js +0 -50
- package/components/elements/hit/related/RelatedLink.d.ts +0 -8
- package/components/elements/hit/related/RelatedLink.js +0 -42
- package/components/elements/view/ViewTitle.d.ts +0 -10
- package/components/elements/view/ViewTitle.js +0 -45
- package/components/hooks/useHitActions.d.ts +0 -14
- package/components/hooks/useHitActions.js +0 -229
- package/components/hooks/useHitSelection.d.ts +0 -8
- package/components/hooks/useHitSelection.js +0 -86
- package/components/hooks/useMyApi.d.ts +0 -10
- package/components/hooks/useMyApi.js +0 -49
- package/components/hooks/useMyChart.d.ts +0 -275
- package/components/hooks/useMyChart.js +0 -131
- package/components/hooks/useMyLocalStorage.d.ts +0 -17
- package/components/hooks/useMyLocalStorage.js +0 -19
- package/components/hooks/useMyPreferences.d.ts +0 -3
- package/components/hooks/useMyPreferences.js +0 -272
- package/components/hooks/useMySearch.d.ts +0 -4
- package/components/hooks/useMySearch.js +0 -59
- package/components/hooks/useMySitemap.d.ts +0 -3
- package/components/hooks/useMySitemap.js +0 -206
- package/components/hooks/useMySnackbar.d.ts +0 -8
- package/components/hooks/useMySnackbar.js +0 -56
- package/components/hooks/useMyTheme.d.ts +0 -3
- package/components/hooks/useMyTheme.js +0 -30
- package/components/hooks/useMyUser.d.ts +0 -4
- package/components/hooks/useMyUser.js +0 -31
- package/components/hooks/useMyUserFunctions.d.ts +0 -118
- package/components/hooks/useMyUserFunctions.js +0 -143
- package/components/hooks/useMyUserList.d.ts +0 -4
- package/components/hooks/useMyUserList.js +0 -12
- package/components/hooks/useMyUtils.d.ts +0 -4
- package/components/hooks/useMyUtils.js +0 -18
- package/components/hooks/useScrollRestoration.d.ts +0 -7
- package/components/hooks/useScrollRestoration.js +0 -25
- package/components/logins/Login.d.ts +0 -2
- package/components/logins/Login.js +0 -47
- package/components/logins/auth/OAuthLogin.d.ts +0 -6
- package/components/logins/auth/OAuthLogin.js +0 -40
- package/components/logins/auth/UserPassLogin.d.ts +0 -2
- package/components/logins/auth/UserPassLogin.js +0 -51
- package/components/logins/hooks/useLogin.d.ts +0 -7
- package/components/logins/hooks/useLogin.js +0 -87
- package/components/routes/404.d.ts +0 -3
- package/components/routes/404.js +0 -16
- package/components/routes/ErrorBoundary.d.ts +0 -14
- package/components/routes/ErrorBoundary.js +0 -32
- package/components/routes/ErrorOccured.d.ts +0 -3
- package/components/routes/ErrorOccured.js +0 -20
- package/components/routes/Logout.d.ts +0 -3
- package/components/routes/Logout.js +0 -46
- package/components/routes/action/edit/ActionEditor.d.ts +0 -14
- package/components/routes/action/edit/ActionEditor.js +0 -275
- package/components/routes/action/shared/ActionReportDisplay.d.ts +0 -7
- package/components/routes/action/shared/ActionReportDisplay.js +0 -51
- package/components/routes/action/shared/OperationEntry.d.ts +0 -13
- package/components/routes/action/shared/OperationEntry.js +0 -84
- package/components/routes/action/shared/OperationStep.d.ts +0 -11
- package/components/routes/action/shared/OperationStep.js +0 -151
- package/components/routes/action/useMyActionFunctions.d.ts +0 -19
- package/components/routes/action/useMyActionFunctions.js +0 -201
- package/components/routes/action/view/ActionDetails.d.ts +0 -2
- package/components/routes/action/view/ActionDetails.js +0 -177
- package/components/routes/action/view/ActionSearch.d.ts +0 -3
- package/components/routes/action/view/ActionSearch.js +0 -214
- package/components/routes/action/view/Integrations.d.ts +0 -3
- package/components/routes/action/view/Integrations.js +0 -34
- package/components/routes/admin/users/UserEditor.d.ts +0 -3
- package/components/routes/admin/users/UserEditor.js +0 -57
- package/components/routes/admin/users/UserSearch.d.ts +0 -3
- package/components/routes/admin/users/UserSearch.js +0 -179
- package/components/routes/advanced/QueryBuilder.d.ts +0 -3
- package/components/routes/advanced/QueryBuilder.js +0 -497
- package/components/routes/advanced/QueryEditor.d.ts +0 -14
- package/components/routes/advanced/QueryEditor.js +0 -117
- package/components/routes/advanced/RuleModal.d.ts +0 -7
- package/components/routes/advanced/RuleModal.js +0 -189
- package/components/routes/advanced/eqlCompletionProvider.d.ts +0 -3
- package/components/routes/advanced/eqlCompletionProvider.js +0 -81
- package/components/routes/advanced/eqlTokenProvider.d.ts +0 -8
- package/components/routes/advanced/eqlTokenProvider.js +0 -84
- package/components/routes/advanced/historyCompletionProvider.d.ts +0 -3
- package/components/routes/advanced/historyCompletionProvider.js +0 -51
- package/components/routes/advanced/luceneCompletionProvider.d.ts +0 -3
- package/components/routes/advanced/luceneCompletionProvider.js +0 -91
- package/components/routes/advanced/luceneTokenProvider.d.ts +0 -9
- package/components/routes/advanced/luceneTokenProvider.js +0 -101
- package/components/routes/advanced/yamlCompletionProvider.d.ts +0 -3
- package/components/routes/advanced/yamlCompletionProvider.js +0 -50
- package/components/routes/analytics/AnalyticComments.d.ts +0 -7
- package/components/routes/analytics/AnalyticComments.js +0 -190
- package/components/routes/analytics/AnalyticDetails.d.ts +0 -2
- package/components/routes/analytics/AnalyticDetails.js +0 -254
- package/components/routes/analytics/AnalyticHitComments.d.ts +0 -6
- package/components/routes/analytics/AnalyticHitComments.js +0 -71
- package/components/routes/analytics/AnalyticNotebooks.d.ts +0 -7
- package/components/routes/analytics/AnalyticNotebooks.js +0 -138
- package/components/routes/analytics/AnalyticOverview.d.ts +0 -7
- package/components/routes/analytics/AnalyticOverview.js +0 -103
- package/components/routes/analytics/AnalyticOverviews.d.ts +0 -6
- package/components/routes/analytics/AnalyticOverviews.js +0 -72
- package/components/routes/analytics/AnalyticSearch.d.ts +0 -3
- package/components/routes/analytics/AnalyticSearch.js +0 -233
- package/components/routes/analytics/AnalyticTemplates.d.ts +0 -6
- package/components/routes/analytics/AnalyticTemplates.js +0 -70
- package/components/routes/analytics/RuleView.d.ts +0 -7
- package/components/routes/analytics/RuleView.js +0 -74
- package/components/routes/analytics/TriageSettings.d.ts +0 -7
- package/components/routes/analytics/TriageSettings.js +0 -104
- package/components/routes/analytics/widgets/Assessment.d.ts +0 -5
- package/components/routes/analytics/widgets/Assessment.js +0 -58
- package/components/routes/analytics/widgets/Created.d.ts +0 -5
- package/components/routes/analytics/widgets/Created.js +0 -52
- package/components/routes/analytics/widgets/Detection.d.ts +0 -6
- package/components/routes/analytics/widgets/Detection.js +0 -11
- package/components/routes/analytics/widgets/Escalation.d.ts +0 -6
- package/components/routes/analytics/widgets/Escalation.js +0 -51
- package/components/routes/analytics/widgets/Stacked.d.ts +0 -7
- package/components/routes/analytics/widgets/Stacked.js +0 -87
- package/components/routes/analytics/widgets/Status.d.ts +0 -5
- package/components/routes/analytics/widgets/Status.js +0 -21
- package/components/routes/dossiers/DossierCard.d.ts +0 -8
- package/components/routes/dossiers/DossierCard.js +0 -24
- package/components/routes/dossiers/DossierEditor.d.ts +0 -2
- package/components/routes/dossiers/DossierEditor.js +0 -198
- package/components/routes/dossiers/Dossiers.d.ts +0 -2
- package/components/routes/dossiers/Dossiers.js +0 -146
- package/components/routes/dossiers/LeadEditor.d.ts +0 -13
- package/components/routes/dossiers/LeadEditor.js +0 -119
- package/components/routes/dossiers/LeadForm.d.ts +0 -8
- package/components/routes/dossiers/LeadForm.js +0 -98
- package/components/routes/dossiers/PivotForm.d.ts +0 -13
- package/components/routes/dossiers/PivotForm.js +0 -278
- package/components/routes/help/ActionDocumentation.d.ts +0 -8
- package/components/routes/help/ActionDocumentation.js +0 -62
- package/components/routes/help/ActionIntroductionDocumentation.d.ts +0 -3
- package/components/routes/help/ActionIntroductionDocumentation.js +0 -103
- package/components/routes/help/ApiDocumentation.d.ts +0 -3
- package/components/routes/help/ApiDocumentation.js +0 -139
- package/components/routes/help/AuthDocumentation.d.ts +0 -3
- package/components/routes/help/AuthDocumentation.js +0 -20
- package/components/routes/help/BundleDocumentation.d.ts +0 -3
- package/components/routes/help/BundleDocumentation.js +0 -84
- package/components/routes/help/ClientDocumentation.d.ts +0 -3
- package/components/routes/help/ClientDocumentation.js +0 -20
- package/components/routes/help/Help.d.ts +0 -2
- package/components/routes/help/Help.js +0 -61
- package/components/routes/help/HitBannerDocumentation.d.ts +0 -3
- package/components/routes/help/HitBannerDocumentation.js +0 -62
- package/components/routes/help/HitDocumentation.d.ts +0 -3
- package/components/routes/help/HitDocumentation.js +0 -83
- package/components/routes/help/HitLabelsDocumentation.d.ts +0 -3
- package/components/routes/help/HitLabelsDocumentation.js +0 -46
- package/components/routes/help/HitLinksDocumentation.d.ts +0 -3
- package/components/routes/help/HitLinksDocumentation.js +0 -56
- package/components/routes/help/HitSchemaDocumentation.d.ts +0 -3
- package/components/routes/help/HitSchemaDocumentation.js +0 -159
- package/components/routes/help/NotebookDocumentation.d.ts +0 -3
- package/components/routes/help/NotebookDocumentation.js +0 -19
- package/components/routes/help/OverviewDocumentation.d.ts +0 -3
- package/components/routes/help/OverviewDocumentation.js +0 -15
- package/components/routes/help/RetentionDocumentation.d.ts +0 -3
- package/components/routes/help/RetentionDocumentation.js +0 -48
- package/components/routes/help/SearchDocumentation.d.ts +0 -3
- package/components/routes/help/SearchDocumentation.js +0 -515
- package/components/routes/help/TemplateDocumentation.d.ts +0 -3
- package/components/routes/help/TemplateDocumentation.js +0 -60
- package/components/routes/help/ViewDocumentation.d.ts +0 -3
- package/components/routes/help/ViewDocumentation.js +0 -29
- package/components/routes/help/components/HelpTabs.d.ts +0 -6
- package/components/routes/help/components/HelpTabs.js +0 -40
- package/components/routes/help/markdown/en/actionIntroduction.md.js +0 -1
- package/components/routes/help/markdown/en/authentication.md.js +0 -1
- package/components/routes/help/markdown/en/bundles.md.js +0 -1
- package/components/routes/help/markdown/en/client.md.js +0 -1
- package/components/routes/help/markdown/en/links.md.js +0 -1
- package/components/routes/help/markdown/en/notebook.md.js +0 -1
- package/components/routes/help/markdown/en/retention.md.js +0 -1
- package/components/routes/help/markdown/en/schema.md.js +0 -1
- package/components/routes/help/markdown/en/templates.md.js +0 -1
- package/components/routes/help/markdown/en/views.md.js +0 -1
- package/components/routes/help/markdown/fr/actionIntroduction.md.js +0 -1
- package/components/routes/help/markdown/fr/authentication.md.js +0 -1
- package/components/routes/help/markdown/fr/bundles.md.js +0 -1
- package/components/routes/help/markdown/fr/client.md.js +0 -1
- package/components/routes/help/markdown/fr/links.md.js +0 -1
- package/components/routes/help/markdown/fr/notebook.md.js +0 -1
- package/components/routes/help/markdown/fr/retention.md.js +0 -1
- package/components/routes/help/markdown/fr/schema.md.js +0 -1
- package/components/routes/help/markdown/fr/templates.md.js +0 -1
- package/components/routes/help/markdown/fr/views.md.js +0 -1
- package/components/routes/hits/search/BundleParentMenu.d.ts +0 -6
- package/components/routes/hits/search/BundleParentMenu.js +0 -54
- package/components/routes/hits/search/BundleScroller.d.ts +0 -2
- package/components/routes/hits/search/BundleScroller.js +0 -9
- package/components/routes/hits/search/CustomSort.d.ts +0 -2
- package/components/routes/hits/search/CustomSort.js +0 -88
- package/components/routes/hits/search/HitBrowser.d.ts +0 -3
- package/components/routes/hits/search/HitBrowser.js +0 -258
- package/components/routes/hits/search/HitContextMenu.d.ts +0 -7
- package/components/routes/hits/search/HitContextMenu.js +0 -209
- package/components/routes/hits/search/HitQuery.d.ts +0 -9
- package/components/routes/hits/search/HitQuery.js +0 -237
- package/components/routes/hits/search/InformationPane.d.ts +0 -5
- package/components/routes/hits/search/InformationPane.js +0 -377
- package/components/routes/hits/search/SearchPane.d.ts +0 -3
- package/components/routes/hits/search/SearchPane.js +0 -222
- package/components/routes/hits/search/ViewLink.d.ts +0 -2
- package/components/routes/hits/search/ViewLink.js +0 -77
- package/components/routes/hits/search/grid/AddColumnModal.d.ts +0 -8
- package/components/routes/hits/search/grid/AddColumnModal.js +0 -92
- package/components/routes/hits/search/grid/ColumnHeader.d.ts +0 -8
- package/components/routes/hits/search/grid/ColumnHeader.js +0 -70
- package/components/routes/hits/search/grid/EnhancedCell.d.ts +0 -8
- package/components/routes/hits/search/grid/EnhancedCell.js +0 -50
- package/components/routes/hits/search/grid/HitGrid.d.ts +0 -3
- package/components/routes/hits/search/grid/HitGrid.js +0 -274
- package/components/routes/hits/search/grid/HitRow.d.ts +0 -10
- package/components/routes/hits/search/grid/HitRow.js +0 -102
- package/components/routes/hits/search/shared/CustomSpan.d.ts +0 -2
- package/components/routes/hits/search/shared/CustomSpan.js +0 -54
- package/components/routes/hits/search/shared/HitFilter.d.ts +0 -4
- package/components/routes/hits/search/shared/HitFilter.js +0 -99
- package/components/routes/hits/search/shared/HitSort.d.ts +0 -4
- package/components/routes/hits/search/shared/HitSort.js +0 -91
- package/components/routes/hits/search/shared/QuerySettings.d.ts +0 -6
- package/components/routes/hits/search/shared/QuerySettings.js +0 -41
- package/components/routes/hits/search/shared/SearchSpan.d.ts +0 -5
- package/components/routes/hits/search/shared/SearchSpan.js +0 -59
- package/components/routes/hits/view/HitViewer.d.ts +0 -7
- package/components/routes/hits/view/HitViewer.js +0 -336
- package/components/routes/hits/view/LeadRenderer.d.ts +0 -7
- package/components/routes/hits/view/LeadRenderer.js +0 -34
- package/components/routes/home/AddNewCard.d.ts +0 -7
- package/components/routes/home/AddNewCard.js +0 -216
- package/components/routes/home/AnalyticCard.d.ts +0 -7
- package/components/routes/home/AnalyticCard.js +0 -43
- package/components/routes/home/EntryWrapper.d.ts +0 -7
- package/components/routes/home/EntryWrapper.js +0 -58
- package/components/routes/home/ViewCard.d.ts +0 -7
- package/components/routes/home/ViewCard.js +0 -64
- package/components/routes/home/index.d.ts +0 -3
- package/components/routes/home/index.js +0 -244
- package/components/routes/overviews/OverviewCard.d.ts +0 -8
- package/components/routes/overviews/OverviewCard.js +0 -25
- package/components/routes/overviews/OverviewEditor.d.ts +0 -12
- package/components/routes/overviews/OverviewEditor.js +0 -81
- package/components/routes/overviews/OverviewViewer.d.ts +0 -2
- package/components/routes/overviews/OverviewViewer.js +0 -316
- package/components/routes/overviews/Overviews.d.ts +0 -2
- package/components/routes/overviews/Overviews.js +0 -148
- package/components/routes/overviews/markdownExtendedTokenProvider.d.ts +0 -3
- package/components/routes/overviews/markdownExtendedTokenProvider.js +0 -262
- package/components/routes/overviews/startingTemplate.d.ts +0 -1
- package/components/routes/overviews/startingTemplate.js +0 -36
- package/components/routes/overviews/template/en.md.js +0 -1
- package/components/routes/overviews/template/fr.md.js +0 -1
- package/components/routes/settings/AdminSection.d.ts +0 -3
- package/components/routes/settings/AdminSection.js +0 -13
- package/components/routes/settings/LocalSection.d.ts +0 -3
- package/components/routes/settings/LocalSection.js +0 -127
- package/components/routes/settings/ProfileSection.d.ts +0 -10
- package/components/routes/settings/ProfileSection.js +0 -98
- package/components/routes/settings/SecuritySection.d.ts +0 -10
- package/components/routes/settings/SecuritySection.js +0 -71
- package/components/routes/settings/Settings.d.ts +0 -3
- package/components/routes/settings/Settings.js +0 -56
- package/components/routes/settings/SettingsSection.d.ts +0 -7
- package/components/routes/settings/SettingsSection.js +0 -22
- package/components/routes/templates/TemplateCard.d.ts +0 -7
- package/components/routes/templates/TemplateCard.js +0 -26
- package/components/routes/templates/TemplateDnD.d.ts +0 -8
- package/components/routes/templates/TemplateDnD.js +0 -44
- package/components/routes/templates/TemplateEditor.d.ts +0 -9
- package/components/routes/templates/TemplateEditor.js +0 -104
- package/components/routes/templates/TemplateViewer.d.ts +0 -2
- package/components/routes/templates/TemplateViewer.js +0 -219
- package/components/routes/templates/Templates.d.ts +0 -2
- package/components/routes/templates/Templates.js +0 -156
- package/components/routes/views/ViewComposer.d.ts +0 -3
- package/components/routes/views/ViewComposer.js +0 -276
- package/components/routes/views/Views.d.ts +0 -2
- package/components/routes/views/Views.js +0 -301
- package/hit-CQYBTSKb.js +0 -7
- package/i18n.d.ts +0 -3
- package/i18n.js +0 -1909
- package/images/doggie.png +0 -0
- package/index-BPPnUdfP.js +0 -1157
- package/index.d.ts +0 -0
- package/index.js +0 -13
- package/locales/en/help/main.json.d.ts +0 -16
- package/locales/en/help/search.json.d.ts +0 -189
- package/locales/en/translation.json.d.ts +0 -802
- package/locales/fr/help/main.json.d.ts +0 -16
- package/locales/fr/help/search.json.d.ts +0 -189
- package/locales/fr/translation.json.d.ts +0 -800
- package/manifest.json +0 -16
- package/plugins/HowlerPlugin.d.ts +0 -114
- package/plugins/HowlerPlugin.js +0 -276
- package/plugins/store.d.ts +0 -95
- package/plugins/store.js +0 -105
- package/rest/AxiosClient.d.ts +0 -10
- package/rest/AxiosClient.js +0 -68
- package/rest/FetchClient.d.ts +0 -7
- package/rest/FetchClient.js +0 -19
- package/rest/index.d.ts +0 -6
- package/rest/index.js +0 -1
- package/robots.txt +0 -3
- package/scripts/background.js +0 -14
- package/serve.json +0 -14
- package/setupTests.d.ts +0 -0
- package/tests/MockLocalStorage.d.ts +0 -5
- package/tests/server-handlers.d.ts +0 -5
- package/tests/server.d.ts +0 -3
- package/utils/Throttler.d.ts +0 -9
- package/utils/Throttler.js +0 -43
- package/utils/actionUtils.d.ts +0 -31
- package/utils/actionUtils.js +0 -41
- package/utils/constants.d.ts +0 -79
- package/utils/constants.js +0 -131
- package/utils/hit.json.d.ts +0 -30359
- package/utils/hitFunctions.d.ts +0 -2
- package/utils/hitFunctions.js +0 -12
- package/utils/localStorage.d.ts +0 -21
- package/utils/localStorage.js +0 -35
- package/utils/menuUtils.d.ts +0 -89
- package/utils/menuUtils.js +0 -247
- package/utils/sessionStorage.d.ts +0 -7
- package/utils/sessionStorage.js +0 -50
- package/utils/socketUtils.d.ts +0 -8
- package/utils/socketUtils.js +0 -6
- package/utils/stringUtils.d.ts +0 -8
- package/utils/stringUtils.js +0 -52
- package/utils/utils.d.ts +0 -33
- package/utils/utils.js +0 -193
- package/utils/xsrf.d.ts +0 -2
- package/utils/xsrf.js +0 -12
package/index-BPPnUdfP.js
DELETED
|
@@ -1,1157 +0,0 @@
|
|
|
1
|
-
import { MY_LOCAL_STORAGE_PREFIX, StorageKey } from "./utils/constants.js";
|
|
2
|
-
import AxiosClient from "./rest/AxiosClient.js";
|
|
3
|
-
import urlJoin from "/home/runner/work/howler/howler/ui/node_modules/.pnpm/url-join@5.0.0/node_modules/url-join/lib/url-join.js";
|
|
4
|
-
import { getStored, setStored as setStored$1, saveLoginCredential, removeStored } from "./utils/localStorage.js";
|
|
5
|
-
import { getStored as getStored$1, setStored } from "./utils/sessionStorage.js";
|
|
6
|
-
import getXSRFCookie from "./utils/xsrf.js";
|
|
7
|
-
const uri$V = (id) => {
|
|
8
|
-
return id ? joinAllUri(uri$w(), id, "execute") : joinUri(uri$w(), "execute");
|
|
9
|
-
};
|
|
10
|
-
const post$w = (data) => {
|
|
11
|
-
if (data.action_id) {
|
|
12
|
-
return hpost(uri$V(data.action_id), { request_id: data.request_id, query: data.query });
|
|
13
|
-
} else {
|
|
14
|
-
return hpost(uri$V(), {
|
|
15
|
-
request_id: data.request_id,
|
|
16
|
-
query: data.query,
|
|
17
|
-
operations: data.operations
|
|
18
|
-
});
|
|
19
|
-
}
|
|
20
|
-
};
|
|
21
|
-
const execute = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
22
|
-
__proto__: null,
|
|
23
|
-
post: post$w,
|
|
24
|
-
uri: uri$V
|
|
25
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
26
|
-
const uri$U = () => {
|
|
27
|
-
return joinUri(uri$w(), "operations");
|
|
28
|
-
};
|
|
29
|
-
const get$k = () => {
|
|
30
|
-
return hget(uri$U());
|
|
31
|
-
};
|
|
32
|
-
const operations = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
33
|
-
__proto__: null,
|
|
34
|
-
get: get$k,
|
|
35
|
-
uri: uri$U
|
|
36
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
37
|
-
const uri$T = () => {
|
|
38
|
-
return joinUri(uri$x(), "action");
|
|
39
|
-
};
|
|
40
|
-
const post$v = (request) => {
|
|
41
|
-
return hpost(uri$T(), { ...request || {}, query: (request == null ? void 0 : request.query) || "action_id:*" });
|
|
42
|
-
};
|
|
43
|
-
const action$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
44
|
-
__proto__: null,
|
|
45
|
-
post: post$v,
|
|
46
|
-
uri: uri$T
|
|
47
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
48
|
-
const uri$S = () => {
|
|
49
|
-
return joinUri(uri$x(), "analytic");
|
|
50
|
-
};
|
|
51
|
-
const post$u = (request) => {
|
|
52
|
-
return hpost(uri$S(), { ...request || {}, query: (request == null ? void 0 : request.query) || "analytic_id:*" });
|
|
53
|
-
};
|
|
54
|
-
const analytic$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
55
|
-
__proto__: null,
|
|
56
|
-
post: post$u,
|
|
57
|
-
uri: uri$S
|
|
58
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
59
|
-
const uri$R = () => {
|
|
60
|
-
return joinUri(uri$Q(), "hit");
|
|
61
|
-
};
|
|
62
|
-
const post$t = (request) => {
|
|
63
|
-
return hpost(uri$R(), { ...request || {}, query: (request == null ? void 0 : request.query) || "howler.id:*" });
|
|
64
|
-
};
|
|
65
|
-
const hit$9 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
66
|
-
__proto__: null,
|
|
67
|
-
post: post$t,
|
|
68
|
-
uri: uri$R
|
|
69
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
70
|
-
const uri$Q = () => {
|
|
71
|
-
return joinUri(uri$x(), "count");
|
|
72
|
-
};
|
|
73
|
-
const index$8 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
74
|
-
__proto__: null,
|
|
75
|
-
hit: hit$9,
|
|
76
|
-
uri: uri$Q
|
|
77
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
78
|
-
const uri$P = () => {
|
|
79
|
-
return joinUri(uri$x(), "dossier");
|
|
80
|
-
};
|
|
81
|
-
const post$s = (request) => {
|
|
82
|
-
return hpost(uri$P(), { ...request || {}, query: (request == null ? void 0 : request.query) || "title:*" });
|
|
83
|
-
};
|
|
84
|
-
const dossier$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
85
|
-
__proto__: null,
|
|
86
|
-
post: post$s,
|
|
87
|
-
uri: uri$P
|
|
88
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
89
|
-
const uri$O = () => {
|
|
90
|
-
return joinUri(uri$N(), "hit");
|
|
91
|
-
};
|
|
92
|
-
const post$r = (request) => {
|
|
93
|
-
return hpost(uri$O(), { ...request || {}, query: (request == null ? void 0 : request.query) || "howler.id:*" });
|
|
94
|
-
};
|
|
95
|
-
const hit$8 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
96
|
-
__proto__: null,
|
|
97
|
-
post: post$r,
|
|
98
|
-
uri: uri$O
|
|
99
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
100
|
-
const uri$N = () => {
|
|
101
|
-
return joinUri(uri$x(), "facet");
|
|
102
|
-
};
|
|
103
|
-
const index$7 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
104
|
-
__proto__: null,
|
|
105
|
-
hit: hit$8,
|
|
106
|
-
uri: uri$N
|
|
107
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
108
|
-
const uri$M = () => {
|
|
109
|
-
return joinUri(uri$K(), "hit");
|
|
110
|
-
};
|
|
111
|
-
const get$j = async () => {
|
|
112
|
-
const response = await hget(uri$M());
|
|
113
|
-
return indexed(response);
|
|
114
|
-
};
|
|
115
|
-
const hit$7 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
116
|
-
__proto__: null,
|
|
117
|
-
get: get$j,
|
|
118
|
-
uri: uri$M
|
|
119
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
120
|
-
const uri$L = () => {
|
|
121
|
-
return joinUri(uri$K(), "user");
|
|
122
|
-
};
|
|
123
|
-
const get$i = async () => {
|
|
124
|
-
const response = await hget(uri$L());
|
|
125
|
-
return indexed(response);
|
|
126
|
-
};
|
|
127
|
-
const user$3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
128
|
-
__proto__: null,
|
|
129
|
-
get: get$i,
|
|
130
|
-
uri: uri$L
|
|
131
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
132
|
-
const uri$K = () => {
|
|
133
|
-
return joinUri(uri$x(), "fields");
|
|
134
|
-
};
|
|
135
|
-
const map = (fields) => {
|
|
136
|
-
return Object.keys(fields).map((key) => ({ ...fields[key], key }));
|
|
137
|
-
};
|
|
138
|
-
const indexed = (fields) => {
|
|
139
|
-
return map(fields).filter((field) => field.indexed);
|
|
140
|
-
};
|
|
141
|
-
const index$6 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
142
|
-
__proto__: null,
|
|
143
|
-
hit: hit$7,
|
|
144
|
-
indexed,
|
|
145
|
-
map,
|
|
146
|
-
uri: uri$K,
|
|
147
|
-
user: user$3
|
|
148
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
149
|
-
const uri$J = (field) => {
|
|
150
|
-
return joinAllUri(uri$H(), "hit", field);
|
|
151
|
-
};
|
|
152
|
-
const post$q = (field, request) => {
|
|
153
|
-
return hpost(uri$J(field), { ...request || {}, query: (request == null ? void 0 : request.query) || "howler.id:*" });
|
|
154
|
-
};
|
|
155
|
-
const hit$6 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
156
|
-
__proto__: null,
|
|
157
|
-
post: post$q,
|
|
158
|
-
uri: uri$J
|
|
159
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
160
|
-
const uri$I = (field) => {
|
|
161
|
-
return joinAllUri(uri$H(), "user", field);
|
|
162
|
-
};
|
|
163
|
-
const post$p = async (field, body) => {
|
|
164
|
-
const response = await hpost(uri$I(field), {
|
|
165
|
-
...body || {},
|
|
166
|
-
query: (body == null ? void 0 : body.query) || "uname:*"
|
|
167
|
-
});
|
|
168
|
-
return {
|
|
169
|
-
...response,
|
|
170
|
-
items: response.items.map((i) => ({
|
|
171
|
-
...i,
|
|
172
|
-
items: i.items.map((_i) => ({
|
|
173
|
-
..._i,
|
|
174
|
-
username: _i.uname
|
|
175
|
-
}))
|
|
176
|
-
}))
|
|
177
|
-
};
|
|
178
|
-
};
|
|
179
|
-
const user$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
180
|
-
__proto__: null,
|
|
181
|
-
post: post$p,
|
|
182
|
-
uri: uri$I
|
|
183
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
184
|
-
const uri$H = () => {
|
|
185
|
-
return joinUri(uri$x(), "grouped");
|
|
186
|
-
};
|
|
187
|
-
const index$5 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
188
|
-
__proto__: null,
|
|
189
|
-
hit: hit$6,
|
|
190
|
-
uri: uri$H,
|
|
191
|
-
user: user$2
|
|
192
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
193
|
-
const uri$G = (field) => {
|
|
194
|
-
return joinAllUri(uri$F(), "hit", field);
|
|
195
|
-
};
|
|
196
|
-
const post$o = (field, request) => {
|
|
197
|
-
return hpost(uri$G(field), { ...request || {}, query: (request == null ? void 0 : request.query) || "howler.id:*" });
|
|
198
|
-
};
|
|
199
|
-
const hit$5 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
200
|
-
__proto__: null,
|
|
201
|
-
post: post$o,
|
|
202
|
-
uri: uri$G
|
|
203
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
204
|
-
const uri$F = () => {
|
|
205
|
-
return joinUri(uri$x(), "histogram");
|
|
206
|
-
};
|
|
207
|
-
const index$4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
208
|
-
__proto__: null,
|
|
209
|
-
hit: hit$5,
|
|
210
|
-
uri: uri$F
|
|
211
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
212
|
-
const uri$E = () => {
|
|
213
|
-
return joinAllUri(uri$x(), "hit", "eql");
|
|
214
|
-
};
|
|
215
|
-
const post$n = (request) => {
|
|
216
|
-
return hpost(uri$E(), { ...request || {}, eql_query: (request == null ? void 0 : request.eql_query) || "any where true" });
|
|
217
|
-
};
|
|
218
|
-
const hit$4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
219
|
-
__proto__: null,
|
|
220
|
-
post: post$n,
|
|
221
|
-
uri: uri$E
|
|
222
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
223
|
-
const uri$D = () => {
|
|
224
|
-
return joinAllUri(uri$x(), "hit", "sigma");
|
|
225
|
-
};
|
|
226
|
-
const post$m = (request) => {
|
|
227
|
-
return hpost(uri$D(), { ...request || {}, sigma: (request == null ? void 0 : request.sigma) || "" });
|
|
228
|
-
};
|
|
229
|
-
const hit$3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
230
|
-
__proto__: null,
|
|
231
|
-
post: post$m,
|
|
232
|
-
uri: uri$D
|
|
233
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
234
|
-
const uri$C = () => {
|
|
235
|
-
return joinUri(uri$x(), "hit");
|
|
236
|
-
};
|
|
237
|
-
const post$l = (request) => {
|
|
238
|
-
return hpost(uri$C(), { ...request || {}, query: (request == null ? void 0 : request.query) || "howler.id:*" });
|
|
239
|
-
};
|
|
240
|
-
const hit$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
241
|
-
__proto__: null,
|
|
242
|
-
eql: hit$4,
|
|
243
|
-
post: post$l,
|
|
244
|
-
sigma: hit$3,
|
|
245
|
-
uri: uri$C
|
|
246
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
247
|
-
const uri$B = () => {
|
|
248
|
-
return joinUri(uri$x(), "overview");
|
|
249
|
-
};
|
|
250
|
-
const post$k = (request) => {
|
|
251
|
-
return hpost(uri$B(), { ...request || {}, query: (request == null ? void 0 : request.query) || "overview_id:*" });
|
|
252
|
-
};
|
|
253
|
-
const overview$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
254
|
-
__proto__: null,
|
|
255
|
-
post: post$k,
|
|
256
|
-
uri: uri$B
|
|
257
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
258
|
-
const uri$A = () => {
|
|
259
|
-
return joinUri(uri$x(), "template");
|
|
260
|
-
};
|
|
261
|
-
const post$j = (request) => {
|
|
262
|
-
return hpost(uri$A(), { ...request || {}, query: (request == null ? void 0 : request.query) || "template_id:*" });
|
|
263
|
-
};
|
|
264
|
-
const template$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
265
|
-
__proto__: null,
|
|
266
|
-
post: post$j,
|
|
267
|
-
uri: uri$A
|
|
268
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
269
|
-
const uri$z = () => {
|
|
270
|
-
return joinUri(uri$x(), "user");
|
|
271
|
-
};
|
|
272
|
-
const post$i = async (request) => {
|
|
273
|
-
const response = await hpost(uri$z(), {
|
|
274
|
-
...request || {},
|
|
275
|
-
query: (request == null ? void 0 : request.query) || "name:*"
|
|
276
|
-
});
|
|
277
|
-
return {
|
|
278
|
-
...response,
|
|
279
|
-
items: response.items.map((i) => ({ ...i, username: i.uname }))
|
|
280
|
-
};
|
|
281
|
-
};
|
|
282
|
-
const user$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
283
|
-
__proto__: null,
|
|
284
|
-
post: post$i,
|
|
285
|
-
uri: uri$z
|
|
286
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
287
|
-
const uri$y = () => {
|
|
288
|
-
return joinUri(uri$x(), "view");
|
|
289
|
-
};
|
|
290
|
-
const post$h = (request) => {
|
|
291
|
-
return hpost(uri$y(), { ...request || {}, query: (request == null ? void 0 : request.query) || "title:*" });
|
|
292
|
-
};
|
|
293
|
-
const view$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
294
|
-
__proto__: null,
|
|
295
|
-
post: post$h,
|
|
296
|
-
uri: uri$y
|
|
297
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
298
|
-
const uri$x = () => {
|
|
299
|
-
return joinUri(uri(), "search");
|
|
300
|
-
};
|
|
301
|
-
const search = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
302
|
-
__proto__: null,
|
|
303
|
-
action: action$1,
|
|
304
|
-
analytic: analytic$1,
|
|
305
|
-
count: index$8,
|
|
306
|
-
dossier: dossier$1,
|
|
307
|
-
facet: index$7,
|
|
308
|
-
fields: index$6,
|
|
309
|
-
grouped: index$5,
|
|
310
|
-
histogram: index$4,
|
|
311
|
-
hit: hit$2,
|
|
312
|
-
overview: overview$1,
|
|
313
|
-
template: template$1,
|
|
314
|
-
uri: uri$x,
|
|
315
|
-
user: user$1,
|
|
316
|
-
view: view$1
|
|
317
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
318
|
-
const uri$w = (id) => {
|
|
319
|
-
return id ? joinAllUri(uri(), "action", id) : joinUri(uri(), "action");
|
|
320
|
-
};
|
|
321
|
-
const get$h = (id) => {
|
|
322
|
-
return post$v({
|
|
323
|
-
query: `action_id:${id}`,
|
|
324
|
-
rows: 1
|
|
325
|
-
}).then((res) => res.items[0]);
|
|
326
|
-
};
|
|
327
|
-
const post$g = (data) => {
|
|
328
|
-
return hpost(uri$w(), data);
|
|
329
|
-
};
|
|
330
|
-
const put$d = (id, data) => {
|
|
331
|
-
return hput(uri$w(id), data);
|
|
332
|
-
};
|
|
333
|
-
const patch = (id, data) => {
|
|
334
|
-
return hpatch(uri$w(id), data);
|
|
335
|
-
};
|
|
336
|
-
const del$f = (id) => {
|
|
337
|
-
return hdelete(uri$w(id));
|
|
338
|
-
};
|
|
339
|
-
const action = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
340
|
-
__proto__: null,
|
|
341
|
-
del: del$f,
|
|
342
|
-
execute,
|
|
343
|
-
get: get$h,
|
|
344
|
-
operations,
|
|
345
|
-
patch,
|
|
346
|
-
post: post$g,
|
|
347
|
-
put: put$d,
|
|
348
|
-
uri: uri$w
|
|
349
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
350
|
-
const uri$v = (analytic2, comment) => {
|
|
351
|
-
return joinUri(uri$u(analytic2, comment), "react");
|
|
352
|
-
};
|
|
353
|
-
const put$c = (analytic2, comment, type) => {
|
|
354
|
-
return hput(uri$v(analytic2, comment), { type });
|
|
355
|
-
};
|
|
356
|
-
const del$e = (analytic2, comment) => {
|
|
357
|
-
return hdelete(uri$v(analytic2, comment));
|
|
358
|
-
};
|
|
359
|
-
const react$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
360
|
-
__proto__: null,
|
|
361
|
-
del: del$e,
|
|
362
|
-
put: put$c,
|
|
363
|
-
uri: uri$v
|
|
364
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
365
|
-
const uri$u = (analytic2, comment) => {
|
|
366
|
-
return comment ? joinAllUri(uri$p(analytic2), "comments", comment) : joinUri(uri$p(analytic2), "comments");
|
|
367
|
-
};
|
|
368
|
-
const get$g = (analytic2, comment) => {
|
|
369
|
-
return hget(uri$u(analytic2, comment));
|
|
370
|
-
};
|
|
371
|
-
const put$b = (analytic2, comment, value) => {
|
|
372
|
-
return hput(uri$u(analytic2, comment), { value });
|
|
373
|
-
};
|
|
374
|
-
const post$f = (analytic2, value, detection) => {
|
|
375
|
-
return hpost(uri$u(analytic2), { value, detection });
|
|
376
|
-
};
|
|
377
|
-
const del$d = (analytic2, comments) => {
|
|
378
|
-
return hdelete(uri$u(analytic2), comments);
|
|
379
|
-
};
|
|
380
|
-
const index$3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
381
|
-
__proto__: null,
|
|
382
|
-
del: del$d,
|
|
383
|
-
get: get$g,
|
|
384
|
-
post: post$f,
|
|
385
|
-
put: put$b,
|
|
386
|
-
react: react$1,
|
|
387
|
-
uri: uri$u
|
|
388
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
389
|
-
const uri$t = (id) => {
|
|
390
|
-
return joinAllUri(uri$p(), id, "favourite");
|
|
391
|
-
};
|
|
392
|
-
const del$c = (id) => {
|
|
393
|
-
return hdelete(uri$t(id));
|
|
394
|
-
};
|
|
395
|
-
const post$e = (id) => {
|
|
396
|
-
return hpost(uri$t(id), {});
|
|
397
|
-
};
|
|
398
|
-
const favourite$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
399
|
-
__proto__: null,
|
|
400
|
-
del: del$c,
|
|
401
|
-
post: post$e,
|
|
402
|
-
uri: uri$t
|
|
403
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
404
|
-
const uri$s = (analytic2) => {
|
|
405
|
-
return joinUri(uri$p(analytic2), "notebooks");
|
|
406
|
-
};
|
|
407
|
-
const post$d = (analytic2, body) => {
|
|
408
|
-
return hpost(uri$s(analytic2), body);
|
|
409
|
-
};
|
|
410
|
-
const del$b = (analytic2, notebooks) => {
|
|
411
|
-
return hdelete(uri$s(analytic2), notebooks);
|
|
412
|
-
};
|
|
413
|
-
const index$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
414
|
-
__proto__: null,
|
|
415
|
-
del: del$b,
|
|
416
|
-
post: post$d,
|
|
417
|
-
uri: uri$s
|
|
418
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
419
|
-
const uri$r = (id) => {
|
|
420
|
-
return joinAllUri(uri$p(), id, "owner");
|
|
421
|
-
};
|
|
422
|
-
const post$c = (id, body) => {
|
|
423
|
-
return hpost(uri$r(id), body);
|
|
424
|
-
};
|
|
425
|
-
const owner = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
426
|
-
__proto__: null,
|
|
427
|
-
post: post$c,
|
|
428
|
-
uri: uri$r
|
|
429
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
430
|
-
const uri$q = () => {
|
|
431
|
-
return joinUri(uri$p(), "rules");
|
|
432
|
-
};
|
|
433
|
-
const post$b = (body) => {
|
|
434
|
-
return hpost(uri$q(), body);
|
|
435
|
-
};
|
|
436
|
-
const rules = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
437
|
-
__proto__: null,
|
|
438
|
-
post: post$b,
|
|
439
|
-
uri: uri$q
|
|
440
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
441
|
-
const uri$p = (id) => {
|
|
442
|
-
return id ? joinAllUri(uri(), "analytic", id) : joinUri(uri(), "analytic");
|
|
443
|
-
};
|
|
444
|
-
const get$f = (id) => {
|
|
445
|
-
return id ? hget(uri$p(id)) : hget(uri$p());
|
|
446
|
-
};
|
|
447
|
-
const put$a = (id, editData) => {
|
|
448
|
-
return hput(uri$p(id), editData);
|
|
449
|
-
};
|
|
450
|
-
const del$a = (id) => {
|
|
451
|
-
return hdelete(uri$p(id));
|
|
452
|
-
};
|
|
453
|
-
const analytic = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
454
|
-
__proto__: null,
|
|
455
|
-
comments: index$3,
|
|
456
|
-
del: del$a,
|
|
457
|
-
favourite: favourite$1,
|
|
458
|
-
get: get$f,
|
|
459
|
-
notebooks: index$2,
|
|
460
|
-
owner,
|
|
461
|
-
put: put$a,
|
|
462
|
-
rules,
|
|
463
|
-
uri: uri$p
|
|
464
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
465
|
-
const uri$o = (apiKeyName) => {
|
|
466
|
-
return apiKeyName ? joinUri(joinUri(uri$m(), "apikey"), apiKeyName) : joinUri(uri$m(), "apikey");
|
|
467
|
-
};
|
|
468
|
-
const post$a = (apiKeyName, priv, expiryDate) => {
|
|
469
|
-
return hpost(uri$o(), { name: apiKeyName, priv, expiry_date: expiryDate });
|
|
470
|
-
};
|
|
471
|
-
const del$9 = (apiKeyName) => {
|
|
472
|
-
return hdelete(uri$o(apiKeyName));
|
|
473
|
-
};
|
|
474
|
-
const apikey = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
475
|
-
__proto__: null,
|
|
476
|
-
del: del$9,
|
|
477
|
-
post: post$a,
|
|
478
|
-
uri: uri$o
|
|
479
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
480
|
-
const uri$n = (searchParams) => {
|
|
481
|
-
return joinUri(uri$m(), "login", searchParams);
|
|
482
|
-
};
|
|
483
|
-
const post$9 = (body) => {
|
|
484
|
-
return hpost(uri$n(), body);
|
|
485
|
-
};
|
|
486
|
-
const get$e = (search2) => {
|
|
487
|
-
const nonce = localStorage.getItem(`${MY_LOCAL_STORAGE_PREFIX}.${StorageKey.LOGIN_NONCE}`);
|
|
488
|
-
if (nonce) {
|
|
489
|
-
search2.set("nonce", JSON.parse(nonce));
|
|
490
|
-
localStorage.removeItem(`${MY_LOCAL_STORAGE_PREFIX}.${StorageKey.LOGIN_NONCE}`);
|
|
491
|
-
}
|
|
492
|
-
return hget(uri$n(), search2);
|
|
493
|
-
};
|
|
494
|
-
const login = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
495
|
-
__proto__: null,
|
|
496
|
-
get: get$e,
|
|
497
|
-
post: post$9,
|
|
498
|
-
uri: uri$n
|
|
499
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
500
|
-
const uri$m = () => {
|
|
501
|
-
return joinUri(uri(), "auth");
|
|
502
|
-
};
|
|
503
|
-
const auth = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
504
|
-
__proto__: null,
|
|
505
|
-
apikey,
|
|
506
|
-
login,
|
|
507
|
-
uri: uri$m
|
|
508
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
509
|
-
const uri$l = () => {
|
|
510
|
-
return joinUri(uri(), "configs");
|
|
511
|
-
};
|
|
512
|
-
const get$d = () => {
|
|
513
|
-
return hget(uri$l());
|
|
514
|
-
};
|
|
515
|
-
const configs = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
516
|
-
__proto__: null,
|
|
517
|
-
get: get$d,
|
|
518
|
-
uri: uri$l
|
|
519
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
520
|
-
const uri$k = (id) => joinAllUri(uri$j(), "hit", id);
|
|
521
|
-
const get$c = (id) => {
|
|
522
|
-
return hget(uri$k(id));
|
|
523
|
-
};
|
|
524
|
-
const hit$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
525
|
-
__proto__: null,
|
|
526
|
-
get: get$c
|
|
527
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
528
|
-
const uri$j = (id) => {
|
|
529
|
-
return id ? joinAllUri(uri(), "dossier", id) : joinUri(uri(), "dossier");
|
|
530
|
-
};
|
|
531
|
-
const get$b = (id) => {
|
|
532
|
-
return hget(uri$j(id));
|
|
533
|
-
};
|
|
534
|
-
const post$8 = (newData) => {
|
|
535
|
-
return hpost(uri$j(), newData);
|
|
536
|
-
};
|
|
537
|
-
const put$9 = (id, dossier2) => {
|
|
538
|
-
return hput(uri$j(id), dossier2);
|
|
539
|
-
};
|
|
540
|
-
const del$8 = (id) => {
|
|
541
|
-
return hdelete(uri$j(id));
|
|
542
|
-
};
|
|
543
|
-
const dossier = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
544
|
-
__proto__: null,
|
|
545
|
-
del: del$8,
|
|
546
|
-
get: get$b,
|
|
547
|
-
hit: hit$1,
|
|
548
|
-
post: post$8,
|
|
549
|
-
put: put$9,
|
|
550
|
-
uri: uri$j
|
|
551
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
552
|
-
const uri$i = () => {
|
|
553
|
-
return joinUri(uri(), "");
|
|
554
|
-
};
|
|
555
|
-
const get$a = () => {
|
|
556
|
-
return hget(uri$i());
|
|
557
|
-
};
|
|
558
|
-
const help = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
559
|
-
__proto__: null,
|
|
560
|
-
get: get$a,
|
|
561
|
-
uri: uri$i
|
|
562
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
563
|
-
const uri$h = (id) => {
|
|
564
|
-
return joinAllUri(uri$b(), id, "assign");
|
|
565
|
-
};
|
|
566
|
-
const put$8 = (id, body) => {
|
|
567
|
-
return hput(uri$h(id), body);
|
|
568
|
-
};
|
|
569
|
-
const assign = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
570
|
-
__proto__: null,
|
|
571
|
-
put: put$8,
|
|
572
|
-
uri: uri$h
|
|
573
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
574
|
-
const uri$g = (hit2, comment) => {
|
|
575
|
-
return joinUri(uri$f(hit2, comment), "react");
|
|
576
|
-
};
|
|
577
|
-
const put$7 = (hit2, comment, type) => {
|
|
578
|
-
return hput(uri$g(hit2, comment), { type });
|
|
579
|
-
};
|
|
580
|
-
const del$7 = (hit2, comment) => {
|
|
581
|
-
return hdelete(uri$g(hit2, comment));
|
|
582
|
-
};
|
|
583
|
-
const react = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
584
|
-
__proto__: null,
|
|
585
|
-
del: del$7,
|
|
586
|
-
put: put$7,
|
|
587
|
-
uri: uri$g
|
|
588
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
589
|
-
const uri$f = (hit2, comment) => {
|
|
590
|
-
return comment ? joinAllUri(uri$b(hit2), "comments", comment) : joinUri(uri$b(hit2), "comments");
|
|
591
|
-
};
|
|
592
|
-
const get$9 = (hit2, comment) => {
|
|
593
|
-
return hget(uri$f(hit2, comment));
|
|
594
|
-
};
|
|
595
|
-
const put$6 = (hit2, comment, value) => {
|
|
596
|
-
return hput(uri$f(hit2, comment), { value });
|
|
597
|
-
};
|
|
598
|
-
const post$7 = (hit2, value) => {
|
|
599
|
-
return hpost(uri$f(hit2), { value });
|
|
600
|
-
};
|
|
601
|
-
const del$6 = (hit2, comments) => {
|
|
602
|
-
return hdelete(uri$f(hit2), comments);
|
|
603
|
-
};
|
|
604
|
-
const index$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
605
|
-
__proto__: null,
|
|
606
|
-
del: del$6,
|
|
607
|
-
get: get$9,
|
|
608
|
-
post: post$7,
|
|
609
|
-
put: put$6,
|
|
610
|
-
react,
|
|
611
|
-
uri: uri$f
|
|
612
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
613
|
-
const uri$e = (id, category) => {
|
|
614
|
-
return joinAllUri(uri$b(), id, "labels", category);
|
|
615
|
-
};
|
|
616
|
-
const put$5 = (id, category, body) => {
|
|
617
|
-
return hput(uri$e(id, category), body);
|
|
618
|
-
};
|
|
619
|
-
const del$5 = (id, category, body) => {
|
|
620
|
-
return hdelete(uri$e(id, category), body);
|
|
621
|
-
};
|
|
622
|
-
const labels = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
623
|
-
__proto__: null,
|
|
624
|
-
del: del$5,
|
|
625
|
-
put: put$5,
|
|
626
|
-
uri: uri$e
|
|
627
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
628
|
-
const uri$d = (id) => {
|
|
629
|
-
return joinAllUri(uri$b(), id, "overwrite");
|
|
630
|
-
};
|
|
631
|
-
const put$4 = (id, body) => {
|
|
632
|
-
return hput(uri$d(id), body);
|
|
633
|
-
};
|
|
634
|
-
const overwrite = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
635
|
-
__proto__: null,
|
|
636
|
-
put: put$4,
|
|
637
|
-
uri: uri$d
|
|
638
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
639
|
-
const uri$c = (id) => {
|
|
640
|
-
return joinAllUri(uri$b(), id, "transition");
|
|
641
|
-
};
|
|
642
|
-
const post$6 = (id, body) => {
|
|
643
|
-
return hpost(uri$c(id), body);
|
|
644
|
-
};
|
|
645
|
-
const transition = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
646
|
-
__proto__: null,
|
|
647
|
-
post: post$6,
|
|
648
|
-
uri: uri$c
|
|
649
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
650
|
-
const uri$b = (id) => {
|
|
651
|
-
return id ? joinAllUri(uri(), "hit", id) : joinUri(uri(), "hit");
|
|
652
|
-
};
|
|
653
|
-
const get$8 = (id, metadata) => {
|
|
654
|
-
const params = new URLSearchParams();
|
|
655
|
-
if (metadata) {
|
|
656
|
-
params.append("metadata", metadata.join(","));
|
|
657
|
-
}
|
|
658
|
-
return hget(uri$b(id), params);
|
|
659
|
-
};
|
|
660
|
-
const post$5 = (hits) => {
|
|
661
|
-
return hpost(uri$b(), hits);
|
|
662
|
-
};
|
|
663
|
-
const del$4 = (ids) => {
|
|
664
|
-
return hdelete(uri$b(), ids);
|
|
665
|
-
};
|
|
666
|
-
const hit = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
667
|
-
__proto__: null,
|
|
668
|
-
assign,
|
|
669
|
-
comments: index$1,
|
|
670
|
-
del: del$4,
|
|
671
|
-
get: get$8,
|
|
672
|
-
labels,
|
|
673
|
-
overwrite,
|
|
674
|
-
post: post$5,
|
|
675
|
-
transition,
|
|
676
|
-
uri: uri$b
|
|
677
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
678
|
-
const uri$a = () => {
|
|
679
|
-
return joinUri(uri$9(), "environments");
|
|
680
|
-
};
|
|
681
|
-
const get$7 = () => {
|
|
682
|
-
return hget(uri$a());
|
|
683
|
-
};
|
|
684
|
-
const environments = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
685
|
-
__proto__: null,
|
|
686
|
-
get: get$7,
|
|
687
|
-
uri: uri$a
|
|
688
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
689
|
-
const uri$9 = () => {
|
|
690
|
-
return joinUri(uri(), "notebook");
|
|
691
|
-
};
|
|
692
|
-
const post$4 = (body) => {
|
|
693
|
-
return hpost(joinUri(uri$9(), "notebook"), body);
|
|
694
|
-
};
|
|
695
|
-
const notebook = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
696
|
-
__proto__: null,
|
|
697
|
-
environments,
|
|
698
|
-
post: post$4,
|
|
699
|
-
uri: uri$9
|
|
700
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
701
|
-
const uri$8 = (id) => {
|
|
702
|
-
return id ? joinAllUri(uri(), "overview", id) : joinUri(uri(), "overview");
|
|
703
|
-
};
|
|
704
|
-
const get$6 = () => {
|
|
705
|
-
return hget(uri$8());
|
|
706
|
-
};
|
|
707
|
-
const post$3 = (newData) => {
|
|
708
|
-
return hpost(uri$8(), newData);
|
|
709
|
-
};
|
|
710
|
-
const put$3 = (id, content) => {
|
|
711
|
-
return hput(uri$8(id), { content });
|
|
712
|
-
};
|
|
713
|
-
const del$3 = (id) => {
|
|
714
|
-
return hdelete(uri$8(id));
|
|
715
|
-
};
|
|
716
|
-
const overview = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
717
|
-
__proto__: null,
|
|
718
|
-
del: del$3,
|
|
719
|
-
get: get$6,
|
|
720
|
-
post: post$3,
|
|
721
|
-
put: put$3,
|
|
722
|
-
uri: uri$8
|
|
723
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
724
|
-
const uri$7 = (id) => {
|
|
725
|
-
return id ? joinAllUri(uri(), "template", id) : joinUri(uri(), "template");
|
|
726
|
-
};
|
|
727
|
-
const get$5 = () => {
|
|
728
|
-
return hget(uri$7());
|
|
729
|
-
};
|
|
730
|
-
const post$2 = (newData) => {
|
|
731
|
-
return hpost(uri$7(), newData);
|
|
732
|
-
};
|
|
733
|
-
const put$2 = (id, newFields) => {
|
|
734
|
-
return hput(uri$7(id), newFields);
|
|
735
|
-
};
|
|
736
|
-
const del$2 = (id) => {
|
|
737
|
-
return hdelete(uri$7(id));
|
|
738
|
-
};
|
|
739
|
-
const template = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
740
|
-
__proto__: null,
|
|
741
|
-
del: del$2,
|
|
742
|
-
get: get$5,
|
|
743
|
-
post: post$2,
|
|
744
|
-
put: put$2,
|
|
745
|
-
uri: uri$7
|
|
746
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
747
|
-
const uri$6 = (username) => {
|
|
748
|
-
return joinUri(joinUri(uri$3(), "avatar"), username);
|
|
749
|
-
};
|
|
750
|
-
const get$4 = (username) => {
|
|
751
|
-
return hget(uri$6(username));
|
|
752
|
-
};
|
|
753
|
-
const index = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
754
|
-
__proto__: null,
|
|
755
|
-
get: get$4,
|
|
756
|
-
uri: uri$6
|
|
757
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
758
|
-
const uri$5 = () => {
|
|
759
|
-
return joinUri(uri$3(), "groups");
|
|
760
|
-
};
|
|
761
|
-
const get$3 = () => {
|
|
762
|
-
return hget(uri$5());
|
|
763
|
-
};
|
|
764
|
-
const groups = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
765
|
-
__proto__: null,
|
|
766
|
-
get: get$3,
|
|
767
|
-
uri: uri$5
|
|
768
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
769
|
-
const uri$4 = () => {
|
|
770
|
-
return joinUri(uri$3(), "whoami");
|
|
771
|
-
};
|
|
772
|
-
const get$2 = () => {
|
|
773
|
-
return hget(uri$4());
|
|
774
|
-
};
|
|
775
|
-
const whoami = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
776
|
-
__proto__: null,
|
|
777
|
-
get: get$2,
|
|
778
|
-
uri: uri$4
|
|
779
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
780
|
-
const uri$3 = (username) => {
|
|
781
|
-
const _uri = joinUri(uri(), "user");
|
|
782
|
-
return username ? joinUri(_uri, username) : _uri;
|
|
783
|
-
};
|
|
784
|
-
const get$1 = (username) => {
|
|
785
|
-
return hget(uri$3(username));
|
|
786
|
-
};
|
|
787
|
-
const put$1 = (username, newData) => {
|
|
788
|
-
return hput(uri$3(username), newData);
|
|
789
|
-
};
|
|
790
|
-
const user = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
791
|
-
__proto__: null,
|
|
792
|
-
avatar: index,
|
|
793
|
-
get: get$1,
|
|
794
|
-
groups,
|
|
795
|
-
put: put$1,
|
|
796
|
-
uri: uri$3,
|
|
797
|
-
whoami
|
|
798
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
799
|
-
const uri$2 = (id) => {
|
|
800
|
-
return joinAllUri(uri$1(), id, "favourite");
|
|
801
|
-
};
|
|
802
|
-
const del$1 = (id) => {
|
|
803
|
-
return hdelete(uri$2(id));
|
|
804
|
-
};
|
|
805
|
-
const post$1 = (id) => {
|
|
806
|
-
return hpost(uri$2(id), {});
|
|
807
|
-
};
|
|
808
|
-
const favourite = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
809
|
-
__proto__: null,
|
|
810
|
-
del: del$1,
|
|
811
|
-
post: post$1,
|
|
812
|
-
uri: uri$2
|
|
813
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
814
|
-
const uri$1 = (id) => {
|
|
815
|
-
return id ? joinAllUri(uri(), "view", id) : joinUri(uri(), "view");
|
|
816
|
-
};
|
|
817
|
-
const get = () => {
|
|
818
|
-
return hget(uri$1());
|
|
819
|
-
};
|
|
820
|
-
const post = (newData) => {
|
|
821
|
-
return hpost(uri$1(), newData);
|
|
822
|
-
};
|
|
823
|
-
const put = (id, partialView) => {
|
|
824
|
-
return hput(uri$1(id), partialView);
|
|
825
|
-
};
|
|
826
|
-
const del = (id) => {
|
|
827
|
-
return hdelete(uri$1(id));
|
|
828
|
-
};
|
|
829
|
-
const view = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
830
|
-
__proto__: null,
|
|
831
|
-
del,
|
|
832
|
-
favourite,
|
|
833
|
-
get,
|
|
834
|
-
post,
|
|
835
|
-
put,
|
|
836
|
-
uri: uri$1
|
|
837
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
838
|
-
const client = new AxiosClient();
|
|
839
|
-
const api = {
|
|
840
|
-
action,
|
|
841
|
-
analytic,
|
|
842
|
-
auth,
|
|
843
|
-
configs,
|
|
844
|
-
dossier,
|
|
845
|
-
help,
|
|
846
|
-
hit,
|
|
847
|
-
overview,
|
|
848
|
-
search,
|
|
849
|
-
template,
|
|
850
|
-
user,
|
|
851
|
-
view,
|
|
852
|
-
notebook
|
|
853
|
-
};
|
|
854
|
-
const uri = () => {
|
|
855
|
-
return "/api/v1";
|
|
856
|
-
};
|
|
857
|
-
const format = (_uri) => {
|
|
858
|
-
return _uri.startsWith(uri()) ? _uri : `${uri()}/${_uri.replace(/\/$/, "")}`;
|
|
859
|
-
};
|
|
860
|
-
const joinParams = (_uri, searchParams) => {
|
|
861
|
-
return `${_uri}${searchParams ? `${_uri.indexOf("?") > 0 ? "&" : "?"}${searchParams.toString()}` : ""}`;
|
|
862
|
-
};
|
|
863
|
-
const joinUri = (uri1, uri2, searchParams) => {
|
|
864
|
-
const _uri = format(urlJoin(uri1, uri2));
|
|
865
|
-
return searchParams ? joinParams(_uri, searchParams) : _uri;
|
|
866
|
-
};
|
|
867
|
-
const joinAllUri = (...urlParts) => {
|
|
868
|
-
return urlJoin(...urlParts);
|
|
869
|
-
};
|
|
870
|
-
const setHeaders = (ifMatch) => {
|
|
871
|
-
const headers = {};
|
|
872
|
-
if (ifMatch) {
|
|
873
|
-
headers["If-Match"] = ifMatch;
|
|
874
|
-
}
|
|
875
|
-
return headers;
|
|
876
|
-
};
|
|
877
|
-
const getEtagUrl = (_uri) => {
|
|
878
|
-
if (_uri.startsWith("/api/v1/hit")) {
|
|
879
|
-
return _uri.replace(/.+hit\/(.+?)$/g, "$1").split("/")[0];
|
|
880
|
-
}
|
|
881
|
-
return _uri;
|
|
882
|
-
};
|
|
883
|
-
const hfetch = async (_uri, method = "get", body, searchParams, requestHeaders) => {
|
|
884
|
-
const authToken = getStored(StorageKey.APP_TOKEN);
|
|
885
|
-
const etags = getStored$1(StorageKey.ETAG) || {};
|
|
886
|
-
const currentObject = etags[getEtagUrl(_uri)] || null;
|
|
887
|
-
requestHeaders = {
|
|
888
|
-
...requestHeaders,
|
|
889
|
-
...currentObject && setHeaders(currentObject),
|
|
890
|
-
"Content-Type": "application/json",
|
|
891
|
-
"X-XSRF-TOKEN": getXSRFCookie()
|
|
892
|
-
};
|
|
893
|
-
if (authToken) {
|
|
894
|
-
requestHeaders = { ...requestHeaders, Authorization: `Bearer ${authToken}` };
|
|
895
|
-
}
|
|
896
|
-
const [json, statusCode, responseHeader] = await client.fetch(
|
|
897
|
-
format(_uri),
|
|
898
|
-
method,
|
|
899
|
-
body,
|
|
900
|
-
searchParams,
|
|
901
|
-
requestHeaders
|
|
902
|
-
);
|
|
903
|
-
if (responseHeader.etag) {
|
|
904
|
-
setStored(StorageKey.ETAG, { ...etags, [getEtagUrl(_uri)]: responseHeader.etag });
|
|
905
|
-
}
|
|
906
|
-
if (!json) {
|
|
907
|
-
return null;
|
|
908
|
-
}
|
|
909
|
-
if (statusCode < 300 || statusCode === 304) {
|
|
910
|
-
return json.api_response;
|
|
911
|
-
}
|
|
912
|
-
if (statusCode === 401) {
|
|
913
|
-
if (!getStored(StorageKey.NEXT_LOCATION)) {
|
|
914
|
-
setStored$1(StorageKey.NEXT_LOCATION, window.location.pathname);
|
|
915
|
-
setStored$1(StorageKey.NEXT_SEARCH, window.location.search);
|
|
916
|
-
}
|
|
917
|
-
if (!_uri.includes("/auth/login") && getStored(StorageKey.REFRESH_TOKEN)) {
|
|
918
|
-
const refreshToken = getStored(StorageKey.REFRESH_TOKEN);
|
|
919
|
-
const provider = getStored(StorageKey.PROVIDER);
|
|
920
|
-
const refreshResponse = await api.auth.login.post({ refresh_token: refreshToken, provider });
|
|
921
|
-
if (refreshResponse) {
|
|
922
|
-
saveLoginCredential(refreshResponse);
|
|
923
|
-
const result = await hfetch(_uri, method, body, searchParams);
|
|
924
|
-
removeStored(StorageKey.NEXT_LOCATION);
|
|
925
|
-
removeStored(StorageKey.NEXT_SEARCH);
|
|
926
|
-
return result;
|
|
927
|
-
}
|
|
928
|
-
}
|
|
929
|
-
saveLoginCredential({});
|
|
930
|
-
if (window.location.pathname !== "/login") {
|
|
931
|
-
window.location.pathname = "/login";
|
|
932
|
-
}
|
|
933
|
-
return;
|
|
934
|
-
}
|
|
935
|
-
throw new Error(
|
|
936
|
-
json.api_error_message || json || `Error while fetching ${_uri} - ${method.toUpperCase()}`,
|
|
937
|
-
{
|
|
938
|
-
cause: json
|
|
939
|
-
}
|
|
940
|
-
);
|
|
941
|
-
};
|
|
942
|
-
const hget = (_uri, searchParams, headers = {}) => {
|
|
943
|
-
return hfetch(_uri, "get", null, searchParams, headers);
|
|
944
|
-
};
|
|
945
|
-
const hpost = (_uri, body, headers = {}) => {
|
|
946
|
-
return hfetch(_uri, "post", body, void 0, headers);
|
|
947
|
-
};
|
|
948
|
-
const hput = (_uri, body, headers = {}) => {
|
|
949
|
-
return hfetch(_uri, "put", body, void 0, headers);
|
|
950
|
-
};
|
|
951
|
-
const hpatch = (_uri, body, headers = {}) => {
|
|
952
|
-
return hfetch(_uri, "patch", body, void 0, headers);
|
|
953
|
-
};
|
|
954
|
-
const hdelete = (_uri, body = null, headers = {}) => {
|
|
955
|
-
return hfetch(_uri, "delete", body, void 0, headers);
|
|
956
|
-
};
|
|
957
|
-
export {
|
|
958
|
-
uri$y as $,
|
|
959
|
-
hit$7 as A,
|
|
960
|
-
user$3 as B,
|
|
961
|
-
uri$J as C,
|
|
962
|
-
post$q as D,
|
|
963
|
-
uri$I as E,
|
|
964
|
-
post$p as F,
|
|
965
|
-
uri$H as G,
|
|
966
|
-
hit$6 as H,
|
|
967
|
-
user$2 as I,
|
|
968
|
-
uri$G as J,
|
|
969
|
-
post$o as K,
|
|
970
|
-
uri$F as L,
|
|
971
|
-
hit$5 as M,
|
|
972
|
-
uri$E as N,
|
|
973
|
-
post$n as O,
|
|
974
|
-
uri$D as P,
|
|
975
|
-
post$m as Q,
|
|
976
|
-
uri$C as R,
|
|
977
|
-
post$l as S,
|
|
978
|
-
hit$4 as T,
|
|
979
|
-
hit$3 as U,
|
|
980
|
-
uri$B as V,
|
|
981
|
-
post$k as W,
|
|
982
|
-
uri$A as X,
|
|
983
|
-
post$j as Y,
|
|
984
|
-
uri$z as Z,
|
|
985
|
-
post$i as _,
|
|
986
|
-
api as a,
|
|
987
|
-
uri$j as a$,
|
|
988
|
-
post$h as a0,
|
|
989
|
-
uri$x as a1,
|
|
990
|
-
action$1 as a2,
|
|
991
|
-
analytic$1 as a3,
|
|
992
|
-
index$8 as a4,
|
|
993
|
-
dossier$1 as a5,
|
|
994
|
-
index$7 as a6,
|
|
995
|
-
index$6 as a7,
|
|
996
|
-
index$5 as a8,
|
|
997
|
-
index$4 as a9,
|
|
998
|
-
post$d as aA,
|
|
999
|
-
del$b as aB,
|
|
1000
|
-
uri$r as aC,
|
|
1001
|
-
post$c as aD,
|
|
1002
|
-
uri$q as aE,
|
|
1003
|
-
post$b as aF,
|
|
1004
|
-
uri$p as aG,
|
|
1005
|
-
get$f as aH,
|
|
1006
|
-
put$a as aI,
|
|
1007
|
-
del$a as aJ,
|
|
1008
|
-
index$3 as aK,
|
|
1009
|
-
favourite$1 as aL,
|
|
1010
|
-
index$2 as aM,
|
|
1011
|
-
owner as aN,
|
|
1012
|
-
rules as aO,
|
|
1013
|
-
uri$o as aP,
|
|
1014
|
-
post$a as aQ,
|
|
1015
|
-
del$9 as aR,
|
|
1016
|
-
uri$n as aS,
|
|
1017
|
-
post$9 as aT,
|
|
1018
|
-
get$e as aU,
|
|
1019
|
-
uri$m as aV,
|
|
1020
|
-
apikey as aW,
|
|
1021
|
-
login as aX,
|
|
1022
|
-
uri$l as aY,
|
|
1023
|
-
get$d as aZ,
|
|
1024
|
-
get$c as a_,
|
|
1025
|
-
hit$2 as aa,
|
|
1026
|
-
overview$1 as ab,
|
|
1027
|
-
template$1 as ac,
|
|
1028
|
-
user$1 as ad,
|
|
1029
|
-
view$1 as ae,
|
|
1030
|
-
uri$w as af,
|
|
1031
|
-
get$h as ag,
|
|
1032
|
-
post$g as ah,
|
|
1033
|
-
put$d as ai,
|
|
1034
|
-
patch as aj,
|
|
1035
|
-
del$f as ak,
|
|
1036
|
-
execute as al,
|
|
1037
|
-
operations as am,
|
|
1038
|
-
uri$v as an,
|
|
1039
|
-
put$c as ao,
|
|
1040
|
-
del$e as ap,
|
|
1041
|
-
uri$u as aq,
|
|
1042
|
-
get$g as ar,
|
|
1043
|
-
put$b as as,
|
|
1044
|
-
post$f as at,
|
|
1045
|
-
del$d as au,
|
|
1046
|
-
react$1 as av,
|
|
1047
|
-
uri$t as aw,
|
|
1048
|
-
del$c as ax,
|
|
1049
|
-
post$e as ay,
|
|
1050
|
-
uri$s as az,
|
|
1051
|
-
uri$U as b,
|
|
1052
|
-
post$1 as b$,
|
|
1053
|
-
get$b as b0,
|
|
1054
|
-
post$8 as b1,
|
|
1055
|
-
put$9 as b2,
|
|
1056
|
-
del$8 as b3,
|
|
1057
|
-
hit$1 as b4,
|
|
1058
|
-
uri$i as b5,
|
|
1059
|
-
get$a as b6,
|
|
1060
|
-
uri$h as b7,
|
|
1061
|
-
put$8 as b8,
|
|
1062
|
-
uri$g as b9,
|
|
1063
|
-
uri$9 as bA,
|
|
1064
|
-
post$4 as bB,
|
|
1065
|
-
environments as bC,
|
|
1066
|
-
uri$8 as bD,
|
|
1067
|
-
get$6 as bE,
|
|
1068
|
-
post$3 as bF,
|
|
1069
|
-
put$3 as bG,
|
|
1070
|
-
del$3 as bH,
|
|
1071
|
-
uri$7 as bI,
|
|
1072
|
-
get$5 as bJ,
|
|
1073
|
-
post$2 as bK,
|
|
1074
|
-
put$2 as bL,
|
|
1075
|
-
del$2 as bM,
|
|
1076
|
-
uri$6 as bN,
|
|
1077
|
-
get$4 as bO,
|
|
1078
|
-
uri$5 as bP,
|
|
1079
|
-
get$3 as bQ,
|
|
1080
|
-
uri$4 as bR,
|
|
1081
|
-
get$2 as bS,
|
|
1082
|
-
uri$3 as bT,
|
|
1083
|
-
get$1 as bU,
|
|
1084
|
-
put$1 as bV,
|
|
1085
|
-
index as bW,
|
|
1086
|
-
groups as bX,
|
|
1087
|
-
whoami as bY,
|
|
1088
|
-
uri$2 as bZ,
|
|
1089
|
-
del$1 as b_,
|
|
1090
|
-
put$7 as ba,
|
|
1091
|
-
del$7 as bb,
|
|
1092
|
-
uri$f as bc,
|
|
1093
|
-
get$9 as bd,
|
|
1094
|
-
put$6 as be,
|
|
1095
|
-
post$7 as bf,
|
|
1096
|
-
del$6 as bg,
|
|
1097
|
-
react as bh,
|
|
1098
|
-
uri$e as bi,
|
|
1099
|
-
put$5 as bj,
|
|
1100
|
-
del$5 as bk,
|
|
1101
|
-
uri$d as bl,
|
|
1102
|
-
put$4 as bm,
|
|
1103
|
-
uri$c as bn,
|
|
1104
|
-
post$6 as bo,
|
|
1105
|
-
uri$b as bp,
|
|
1106
|
-
get$8 as bq,
|
|
1107
|
-
post$5 as br,
|
|
1108
|
-
del$4 as bs,
|
|
1109
|
-
assign as bt,
|
|
1110
|
-
index$1 as bu,
|
|
1111
|
-
labels as bv,
|
|
1112
|
-
overwrite as bw,
|
|
1113
|
-
transition as bx,
|
|
1114
|
-
uri$a as by,
|
|
1115
|
-
get$7 as bz,
|
|
1116
|
-
uri$T as c,
|
|
1117
|
-
uri$1 as c0,
|
|
1118
|
-
get as c1,
|
|
1119
|
-
post as c2,
|
|
1120
|
-
put as c3,
|
|
1121
|
-
del as c4,
|
|
1122
|
-
favourite as c5,
|
|
1123
|
-
uri as c6,
|
|
1124
|
-
joinParams as c7,
|
|
1125
|
-
joinUri as c8,
|
|
1126
|
-
joinAllUri as c9,
|
|
1127
|
-
setHeaders as ca,
|
|
1128
|
-
hfetch as cb,
|
|
1129
|
-
hget as cc,
|
|
1130
|
-
hpost as cd,
|
|
1131
|
-
hput as ce,
|
|
1132
|
-
hpatch as cf,
|
|
1133
|
-
hdelete as cg,
|
|
1134
|
-
post$v as d,
|
|
1135
|
-
uri$S as e,
|
|
1136
|
-
post$u as f,
|
|
1137
|
-
get$k as g,
|
|
1138
|
-
uri$R as h,
|
|
1139
|
-
post$t as i,
|
|
1140
|
-
uri$Q as j,
|
|
1141
|
-
hit$9 as k,
|
|
1142
|
-
uri$P as l,
|
|
1143
|
-
post$s as m,
|
|
1144
|
-
uri$O as n,
|
|
1145
|
-
post$r as o,
|
|
1146
|
-
post$w as p,
|
|
1147
|
-
uri$N as q,
|
|
1148
|
-
hit$8 as r,
|
|
1149
|
-
uri$M as s,
|
|
1150
|
-
get$j as t,
|
|
1151
|
-
uri$V as u,
|
|
1152
|
-
uri$L as v,
|
|
1153
|
-
get$i as w,
|
|
1154
|
-
uri$K as x,
|
|
1155
|
-
map as y,
|
|
1156
|
-
indexed as z
|
|
1157
|
-
};
|