├── .dockerignore ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── .storybook ├── main.js ├── preview-head.html └── preview.tsx ├── .vscode └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── email-templates ├── messages │ ├── action-notification.hbs │ ├── confirm-email.hbs │ ├── forgot-password.hbs │ ├── invite-new-user.hbs │ └── notification.hbs └── partials │ ├── action-button.hbs │ └── layout.hbs ├── index.html ├── interval.d.ts ├── jest.config.js ├── package.json ├── playwright.config.ts ├── postcss.config.js ├── prisma ├── clean-vite-cache-generator.js ├── init.sql ├── schema.prisma ├── seed-consts.ts └── seed.ts ├── public ├── favicon.png ├── open-graph-twitter-1600w.png └── open-graph.png ├── scripts ├── STEPS_TO_RELEASE.md ├── docker-build.sh ├── drop-local-db.sh ├── pkg.sh └── pub.sh ├── src ├── App.tsx ├── components │ ├── APIKeyButton │ │ └── index.tsx │ ├── AccountSettings │ │ ├── EnrollMFAForm.tsx │ │ └── index.tsx │ ├── ActionBreadcrumbs.tsx │ ├── ActionSettings │ │ ├── ArchiveDialog.tsx │ │ ├── General.tsx │ │ ├── Notifications.tsx │ │ ├── Permissions.tsx │ │ └── Schedule.tsx │ ├── ActionsList │ │ ├── ActionsListGroup.tsx │ │ ├── ActionsListItem.tsx │ │ └── index.tsx │ ├── AuthLoadingState.tsx │ ├── AuthPageHeader.tsx │ ├── ChoiceButtons │ │ └── index.tsx │ ├── ChronologicalScrollableFeed.tsx │ ├── CommandBar │ │ ├── MultilineKBarSearch.tsx │ │ ├── index.tsx │ │ └── useCommandBarActions.ts │ ├── Console │ │ └── index.tsx │ ├── ConsoleOnboarding │ │ └── index.tsx │ ├── DashboardContext.tsx │ ├── DashboardLayout │ │ └── index.tsx │ ├── DashboardNav │ │ ├── ControlPanel.tsx │ │ ├── MobileNav.tsx │ │ ├── ModeSwitch.tsx │ │ ├── OrgSwitcher.tsx │ │ ├── index.tsx │ │ └── useControlPanelNav.ts │ ├── DotsSpinner │ │ └── index.tsx │ ├── DropdownMenu │ │ ├── dropdown.css │ │ └── index.tsx │ ├── EmptyState │ │ └── index.tsx │ ├── EnvironmentColor.tsx │ ├── ErrorMessage │ │ └── index.tsx │ ├── FileUploadButton │ │ ├── FileUploadButton.stories.tsx │ │ └── index.tsx │ ├── HelpText │ │ ├── HelpText.stories.tsx │ │ └── index.tsx │ ├── HighlightedCodeBlock │ │ ├── editorTheme.scss │ │ └── index.tsx │ ├── HostStatusIndicator │ │ └── index.tsx │ ├── IVAPIError │ │ └── index.tsx │ ├── IVAlert │ │ └── index.tsx │ ├── IVAvatar │ │ ├── IVAvatar.stories.tsx │ │ └── index.tsx │ ├── IVButton │ │ ├── IVButton.stories.tsx │ │ └── index.tsx │ ├── IVCheckbox │ │ ├── IVCheckbox.stories.tsx │ │ └── index.tsx │ ├── IVConstraintsIndicator │ │ └── index.tsx │ ├── IVDatePicker │ │ ├── IVDatePicker.stories.tsx │ │ ├── datepicker.scss │ │ └── index.tsx │ ├── IVDateTimePicker │ │ ├── CalendarPopover.tsx │ │ ├── DateInput.tsx │ │ ├── IVDateTimePicker.stories.tsx │ │ ├── TimeInput.tsx │ │ ├── datePickerUtils.ts │ │ ├── index.tsx │ │ └── useDateTimePickerState.ts │ ├── IVDialog │ │ ├── IVDialog.stories.tsx │ │ ├── dialog.css │ │ └── index.tsx │ ├── IVInputField │ │ └── index.tsx │ ├── IVMediaGrid │ │ ├── MediaGridItem.tsx │ │ └── index.tsx │ ├── IVRadio │ │ ├── IVRadio.stories.tsx │ │ └── index.tsx │ ├── IVRichTextEditor │ │ ├── IVRichTextEditor.stories.tsx │ │ ├── index.tsx │ │ ├── iv-rich-text-editor.css │ │ └── lazy.tsx │ ├── IVSelect │ │ ├── IVSelect.stories.tsx │ │ ├── async.tsx │ │ └── index.tsx │ ├── IVSpinner │ │ ├── IVSpinner │ │ │ ├── IVSpinner.stories.tsx │ │ │ └── index.tsx │ │ └── index.tsx │ ├── IVStatusPill.tsx │ ├── IVTable │ │ ├── DesktopTable.tsx │ │ ├── IVTable.stories.tsx │ │ ├── TableDownloader.tsx │ │ ├── TableRowMenu.tsx │ │ ├── VerticalTable.tsx │ │ ├── index.tsx │ │ ├── table.css │ │ ├── useTable.ts │ │ └── useTableSerializer.ts │ ├── IVTextArea │ │ ├── IVTextArea.stories.tsx │ │ └── index.tsx │ ├── IVTextInput │ │ ├── IVTextInput.stories.tsx │ │ └── index.tsx │ ├── IVTimePicker │ │ ├── IVTimePicker.stories.tsx │ │ └── index.tsx │ ├── IVToggle │ │ └── index.tsx │ ├── IVTooltip │ │ ├── IVTooltip.stories.tsx │ │ ├── index.tsx │ │ └── tooltip.css │ ├── IVUnstyledButtonOrLink.tsx │ ├── KeyValueTable │ │ ├── KeyValueTable.stories.tsx │ │ └── index.tsx │ ├── KeysList │ │ └── index.tsx │ ├── ListViewToggle.tsx │ ├── LoginRedirect.tsx │ ├── Logo.tsx │ ├── MFAInput.tsx │ ├── MeContext.tsx │ ├── MetadataCardList │ │ ├── MetadataValue.tsx │ │ └── index.tsx │ ├── NavTabs │ │ └── index.tsx │ ├── NotFound.tsx │ ├── NotificationCenter.tsx │ ├── ObjectViewer │ │ ├── index.tsx │ │ └── object-viewer.css │ ├── PageHeading │ │ └── index.tsx │ ├── PageLayout │ │ └── index.tsx │ ├── PageUI │ │ ├── Layout │ │ │ ├── Basic │ │ │ │ └── index.tsx │ │ │ ├── MobileSubnav.tsx │ │ │ ├── Subnav.tsx │ │ │ └── index.tsx │ │ ├── index.tsx │ │ └── usePage.ts │ ├── PermissionSelector │ │ └── index.tsx │ ├── QueuedActionsList │ │ ├── QueuedActionsList.stories.tsx │ │ └── index.tsx │ ├── RenderContext.tsx │ ├── RenderHTML │ │ └── index.tsx │ ├── RenderIOCall │ │ ├── ComponentError.tsx │ │ ├── ComponentRenderer.tsx │ │ ├── index.tsx │ │ └── useInitialValues.ts │ ├── RenderMarkdown │ │ └── index.tsx │ ├── RenderValue │ │ └── index.tsx │ ├── SectionHeading │ │ └── index.tsx │ ├── Sidebar │ │ └── OrgSwitcher.tsx │ ├── SimpleTable │ │ └── index.tsx │ ├── TeamsSelector │ │ └── index.tsx │ ├── TransactionHistory │ │ └── index.tsx │ ├── TransactionUI │ │ ├── ConfirmIdentity │ │ │ └── index.tsx │ │ ├── InputSpreadsheet │ │ │ ├── Importer │ │ │ │ └── index.tsx │ │ │ ├── InputSpreadsheet.stories.tsx │ │ │ ├── SpreadsheetEditor.tsx │ │ │ ├── helpers.ts │ │ │ ├── index.tsx │ │ │ ├── lazy.tsx │ │ │ └── react-contextmenu.css │ │ ├── _presentation │ │ │ ├── CompletionState │ │ │ │ ├── CompletionState.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── ComponentError │ │ │ │ └── index.tsx │ │ │ ├── ControlPanel │ │ │ │ └── index.tsx │ │ │ ├── ErrorState │ │ │ │ └── index.tsx │ │ │ ├── InlineAction │ │ │ │ └── index.tsx │ │ │ ├── LoadingState │ │ │ │ ├── Indeterminate.stories.tsx │ │ │ │ ├── Indeterminate.tsx │ │ │ │ ├── InlineLoading.stories.tsx │ │ │ │ ├── InlineLoading.tsx │ │ │ │ ├── Progress.stories.tsx │ │ │ │ ├── Progress.tsx │ │ │ │ └── index.tsx │ │ │ ├── Logs │ │ │ │ ├── Logs.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── Notifications │ │ │ │ └── index.tsx │ │ │ ├── Result │ │ │ │ └── index.tsx │ │ │ ├── TransactionHeader │ │ │ │ └── index.tsx │ │ │ └── TransactionLayout │ │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── useConsole.ts │ │ ├── useInput.ts │ │ ├── useTransaction.ts │ │ └── useWebSocketClient.tsx │ ├── TransactionsList │ │ └── index.tsx │ ├── Transition.tsx │ ├── Truncate.tsx │ ├── UsersList │ │ └── index.tsx │ ├── WrapOnUnderscores.tsx │ ├── examples │ │ └── FormValidation.stories.tsx │ └── io-methods │ │ ├── Confirm │ │ ├── Confirm.stories.tsx │ │ └── index.tsx │ │ ├── DisplayCode │ │ ├── DisplayCode.stories.tsx │ │ └── index.tsx │ │ ├── DisplayGrid │ │ └── index.tsx │ │ ├── DisplayHTML │ │ ├── DisplayHTML.stories.tsx │ │ ├── index.tsx │ │ ├── lazy.tsx │ │ └── stub.tsx │ │ ├── DisplayHeading │ │ ├── DisplayHeading.stories.tsx │ │ └── index.tsx │ │ ├── DisplayImage │ │ ├── DisplayImage.stories.tsx │ │ └── index.tsx │ │ ├── DisplayLink │ │ ├── DisplayLink.stories.tsx │ │ └── index.tsx │ │ ├── DisplayMarkdown │ │ ├── DisplayMarkdown.stories.tsx │ │ ├── index.tsx │ │ ├── lazy.tsx │ │ └── stub.tsx │ │ ├── DisplayMetadata │ │ ├── DisplayMetadata.stories.tsx │ │ └── index.tsx │ │ ├── DisplayObject │ │ ├── DisplayObject.stories.tsx │ │ └── index.tsx │ │ ├── DisplayProgressIndeterminate │ │ ├── DisplayProgressIndeterminate.stories.tsx │ │ └── index.tsx │ │ ├── DisplayProgressSteps │ │ ├── DisplayProgressSteps.stories.tsx │ │ └── index.tsx │ │ ├── DisplayTable │ │ ├── DisplayTable.stories.tsx │ │ ├── index.tsx │ │ └── useDisplayTableState.ts │ │ ├── DisplayVideo │ │ ├── DisplayVideo.stories.tsx │ │ └── index.tsx │ │ ├── InputBoolean │ │ ├── InputBoolean.stories.tsx │ │ └── index.tsx │ │ ├── InputDate │ │ └── index.tsx │ │ ├── InputDateTime │ │ └── index.tsx │ │ ├── InputEmail │ │ ├── InputEmail.stories.tsx │ │ └── index.tsx │ │ ├── InputNumber │ │ ├── InputNumber.stories.tsx │ │ └── index.tsx │ │ ├── InputRichText │ │ ├── InputRichText.stories.tsx │ │ └── index.tsx │ │ ├── InputSlider │ │ ├── InputSlider.stories.tsx │ │ └── index.tsx │ │ ├── InputText │ │ ├── InputText.stories.tsx │ │ └── index.tsx │ │ ├── InputTime │ │ └── index.tsx │ │ ├── InputURL │ │ └── index.tsx │ │ ├── ListProgress │ │ ├── ListProgress.stories.tsx │ │ └── index.tsx │ │ ├── Search │ │ ├── Search.stories.tsx │ │ └── index.tsx │ │ ├── SelectMultiple │ │ ├── SelectMultiple.stories.tsx │ │ └── index.tsx │ │ ├── SelectSingle │ │ ├── SelectSingle.stories.tsx │ │ └── index.tsx │ │ ├── SelectTable │ │ ├── SelectTable.stories.tsx │ │ ├── index.tsx │ │ └── useSelectTableState.ts │ │ └── UploadFile │ │ ├── UploadFile.stories.tsx │ │ └── index.tsx ├── emails │ ├── action-notification │ │ ├── index.ts │ │ └── preview.ts │ ├── confirm-email │ │ ├── index.ts │ │ └── preview.ts │ ├── forgot-password │ │ ├── index.ts │ │ └── preview.ts │ ├── index.ts │ ├── invite-new-user │ │ ├── index.ts │ │ └── preview.ts │ ├── nodemon.json │ ├── notification │ │ ├── index.ts │ │ └── preview.ts │ ├── preview-server.ts │ └── sender.ts ├── entry.ts ├── env.ts ├── icons │ ├── compiled │ │ ├── Actions.tsx │ │ ├── AddRow.tsx │ │ ├── AddRowAbove.tsx │ │ ├── BulletedList.tsx │ │ ├── Calendar.tsx │ │ ├── Cancel.tsx │ │ ├── CaretDown.tsx │ │ ├── Check.tsx │ │ ├── CheckCircle.tsx │ │ ├── CheckCircleOutline.tsx │ │ ├── ChevronDown.tsx │ │ ├── ChevronLeft.tsx │ │ ├── ChevronRight.tsx │ │ ├── ChevronUp.tsx │ │ ├── CircledPlay.tsx │ │ ├── ClearFormatting.tsx │ │ ├── Clipboard.tsx │ │ ├── Close.tsx │ │ ├── Code.tsx │ │ ├── Copy.tsx │ │ ├── Delete.tsx │ │ ├── DeleteRow.tsx │ │ ├── DownloadsFolder.tsx │ │ ├── ErrorCircle.tsx │ │ ├── ExclamationWarn.tsx │ │ ├── ExternalLink.tsx │ │ ├── Eye.tsx │ │ ├── Folder.tsx │ │ ├── FrownFace.tsx │ │ ├── Github.tsx │ │ ├── Google.tsx │ │ ├── IconSortUp.tsx │ │ ├── Image.tsx │ │ ├── Info.tsx │ │ ├── Invisible.tsx │ │ ├── Link.tsx │ │ ├── Lock.tsx │ │ ├── Menu.tsx │ │ ├── MinusMini.tsx │ │ ├── More.tsx │ │ ├── NumberedList.tsx │ │ ├── Offline.tsx │ │ ├── Ok.tsx │ │ ├── Online.tsx │ │ ├── Play.tsx │ │ ├── PlusMini.tsx │ │ ├── Puzzled.tsx │ │ ├── QuoteLeft.tsx │ │ ├── Redirect.tsx │ │ ├── Redo.tsx │ │ ├── Refresh.tsx │ │ ├── RightArrow.tsx │ │ ├── Rocket.tsx │ │ ├── Schedule.tsx │ │ ├── Search.tsx │ │ ├── Settings.tsx │ │ ├── Slack.tsx │ │ ├── SortDown.tsx │ │ ├── SortUp.tsx │ │ ├── Sparkling.tsx │ │ ├── Subtract.tsx │ │ ├── TailwindChevronDown.tsx │ │ ├── ThumbsDown.tsx │ │ ├── ThumbsUp.tsx │ │ ├── TwitterCircled.tsx │ │ ├── Undo.tsx │ │ ├── UploadsFolder.tsx │ │ ├── User.tsx │ │ └── XCircle.tsx │ ├── manifest.json │ ├── src │ │ ├── actions.svg │ │ ├── add-row-above.svg │ │ ├── add-row.svg │ │ ├── bulleted-list.svg │ │ ├── calendar.svg │ │ ├── cancel.svg │ │ ├── caret-down.svg │ │ ├── check-circle-outline.svg │ │ ├── check-circle.svg │ │ ├── check.svg │ │ ├── chevron-down.svg │ │ ├── chevron-left.svg │ │ ├── chevron-right.svg │ │ ├── chevron-up.svg │ │ ├── circled-play.svg │ │ ├── clear-formatting.svg │ │ ├── clipboard.svg │ │ ├── close.svg │ │ ├── code.svg │ │ ├── copy.svg │ │ ├── delete-row.svg │ │ ├── delete.svg │ │ ├── downloads-folder.svg │ │ ├── error-circle.svg │ │ ├── exclamation-warn.svg │ │ ├── external-link.svg │ │ ├── eye.svg │ │ ├── folder.svg │ │ ├── frown-face.svg │ │ ├── github.svg │ │ ├── google.svg │ │ ├── image.svg │ │ ├── info.svg │ │ ├── invisible.svg │ │ ├── link.svg │ │ ├── lock.svg │ │ ├── menu.svg │ │ ├── minus-mini.svg │ │ ├── more.svg │ │ ├── numbered-list.svg │ │ ├── offline.svg │ │ ├── ok.svg │ │ ├── online.svg │ │ ├── play.svg │ │ ├── plus-mini.svg │ │ ├── puzzled.svg │ │ ├── quote-left.svg │ │ ├── redirect.svg │ │ ├── redo.svg │ │ ├── refresh.svg │ │ ├── right-arrow.svg │ │ ├── rocket.svg │ │ ├── schedule.svg │ │ ├── search.svg │ │ ├── settings.svg │ │ ├── slack.svg │ │ ├── sort-down.svg │ │ ├── sort-up.svg │ │ ├── sparkling.svg │ │ ├── subtract.svg │ │ ├── tailwind-chevron-down.svg │ │ ├── thumbs-down.svg │ │ ├── thumbs-up.svg │ │ ├── twitter-circled.svg │ │ ├── undo.svg │ │ ├── uploads-folder.svg │ │ ├── user.svg │ │ └── x-circle.svg │ └── svgr-template.js ├── main.tsx ├── pages │ ├── accept-invitation.tsx │ ├── authentication-confirmed.tsx │ ├── authentication-not-confirmed.tsx │ ├── component-preview.tsx │ ├── confirm-email.tsx │ ├── confirm-signup │ │ └── [orgSlug].tsx │ ├── dashboard │ │ ├── [orgSlug] │ │ │ ├── [...fallback].tsx │ │ │ ├── account.tsx │ │ │ ├── actions │ │ │ │ └── [...actionSlug].tsx │ │ │ ├── configure │ │ │ │ └── [...actionSlug].tsx │ │ │ ├── details │ │ │ │ └── [...actionSlug].tsx │ │ │ ├── develop │ │ │ │ ├── actions │ │ │ │ │ └── [...actionSlug].tsx │ │ │ │ ├── console │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── keys │ │ │ │ │ └── index.tsx │ │ │ │ └── serverless-endpoints │ │ │ │ │ └── index.tsx │ │ │ ├── history │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── new-organization.tsx │ │ │ ├── organization │ │ │ │ ├── actions.tsx │ │ │ │ ├── environments.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── settings.tsx │ │ │ │ ├── teams │ │ │ │ │ ├── [groupId].tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── users.tsx │ │ │ └── transactions │ │ │ │ ├── [transactionId].tsx │ │ │ │ └── index.tsx │ │ └── index.tsx │ ├── develop │ │ ├── GhostModeConsoleLayout.tsx │ │ └── [orgSlug] │ │ │ ├── actions │ │ │ └── [...actionSlug].tsx │ │ │ └── index.tsx │ ├── enroll-mfa.tsx │ ├── forgot-password.tsx │ ├── index.tsx │ ├── login.tsx │ ├── not-found.tsx │ ├── reset-password.tsx │ ├── signup.tsx │ └── verify-mfa.tsx ├── routes.ts ├── server │ ├── __test__ │ │ ├── auth.test.ts │ │ └── user.test.ts │ ├── api │ │ ├── actions.ts │ │ ├── auth │ │ │ ├── ghost │ │ │ │ ├── generateRandomSlug.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── login.ts │ │ │ ├── logout.ts │ │ │ ├── oauth │ │ │ │ ├── index.ts │ │ │ │ └── slack.ts │ │ │ ├── reset.ts │ │ │ ├── session.ts │ │ │ └── sso │ │ │ │ ├── auth.ts │ │ │ │ ├── callback.ts │ │ │ │ ├── index.ts │ │ │ │ └── sign-in-with-google.ts │ │ ├── hosts.ts │ │ ├── notify.ts │ │ └── workosWebhooks.ts │ ├── auth.ts │ ├── healthCheck.ts │ ├── index.ts │ ├── middleware │ │ └── requestLogger.ts │ ├── prisma.ts │ ├── proxyServerForTesting.ts │ ├── trpc │ │ ├── action.ts │ │ ├── actionGroup.ts │ │ ├── apiKeys.ts │ │ ├── auth.ts │ │ ├── dashboard.ts │ │ ├── environments.ts │ │ ├── group.ts │ │ ├── httpHosts.ts │ │ ├── index.ts │ │ ├── organization.ts │ │ ├── transaction.ts │ │ ├── uploads.ts │ │ ├── user.ts │ │ └── util.ts │ ├── user.ts │ └── utils │ │ ├── __test__ │ │ └── actions.ts │ │ ├── actionSchedule.ts │ │ ├── actions.ts │ │ ├── apiKey.ts │ │ ├── email.ts │ │ ├── featureFlags.ts │ │ ├── ghostMode.ts │ │ ├── hash.ts │ │ ├── hosts.ts │ │ ├── logger.ts │ │ ├── notify.ts │ │ ├── organizations.ts │ │ ├── routes.ts │ │ ├── sdkAlerts.ts │ │ ├── slack.ts │ │ ├── sleep.ts │ │ ├── slugs.ts │ │ ├── transactions.ts │ │ ├── uploads.ts │ │ └── wss.ts ├── styles │ ├── combobox.scss │ ├── context-menu.css │ ├── forms.scss │ └── globals.css ├── utils │ ├── IOComponentError.ts │ ├── __test__ │ │ ├── date.test.ts │ │ ├── slug.test.ts │ │ ├── text.test.ts │ │ └── validate.test.ts │ ├── actionSchedule.ts │ ├── actions.ts │ ├── auth.ts │ ├── color.ts │ ├── componentNameMap.ts │ ├── currency.ts │ ├── date.ts │ ├── deserialize.ts │ ├── email.ts │ ├── environments.ts │ ├── examples.ts │ ├── extractOrgSlug.ts │ ├── featureFlags.ts │ ├── formatters.ts │ ├── getQueuedActionId.ts │ ├── getTextWidth.ts │ ├── isomorphicConsts.ts │ ├── localStorage.ts │ ├── logger.ts │ ├── mockData.ts │ ├── navigation.ts │ ├── navigationHooks.ts │ ├── notify.ts │ ├── number.ts │ ├── organization.ts │ ├── parseActionResult.ts │ ├── permissions.ts │ ├── preventDefaultInputEnter.ts │ ├── queuedActions.ts │ ├── referralSchema.ts │ ├── routes.ts │ ├── sessionStorage.ts │ ├── stringify.ts │ ├── superjson.ts │ ├── text.ts │ ├── throttle.ts │ ├── timezones.ts │ ├── transactions.ts │ ├── trpc │ │ ├── index.ts │ │ └── utils.ts │ ├── types.ts │ ├── ui.ts │ ├── uniqueId.ts │ ├── uploads.ts │ ├── url.ts │ ├── useActionUrlBuilder.ts │ ├── useAnchorScroll.ts │ ├── useBackPath.ts │ ├── useCopyToClipboard.ts │ ├── useDashboardStructure.ts │ ├── useDebounce.ts │ ├── useDisableSelectionWithShiftKey.ts │ ├── useHasSession.ts │ ├── useImageLoaded.ts │ ├── useInput.ts │ ├── useInterval.ts │ ├── useIsFeatureEnabled.ts │ ├── useIsomorphicLocation.ts │ ├── useOrgEnvSwitcher.ts │ ├── useOrgSwitcher.ts │ ├── usePageMenuItems.ts │ ├── usePageVisibility.ts │ ├── usePlatform.ts │ ├── usePrevious.ts │ ├── useQueryParameterState.ts │ ├── useScrollToTop.ts │ ├── useSearchParams.ts │ ├── useShouldWarnOnNavigation.ts │ ├── useStartTransactionUser.ts │ ├── useSubmitFormWithShortcut.ts │ ├── useTransactionAutoFocus.ts │ ├── useTransactionAutoScroll.ts │ ├── useTransactionNavigationWarning.ts │ ├── useWindowSize.ts │ ├── user.ts │ └── validate.ts ├── vite-env.d.ts └── wss │ ├── actionSchedule.ts │ ├── consts.ts │ ├── inApp │ └── wss_state │ │ ├── clients.ts │ │ ├── hosts.ts │ │ └── index.ts │ ├── index.ts │ ├── notify.ts │ ├── processVars.ts │ ├── transactions.ts │ └── wss.ts ├── svgr.config.js ├── tailwind.config.js ├── test ├── _fixtures.ts ├── _setup.ts ├── actions │ ├── displayTable.test.ts │ └── spreadsheet.test.ts ├── app │ ├── actionAccess.test.ts │ ├── console.test.ts │ ├── live.test.ts │ ├── mfa.test.ts │ ├── organizationEnvironments.test.ts │ ├── queuedActions.test.ts │ ├── reconnect.test.ts │ ├── serverless.test.ts │ ├── signup.test.ts │ └── users.test.ts ├── classes │ ├── Signup.ts │ └── Transaction.ts ├── data │ ├── canyon.mp4 │ ├── fail.gif │ ├── mockDb.ts │ ├── spreadsheet.csv │ └── table.ts ├── index.ts ├── releases │ ├── index.ts │ └── main │ │ ├── host.ts │ │ └── transactions.test.ts └── utils │ ├── date.ts │ ├── table.ts │ └── uploads.ts ├── tsconfig.json ├── tsconfig.server.json ├── tsconfig.wss.json ├── vite.config.ts └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | node_modules 3 | dist 4 | .env -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/.storybook/preview-head.html -------------------------------------------------------------------------------- /.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/.storybook/preview.tsx -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.words": ["workos"] 3 | } 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/README.md -------------------------------------------------------------------------------- /email-templates/messages/action-notification.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/email-templates/messages/action-notification.hbs -------------------------------------------------------------------------------- /email-templates/messages/confirm-email.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/email-templates/messages/confirm-email.hbs -------------------------------------------------------------------------------- /email-templates/messages/forgot-password.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/email-templates/messages/forgot-password.hbs -------------------------------------------------------------------------------- /email-templates/messages/invite-new-user.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/email-templates/messages/invite-new-user.hbs -------------------------------------------------------------------------------- /email-templates/messages/notification.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/email-templates/messages/notification.hbs -------------------------------------------------------------------------------- /email-templates/partials/action-button.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/email-templates/partials/action-button.hbs -------------------------------------------------------------------------------- /email-templates/partials/layout.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/email-templates/partials/layout.hbs -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/index.html -------------------------------------------------------------------------------- /interval.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/interval.d.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/clean-vite-cache-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/prisma/clean-vite-cache-generator.js -------------------------------------------------------------------------------- /prisma/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/prisma/init.sql -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /prisma/seed-consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/prisma/seed-consts.ts -------------------------------------------------------------------------------- /prisma/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/prisma/seed.ts -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/open-graph-twitter-1600w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/public/open-graph-twitter-1600w.png -------------------------------------------------------------------------------- /public/open-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/public/open-graph.png -------------------------------------------------------------------------------- /scripts/STEPS_TO_RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/scripts/STEPS_TO_RELEASE.md -------------------------------------------------------------------------------- /scripts/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/scripts/docker-build.sh -------------------------------------------------------------------------------- /scripts/drop-local-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/scripts/drop-local-db.sh -------------------------------------------------------------------------------- /scripts/pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/scripts/pkg.sh -------------------------------------------------------------------------------- /scripts/pub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/scripts/pub.sh -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/APIKeyButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/APIKeyButton/index.tsx -------------------------------------------------------------------------------- /src/components/AccountSettings/EnrollMFAForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/AccountSettings/EnrollMFAForm.tsx -------------------------------------------------------------------------------- /src/components/AccountSettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/AccountSettings/index.tsx -------------------------------------------------------------------------------- /src/components/ActionBreadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/ActionBreadcrumbs.tsx -------------------------------------------------------------------------------- /src/components/ActionSettings/ArchiveDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/ActionSettings/ArchiveDialog.tsx -------------------------------------------------------------------------------- /src/components/ActionSettings/General.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/ActionSettings/General.tsx -------------------------------------------------------------------------------- /src/components/ActionSettings/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/ActionSettings/Notifications.tsx -------------------------------------------------------------------------------- /src/components/ActionSettings/Permissions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/ActionSettings/Permissions.tsx -------------------------------------------------------------------------------- /src/components/ActionSettings/Schedule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/ActionSettings/Schedule.tsx -------------------------------------------------------------------------------- /src/components/ActionsList/ActionsListGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/ActionsList/ActionsListGroup.tsx -------------------------------------------------------------------------------- /src/components/ActionsList/ActionsListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/ActionsList/ActionsListItem.tsx -------------------------------------------------------------------------------- /src/components/ActionsList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/ActionsList/index.tsx -------------------------------------------------------------------------------- /src/components/AuthLoadingState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/AuthLoadingState.tsx -------------------------------------------------------------------------------- /src/components/AuthPageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/AuthPageHeader.tsx -------------------------------------------------------------------------------- /src/components/ChoiceButtons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/ChoiceButtons/index.tsx -------------------------------------------------------------------------------- /src/components/ChronologicalScrollableFeed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/ChronologicalScrollableFeed.tsx -------------------------------------------------------------------------------- /src/components/CommandBar/MultilineKBarSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/CommandBar/MultilineKBarSearch.tsx -------------------------------------------------------------------------------- /src/components/CommandBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/CommandBar/index.tsx -------------------------------------------------------------------------------- /src/components/CommandBar/useCommandBarActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/CommandBar/useCommandBarActions.ts -------------------------------------------------------------------------------- /src/components/Console/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/Console/index.tsx -------------------------------------------------------------------------------- /src/components/ConsoleOnboarding/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/ConsoleOnboarding/index.tsx -------------------------------------------------------------------------------- /src/components/DashboardContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/DashboardContext.tsx -------------------------------------------------------------------------------- /src/components/DashboardLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/DashboardLayout/index.tsx -------------------------------------------------------------------------------- /src/components/DashboardNav/ControlPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/DashboardNav/ControlPanel.tsx -------------------------------------------------------------------------------- /src/components/DashboardNav/MobileNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/DashboardNav/MobileNav.tsx -------------------------------------------------------------------------------- /src/components/DashboardNav/ModeSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/DashboardNav/ModeSwitch.tsx -------------------------------------------------------------------------------- /src/components/DashboardNav/OrgSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/DashboardNav/OrgSwitcher.tsx -------------------------------------------------------------------------------- /src/components/DashboardNav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/DashboardNav/index.tsx -------------------------------------------------------------------------------- /src/components/DashboardNav/useControlPanelNav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/DashboardNav/useControlPanelNav.ts -------------------------------------------------------------------------------- /src/components/DotsSpinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/DotsSpinner/index.tsx -------------------------------------------------------------------------------- /src/components/DropdownMenu/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/DropdownMenu/dropdown.css -------------------------------------------------------------------------------- /src/components/DropdownMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/DropdownMenu/index.tsx -------------------------------------------------------------------------------- /src/components/EmptyState/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/EmptyState/index.tsx -------------------------------------------------------------------------------- /src/components/EnvironmentColor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/EnvironmentColor.tsx -------------------------------------------------------------------------------- /src/components/ErrorMessage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/ErrorMessage/index.tsx -------------------------------------------------------------------------------- /src/components/FileUploadButton/FileUploadButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/FileUploadButton/FileUploadButton.stories.tsx -------------------------------------------------------------------------------- /src/components/FileUploadButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/FileUploadButton/index.tsx -------------------------------------------------------------------------------- /src/components/HelpText/HelpText.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/HelpText/HelpText.stories.tsx -------------------------------------------------------------------------------- /src/components/HelpText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/HelpText/index.tsx -------------------------------------------------------------------------------- /src/components/HighlightedCodeBlock/editorTheme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/HighlightedCodeBlock/editorTheme.scss -------------------------------------------------------------------------------- /src/components/HighlightedCodeBlock/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/HighlightedCodeBlock/index.tsx -------------------------------------------------------------------------------- /src/components/HostStatusIndicator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/HostStatusIndicator/index.tsx -------------------------------------------------------------------------------- /src/components/IVAPIError/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVAPIError/index.tsx -------------------------------------------------------------------------------- /src/components/IVAlert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVAlert/index.tsx -------------------------------------------------------------------------------- /src/components/IVAvatar/IVAvatar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVAvatar/IVAvatar.stories.tsx -------------------------------------------------------------------------------- /src/components/IVAvatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVAvatar/index.tsx -------------------------------------------------------------------------------- /src/components/IVButton/IVButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVButton/IVButton.stories.tsx -------------------------------------------------------------------------------- /src/components/IVButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVButton/index.tsx -------------------------------------------------------------------------------- /src/components/IVCheckbox/IVCheckbox.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVCheckbox/IVCheckbox.stories.tsx -------------------------------------------------------------------------------- /src/components/IVCheckbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVCheckbox/index.tsx -------------------------------------------------------------------------------- /src/components/IVConstraintsIndicator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVConstraintsIndicator/index.tsx -------------------------------------------------------------------------------- /src/components/IVDatePicker/IVDatePicker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVDatePicker/IVDatePicker.stories.tsx -------------------------------------------------------------------------------- /src/components/IVDatePicker/datepicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVDatePicker/datepicker.scss -------------------------------------------------------------------------------- /src/components/IVDatePicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVDatePicker/index.tsx -------------------------------------------------------------------------------- /src/components/IVDateTimePicker/CalendarPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVDateTimePicker/CalendarPopover.tsx -------------------------------------------------------------------------------- /src/components/IVDateTimePicker/DateInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVDateTimePicker/DateInput.tsx -------------------------------------------------------------------------------- /src/components/IVDateTimePicker/IVDateTimePicker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVDateTimePicker/IVDateTimePicker.stories.tsx -------------------------------------------------------------------------------- /src/components/IVDateTimePicker/TimeInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVDateTimePicker/TimeInput.tsx -------------------------------------------------------------------------------- /src/components/IVDateTimePicker/datePickerUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVDateTimePicker/datePickerUtils.ts -------------------------------------------------------------------------------- /src/components/IVDateTimePicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVDateTimePicker/index.tsx -------------------------------------------------------------------------------- /src/components/IVDateTimePicker/useDateTimePickerState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVDateTimePicker/useDateTimePickerState.ts -------------------------------------------------------------------------------- /src/components/IVDialog/IVDialog.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVDialog/IVDialog.stories.tsx -------------------------------------------------------------------------------- /src/components/IVDialog/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVDialog/dialog.css -------------------------------------------------------------------------------- /src/components/IVDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVDialog/index.tsx -------------------------------------------------------------------------------- /src/components/IVInputField/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVInputField/index.tsx -------------------------------------------------------------------------------- /src/components/IVMediaGrid/MediaGridItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVMediaGrid/MediaGridItem.tsx -------------------------------------------------------------------------------- /src/components/IVMediaGrid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVMediaGrid/index.tsx -------------------------------------------------------------------------------- /src/components/IVRadio/IVRadio.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVRadio/IVRadio.stories.tsx -------------------------------------------------------------------------------- /src/components/IVRadio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVRadio/index.tsx -------------------------------------------------------------------------------- /src/components/IVRichTextEditor/IVRichTextEditor.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVRichTextEditor/IVRichTextEditor.stories.tsx -------------------------------------------------------------------------------- /src/components/IVRichTextEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVRichTextEditor/index.tsx -------------------------------------------------------------------------------- /src/components/IVRichTextEditor/iv-rich-text-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVRichTextEditor/iv-rich-text-editor.css -------------------------------------------------------------------------------- /src/components/IVRichTextEditor/lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVRichTextEditor/lazy.tsx -------------------------------------------------------------------------------- /src/components/IVSelect/IVSelect.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVSelect/IVSelect.stories.tsx -------------------------------------------------------------------------------- /src/components/IVSelect/async.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVSelect/async.tsx -------------------------------------------------------------------------------- /src/components/IVSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVSelect/index.tsx -------------------------------------------------------------------------------- /src/components/IVSpinner/IVSpinner/IVSpinner.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVSpinner/IVSpinner/IVSpinner.stories.tsx -------------------------------------------------------------------------------- /src/components/IVSpinner/IVSpinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVSpinner/IVSpinner/index.tsx -------------------------------------------------------------------------------- /src/components/IVSpinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVSpinner/index.tsx -------------------------------------------------------------------------------- /src/components/IVStatusPill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVStatusPill.tsx -------------------------------------------------------------------------------- /src/components/IVTable/DesktopTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVTable/DesktopTable.tsx -------------------------------------------------------------------------------- /src/components/IVTable/IVTable.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVTable/IVTable.stories.tsx -------------------------------------------------------------------------------- /src/components/IVTable/TableDownloader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVTable/TableDownloader.tsx -------------------------------------------------------------------------------- /src/components/IVTable/TableRowMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVTable/TableRowMenu.tsx -------------------------------------------------------------------------------- /src/components/IVTable/VerticalTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVTable/VerticalTable.tsx -------------------------------------------------------------------------------- /src/components/IVTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVTable/index.tsx -------------------------------------------------------------------------------- /src/components/IVTable/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVTable/table.css -------------------------------------------------------------------------------- /src/components/IVTable/useTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVTable/useTable.ts -------------------------------------------------------------------------------- /src/components/IVTable/useTableSerializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVTable/useTableSerializer.ts -------------------------------------------------------------------------------- /src/components/IVTextArea/IVTextArea.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVTextArea/IVTextArea.stories.tsx -------------------------------------------------------------------------------- /src/components/IVTextArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVTextArea/index.tsx -------------------------------------------------------------------------------- /src/components/IVTextInput/IVTextInput.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVTextInput/IVTextInput.stories.tsx -------------------------------------------------------------------------------- /src/components/IVTextInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVTextInput/index.tsx -------------------------------------------------------------------------------- /src/components/IVTimePicker/IVTimePicker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVTimePicker/IVTimePicker.stories.tsx -------------------------------------------------------------------------------- /src/components/IVTimePicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVTimePicker/index.tsx -------------------------------------------------------------------------------- /src/components/IVToggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVToggle/index.tsx -------------------------------------------------------------------------------- /src/components/IVTooltip/IVTooltip.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVTooltip/IVTooltip.stories.tsx -------------------------------------------------------------------------------- /src/components/IVTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVTooltip/index.tsx -------------------------------------------------------------------------------- /src/components/IVTooltip/tooltip.css: -------------------------------------------------------------------------------- 1 | .iv-tooltip[data-enter] > div { 2 | @apply opacity-100 delay-150; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/IVUnstyledButtonOrLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/IVUnstyledButtonOrLink.tsx -------------------------------------------------------------------------------- /src/components/KeyValueTable/KeyValueTable.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/KeyValueTable/KeyValueTable.stories.tsx -------------------------------------------------------------------------------- /src/components/KeyValueTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/KeyValueTable/index.tsx -------------------------------------------------------------------------------- /src/components/KeysList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/KeysList/index.tsx -------------------------------------------------------------------------------- /src/components/ListViewToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/ListViewToggle.tsx -------------------------------------------------------------------------------- /src/components/LoginRedirect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/LoginRedirect.tsx -------------------------------------------------------------------------------- /src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/Logo.tsx -------------------------------------------------------------------------------- /src/components/MFAInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/MFAInput.tsx -------------------------------------------------------------------------------- /src/components/MeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/MeContext.tsx -------------------------------------------------------------------------------- /src/components/MetadataCardList/MetadataValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/MetadataCardList/MetadataValue.tsx -------------------------------------------------------------------------------- /src/components/MetadataCardList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/MetadataCardList/index.tsx -------------------------------------------------------------------------------- /src/components/NavTabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/NavTabs/index.tsx -------------------------------------------------------------------------------- /src/components/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/NotFound.tsx -------------------------------------------------------------------------------- /src/components/NotificationCenter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/NotificationCenter.tsx -------------------------------------------------------------------------------- /src/components/ObjectViewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/ObjectViewer/index.tsx -------------------------------------------------------------------------------- /src/components/ObjectViewer/object-viewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/ObjectViewer/object-viewer.css -------------------------------------------------------------------------------- /src/components/PageHeading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/PageHeading/index.tsx -------------------------------------------------------------------------------- /src/components/PageLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/PageLayout/index.tsx -------------------------------------------------------------------------------- /src/components/PageUI/Layout/Basic/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/PageUI/Layout/Basic/index.tsx -------------------------------------------------------------------------------- /src/components/PageUI/Layout/MobileSubnav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/PageUI/Layout/MobileSubnav.tsx -------------------------------------------------------------------------------- /src/components/PageUI/Layout/Subnav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/PageUI/Layout/Subnav.tsx -------------------------------------------------------------------------------- /src/components/PageUI/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/PageUI/Layout/index.tsx -------------------------------------------------------------------------------- /src/components/PageUI/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/PageUI/index.tsx -------------------------------------------------------------------------------- /src/components/PageUI/usePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/PageUI/usePage.ts -------------------------------------------------------------------------------- /src/components/PermissionSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/PermissionSelector/index.tsx -------------------------------------------------------------------------------- /src/components/QueuedActionsList/QueuedActionsList.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/QueuedActionsList/QueuedActionsList.stories.tsx -------------------------------------------------------------------------------- /src/components/QueuedActionsList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/QueuedActionsList/index.tsx -------------------------------------------------------------------------------- /src/components/RenderContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/RenderContext.tsx -------------------------------------------------------------------------------- /src/components/RenderHTML/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/RenderHTML/index.tsx -------------------------------------------------------------------------------- /src/components/RenderIOCall/ComponentError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/RenderIOCall/ComponentError.tsx -------------------------------------------------------------------------------- /src/components/RenderIOCall/ComponentRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/RenderIOCall/ComponentRenderer.tsx -------------------------------------------------------------------------------- /src/components/RenderIOCall/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/RenderIOCall/index.tsx -------------------------------------------------------------------------------- /src/components/RenderIOCall/useInitialValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/RenderIOCall/useInitialValues.ts -------------------------------------------------------------------------------- /src/components/RenderMarkdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/RenderMarkdown/index.tsx -------------------------------------------------------------------------------- /src/components/RenderValue/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/RenderValue/index.tsx -------------------------------------------------------------------------------- /src/components/SectionHeading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/SectionHeading/index.tsx -------------------------------------------------------------------------------- /src/components/Sidebar/OrgSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/Sidebar/OrgSwitcher.tsx -------------------------------------------------------------------------------- /src/components/SimpleTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/SimpleTable/index.tsx -------------------------------------------------------------------------------- /src/components/TeamsSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TeamsSelector/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionHistory/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionHistory/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/ConfirmIdentity/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/ConfirmIdentity/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/InputSpreadsheet/Importer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/InputSpreadsheet/Importer/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/InputSpreadsheet/InputSpreadsheet.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/InputSpreadsheet/InputSpreadsheet.stories.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/InputSpreadsheet/SpreadsheetEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/InputSpreadsheet/SpreadsheetEditor.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/InputSpreadsheet/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/InputSpreadsheet/helpers.ts -------------------------------------------------------------------------------- /src/components/TransactionUI/InputSpreadsheet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/InputSpreadsheet/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/InputSpreadsheet/lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/InputSpreadsheet/lazy.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/InputSpreadsheet/react-contextmenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/InputSpreadsheet/react-contextmenu.css -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/CompletionState/CompletionState.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/CompletionState/CompletionState.stories.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/CompletionState/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/CompletionState/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/ComponentError/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/ComponentError/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/ControlPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/ControlPanel/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/ErrorState/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/ErrorState/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/InlineAction/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/InlineAction/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/LoadingState/Indeterminate.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/LoadingState/Indeterminate.stories.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/LoadingState/Indeterminate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/LoadingState/Indeterminate.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/LoadingState/InlineLoading.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/LoadingState/InlineLoading.stories.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/LoadingState/InlineLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/LoadingState/InlineLoading.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/LoadingState/Progress.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/LoadingState/Progress.stories.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/LoadingState/Progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/LoadingState/Progress.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/LoadingState/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/LoadingState/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/Logs/Logs.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/Logs/Logs.stories.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/Logs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/Logs/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/Notifications/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/Notifications/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/Result/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/Result/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/TransactionHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/TransactionHeader/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/_presentation/TransactionLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/_presentation/TransactionLayout/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionUI/useConsole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/useConsole.ts -------------------------------------------------------------------------------- /src/components/TransactionUI/useInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/useInput.ts -------------------------------------------------------------------------------- /src/components/TransactionUI/useTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/useTransaction.ts -------------------------------------------------------------------------------- /src/components/TransactionUI/useWebSocketClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionUI/useWebSocketClient.tsx -------------------------------------------------------------------------------- /src/components/TransactionsList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/TransactionsList/index.tsx -------------------------------------------------------------------------------- /src/components/Transition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/Transition.tsx -------------------------------------------------------------------------------- /src/components/Truncate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/Truncate.tsx -------------------------------------------------------------------------------- /src/components/UsersList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/UsersList/index.tsx -------------------------------------------------------------------------------- /src/components/WrapOnUnderscores.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/WrapOnUnderscores.tsx -------------------------------------------------------------------------------- /src/components/examples/FormValidation.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/examples/FormValidation.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/Confirm/Confirm.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/Confirm/Confirm.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/Confirm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/Confirm/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayCode/DisplayCode.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayCode/DisplayCode.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayCode/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayCode/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayGrid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayGrid/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayHTML/DisplayHTML.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayHTML/DisplayHTML.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayHTML/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayHTML/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayHTML/lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayHTML/lazy.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayHTML/stub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayHTML/stub.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayHeading/DisplayHeading.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayHeading/DisplayHeading.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayHeading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayHeading/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayImage/DisplayImage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayImage/DisplayImage.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayImage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayImage/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayLink/DisplayLink.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayLink/DisplayLink.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayLink/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayMarkdown/DisplayMarkdown.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayMarkdown/DisplayMarkdown.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayMarkdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayMarkdown/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayMarkdown/lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayMarkdown/lazy.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayMarkdown/stub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayMarkdown/stub.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayMetadata/DisplayMetadata.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayMetadata/DisplayMetadata.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayMetadata/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayMetadata/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayObject/DisplayObject.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayObject/DisplayObject.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayObject/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayObject/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayProgressIndeterminate/DisplayProgressIndeterminate.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayProgressIndeterminate/DisplayProgressIndeterminate.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayProgressIndeterminate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayProgressIndeterminate/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayProgressSteps/DisplayProgressSteps.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayProgressSteps/DisplayProgressSteps.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayProgressSteps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayProgressSteps/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayTable/DisplayTable.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayTable/DisplayTable.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayTable/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayTable/useDisplayTableState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayTable/useDisplayTableState.ts -------------------------------------------------------------------------------- /src/components/io-methods/DisplayVideo/DisplayVideo.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayVideo/DisplayVideo.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/DisplayVideo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/DisplayVideo/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/InputBoolean/InputBoolean.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/InputBoolean/InputBoolean.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/InputBoolean/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/InputBoolean/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/InputDate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/InputDate/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/InputDateTime/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/InputDateTime/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/InputEmail/InputEmail.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/InputEmail/InputEmail.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/InputEmail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/InputEmail/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/InputNumber/InputNumber.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/InputNumber/InputNumber.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/InputNumber/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/InputNumber/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/InputRichText/InputRichText.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/InputRichText/InputRichText.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/InputRichText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/InputRichText/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/InputSlider/InputSlider.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/InputSlider/InputSlider.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/InputSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/InputSlider/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/InputText/InputText.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/InputText/InputText.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/InputText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/InputText/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/InputTime/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/InputTime/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/InputURL/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/InputURL/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/ListProgress/ListProgress.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/ListProgress/ListProgress.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/ListProgress/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/ListProgress/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/Search/Search.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/Search/Search.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/Search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/Search/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/SelectMultiple/SelectMultiple.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/SelectMultiple/SelectMultiple.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/SelectMultiple/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/SelectMultiple/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/SelectSingle/SelectSingle.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/SelectSingle/SelectSingle.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/SelectSingle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/SelectSingle/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/SelectTable/SelectTable.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/SelectTable/SelectTable.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/SelectTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/SelectTable/index.tsx -------------------------------------------------------------------------------- /src/components/io-methods/SelectTable/useSelectTableState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/SelectTable/useSelectTableState.ts -------------------------------------------------------------------------------- /src/components/io-methods/UploadFile/UploadFile.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/UploadFile/UploadFile.stories.tsx -------------------------------------------------------------------------------- /src/components/io-methods/UploadFile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/components/io-methods/UploadFile/index.tsx -------------------------------------------------------------------------------- /src/emails/action-notification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/emails/action-notification/index.ts -------------------------------------------------------------------------------- /src/emails/action-notification/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/emails/action-notification/preview.ts -------------------------------------------------------------------------------- /src/emails/confirm-email/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/emails/confirm-email/index.ts -------------------------------------------------------------------------------- /src/emails/confirm-email/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/emails/confirm-email/preview.ts -------------------------------------------------------------------------------- /src/emails/forgot-password/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/emails/forgot-password/index.ts -------------------------------------------------------------------------------- /src/emails/forgot-password/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/emails/forgot-password/preview.ts -------------------------------------------------------------------------------- /src/emails/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/emails/index.ts -------------------------------------------------------------------------------- /src/emails/invite-new-user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/emails/invite-new-user/index.ts -------------------------------------------------------------------------------- /src/emails/invite-new-user/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/emails/invite-new-user/preview.ts -------------------------------------------------------------------------------- /src/emails/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/emails/nodemon.json -------------------------------------------------------------------------------- /src/emails/notification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/emails/notification/index.ts -------------------------------------------------------------------------------- /src/emails/notification/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/emails/notification/preview.ts -------------------------------------------------------------------------------- /src/emails/preview-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/emails/preview-server.ts -------------------------------------------------------------------------------- /src/emails/sender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/emails/sender.ts -------------------------------------------------------------------------------- /src/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/entry.ts -------------------------------------------------------------------------------- /src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/env.ts -------------------------------------------------------------------------------- /src/icons/compiled/Actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Actions.tsx -------------------------------------------------------------------------------- /src/icons/compiled/AddRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/AddRow.tsx -------------------------------------------------------------------------------- /src/icons/compiled/AddRowAbove.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/AddRowAbove.tsx -------------------------------------------------------------------------------- /src/icons/compiled/BulletedList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/BulletedList.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Calendar.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Cancel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Cancel.tsx -------------------------------------------------------------------------------- /src/icons/compiled/CaretDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/CaretDown.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Check.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Check.tsx -------------------------------------------------------------------------------- /src/icons/compiled/CheckCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/CheckCircle.tsx -------------------------------------------------------------------------------- /src/icons/compiled/CheckCircleOutline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/CheckCircleOutline.tsx -------------------------------------------------------------------------------- /src/icons/compiled/ChevronDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/ChevronDown.tsx -------------------------------------------------------------------------------- /src/icons/compiled/ChevronLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/ChevronLeft.tsx -------------------------------------------------------------------------------- /src/icons/compiled/ChevronRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/ChevronRight.tsx -------------------------------------------------------------------------------- /src/icons/compiled/ChevronUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/ChevronUp.tsx -------------------------------------------------------------------------------- /src/icons/compiled/CircledPlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/CircledPlay.tsx -------------------------------------------------------------------------------- /src/icons/compiled/ClearFormatting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/ClearFormatting.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Clipboard.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Close.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Close.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Code.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Copy.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Delete.tsx -------------------------------------------------------------------------------- /src/icons/compiled/DeleteRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/DeleteRow.tsx -------------------------------------------------------------------------------- /src/icons/compiled/DownloadsFolder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/DownloadsFolder.tsx -------------------------------------------------------------------------------- /src/icons/compiled/ErrorCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/ErrorCircle.tsx -------------------------------------------------------------------------------- /src/icons/compiled/ExclamationWarn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/ExclamationWarn.tsx -------------------------------------------------------------------------------- /src/icons/compiled/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/ExternalLink.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Eye.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Eye.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Folder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Folder.tsx -------------------------------------------------------------------------------- /src/icons/compiled/FrownFace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/FrownFace.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Github.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Google.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Google.tsx -------------------------------------------------------------------------------- /src/icons/compiled/IconSortUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/IconSortUp.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Image.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Info.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Invisible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Invisible.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Link.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Lock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Lock.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Menu.tsx -------------------------------------------------------------------------------- /src/icons/compiled/MinusMini.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/MinusMini.tsx -------------------------------------------------------------------------------- /src/icons/compiled/More.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/More.tsx -------------------------------------------------------------------------------- /src/icons/compiled/NumberedList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/NumberedList.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Offline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Offline.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Ok.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Ok.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Online.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Online.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Play.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Play.tsx -------------------------------------------------------------------------------- /src/icons/compiled/PlusMini.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/PlusMini.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Puzzled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Puzzled.tsx -------------------------------------------------------------------------------- /src/icons/compiled/QuoteLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/QuoteLeft.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Redirect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Redirect.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Redo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Redo.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Refresh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Refresh.tsx -------------------------------------------------------------------------------- /src/icons/compiled/RightArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/RightArrow.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Rocket.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Rocket.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Schedule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Schedule.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Search.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Settings.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Slack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Slack.tsx -------------------------------------------------------------------------------- /src/icons/compiled/SortDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/SortDown.tsx -------------------------------------------------------------------------------- /src/icons/compiled/SortUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/SortUp.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Sparkling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Sparkling.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Subtract.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Subtract.tsx -------------------------------------------------------------------------------- /src/icons/compiled/TailwindChevronDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/TailwindChevronDown.tsx -------------------------------------------------------------------------------- /src/icons/compiled/ThumbsDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/ThumbsDown.tsx -------------------------------------------------------------------------------- /src/icons/compiled/ThumbsUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/ThumbsUp.tsx -------------------------------------------------------------------------------- /src/icons/compiled/TwitterCircled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/TwitterCircled.tsx -------------------------------------------------------------------------------- /src/icons/compiled/Undo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/Undo.tsx -------------------------------------------------------------------------------- /src/icons/compiled/UploadsFolder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/UploadsFolder.tsx -------------------------------------------------------------------------------- /src/icons/compiled/User.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/User.tsx -------------------------------------------------------------------------------- /src/icons/compiled/XCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/compiled/XCircle.tsx -------------------------------------------------------------------------------- /src/icons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/manifest.json -------------------------------------------------------------------------------- /src/icons/src/actions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/actions.svg -------------------------------------------------------------------------------- /src/icons/src/add-row-above.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/add-row-above.svg -------------------------------------------------------------------------------- /src/icons/src/add-row.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/add-row.svg -------------------------------------------------------------------------------- /src/icons/src/bulleted-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/bulleted-list.svg -------------------------------------------------------------------------------- /src/icons/src/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/calendar.svg -------------------------------------------------------------------------------- /src/icons/src/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/cancel.svg -------------------------------------------------------------------------------- /src/icons/src/caret-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/caret-down.svg -------------------------------------------------------------------------------- /src/icons/src/check-circle-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/check-circle-outline.svg -------------------------------------------------------------------------------- /src/icons/src/check-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/check-circle.svg -------------------------------------------------------------------------------- /src/icons/src/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/check.svg -------------------------------------------------------------------------------- /src/icons/src/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/chevron-down.svg -------------------------------------------------------------------------------- /src/icons/src/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/chevron-left.svg -------------------------------------------------------------------------------- /src/icons/src/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/chevron-right.svg -------------------------------------------------------------------------------- /src/icons/src/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/chevron-up.svg -------------------------------------------------------------------------------- /src/icons/src/circled-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/circled-play.svg -------------------------------------------------------------------------------- /src/icons/src/clear-formatting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/clear-formatting.svg -------------------------------------------------------------------------------- /src/icons/src/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/clipboard.svg -------------------------------------------------------------------------------- /src/icons/src/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/close.svg -------------------------------------------------------------------------------- /src/icons/src/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/code.svg -------------------------------------------------------------------------------- /src/icons/src/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/copy.svg -------------------------------------------------------------------------------- /src/icons/src/delete-row.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/delete-row.svg -------------------------------------------------------------------------------- /src/icons/src/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/delete.svg -------------------------------------------------------------------------------- /src/icons/src/downloads-folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/downloads-folder.svg -------------------------------------------------------------------------------- /src/icons/src/error-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/error-circle.svg -------------------------------------------------------------------------------- /src/icons/src/exclamation-warn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/exclamation-warn.svg -------------------------------------------------------------------------------- /src/icons/src/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/external-link.svg -------------------------------------------------------------------------------- /src/icons/src/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/eye.svg -------------------------------------------------------------------------------- /src/icons/src/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/folder.svg -------------------------------------------------------------------------------- /src/icons/src/frown-face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/frown-face.svg -------------------------------------------------------------------------------- /src/icons/src/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/github.svg -------------------------------------------------------------------------------- /src/icons/src/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/google.svg -------------------------------------------------------------------------------- /src/icons/src/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/image.svg -------------------------------------------------------------------------------- /src/icons/src/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/info.svg -------------------------------------------------------------------------------- /src/icons/src/invisible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/invisible.svg -------------------------------------------------------------------------------- /src/icons/src/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/link.svg -------------------------------------------------------------------------------- /src/icons/src/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/lock.svg -------------------------------------------------------------------------------- /src/icons/src/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/menu.svg -------------------------------------------------------------------------------- /src/icons/src/minus-mini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/minus-mini.svg -------------------------------------------------------------------------------- /src/icons/src/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/more.svg -------------------------------------------------------------------------------- /src/icons/src/numbered-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/numbered-list.svg -------------------------------------------------------------------------------- /src/icons/src/offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/offline.svg -------------------------------------------------------------------------------- /src/icons/src/ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/ok.svg -------------------------------------------------------------------------------- /src/icons/src/online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/online.svg -------------------------------------------------------------------------------- /src/icons/src/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/play.svg -------------------------------------------------------------------------------- /src/icons/src/plus-mini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/plus-mini.svg -------------------------------------------------------------------------------- /src/icons/src/puzzled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/puzzled.svg -------------------------------------------------------------------------------- /src/icons/src/quote-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/quote-left.svg -------------------------------------------------------------------------------- /src/icons/src/redirect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/redirect.svg -------------------------------------------------------------------------------- /src/icons/src/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/redo.svg -------------------------------------------------------------------------------- /src/icons/src/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/refresh.svg -------------------------------------------------------------------------------- /src/icons/src/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/right-arrow.svg -------------------------------------------------------------------------------- /src/icons/src/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/rocket.svg -------------------------------------------------------------------------------- /src/icons/src/schedule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/schedule.svg -------------------------------------------------------------------------------- /src/icons/src/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/search.svg -------------------------------------------------------------------------------- /src/icons/src/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/settings.svg -------------------------------------------------------------------------------- /src/icons/src/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/slack.svg -------------------------------------------------------------------------------- /src/icons/src/sort-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/sort-down.svg -------------------------------------------------------------------------------- /src/icons/src/sort-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/sort-up.svg -------------------------------------------------------------------------------- /src/icons/src/sparkling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/sparkling.svg -------------------------------------------------------------------------------- /src/icons/src/subtract.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/subtract.svg -------------------------------------------------------------------------------- /src/icons/src/tailwind-chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/tailwind-chevron-down.svg -------------------------------------------------------------------------------- /src/icons/src/thumbs-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/thumbs-down.svg -------------------------------------------------------------------------------- /src/icons/src/thumbs-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/thumbs-up.svg -------------------------------------------------------------------------------- /src/icons/src/twitter-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/twitter-circled.svg -------------------------------------------------------------------------------- /src/icons/src/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/undo.svg -------------------------------------------------------------------------------- /src/icons/src/uploads-folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/uploads-folder.svg -------------------------------------------------------------------------------- /src/icons/src/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/user.svg -------------------------------------------------------------------------------- /src/icons/src/x-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/src/x-circle.svg -------------------------------------------------------------------------------- /src/icons/svgr-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/icons/svgr-template.js -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/accept-invitation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/accept-invitation.tsx -------------------------------------------------------------------------------- /src/pages/authentication-confirmed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/authentication-confirmed.tsx -------------------------------------------------------------------------------- /src/pages/authentication-not-confirmed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/authentication-not-confirmed.tsx -------------------------------------------------------------------------------- /src/pages/component-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/component-preview.tsx -------------------------------------------------------------------------------- /src/pages/confirm-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/confirm-email.tsx -------------------------------------------------------------------------------- /src/pages/confirm-signup/[orgSlug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/confirm-signup/[orgSlug].tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/[...fallback].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/[...fallback].tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/account.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/actions/[...actionSlug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/actions/[...actionSlug].tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/configure/[...actionSlug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/configure/[...actionSlug].tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/details/[...actionSlug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/details/[...actionSlug].tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/develop/actions/[...actionSlug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/develop/actions/[...actionSlug].tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/develop/console/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/develop/console/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/develop/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/develop/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/develop/keys/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/develop/keys/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/develop/serverless-endpoints/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/develop/serverless-endpoints/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/history/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/history/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/new-organization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/new-organization.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/organization/actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/organization/actions.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/organization/environments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/organization/environments.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/organization/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/organization/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/organization/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/organization/settings.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/organization/teams/[groupId].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/organization/teams/[groupId].tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/organization/teams/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/organization/teams/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/organization/users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/organization/users.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/transactions/[transactionId].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/transactions/[transactionId].tsx -------------------------------------------------------------------------------- /src/pages/dashboard/[orgSlug]/transactions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/[orgSlug]/transactions/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/dashboard/index.tsx -------------------------------------------------------------------------------- /src/pages/develop/GhostModeConsoleLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/develop/GhostModeConsoleLayout.tsx -------------------------------------------------------------------------------- /src/pages/develop/[orgSlug]/actions/[...actionSlug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/develop/[orgSlug]/actions/[...actionSlug].tsx -------------------------------------------------------------------------------- /src/pages/develop/[orgSlug]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/develop/[orgSlug]/index.tsx -------------------------------------------------------------------------------- /src/pages/enroll-mfa.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/enroll-mfa.tsx -------------------------------------------------------------------------------- /src/pages/forgot-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/forgot-password.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/login.tsx -------------------------------------------------------------------------------- /src/pages/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/not-found.tsx -------------------------------------------------------------------------------- /src/pages/reset-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/reset-password.tsx -------------------------------------------------------------------------------- /src/pages/signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/signup.tsx -------------------------------------------------------------------------------- /src/pages/verify-mfa.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/pages/verify-mfa.tsx -------------------------------------------------------------------------------- /src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/routes.ts -------------------------------------------------------------------------------- /src/server/__test__/auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/__test__/auth.test.ts -------------------------------------------------------------------------------- /src/server/__test__/user.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/__test__/user.test.ts -------------------------------------------------------------------------------- /src/server/api/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/api/actions.ts -------------------------------------------------------------------------------- /src/server/api/auth/ghost/generateRandomSlug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/api/auth/ghost/generateRandomSlug.ts -------------------------------------------------------------------------------- /src/server/api/auth/ghost/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/api/auth/ghost/index.ts -------------------------------------------------------------------------------- /src/server/api/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/api/auth/index.ts -------------------------------------------------------------------------------- /src/server/api/auth/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/api/auth/login.ts -------------------------------------------------------------------------------- /src/server/api/auth/logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/api/auth/logout.ts -------------------------------------------------------------------------------- /src/server/api/auth/oauth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/api/auth/oauth/index.ts -------------------------------------------------------------------------------- /src/server/api/auth/oauth/slack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/api/auth/oauth/slack.ts -------------------------------------------------------------------------------- /src/server/api/auth/reset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/api/auth/reset.ts -------------------------------------------------------------------------------- /src/server/api/auth/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/api/auth/session.ts -------------------------------------------------------------------------------- /src/server/api/auth/sso/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/api/auth/sso/auth.ts -------------------------------------------------------------------------------- /src/server/api/auth/sso/callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/api/auth/sso/callback.ts -------------------------------------------------------------------------------- /src/server/api/auth/sso/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/api/auth/sso/index.ts -------------------------------------------------------------------------------- /src/server/api/auth/sso/sign-in-with-google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/api/auth/sso/sign-in-with-google.ts -------------------------------------------------------------------------------- /src/server/api/hosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/api/hosts.ts -------------------------------------------------------------------------------- /src/server/api/notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/api/notify.ts -------------------------------------------------------------------------------- /src/server/api/workosWebhooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/api/workosWebhooks.ts -------------------------------------------------------------------------------- /src/server/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/auth.ts -------------------------------------------------------------------------------- /src/server/healthCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/healthCheck.ts -------------------------------------------------------------------------------- /src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/index.ts -------------------------------------------------------------------------------- /src/server/middleware/requestLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/middleware/requestLogger.ts -------------------------------------------------------------------------------- /src/server/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/prisma.ts -------------------------------------------------------------------------------- /src/server/proxyServerForTesting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/proxyServerForTesting.ts -------------------------------------------------------------------------------- /src/server/trpc/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/trpc/action.ts -------------------------------------------------------------------------------- /src/server/trpc/actionGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/trpc/actionGroup.ts -------------------------------------------------------------------------------- /src/server/trpc/apiKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/trpc/apiKeys.ts -------------------------------------------------------------------------------- /src/server/trpc/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/trpc/auth.ts -------------------------------------------------------------------------------- /src/server/trpc/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/trpc/dashboard.ts -------------------------------------------------------------------------------- /src/server/trpc/environments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/trpc/environments.ts -------------------------------------------------------------------------------- /src/server/trpc/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/trpc/group.ts -------------------------------------------------------------------------------- /src/server/trpc/httpHosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/trpc/httpHosts.ts -------------------------------------------------------------------------------- /src/server/trpc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/trpc/index.ts -------------------------------------------------------------------------------- /src/server/trpc/organization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/trpc/organization.ts -------------------------------------------------------------------------------- /src/server/trpc/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/trpc/transaction.ts -------------------------------------------------------------------------------- /src/server/trpc/uploads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/trpc/uploads.ts -------------------------------------------------------------------------------- /src/server/trpc/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/trpc/user.ts -------------------------------------------------------------------------------- /src/server/trpc/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/trpc/util.ts -------------------------------------------------------------------------------- /src/server/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/user.ts -------------------------------------------------------------------------------- /src/server/utils/__test__/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/__test__/actions.ts -------------------------------------------------------------------------------- /src/server/utils/actionSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/actionSchedule.ts -------------------------------------------------------------------------------- /src/server/utils/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/actions.ts -------------------------------------------------------------------------------- /src/server/utils/apiKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/apiKey.ts -------------------------------------------------------------------------------- /src/server/utils/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/email.ts -------------------------------------------------------------------------------- /src/server/utils/featureFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/featureFlags.ts -------------------------------------------------------------------------------- /src/server/utils/ghostMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/ghostMode.ts -------------------------------------------------------------------------------- /src/server/utils/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/hash.ts -------------------------------------------------------------------------------- /src/server/utils/hosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/hosts.ts -------------------------------------------------------------------------------- /src/server/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/logger.ts -------------------------------------------------------------------------------- /src/server/utils/notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/notify.ts -------------------------------------------------------------------------------- /src/server/utils/organizations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/organizations.ts -------------------------------------------------------------------------------- /src/server/utils/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/routes.ts -------------------------------------------------------------------------------- /src/server/utils/sdkAlerts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/sdkAlerts.ts -------------------------------------------------------------------------------- /src/server/utils/slack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/slack.ts -------------------------------------------------------------------------------- /src/server/utils/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/sleep.ts -------------------------------------------------------------------------------- /src/server/utils/slugs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/slugs.ts -------------------------------------------------------------------------------- /src/server/utils/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/transactions.ts -------------------------------------------------------------------------------- /src/server/utils/uploads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/uploads.ts -------------------------------------------------------------------------------- /src/server/utils/wss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/server/utils/wss.ts -------------------------------------------------------------------------------- /src/styles/combobox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/styles/combobox.scss -------------------------------------------------------------------------------- /src/styles/context-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/styles/context-menu.css -------------------------------------------------------------------------------- /src/styles/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/styles/forms.scss -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/utils/IOComponentError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/IOComponentError.ts -------------------------------------------------------------------------------- /src/utils/__test__/date.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/__test__/date.test.ts -------------------------------------------------------------------------------- /src/utils/__test__/slug.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/__test__/slug.test.ts -------------------------------------------------------------------------------- /src/utils/__test__/text.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/__test__/text.test.ts -------------------------------------------------------------------------------- /src/utils/__test__/validate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/__test__/validate.test.ts -------------------------------------------------------------------------------- /src/utils/actionSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/actionSchedule.ts -------------------------------------------------------------------------------- /src/utils/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/actions.ts -------------------------------------------------------------------------------- /src/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/auth.ts -------------------------------------------------------------------------------- /src/utils/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/color.ts -------------------------------------------------------------------------------- /src/utils/componentNameMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/componentNameMap.ts -------------------------------------------------------------------------------- /src/utils/currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/currency.ts -------------------------------------------------------------------------------- /src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/date.ts -------------------------------------------------------------------------------- /src/utils/deserialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/deserialize.ts -------------------------------------------------------------------------------- /src/utils/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/email.ts -------------------------------------------------------------------------------- /src/utils/environments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/environments.ts -------------------------------------------------------------------------------- /src/utils/examples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/examples.ts -------------------------------------------------------------------------------- /src/utils/extractOrgSlug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/extractOrgSlug.ts -------------------------------------------------------------------------------- /src/utils/featureFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/featureFlags.ts -------------------------------------------------------------------------------- /src/utils/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/formatters.ts -------------------------------------------------------------------------------- /src/utils/getQueuedActionId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/getQueuedActionId.ts -------------------------------------------------------------------------------- /src/utils/getTextWidth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/getTextWidth.ts -------------------------------------------------------------------------------- /src/utils/isomorphicConsts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/isomorphicConsts.ts -------------------------------------------------------------------------------- /src/utils/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/localStorage.ts -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /src/utils/mockData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/mockData.ts -------------------------------------------------------------------------------- /src/utils/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/navigation.ts -------------------------------------------------------------------------------- /src/utils/navigationHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/navigationHooks.ts -------------------------------------------------------------------------------- /src/utils/notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/notify.ts -------------------------------------------------------------------------------- /src/utils/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/number.ts -------------------------------------------------------------------------------- /src/utils/organization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/organization.ts -------------------------------------------------------------------------------- /src/utils/parseActionResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/parseActionResult.ts -------------------------------------------------------------------------------- /src/utils/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/permissions.ts -------------------------------------------------------------------------------- /src/utils/preventDefaultInputEnter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/preventDefaultInputEnter.ts -------------------------------------------------------------------------------- /src/utils/queuedActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/queuedActions.ts -------------------------------------------------------------------------------- /src/utils/referralSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/referralSchema.ts -------------------------------------------------------------------------------- /src/utils/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/routes.ts -------------------------------------------------------------------------------- /src/utils/sessionStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/sessionStorage.ts -------------------------------------------------------------------------------- /src/utils/stringify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/stringify.ts -------------------------------------------------------------------------------- /src/utils/superjson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/superjson.ts -------------------------------------------------------------------------------- /src/utils/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/text.ts -------------------------------------------------------------------------------- /src/utils/throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/throttle.ts -------------------------------------------------------------------------------- /src/utils/timezones.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/timezones.ts -------------------------------------------------------------------------------- /src/utils/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/transactions.ts -------------------------------------------------------------------------------- /src/utils/trpc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/trpc/index.ts -------------------------------------------------------------------------------- /src/utils/trpc/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/trpc/utils.ts -------------------------------------------------------------------------------- /src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/types.ts -------------------------------------------------------------------------------- /src/utils/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/ui.ts -------------------------------------------------------------------------------- /src/utils/uniqueId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/uniqueId.ts -------------------------------------------------------------------------------- /src/utils/uploads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/uploads.ts -------------------------------------------------------------------------------- /src/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/url.ts -------------------------------------------------------------------------------- /src/utils/useActionUrlBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useActionUrlBuilder.ts -------------------------------------------------------------------------------- /src/utils/useAnchorScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useAnchorScroll.ts -------------------------------------------------------------------------------- /src/utils/useBackPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useBackPath.ts -------------------------------------------------------------------------------- /src/utils/useCopyToClipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useCopyToClipboard.ts -------------------------------------------------------------------------------- /src/utils/useDashboardStructure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useDashboardStructure.ts -------------------------------------------------------------------------------- /src/utils/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useDebounce.ts -------------------------------------------------------------------------------- /src/utils/useDisableSelectionWithShiftKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useDisableSelectionWithShiftKey.ts -------------------------------------------------------------------------------- /src/utils/useHasSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useHasSession.ts -------------------------------------------------------------------------------- /src/utils/useImageLoaded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useImageLoaded.ts -------------------------------------------------------------------------------- /src/utils/useInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useInput.ts -------------------------------------------------------------------------------- /src/utils/useInterval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useInterval.ts -------------------------------------------------------------------------------- /src/utils/useIsFeatureEnabled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useIsFeatureEnabled.ts -------------------------------------------------------------------------------- /src/utils/useIsomorphicLocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useIsomorphicLocation.ts -------------------------------------------------------------------------------- /src/utils/useOrgEnvSwitcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useOrgEnvSwitcher.ts -------------------------------------------------------------------------------- /src/utils/useOrgSwitcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useOrgSwitcher.ts -------------------------------------------------------------------------------- /src/utils/usePageMenuItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/usePageMenuItems.ts -------------------------------------------------------------------------------- /src/utils/usePageVisibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/usePageVisibility.ts -------------------------------------------------------------------------------- /src/utils/usePlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/usePlatform.ts -------------------------------------------------------------------------------- /src/utils/usePrevious.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/usePrevious.ts -------------------------------------------------------------------------------- /src/utils/useQueryParameterState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useQueryParameterState.ts -------------------------------------------------------------------------------- /src/utils/useScrollToTop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useScrollToTop.ts -------------------------------------------------------------------------------- /src/utils/useSearchParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useSearchParams.ts -------------------------------------------------------------------------------- /src/utils/useShouldWarnOnNavigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useShouldWarnOnNavigation.ts -------------------------------------------------------------------------------- /src/utils/useStartTransactionUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useStartTransactionUser.ts -------------------------------------------------------------------------------- /src/utils/useSubmitFormWithShortcut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useSubmitFormWithShortcut.ts -------------------------------------------------------------------------------- /src/utils/useTransactionAutoFocus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useTransactionAutoFocus.ts -------------------------------------------------------------------------------- /src/utils/useTransactionAutoScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useTransactionAutoScroll.ts -------------------------------------------------------------------------------- /src/utils/useTransactionNavigationWarning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useTransactionNavigationWarning.ts -------------------------------------------------------------------------------- /src/utils/useWindowSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/useWindowSize.ts -------------------------------------------------------------------------------- /src/utils/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/user.ts -------------------------------------------------------------------------------- /src/utils/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/utils/validate.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/wss/actionSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/wss/actionSchedule.ts -------------------------------------------------------------------------------- /src/wss/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/wss/consts.ts -------------------------------------------------------------------------------- /src/wss/inApp/wss_state/clients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/wss/inApp/wss_state/clients.ts -------------------------------------------------------------------------------- /src/wss/inApp/wss_state/hosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/wss/inApp/wss_state/hosts.ts -------------------------------------------------------------------------------- /src/wss/inApp/wss_state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/wss/inApp/wss_state/index.ts -------------------------------------------------------------------------------- /src/wss/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/wss/index.ts -------------------------------------------------------------------------------- /src/wss/notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/wss/notify.ts -------------------------------------------------------------------------------- /src/wss/processVars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/wss/processVars.ts -------------------------------------------------------------------------------- /src/wss/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/wss/transactions.ts -------------------------------------------------------------------------------- /src/wss/wss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/src/wss/wss.ts -------------------------------------------------------------------------------- /svgr.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/svgr.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /test/_fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/_fixtures.ts -------------------------------------------------------------------------------- /test/_setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/_setup.ts -------------------------------------------------------------------------------- /test/actions/displayTable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/actions/displayTable.test.ts -------------------------------------------------------------------------------- /test/actions/spreadsheet.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/actions/spreadsheet.test.ts -------------------------------------------------------------------------------- /test/app/actionAccess.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/app/actionAccess.test.ts -------------------------------------------------------------------------------- /test/app/console.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/app/console.test.ts -------------------------------------------------------------------------------- /test/app/live.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/app/live.test.ts -------------------------------------------------------------------------------- /test/app/mfa.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/app/mfa.test.ts -------------------------------------------------------------------------------- /test/app/organizationEnvironments.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/app/organizationEnvironments.test.ts -------------------------------------------------------------------------------- /test/app/queuedActions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/app/queuedActions.test.ts -------------------------------------------------------------------------------- /test/app/reconnect.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/app/reconnect.test.ts -------------------------------------------------------------------------------- /test/app/serverless.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/app/serverless.test.ts -------------------------------------------------------------------------------- /test/app/signup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/app/signup.test.ts -------------------------------------------------------------------------------- /test/app/users.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/app/users.test.ts -------------------------------------------------------------------------------- /test/classes/Signup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/classes/Signup.ts -------------------------------------------------------------------------------- /test/classes/Transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/classes/Transaction.ts -------------------------------------------------------------------------------- /test/data/canyon.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/data/canyon.mp4 -------------------------------------------------------------------------------- /test/data/fail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/data/fail.gif -------------------------------------------------------------------------------- /test/data/mockDb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/data/mockDb.ts -------------------------------------------------------------------------------- /test/data/spreadsheet.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/data/spreadsheet.csv -------------------------------------------------------------------------------- /test/data/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/data/table.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/index.ts -------------------------------------------------------------------------------- /test/releases/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/releases/index.ts -------------------------------------------------------------------------------- /test/releases/main/host.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/releases/main/host.ts -------------------------------------------------------------------------------- /test/releases/main/transactions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/releases/main/transactions.test.ts -------------------------------------------------------------------------------- /test/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/utils/date.ts -------------------------------------------------------------------------------- /test/utils/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/utils/table.ts -------------------------------------------------------------------------------- /test/utils/uploads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/test/utils/uploads.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/tsconfig.server.json -------------------------------------------------------------------------------- /tsconfig.wss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/tsconfig.wss.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interval/server/HEAD/yarn.lock --------------------------------------------------------------------------------