├── .changeset ├── README.md └── config.json ├── .cursorrules ├── .env.development ├── .env.local.sample ├── .env.test ├── .gitattributes ├── .github ├── copilot-instructions.md └── workflows │ ├── autofix.yml │ ├── deploy-helper-projects.yml │ ├── e2e.yml │ ├── evals.yml │ ├── tests.yml │ └── upgrade.yml ├── .gitignore ├── .node-version ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── TRADEMARK_GUIDELINES.md ├── app ├── (dashboard) │ ├── [category] │ │ ├── conversation │ │ │ ├── assignPopoverButton.tsx │ │ │ ├── conversation.tsx │ │ │ ├── conversationContext.tsx │ │ │ ├── conversationSidebar.tsx │ │ │ ├── eventItem.tsx │ │ │ ├── flagAsBadAction.tsx │ │ │ ├── followButton.tsx │ │ │ ├── guideSessionItem.tsx │ │ │ ├── issueAssignButton.tsx │ │ │ ├── messageActions.tsx │ │ │ ├── messageItem.tsx │ │ │ ├── messageThread.tsx │ │ │ ├── noteEditor.tsx │ │ │ ├── renderMessageBody.tsx │ │ │ ├── toolItem.tsx │ │ │ ├── useAssignTicket.ts │ │ │ ├── useUndoneEmailStore.ts │ │ │ └── viewers.tsx │ │ ├── conversationsModal.tsx │ │ ├── emailSignature.tsx │ │ ├── icons │ │ │ ├── github.svg │ │ │ ├── gumroad.svg │ │ │ ├── handHello.tsx │ │ │ ├── inboxZero.tsx │ │ │ └── logoIconAmber.svg │ │ ├── inbox.tsx │ │ ├── list │ │ │ ├── conversationFilters.tsx │ │ │ ├── conversationList.tsx │ │ │ ├── conversationListContext.tsx │ │ │ ├── conversationListItem.tsx │ │ │ ├── conversationListSkeleton.tsx │ │ │ ├── conversationSearchBar.tsx │ │ │ ├── emptyState.tsx │ │ │ ├── filters │ │ │ │ ├── assigneeFilter.tsx │ │ │ │ ├── customerFilter.tsx │ │ │ │ ├── dateFilter.tsx │ │ │ │ ├── eventFilter.tsx │ │ │ │ ├── highlightKeywords.tsx │ │ │ │ ├── issueGroupFilter.tsx │ │ │ │ ├── memberFilter.tsx │ │ │ │ ├── promptFilter.tsx │ │ │ │ ├── reactionFilter.tsx │ │ │ │ ├── responderFilter.tsx │ │ │ │ ├── unreadMessagesFilter.tsx │ │ │ │ └── vipFilter.tsx │ │ │ ├── newConversationModal.tsx │ │ │ ├── savedReplySelector.tsx │ │ │ └── unreadIndicator.tsx │ │ ├── page.tsx │ │ ├── previewModal.tsx │ │ ├── shared │ │ │ └── queries.ts │ │ ├── tabBar.tsx │ │ └── ticketCommandBar │ │ │ ├── assigneesPage.tsx │ │ │ ├── commandList.tsx │ │ │ ├── githubIssuePage.tsx │ │ │ ├── index.tsx │ │ │ ├── mainPage.tsx │ │ │ ├── notesPage.tsx │ │ │ ├── previousRepliesPage.tsx │ │ │ ├── suggestedActions.tsx │ │ │ ├── toolForm.tsx │ │ │ └── types.ts │ ├── accountDropdown.tsx │ ├── appSidebar.tsx │ ├── appSidebarOpen.tsx │ ├── clientLayout.tsx │ ├── common-issues │ │ ├── issueGroupCard.tsx │ │ ├── page.tsx │ │ ├── vipBadge.tsx │ │ └── volumeBadge.tsx │ ├── icons │ │ ├── android.svg │ │ ├── apple.svg │ │ ├── github.svg │ │ └── slack.svg │ ├── layout.tsx │ ├── loading.tsx │ ├── saved-replies │ │ ├── page.tsx │ │ └── savedReplyForm.tsx │ ├── sessions │ │ ├── [session_id] │ │ │ ├── page.tsx │ │ │ ├── sessionDetails.tsx │ │ │ └── timeline.tsx │ │ ├── layout.tsx │ │ ├── page.tsx │ │ ├── sessionsList.tsx │ │ └── sessionsListSkeleton.tsx │ ├── settings │ │ ├── [tab] │ │ │ └── page.tsx │ │ ├── chat │ │ │ ├── chatWidgetSetting.tsx │ │ │ ├── codeBlock.tsx │ │ │ ├── codeCopyButton.tsx │ │ │ └── widgetHMACSecret.tsx │ │ ├── common-issues │ │ │ ├── commonIssuesSetting.tsx │ │ │ └── generateIssuesDialog.tsx │ │ ├── customers │ │ │ ├── autoCloseSetting.tsx │ │ │ └── customerSetting.tsx │ │ ├── icons │ │ │ ├── apple-logo.svg │ │ │ └── outline-drag.svg │ │ ├── integrations │ │ │ ├── connectSupportEmail.tsx │ │ │ ├── githubSetting.tsx │ │ │ └── slackSetting.tsx │ │ ├── knowledge │ │ │ ├── knowledgeBankItem.tsx │ │ │ ├── knowledgeBankSetting.tsx │ │ │ ├── knowledgeSetting.tsx │ │ │ ├── suggestedKnowledgeBankItem.tsx │ │ │ └── websiteCrawlSetting.tsx │ │ ├── layout.tsx │ │ ├── loading.tsx │ │ ├── preferences │ │ │ ├── autoAssignSetting.tsx │ │ │ ├── confettiSetting.tsx │ │ │ ├── mailboxNameSetting.tsx │ │ │ ├── mailboxSetting.tsx │ │ │ ├── nextTicketPreviewSetting.tsx │ │ │ └── preferencesSetting.tsx │ │ ├── sectionWrapper.tsx │ │ ├── team │ │ │ ├── addMember.tsx │ │ │ ├── deleteMemberDialog.tsx │ │ │ ├── teamMemberRow.tsx │ │ │ ├── teamSetting.tsx │ │ │ └── teamSettingLoadingSkeleton.tsx │ │ └── tools │ │ │ ├── apiCard.tsx │ │ │ ├── apiForm.tsx │ │ │ ├── toolListItem.tsx │ │ │ ├── toolListSkeleton.tsx │ │ │ └── toolSetting.tsx │ ├── standaloneDisplayIntegration.tsx │ └── widget │ │ ├── anonymous-test │ │ └── page.tsx │ │ └── test │ │ ├── appLayout.tsx │ │ ├── custom │ │ ├── [slug] │ │ │ ├── chatView.tsx │ │ │ ├── conversationView.tsx │ │ │ ├── page.tsx │ │ │ └── threadView.tsx │ │ ├── customWidgetTest.tsx │ │ ├── page.tsx │ │ └── tool │ │ │ ├── list-coupons │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── discountForm.tsx │ │ ├── discountList.tsx │ │ ├── e2e │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── settingsForm.tsx │ │ ├── sidebar.tsx │ │ ├── vanilla │ │ └── route.tsx │ │ └── widgetButtons.tsx ├── api │ ├── chat │ │ ├── contact │ │ │ └── route.ts │ │ ├── conversation │ │ │ ├── [slug] │ │ │ │ ├── message │ │ │ │ │ ├── [id] │ │ │ │ │ │ ├── event │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── route.ts │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── conversations │ │ │ ├── route.ts │ │ │ └── unread │ │ │ │ └── route.ts │ │ ├── customerFilter.ts │ │ ├── getConversation.ts │ │ └── route.ts │ ├── connect │ │ ├── github │ │ │ └── callback │ │ │ │ └── route.ts │ │ ├── google │ │ │ ├── callback │ │ │ │ └── route.ts │ │ │ ├── route.ts │ │ │ └── utils.ts │ │ └── slack │ │ │ └── callback │ │ │ └── route.ts │ ├── guide │ │ ├── action │ │ │ └── route.ts │ │ ├── event │ │ │ └── route.ts │ │ ├── resume │ │ │ └── route.ts │ │ ├── start │ │ │ └── route.ts │ │ └── update │ │ │ └── route.ts │ ├── job │ │ └── route.ts │ ├── trpc │ │ └── lambda │ │ │ └── [trpc] │ │ │ └── route.ts │ ├── webhooks │ │ ├── firecrawl │ │ │ └── route.ts │ │ ├── github │ │ │ └── route.ts │ │ ├── gmail │ │ │ └── route.ts │ │ └── slack │ │ │ ├── event │ │ │ └── route.ts │ │ │ └── response │ │ │ └── route.ts │ └── widget │ │ ├── notification │ │ └── [id] │ │ │ └── route.ts │ │ ├── read-page-tool │ │ └── route.ts │ │ ├── session │ │ └── route.ts │ │ └── utils.ts ├── global-error.tsx ├── global-not-found.tsx ├── globals.css ├── homepageContent.tsx ├── layout.tsx ├── login │ ├── loginForm.tsx │ ├── onboardingForm.tsx │ └── page.tsx ├── page.tsx ├── stats │ ├── layout.tsx │ └── page.tsx ├── types │ └── global.d.ts ├── widget.png └── widget │ ├── [name] │ └── route.tsx │ ├── embed │ ├── globals.css │ ├── layout.tsx │ └── page.tsx │ └── layout.tsx ├── components.json ├── components ├── assignSelect.tsx ├── carousel.tsx ├── confetti.tsx ├── confirmationDialog.tsx ├── constants.ts ├── fileUploadContext.tsx ├── generateKnowledgeBankDialog.tsx ├── hooks │ ├── use-expiring-local-storage.ts │ ├── use-mobile.tsx │ ├── use-now.ts │ ├── useSavingIndicator.ts │ └── useSpeechRecognition.ts ├── humanizedTime.tsx ├── isElementWithin.ts ├── isInDialog.ts ├── jsonView.tsx ├── keyboardShortcut.tsx ├── labeledInput.tsx ├── linkCta.css ├── loadingSpinner.tsx ├── messageMarkdown.tsx ├── onModEnterKeyboardEvent.ts ├── pageHeader.tsx ├── panel.tsx ├── savingIndicator.tsx ├── secretInput.tsx ├── sentryContext.tsx ├── similarityCircle.tsx ├── themeProvider.tsx ├── tiptap │ ├── editor.css │ ├── editor.tsx │ ├── editorUtils.ts │ ├── fileAttachment.tsx │ ├── helpArticlePopover.tsx │ ├── icons │ │ ├── blockquote.svg │ │ ├── bold.svg │ │ ├── bullet-list.svg │ │ ├── file.svg │ │ ├── image.svg │ │ ├── italic.svg │ │ ├── link.svg │ │ ├── ordered-list.svg │ │ ├── redo.svg │ │ └── undo.svg │ ├── image.tsx │ ├── linkModal.tsx │ └── toolbar.tsx ├── ui │ ├── accordion.tsx │ ├── alert.tsx │ ├── avatar.tsx │ ├── badge.tsx │ ├── button.tsx │ ├── calendar.tsx │ ├── card.tsx │ ├── chart.tsx │ ├── checkbox.tsx │ ├── command.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── input-otp.tsx │ ├── input.tsx │ ├── label.tsx │ ├── popover.tsx │ ├── resizable.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── sidebar.tsx │ ├── skeleton.tsx │ ├── sonner.tsx │ ├── switch.tsx │ ├── table.tsx │ ├── tabs.tsx │ ├── textarea.tsx │ ├── toggle.tsx │ └── tooltip.tsx ├── useBreakpoint.ts ├── useDebouncedCallback.ts ├── useDocumentTitle.ts ├── useGlobalEventListener.ts ├── useMembers.ts ├── useOnChange.ts ├── useOnOutsideClick.ts ├── useRefToLatest.ts ├── useRunOnce.tsx ├── useSelected.ts ├── useSession.tsx ├── useShiftSelected.ts ├── useShowToastForSlackConnectStatus.ts ├── useToolExecution.ts ├── utils │ ├── arrays.ts │ ├── assert.ts │ ├── currency.ts │ ├── email.ts │ ├── files.ts │ └── html.ts └── widget │ ├── ChatInput.tsx │ ├── Conversation.tsx │ ├── Header.tsx │ ├── HelpingHand.tsx │ ├── LoadingMessage.tsx │ ├── Message.tsx │ ├── MessageElement.tsx │ ├── MessagesList.tsx │ ├── MessagesSkeleton.tsx │ ├── PreviousConversations.tsx │ ├── PromptDetailsModal.tsx │ ├── ShadowHoverButton.tsx │ ├── SupportButtons.tsx │ ├── ai-steps.tsx │ ├── eventBus.ts │ ├── hooks │ └── useReadPageTool.ts │ ├── useNewConversation.ts │ ├── useWidgetView.ts │ └── widgetState.ts ├── db ├── client.ts ├── drizzle.config.ts ├── drizzle │ ├── 0000_absurd_gwen_stacy.sql │ ├── 0001_mature_meteorite.sql │ ├── 0002_cool_shape.sql │ ├── 0003_worthless_roughhouse.sql │ ├── 0004_furry_captain_flint.sql │ ├── 0005_certain_jack_power.sql │ ├── 0006_wakeful_mimic.sql │ ├── 0007_overjoyed_mongu.sql │ ├── 0008_stiff_surge.sql │ ├── 0009_cool_the_fallen.sql │ ├── 0010_nice_viper.sql │ ├── 0011_futuristic_marrow.sql │ ├── 0012_sloppy_thundra.sql │ ├── 0013_nasty_clea.sql │ ├── 0014_polite_thaddeus_ross.sql │ ├── 0015_bitter_vindicator.sql │ ├── 0016_mean_wildside.sql │ ├── 0017_even_ikaris.sql │ ├── 0018_concerned_wendell_rand.sql │ ├── 0019_flawless_ezekiel.sql │ ├── 0020_serious_whistler.sql │ ├── 0021_overjoyed_fat_cobra.sql │ ├── 0022_early_pretty_boy.sql │ ├── 0023_blushing_deadpool.sql │ ├── 0024_nosy_meggan.sql │ ├── 0025_perfect_patriot.sql │ ├── 0026_lush_unicorn.sql │ ├── 0027_watery_senator_kelly.sql │ ├── 0028_spicy_deathbird.sql │ ├── 0029_fast_ghost_rider.sql │ ├── 0030_gifted_yellowjacket.sql │ ├── 0031_ancient_famine.sql │ ├── 0032_bizarre_doorman.sql │ ├── 0033_lethal_firelord.sql │ ├── 0034_flashy_apocalypse.sql │ ├── 0035_fantastic_robin_chapel.sql │ ├── 0036_dapper_sphinx.sql │ ├── 0037_equal_wither.sql │ ├── 0038_amazing_human_fly.sql │ ├── 0039_lush_dracula.sql │ ├── 0040_amused_wolverine.sql │ ├── 0041_misty_the_order.sql │ ├── 0042_aromatic_sally_floyd.sql │ ├── 0043_charming_clint_barton.sql │ ├── 0044_same_human_robot.sql │ ├── 0045_dizzy_franklin_storm.sql │ ├── 0046_legal_sue_storm.sql │ ├── 0047_giant_red_wolf.sql │ ├── 0048_conscious_captain_midlands.sql │ ├── 0049_calm_toad_men.sql │ ├── 0050_slim_monster_badoon.sql │ ├── 0051_lucky_skreet.sql │ ├── 0052_fast_lenny_balinger.sql │ ├── 0053_rename-pinned-replies.sql │ ├── 0054_fine_boomer.sql │ ├── 0055_long_thunderball.sql │ ├── 0056_jazzy_molly_hayes.sql │ ├── 0057_sparkling_sharon_ventura.sql │ ├── 0058_icy_romulus.sql │ ├── 0059_known_viper.sql │ ├── 0060_legal_reptil.sql │ ├── 0061_tranquil_mystique.sql │ ├── 0062_sturdy_william_stryker.sql │ ├── 0063_tidy_forge.sql │ ├── 0064_little_the_order.sql │ ├── 0065_married_gambit.sql │ ├── 0066_worthless_darkstar.sql │ ├── 0067_next_surge.sql │ ├── 0068_closed_unus.sql │ ├── 0069_open_patriot.sql │ ├── 0070_loose_argent.sql │ ├── 0071_sudden_tattoo.sql │ ├── 0072_misty_valeria_richards.sql │ ├── 0073_needy_kronos.sql │ ├── 0074_shiny_nebula.sql │ ├── 0075_tense_blink.sql │ ├── 0076_polite_meltdown.sql │ ├── 0077_ambitious_madame_masque.sql │ ├── 0078_busy_mesmero.sql │ ├── 0079_bouncy_mentallo.sql │ ├── 0080_huge_vermin.sql │ ├── 0081_cold_the_liberteens.sql │ ├── 0082_nervous_siren.sql │ ├── 0083_glamorous_meltdown.sql │ ├── 0084_boring_paibok.sql │ ├── 0085_realtime_rls.sql │ ├── 0086_windy_mole_man.sql │ ├── 0087_storage_buckets.sql │ ├── 0088_tiresome_wiccan.sql │ ├── 0089_curvy_retro_girl.sql │ ├── 0090_old_elektra.sql │ ├── 0091_talented_proemial_gods.sql │ ├── 0092_old_vulcan.sql │ ├── 0093_jobs_extensions.sql │ ├── 0094_jobs_queue.sql │ ├── 0095_daffy_eternity.sql │ ├── 0096_cron_extension.sql │ ├── 0097_http_extension.sql │ ├── 0098_lean_gunslinger.sql │ ├── 0099_nifty_goliath.sql │ ├── 0100_cheerful_clea.sql │ ├── 0101_complete_wraith.sql │ ├── 0102_user_profile_trigger.sql │ ├── 0103_backfill_user_profiles.sql │ ├── 0104_little_revanche.sql │ ├── 0105_nosy_lord_hawal.sql │ ├── 0106_rare_songbird.sql │ ├── 0107_illegal_wallop.sql │ ├── 0108_issue_groups.sql │ ├── 0109_certain_roughhouse.sql │ ├── 0110_wealthy_raider.sql │ ├── 0111_parallel_rumiko_fujikawa.sql │ ├── 0112_cool_outlaw_kid.sql │ ├── 0113_faithful_doorman.sql │ ├── 0114_special_spot.sql │ ├── 0115_opposite_cargill.sql │ ├── 0116_dizzy_red_ghost.sql │ ├── 0117_realtime_presence_rls.sql │ ├── 0118_plain_diamondback.sql │ ├── 0119_nostalgic_doctor_faustus.sql │ ├── 0120_jittery_the_leader.sql │ ├── 0121_windy_vulture.sql │ ├── 0122_eager_deathstrike.sql │ ├── 0123_slow_spyke.sql │ └── meta │ │ ├── 0000_snapshot.json │ │ ├── 0001_snapshot.json │ │ ├── 0002_snapshot.json │ │ ├── 0003_snapshot.json │ │ ├── 0004_snapshot.json │ │ ├── 0005_snapshot.json │ │ ├── 0006_snapshot.json │ │ ├── 0007_snapshot.json │ │ ├── 0008_snapshot.json │ │ ├── 0009_snapshot.json │ │ ├── 0010_snapshot.json │ │ ├── 0011_snapshot.json │ │ ├── 0012_snapshot.json │ │ ├── 0013_snapshot.json │ │ ├── 0014_snapshot.json │ │ ├── 0015_snapshot.json │ │ ├── 0016_snapshot.json │ │ ├── 0017_snapshot.json │ │ ├── 0018_snapshot.json │ │ ├── 0019_snapshot.json │ │ ├── 0020_snapshot.json │ │ ├── 0021_snapshot.json │ │ ├── 0022_snapshot.json │ │ ├── 0023_snapshot.json │ │ ├── 0024_snapshot.json │ │ ├── 0025_snapshot.json │ │ ├── 0026_snapshot.json │ │ ├── 0027_snapshot.json │ │ ├── 0028_snapshot.json │ │ ├── 0029_snapshot.json │ │ ├── 0030_snapshot.json │ │ ├── 0031_snapshot.json │ │ ├── 0032_snapshot.json │ │ ├── 0033_snapshot.json │ │ ├── 0034_snapshot.json │ │ ├── 0035_snapshot.json │ │ ├── 0036_snapshot.json │ │ ├── 0037_snapshot.json │ │ ├── 0038_snapshot.json │ │ ├── 0039_snapshot.json │ │ ├── 0040_snapshot.json │ │ ├── 0041_snapshot.json │ │ ├── 0042_snapshot.json │ │ ├── 0043_snapshot.json │ │ ├── 0044_snapshot.json │ │ ├── 0045_snapshot.json │ │ ├── 0046_snapshot.json │ │ ├── 0047_snapshot.json │ │ ├── 0048_snapshot.json │ │ ├── 0049_snapshot.json │ │ ├── 0050_snapshot.json │ │ ├── 0051_snapshot.json │ │ ├── 0052_snapshot.json │ │ ├── 0053_snapshot.json │ │ ├── 0054_snapshot.json │ │ ├── 0055_snapshot.json │ │ ├── 0056_snapshot.json │ │ ├── 0057_snapshot.json │ │ ├── 0058_snapshot.json │ │ ├── 0059_snapshot.json │ │ ├── 0060_snapshot.json │ │ ├── 0061_snapshot.json │ │ ├── 0065_snapshot.json │ │ ├── 0066_snapshot.json │ │ ├── 0067_snapshot.json │ │ ├── 0068_snapshot.json │ │ ├── 0069_snapshot.json │ │ ├── 0070_snapshot.json │ │ ├── 0071_snapshot.json │ │ ├── 0072_snapshot.json │ │ ├── 0073_snapshot.json │ │ ├── 0074_snapshot.json │ │ ├── 0075_snapshot.json │ │ ├── 0076_snapshot.json │ │ ├── 0077_snapshot.json │ │ ├── 0078_snapshot.json │ │ ├── 0079_snapshot.json │ │ ├── 0080_snapshot.json │ │ ├── 0081_snapshot.json │ │ ├── 0082_snapshot.json │ │ ├── 0083_snapshot.json │ │ ├── 0084_snapshot.json │ │ ├── 0085_snapshot.json │ │ ├── 0086_snapshot.json │ │ ├── 0087_snapshot.json │ │ ├── 0088_snapshot.json │ │ ├── 0089_snapshot.json │ │ ├── 0090_snapshot.json │ │ ├── 0091_snapshot.json │ │ ├── 0092_snapshot.json │ │ ├── 0093_snapshot.json │ │ ├── 0094_snapshot.json │ │ ├── 0095_snapshot.json │ │ ├── 0096_snapshot.json │ │ ├── 0097_snapshot.json │ │ ├── 0098_snapshot.json │ │ ├── 0099_snapshot.json │ │ ├── 0100_snapshot.json │ │ ├── 0101_snapshot.json │ │ ├── 0102_snapshot.json │ │ ├── 0103_snapshot.json │ │ ├── 0104_snapshot.json │ │ ├── 0105_snapshot.json │ │ ├── 0106_snapshot.json │ │ ├── 0107_snapshot.json │ │ ├── 0108_snapshot.json │ │ ├── 0109_snapshot.json │ │ ├── 0110_snapshot.json │ │ ├── 0111_snapshot.json │ │ ├── 0112_snapshot.json │ │ ├── 0113_snapshot.json │ │ ├── 0114_snapshot.json │ │ ├── 0115_snapshot.json │ │ ├── 0116_snapshot.json │ │ ├── 0117_snapshot.json │ │ ├── 0118_snapshot.json │ │ ├── 0119_snapshot.json │ │ ├── 0120_snapshot.json │ │ ├── 0121_snapshot.json │ │ ├── 0122_snapshot.json │ │ ├── 0123_snapshot.json │ │ └── _journal.json ├── lib │ ├── cronUtils.ts │ ├── crypto.ts │ ├── debug.ts │ ├── random-slug-field.ts │ └── with-timestamps.ts ├── schema │ ├── agentMessages.ts │ ├── agentThreads.ts │ ├── aiUsageEvents.ts │ ├── cache.ts │ ├── conversationEvents.ts │ ├── conversationFollowers.ts │ ├── conversationMessages.ts │ ├── conversations.ts │ ├── faqs.ts │ ├── files.ts │ ├── gmailSupportEmails.ts │ ├── guideSession.ts │ ├── index.ts │ ├── issueGroups.ts │ ├── jobRuns.ts │ ├── mailboxes.ts │ ├── mailboxesMetadataApi.ts │ ├── messageNotifications.ts │ ├── notes.ts │ ├── platformCustomers.ts │ ├── savedReplies.ts │ ├── storedTools.ts │ ├── toolApis.ts │ ├── tools.ts │ ├── userProfiles.ts │ └── websites.ts ├── seeds │ ├── fixtures │ │ ├── conversationFixture11.json │ │ ├── conversationFixture12.json │ │ ├── conversationFixture14.json │ │ ├── conversationFixture15.json │ │ ├── conversationFixture16.json │ │ ├── conversationFixture18.json │ │ ├── conversationFixture19.json │ │ ├── conversationFixture20.json │ │ ├── conversationFixture21.json │ │ ├── conversationFixture22.json │ │ ├── conversationFixture23.json │ │ ├── conversationFixture24.json │ │ ├── conversationFixture25.json │ │ ├── conversationFixture26.json │ │ ├── conversationFixture27.json │ │ ├── conversationFixture28.json │ │ ├── conversationFixture29.json │ │ ├── conversationFixture3.json │ │ ├── conversationFixture30.json │ │ ├── conversationFixture31.json │ │ ├── conversationFixture32.json │ │ ├── conversationFixture33.json │ │ ├── conversationFixture35.json │ │ ├── conversationFixture36.json │ │ ├── conversationFixture37.json │ │ ├── conversationFixture38.json │ │ ├── conversationFixture4.json │ │ ├── conversationFixture6.json │ │ ├── conversationFixture62.json │ │ ├── conversationFixture63.json │ │ ├── conversationFixture64.json │ │ ├── conversationFixture65.json │ │ ├── conversationFixture66.json │ │ ├── conversationFixture67.json │ │ ├── conversationFixture7.json │ │ └── conversationFixture8.json │ ├── helpArticlesData.ts │ ├── index.ts │ └── seedDatabase.ts ├── setupCron.ts └── supabaseSchema │ └── auth.ts ├── docs ├── helping-hand.md └── images │ └── resend_preview_email.png ├── eslint.config.d.ts ├── eslint.config.mjs ├── instrumentation-client.ts ├── instrumentation.ts ├── jobs ├── autoAssignConversation.ts ├── autoCloseInactiveConversations.ts ├── bulkEmbeddingClosedConversations.ts ├── bulkUpdateConversations.ts ├── categorizeConversationToIssueGroup.ts ├── checkAssignedTicketResponseTimes.ts ├── checkVipResponseTimes.ts ├── cleanupDanglingFiles.ts ├── crawlWebsite.ts ├── embeddingConversation.ts ├── embeddingFaq.ts ├── generateConversationSummaryEmbeddings.ts ├── generateDailyReports.ts ├── generateFilePreview.ts ├── generateWeeklyReports.ts ├── handleAutoResponse.ts ├── handleGmailWebhookEvent.ts ├── handleSlackAgentMessage.ts ├── importGmailThreads.ts ├── importRecentGmailThreads.ts ├── index.ts ├── indexConversation.ts ├── mergeSimilarConversations.ts ├── notifyVipMessage.ts ├── postEmailToGmail.ts ├── publishNewMessageEvent.ts ├── publishRequestHumanSupport.ts ├── renewMailboxWatches.ts ├── scheduledWebsiteCrawl.ts ├── sendFollowerNotification.ts ├── suggestKnowledgeBankChanges.ts ├── trigger.ts ├── updateSuggestedActions.ts └── utils.ts ├── knip.json ├── lib ├── ai │ ├── chat.ts │ ├── constants.ts │ ├── conversationEmbedding.ts │ ├── core.ts │ ├── customerInfoPrompt.ts │ ├── generateCommonIssues.ts │ ├── generateConversationSummary.ts │ ├── guide.ts │ ├── index.ts │ ├── knowledgeBankSuggestions.ts │ ├── messageBuilder.ts │ ├── mockOpenAI.ts │ ├── openai.ts │ ├── promptInfo.ts │ ├── prompts.ts │ ├── readPageTool.ts │ ├── sampleQuestions.ts │ └── tools.ts ├── auth │ ├── authService.ts │ ├── authUtils.ts │ └── constants.ts ├── cache.ts ├── data │ ├── aiUsageEvents.ts │ ├── conversation.ts │ ├── conversation │ │ ├── customerSearchSchema.ts │ │ ├── responseTime.ts │ │ ├── search.ts │ │ └── searchSchema.ts │ ├── conversationMessage.ts │ ├── dashboardEvent.ts │ ├── dataError.ts │ ├── files.ts │ ├── gmailSupportEmail.ts │ ├── guide.ts │ ├── knowledge.ts │ ├── mailbox.ts │ ├── messageNotifications.ts │ ├── note.ts │ ├── platformCustomer.ts │ ├── retrieval.ts │ ├── savedReplies.ts │ ├── stats.ts │ ├── storedTool.ts │ ├── tools.ts │ ├── transactionalEmailAddressRegex.ts │ └── user.ts ├── emailKeywordsExtractor.ts ├── emailSearchService │ ├── extractHashedWordsFromEmail.ts │ └── searchEmailsByKeywords.ts ├── emails.ts ├── emails │ ├── aiReply.tsx │ ├── followerNotification.tsx │ └── otp.tsx ├── env.ts ├── files.ts ├── github │ └── client.ts ├── gmail │ ├── client.ts │ └── lib.tsx ├── metadataApiClient.ts ├── proxyExternalContent.ts ├── realtime │ ├── channels.ts │ ├── hooks.ts │ └── publish.ts ├── search │ ├── helpArticleSearch.ts │ └── searchSnippet.ts ├── secrets.ts ├── sentry │ ├── common-config.ts │ ├── edge-config.ts │ └── server-config.ts ├── shared │ ├── attachmentValidation.ts │ ├── browser.ts │ ├── html.ts │ ├── sentry.ts │ └── slug.ts ├── slack │ ├── agent │ │ ├── findMailboxForEvent.ts │ │ ├── generateAgentResponse.ts │ │ ├── getThreadMessages.ts │ │ ├── handleAgentMessageSlackAction.ts │ │ └── handleMessages.ts │ ├── client.ts │ ├── constants.ts │ ├── linkUnfurl.ts │ ├── shared.ts │ └── vipNotifications.ts ├── supabase │ ├── client.ts │ ├── middleware.ts │ └── server.ts ├── tools │ ├── apiTool.ts │ └── openApiParser.ts ├── utils.ts ├── widget │ └── messages.ts └── widgetSession.ts ├── middleware.ts ├── next.config.ts ├── package.json ├── packages ├── client │ ├── package.json │ ├── src │ │ ├── auth │ │ │ ├── helper-auth.ts │ │ │ └── index.ts │ │ ├── client.ts │ │ ├── index.ts │ │ ├── realtime.ts │ │ └── types.ts │ ├── tests │ │ ├── helper-auth.test.ts │ │ └── support │ │ │ ├── globalSetup.ts │ │ │ └── setup.ts │ ├── tsconfig.json │ └── tsup.config.ts ├── marketing │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── actions │ │ │ └── contactForm.ts │ │ ├── animatedTyping.tsx │ │ ├── api │ │ │ └── search │ │ │ │ └── route.tsx │ │ ├── citationsDemo.tsx │ │ ├── comparisonHistogram.tsx │ │ ├── contactModal.tsx │ │ ├── docs │ │ │ ├── [[...slug]] │ │ │ │ ├── mdxComponents.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── supportPortalPrompt.tsx │ │ │ └── layout.tsx │ │ ├── globals.css │ │ ├── help │ │ │ └── page.tsx │ │ ├── layout.config.tsx │ │ ├── layout.tsx │ │ ├── logoIconAmber.svg │ │ ├── marketingHeader.tsx │ │ ├── not-found.tsx │ │ ├── page.tsx │ │ ├── privacy │ │ │ └── page.tsx │ │ ├── refundDemo.tsx │ │ ├── slackInterface.tsx │ │ ├── slackNotification.tsx │ │ ├── terms │ │ │ └── page.tsx │ │ ├── toolsDemo.tsx │ │ └── useBreakpoint.ts │ ├── components │ │ └── ui │ │ │ ├── button.tsx │ │ │ └── tooltip.tsx │ ├── content │ │ ├── docs │ │ │ ├── api │ │ │ │ ├── 01-overview.mdx │ │ │ │ ├── 02-session.mdx │ │ │ │ ├── 03-conversation.mdx │ │ │ │ ├── 04-chat.mdx │ │ │ │ ├── 05-client-sdk.mdx │ │ │ │ ├── 06-react-hooks.mdx │ │ │ │ ├── api-reference │ │ │ │ │ ├── create-conversation.mdx │ │ │ │ │ ├── create-session.mdx │ │ │ │ │ ├── meta.json │ │ │ │ │ └── send-message.mdx │ │ │ │ └── meta.json │ │ │ ├── deployment.mdx │ │ │ ├── development │ │ │ │ ├── index.mdx │ │ │ │ ├── migrations.mdx │ │ │ │ ├── nginx-setup.mdx │ │ │ │ ├── overview.md │ │ │ │ └── testing.mdx │ │ │ ├── features │ │ │ │ └── knowledge-bank.mdx │ │ │ ├── index.mdx │ │ │ ├── integrations.mdx │ │ │ ├── meta.json │ │ │ ├── theming.mdx │ │ │ ├── tools │ │ │ │ ├── 01-overview.mdx │ │ │ │ ├── 02-connecting-apis.mdx │ │ │ │ ├── 03-managing-tools.mdx │ │ │ │ ├── 04-openapi-requirements.mdx │ │ │ │ └── 05-metadata-endpoint.mdx │ │ │ └── widget │ │ │ │ ├── 01-overview.mdx │ │ │ │ ├── 02-javascript-integration.mdx │ │ │ │ ├── 03-react-integration.mdx │ │ │ │ ├── 04-configuration.mdx │ │ │ │ ├── 05-other-frameworks.mdx │ │ │ │ ├── 06-custom.mdx │ │ │ │ └── meta.json │ │ └── source.config.ts │ ├── lib │ │ ├── source.ts │ │ └── utils.ts │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── Helper-inbox-desktop.png │ │ ├── Helper-inbox-mobile.png │ │ ├── customer-sentiment.svg │ │ ├── favicon.ico │ │ ├── logo-white.svg │ │ ├── logo.svg │ │ ├── logo_icon.svg │ │ ├── opengraph-image.png │ │ └── slack-logo-icon.png │ ├── scripts │ │ └── vercel.sh │ ├── tailwind.config.ts │ └── tsconfig.json ├── react │ ├── .changeset │ │ ├── README.md │ │ ├── breezy-spies-compete.md │ │ ├── config.json │ │ ├── four-doodles-pull.md │ │ ├── rich-shirts-happen.md │ │ └── seven-trees-tie.md │ ├── .gitignore │ ├── README.md │ ├── global.d.ts │ ├── package.cjs.json │ ├── package.esm.json │ ├── package.json │ ├── src │ │ ├── auth.ts │ │ ├── components │ │ │ ├── helperClientProvider.tsx │ │ │ ├── helperWidgetScript.test.tsx │ │ │ ├── helperWidgetScript.tsx │ │ │ └── messageContent.tsx │ │ ├── global.d.ts │ │ ├── hooks │ │ │ ├── useChat.ts │ │ │ ├── useConversations.ts │ │ │ ├── useHelper.test.ts │ │ │ ├── useHelper.ts │ │ │ ├── useRefToLatest.ts │ │ │ └── useSession.ts │ │ ├── index.ts │ │ ├── test │ │ │ ├── integration │ │ │ │ └── ServerComponentSetup.test.tsx │ │ │ ├── setup.d.ts │ │ │ ├── setup.ts │ │ │ └── utils.ts │ │ └── types.ts │ ├── tsconfig.json │ ├── tsconfig.test.json │ ├── tsup.config.ts │ └── vitest.config.ts └── sdk │ ├── package.json │ ├── src │ ├── components │ │ └── contactForm.tsx │ ├── domElements.ts │ ├── domTree.ts │ ├── embed.css │ ├── global.d.ts │ ├── guideManager.ts │ ├── index.ts │ ├── scriptOrigin.ts │ ├── supabase.ts │ └── utils.ts │ ├── tsconfig.json │ └── webpack.sdk.cjs ├── patches └── next@15.3.6.patch ├── playwright.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── postcss.config.cjs ├── public ├── app.webmanifest ├── cta_arrow.svg ├── favicon.ico ├── features │ ├── ai-powered-drafts.png │ ├── smart-workflows.png │ └── style-consistency.png ├── flexile-logo.svg ├── google-logo.svg ├── gumroad-logo-full.svg ├── gumroad-logo-text.svg ├── gumroad-logo.svg ├── hand-bg.svg ├── healthcheck.txt ├── helper_logo_02.svg ├── homepage │ ├── onboarding_card_1.png │ ├── onboarding_card_2.png │ ├── onboarding_card_3.png │ └── onboarding_people.png ├── human-avatar.png ├── icon_192.png ├── icon_512.png ├── images │ ├── 1st-place-medal.png │ ├── attachment-preview-default.svg │ ├── attachment-preview-video.svg │ ├── customer-sentiment.svg │ └── github-mark-white.svg ├── logo-white.svg ├── logo.svg ├── logo_icon.png ├── logo_icon.svg ├── logo_icon_512.png ├── logo_icon_white.svg ├── logo_mahogany_900_for_email.png ├── mahogany-bg.svg ├── next.svg ├── openapi.json └── robot-avatar.png ├── scripts ├── Procfile.dev ├── backfillLastMessageAt.ts ├── delete-saved-replies.ts ├── deploy-helper-projects.ts ├── dev.sh ├── docker │ └── local-nginx │ │ └── helperai_dev.conf ├── e2e-test-server.sh ├── e2e.sh ├── ensure-ssl-certificates.sh ├── generate-ssl-certificates.sh ├── replGlobals.mts ├── setup-e2e-tests.sh ├── upgrade.sh ├── vercel.sh └── with-vercel-env.sh ├── supabase ├── .env.preview ├── .gitignore ├── config.ci.toml └── config.toml ├── tailwind.config.ts ├── tests ├── app │ └── api │ │ ├── chat │ │ ├── conversation │ │ │ └── [slug] │ │ │ │ ├── message │ │ │ │ └── route.test.ts │ │ │ │ └── route.test.ts │ │ ├── conversations │ │ │ ├── route.test.ts │ │ │ └── unread │ │ │ │ └── route.test.ts │ │ └── getConversation.test.ts │ │ └── webhooks │ │ ├── gmail │ │ └── route.test.ts │ │ └── slack │ │ ├── event │ │ └── route.test.ts │ │ └── response │ │ └── route.test.ts ├── components │ ├── hooks │ │ └── useSavingIndicator.test.ts │ ├── messageMarkdown.test.tsx │ ├── tiptap │ │ └── helpArticleSearch.test.ts │ └── utils │ │ └── email.test.ts ├── db │ └── lib │ │ ├── random-slug-field.test.ts │ │ └── with-timestamps.test.ts ├── e2e │ ├── README.md │ ├── auth │ │ └── login.spec.ts │ ├── common-issues │ │ └── commonIssues.spec.ts │ ├── conversation-details │ │ └── conversationDetails.spec.ts │ ├── conversations │ │ ├── commandBarActions.spec.ts │ │ ├── conversationActions.spec.ts │ │ ├── conversations.spec.ts │ │ ├── follow-conversation.spec.ts │ │ ├── newMessageWithSavedReplies.spec.ts │ │ └── unread-messages-filter.spec.ts │ ├── customer-settings │ │ └── customerSettings.spec.ts │ ├── help-article-search │ │ └── helpArticleSearch.spec.ts │ ├── image-attachments │ │ └── image-attachments.spec.ts │ ├── in-app-chat-settings │ │ └── inAppChatSettings.spec.ts │ ├── knowledge-bank │ │ └── knowledgeBank.spec.ts │ ├── saved-replies │ │ └── savedReplies.spec.ts │ ├── settings │ │ ├── common-issues.spec.ts │ │ ├── integrations.spec.ts │ │ ├── mailbox.spec.ts │ │ └── preferences.spec.ts │ ├── setup │ │ └── auth.setup.ts │ ├── stats │ │ └── stats.spec.ts │ ├── team-settings │ │ └── teamSettings.spec.ts │ ├── utils │ │ ├── cleanupSavedReplies.ts │ │ ├── cleaupTestMembers.ts │ │ ├── commonIssueCleanup.ts │ │ ├── conversationHelpers.ts │ │ ├── replyHelpers.ts │ │ ├── settingsHelpers.ts │ │ ├── test-helpers.ts │ │ └── toastHelpers.ts │ ├── website-learning │ │ └── websiteLearning.spec.ts │ └── widget │ │ ├── fixtures │ │ └── widget-config.ts │ │ ├── widget-screenshot.spec.ts │ │ └── widget.spec.ts ├── evals │ ├── chat │ │ ├── human-request.eval.ts │ │ ├── knowledge-bank.eval.ts │ │ ├── promises.eval.ts │ │ └── reasoning.eval.ts │ └── support │ │ ├── chat.ts │ │ └── setup.ts ├── jobs │ ├── bulkUpdateConversations.test.ts │ ├── checkAssignedTicketResponseTimes.test.ts │ ├── cleanupDanglingFiles.test.ts │ ├── embeddingFaq.test.ts │ ├── generateDailyReports.test.ts │ ├── generateFilePreview.test.ts │ ├── generateWeeklyReports.test.ts │ ├── handleAutoResponse.test.ts │ ├── handleGmailWebhookEvent.test.ts │ ├── importGmailThreads.test.ts │ ├── importRecentGmailThreads.test.ts │ ├── mergeSimilarConversations.test.ts │ ├── postEmailToGmail.test.ts │ ├── renewMailboxWatches.test.ts │ └── sendFollowerNotification.test.ts ├── lib │ ├── ai │ │ ├── core.test.ts │ │ ├── customerInfoPrompt.test.ts │ │ ├── generateConversationSummary.test.ts │ │ ├── index.test.ts │ │ ├── messageBuilder.test.ts │ │ ├── prompts.test.ts │ │ └── respondWithAI.test.ts │ ├── data │ │ ├── aiUsageEvents.test.ts │ │ ├── conversation.test.ts │ │ ├── conversation │ │ │ └── search.test.ts │ │ ├── conversationMessage.test.ts │ │ ├── files.test.ts │ │ ├── gmailSupportEmail.test.ts │ │ ├── mailbox.test.ts │ │ ├── note.test.ts │ │ ├── platformCustomer.test.ts │ │ ├── retrieval.test.ts │ │ ├── storedTool.test.ts │ │ └── transactionalEmailAddressRegex.test.ts │ ├── emailKeywordsExtractor.test.ts │ ├── emails.test.ts │ ├── gmail │ │ └── lib.test.ts │ ├── metadataApiClient.test.ts │ ├── proxyExternalContent.test.ts │ ├── secrets.test.ts │ ├── slack │ │ ├── client.test.ts │ │ └── shared.test.ts │ └── tools │ │ ├── apiTool.test.ts │ │ └── openApiParser.test.ts ├── support │ ├── factories │ │ ├── clientTools.ts │ │ ├── conversationEvents.ts │ │ ├── conversationFollowers.ts │ │ ├── conversationMessages.ts │ │ ├── conversations.ts │ │ ├── faqs.ts │ │ ├── files.ts │ │ ├── gmailSupportEmails.ts │ │ ├── mailboxes.ts │ │ ├── notes.ts │ │ ├── platformCustomers.ts │ │ ├── tools.ts │ │ └── users.ts │ ├── fixtures │ │ └── gmail │ │ │ ├── helperMailboxIsCcedOntoThread.ts │ │ │ ├── multipleToEmailAddresses.ts │ │ │ ├── newConversationWithAttachments.ts │ │ │ ├── weirdAttachment.ts │ │ │ └── weirdEmailFrom.ts │ ├── globalSetup.ts │ ├── jobsUtils.ts │ ├── setup.ts │ ├── setupDatabase.ts │ └── trpcUtils.ts └── trpc │ └── router │ ├── gmailSupportEmail.test.ts │ ├── mailbox.test.ts │ ├── mailbox │ ├── conversations │ │ ├── files.test.ts │ │ ├── index.test.ts │ │ ├── messages.test.ts │ │ └── tools.test.ts │ ├── faq.test.ts │ └── slack.test.ts │ └── organization.test.ts ├── trpc ├── index.ts ├── query-client.ts ├── react.tsx ├── root.ts ├── router │ ├── gmailSupportEmail.ts │ ├── mailbox │ │ ├── conversations │ │ │ ├── files.ts │ │ │ ├── github.ts │ │ │ ├── index.ts │ │ │ ├── messages.ts │ │ │ ├── notes.ts │ │ │ ├── procedure.ts │ │ │ └── tools.ts │ │ ├── customers.ts │ │ ├── faqs.ts │ │ ├── github.ts │ │ ├── index.ts │ │ ├── issueGroups.ts │ │ ├── members.ts │ │ ├── procedure.ts │ │ ├── savedReplies.ts │ │ ├── slack.ts │ │ ├── tools.ts │ │ └── websites.ts │ ├── organization.ts │ └── user.ts ├── server.ts └── trpc.ts ├── tsconfig.json ├── types ├── customerInfo.ts ├── fileExtensions.d.ts ├── guide.ts └── tools.ts ├── vercel.json └── vitest.config.mts /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.cursorrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/.cursorrules -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/.env.development -------------------------------------------------------------------------------- /.env.local.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/.env.local.sample -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/.env.test -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/autofix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/.github/workflows/autofix.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/.github/workflows/e2e.yml -------------------------------------------------------------------------------- /.github/workflows/evals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/.github/workflows/evals.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/.github/workflows/upgrade.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 22.14.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | public/ 2 | db/drizzle/meta/*.json 3 | pnpm-lock.yaml 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/README.md -------------------------------------------------------------------------------- /TRADEMARK_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/TRADEMARK_GUIDELINES.md -------------------------------------------------------------------------------- /app/(dashboard)/[category]/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/[category]/icons/github.svg -------------------------------------------------------------------------------- /app/(dashboard)/[category]/inbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/[category]/inbox.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[category]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/[category]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[category]/previewModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/[category]/previewModal.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[category]/tabBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/[category]/tabBar.tsx -------------------------------------------------------------------------------- /app/(dashboard)/accountDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/accountDropdown.tsx -------------------------------------------------------------------------------- /app/(dashboard)/appSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/appSidebar.tsx -------------------------------------------------------------------------------- /app/(dashboard)/appSidebarOpen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/appSidebarOpen.tsx -------------------------------------------------------------------------------- /app/(dashboard)/clientLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/clientLayout.tsx -------------------------------------------------------------------------------- /app/(dashboard)/common-issues/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/common-issues/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/common-issues/vipBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/common-issues/vipBadge.tsx -------------------------------------------------------------------------------- /app/(dashboard)/icons/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/icons/android.svg -------------------------------------------------------------------------------- /app/(dashboard)/icons/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/icons/apple.svg -------------------------------------------------------------------------------- /app/(dashboard)/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/icons/github.svg -------------------------------------------------------------------------------- /app/(dashboard)/icons/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/icons/slack.svg -------------------------------------------------------------------------------- /app/(dashboard)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/layout.tsx -------------------------------------------------------------------------------- /app/(dashboard)/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/loading.tsx -------------------------------------------------------------------------------- /app/(dashboard)/saved-replies/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/saved-replies/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/sessions/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/sessions/layout.tsx -------------------------------------------------------------------------------- /app/(dashboard)/sessions/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/sessions/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/sessions/sessionsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/sessions/sessionsList.tsx -------------------------------------------------------------------------------- /app/(dashboard)/settings/[tab]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/settings/[tab]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/settings/chat/codeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/settings/chat/codeBlock.tsx -------------------------------------------------------------------------------- /app/(dashboard)/settings/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/settings/layout.tsx -------------------------------------------------------------------------------- /app/(dashboard)/settings/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/settings/loading.tsx -------------------------------------------------------------------------------- /app/(dashboard)/settings/sectionWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/settings/sectionWrapper.tsx -------------------------------------------------------------------------------- /app/(dashboard)/settings/team/addMember.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/settings/team/addMember.tsx -------------------------------------------------------------------------------- /app/(dashboard)/settings/tools/apiCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/settings/tools/apiCard.tsx -------------------------------------------------------------------------------- /app/(dashboard)/settings/tools/apiForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/settings/tools/apiForm.tsx -------------------------------------------------------------------------------- /app/(dashboard)/widget/test/appLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/widget/test/appLayout.tsx -------------------------------------------------------------------------------- /app/(dashboard)/widget/test/custom/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/widget/test/custom/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/widget/test/e2e/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/widget/test/e2e/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/widget/test/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/widget/test/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/widget/test/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/(dashboard)/widget/test/sidebar.tsx -------------------------------------------------------------------------------- /app/api/chat/contact/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/chat/contact/route.ts -------------------------------------------------------------------------------- /app/api/chat/conversation/[slug]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/chat/conversation/[slug]/route.ts -------------------------------------------------------------------------------- /app/api/chat/conversation/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/chat/conversation/route.ts -------------------------------------------------------------------------------- /app/api/chat/conversations/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/chat/conversations/route.ts -------------------------------------------------------------------------------- /app/api/chat/conversations/unread/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/chat/conversations/unread/route.ts -------------------------------------------------------------------------------- /app/api/chat/customerFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/chat/customerFilter.ts -------------------------------------------------------------------------------- /app/api/chat/getConversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/chat/getConversation.ts -------------------------------------------------------------------------------- /app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/chat/route.ts -------------------------------------------------------------------------------- /app/api/connect/github/callback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/connect/github/callback/route.ts -------------------------------------------------------------------------------- /app/api/connect/google/callback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/connect/google/callback/route.ts -------------------------------------------------------------------------------- /app/api/connect/google/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/connect/google/route.ts -------------------------------------------------------------------------------- /app/api/connect/google/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/connect/google/utils.ts -------------------------------------------------------------------------------- /app/api/connect/slack/callback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/connect/slack/callback/route.ts -------------------------------------------------------------------------------- /app/api/guide/action/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/guide/action/route.ts -------------------------------------------------------------------------------- /app/api/guide/event/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/guide/event/route.ts -------------------------------------------------------------------------------- /app/api/guide/resume/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/guide/resume/route.ts -------------------------------------------------------------------------------- /app/api/guide/start/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/guide/start/route.ts -------------------------------------------------------------------------------- /app/api/guide/update/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/guide/update/route.ts -------------------------------------------------------------------------------- /app/api/job/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/job/route.ts -------------------------------------------------------------------------------- /app/api/trpc/lambda/[trpc]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/trpc/lambda/[trpc]/route.ts -------------------------------------------------------------------------------- /app/api/webhooks/firecrawl/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/webhooks/firecrawl/route.ts -------------------------------------------------------------------------------- /app/api/webhooks/github/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/webhooks/github/route.ts -------------------------------------------------------------------------------- /app/api/webhooks/gmail/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/webhooks/gmail/route.ts -------------------------------------------------------------------------------- /app/api/webhooks/slack/event/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/webhooks/slack/event/route.ts -------------------------------------------------------------------------------- /app/api/webhooks/slack/response/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/webhooks/slack/response/route.ts -------------------------------------------------------------------------------- /app/api/widget/notification/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/widget/notification/[id]/route.ts -------------------------------------------------------------------------------- /app/api/widget/read-page-tool/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/widget/read-page-tool/route.ts -------------------------------------------------------------------------------- /app/api/widget/session/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/widget/session/route.ts -------------------------------------------------------------------------------- /app/api/widget/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/api/widget/utils.ts -------------------------------------------------------------------------------- /app/global-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/global-error.tsx -------------------------------------------------------------------------------- /app/global-not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/global-not-found.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/homepageContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/homepageContent.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/login/loginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/login/loginForm.tsx -------------------------------------------------------------------------------- /app/login/onboardingForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/login/onboardingForm.tsx -------------------------------------------------------------------------------- /app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/login/page.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/stats/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/stats/layout.tsx -------------------------------------------------------------------------------- /app/stats/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/stats/page.tsx -------------------------------------------------------------------------------- /app/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/types/global.d.ts -------------------------------------------------------------------------------- /app/widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/widget.png -------------------------------------------------------------------------------- /app/widget/[name]/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/widget/[name]/route.tsx -------------------------------------------------------------------------------- /app/widget/embed/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/widget/embed/globals.css -------------------------------------------------------------------------------- /app/widget/embed/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/widget/embed/layout.tsx -------------------------------------------------------------------------------- /app/widget/embed/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/widget/embed/page.tsx -------------------------------------------------------------------------------- /app/widget/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/app/widget/layout.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components.json -------------------------------------------------------------------------------- /components/assignSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/assignSelect.tsx -------------------------------------------------------------------------------- /components/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/carousel.tsx -------------------------------------------------------------------------------- /components/confetti.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/confetti.tsx -------------------------------------------------------------------------------- /components/confirmationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/confirmationDialog.tsx -------------------------------------------------------------------------------- /components/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/constants.ts -------------------------------------------------------------------------------- /components/fileUploadContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/fileUploadContext.tsx -------------------------------------------------------------------------------- /components/generateKnowledgeBankDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/generateKnowledgeBankDialog.tsx -------------------------------------------------------------------------------- /components/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /components/hooks/use-now.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/hooks/use-now.ts -------------------------------------------------------------------------------- /components/hooks/useSavingIndicator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/hooks/useSavingIndicator.ts -------------------------------------------------------------------------------- /components/hooks/useSpeechRecognition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/hooks/useSpeechRecognition.ts -------------------------------------------------------------------------------- /components/humanizedTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/humanizedTime.tsx -------------------------------------------------------------------------------- /components/isElementWithin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/isElementWithin.ts -------------------------------------------------------------------------------- /components/isInDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/isInDialog.ts -------------------------------------------------------------------------------- /components/jsonView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/jsonView.tsx -------------------------------------------------------------------------------- /components/keyboardShortcut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/keyboardShortcut.tsx -------------------------------------------------------------------------------- /components/labeledInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/labeledInput.tsx -------------------------------------------------------------------------------- /components/linkCta.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/linkCta.css -------------------------------------------------------------------------------- /components/loadingSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/loadingSpinner.tsx -------------------------------------------------------------------------------- /components/messageMarkdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/messageMarkdown.tsx -------------------------------------------------------------------------------- /components/onModEnterKeyboardEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/onModEnterKeyboardEvent.ts -------------------------------------------------------------------------------- /components/pageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/pageHeader.tsx -------------------------------------------------------------------------------- /components/panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/panel.tsx -------------------------------------------------------------------------------- /components/savingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/savingIndicator.tsx -------------------------------------------------------------------------------- /components/secretInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/secretInput.tsx -------------------------------------------------------------------------------- /components/sentryContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/sentryContext.tsx -------------------------------------------------------------------------------- /components/similarityCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/similarityCircle.tsx -------------------------------------------------------------------------------- /components/themeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/themeProvider.tsx -------------------------------------------------------------------------------- /components/tiptap/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/editor.css -------------------------------------------------------------------------------- /components/tiptap/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/editor.tsx -------------------------------------------------------------------------------- /components/tiptap/editorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/editorUtils.ts -------------------------------------------------------------------------------- /components/tiptap/fileAttachment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/fileAttachment.tsx -------------------------------------------------------------------------------- /components/tiptap/helpArticlePopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/helpArticlePopover.tsx -------------------------------------------------------------------------------- /components/tiptap/icons/blockquote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/icons/blockquote.svg -------------------------------------------------------------------------------- /components/tiptap/icons/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/icons/bold.svg -------------------------------------------------------------------------------- /components/tiptap/icons/bullet-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/icons/bullet-list.svg -------------------------------------------------------------------------------- /components/tiptap/icons/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/icons/file.svg -------------------------------------------------------------------------------- /components/tiptap/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/icons/image.svg -------------------------------------------------------------------------------- /components/tiptap/icons/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/icons/italic.svg -------------------------------------------------------------------------------- /components/tiptap/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/icons/link.svg -------------------------------------------------------------------------------- /components/tiptap/icons/ordered-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/icons/ordered-list.svg -------------------------------------------------------------------------------- /components/tiptap/icons/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/icons/redo.svg -------------------------------------------------------------------------------- /components/tiptap/icons/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/icons/undo.svg -------------------------------------------------------------------------------- /components/tiptap/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/image.tsx -------------------------------------------------------------------------------- /components/tiptap/linkModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/linkModal.tsx -------------------------------------------------------------------------------- /components/tiptap/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/tiptap/toolbar.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/calendar.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/chart.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/resizable.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/sonner.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/toggle.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/useBreakpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/useBreakpoint.ts -------------------------------------------------------------------------------- /components/useDebouncedCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/useDebouncedCallback.ts -------------------------------------------------------------------------------- /components/useDocumentTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/useDocumentTitle.ts -------------------------------------------------------------------------------- /components/useGlobalEventListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/useGlobalEventListener.ts -------------------------------------------------------------------------------- /components/useMembers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/useMembers.ts -------------------------------------------------------------------------------- /components/useOnChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/useOnChange.ts -------------------------------------------------------------------------------- /components/useOnOutsideClick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/useOnOutsideClick.ts -------------------------------------------------------------------------------- /components/useRefToLatest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/useRefToLatest.ts -------------------------------------------------------------------------------- /components/useRunOnce.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/useRunOnce.tsx -------------------------------------------------------------------------------- /components/useSelected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/useSelected.ts -------------------------------------------------------------------------------- /components/useSession.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/useSession.tsx -------------------------------------------------------------------------------- /components/useShiftSelected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/useShiftSelected.ts -------------------------------------------------------------------------------- /components/useToolExecution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/useToolExecution.ts -------------------------------------------------------------------------------- /components/utils/arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/utils/arrays.ts -------------------------------------------------------------------------------- /components/utils/assert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/utils/assert.ts -------------------------------------------------------------------------------- /components/utils/currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/utils/currency.ts -------------------------------------------------------------------------------- /components/utils/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/utils/email.ts -------------------------------------------------------------------------------- /components/utils/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/utils/files.ts -------------------------------------------------------------------------------- /components/utils/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/utils/html.ts -------------------------------------------------------------------------------- /components/widget/ChatInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/ChatInput.tsx -------------------------------------------------------------------------------- /components/widget/Conversation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/Conversation.tsx -------------------------------------------------------------------------------- /components/widget/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/Header.tsx -------------------------------------------------------------------------------- /components/widget/HelpingHand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/HelpingHand.tsx -------------------------------------------------------------------------------- /components/widget/LoadingMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/LoadingMessage.tsx -------------------------------------------------------------------------------- /components/widget/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/Message.tsx -------------------------------------------------------------------------------- /components/widget/MessageElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/MessageElement.tsx -------------------------------------------------------------------------------- /components/widget/MessagesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/MessagesList.tsx -------------------------------------------------------------------------------- /components/widget/MessagesSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/MessagesSkeleton.tsx -------------------------------------------------------------------------------- /components/widget/PreviousConversations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/PreviousConversations.tsx -------------------------------------------------------------------------------- /components/widget/PromptDetailsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/PromptDetailsModal.tsx -------------------------------------------------------------------------------- /components/widget/ShadowHoverButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/ShadowHoverButton.tsx -------------------------------------------------------------------------------- /components/widget/SupportButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/SupportButtons.tsx -------------------------------------------------------------------------------- /components/widget/ai-steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/ai-steps.tsx -------------------------------------------------------------------------------- /components/widget/eventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/eventBus.ts -------------------------------------------------------------------------------- /components/widget/hooks/useReadPageTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/hooks/useReadPageTool.ts -------------------------------------------------------------------------------- /components/widget/useNewConversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/useNewConversation.ts -------------------------------------------------------------------------------- /components/widget/useWidgetView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/useWidgetView.ts -------------------------------------------------------------------------------- /components/widget/widgetState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/components/widget/widgetState.ts -------------------------------------------------------------------------------- /db/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/client.ts -------------------------------------------------------------------------------- /db/drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle.config.ts -------------------------------------------------------------------------------- /db/drizzle/0000_absurd_gwen_stacy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0000_absurd_gwen_stacy.sql -------------------------------------------------------------------------------- /db/drizzle/0001_mature_meteorite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0001_mature_meteorite.sql -------------------------------------------------------------------------------- /db/drizzle/0002_cool_shape.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0002_cool_shape.sql -------------------------------------------------------------------------------- /db/drizzle/0003_worthless_roughhouse.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0003_worthless_roughhouse.sql -------------------------------------------------------------------------------- /db/drizzle/0004_furry_captain_flint.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0004_furry_captain_flint.sql -------------------------------------------------------------------------------- /db/drizzle/0005_certain_jack_power.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0005_certain_jack_power.sql -------------------------------------------------------------------------------- /db/drizzle/0006_wakeful_mimic.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0006_wakeful_mimic.sql -------------------------------------------------------------------------------- /db/drizzle/0007_overjoyed_mongu.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0007_overjoyed_mongu.sql -------------------------------------------------------------------------------- /db/drizzle/0008_stiff_surge.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0008_stiff_surge.sql -------------------------------------------------------------------------------- /db/drizzle/0009_cool_the_fallen.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0009_cool_the_fallen.sql -------------------------------------------------------------------------------- /db/drizzle/0010_nice_viper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0010_nice_viper.sql -------------------------------------------------------------------------------- /db/drizzle/0011_futuristic_marrow.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0011_futuristic_marrow.sql -------------------------------------------------------------------------------- /db/drizzle/0012_sloppy_thundra.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0012_sloppy_thundra.sql -------------------------------------------------------------------------------- /db/drizzle/0013_nasty_clea.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "mailboxes_organization" DROP COLUMN IF EXISTS "is_onboarding_completed"; -------------------------------------------------------------------------------- /db/drizzle/0014_polite_thaddeus_ross.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0014_polite_thaddeus_ross.sql -------------------------------------------------------------------------------- /db/drizzle/0015_bitter_vindicator.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0015_bitter_vindicator.sql -------------------------------------------------------------------------------- /db/drizzle/0016_mean_wildside.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0016_mean_wildside.sql -------------------------------------------------------------------------------- /db/drizzle/0017_even_ikaris.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0017_even_ikaris.sql -------------------------------------------------------------------------------- /db/drizzle/0018_concerned_wendell_rand.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0018_concerned_wendell_rand.sql -------------------------------------------------------------------------------- /db/drizzle/0019_flawless_ezekiel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0019_flawless_ezekiel.sql -------------------------------------------------------------------------------- /db/drizzle/0020_serious_whistler.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0020_serious_whistler.sql -------------------------------------------------------------------------------- /db/drizzle/0021_overjoyed_fat_cobra.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0021_overjoyed_fat_cobra.sql -------------------------------------------------------------------------------- /db/drizzle/0022_early_pretty_boy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0022_early_pretty_boy.sql -------------------------------------------------------------------------------- /db/drizzle/0023_blushing_deadpool.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0023_blushing_deadpool.sql -------------------------------------------------------------------------------- /db/drizzle/0024_nosy_meggan.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0024_nosy_meggan.sql -------------------------------------------------------------------------------- /db/drizzle/0025_perfect_patriot.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0025_perfect_patriot.sql -------------------------------------------------------------------------------- /db/drizzle/0026_lush_unicorn.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0026_lush_unicorn.sql -------------------------------------------------------------------------------- /db/drizzle/0027_watery_senator_kelly.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0027_watery_senator_kelly.sql -------------------------------------------------------------------------------- /db/drizzle/0028_spicy_deathbird.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "tools" ADD COLUMN "enabled" boolean DEFAULT true NOT NULL; -------------------------------------------------------------------------------- /db/drizzle/0029_fast_ghost_rider.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0029_fast_ghost_rider.sql -------------------------------------------------------------------------------- /db/drizzle/0030_gifted_yellowjacket.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0030_gifted_yellowjacket.sql -------------------------------------------------------------------------------- /db/drizzle/0031_ancient_famine.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0031_ancient_famine.sql -------------------------------------------------------------------------------- /db/drizzle/0032_bizarre_doorman.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0032_bizarre_doorman.sql -------------------------------------------------------------------------------- /db/drizzle/0033_lethal_firelord.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0033_lethal_firelord.sql -------------------------------------------------------------------------------- /db/drizzle/0034_flashy_apocalypse.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0034_flashy_apocalypse.sql -------------------------------------------------------------------------------- /db/drizzle/0035_fantastic_robin_chapel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0035_fantastic_robin_chapel.sql -------------------------------------------------------------------------------- /db/drizzle/0036_dapper_sphinx.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0036_dapper_sphinx.sql -------------------------------------------------------------------------------- /db/drizzle/0037_equal_wither.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0037_equal_wither.sql -------------------------------------------------------------------------------- /db/drizzle/0038_amazing_human_fly.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0038_amazing_human_fly.sql -------------------------------------------------------------------------------- /db/drizzle/0039_lush_dracula.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0039_lush_dracula.sql -------------------------------------------------------------------------------- /db/drizzle/0040_amused_wolverine.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0040_amused_wolverine.sql -------------------------------------------------------------------------------- /db/drizzle/0041_misty_the_order.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0041_misty_the_order.sql -------------------------------------------------------------------------------- /db/drizzle/0042_aromatic_sally_floyd.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0042_aromatic_sally_floyd.sql -------------------------------------------------------------------------------- /db/drizzle/0043_charming_clint_barton.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "messages" DROP COLUMN "highlighted_text"; -------------------------------------------------------------------------------- /db/drizzle/0044_same_human_robot.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0044_same_human_robot.sql -------------------------------------------------------------------------------- /db/drizzle/0045_dizzy_franklin_storm.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0045_dizzy_franklin_storm.sql -------------------------------------------------------------------------------- /db/drizzle/0046_legal_sue_storm.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0046_legal_sue_storm.sql -------------------------------------------------------------------------------- /db/drizzle/0047_giant_red_wolf.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0047_giant_red_wolf.sql -------------------------------------------------------------------------------- /db/drizzle/0049_calm_toad_men.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0049_calm_toad_men.sql -------------------------------------------------------------------------------- /db/drizzle/0050_slim_monster_badoon.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0050_slim_monster_badoon.sql -------------------------------------------------------------------------------- /db/drizzle/0051_lucky_skreet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0051_lucky_skreet.sql -------------------------------------------------------------------------------- /db/drizzle/0052_fast_lenny_balinger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0052_fast_lenny_balinger.sql -------------------------------------------------------------------------------- /db/drizzle/0053_rename-pinned-replies.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0053_rename-pinned-replies.sql -------------------------------------------------------------------------------- /db/drizzle/0054_fine_boomer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0054_fine_boomer.sql -------------------------------------------------------------------------------- /db/drizzle/0055_long_thunderball.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0055_long_thunderball.sql -------------------------------------------------------------------------------- /db/drizzle/0056_jazzy_molly_hayes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0056_jazzy_molly_hayes.sql -------------------------------------------------------------------------------- /db/drizzle/0058_icy_romulus.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0058_icy_romulus.sql -------------------------------------------------------------------------------- /db/drizzle/0059_known_viper.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0059_known_viper.sql -------------------------------------------------------------------------------- /db/drizzle/0060_legal_reptil.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0060_legal_reptil.sql -------------------------------------------------------------------------------- /db/drizzle/0061_tranquil_mystique.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0061_tranquil_mystique.sql -------------------------------------------------------------------------------- /db/drizzle/0062_sturdy_william_stryker.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0062_sturdy_william_stryker.sql -------------------------------------------------------------------------------- /db/drizzle/0063_tidy_forge.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0063_tidy_forge.sql -------------------------------------------------------------------------------- /db/drizzle/0064_little_the_order.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0064_little_the_order.sql -------------------------------------------------------------------------------- /db/drizzle/0065_married_gambit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0065_married_gambit.sql -------------------------------------------------------------------------------- /db/drizzle/0066_worthless_darkstar.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "mailboxes_transactionalemailaddressregex" CASCADE; -------------------------------------------------------------------------------- /db/drizzle/0067_next_surge.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "mailboxes_stylelinter" CASCADE; -------------------------------------------------------------------------------- /db/drizzle/0068_closed_unus.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0068_closed_unus.sql -------------------------------------------------------------------------------- /db/drizzle/0069_open_patriot.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0069_open_patriot.sql -------------------------------------------------------------------------------- /db/drizzle/0070_loose_argent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0070_loose_argent.sql -------------------------------------------------------------------------------- /db/drizzle/0071_sudden_tattoo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0071_sudden_tattoo.sql -------------------------------------------------------------------------------- /db/drizzle/0072_misty_valeria_richards.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0072_misty_valeria_richards.sql -------------------------------------------------------------------------------- /db/drizzle/0073_needy_kronos.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0073_needy_kronos.sql -------------------------------------------------------------------------------- /db/drizzle/0074_shiny_nebula.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0074_shiny_nebula.sql -------------------------------------------------------------------------------- /db/drizzle/0075_tense_blink.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0075_tense_blink.sql -------------------------------------------------------------------------------- /db/drizzle/0076_polite_meltdown.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0076_polite_meltdown.sql -------------------------------------------------------------------------------- /db/drizzle/0077_ambitious_madame_masque.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0077_ambitious_madame_masque.sql -------------------------------------------------------------------------------- /db/drizzle/0078_busy_mesmero.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0078_busy_mesmero.sql -------------------------------------------------------------------------------- /db/drizzle/0079_bouncy_mentallo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0079_bouncy_mentallo.sql -------------------------------------------------------------------------------- /db/drizzle/0080_huge_vermin.sql: -------------------------------------------------------------------------------- 1 | ALTER TYPE "public"."guide_session_event_type" ADD VALUE 'resumed'; -------------------------------------------------------------------------------- /db/drizzle/0081_cold_the_liberteens.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0081_cold_the_liberteens.sql -------------------------------------------------------------------------------- /db/drizzle/0082_nervous_siren.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "tools" ADD COLUMN "customer_email_parameter" text; -------------------------------------------------------------------------------- /db/drizzle/0083_glamorous_meltdown.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0083_glamorous_meltdown.sql -------------------------------------------------------------------------------- /db/drizzle/0084_boring_paibok.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0084_boring_paibok.sql -------------------------------------------------------------------------------- /db/drizzle/0085_realtime_rls.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0085_realtime_rls.sql -------------------------------------------------------------------------------- /db/drizzle/0086_windy_mole_man.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0086_windy_mole_man.sql -------------------------------------------------------------------------------- /db/drizzle/0087_storage_buckets.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0087_storage_buckets.sql -------------------------------------------------------------------------------- /db/drizzle/0088_tiresome_wiccan.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0088_tiresome_wiccan.sql -------------------------------------------------------------------------------- /db/drizzle/0089_curvy_retro_girl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0089_curvy_retro_girl.sql -------------------------------------------------------------------------------- /db/drizzle/0090_old_elektra.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0090_old_elektra.sql -------------------------------------------------------------------------------- /db/drizzle/0091_talented_proemial_gods.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0091_talented_proemial_gods.sql -------------------------------------------------------------------------------- /db/drizzle/0092_old_vulcan.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0092_old_vulcan.sql -------------------------------------------------------------------------------- /db/drizzle/0093_jobs_extensions.sql: -------------------------------------------------------------------------------- 1 | COMMIT;--> statement-breakpoint 2 | CREATE EXTENSION IF NOT EXISTS pgmq; -------------------------------------------------------------------------------- /db/drizzle/0094_jobs_queue.sql: -------------------------------------------------------------------------------- 1 | SELECT 2 | FROM 3 | pgmq.create ('jobs'); -------------------------------------------------------------------------------- /db/drizzle/0095_daffy_eternity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0095_daffy_eternity.sql -------------------------------------------------------------------------------- /db/drizzle/0096_cron_extension.sql: -------------------------------------------------------------------------------- 1 | COMMIT;--> statement-breakpoint 2 | CREATE EXTENSION IF NOT EXISTS pg_cron; -------------------------------------------------------------------------------- /db/drizzle/0097_http_extension.sql: -------------------------------------------------------------------------------- 1 | COMMIT;--> statement-breakpoint 2 | CREATE EXTENSION IF NOT EXISTS http; -------------------------------------------------------------------------------- /db/drizzle/0098_lean_gunslinger.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "job_runs" ADD COLUMN "queue_message_id" bigint; -------------------------------------------------------------------------------- /db/drizzle/0099_nifty_goliath.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0099_nifty_goliath.sql -------------------------------------------------------------------------------- /db/drizzle/0100_cheerful_clea.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0100_cheerful_clea.sql -------------------------------------------------------------------------------- /db/drizzle/0101_complete_wraith.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0101_complete_wraith.sql -------------------------------------------------------------------------------- /db/drizzle/0102_user_profile_trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0102_user_profile_trigger.sql -------------------------------------------------------------------------------- /db/drizzle/0103_backfill_user_profiles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0103_backfill_user_profiles.sql -------------------------------------------------------------------------------- /db/drizzle/0104_little_revanche.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0104_little_revanche.sql -------------------------------------------------------------------------------- /db/drizzle/0105_nosy_lord_hawal.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "user_profiles" ADD COLUMN "deleted_at" timestamp; -------------------------------------------------------------------------------- /db/drizzle/0106_rare_songbird.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0106_rare_songbird.sql -------------------------------------------------------------------------------- /db/drizzle/0107_illegal_wallop.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0107_illegal_wallop.sql -------------------------------------------------------------------------------- /db/drizzle/0108_issue_groups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0108_issue_groups.sql -------------------------------------------------------------------------------- /db/drizzle/0109_certain_roughhouse.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0109_certain_roughhouse.sql -------------------------------------------------------------------------------- /db/drizzle/0110_wealthy_raider.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0110_wealthy_raider.sql -------------------------------------------------------------------------------- /db/drizzle/0112_cool_outlaw_kid.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0112_cool_outlaw_kid.sql -------------------------------------------------------------------------------- /db/drizzle/0113_faithful_doorman.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0113_faithful_doorman.sql -------------------------------------------------------------------------------- /db/drizzle/0114_special_spot.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0114_special_spot.sql -------------------------------------------------------------------------------- /db/drizzle/0115_opposite_cargill.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0115_opposite_cargill.sql -------------------------------------------------------------------------------- /db/drizzle/0116_dizzy_red_ghost.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "guide_sessions" ADD COLUMN "message_id" bigint; -------------------------------------------------------------------------------- /db/drizzle/0117_realtime_presence_rls.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0117_realtime_presence_rls.sql -------------------------------------------------------------------------------- /db/drizzle/0118_plain_diamondback.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0118_plain_diamondback.sql -------------------------------------------------------------------------------- /db/drizzle/0119_nostalgic_doctor_faustus.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "user_profiles" ADD COLUMN "preferences" jsonb; -------------------------------------------------------------------------------- /db/drizzle/0120_jittery_the_leader.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0120_jittery_the_leader.sql -------------------------------------------------------------------------------- /db/drizzle/0121_windy_vulture.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "mailboxes_platformcustomer" ADD COLUMN "metadata" jsonb; -------------------------------------------------------------------------------- /db/drizzle/0122_eager_deathstrike.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0122_eager_deathstrike.sql -------------------------------------------------------------------------------- /db/drizzle/0123_slow_spyke.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/0123_slow_spyke.sql -------------------------------------------------------------------------------- /db/drizzle/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0000_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0001_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0002_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0002_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0003_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0003_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0004_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0004_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0005_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0005_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0006_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0006_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0007_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0007_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0008_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0008_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0009_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0009_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0010_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0010_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0011_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0011_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0012_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0012_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0013_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0013_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0014_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0014_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0015_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0015_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0016_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0016_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0017_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0017_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0018_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0018_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0019_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0019_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0020_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0020_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0021_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0021_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0022_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0022_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0023_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0023_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0024_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0024_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0025_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0025_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0026_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0026_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0027_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0027_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0028_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0028_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0029_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0029_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0030_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0030_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0031_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0031_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0032_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0032_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0033_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0033_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0034_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0034_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0035_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0035_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0036_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0036_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0037_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0037_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0038_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0038_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0039_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0039_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0040_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0040_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0041_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0041_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0042_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0042_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0043_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0043_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0044_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0044_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0045_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0045_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0046_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0046_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0047_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0047_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0048_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0048_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0049_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0049_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0050_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0050_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0051_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0051_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0052_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0052_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0053_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0053_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0054_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0054_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0055_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0055_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0056_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0056_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0057_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0057_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0058_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0058_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0059_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0059_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0060_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0060_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0061_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0061_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0065_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0065_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0066_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0066_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0067_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0067_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0068_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0068_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0069_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0069_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0070_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0070_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0071_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0071_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0072_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0072_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0073_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0073_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0074_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0074_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0075_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0075_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0076_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0076_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0077_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0077_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0078_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0078_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0079_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0079_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0080_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0080_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0081_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0081_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0082_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0082_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0083_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0083_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0084_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0084_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0085_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0085_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0086_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0086_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0087_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0087_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0088_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0088_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0089_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0089_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0090_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0090_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0091_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0091_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0092_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0092_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0093_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0093_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0094_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0094_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0095_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0095_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0096_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0096_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0097_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0097_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0098_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0098_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0099_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0099_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0100_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0100_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0101_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0101_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0102_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0102_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0103_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0103_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0104_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0104_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0105_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0105_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0106_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0106_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0107_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0107_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0108_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0108_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0109_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0109_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0110_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0110_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0111_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0111_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0112_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0112_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0113_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0113_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0114_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0114_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0115_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0115_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0116_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0116_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0117_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0117_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0118_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0118_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0119_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0119_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0120_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0120_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0121_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0121_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0122_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0122_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/0123_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/0123_snapshot.json -------------------------------------------------------------------------------- /db/drizzle/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/drizzle/meta/_journal.json -------------------------------------------------------------------------------- /db/lib/cronUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/lib/cronUtils.ts -------------------------------------------------------------------------------- /db/lib/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/lib/crypto.ts -------------------------------------------------------------------------------- /db/lib/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/lib/debug.ts -------------------------------------------------------------------------------- /db/lib/random-slug-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/lib/random-slug-field.ts -------------------------------------------------------------------------------- /db/lib/with-timestamps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/lib/with-timestamps.ts -------------------------------------------------------------------------------- /db/schema/agentMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/agentMessages.ts -------------------------------------------------------------------------------- /db/schema/agentThreads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/agentThreads.ts -------------------------------------------------------------------------------- /db/schema/aiUsageEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/aiUsageEvents.ts -------------------------------------------------------------------------------- /db/schema/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/cache.ts -------------------------------------------------------------------------------- /db/schema/conversationEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/conversationEvents.ts -------------------------------------------------------------------------------- /db/schema/conversationFollowers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/conversationFollowers.ts -------------------------------------------------------------------------------- /db/schema/conversationMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/conversationMessages.ts -------------------------------------------------------------------------------- /db/schema/conversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/conversations.ts -------------------------------------------------------------------------------- /db/schema/faqs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/faqs.ts -------------------------------------------------------------------------------- /db/schema/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/files.ts -------------------------------------------------------------------------------- /db/schema/gmailSupportEmails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/gmailSupportEmails.ts -------------------------------------------------------------------------------- /db/schema/guideSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/guideSession.ts -------------------------------------------------------------------------------- /db/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/index.ts -------------------------------------------------------------------------------- /db/schema/issueGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/issueGroups.ts -------------------------------------------------------------------------------- /db/schema/jobRuns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/jobRuns.ts -------------------------------------------------------------------------------- /db/schema/mailboxes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/mailboxes.ts -------------------------------------------------------------------------------- /db/schema/mailboxesMetadataApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/mailboxesMetadataApi.ts -------------------------------------------------------------------------------- /db/schema/messageNotifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/messageNotifications.ts -------------------------------------------------------------------------------- /db/schema/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/notes.ts -------------------------------------------------------------------------------- /db/schema/platformCustomers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/platformCustomers.ts -------------------------------------------------------------------------------- /db/schema/savedReplies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/savedReplies.ts -------------------------------------------------------------------------------- /db/schema/storedTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/storedTools.ts -------------------------------------------------------------------------------- /db/schema/toolApis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/toolApis.ts -------------------------------------------------------------------------------- /db/schema/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/tools.ts -------------------------------------------------------------------------------- /db/schema/userProfiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/userProfiles.ts -------------------------------------------------------------------------------- /db/schema/websites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/schema/websites.ts -------------------------------------------------------------------------------- /db/seeds/fixtures/conversationFixture3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/seeds/fixtures/conversationFixture3.json -------------------------------------------------------------------------------- /db/seeds/fixtures/conversationFixture4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/seeds/fixtures/conversationFixture4.json -------------------------------------------------------------------------------- /db/seeds/fixtures/conversationFixture6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/seeds/fixtures/conversationFixture6.json -------------------------------------------------------------------------------- /db/seeds/helpArticlesData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/seeds/helpArticlesData.ts -------------------------------------------------------------------------------- /db/seeds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/seeds/index.ts -------------------------------------------------------------------------------- /db/seeds/seedDatabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/seeds/seedDatabase.ts -------------------------------------------------------------------------------- /db/setupCron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/setupCron.ts -------------------------------------------------------------------------------- /db/supabaseSchema/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/db/supabaseSchema/auth.ts -------------------------------------------------------------------------------- /docs/helping-hand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/docs/helping-hand.md -------------------------------------------------------------------------------- /docs/images/resend_preview_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/docs/images/resend_preview_email.png -------------------------------------------------------------------------------- /eslint.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/eslint.config.d.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /instrumentation-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/instrumentation-client.ts -------------------------------------------------------------------------------- /instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/instrumentation.ts -------------------------------------------------------------------------------- /jobs/autoAssignConversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/autoAssignConversation.ts -------------------------------------------------------------------------------- /jobs/autoCloseInactiveConversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/autoCloseInactiveConversations.ts -------------------------------------------------------------------------------- /jobs/bulkEmbeddingClosedConversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/bulkEmbeddingClosedConversations.ts -------------------------------------------------------------------------------- /jobs/bulkUpdateConversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/bulkUpdateConversations.ts -------------------------------------------------------------------------------- /jobs/checkAssignedTicketResponseTimes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/checkAssignedTicketResponseTimes.ts -------------------------------------------------------------------------------- /jobs/checkVipResponseTimes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/checkVipResponseTimes.ts -------------------------------------------------------------------------------- /jobs/cleanupDanglingFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/cleanupDanglingFiles.ts -------------------------------------------------------------------------------- /jobs/crawlWebsite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/crawlWebsite.ts -------------------------------------------------------------------------------- /jobs/embeddingConversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/embeddingConversation.ts -------------------------------------------------------------------------------- /jobs/embeddingFaq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/embeddingFaq.ts -------------------------------------------------------------------------------- /jobs/generateDailyReports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/generateDailyReports.ts -------------------------------------------------------------------------------- /jobs/generateFilePreview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/generateFilePreview.ts -------------------------------------------------------------------------------- /jobs/generateWeeklyReports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/generateWeeklyReports.ts -------------------------------------------------------------------------------- /jobs/handleAutoResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/handleAutoResponse.ts -------------------------------------------------------------------------------- /jobs/handleGmailWebhookEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/handleGmailWebhookEvent.ts -------------------------------------------------------------------------------- /jobs/handleSlackAgentMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/handleSlackAgentMessage.ts -------------------------------------------------------------------------------- /jobs/importGmailThreads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/importGmailThreads.ts -------------------------------------------------------------------------------- /jobs/importRecentGmailThreads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/importRecentGmailThreads.ts -------------------------------------------------------------------------------- /jobs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/index.ts -------------------------------------------------------------------------------- /jobs/indexConversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/indexConversation.ts -------------------------------------------------------------------------------- /jobs/mergeSimilarConversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/mergeSimilarConversations.ts -------------------------------------------------------------------------------- /jobs/notifyVipMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/notifyVipMessage.ts -------------------------------------------------------------------------------- /jobs/postEmailToGmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/postEmailToGmail.ts -------------------------------------------------------------------------------- /jobs/publishNewMessageEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/publishNewMessageEvent.ts -------------------------------------------------------------------------------- /jobs/publishRequestHumanSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/publishRequestHumanSupport.ts -------------------------------------------------------------------------------- /jobs/renewMailboxWatches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/renewMailboxWatches.ts -------------------------------------------------------------------------------- /jobs/scheduledWebsiteCrawl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/scheduledWebsiteCrawl.ts -------------------------------------------------------------------------------- /jobs/sendFollowerNotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/sendFollowerNotification.ts -------------------------------------------------------------------------------- /jobs/suggestKnowledgeBankChanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/suggestKnowledgeBankChanges.ts -------------------------------------------------------------------------------- /jobs/trigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/trigger.ts -------------------------------------------------------------------------------- /jobs/updateSuggestedActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/updateSuggestedActions.ts -------------------------------------------------------------------------------- /jobs/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/jobs/utils.ts -------------------------------------------------------------------------------- /knip.json: -------------------------------------------------------------------------------- 1 | { 2 | "ignore": ["components/ui/*"] 3 | } 4 | -------------------------------------------------------------------------------- /lib/ai/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/chat.ts -------------------------------------------------------------------------------- /lib/ai/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/constants.ts -------------------------------------------------------------------------------- /lib/ai/conversationEmbedding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/conversationEmbedding.ts -------------------------------------------------------------------------------- /lib/ai/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/core.ts -------------------------------------------------------------------------------- /lib/ai/customerInfoPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/customerInfoPrompt.ts -------------------------------------------------------------------------------- /lib/ai/generateCommonIssues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/generateCommonIssues.ts -------------------------------------------------------------------------------- /lib/ai/generateConversationSummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/generateConversationSummary.ts -------------------------------------------------------------------------------- /lib/ai/guide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/guide.ts -------------------------------------------------------------------------------- /lib/ai/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/index.ts -------------------------------------------------------------------------------- /lib/ai/knowledgeBankSuggestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/knowledgeBankSuggestions.ts -------------------------------------------------------------------------------- /lib/ai/messageBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/messageBuilder.ts -------------------------------------------------------------------------------- /lib/ai/mockOpenAI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/mockOpenAI.ts -------------------------------------------------------------------------------- /lib/ai/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/openai.ts -------------------------------------------------------------------------------- /lib/ai/promptInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/promptInfo.ts -------------------------------------------------------------------------------- /lib/ai/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/prompts.ts -------------------------------------------------------------------------------- /lib/ai/readPageTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/readPageTool.ts -------------------------------------------------------------------------------- /lib/ai/sampleQuestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/sampleQuestions.ts -------------------------------------------------------------------------------- /lib/ai/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/ai/tools.ts -------------------------------------------------------------------------------- /lib/auth/authService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/auth/authService.ts -------------------------------------------------------------------------------- /lib/auth/authUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/auth/authUtils.ts -------------------------------------------------------------------------------- /lib/auth/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/auth/constants.ts -------------------------------------------------------------------------------- /lib/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/cache.ts -------------------------------------------------------------------------------- /lib/data/aiUsageEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/aiUsageEvents.ts -------------------------------------------------------------------------------- /lib/data/conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/conversation.ts -------------------------------------------------------------------------------- /lib/data/conversation/responseTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/conversation/responseTime.ts -------------------------------------------------------------------------------- /lib/data/conversation/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/conversation/search.ts -------------------------------------------------------------------------------- /lib/data/conversation/searchSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/conversation/searchSchema.ts -------------------------------------------------------------------------------- /lib/data/conversationMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/conversationMessage.ts -------------------------------------------------------------------------------- /lib/data/dashboardEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/dashboardEvent.ts -------------------------------------------------------------------------------- /lib/data/dataError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/dataError.ts -------------------------------------------------------------------------------- /lib/data/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/files.ts -------------------------------------------------------------------------------- /lib/data/gmailSupportEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/gmailSupportEmail.ts -------------------------------------------------------------------------------- /lib/data/guide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/guide.ts -------------------------------------------------------------------------------- /lib/data/knowledge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/knowledge.ts -------------------------------------------------------------------------------- /lib/data/mailbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/mailbox.ts -------------------------------------------------------------------------------- /lib/data/messageNotifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/messageNotifications.ts -------------------------------------------------------------------------------- /lib/data/note.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/note.ts -------------------------------------------------------------------------------- /lib/data/platformCustomer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/platformCustomer.ts -------------------------------------------------------------------------------- /lib/data/retrieval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/retrieval.ts -------------------------------------------------------------------------------- /lib/data/savedReplies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/savedReplies.ts -------------------------------------------------------------------------------- /lib/data/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/stats.ts -------------------------------------------------------------------------------- /lib/data/storedTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/storedTool.ts -------------------------------------------------------------------------------- /lib/data/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/tools.ts -------------------------------------------------------------------------------- /lib/data/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/data/user.ts -------------------------------------------------------------------------------- /lib/emailKeywordsExtractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/emailKeywordsExtractor.ts -------------------------------------------------------------------------------- /lib/emails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/emails.ts -------------------------------------------------------------------------------- /lib/emails/aiReply.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/emails/aiReply.tsx -------------------------------------------------------------------------------- /lib/emails/followerNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/emails/followerNotification.tsx -------------------------------------------------------------------------------- /lib/emails/otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/emails/otp.tsx -------------------------------------------------------------------------------- /lib/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/env.ts -------------------------------------------------------------------------------- /lib/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/files.ts -------------------------------------------------------------------------------- /lib/github/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/github/client.ts -------------------------------------------------------------------------------- /lib/gmail/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/gmail/client.ts -------------------------------------------------------------------------------- /lib/gmail/lib.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/gmail/lib.tsx -------------------------------------------------------------------------------- /lib/metadataApiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/metadataApiClient.ts -------------------------------------------------------------------------------- /lib/proxyExternalContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/proxyExternalContent.ts -------------------------------------------------------------------------------- /lib/realtime/channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/realtime/channels.ts -------------------------------------------------------------------------------- /lib/realtime/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/realtime/hooks.ts -------------------------------------------------------------------------------- /lib/realtime/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/realtime/publish.ts -------------------------------------------------------------------------------- /lib/search/helpArticleSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/search/helpArticleSearch.ts -------------------------------------------------------------------------------- /lib/search/searchSnippet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/search/searchSnippet.ts -------------------------------------------------------------------------------- /lib/secrets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/secrets.ts -------------------------------------------------------------------------------- /lib/sentry/common-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/sentry/common-config.ts -------------------------------------------------------------------------------- /lib/sentry/edge-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/sentry/edge-config.ts -------------------------------------------------------------------------------- /lib/sentry/server-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/sentry/server-config.ts -------------------------------------------------------------------------------- /lib/shared/attachmentValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/shared/attachmentValidation.ts -------------------------------------------------------------------------------- /lib/shared/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/shared/browser.ts -------------------------------------------------------------------------------- /lib/shared/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/shared/html.ts -------------------------------------------------------------------------------- /lib/shared/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/shared/sentry.ts -------------------------------------------------------------------------------- /lib/shared/slug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/shared/slug.ts -------------------------------------------------------------------------------- /lib/slack/agent/findMailboxForEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/slack/agent/findMailboxForEvent.ts -------------------------------------------------------------------------------- /lib/slack/agent/generateAgentResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/slack/agent/generateAgentResponse.ts -------------------------------------------------------------------------------- /lib/slack/agent/getThreadMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/slack/agent/getThreadMessages.ts -------------------------------------------------------------------------------- /lib/slack/agent/handleMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/slack/agent/handleMessages.ts -------------------------------------------------------------------------------- /lib/slack/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/slack/client.ts -------------------------------------------------------------------------------- /lib/slack/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/slack/constants.ts -------------------------------------------------------------------------------- /lib/slack/linkUnfurl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/slack/linkUnfurl.ts -------------------------------------------------------------------------------- /lib/slack/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/slack/shared.ts -------------------------------------------------------------------------------- /lib/slack/vipNotifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/slack/vipNotifications.ts -------------------------------------------------------------------------------- /lib/supabase/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/supabase/client.ts -------------------------------------------------------------------------------- /lib/supabase/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/supabase/middleware.ts -------------------------------------------------------------------------------- /lib/supabase/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/supabase/server.ts -------------------------------------------------------------------------------- /lib/tools/apiTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/tools/apiTool.ts -------------------------------------------------------------------------------- /lib/tools/openApiParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/tools/openApiParser.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /lib/widget/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/widget/messages.ts -------------------------------------------------------------------------------- /lib/widgetSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/lib/widgetSession.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/package.json -------------------------------------------------------------------------------- /packages/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/client/package.json -------------------------------------------------------------------------------- /packages/client/src/auth/helper-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/client/src/auth/helper-auth.ts -------------------------------------------------------------------------------- /packages/client/src/auth/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./helper-auth"; 2 | -------------------------------------------------------------------------------- /packages/client/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/client/src/client.ts -------------------------------------------------------------------------------- /packages/client/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/client/src/index.ts -------------------------------------------------------------------------------- /packages/client/src/realtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/client/src/realtime.ts -------------------------------------------------------------------------------- /packages/client/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/client/src/types.ts -------------------------------------------------------------------------------- /packages/client/tests/helper-auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/client/tests/helper-auth.test.ts -------------------------------------------------------------------------------- /packages/client/tests/support/globalSetup.ts: -------------------------------------------------------------------------------- 1 | export default function globalSetup() {} 2 | -------------------------------------------------------------------------------- /packages/client/tests/support/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/client/tests/support/setup.ts -------------------------------------------------------------------------------- /packages/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/client/tsconfig.json -------------------------------------------------------------------------------- /packages/client/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/client/tsup.config.ts -------------------------------------------------------------------------------- /packages/marketing/.gitignore: -------------------------------------------------------------------------------- 1 | .env* -------------------------------------------------------------------------------- /packages/marketing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/README.md -------------------------------------------------------------------------------- /packages/marketing/app/animatedTyping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/app/animatedTyping.tsx -------------------------------------------------------------------------------- /packages/marketing/app/citationsDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/app/citationsDemo.tsx -------------------------------------------------------------------------------- /packages/marketing/app/contactModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/app/contactModal.tsx -------------------------------------------------------------------------------- /packages/marketing/app/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/app/docs/layout.tsx -------------------------------------------------------------------------------- /packages/marketing/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/app/globals.css -------------------------------------------------------------------------------- /packages/marketing/app/help/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/app/help/page.tsx -------------------------------------------------------------------------------- /packages/marketing/app/layout.config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/app/layout.config.tsx -------------------------------------------------------------------------------- /packages/marketing/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/app/layout.tsx -------------------------------------------------------------------------------- /packages/marketing/app/logoIconAmber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/app/logoIconAmber.svg -------------------------------------------------------------------------------- /packages/marketing/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/app/not-found.tsx -------------------------------------------------------------------------------- /packages/marketing/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/app/page.tsx -------------------------------------------------------------------------------- /packages/marketing/app/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/app/privacy/page.tsx -------------------------------------------------------------------------------- /packages/marketing/app/refundDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/app/refundDemo.tsx -------------------------------------------------------------------------------- /packages/marketing/app/slackInterface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/app/slackInterface.tsx -------------------------------------------------------------------------------- /packages/marketing/app/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/app/terms/page.tsx -------------------------------------------------------------------------------- /packages/marketing/app/toolsDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/app/toolsDemo.tsx -------------------------------------------------------------------------------- /packages/marketing/app/useBreakpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/app/useBreakpoint.ts -------------------------------------------------------------------------------- /packages/marketing/content/docs/api/api-reference/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "API Reference" 3 | } 4 | -------------------------------------------------------------------------------- /packages/marketing/content/docs/api/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Conversation API" 3 | } 4 | -------------------------------------------------------------------------------- /packages/marketing/content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/content/docs/index.mdx -------------------------------------------------------------------------------- /packages/marketing/content/docs/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/content/docs/meta.json -------------------------------------------------------------------------------- /packages/marketing/content/docs/widget/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Chat Widget" 3 | } 4 | -------------------------------------------------------------------------------- /packages/marketing/lib/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/lib/source.ts -------------------------------------------------------------------------------- /packages/marketing/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/lib/utils.ts -------------------------------------------------------------------------------- /packages/marketing/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/next.config.mjs -------------------------------------------------------------------------------- /packages/marketing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/package.json -------------------------------------------------------------------------------- /packages/marketing/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/postcss.config.js -------------------------------------------------------------------------------- /packages/marketing/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/public/favicon.ico -------------------------------------------------------------------------------- /packages/marketing/public/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/public/logo-white.svg -------------------------------------------------------------------------------- /packages/marketing/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/public/logo.svg -------------------------------------------------------------------------------- /packages/marketing/public/logo_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/public/logo_icon.svg -------------------------------------------------------------------------------- /packages/marketing/scripts/vercel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/scripts/vercel.sh -------------------------------------------------------------------------------- /packages/marketing/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/tailwind.config.ts -------------------------------------------------------------------------------- /packages/marketing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/marketing/tsconfig.json -------------------------------------------------------------------------------- /packages/react/.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/.changeset/README.md -------------------------------------------------------------------------------- /packages/react/.changeset/breezy-spies-compete.md: -------------------------------------------------------------------------------- 1 | --- 2 | "@helperai/react": minor 3 | --- 4 | 5 | allow anonymous session 6 | -------------------------------------------------------------------------------- /packages/react/.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/.changeset/config.json -------------------------------------------------------------------------------- /packages/react/.changeset/seven-trees-tie.md: -------------------------------------------------------------------------------- 1 | --- 2 | "@helperai/react": minor 3 | --- 4 | 5 | Update dependencies 6 | -------------------------------------------------------------------------------- /packages/react/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /packages/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/README.md -------------------------------------------------------------------------------- /packages/react/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/global.d.ts -------------------------------------------------------------------------------- /packages/react/package.cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/package.cjs.json -------------------------------------------------------------------------------- /packages/react/package.esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/package.esm.json -------------------------------------------------------------------------------- /packages/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/package.json -------------------------------------------------------------------------------- /packages/react/src/auth.ts: -------------------------------------------------------------------------------- 1 | export * from "@helperai/client/auth"; 2 | -------------------------------------------------------------------------------- /packages/react/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/src/global.d.ts -------------------------------------------------------------------------------- /packages/react/src/hooks/useChat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/src/hooks/useChat.ts -------------------------------------------------------------------------------- /packages/react/src/hooks/useHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/src/hooks/useHelper.ts -------------------------------------------------------------------------------- /packages/react/src/hooks/useSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/src/hooks/useSession.ts -------------------------------------------------------------------------------- /packages/react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/src/index.ts -------------------------------------------------------------------------------- /packages/react/src/test/setup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/src/test/setup.d.ts -------------------------------------------------------------------------------- /packages/react/src/test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/src/test/setup.ts -------------------------------------------------------------------------------- /packages/react/src/test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/src/test/utils.ts -------------------------------------------------------------------------------- /packages/react/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/src/types.ts -------------------------------------------------------------------------------- /packages/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/tsconfig.json -------------------------------------------------------------------------------- /packages/react/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/tsconfig.test.json -------------------------------------------------------------------------------- /packages/react/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/tsup.config.ts -------------------------------------------------------------------------------- /packages/react/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/react/vitest.config.ts -------------------------------------------------------------------------------- /packages/sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/sdk/package.json -------------------------------------------------------------------------------- /packages/sdk/src/domElements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/sdk/src/domElements.ts -------------------------------------------------------------------------------- /packages/sdk/src/domTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/sdk/src/domTree.ts -------------------------------------------------------------------------------- /packages/sdk/src/embed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/sdk/src/embed.css -------------------------------------------------------------------------------- /packages/sdk/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/sdk/src/global.d.ts -------------------------------------------------------------------------------- /packages/sdk/src/guideManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/sdk/src/guideManager.ts -------------------------------------------------------------------------------- /packages/sdk/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/sdk/src/index.ts -------------------------------------------------------------------------------- /packages/sdk/src/scriptOrigin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/sdk/src/scriptOrigin.ts -------------------------------------------------------------------------------- /packages/sdk/src/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/sdk/src/supabase.ts -------------------------------------------------------------------------------- /packages/sdk/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/sdk/src/utils.ts -------------------------------------------------------------------------------- /packages/sdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/sdk/tsconfig.json -------------------------------------------------------------------------------- /packages/sdk/webpack.sdk.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/packages/sdk/webpack.sdk.cjs -------------------------------------------------------------------------------- /patches/next@15.3.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/patches/next@15.3.6.patch -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/app.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/app.webmanifest -------------------------------------------------------------------------------- /public/cta_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/cta_arrow.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/features/ai-powered-drafts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/features/ai-powered-drafts.png -------------------------------------------------------------------------------- /public/features/smart-workflows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/features/smart-workflows.png -------------------------------------------------------------------------------- /public/features/style-consistency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/features/style-consistency.png -------------------------------------------------------------------------------- /public/flexile-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/flexile-logo.svg -------------------------------------------------------------------------------- /public/google-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/google-logo.svg -------------------------------------------------------------------------------- /public/gumroad-logo-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/gumroad-logo-full.svg -------------------------------------------------------------------------------- /public/gumroad-logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/gumroad-logo-text.svg -------------------------------------------------------------------------------- /public/gumroad-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/gumroad-logo.svg -------------------------------------------------------------------------------- /public/hand-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/hand-bg.svg -------------------------------------------------------------------------------- /public/healthcheck.txt: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /public/helper_logo_02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/helper_logo_02.svg -------------------------------------------------------------------------------- /public/homepage/onboarding_card_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/homepage/onboarding_card_1.png -------------------------------------------------------------------------------- /public/homepage/onboarding_card_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/homepage/onboarding_card_2.png -------------------------------------------------------------------------------- /public/homepage/onboarding_card_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/homepage/onboarding_card_3.png -------------------------------------------------------------------------------- /public/homepage/onboarding_people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/homepage/onboarding_people.png -------------------------------------------------------------------------------- /public/human-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/human-avatar.png -------------------------------------------------------------------------------- /public/icon_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/icon_192.png -------------------------------------------------------------------------------- /public/icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/icon_512.png -------------------------------------------------------------------------------- /public/images/1st-place-medal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/images/1st-place-medal.png -------------------------------------------------------------------------------- /public/images/customer-sentiment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/images/customer-sentiment.svg -------------------------------------------------------------------------------- /public/images/github-mark-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/images/github-mark-white.svg -------------------------------------------------------------------------------- /public/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/logo-white.svg -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/logo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/logo_icon.png -------------------------------------------------------------------------------- /public/logo_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/logo_icon.svg -------------------------------------------------------------------------------- /public/logo_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/logo_icon_512.png -------------------------------------------------------------------------------- /public/logo_icon_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/logo_icon_white.svg -------------------------------------------------------------------------------- /public/logo_mahogany_900_for_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/logo_mahogany_900_for_email.png -------------------------------------------------------------------------------- /public/mahogany-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/mahogany-bg.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/openapi.json -------------------------------------------------------------------------------- /public/robot-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/public/robot-avatar.png -------------------------------------------------------------------------------- /scripts/Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/scripts/Procfile.dev -------------------------------------------------------------------------------- /scripts/backfillLastMessageAt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/scripts/backfillLastMessageAt.ts -------------------------------------------------------------------------------- /scripts/delete-saved-replies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/scripts/delete-saved-replies.ts -------------------------------------------------------------------------------- /scripts/deploy-helper-projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/scripts/deploy-helper-projects.ts -------------------------------------------------------------------------------- /scripts/dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/scripts/dev.sh -------------------------------------------------------------------------------- /scripts/e2e-test-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/scripts/e2e-test-server.sh -------------------------------------------------------------------------------- /scripts/e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/scripts/e2e.sh -------------------------------------------------------------------------------- /scripts/ensure-ssl-certificates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/scripts/ensure-ssl-certificates.sh -------------------------------------------------------------------------------- /scripts/generate-ssl-certificates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/scripts/generate-ssl-certificates.sh -------------------------------------------------------------------------------- /scripts/replGlobals.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/scripts/replGlobals.mts -------------------------------------------------------------------------------- /scripts/setup-e2e-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/scripts/setup-e2e-tests.sh -------------------------------------------------------------------------------- /scripts/upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/scripts/upgrade.sh -------------------------------------------------------------------------------- /scripts/vercel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/scripts/vercel.sh -------------------------------------------------------------------------------- /scripts/with-vercel-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/scripts/with-vercel-env.sh -------------------------------------------------------------------------------- /supabase/.env.preview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/supabase/.env.preview -------------------------------------------------------------------------------- /supabase/.gitignore: -------------------------------------------------------------------------------- 1 | # Supabase 2 | .branches 3 | .temp 4 | .env 5 | -------------------------------------------------------------------------------- /supabase/config.ci.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/supabase/config.ci.toml -------------------------------------------------------------------------------- /supabase/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/supabase/config.toml -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tests/components/messageMarkdown.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/components/messageMarkdown.test.tsx -------------------------------------------------------------------------------- /tests/components/utils/email.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/components/utils/email.test.ts -------------------------------------------------------------------------------- /tests/db/lib/random-slug-field.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/db/lib/random-slug-field.test.ts -------------------------------------------------------------------------------- /tests/db/lib/with-timestamps.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/db/lib/with-timestamps.test.ts -------------------------------------------------------------------------------- /tests/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/e2e/README.md -------------------------------------------------------------------------------- /tests/e2e/auth/login.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/e2e/auth/login.spec.ts -------------------------------------------------------------------------------- /tests/e2e/settings/common-issues.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/e2e/settings/common-issues.spec.ts -------------------------------------------------------------------------------- /tests/e2e/settings/integrations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/e2e/settings/integrations.spec.ts -------------------------------------------------------------------------------- /tests/e2e/settings/mailbox.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/e2e/settings/mailbox.spec.ts -------------------------------------------------------------------------------- /tests/e2e/settings/preferences.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/e2e/settings/preferences.spec.ts -------------------------------------------------------------------------------- /tests/e2e/setup/auth.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/e2e/setup/auth.setup.ts -------------------------------------------------------------------------------- /tests/e2e/stats/stats.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/e2e/stats/stats.spec.ts -------------------------------------------------------------------------------- /tests/e2e/utils/cleanupSavedReplies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/e2e/utils/cleanupSavedReplies.ts -------------------------------------------------------------------------------- /tests/e2e/utils/cleaupTestMembers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/e2e/utils/cleaupTestMembers.ts -------------------------------------------------------------------------------- /tests/e2e/utils/commonIssueCleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/e2e/utils/commonIssueCleanup.ts -------------------------------------------------------------------------------- /tests/e2e/utils/conversationHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/e2e/utils/conversationHelpers.ts -------------------------------------------------------------------------------- /tests/e2e/utils/replyHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/e2e/utils/replyHelpers.ts -------------------------------------------------------------------------------- /tests/e2e/utils/settingsHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/e2e/utils/settingsHelpers.ts -------------------------------------------------------------------------------- /tests/e2e/utils/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/e2e/utils/test-helpers.ts -------------------------------------------------------------------------------- /tests/e2e/utils/toastHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/e2e/utils/toastHelpers.ts -------------------------------------------------------------------------------- /tests/e2e/widget/widget.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/e2e/widget/widget.spec.ts -------------------------------------------------------------------------------- /tests/evals/chat/human-request.eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/evals/chat/human-request.eval.ts -------------------------------------------------------------------------------- /tests/evals/chat/knowledge-bank.eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/evals/chat/knowledge-bank.eval.ts -------------------------------------------------------------------------------- /tests/evals/chat/promises.eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/evals/chat/promises.eval.ts -------------------------------------------------------------------------------- /tests/evals/chat/reasoning.eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/evals/chat/reasoning.eval.ts -------------------------------------------------------------------------------- /tests/evals/support/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/evals/support/chat.ts -------------------------------------------------------------------------------- /tests/evals/support/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/evals/support/setup.ts -------------------------------------------------------------------------------- /tests/jobs/cleanupDanglingFiles.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/jobs/cleanupDanglingFiles.test.ts -------------------------------------------------------------------------------- /tests/jobs/embeddingFaq.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/jobs/embeddingFaq.test.ts -------------------------------------------------------------------------------- /tests/jobs/generateDailyReports.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/jobs/generateDailyReports.test.ts -------------------------------------------------------------------------------- /tests/jobs/generateFilePreview.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/jobs/generateFilePreview.test.ts -------------------------------------------------------------------------------- /tests/jobs/generateWeeklyReports.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/jobs/generateWeeklyReports.test.ts -------------------------------------------------------------------------------- /tests/jobs/handleAutoResponse.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/jobs/handleAutoResponse.test.ts -------------------------------------------------------------------------------- /tests/jobs/importGmailThreads.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/jobs/importGmailThreads.test.ts -------------------------------------------------------------------------------- /tests/jobs/postEmailToGmail.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/jobs/postEmailToGmail.test.ts -------------------------------------------------------------------------------- /tests/jobs/renewMailboxWatches.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/jobs/renewMailboxWatches.test.ts -------------------------------------------------------------------------------- /tests/lib/ai/core.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/ai/core.test.ts -------------------------------------------------------------------------------- /tests/lib/ai/customerInfoPrompt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/ai/customerInfoPrompt.test.ts -------------------------------------------------------------------------------- /tests/lib/ai/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/ai/index.test.ts -------------------------------------------------------------------------------- /tests/lib/ai/messageBuilder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/ai/messageBuilder.test.ts -------------------------------------------------------------------------------- /tests/lib/ai/prompts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/ai/prompts.test.ts -------------------------------------------------------------------------------- /tests/lib/ai/respondWithAI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/ai/respondWithAI.test.ts -------------------------------------------------------------------------------- /tests/lib/data/aiUsageEvents.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/data/aiUsageEvents.test.ts -------------------------------------------------------------------------------- /tests/lib/data/conversation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/data/conversation.test.ts -------------------------------------------------------------------------------- /tests/lib/data/files.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/data/files.test.ts -------------------------------------------------------------------------------- /tests/lib/data/gmailSupportEmail.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/data/gmailSupportEmail.test.ts -------------------------------------------------------------------------------- /tests/lib/data/mailbox.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/data/mailbox.test.ts -------------------------------------------------------------------------------- /tests/lib/data/note.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/data/note.test.ts -------------------------------------------------------------------------------- /tests/lib/data/platformCustomer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/data/platformCustomer.test.ts -------------------------------------------------------------------------------- /tests/lib/data/retrieval.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/data/retrieval.test.ts -------------------------------------------------------------------------------- /tests/lib/data/storedTool.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/data/storedTool.test.ts -------------------------------------------------------------------------------- /tests/lib/emailKeywordsExtractor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/emailKeywordsExtractor.test.ts -------------------------------------------------------------------------------- /tests/lib/emails.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/emails.test.ts -------------------------------------------------------------------------------- /tests/lib/gmail/lib.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/gmail/lib.test.ts -------------------------------------------------------------------------------- /tests/lib/metadataApiClient.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/metadataApiClient.test.ts -------------------------------------------------------------------------------- /tests/lib/proxyExternalContent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/proxyExternalContent.test.ts -------------------------------------------------------------------------------- /tests/lib/secrets.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/secrets.test.ts -------------------------------------------------------------------------------- /tests/lib/slack/client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/slack/client.test.ts -------------------------------------------------------------------------------- /tests/lib/slack/shared.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/slack/shared.test.ts -------------------------------------------------------------------------------- /tests/lib/tools/apiTool.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/tools/apiTool.test.ts -------------------------------------------------------------------------------- /tests/lib/tools/openApiParser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/lib/tools/openApiParser.test.ts -------------------------------------------------------------------------------- /tests/support/factories/clientTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/support/factories/clientTools.ts -------------------------------------------------------------------------------- /tests/support/factories/conversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/support/factories/conversations.ts -------------------------------------------------------------------------------- /tests/support/factories/faqs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/support/factories/faqs.ts -------------------------------------------------------------------------------- /tests/support/factories/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/support/factories/files.ts -------------------------------------------------------------------------------- /tests/support/factories/mailboxes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/support/factories/mailboxes.ts -------------------------------------------------------------------------------- /tests/support/factories/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/support/factories/notes.ts -------------------------------------------------------------------------------- /tests/support/factories/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/support/factories/tools.ts -------------------------------------------------------------------------------- /tests/support/factories/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/support/factories/users.ts -------------------------------------------------------------------------------- /tests/support/globalSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/support/globalSetup.ts -------------------------------------------------------------------------------- /tests/support/jobsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/support/jobsUtils.ts -------------------------------------------------------------------------------- /tests/support/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/support/setup.ts -------------------------------------------------------------------------------- /tests/support/setupDatabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/support/setupDatabase.ts -------------------------------------------------------------------------------- /tests/support/trpcUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/support/trpcUtils.ts -------------------------------------------------------------------------------- /tests/trpc/router/mailbox.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/trpc/router/mailbox.test.ts -------------------------------------------------------------------------------- /tests/trpc/router/mailbox/faq.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/trpc/router/mailbox/faq.test.ts -------------------------------------------------------------------------------- /tests/trpc/router/mailbox/slack.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/trpc/router/mailbox/slack.test.ts -------------------------------------------------------------------------------- /tests/trpc/router/organization.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tests/trpc/router/organization.test.ts -------------------------------------------------------------------------------- /trpc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/index.ts -------------------------------------------------------------------------------- /trpc/query-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/query-client.ts -------------------------------------------------------------------------------- /trpc/react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/react.tsx -------------------------------------------------------------------------------- /trpc/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/root.ts -------------------------------------------------------------------------------- /trpc/router/gmailSupportEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/router/gmailSupportEmail.ts -------------------------------------------------------------------------------- /trpc/router/mailbox/customers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/router/mailbox/customers.ts -------------------------------------------------------------------------------- /trpc/router/mailbox/faqs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/router/mailbox/faqs.ts -------------------------------------------------------------------------------- /trpc/router/mailbox/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/router/mailbox/github.ts -------------------------------------------------------------------------------- /trpc/router/mailbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/router/mailbox/index.ts -------------------------------------------------------------------------------- /trpc/router/mailbox/issueGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/router/mailbox/issueGroups.ts -------------------------------------------------------------------------------- /trpc/router/mailbox/members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/router/mailbox/members.ts -------------------------------------------------------------------------------- /trpc/router/mailbox/procedure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/router/mailbox/procedure.ts -------------------------------------------------------------------------------- /trpc/router/mailbox/savedReplies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/router/mailbox/savedReplies.ts -------------------------------------------------------------------------------- /trpc/router/mailbox/slack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/router/mailbox/slack.ts -------------------------------------------------------------------------------- /trpc/router/mailbox/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/router/mailbox/tools.ts -------------------------------------------------------------------------------- /trpc/router/mailbox/websites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/router/mailbox/websites.ts -------------------------------------------------------------------------------- /trpc/router/organization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/router/organization.ts -------------------------------------------------------------------------------- /trpc/router/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/router/user.ts -------------------------------------------------------------------------------- /trpc/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/server.ts -------------------------------------------------------------------------------- /trpc/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/trpc/trpc.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/customerInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/types/customerInfo.ts -------------------------------------------------------------------------------- /types/fileExtensions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/types/fileExtensions.d.ts -------------------------------------------------------------------------------- /types/guide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/types/guide.ts -------------------------------------------------------------------------------- /types/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/types/tools.ts -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildCommand": "sh scripts/vercel.sh" 3 | } 4 | -------------------------------------------------------------------------------- /vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiwork/helper/HEAD/vitest.config.mts --------------------------------------------------------------------------------