├── .browserslistrc ├── .circleci └── config.yml ├── .editorconfig ├── .env ├── .eslintrc.js ├── .gimbalrc.yml ├── .github ├── CrossBrowserTesting-logo.svg ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .npmrc ├── .postcssrc.js ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── .gitignore ├── Gemfile ├── app │ ├── .npmignore │ ├── build.gradle │ ├── capacitor.build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── getcapacitor │ │ │ └── myapp │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── java │ │ │ └── com │ │ │ │ └── moduscreate │ │ │ │ └── beep │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_action_name.png │ │ │ ├── drawable-land-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-ldpi │ │ │ └── splash.png │ │ │ ├── drawable-land-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_action_name.png │ │ │ ├── drawable-port-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-ldpi │ │ │ └── splash.png │ │ │ ├── drawable-port-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable-xhdpi │ │ │ └── ic_action_name.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_action_name.png │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── launch_splash.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ ├── config.xml │ │ │ └── file_paths.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── getcapacitor │ │ └── myapp │ │ └── ExampleUnitTest.java ├── build.gradle ├── capacitor-cordova-android-plugins │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ ├── .gitkeep │ │ └── com │ │ │ └── xmartlabs │ │ │ └── cordova │ │ │ └── market │ │ │ └── Market.java │ │ └── res │ │ └── .gitkeep ├── capacitor.settings.gradle ├── fastlane │ ├── Appfile │ ├── Fastfile │ └── metadata │ │ └── android │ │ └── en-US │ │ ├── full_description.txt │ │ ├── images │ │ ├── icon.png │ │ ├── promoGraphic.png │ │ └── tvBanner.png │ │ ├── short_description.txt │ │ ├── title.txt │ │ └── video.txt ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── signing │ ├── .gitkeep │ └── keystore.properties.example ├── babel.config.js ├── capacitor.config.json ├── ios ├── .gitignore ├── App │ ├── App.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── App.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── AppIcon-20x20@1x.png │ │ │ │ ├── AppIcon-20x20@2x-1.png │ │ │ │ ├── AppIcon-20x20@2x.png │ │ │ │ ├── AppIcon-20x20@3x.png │ │ │ │ ├── AppIcon-29x29@1x.png │ │ │ │ ├── AppIcon-29x29@2x-1.png │ │ │ │ ├── AppIcon-29x29@2x.png │ │ │ │ ├── AppIcon-29x29@3x.png │ │ │ │ ├── AppIcon-40x40@1x.png │ │ │ │ ├── AppIcon-40x40@2x-1.png │ │ │ │ ├── AppIcon-40x40@2x.png │ │ │ │ ├── AppIcon-40x40@3x.png │ │ │ │ ├── AppIcon-512@2x.png │ │ │ │ ├── AppIcon-60x60@2x.png │ │ │ │ ├── AppIcon-60x60@3x.png │ │ │ │ ├── AppIcon-76x76@1x.png │ │ │ │ ├── AppIcon-76x76@2x.png │ │ │ │ ├── AppIcon-83.5x83.5@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Splash.imageset │ │ │ │ ├── Beep-Splash-Screen-1.png │ │ │ │ ├── Beep-Splash-Screen-2.png │ │ │ │ ├── Beep-Splash-Screen.png │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── capacitor.config.json │ │ └── config.xml │ ├── Gemfile │ ├── HockeySDK-iOS │ │ ├── BuildAgent │ │ ├── HockeySDK.embeddedframework │ │ │ ├── HockeySDK.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── BITAuthenticator.h │ │ │ │ │ ├── BITCrashAttachment.h │ │ │ │ │ ├── BITCrashDetails.h │ │ │ │ │ ├── BITCrashManager.h │ │ │ │ │ ├── BITCrashManagerDelegate.h │ │ │ │ │ ├── BITCrashMetaData.h │ │ │ │ │ ├── BITHockeyAttachment.h │ │ │ │ │ ├── BITHockeyBaseManager.h │ │ │ │ │ ├── BITHockeyBaseViewController.h │ │ │ │ │ ├── BITHockeyManager.h │ │ │ │ │ ├── BITHockeyManagerDelegate.h │ │ │ │ │ ├── BITMetricsManager.h │ │ │ │ │ ├── BITStoreUpdateManager.h │ │ │ │ │ ├── BITStoreUpdateManagerDelegate.h │ │ │ │ │ ├── BITUpdateManager.h │ │ │ │ │ ├── BITUpdateManagerDelegate.h │ │ │ │ │ ├── BITUpdateViewController.h │ │ │ │ │ ├── HockeySDK.h │ │ │ │ │ ├── HockeySDKEnums.h │ │ │ │ │ ├── HockeySDKFeatureConfig.h │ │ │ │ │ └── HockeySDKNullability.h │ │ │ │ ├── HockeySDK │ │ │ │ └── Modules │ │ │ │ │ └── module.modulemap │ │ │ └── HockeySDKResources.bundle │ │ │ │ ├── AppIconPlaceHolder.png │ │ │ │ ├── Arrow.png │ │ │ │ ├── Arrow@2x.png │ │ │ │ ├── Arrow@3x.png │ │ │ │ ├── Blur.png │ │ │ │ ├── Blur@2x.png │ │ │ │ ├── Blur@3x.png │ │ │ │ ├── Cancel.png │ │ │ │ ├── Cancel@2x.png │ │ │ │ ├── Cancel@3x.png │ │ │ │ ├── FeedbackPlaceholder.png │ │ │ │ ├── IconGradient.png │ │ │ │ ├── IconGradient@2x.png │ │ │ │ ├── Info.plist │ │ │ │ ├── Ok.png │ │ │ │ ├── Ok@2x.png │ │ │ │ ├── Ok@3x.png │ │ │ │ ├── Rectangle.png │ │ │ │ ├── Rectangle@2x.png │ │ │ │ ├── Rectangle@3x.png │ │ │ │ ├── authorize_denied.png │ │ │ │ ├── authorize_denied@2x.png │ │ │ │ ├── authorize_denied@3x.png │ │ │ │ ├── bg.png │ │ │ │ ├── buttonRoundedDelete.png │ │ │ │ ├── buttonRoundedDelete@2x.png │ │ │ │ ├── buttonRoundedDeleteHighlighted.png │ │ │ │ ├── buttonRoundedDeleteHighlighted@2x.png │ │ │ │ ├── buttonRoundedRegular.png │ │ │ │ ├── buttonRoundedRegular@2x.png │ │ │ │ ├── buttonRoundedRegularHighlighted.png │ │ │ │ ├── buttonRoundedRegularHighlighted@2x.png │ │ │ │ ├── de.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── en.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── es.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── fa.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── feedbackActivity.png │ │ │ │ ├── feedbackActivity@2x.png │ │ │ │ ├── feedbackActivity@2x~ipad.png │ │ │ │ ├── feedbackActivity@3x.png │ │ │ │ ├── feedbackActivity~ipad.png │ │ │ │ ├── fr.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── hr.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── hu.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── iconCamera.png │ │ │ │ ├── iconCamera@2x.png │ │ │ │ ├── it.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── ja.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── nb.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── nl.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── pt-PT.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── pt.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── ru.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── tr.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ └── zh-Hans.lproj │ │ │ │ └── HockeySDK.strings │ │ └── LICENSE │ ├── Podfile │ ├── Podfile.lock │ └── fastlane │ │ ├── Appfile │ │ ├── Fastfile │ │ └── README.md └── capacitor-cordova-ios-plugins │ ├── CordovaPlugins.podspec │ ├── CordovaPluginsResources.podspec │ ├── CordovaPluginsStatic.podspec │ ├── resources │ └── .gitkeep │ └── sources │ ├── .gitkeep │ └── CordovaPluginMarket │ ├── CDVMarket.h │ └── CDVMarket.m ├── jest.config.js ├── package.json ├── privacy_policy.md ├── proxy.js ├── public ├── _redirects ├── favicon.ico ├── img │ └── icons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── msapplication-icon-144x144.png │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg ├── index.html ├── lottie │ └── unsafe │ │ ├── Antenna_Back_Bee.png │ │ ├── Antenna_Front_Bee.png │ │ ├── Beam_1-1_Bee.png │ │ ├── Beam_1-2_Bee.png │ │ ├── Beam_1-3_Bee.png │ │ ├── Beam_2-1_Bee.png │ │ ├── Beam_2-2_Bee.png │ │ ├── Beam_2-3_Bee.png │ │ ├── Body_Bee.png │ │ ├── Brow_Left_Bee.png │ │ ├── Brow_Right_Bee.png │ │ ├── Butt_Bee.png │ │ ├── Caution_Bee.png │ │ ├── Eye_Left_Bee.png │ │ ├── Eye_Right_Bee.png │ │ ├── Glow-Forehead_Bee.png │ │ ├── Hand_1_Bee.png │ │ ├── Hand_2_Bee.png │ │ ├── Interface_Bee.png │ │ ├── Item_1_Bee.png │ │ ├── Item_2_Bee.png │ │ ├── Item_3_Bee.png │ │ ├── Leg_Back_Bee.png │ │ ├── Leg_Front_Bee.png │ │ ├── Mouth_Bee.png │ │ ├── Shade_Bee.png │ │ ├── Signal_Bee.png │ │ ├── T-Shirt_3_Bee.png │ │ ├── T-Shirt_4_Bee.png │ │ ├── Wing_Left_Bee.png │ │ ├── Wing_RIght_Bee.png │ │ └── Zoom_Bee.png ├── manifest.json └── robots.txt ├── sonar-project.properties ├── src ├── appService.js ├── breachesService.js ├── components │ ├── BaseModal.vue │ ├── BasePageCheckForHack.vue │ ├── BreachItem.vue │ ├── ModalReviewApp.vue │ ├── PageBreach.vue │ ├── PageBreaches.vue │ ├── PageCheckAccount.vue │ ├── PageCheckPassword.vue │ ├── PageHome.vue │ ├── PageHomeModalHowItWorks.vue │ ├── PagePwdModalHashProtected.vue │ ├── PageSafe.vue │ ├── PageUnsafe.vue │ └── PageUnsafeModalSuggestions.vue ├── helpers │ └── index.js ├── images │ ├── Bee-Happy-Avatar@2x.svg │ ├── Bee-Not-Happy-Avatar@2x.svg │ ├── Beep-Logo.svg │ ├── Icon-Account.svg │ ├── Icon-Character-Negative.svg │ ├── Icon-Character-Positive.svg │ ├── Icon-Character-Swarm.svg │ ├── Icon-Filter-Active.svg │ ├── Icon-Filter-InActive.svg │ ├── Icon-Hash-Protected.svg │ ├── Icon-Password.svg │ ├── Icon-Show-Hide-Salmon.svg │ ├── Icon-Show-Hide.svg │ ├── Icon-Verified-Checkmark.svg │ ├── Modus-Labs-Logo.svg │ ├── app-store-badge.svg │ ├── google-play-badge.png │ ├── logo.png │ ├── modus.logo.svg │ └── pwa-badge.svg ├── lottie │ └── unsafe │ │ └── data.json ├── main.js ├── mixins │ ├── hasModal.js │ ├── network.js │ ├── reviewAppModal.js │ └── toggleStatusbarColor.js ├── registerServiceWorker.js ├── reviewAppService.js ├── router.js └── theme │ └── common.css ├── tests └── unit │ └── .eslintrc.js ├── tests_root └── wdio │ ├── babel.config.js │ ├── configs │ ├── chromedriver.js │ ├── wdio.conf.js │ └── wdio.conf.local.chrome.js │ ├── features │ ├── check_account.feature │ ├── check_password.feature │ └── home.feature │ ├── package-lock.json │ ├── package.json │ ├── page-objects │ ├── account.page.js │ ├── common.js │ ├── home.page.js │ └── password.page.js │ └── step-definitions │ ├── given.js │ ├── then.js │ └── when.js ├── vue.config.js └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not ie <= 8 -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gimbalrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/.gimbalrc.yml -------------------------------------------------------------------------------- /.github/CrossBrowserTesting-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/.github/CrossBrowserTesting-logo.svg -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/.npmrc -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /android/app/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/.npmignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/capacitor.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/capacitor.build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /android/app/src/main/java/com/moduscreate/beep/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/java/com/moduscreate/beep/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable-hdpi/ic_action_name.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable-land-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-ldpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable-land-ldpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable-land-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable-land-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable-land-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable-land-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable-mdpi/ic_action_name.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable-port-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-ldpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable-port-ldpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable-port-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable-port-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable-port-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable-port-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable-xhdpi/ic_action_name.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_action_name.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/drawable/launch_splash.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/xml/config.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/capacitor-cordova-android-plugins/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/capacitor-cordova-android-plugins/build.gradle -------------------------------------------------------------------------------- /android/capacitor-cordova-android-plugins/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/capacitor-cordova-android-plugins/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/capacitor-cordova-android-plugins/src/main/java/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/capacitor-cordova-android-plugins/src/main/java/com/xmartlabs/cordova/market/Market.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/capacitor-cordova-android-plugins/src/main/java/com/xmartlabs/cordova/market/Market.java -------------------------------------------------------------------------------- /android/capacitor-cordova-android-plugins/src/main/res/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /android/capacitor.settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/capacitor.settings.gradle -------------------------------------------------------------------------------- /android/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/fastlane/Appfile -------------------------------------------------------------------------------- /android/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/fastlane/Fastfile -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/images/promoGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/fastlane/metadata/android/en-US/images/promoGraphic.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/images/tvBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/fastlane/metadata/android/en-US/images/tvBanner.png -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | BEEP Account Security Scanner -------------------------------------------------------------------------------- /android/fastlane/metadata/android/en-US/video.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /android/signing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/signing/keystore.properties.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/android/signing/keystore.properties.example -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['@vue/app'], 3 | } 4 | -------------------------------------------------------------------------------- /capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/capacitor.config.json -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/App/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/App/App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/App/App.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/App/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/AppDelegate.swift -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/Beep-Splash-Screen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/Beep-Splash-Screen-1.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/Beep-Splash-Screen-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/Beep-Splash-Screen-2.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/Beep-Splash-Screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/Beep-Splash-Screen.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json -------------------------------------------------------------------------------- /ios/App/App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/App/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/App/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/Info.plist -------------------------------------------------------------------------------- /ios/App/App/capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/capacitor.config.json -------------------------------------------------------------------------------- /ios/App/App/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/App/config.xml -------------------------------------------------------------------------------- /ios/App/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/BuildAgent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/BuildAgent -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITAuthenticator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITAuthenticator.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITCrashAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITCrashAttachment.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITCrashDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITCrashDetails.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITCrashManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITCrashManager.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITCrashManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITCrashManagerDelegate.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITCrashMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITCrashMetaData.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITHockeyAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITHockeyAttachment.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITHockeyBaseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITHockeyBaseManager.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITHockeyBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITHockeyBaseViewController.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITHockeyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITHockeyManager.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITHockeyManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITHockeyManagerDelegate.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITMetricsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITMetricsManager.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITStoreUpdateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITStoreUpdateManager.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITStoreUpdateManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITStoreUpdateManagerDelegate.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITUpdateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITUpdateManager.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITUpdateManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITUpdateManagerDelegate.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITUpdateViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/BITUpdateViewController.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/HockeySDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/HockeySDK.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/HockeySDKEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/HockeySDKEnums.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/HockeySDKFeatureConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/HockeySDKFeatureConfig.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/HockeySDKNullability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers/HockeySDKNullability.h -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/HockeySDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/HockeySDK -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/AppIconPlaceHolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/AppIconPlaceHolder.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Arrow.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Arrow@2x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Arrow@3x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Blur.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Blur@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Blur@2x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Blur@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Blur@3x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Cancel.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Cancel@2x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Cancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Cancel@3x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/FeedbackPlaceholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/FeedbackPlaceholder.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/IconGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/IconGradient.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/IconGradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/IconGradient@2x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Info.plist -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Ok.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Ok@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Ok@2x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Ok@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Ok@3x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Rectangle.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Rectangle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Rectangle@2x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Rectangle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/Rectangle@3x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/authorize_denied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/authorize_denied.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/authorize_denied@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/authorize_denied@2x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/authorize_denied@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/authorize_denied@3x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/bg.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/buttonRoundedDelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/buttonRoundedDelete.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/buttonRoundedDelete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/buttonRoundedDelete@2x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/buttonRoundedDeleteHighlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/buttonRoundedDeleteHighlighted.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/buttonRoundedDeleteHighlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/buttonRoundedDeleteHighlighted@2x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/buttonRoundedRegular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/buttonRoundedRegular.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/buttonRoundedRegular@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/buttonRoundedRegular@2x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/buttonRoundedRegularHighlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/buttonRoundedRegularHighlighted.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/buttonRoundedRegularHighlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/buttonRoundedRegularHighlighted@2x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/de.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/de.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/en.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/en.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/es.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/es.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/fa.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/fa.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/feedbackActivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/feedbackActivity.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/feedbackActivity@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/feedbackActivity@2x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/feedbackActivity@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/feedbackActivity@2x~ipad.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/feedbackActivity@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/feedbackActivity@3x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/feedbackActivity~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/feedbackActivity~ipad.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/fr.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/fr.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/hr.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/hr.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/hu.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/hu.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/iconCamera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/iconCamera.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/iconCamera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/iconCamera@2x.png -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/it.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/it.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/ja.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/ja.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/nb.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/nb.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/nl.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/nl.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/pt-PT.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/pt-PT.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/pt.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/pt.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/ru.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/ru.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/tr.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/tr.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/zh-Hans.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDKResources.bundle/zh-Hans.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /ios/App/HockeySDK-iOS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/HockeySDK-iOS/LICENSE -------------------------------------------------------------------------------- /ios/App/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/Podfile -------------------------------------------------------------------------------- /ios/App/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/Podfile.lock -------------------------------------------------------------------------------- /ios/App/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/fastlane/Appfile -------------------------------------------------------------------------------- /ios/App/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/fastlane/Fastfile -------------------------------------------------------------------------------- /ios/App/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/App/fastlane/README.md -------------------------------------------------------------------------------- /ios/capacitor-cordova-ios-plugins/CordovaPlugins.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/capacitor-cordova-ios-plugins/CordovaPlugins.podspec -------------------------------------------------------------------------------- /ios/capacitor-cordova-ios-plugins/CordovaPluginsResources.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/capacitor-cordova-ios-plugins/CordovaPluginsResources.podspec -------------------------------------------------------------------------------- /ios/capacitor-cordova-ios-plugins/CordovaPluginsStatic.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/capacitor-cordova-ios-plugins/CordovaPluginsStatic.podspec -------------------------------------------------------------------------------- /ios/capacitor-cordova-ios-plugins/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/capacitor-cordova-ios-plugins/sources/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ios/capacitor-cordova-ios-plugins/sources/CordovaPluginMarket/CDVMarket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/capacitor-cordova-ios-plugins/sources/CordovaPluginMarket/CDVMarket.h -------------------------------------------------------------------------------- /ios/capacitor-cordova-ios-plugins/sources/CordovaPluginMarket/CDVMarket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/ios/capacitor-cordova-ios-plugins/sources/CordovaPluginMarket/CDVMarket.m -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/package.json -------------------------------------------------------------------------------- /privacy_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/privacy_policy.md -------------------------------------------------------------------------------- /proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/proxy.js -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /public/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /public/img/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/img/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/index.html -------------------------------------------------------------------------------- /public/lottie/unsafe/Antenna_Back_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Antenna_Back_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Antenna_Front_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Antenna_Front_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Beam_1-1_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Beam_1-1_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Beam_1-2_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Beam_1-2_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Beam_1-3_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Beam_1-3_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Beam_2-1_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Beam_2-1_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Beam_2-2_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Beam_2-2_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Beam_2-3_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Beam_2-3_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Body_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Body_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Brow_Left_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Brow_Left_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Brow_Right_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Brow_Right_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Butt_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Butt_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Caution_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Caution_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Eye_Left_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Eye_Left_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Eye_Right_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Eye_Right_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Glow-Forehead_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Glow-Forehead_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Hand_1_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Hand_1_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Hand_2_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Hand_2_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Interface_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Interface_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Item_1_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Item_1_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Item_2_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Item_2_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Item_3_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Item_3_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Leg_Back_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Leg_Back_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Leg_Front_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Leg_Front_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Mouth_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Mouth_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Shade_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Shade_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Signal_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Signal_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/T-Shirt_3_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/T-Shirt_3_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/T-Shirt_4_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/T-Shirt_4_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Wing_Left_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Wing_Left_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Wing_RIght_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Wing_RIght_Bee.png -------------------------------------------------------------------------------- /public/lottie/unsafe/Zoom_Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/lottie/unsafe/Zoom_Bee.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/appService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/appService.js -------------------------------------------------------------------------------- /src/breachesService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/breachesService.js -------------------------------------------------------------------------------- /src/components/BaseModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/components/BaseModal.vue -------------------------------------------------------------------------------- /src/components/BasePageCheckForHack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/components/BasePageCheckForHack.vue -------------------------------------------------------------------------------- /src/components/BreachItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/components/BreachItem.vue -------------------------------------------------------------------------------- /src/components/ModalReviewApp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/components/ModalReviewApp.vue -------------------------------------------------------------------------------- /src/components/PageBreach.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/components/PageBreach.vue -------------------------------------------------------------------------------- /src/components/PageBreaches.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/components/PageBreaches.vue -------------------------------------------------------------------------------- /src/components/PageCheckAccount.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/components/PageCheckAccount.vue -------------------------------------------------------------------------------- /src/components/PageCheckPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/components/PageCheckPassword.vue -------------------------------------------------------------------------------- /src/components/PageHome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/components/PageHome.vue -------------------------------------------------------------------------------- /src/components/PageHomeModalHowItWorks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/components/PageHomeModalHowItWorks.vue -------------------------------------------------------------------------------- /src/components/PagePwdModalHashProtected.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/components/PagePwdModalHashProtected.vue -------------------------------------------------------------------------------- /src/components/PageSafe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/components/PageSafe.vue -------------------------------------------------------------------------------- /src/components/PageUnsafe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/components/PageUnsafe.vue -------------------------------------------------------------------------------- /src/components/PageUnsafeModalSuggestions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/components/PageUnsafeModalSuggestions.vue -------------------------------------------------------------------------------- /src/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/helpers/index.js -------------------------------------------------------------------------------- /src/images/Bee-Happy-Avatar@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/Bee-Happy-Avatar@2x.svg -------------------------------------------------------------------------------- /src/images/Bee-Not-Happy-Avatar@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/Bee-Not-Happy-Avatar@2x.svg -------------------------------------------------------------------------------- /src/images/Beep-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/Beep-Logo.svg -------------------------------------------------------------------------------- /src/images/Icon-Account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/Icon-Account.svg -------------------------------------------------------------------------------- /src/images/Icon-Character-Negative.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/Icon-Character-Negative.svg -------------------------------------------------------------------------------- /src/images/Icon-Character-Positive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/Icon-Character-Positive.svg -------------------------------------------------------------------------------- /src/images/Icon-Character-Swarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/Icon-Character-Swarm.svg -------------------------------------------------------------------------------- /src/images/Icon-Filter-Active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/Icon-Filter-Active.svg -------------------------------------------------------------------------------- /src/images/Icon-Filter-InActive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/Icon-Filter-InActive.svg -------------------------------------------------------------------------------- /src/images/Icon-Hash-Protected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/Icon-Hash-Protected.svg -------------------------------------------------------------------------------- /src/images/Icon-Password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/Icon-Password.svg -------------------------------------------------------------------------------- /src/images/Icon-Show-Hide-Salmon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/Icon-Show-Hide-Salmon.svg -------------------------------------------------------------------------------- /src/images/Icon-Show-Hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/Icon-Show-Hide.svg -------------------------------------------------------------------------------- /src/images/Icon-Verified-Checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/Icon-Verified-Checkmark.svg -------------------------------------------------------------------------------- /src/images/Modus-Labs-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/Modus-Labs-Logo.svg -------------------------------------------------------------------------------- /src/images/app-store-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/app-store-badge.svg -------------------------------------------------------------------------------- /src/images/google-play-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/google-play-badge.png -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/logo.png -------------------------------------------------------------------------------- /src/images/modus.logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/modus.logo.svg -------------------------------------------------------------------------------- /src/images/pwa-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/images/pwa-badge.svg -------------------------------------------------------------------------------- /src/lottie/unsafe/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/lottie/unsafe/data.json -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/main.js -------------------------------------------------------------------------------- /src/mixins/hasModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/mixins/hasModal.js -------------------------------------------------------------------------------- /src/mixins/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/mixins/network.js -------------------------------------------------------------------------------- /src/mixins/reviewAppModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/mixins/reviewAppModal.js -------------------------------------------------------------------------------- /src/mixins/toggleStatusbarColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/mixins/toggleStatusbarColor.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/reviewAppService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/reviewAppService.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/router.js -------------------------------------------------------------------------------- /src/theme/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/src/theme/common.css -------------------------------------------------------------------------------- /tests/unit/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/tests/unit/.eslintrc.js -------------------------------------------------------------------------------- /tests_root/wdio/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/tests_root/wdio/babel.config.js -------------------------------------------------------------------------------- /tests_root/wdio/configs/chromedriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/tests_root/wdio/configs/chromedriver.js -------------------------------------------------------------------------------- /tests_root/wdio/configs/wdio.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/tests_root/wdio/configs/wdio.conf.js -------------------------------------------------------------------------------- /tests_root/wdio/configs/wdio.conf.local.chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/tests_root/wdio/configs/wdio.conf.local.chrome.js -------------------------------------------------------------------------------- /tests_root/wdio/features/check_account.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/tests_root/wdio/features/check_account.feature -------------------------------------------------------------------------------- /tests_root/wdio/features/check_password.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/tests_root/wdio/features/check_password.feature -------------------------------------------------------------------------------- /tests_root/wdio/features/home.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/tests_root/wdio/features/home.feature -------------------------------------------------------------------------------- /tests_root/wdio/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/tests_root/wdio/package-lock.json -------------------------------------------------------------------------------- /tests_root/wdio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/tests_root/wdio/package.json -------------------------------------------------------------------------------- /tests_root/wdio/page-objects/account.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/tests_root/wdio/page-objects/account.page.js -------------------------------------------------------------------------------- /tests_root/wdio/page-objects/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/tests_root/wdio/page-objects/common.js -------------------------------------------------------------------------------- /tests_root/wdio/page-objects/home.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/tests_root/wdio/page-objects/home.page.js -------------------------------------------------------------------------------- /tests_root/wdio/page-objects/password.page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/tests_root/wdio/page-objects/password.page.js -------------------------------------------------------------------------------- /tests_root/wdio/step-definitions/given.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/tests_root/wdio/step-definitions/given.js -------------------------------------------------------------------------------- /tests_root/wdio/step-definitions/then.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/tests_root/wdio/step-definitions/then.js -------------------------------------------------------------------------------- /tests_root/wdio/step-definitions/when.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/tests_root/wdio/step-definitions/when.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModusCreateOrg/beep/HEAD/yarn.lock --------------------------------------------------------------------------------