odaptos_design_system 2.0.4 → 2.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -20
- package/README.md +112 -112
- package/dist/DesignTokens/Icons/Illustrations/Non_Moderated.d.ts +3 -0
- package/dist/DesignTokens/Icons/index.d.ts +1 -0
- package/dist/odaptos_design_system.cjs.development.js +130 -31
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js +131 -33
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +103 -103
- package/src/Atoms/Avatar/Avatar.module.scss +72 -72
- package/src/Atoms/Avatar/Avatar.tsx +43 -43
- package/src/Atoms/Badge/Badge.modules.scss +108 -108
- package/src/Atoms/Badge/Badge.tsx +109 -109
- package/src/Atoms/Box/Box.module.scss +12 -12
- package/src/Atoms/Box/Box.tsx +18 -18
- package/src/Atoms/Buttons/Button.modules.scss +266 -266
- package/src/Atoms/Buttons/Button.tsx +69 -69
- package/src/Atoms/Buttons/IconButton.modules.scss +195 -195
- package/src/Atoms/Buttons/IconButton.tsx +65 -65
- package/src/Atoms/Cards/Card.modules.scss +12 -12
- package/src/Atoms/Cards/Card.tsx +24 -24
- package/src/Atoms/Cards/CardButton.modules.scss +23 -23
- package/src/Atoms/Cards/CardButton.tsx +14 -14
- package/src/Atoms/Checkbox/Checkbox.module.scss +5 -5
- package/src/Atoms/Checkbox/Checkbox.tsx +121 -121
- package/src/Atoms/ColorPicker/ColorPicker.modules.scss +46 -46
- package/src/Atoms/ColorPicker/ColorPicker.tsx +35 -35
- package/src/Atoms/DataProtectionDisclaimer/DataProtectionDisclaimer.tsx +23 -23
- package/src/Atoms/DataProtectionDisclaimer/data-protection-disclaimer.module.scss +14 -14
- package/src/Atoms/NumbersCode/NumbersCode.modules.scss +4 -4
- package/src/Atoms/NumbersCode/NumbersCode.tsx +224 -224
- package/src/Atoms/PopoverBeta/PopoverBeta.tsx +107 -107
- package/src/Atoms/QuestionButton/QuestionButton.module.scss +29 -29
- package/src/Atoms/QuestionButton/QuestionButton.tsx +26 -26
- package/src/Atoms/Radio/Radio.module.scss +9 -9
- package/src/Atoms/Radio/Radio.tsx +89 -89
- package/src/Atoms/Search/Search.tsx +32 -32
- package/src/Atoms/SquareText/SquareText.module.scss +7 -7
- package/src/Atoms/SquareText/SquareText.tsx +19 -19
- package/src/Atoms/Switch/Switch.module.scss +14 -14
- package/src/Atoms/Switch/Switch.tsx +64 -64
- package/src/Atoms/Tag/Tag.modules.scss +86 -86
- package/src/Atoms/Tag/Tag.tsx +134 -134
- package/src/Atoms/TimeInterval/TimeInterval.module.scss +5 -5
- package/src/Atoms/TimeInterval/TimeInterval.tsx +52 -52
- package/src/Atoms/Tooltip/Layout/TooltipCustomLayout.module.scss +54 -54
- package/src/Atoms/Tooltip/Layout/TooltipCustomLayout.tsx +140 -140
- package/src/Atoms/Tooltip/Tooltip.tsx +184 -184
- package/src/Atoms/Typography/Caption.modules.scss +17 -17
- package/src/Atoms/Typography/Caption.tsx +33 -33
- package/src/Atoms/Typography/Link.modules.scss +140 -140
- package/src/Atoms/Typography/Link.tsx +73 -73
- package/src/Atoms/Typography/Text.modules.scss +277 -277
- package/src/Atoms/Typography/Text.tsx +69 -69
- package/src/Atoms/Typography/TextForButton.modules.scss +29 -29
- package/src/Atoms/Typography/TextForButton.tsx +41 -41
- package/src/Atoms/Typography/TextForDropDownItem.modules.scss +31 -31
- package/src/Atoms/Typography/TextForDropDownItem.tsx +42 -42
- package/src/Atoms/Typography/TextWithLink.modules.scss +281 -281
- package/src/Atoms/Typography/TextWithLink.tsx +73 -73
- package/src/Atoms/Typography/Title.modules.scss +82 -82
- package/src/Atoms/Typography/Title.tsx +148 -148
- package/src/DesignTokens/ColorGuide/colors.ts +99 -99
- package/src/DesignTokens/Icons/Arrows/ArrowDoubleLineDownIcon.tsx +52 -52
- package/src/DesignTokens/Icons/Arrows/ArrowDoubleLineLeftIcon.tsx +52 -52
- package/src/DesignTokens/Icons/Arrows/ArrowDoubleLineRightIcon.tsx +52 -52
- package/src/DesignTokens/Icons/Arrows/ArrowDoubleLineUpIcon.tsx +52 -52
- package/src/DesignTokens/Icons/Arrows/ArrowFilledDownIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Arrows/ArrowFilledLeftIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Arrows/ArrowFilledRightIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Arrows/ArrowFilledUpIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Arrows/ArrowLineDownIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Arrows/ArrowLineLeftIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Arrows/ArrowLineRightIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Arrows/ArrowLineUpIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Arrows/ArrowPointerDown.tsx +52 -52
- package/src/DesignTokens/Icons/Arrows/ArrowPointerDownLeft.tsx +45 -45
- package/src/DesignTokens/Icons/Arrows/ArrowPointerDownRight.tsx +45 -45
- package/src/DesignTokens/Icons/Arrows/ArrowPointerLeft.tsx +52 -52
- package/src/DesignTokens/Icons/Arrows/ArrowPointerRight.tsx +52 -52
- package/src/DesignTokens/Icons/Arrows/ArrowPointerUp.tsx +52 -52
- package/src/DesignTokens/Icons/Arrows/ArrowPointerUpLeft.tsx +45 -45
- package/src/DesignTokens/Icons/Arrows/ArrowPointerUpRight.tsx +45 -45
- package/src/DesignTokens/Icons/Circled/AddCircledIcon.tsx +51 -51
- package/src/DesignTokens/Icons/Circled/AlertCircledIcon.tsx +64 -64
- package/src/DesignTokens/Icons/Circled/CheckedCircled.tsx +52 -52
- package/src/DesignTokens/Icons/Circled/InfoCircledIcon.tsx +64 -64
- package/src/DesignTokens/Icons/Circled/MinusCircledIcon.tsx +52 -52
- package/src/DesignTokens/Icons/Circled/NavigationCircledIcon.tsx +58 -58
- package/src/DesignTokens/Icons/Circled/QuestionCircledIcon.tsx +57 -57
- package/src/DesignTokens/Icons/Circled/RemoveCircledIcon.tsx +51 -51
- package/src/DesignTokens/Icons/Circled/SearchCircledIcon.tsx +58 -58
- package/src/DesignTokens/Icons/Circled/SettingsCircledIcon.tsx +51 -51
- package/src/DesignTokens/Icons/Equipment/CameraIcon.tsx +45 -45
- package/src/DesignTokens/Icons/Equipment/LaptopIcon.tsx +74 -74
- package/src/DesignTokens/Icons/Equipment/MicrophonePodcastIcon.tsx +38 -38
- package/src/DesignTokens/Icons/Equipment/MobileIcon.tsx +81 -81
- package/src/DesignTokens/Icons/Equipment/TvFlatScreenIcon.tsx +75 -75
- package/src/DesignTokens/Icons/Equipment/TvIcon.tsx +51 -51
- package/src/DesignTokens/Icons/Illustrations/AI_UserTest.tsx +544 -544
- package/src/DesignTokens/Icons/Illustrations/AngryIntervieweeFemale.tsx +163 -163
- package/src/DesignTokens/Icons/Illustrations/Blog.tsx +124 -124
- package/src/DesignTokens/Icons/Illustrations/EmotionsHeatMap.tsx +113 -113
- package/src/DesignTokens/Icons/Illustrations/Faq.tsx +74 -74
- package/src/DesignTokens/Icons/Illustrations/HappyMen.tsx +254 -254
- package/src/DesignTokens/Icons/Illustrations/IntegratedUsabilityScore.tsx +101 -101
- package/src/DesignTokens/Icons/Illustrations/InterviewTranscript.tsx +162 -162
- package/src/DesignTokens/Icons/Illustrations/InterviewTranscriptGreen.tsx +162 -162
- package/src/DesignTokens/Icons/Illustrations/MenShowingSomething.tsx +141 -141
- package/src/DesignTokens/Icons/Illustrations/MetaAnalyse.tsx +112 -112
- package/src/DesignTokens/Icons/Illustrations/MetaAnalyse2.tsx +74 -74
- package/src/DesignTokens/Icons/Illustrations/Non_Moderated.tsx +86 -0
- package/src/DesignTokens/Icons/Illustrations/OdaAccountPro.tsx +204 -204
- package/src/DesignTokens/Icons/Illustrations/OdaWaiting.tsx +339 -339
- package/src/DesignTokens/Icons/Illustrations/ScheduleTasks.tsx +118 -118
- package/src/DesignTokens/Icons/Illustrations/Sentiment.tsx +112 -112
- package/src/DesignTokens/Icons/Illustrations/Success.tsx +228 -228
- package/src/DesignTokens/Icons/Illustrations/UsabilityBrowser.tsx +127 -127
- package/src/DesignTokens/Icons/Illustrations/UserFlows.tsx +133 -133
- package/src/DesignTokens/Icons/Illustrations/UserPanel.tsx +127 -127
- package/src/DesignTokens/Icons/Illustrations/UxGuide.tsx +151 -151
- package/src/DesignTokens/Icons/Illustrations/VideoFlag.tsx +67 -67
- package/src/DesignTokens/Icons/Illustrations/VideoFlag2.tsx +69 -69
- package/src/DesignTokens/Icons/Illustrations/VideoFlagGreen.tsx +69 -69
- package/src/DesignTokens/Icons/Illustrations/WaitingMen.tsx +249 -249
- package/src/DesignTokens/Icons/Interaction/AccountIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Interaction/AddIcon.tsx +51 -51
- package/src/DesignTokens/Icons/Interaction/AddTagIcon.tsx +47 -47
- package/src/DesignTokens/Icons/Interaction/AgendaIcon.tsx +76 -76
- package/src/DesignTokens/Icons/Interaction/BillingIcon.tsx +75 -75
- package/src/DesignTokens/Icons/Interaction/BinIcon.tsx +73 -73
- package/src/DesignTokens/Icons/Interaction/CheckedIcon.tsx +38 -38
- package/src/DesignTokens/Icons/Interaction/ClockIcon.tsx +58 -58
- package/src/DesignTokens/Icons/Interaction/CloseIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Interaction/CogIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Interaction/CopyPasteIcon.tsx +83 -83
- package/src/DesignTokens/Icons/Interaction/DragDropIcon.tsx +42 -42
- package/src/DesignTokens/Icons/Interaction/EditIcon.tsx +56 -56
- package/src/DesignTokens/Icons/Interaction/EditTextIcon.tsx +64 -64
- package/src/DesignTokens/Icons/Interaction/FilterIcon.tsx +49 -49
- package/src/DesignTokens/Icons/Interaction/LayoutIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Interaction/LayoutLeftIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Interaction/LayoutRightIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Interaction/LockIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Interaction/LogoutIcon.tsx +58 -58
- package/src/DesignTokens/Icons/Interaction/MenuHorizontalIcon.tsx +36 -36
- package/src/DesignTokens/Icons/Interaction/MenuVerticalIcon.tsx +57 -57
- package/src/DesignTokens/Icons/Interaction/MinusIcon.tsx +34 -34
- package/src/DesignTokens/Icons/Interaction/PencilWriteIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Interaction/SearchIcon.tsx +52 -52
- package/src/DesignTokens/Icons/Interaction/SearchRemoveIcon.tsx +63 -63
- package/src/DesignTokens/Icons/Interaction/SettingsSliderIcon.tsx +45 -45
- package/src/DesignTokens/Icons/Interaction/ShareIcon.tsx +62 -62
- package/src/DesignTokens/Icons/Interaction/SortingIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Interaction/TagAddIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Interaction/TagEditIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Interaction/TagRemoveIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Interaction/TeamIcon.tsx +76 -76
- package/src/DesignTokens/Icons/Interaction/UnLockIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Interaction/UndoIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Interaction/UnlockedIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Logos/LogoBeta.tsx +52 -52
- package/src/DesignTokens/Icons/Logos/LogoNormal.tsx +38 -38
- package/src/DesignTokens/Icons/Logos/LogoSmall.tsx +32 -32
- package/src/DesignTokens/Icons/Logos/LogoSquare.tsx +72 -72
- package/src/DesignTokens/Icons/Logos/LogoText.tsx +32 -32
- package/src/DesignTokens/Icons/Logos/LogoWhite.tsx +38 -38
- package/src/DesignTokens/Icons/MediaControl/CutClipIcon.tsx +39 -39
- package/src/DesignTokens/Icons/MediaControl/HangUpIcon.tsx +58 -58
- package/src/DesignTokens/Icons/MediaControl/MeetingIcon.tsx +45 -45
- package/src/DesignTokens/Icons/MediaControl/MicrophoneIcon.tsx +51 -51
- package/src/DesignTokens/Icons/MediaControl/MoveBackIcon.tsx +32 -32
- package/src/DesignTokens/Icons/MediaControl/MoveInIcon.tsx +59 -59
- package/src/DesignTokens/Icons/MediaControl/MuteIcon.tsx +51 -51
- package/src/DesignTokens/Icons/MediaControl/NoCameraIcon.tsx +54 -54
- package/src/DesignTokens/Icons/MediaControl/NoMicrophoneIcon.tsx +46 -46
- package/src/DesignTokens/Icons/MediaControl/PauseIcon.tsx +45 -45
- package/src/DesignTokens/Icons/MediaControl/PlayIcon.tsx +39 -39
- package/src/DesignTokens/Icons/MediaControl/PreviousIcon.tsx +49 -49
- package/src/DesignTokens/Icons/MediaControl/RecordIcon.tsx +40 -40
- package/src/DesignTokens/Icons/MediaControl/RecordingIcon.tsx +82 -82
- package/src/DesignTokens/Icons/MediaControl/StopRecordIcon.tsx +38 -38
- package/src/DesignTokens/Icons/MediaControl/TagIcon.tsx +46 -46
- package/src/DesignTokens/Icons/MediaControl/VolumeIcon.tsx +57 -57
- package/src/DesignTokens/Icons/Miscellaneous/AddSeatIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Miscellaneous/AddUsersIcon.tsx +69 -69
- package/src/DesignTokens/Icons/Miscellaneous/AnonymizeIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/AppWindowPieIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Miscellaneous/ArchiveIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Miscellaneous/BillPdfIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Miscellaneous/BinocularIcon.tsx +38 -38
- package/src/DesignTokens/Icons/Miscellaneous/BookFlipPageIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Miscellaneous/BrainIcon.tsx +105 -105
- package/src/DesignTokens/Icons/Miscellaneous/BulbIcon.tsx +45 -45
- package/src/DesignTokens/Icons/Miscellaneous/CalendarIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/ChatBubbleIcon.tsx +68 -68
- package/src/DesignTokens/Icons/Miscellaneous/ChatIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Miscellaneous/CheckoutIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Miscellaneous/ClipIcon.tsx +57 -57
- package/src/DesignTokens/Icons/Miscellaneous/ContentPenWriteIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/CreditCardIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Miscellaneous/DownloadIcon.tsx +78 -78
- package/src/DesignTokens/Icons/Miscellaneous/EarthIcon.tsx +58 -58
- package/src/DesignTokens/Icons/Miscellaneous/FaceCenterIcon.tsx +42 -42
- package/src/DesignTokens/Icons/Miscellaneous/FaceRecognitionIcon.tsx +88 -88
- package/src/DesignTokens/Icons/Miscellaneous/FileUploadIcon.tsx +65 -65
- package/src/DesignTokens/Icons/Miscellaneous/FilesIcon.tsx +51 -51
- package/src/DesignTokens/Icons/Miscellaneous/FillRecordIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Miscellaneous/FilledTaskIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Miscellaneous/FlashIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/FolderIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Miscellaneous/GoogleIcon.tsx +67 -67
- package/src/DesignTokens/Icons/Miscellaneous/GroupIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/HardDriveIcon.tsx +58 -58
- package/src/DesignTokens/Icons/Miscellaneous/HelpIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Miscellaneous/HelpIconAlt.tsx +33 -33
- package/src/DesignTokens/Icons/Miscellaneous/LanguageIcon.tsx +34 -34
- package/src/DesignTokens/Icons/Miscellaneous/LinkIcon.tsx +42 -42
- package/src/DesignTokens/Icons/Miscellaneous/ListToDoIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Miscellaneous/MessagesBubbleSquareQuestionIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/MetaAnalyseIcon.tsx +74 -74
- package/src/DesignTokens/Icons/Miscellaneous/ModeratedIcon.tsx +88 -88
- package/src/DesignTokens/Icons/Miscellaneous/MultipleUsersIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/NbOfUsersIcon.tsx +64 -64
- package/src/DesignTokens/Icons/Miscellaneous/NeutralBackgroudIcon.tsx +42 -42
- package/src/DesignTokens/Icons/Miscellaneous/OfficeDrawerIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/OneColumnIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/RefreshIcon.tsx +54 -54
- package/src/DesignTokens/Icons/Miscellaneous/ReportIcon.tsx +70 -70
- package/src/DesignTokens/Icons/Miscellaneous/SeatIcon.tsx +36 -36
- package/src/DesignTokens/Icons/Miscellaneous/SendEmailIcon.tsx +51 -51
- package/src/DesignTokens/Icons/Miscellaneous/SendIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/SmartBrainIcon.tsx +52 -52
- package/src/DesignTokens/Icons/Miscellaneous/StarIcon.tsx +44 -44
- package/src/DesignTokens/Icons/Miscellaneous/TaskIcon.tsx +64 -64
- package/src/DesignTokens/Icons/Miscellaneous/TestDetailsIcon.tsx +37 -37
- package/src/DesignTokens/Icons/Miscellaneous/TestIcon.tsx +47 -47
- package/src/DesignTokens/Icons/Miscellaneous/ThreeColumnIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/TwoColumnIcon.tsx +46 -46
- package/src/DesignTokens/Icons/Miscellaneous/UnmoderatedIcon.tsx +63 -63
- package/src/DesignTokens/Icons/Miscellaneous/ViewIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Miscellaneous/ViewOffIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Miscellaneous/VoiceIcon.tsx +47 -47
- package/src/DesignTokens/Icons/Notifications/AlamBellIdleIcon.tsx +50 -50
- package/src/DesignTokens/Icons/Notifications/AlarmBellStatusIcon.tsx +56 -56
- package/src/DesignTokens/Icons/Notifications/ConversationIdleIcon.tsx +39 -39
- package/src/DesignTokens/Icons/Notifications/ConversationStatusIcon.tsx +54 -54
- package/src/DesignTokens/Icons/Notifications/NotifAlertIcon.tsx +41 -41
- package/src/DesignTokens/Icons/Other/DashedArrowSvg.tsx +38 -38
- package/src/DesignTokens/Icons/Other/ProjectHoverSvg.tsx +52 -52
- package/src/DesignTokens/Icons/Other/ProjectSvg.tsx +40 -40
- package/src/DesignTokens/Icons/Partners/Partner1.tsx +165 -165
- package/src/DesignTokens/Icons/Partners/Partner2.tsx +94 -94
- package/src/DesignTokens/Icons/Partners/Partner3.tsx +47 -47
- package/src/DesignTokens/Icons/Partners/Partner4.tsx +199 -199
- package/src/DesignTokens/Icons/Partners/Partner5.tsx +79 -79
- package/src/DesignTokens/Icons/Partners/Partner6.tsx +39 -39
- package/src/DesignTokens/Icons/Partners/Partner7.tsx +45 -45
- package/src/DesignTokens/Icons/Partners/Partner8.tsx +37 -37
- package/src/DesignTokens/Icons/Partners/Partner9.tsx +63 -63
- package/src/DesignTokens/Icons/index.ts +197 -196
- package/src/Molecules/Accordion/Accordion.modules.scss +41 -41
- package/src/Molecules/Accordion/Accordion.tsx +49 -49
- package/src/Molecules/ChatMessage/ChatMessage.module.scss +161 -161
- package/src/Molecules/ChatMessage/ChatMessage.tsx +110 -110
- package/src/Molecules/FeaturesTable/FeaturesTable.module.scss +212 -212
- package/src/Molecules/FeaturesTable/FeaturesTable.tsx +35 -35
- package/src/Molecules/FeaturesTable/components/TableBody/TableBody.tsx +54 -54
- package/src/Molecules/FeaturesTable/components/TableBody/components/FeatureGroup.tsx +36 -36
- package/src/Molecules/FeaturesTable/components/TableBody/components/FeatureRow.tsx +64 -64
- package/src/Molecules/FeaturesTable/components/TableBody/components/RowCell.tsx +29 -29
- package/src/Molecules/FeaturesTable/components/TableBody/components/SectionTitleRow.tsx +16 -16
- package/src/Molecules/FeaturesTable/components/TableHeader/TableHeader.tsx +37 -37
- package/src/Molecules/FeaturesTable/components/TableHeader/components/HeaderCell.tsx +69 -69
- package/src/Molecules/Interviews/Chat.modules.scss +221 -221
- package/src/Molecules/Interviews/Chat.tsx +374 -374
- package/src/Molecules/Interviews/ChatInput.modules.scss +33 -33
- package/src/Molecules/Interviews/ChatInput.tsx +42 -42
- package/src/Molecules/Interviews/CircleIconButton.modules.scss +51 -51
- package/src/Molecules/Interviews/CircledIconButton.tsx +37 -37
- package/src/Molecules/Interviews/ControlsBar.modules.scss +62 -62
- package/src/Molecules/Interviews/ControlsBar.tsx +246 -246
- package/src/Molecules/Interviews/EndRecording.module.scss +20 -20
- package/src/Molecules/Interviews/EndRecording.tsx +31 -31
- package/src/Molecules/Interviews/InterviewButton.modules.scss +112 -112
- package/src/Molecules/Interviews/InterviewButton.tsx +54 -54
- package/src/Molecules/Interviews/MarkUpBar.modules.scss +36 -36
- package/src/Molecules/Interviews/MarkUpBar.tsx +67 -67
- package/src/Molecules/Interviews/Scenario.modules.scss +21 -21
- package/src/Molecules/Interviews/Scenario.tsx +53 -53
- package/src/Molecules/Interviews/SusExplanation.module.scss +11 -11
- package/src/Molecules/Interviews/SusExplanation.tsx +17 -17
- package/src/Molecules/Interviews/Task.modules.scss +294 -294
- package/src/Molecules/Interviews/Task.tsx +258 -258
- package/src/Molecules/Interviews/WelcomeMessage.modules.scss +28 -28
- package/src/Molecules/Interviews/WelcomeMessage.tsx +33 -33
- package/src/Molecules/LogoSlider/LogoSlider.module.scss +6 -6
- package/src/Molecules/LogoSlider/LogoSlider.tsx +55 -55
- package/src/Molecules/Notifications/Banner.modules.scss +160 -160
- package/src/Molecules/Notifications/Banner.tsx +134 -134
- package/src/Molecules/Notifications/NotificationIcon.tsx +26 -26
- package/src/Molecules/Notifications/Toast.modules.scss +87 -87
- package/src/Molecules/Notifications/Toast.tsx +90 -90
- package/src/Molecules/PricingCard/PricingCard.module.scss +120 -120
- package/src/Molecules/PricingCard/PricingCard.tsx +284 -284
- package/src/Molecules/StarRating/StarRating.module.scss +24 -24
- package/src/Molecules/StarRating/StarRating.tsx +71 -71
- package/src/Molecules/Tabs/Tabs.tsx +83 -83
- package/src/Molecules/Tabs/TabsUnderLine.tsx +200 -199
- package/src/Molecules/Tabs/tabs.modules.scss +60 -60
- package/src/Molecules/Tabs/tabsUnderline.modules.scss +63 -63
- package/src/Molecules/Thematic/Thematic.modules.scss +121 -121
- package/src/Molecules/Thematic/Thematic.tsx +458 -458
- package/src/Molecules/ToggleTab/ToggleTab.module.scss +37 -37
- package/src/Molecules/ToggleTab/ToggleTab.tsx +118 -118
- package/src/Molecules/UserIndicator/UserIndicator.module.scss +16 -16
- package/src/Molecules/UserIndicator/UserIndicator.tsx +58 -58
- package/src/Organisms/DatePicker/DatePicker.modules.scss +68 -68
- package/src/Organisms/DatePicker/DatePicker.tsx +268 -268
- package/src/Organisms/FormQuestions/FormQuestions.module.scss +52 -52
- package/src/Organisms/FormQuestions/FormQuestions.tsx +78 -78
- package/src/Organisms/Modal/Modal.modules.scss +66 -66
- package/src/Organisms/Modal/Modal.tsx +163 -163
- package/src/Organisms/MultiSelect/MultiSelect.modules.scss +78 -78
- package/src/Organisms/MultiSelect/MultiSelect.tsx +303 -303
- package/src/Organisms/MultiSelect/MultiSelectWithCategories.modules.scss +78 -78
- package/src/Organisms/MultiSelect/MultiSelectWithCategories.tsx +325 -325
- package/src/Organisms/NumberField/NumberField.module.scss +60 -60
- package/src/Organisms/NumberField/NumberField.tsx +244 -244
- package/src/Organisms/PasswordField/PasswordField.module.scss +55 -55
- package/src/Organisms/PasswordField/PasswordField.tsx +231 -231
- package/src/Organisms/RatingScale/RatingScale.module.scss +26 -26
- package/src/Organisms/RatingScale/RatingScale.tsx +104 -104
- package/src/Organisms/SingleSelect/SingleSelect.modules.scss +64 -64
- package/src/Organisms/SingleSelect/SingleSelect.tsx +271 -271
- package/src/Organisms/Table/Table.modules.scss +6 -6
- package/src/Organisms/Table/TableFooter.modules.scss +56 -56
- package/src/Organisms/Table/TableFooter.tsx +43 -43
- package/src/Organisms/Table/header.modules.scss +24 -24
- package/src/Organisms/Table/header.tsx +80 -80
- package/src/Organisms/Table/index.tsx +79 -79
- package/src/Organisms/Table/rows.modules.scss +37 -37
- package/src/Organisms/Table/rows.tsx +86 -86
- package/src/Organisms/Table/table-cell.modules.scss +13 -13
- package/src/Organisms/Table/table-cell.tsx +40 -40
- package/src/Organisms/TextInput/TextInput.modules.scss +55 -55
- package/src/Organisms/TextInput/TextInput.tsx +222 -222
- package/src/Organisms/Textarea/Textarea.module.scss +19 -19
- package/src/Organisms/Textarea/Textarea.tsx +97 -97
- package/src/Organisms/TimePicker/TimePicker.modules.scss +67 -67
- package/src/Organisms/TimePicker/TimePicker.tsx +242 -242
- package/src/__mocks__/PricingPageData/pricingPageMockedData.js +2120 -2120
- package/src/hooks/useClickOutside.ts +30 -30
- package/src/index.ts +74 -74
- package/src/utils/changeColorLuminance.ts +22 -22
- package/src/utils/getIconSize.ts +7 -7
- package/src/utils/getReadableTextColor.ts +36 -36
|
@@ -1,2120 +1,2120 @@
|
|
|
1
|
-
export const pricingCardTexts = {
|
|
2
|
-
//General wording from MS-Pricing
|
|
3
|
-
_id: '65c8cf6df152189ac0372eee',
|
|
4
|
-
Month: 'month',
|
|
5
|
-
ForLife: 'for life',
|
|
6
|
-
GetStartedForFree: 'Get started for free',
|
|
7
|
-
GetStarted: 'Get Started',
|
|
8
|
-
Includes: 'Includes:',
|
|
9
|
-
Interviews: 'interviews',
|
|
10
|
-
UpTo: 'Up to',
|
|
11
|
-
EverythingIn: 'Everything in',
|
|
12
|
-
LearnMore: 'Learn More',
|
|
13
|
-
Year: 'year',
|
|
14
|
-
ContactUs: 'Contact Us',
|
|
15
|
-
LetsTalk: 'Let’s talk',
|
|
16
|
-
Currency: '$',
|
|
17
|
-
FeaturedSectionTitleTooltip: 'Depending on the plan',
|
|
18
|
-
ForLife: 'for life',
|
|
19
|
-
__v: 0,
|
|
20
|
-
id: '65c8cf6df152189ac0372eee',
|
|
21
|
-
};
|
|
22
|
-
|
|
23
|
-
export const featuresTableData = {
|
|
24
|
-
localizations: [],
|
|
25
|
-
_id: '65c248f2a4111f0c64a2bf98',
|
|
26
|
-
published_at: '2024-02-07T09:39:41.454Z',
|
|
27
|
-
locale: 'en',
|
|
28
|
-
PricingCards: [
|
|
29
|
-
{
|
|
30
|
-
_id: '65c248f2a4111f0c64a2bf99',
|
|
31
|
-
Name: 'Basic',
|
|
32
|
-
Description:
|
|
33
|
-
'Ideal for small businesses that want to speed up their user research.\n',
|
|
34
|
-
isActive: true,
|
|
35
|
-
MonthlyPrice: 0,
|
|
36
|
-
YearlyPrice: 0,
|
|
37
|
-
isHighlighted: false,
|
|
38
|
-
__v: 0,
|
|
39
|
-
HighlightText: '',
|
|
40
|
-
id: '65c248f2a4111f0c64a2bf99',
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
_id: '65c248f2a4111f0c64a2bf9a',
|
|
44
|
-
Name: 'Plus',
|
|
45
|
-
Description:
|
|
46
|
-
'Perfect for organizations looking to foster a culture centered around design and research.\n',
|
|
47
|
-
__v: 0,
|
|
48
|
-
MonthlyPrice: 1,
|
|
49
|
-
YearlyPrice: 1,
|
|
50
|
-
id: '65c248f2a4111f0c64a2bf9a',
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
_id: '65c248f2a4111f0c64a2bf9b',
|
|
54
|
-
Name: 'Business',
|
|
55
|
-
Description:
|
|
56
|
-
'Suitable for companies with multiple teams seeking improved collaboration and synergy.',
|
|
57
|
-
__v: 0,
|
|
58
|
-
MonthlyPrice: 2,
|
|
59
|
-
YearlyPrice: 2,
|
|
60
|
-
id: '65c248f2a4111f0c64a2bf9b',
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
_id: '65c248f2a4111f0c64a2bf9c',
|
|
64
|
-
Name: 'Enterprise Level',
|
|
65
|
-
Description:
|
|
66
|
-
'Suitable for companies with multiple teams seeking improved collaboration and synergy.',
|
|
67
|
-
__v: 0,
|
|
68
|
-
MonthlyPrice: null,
|
|
69
|
-
id: '65c248f2a4111f0c64a2bf9c',
|
|
70
|
-
},
|
|
71
|
-
],
|
|
72
|
-
CoreFeatures: [
|
|
73
|
-
{
|
|
74
|
-
_id: '65c248f2a4111f0c64a2bfa1',
|
|
75
|
-
Tier1: {
|
|
76
|
-
_id: '65c24bafa4111f0c64a2bfb8',
|
|
77
|
-
Value: 'Yes',
|
|
78
|
-
__v: 0,
|
|
79
|
-
isFeatured: true,
|
|
80
|
-
FeatureText: 'This is a feature text',
|
|
81
|
-
id: '65c24bafa4111f0c64a2bfb8',
|
|
82
|
-
},
|
|
83
|
-
Tier2: {
|
|
84
|
-
_id: '65c24bafa4111f0c64a2bfba',
|
|
85
|
-
Value: 'Yes',
|
|
86
|
-
__v: 0,
|
|
87
|
-
id: '65c24bafa4111f0c64a2bfba',
|
|
88
|
-
},
|
|
89
|
-
Tier3: {
|
|
90
|
-
_id: '65c24bafa4111f0c64a2bfbc',
|
|
91
|
-
Value: 'Yes',
|
|
92
|
-
__v: 0,
|
|
93
|
-
id: '65c24bafa4111f0c64a2bfbc',
|
|
94
|
-
},
|
|
95
|
-
Tier4: {
|
|
96
|
-
_id: '65c24bafa4111f0c64a2bfbe',
|
|
97
|
-
Value: 'Yes',
|
|
98
|
-
__v: 0,
|
|
99
|
-
id: '65c24bafa4111f0c64a2bfbe',
|
|
100
|
-
},
|
|
101
|
-
__v: 0,
|
|
102
|
-
Name: 'Remote Testing',
|
|
103
|
-
isActive: true,
|
|
104
|
-
TooltipDescription: 'LoremIpsum',
|
|
105
|
-
id: '65c248f2a4111f0c64a2bfa1',
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
_id: '65c24bafa4111f0c64a2bfa7',
|
|
109
|
-
Name: 'Meta-Analysis',
|
|
110
|
-
Tier1: {
|
|
111
|
-
_id: '65c3409c78352b58fcbba7d5',
|
|
112
|
-
Value: 'Yes',
|
|
113
|
-
__v: 0,
|
|
114
|
-
id: '65c3409c78352b58fcbba7d5',
|
|
115
|
-
},
|
|
116
|
-
Tier2: {
|
|
117
|
-
_id: '65c3409d78352b58fcbba7f7',
|
|
118
|
-
Value: 'Yes',
|
|
119
|
-
__v: 0,
|
|
120
|
-
id: '65c3409d78352b58fcbba7f7',
|
|
121
|
-
},
|
|
122
|
-
Tier3: {
|
|
123
|
-
_id: '65c3409d78352b58fcbba81a',
|
|
124
|
-
Value: 'Yes',
|
|
125
|
-
__v: 0,
|
|
126
|
-
id: '65c3409d78352b58fcbba81a',
|
|
127
|
-
},
|
|
128
|
-
Tier4: {
|
|
129
|
-
_id: '65c3409d78352b58fcbba83c',
|
|
130
|
-
Value: 'Yes',
|
|
131
|
-
__v: 0,
|
|
132
|
-
id: '65c3409d78352b58fcbba83c',
|
|
133
|
-
},
|
|
134
|
-
__v: 0,
|
|
135
|
-
isActive: true,
|
|
136
|
-
id: '65c24bafa4111f0c64a2bfa7',
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
_id: '65c24bafa4111f0c64a2bfa8',
|
|
140
|
-
Name: 'Emotional HeatMaps',
|
|
141
|
-
Tier1: {
|
|
142
|
-
_id: '65c3409c78352b58fcbba7d7',
|
|
143
|
-
Value: 'Yes',
|
|
144
|
-
__v: 0,
|
|
145
|
-
id: '65c3409c78352b58fcbba7d7',
|
|
146
|
-
},
|
|
147
|
-
Tier2: {
|
|
148
|
-
_id: '65c3409d78352b58fcbba7f9',
|
|
149
|
-
Value: 'Yes',
|
|
150
|
-
__v: 0,
|
|
151
|
-
id: '65c3409d78352b58fcbba7f9',
|
|
152
|
-
},
|
|
153
|
-
Tier3: {
|
|
154
|
-
_id: '65c3409d78352b58fcbba81c',
|
|
155
|
-
Value: 'Yes',
|
|
156
|
-
__v: 0,
|
|
157
|
-
id: '65c3409d78352b58fcbba81c',
|
|
158
|
-
},
|
|
159
|
-
Tier4: {
|
|
160
|
-
_id: '65c3409d78352b58fcbba83f',
|
|
161
|
-
Value: 'Yes',
|
|
162
|
-
__v: 0,
|
|
163
|
-
id: '65c3409d78352b58fcbba83f',
|
|
164
|
-
},
|
|
165
|
-
__v: 0,
|
|
166
|
-
isActive: true,
|
|
167
|
-
id: '65c24bafa4111f0c64a2bfa8',
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
_id: '65c24bafa4111f0c64a2bfa9',
|
|
171
|
-
Name: 'Aspect-Based Sentiment Analysis',
|
|
172
|
-
Tier1: {
|
|
173
|
-
_id: '65c3409c78352b58fcbba7d6',
|
|
174
|
-
Value: 'Yes',
|
|
175
|
-
__v: 0,
|
|
176
|
-
id: '65c3409c78352b58fcbba7d6',
|
|
177
|
-
},
|
|
178
|
-
Tier2: {
|
|
179
|
-
_id: '65c3409d78352b58fcbba7f8',
|
|
180
|
-
Value: 'Yes',
|
|
181
|
-
__v: 0,
|
|
182
|
-
id: '65c3409d78352b58fcbba7f8',
|
|
183
|
-
},
|
|
184
|
-
Tier3: {
|
|
185
|
-
_id: '65c3409d78352b58fcbba81b',
|
|
186
|
-
Value: 'Yes',
|
|
187
|
-
__v: 0,
|
|
188
|
-
id: '65c3409d78352b58fcbba81b',
|
|
189
|
-
},
|
|
190
|
-
Tier4: {
|
|
191
|
-
_id: '65c3409d78352b58fcbba83e',
|
|
192
|
-
Value: 'Yes',
|
|
193
|
-
__v: 0,
|
|
194
|
-
id: '65c3409d78352b58fcbba83e',
|
|
195
|
-
},
|
|
196
|
-
__v: 0,
|
|
197
|
-
isActive: true,
|
|
198
|
-
id: '65c24bafa4111f0c64a2bfa9',
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
_id: '65c24bafa4111f0c64a2bfaa',
|
|
202
|
-
Name: 'Voice Transcription',
|
|
203
|
-
Tier1: {
|
|
204
|
-
_id: '65c3409c78352b58fcbba7d8',
|
|
205
|
-
Value: 'Yes',
|
|
206
|
-
__v: 0,
|
|
207
|
-
id: '65c3409c78352b58fcbba7d8',
|
|
208
|
-
},
|
|
209
|
-
Tier2: {
|
|
210
|
-
_id: '65c3409d78352b58fcbba7fa',
|
|
211
|
-
Value: 'Yes',
|
|
212
|
-
__v: 0,
|
|
213
|
-
id: '65c3409d78352b58fcbba7fa',
|
|
214
|
-
},
|
|
215
|
-
Tier3: {
|
|
216
|
-
_id: '65c3409d78352b58fcbba81d',
|
|
217
|
-
Value: 'Yes',
|
|
218
|
-
__v: 0,
|
|
219
|
-
id: '65c3409d78352b58fcbba81d',
|
|
220
|
-
},
|
|
221
|
-
Tier4: null,
|
|
222
|
-
__v: 0,
|
|
223
|
-
isActive: true,
|
|
224
|
-
id: '65c24bafa4111f0c64a2bfaa',
|
|
225
|
-
},
|
|
226
|
-
{
|
|
227
|
-
_id: '65c24bafa4111f0c64a2bfab',
|
|
228
|
-
Name: 'Projects',
|
|
229
|
-
Tier1: {
|
|
230
|
-
_id: '65c3409c78352b58fcbba7d9',
|
|
231
|
-
Value: '1',
|
|
232
|
-
Sufix: '',
|
|
233
|
-
__v: 0,
|
|
234
|
-
id: '65c3409c78352b58fcbba7d9',
|
|
235
|
-
},
|
|
236
|
-
Tier2: {
|
|
237
|
-
_id: '65c3409d78352b58fcbba7fb',
|
|
238
|
-
Value: '3',
|
|
239
|
-
Sufix: '',
|
|
240
|
-
__v: 0,
|
|
241
|
-
id: '65c3409d78352b58fcbba7fb',
|
|
242
|
-
},
|
|
243
|
-
Tier3: {
|
|
244
|
-
_id: '65c3409d78352b58fcbba81e',
|
|
245
|
-
Value: '5',
|
|
246
|
-
__v: 0,
|
|
247
|
-
id: '65c3409d78352b58fcbba81e',
|
|
248
|
-
},
|
|
249
|
-
Tier4: {
|
|
250
|
-
_id: '65c3409d78352b58fcbba840',
|
|
251
|
-
Value: 'Unlimited',
|
|
252
|
-
__v: 0,
|
|
253
|
-
id: '65c3409d78352b58fcbba840',
|
|
254
|
-
},
|
|
255
|
-
__v: 0,
|
|
256
|
-
isActive: true,
|
|
257
|
-
id: '65c24bafa4111f0c64a2bfab',
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
_id: '65c24bafa4111f0c64a2bfac',
|
|
261
|
-
Name: 'Study Protocol',
|
|
262
|
-
Tier1: {
|
|
263
|
-
_id: '65c3409c78352b58fcbba7d2',
|
|
264
|
-
Sufix: 'Task Per Study',
|
|
265
|
-
Value: '5',
|
|
266
|
-
__v: 0,
|
|
267
|
-
id: '65c3409c78352b58fcbba7d2',
|
|
268
|
-
},
|
|
269
|
-
Tier2: {
|
|
270
|
-
_id: '65c3409d78352b58fcbba7f4',
|
|
271
|
-
Sufix: 'Task Per Study',
|
|
272
|
-
Value: '10',
|
|
273
|
-
__v: 0,
|
|
274
|
-
id: '65c3409d78352b58fcbba7f4',
|
|
275
|
-
},
|
|
276
|
-
Tier3: {
|
|
277
|
-
_id: '65c3409d78352b58fcbba818',
|
|
278
|
-
Value: 'Unlimited',
|
|
279
|
-
__v: 0,
|
|
280
|
-
id: '65c3409d78352b58fcbba818',
|
|
281
|
-
},
|
|
282
|
-
Tier4: {
|
|
283
|
-
_id: '65c3409d78352b58fcbba839',
|
|
284
|
-
Value: 'Unlimited',
|
|
285
|
-
__v: 0,
|
|
286
|
-
id: '65c3409d78352b58fcbba839',
|
|
287
|
-
},
|
|
288
|
-
__v: 0,
|
|
289
|
-
isActive: true,
|
|
290
|
-
id: '65c24bafa4111f0c64a2bfac',
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
_id: '65c24bafa4111f0c64a2bfad',
|
|
294
|
-
Name: 'Notes Taking',
|
|
295
|
-
Tier1: {
|
|
296
|
-
_id: '65c3409c78352b58fcbba7da',
|
|
297
|
-
Value: 'Yes',
|
|
298
|
-
__v: 0,
|
|
299
|
-
id: '65c3409c78352b58fcbba7da',
|
|
300
|
-
},
|
|
301
|
-
Tier2: {
|
|
302
|
-
_id: '65c3409d78352b58fcbba7fc',
|
|
303
|
-
Value: 'Yes',
|
|
304
|
-
__v: 0,
|
|
305
|
-
id: '65c3409d78352b58fcbba7fc',
|
|
306
|
-
},
|
|
307
|
-
Tier3: {
|
|
308
|
-
_id: '65c3409d78352b58fcbba81f',
|
|
309
|
-
Value: 'Yes',
|
|
310
|
-
__v: 0,
|
|
311
|
-
id: '65c3409d78352b58fcbba81f',
|
|
312
|
-
},
|
|
313
|
-
Tier4: {
|
|
314
|
-
_id: '65c3409d78352b58fcbba841',
|
|
315
|
-
Value: 'Yes',
|
|
316
|
-
__v: 0,
|
|
317
|
-
id: '65c3409d78352b58fcbba841',
|
|
318
|
-
},
|
|
319
|
-
__v: 0,
|
|
320
|
-
isActive: true,
|
|
321
|
-
id: '65c24bafa4111f0c64a2bfad',
|
|
322
|
-
},
|
|
323
|
-
{
|
|
324
|
-
_id: '65c24bafa4111f0c64a2bfae',
|
|
325
|
-
Name: 'Task Validation',
|
|
326
|
-
Tier1: {
|
|
327
|
-
_id: '65c3409c78352b58fcbba7d3',
|
|
328
|
-
Value: 'Yes',
|
|
329
|
-
__v: 0,
|
|
330
|
-
id: '65c3409c78352b58fcbba7d3',
|
|
331
|
-
},
|
|
332
|
-
Tier2: {
|
|
333
|
-
_id: '65c3409d78352b58fcbba7f5',
|
|
334
|
-
Value: 'Yes',
|
|
335
|
-
__v: 0,
|
|
336
|
-
id: '65c3409d78352b58fcbba7f5',
|
|
337
|
-
},
|
|
338
|
-
Tier3: {
|
|
339
|
-
_id: '65c3409d78352b58fcbba817',
|
|
340
|
-
Value: 'Yes',
|
|
341
|
-
__v: 0,
|
|
342
|
-
id: '65c3409d78352b58fcbba817',
|
|
343
|
-
},
|
|
344
|
-
Tier4: {
|
|
345
|
-
_id: '65c3409d78352b58fcbba83b',
|
|
346
|
-
Value: 'Yes',
|
|
347
|
-
__v: 0,
|
|
348
|
-
id: '65c3409d78352b58fcbba83b',
|
|
349
|
-
},
|
|
350
|
-
__v: 0,
|
|
351
|
-
isActive: true,
|
|
352
|
-
id: '65c24bafa4111f0c64a2bfae',
|
|
353
|
-
},
|
|
354
|
-
{
|
|
355
|
-
_id: '65c24bafa4111f0c64a2bfaf',
|
|
356
|
-
Name: 'User Journey',
|
|
357
|
-
Tier1: {
|
|
358
|
-
_id: '65c3409c78352b58fcbba7d4',
|
|
359
|
-
Value: 'Yes',
|
|
360
|
-
__v: 0,
|
|
361
|
-
id: '65c3409c78352b58fcbba7d4',
|
|
362
|
-
},
|
|
363
|
-
Tier2: {
|
|
364
|
-
_id: '65c3409d78352b58fcbba7f6',
|
|
365
|
-
Value: 'Yes',
|
|
366
|
-
__v: 0,
|
|
367
|
-
id: '65c3409d78352b58fcbba7f6',
|
|
368
|
-
},
|
|
369
|
-
Tier3: {
|
|
370
|
-
_id: '65c3409d78352b58fcbba819',
|
|
371
|
-
Value: 'Yes',
|
|
372
|
-
__v: 0,
|
|
373
|
-
id: '65c3409d78352b58fcbba819',
|
|
374
|
-
},
|
|
375
|
-
Tier4: {
|
|
376
|
-
_id: '65c3409d78352b58fcbba83d',
|
|
377
|
-
Value: 'Yes',
|
|
378
|
-
__v: 0,
|
|
379
|
-
id: '65c3409d78352b58fcbba83d',
|
|
380
|
-
},
|
|
381
|
-
__v: 0,
|
|
382
|
-
isActive: true,
|
|
383
|
-
id: '65c24bafa4111f0c64a2bfaf',
|
|
384
|
-
},
|
|
385
|
-
{
|
|
386
|
-
_id: '65c24bafa4111f0c64a2bfb0',
|
|
387
|
-
Name: 'Emotion-Based Video Player',
|
|
388
|
-
Tier1: {
|
|
389
|
-
_id: '65c3409c78352b58fcbba7db',
|
|
390
|
-
Value: 'Yes',
|
|
391
|
-
__v: 0,
|
|
392
|
-
id: '65c3409c78352b58fcbba7db',
|
|
393
|
-
},
|
|
394
|
-
Tier2: {
|
|
395
|
-
_id: '65c3409d78352b58fcbba7fd',
|
|
396
|
-
Value: 'Yes',
|
|
397
|
-
__v: 0,
|
|
398
|
-
id: '65c3409d78352b58fcbba7fd',
|
|
399
|
-
},
|
|
400
|
-
Tier3: {
|
|
401
|
-
_id: '65c3409d78352b58fcbba821',
|
|
402
|
-
Value: 'Yes',
|
|
403
|
-
__v: 0,
|
|
404
|
-
id: '65c3409d78352b58fcbba821',
|
|
405
|
-
},
|
|
406
|
-
Tier4: {
|
|
407
|
-
_id: '65c3409e78352b58fcbba843',
|
|
408
|
-
Value: 'Yes',
|
|
409
|
-
__v: 0,
|
|
410
|
-
id: '65c3409e78352b58fcbba843',
|
|
411
|
-
},
|
|
412
|
-
__v: 0,
|
|
413
|
-
isActive: true,
|
|
414
|
-
id: '65c24bafa4111f0c64a2bfb0',
|
|
415
|
-
},
|
|
416
|
-
{
|
|
417
|
-
_id: '65c24bafa4111f0c64a2bfb1',
|
|
418
|
-
Name: 'Video Clipping',
|
|
419
|
-
Tier1: {
|
|
420
|
-
_id: '65c3409c78352b58fcbba7dc',
|
|
421
|
-
Prefix: 'Up to',
|
|
422
|
-
Value: '5',
|
|
423
|
-
Sufix: ' Per Study',
|
|
424
|
-
__v: 0,
|
|
425
|
-
id: '65c3409c78352b58fcbba7dc',
|
|
426
|
-
},
|
|
427
|
-
Tier2: {
|
|
428
|
-
_id: '65c3409d78352b58fcbba7ff',
|
|
429
|
-
Sufix: ' Per Study',
|
|
430
|
-
Prefix: 'Up to',
|
|
431
|
-
Value: '30',
|
|
432
|
-
__v: 0,
|
|
433
|
-
id: '65c3409d78352b58fcbba7ff',
|
|
434
|
-
},
|
|
435
|
-
Tier3: {
|
|
436
|
-
_id: '65c3409d78352b58fcbba822',
|
|
437
|
-
Sufix: ' Per Study',
|
|
438
|
-
Prefix: 'Up to',
|
|
439
|
-
Value: '50',
|
|
440
|
-
__v: 0,
|
|
441
|
-
id: '65c3409d78352b58fcbba822',
|
|
442
|
-
},
|
|
443
|
-
Tier4: {
|
|
444
|
-
_id: '65c3409e78352b58fcbba845',
|
|
445
|
-
Value: 'Unlimited',
|
|
446
|
-
__v: 0,
|
|
447
|
-
id: '65c3409e78352b58fcbba845',
|
|
448
|
-
},
|
|
449
|
-
__v: 0,
|
|
450
|
-
isActive: true,
|
|
451
|
-
id: '65c24bafa4111f0c64a2bfb1',
|
|
452
|
-
},
|
|
453
|
-
{
|
|
454
|
-
_id: '65c24bafa4111f0c64a2bfb2',
|
|
455
|
-
Name: 'Video Markup',
|
|
456
|
-
Tier1: {
|
|
457
|
-
_id: '65c3409c78352b58fcbba7dd',
|
|
458
|
-
Value: 'Yes',
|
|
459
|
-
__v: 0,
|
|
460
|
-
id: '65c3409c78352b58fcbba7dd',
|
|
461
|
-
},
|
|
462
|
-
Tier2: {
|
|
463
|
-
_id: '65c3409d78352b58fcbba7fe',
|
|
464
|
-
Value: 'Yes',
|
|
465
|
-
__v: 0,
|
|
466
|
-
id: '65c3409d78352b58fcbba7fe',
|
|
467
|
-
},
|
|
468
|
-
Tier3: {
|
|
469
|
-
_id: '65c3409d78352b58fcbba820',
|
|
470
|
-
Value: 'Yes',
|
|
471
|
-
__v: 0,
|
|
472
|
-
id: '65c3409d78352b58fcbba820',
|
|
473
|
-
},
|
|
474
|
-
Tier4: {
|
|
475
|
-
_id: '65c3409e78352b58fcbba842',
|
|
476
|
-
Value: 'Yes',
|
|
477
|
-
__v: 0,
|
|
478
|
-
id: '65c3409e78352b58fcbba842',
|
|
479
|
-
},
|
|
480
|
-
__v: 0,
|
|
481
|
-
isActive: true,
|
|
482
|
-
id: '65c24bafa4111f0c64a2bfb2',
|
|
483
|
-
},
|
|
484
|
-
{
|
|
485
|
-
_id: '65c24bafa4111f0c64a2bfb3',
|
|
486
|
-
Name: 'White Tests',
|
|
487
|
-
Tier1: {
|
|
488
|
-
_id: '65c3409c78352b58fcbba7df',
|
|
489
|
-
Value: '1',
|
|
490
|
-
__v: 0,
|
|
491
|
-
id: '65c3409c78352b58fcbba7df',
|
|
492
|
-
},
|
|
493
|
-
Tier2: {
|
|
494
|
-
_id: '65c3409d78352b58fcbba801',
|
|
495
|
-
Value: 'Unlimited',
|
|
496
|
-
__v: 0,
|
|
497
|
-
id: '65c3409d78352b58fcbba801',
|
|
498
|
-
},
|
|
499
|
-
Tier3: {
|
|
500
|
-
_id: '65c3409d78352b58fcbba826',
|
|
501
|
-
Value: 'Unlimited',
|
|
502
|
-
__v: 0,
|
|
503
|
-
id: '65c3409d78352b58fcbba826',
|
|
504
|
-
},
|
|
505
|
-
Tier4: {
|
|
506
|
-
_id: '65c3409e78352b58fcbba848',
|
|
507
|
-
Value: 'Unlimited',
|
|
508
|
-
__v: 0,
|
|
509
|
-
id: '65c3409e78352b58fcbba848',
|
|
510
|
-
},
|
|
511
|
-
__v: 0,
|
|
512
|
-
isActive: true,
|
|
513
|
-
id: '65c24bafa4111f0c64a2bfb3',
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
_id: '65c24bafa4111f0c64a2bfb4',
|
|
517
|
-
Name: 'Multilanguage Tests',
|
|
518
|
-
Tier1: {
|
|
519
|
-
_id: '65c3409c78352b58fcbba7de',
|
|
520
|
-
Value: 'Yes',
|
|
521
|
-
__v: 0,
|
|
522
|
-
id: '65c3409c78352b58fcbba7de',
|
|
523
|
-
},
|
|
524
|
-
Tier2: {
|
|
525
|
-
_id: '65c3409d78352b58fcbba800',
|
|
526
|
-
Value: 'Yes',
|
|
527
|
-
__v: 0,
|
|
528
|
-
id: '65c3409d78352b58fcbba800',
|
|
529
|
-
},
|
|
530
|
-
Tier3: {
|
|
531
|
-
_id: '65c3409d78352b58fcbba824',
|
|
532
|
-
Value: 'Yes',
|
|
533
|
-
__v: 0,
|
|
534
|
-
id: '65c3409d78352b58fcbba824',
|
|
535
|
-
},
|
|
536
|
-
Tier4: {
|
|
537
|
-
_id: '65c3409e78352b58fcbba846',
|
|
538
|
-
Value: 'Yes',
|
|
539
|
-
__v: 0,
|
|
540
|
-
id: '65c3409e78352b58fcbba846',
|
|
541
|
-
},
|
|
542
|
-
__v: 0,
|
|
543
|
-
isActive: true,
|
|
544
|
-
id: '65c24bafa4111f0c64a2bfb4',
|
|
545
|
-
},
|
|
546
|
-
{
|
|
547
|
-
_id: '65c24bafa4111f0c64a2bfb5',
|
|
548
|
-
Name: 'SUS (System Usability Scale)',
|
|
549
|
-
Tier1: {
|
|
550
|
-
_id: '65c3409c78352b58fcbba7e1',
|
|
551
|
-
Value: 'Yes',
|
|
552
|
-
__v: 0,
|
|
553
|
-
id: '65c3409c78352b58fcbba7e1',
|
|
554
|
-
},
|
|
555
|
-
Tier2: {
|
|
556
|
-
_id: '65c3409d78352b58fcbba803',
|
|
557
|
-
Value: 'Yes',
|
|
558
|
-
__v: 0,
|
|
559
|
-
id: '65c3409d78352b58fcbba803',
|
|
560
|
-
},
|
|
561
|
-
Tier3: {
|
|
562
|
-
_id: '65c3409d78352b58fcbba825',
|
|
563
|
-
Value: 'Yes',
|
|
564
|
-
__v: 0,
|
|
565
|
-
id: '65c3409d78352b58fcbba825',
|
|
566
|
-
},
|
|
567
|
-
Tier4: {
|
|
568
|
-
_id: '65c3409e78352b58fcbba847',
|
|
569
|
-
Value: 'Yes',
|
|
570
|
-
__v: 0,
|
|
571
|
-
id: '65c3409e78352b58fcbba847',
|
|
572
|
-
},
|
|
573
|
-
__v: 0,
|
|
574
|
-
isActive: true,
|
|
575
|
-
id: '65c24bafa4111f0c64a2bfb5',
|
|
576
|
-
},
|
|
577
|
-
{
|
|
578
|
-
_id: '65c24bafa4111f0c64a2bfb6',
|
|
579
|
-
Name: 'Mobile Testing',
|
|
580
|
-
Tier1: {
|
|
581
|
-
_id: '65c3409c78352b58fcbba7e0',
|
|
582
|
-
Value: 'No',
|
|
583
|
-
__v: 0,
|
|
584
|
-
id: '65c3409c78352b58fcbba7e0',
|
|
585
|
-
},
|
|
586
|
-
Tier2: {
|
|
587
|
-
_id: '65c3409d78352b58fcbba802',
|
|
588
|
-
Value: 'Yes',
|
|
589
|
-
__v: 0,
|
|
590
|
-
id: '65c3409d78352b58fcbba802',
|
|
591
|
-
},
|
|
592
|
-
Tier3: {
|
|
593
|
-
_id: '65c3409d78352b58fcbba823',
|
|
594
|
-
Value: 'Yes',
|
|
595
|
-
__v: 0,
|
|
596
|
-
id: '65c3409d78352b58fcbba823',
|
|
597
|
-
},
|
|
598
|
-
Tier4: {
|
|
599
|
-
_id: '65c3409e78352b58fcbba844',
|
|
600
|
-
Value: 'Yes',
|
|
601
|
-
__v: 0,
|
|
602
|
-
id: '65c3409e78352b58fcbba844',
|
|
603
|
-
},
|
|
604
|
-
__v: 0,
|
|
605
|
-
isActive: true,
|
|
606
|
-
id: '65c24bafa4111f0c64a2bfb6',
|
|
607
|
-
},
|
|
608
|
-
{
|
|
609
|
-
_id: '65c24bafa4111f0c64a2bfb7',
|
|
610
|
-
Name: 'Workspaces',
|
|
611
|
-
Tier1: {
|
|
612
|
-
_id: '65c3409c78352b58fcbba7e2',
|
|
613
|
-
Value: 'No',
|
|
614
|
-
__v: 0,
|
|
615
|
-
id: '65c3409c78352b58fcbba7e2',
|
|
616
|
-
},
|
|
617
|
-
Tier2: {
|
|
618
|
-
_id: '65c3409d78352b58fcbba804',
|
|
619
|
-
Value: 'Yes',
|
|
620
|
-
__v: 0,
|
|
621
|
-
id: '65c3409d78352b58fcbba804',
|
|
622
|
-
},
|
|
623
|
-
Tier3: {
|
|
624
|
-
_id: '65c3409d78352b58fcbba827',
|
|
625
|
-
Value: 'Yes',
|
|
626
|
-
__v: 0,
|
|
627
|
-
id: '65c3409d78352b58fcbba827',
|
|
628
|
-
},
|
|
629
|
-
Tier4: {
|
|
630
|
-
_id: '65c3409e78352b58fcbba849',
|
|
631
|
-
Value: 'Yes',
|
|
632
|
-
__v: 0,
|
|
633
|
-
id: '65c3409e78352b58fcbba849',
|
|
634
|
-
},
|
|
635
|
-
__v: 0,
|
|
636
|
-
isActive: true,
|
|
637
|
-
id: '65c24bafa4111f0c64a2bfb7',
|
|
638
|
-
},
|
|
639
|
-
],
|
|
640
|
-
UserPanelFeatures: [
|
|
641
|
-
{
|
|
642
|
-
_id: '65c25be30847926f6899f050',
|
|
643
|
-
Name: 'User Panel Widget or Link',
|
|
644
|
-
Tier1: {
|
|
645
|
-
_id: '65c3468278352b58fcbbaa97',
|
|
646
|
-
Value: '1',
|
|
647
|
-
Sufix: 'Widget Per Year',
|
|
648
|
-
__v: 0,
|
|
649
|
-
id: '65c3468278352b58fcbbaa97',
|
|
650
|
-
},
|
|
651
|
-
Tier2: {
|
|
652
|
-
_id: '65c3468378352b58fcbbaaa1',
|
|
653
|
-
Sufix: 'Widgets Per Year',
|
|
654
|
-
Value: '3',
|
|
655
|
-
__v: 0,
|
|
656
|
-
id: '65c3468378352b58fcbbaaa1',
|
|
657
|
-
},
|
|
658
|
-
Tier3: {
|
|
659
|
-
_id: '65c3468378352b58fcbbaaab',
|
|
660
|
-
Sufix: 'Widgets Per Year',
|
|
661
|
-
Value: '6',
|
|
662
|
-
__v: 0,
|
|
663
|
-
id: '65c3468378352b58fcbbaaab',
|
|
664
|
-
},
|
|
665
|
-
Tier4: {
|
|
666
|
-
_id: '65c3468378352b58fcbbaab5',
|
|
667
|
-
Sufix: 'Widgets Per Year',
|
|
668
|
-
Value: 'Unlimited',
|
|
669
|
-
__v: 0,
|
|
670
|
-
id: '65c3468378352b58fcbbaab5',
|
|
671
|
-
},
|
|
672
|
-
__v: 0,
|
|
673
|
-
isActive: true,
|
|
674
|
-
id: '65c25be30847926f6899f050',
|
|
675
|
-
},
|
|
676
|
-
{
|
|
677
|
-
_id: '65c25be30847926f6899f051',
|
|
678
|
-
Name: 'All-In-One Dashboard',
|
|
679
|
-
Tier1: {
|
|
680
|
-
_id: '65c3468278352b58fcbbaa98',
|
|
681
|
-
Value: 'Yes',
|
|
682
|
-
__v: 0,
|
|
683
|
-
id: '65c3468278352b58fcbbaa98',
|
|
684
|
-
},
|
|
685
|
-
Tier2: {
|
|
686
|
-
_id: '65c3468378352b58fcbbaaa3',
|
|
687
|
-
Value: 'Yes',
|
|
688
|
-
__v: 0,
|
|
689
|
-
id: '65c3468378352b58fcbbaaa3',
|
|
690
|
-
},
|
|
691
|
-
Tier3: {
|
|
692
|
-
_id: '65c3468378352b58fcbbaaad',
|
|
693
|
-
Value: 'Yes',
|
|
694
|
-
__v: 0,
|
|
695
|
-
id: '65c3468378352b58fcbbaaad',
|
|
696
|
-
},
|
|
697
|
-
Tier4: {
|
|
698
|
-
_id: '65c3468378352b58fcbbaab7',
|
|
699
|
-
Value: 'Yes',
|
|
700
|
-
__v: 0,
|
|
701
|
-
id: '65c3468378352b58fcbbaab7',
|
|
702
|
-
},
|
|
703
|
-
__v: 0,
|
|
704
|
-
isActive: true,
|
|
705
|
-
id: '65c25be30847926f6899f051',
|
|
706
|
-
},
|
|
707
|
-
{
|
|
708
|
-
_id: '65c25be30847926f6899f052',
|
|
709
|
-
Name: 'Automated Calendar Invites',
|
|
710
|
-
Tier1: {
|
|
711
|
-
_id: '65c3468278352b58fcbbaa99',
|
|
712
|
-
Value: 'Yes',
|
|
713
|
-
__v: 0,
|
|
714
|
-
id: '65c3468278352b58fcbbaa99',
|
|
715
|
-
},
|
|
716
|
-
Tier2: {
|
|
717
|
-
_id: '65c3468378352b58fcbbaaa2',
|
|
718
|
-
Value: 'Yes',
|
|
719
|
-
__v: 0,
|
|
720
|
-
id: '65c3468378352b58fcbbaaa2',
|
|
721
|
-
},
|
|
722
|
-
Tier3: {
|
|
723
|
-
_id: '65c3468378352b58fcbbaaac',
|
|
724
|
-
Value: 'Yes',
|
|
725
|
-
__v: 0,
|
|
726
|
-
id: '65c3468378352b58fcbbaaac',
|
|
727
|
-
},
|
|
728
|
-
Tier4: {
|
|
729
|
-
_id: '65c3468378352b58fcbbaab6',
|
|
730
|
-
Value: 'Yes',
|
|
731
|
-
__v: 0,
|
|
732
|
-
id: '65c3468378352b58fcbbaab6',
|
|
733
|
-
},
|
|
734
|
-
__v: 0,
|
|
735
|
-
isActive: true,
|
|
736
|
-
id: '65c25be30847926f6899f052',
|
|
737
|
-
},
|
|
738
|
-
{
|
|
739
|
-
_id: '65c25be30847926f6899f053',
|
|
740
|
-
Name: 'Centralized Payment',
|
|
741
|
-
Tier1: {
|
|
742
|
-
_id: '65c3468278352b58fcbbaa95',
|
|
743
|
-
Value: 'Yes',
|
|
744
|
-
__v: 0,
|
|
745
|
-
id: '65c3468278352b58fcbbaa95',
|
|
746
|
-
},
|
|
747
|
-
Tier2: {
|
|
748
|
-
_id: '65c3468378352b58fcbbaaa0',
|
|
749
|
-
Value: 'Yes',
|
|
750
|
-
__v: 0,
|
|
751
|
-
id: '65c3468378352b58fcbbaaa0',
|
|
752
|
-
},
|
|
753
|
-
Tier3: {
|
|
754
|
-
_id: '65c3468378352b58fcbbaaaa',
|
|
755
|
-
Value: 'Yes',
|
|
756
|
-
__v: 0,
|
|
757
|
-
id: '65c3468378352b58fcbbaaaa',
|
|
758
|
-
},
|
|
759
|
-
Tier4: {
|
|
760
|
-
_id: '65c3468378352b58fcbbaab3',
|
|
761
|
-
Value: 'Yes',
|
|
762
|
-
__v: 0,
|
|
763
|
-
id: '65c3468378352b58fcbbaab3',
|
|
764
|
-
},
|
|
765
|
-
__v: 0,
|
|
766
|
-
isActive: true,
|
|
767
|
-
id: '65c25be30847926f6899f053',
|
|
768
|
-
},
|
|
769
|
-
{
|
|
770
|
-
_id: '65c25be30847926f6899f054',
|
|
771
|
-
Name: 'Custom Incentive',
|
|
772
|
-
Tier1: {
|
|
773
|
-
_id: '65c3468278352b58fcbbaa96',
|
|
774
|
-
Value: 'No',
|
|
775
|
-
__v: 0,
|
|
776
|
-
id: '65c3468278352b58fcbbaa96',
|
|
777
|
-
},
|
|
778
|
-
Tier2: {
|
|
779
|
-
_id: '65c3468378352b58fcbbaa9f',
|
|
780
|
-
Value: 'No',
|
|
781
|
-
__v: 0,
|
|
782
|
-
id: '65c3468378352b58fcbbaa9f',
|
|
783
|
-
},
|
|
784
|
-
Tier3: {
|
|
785
|
-
_id: '65c3468378352b58fcbbaaa9',
|
|
786
|
-
Value: 'No',
|
|
787
|
-
__v: 0,
|
|
788
|
-
id: '65c3468378352b58fcbbaaa9',
|
|
789
|
-
},
|
|
790
|
-
Tier4: {
|
|
791
|
-
_id: '65c3468378352b58fcbbaab4',
|
|
792
|
-
Value: 'Yes',
|
|
793
|
-
__v: 0,
|
|
794
|
-
id: '65c3468378352b58fcbbaab4',
|
|
795
|
-
},
|
|
796
|
-
__v: 0,
|
|
797
|
-
isActive: true,
|
|
798
|
-
id: '65c25be30847926f6899f054',
|
|
799
|
-
},
|
|
800
|
-
],
|
|
801
|
-
AnalysisFeatures: [
|
|
802
|
-
{
|
|
803
|
-
_id: '65c25aac0847926f6899efcf',
|
|
804
|
-
Tier1: {
|
|
805
|
-
_id: '65c3418078352b58fcbba900',
|
|
806
|
-
Value: 'No',
|
|
807
|
-
__v: 0,
|
|
808
|
-
id: '65c3418078352b58fcbba900',
|
|
809
|
-
},
|
|
810
|
-
Tier2: {
|
|
811
|
-
_id: '65c3418078352b58fcbba911',
|
|
812
|
-
Value: 'Yes',
|
|
813
|
-
__v: 0,
|
|
814
|
-
id: '65c3418078352b58fcbba911',
|
|
815
|
-
},
|
|
816
|
-
Tier3: {
|
|
817
|
-
_id: '65c3418078352b58fcbba921',
|
|
818
|
-
Value: 'Yes',
|
|
819
|
-
__v: 0,
|
|
820
|
-
id: '65c3418078352b58fcbba921',
|
|
821
|
-
},
|
|
822
|
-
Tier4: {
|
|
823
|
-
_id: '65c3418078352b58fcbba931',
|
|
824
|
-
Value: 'Yes',
|
|
825
|
-
__v: 0,
|
|
826
|
-
id: '65c3418078352b58fcbba931',
|
|
827
|
-
},
|
|
828
|
-
__v: 0,
|
|
829
|
-
Name: 'Automated Testing',
|
|
830
|
-
isActive: true,
|
|
831
|
-
id: '65c25aac0847926f6899efcf',
|
|
832
|
-
},
|
|
833
|
-
{
|
|
834
|
-
_id: '65c25b610847926f6899efeb',
|
|
835
|
-
Name: 'Automated Clip Creation',
|
|
836
|
-
Tier1: {
|
|
837
|
-
_id: '65c3418078352b58fcbba901',
|
|
838
|
-
Value: 'No',
|
|
839
|
-
__v: 0,
|
|
840
|
-
id: '65c3418078352b58fcbba901',
|
|
841
|
-
},
|
|
842
|
-
Tier2: {
|
|
843
|
-
_id: '65c3418078352b58fcbba910',
|
|
844
|
-
Value: 'Yes',
|
|
845
|
-
__v: 0,
|
|
846
|
-
id: '65c3418078352b58fcbba910',
|
|
847
|
-
},
|
|
848
|
-
Tier3: {
|
|
849
|
-
_id: '65c3418078352b58fcbba920',
|
|
850
|
-
Value: 'Yes',
|
|
851
|
-
__v: 0,
|
|
852
|
-
id: '65c3418078352b58fcbba920',
|
|
853
|
-
},
|
|
854
|
-
Tier4: {
|
|
855
|
-
_id: '65c3418078352b58fcbba930',
|
|
856
|
-
Value: 'Yes',
|
|
857
|
-
__v: 0,
|
|
858
|
-
id: '65c3418078352b58fcbba930',
|
|
859
|
-
},
|
|
860
|
-
__v: 0,
|
|
861
|
-
isActive: true,
|
|
862
|
-
id: '65c25b610847926f6899efeb',
|
|
863
|
-
},
|
|
864
|
-
{
|
|
865
|
-
_id: '65c25b610847926f6899efec',
|
|
866
|
-
Name: 'Automated Keyword Extraction',
|
|
867
|
-
Tier1: {
|
|
868
|
-
_id: '65c3418078352b58fcbba905',
|
|
869
|
-
Value: 'No',
|
|
870
|
-
__v: 0,
|
|
871
|
-
id: '65c3418078352b58fcbba905',
|
|
872
|
-
},
|
|
873
|
-
Tier2: {
|
|
874
|
-
_id: '65c3418078352b58fcbba915',
|
|
875
|
-
Value: 'Yes',
|
|
876
|
-
__v: 0,
|
|
877
|
-
id: '65c3418078352b58fcbba915',
|
|
878
|
-
},
|
|
879
|
-
Tier3: {
|
|
880
|
-
_id: '65c3418078352b58fcbba925',
|
|
881
|
-
Value: 'Yes',
|
|
882
|
-
__v: 0,
|
|
883
|
-
id: '65c3418078352b58fcbba925',
|
|
884
|
-
},
|
|
885
|
-
Tier4: {
|
|
886
|
-
_id: '65c3418078352b58fcbba936',
|
|
887
|
-
Value: 'Yes',
|
|
888
|
-
__v: 0,
|
|
889
|
-
id: '65c3418078352b58fcbba936',
|
|
890
|
-
},
|
|
891
|
-
__v: 0,
|
|
892
|
-
isActive: true,
|
|
893
|
-
id: '65c25b610847926f6899efec',
|
|
894
|
-
},
|
|
895
|
-
{
|
|
896
|
-
_id: '65c25b610847926f6899efed',
|
|
897
|
-
Name: 'Attention Analysis',
|
|
898
|
-
Tier1: {
|
|
899
|
-
_id: '65c3418078352b58fcbba906',
|
|
900
|
-
Value: 'No',
|
|
901
|
-
__v: 0,
|
|
902
|
-
id: '65c3418078352b58fcbba906',
|
|
903
|
-
},
|
|
904
|
-
Tier2: {
|
|
905
|
-
_id: '65c3418078352b58fcbba916',
|
|
906
|
-
Value: 'Yes',
|
|
907
|
-
__v: 0,
|
|
908
|
-
id: '65c3418078352b58fcbba916',
|
|
909
|
-
},
|
|
910
|
-
Tier3: {
|
|
911
|
-
_id: '65c3418078352b58fcbba926',
|
|
912
|
-
Value: 'Yes',
|
|
913
|
-
__v: 0,
|
|
914
|
-
id: '65c3418078352b58fcbba926',
|
|
915
|
-
},
|
|
916
|
-
Tier4: {
|
|
917
|
-
_id: '65c3418078352b58fcbba934',
|
|
918
|
-
Value: 'Yes',
|
|
919
|
-
__v: 0,
|
|
920
|
-
id: '65c3418078352b58fcbba934',
|
|
921
|
-
},
|
|
922
|
-
__v: 0,
|
|
923
|
-
isActive: true,
|
|
924
|
-
id: '65c25b610847926f6899efed',
|
|
925
|
-
},
|
|
926
|
-
{
|
|
927
|
-
_id: '65c25b610847926f6899efee',
|
|
928
|
-
Name: 'Custom Usability Forms',
|
|
929
|
-
Tier1: {
|
|
930
|
-
_id: '65c3418078352b58fcbba902',
|
|
931
|
-
Value: 'No',
|
|
932
|
-
__v: 0,
|
|
933
|
-
id: '65c3418078352b58fcbba902',
|
|
934
|
-
},
|
|
935
|
-
Tier2: {
|
|
936
|
-
_id: '65c3418078352b58fcbba913',
|
|
937
|
-
Value: 'Yes',
|
|
938
|
-
__v: 0,
|
|
939
|
-
id: '65c3418078352b58fcbba913',
|
|
940
|
-
},
|
|
941
|
-
Tier3: {
|
|
942
|
-
_id: '65c3418078352b58fcbba922',
|
|
943
|
-
Value: 'Yes',
|
|
944
|
-
__v: 0,
|
|
945
|
-
id: '65c3418078352b58fcbba922',
|
|
946
|
-
},
|
|
947
|
-
Tier4: {
|
|
948
|
-
_id: '65c3418078352b58fcbba935',
|
|
949
|
-
Value: 'Yes',
|
|
950
|
-
__v: 0,
|
|
951
|
-
id: '65c3418078352b58fcbba935',
|
|
952
|
-
},
|
|
953
|
-
__v: 0,
|
|
954
|
-
isActive: true,
|
|
955
|
-
id: '65c25b610847926f6899efee',
|
|
956
|
-
},
|
|
957
|
-
{
|
|
958
|
-
_id: '65c25b610847926f6899efef',
|
|
959
|
-
Name: 'Browser Extension',
|
|
960
|
-
Tier1: {
|
|
961
|
-
_id: '65c3418078352b58fcbba903',
|
|
962
|
-
Value: 'No',
|
|
963
|
-
__v: 0,
|
|
964
|
-
id: '65c3418078352b58fcbba903',
|
|
965
|
-
},
|
|
966
|
-
Tier2: {
|
|
967
|
-
_id: '65c3418078352b58fcbba912',
|
|
968
|
-
Value: 'Yes',
|
|
969
|
-
__v: 0,
|
|
970
|
-
id: '65c3418078352b58fcbba912',
|
|
971
|
-
},
|
|
972
|
-
Tier3: {
|
|
973
|
-
_id: '65c3418078352b58fcbba923',
|
|
974
|
-
Value: 'Yes',
|
|
975
|
-
__v: 0,
|
|
976
|
-
id: '65c3418078352b58fcbba923',
|
|
977
|
-
},
|
|
978
|
-
Tier4: {
|
|
979
|
-
_id: '65c3418078352b58fcbba933',
|
|
980
|
-
Value: 'Yes',
|
|
981
|
-
__v: 0,
|
|
982
|
-
id: '65c3418078352b58fcbba933',
|
|
983
|
-
},
|
|
984
|
-
__v: 0,
|
|
985
|
-
isActive: true,
|
|
986
|
-
id: '65c25b610847926f6899efef',
|
|
987
|
-
},
|
|
988
|
-
{
|
|
989
|
-
_id: '65c25b610847926f6899eff0',
|
|
990
|
-
Name: 'Video Upload',
|
|
991
|
-
Tier1: {
|
|
992
|
-
_id: '65c3418078352b58fcbba904',
|
|
993
|
-
Value: 'No',
|
|
994
|
-
__v: 0,
|
|
995
|
-
id: '65c3418078352b58fcbba904',
|
|
996
|
-
},
|
|
997
|
-
Tier2: {
|
|
998
|
-
_id: '65c3418078352b58fcbba914',
|
|
999
|
-
Value: 'Yes',
|
|
1000
|
-
__v: 0,
|
|
1001
|
-
id: '65c3418078352b58fcbba914',
|
|
1002
|
-
},
|
|
1003
|
-
Tier3: {
|
|
1004
|
-
_id: '65c3418078352b58fcbba924',
|
|
1005
|
-
Value: 'Yes',
|
|
1006
|
-
__v: 0,
|
|
1007
|
-
id: '65c3418078352b58fcbba924',
|
|
1008
|
-
},
|
|
1009
|
-
Tier4: {
|
|
1010
|
-
_id: '65c3418078352b58fcbba932',
|
|
1011
|
-
Value: 'Yes',
|
|
1012
|
-
__v: 0,
|
|
1013
|
-
id: '65c3418078352b58fcbba932',
|
|
1014
|
-
},
|
|
1015
|
-
__v: 0,
|
|
1016
|
-
isActive: true,
|
|
1017
|
-
id: '65c25b610847926f6899eff0',
|
|
1018
|
-
},
|
|
1019
|
-
{
|
|
1020
|
-
_id: '65c25b610847926f6899eff1',
|
|
1021
|
-
Name: 'Card Sorting Sessions',
|
|
1022
|
-
Tier1: null,
|
|
1023
|
-
Tier2: null,
|
|
1024
|
-
Tier3: null,
|
|
1025
|
-
Tier4: null,
|
|
1026
|
-
__v: 0,
|
|
1027
|
-
id: '65c25b610847926f6899eff1',
|
|
1028
|
-
},
|
|
1029
|
-
{
|
|
1030
|
-
_id: '65c25b610847926f6899eff2',
|
|
1031
|
-
Name: 'Detection of Uncertainty',
|
|
1032
|
-
Tier1: null,
|
|
1033
|
-
Tier2: null,
|
|
1034
|
-
Tier3: null,
|
|
1035
|
-
Tier4: null,
|
|
1036
|
-
__v: 0,
|
|
1037
|
-
id: '65c25b610847926f6899eff2',
|
|
1038
|
-
},
|
|
1039
|
-
{
|
|
1040
|
-
_id: '65c25b610847926f6899eff3',
|
|
1041
|
-
Name: 'Eye Tracking',
|
|
1042
|
-
Tier1: null,
|
|
1043
|
-
Tier2: null,
|
|
1044
|
-
Tier3: null,
|
|
1045
|
-
Tier4: null,
|
|
1046
|
-
__v: 0,
|
|
1047
|
-
id: '65c25b610847926f6899eff3',
|
|
1048
|
-
},
|
|
1049
|
-
{
|
|
1050
|
-
_id: '65c25b610847926f6899eff4',
|
|
1051
|
-
Name: 'Focus Groups',
|
|
1052
|
-
Tier1: null,
|
|
1053
|
-
Tier2: null,
|
|
1054
|
-
Tier3: null,
|
|
1055
|
-
Tier4: null,
|
|
1056
|
-
__v: 0,
|
|
1057
|
-
id: '65c25b610847926f6899eff4',
|
|
1058
|
-
},
|
|
1059
|
-
{
|
|
1060
|
-
_id: '65c25b610847926f6899eff5',
|
|
1061
|
-
Name: 'Multiple Interviewers',
|
|
1062
|
-
Tier1: null,
|
|
1063
|
-
Tier2: null,
|
|
1064
|
-
Tier3: null,
|
|
1065
|
-
Tier4: null,
|
|
1066
|
-
__v: 0,
|
|
1067
|
-
id: '65c25b610847926f6899eff5',
|
|
1068
|
-
},
|
|
1069
|
-
{
|
|
1070
|
-
_id: '65c25b610847926f6899eff6',
|
|
1071
|
-
Name: 'Usability browser',
|
|
1072
|
-
Tier1: null,
|
|
1073
|
-
Tier2: null,
|
|
1074
|
-
Tier3: null,
|
|
1075
|
-
Tier4: null,
|
|
1076
|
-
__v: 0,
|
|
1077
|
-
id: '65c25b610847926f6899eff6',
|
|
1078
|
-
},
|
|
1079
|
-
{
|
|
1080
|
-
_id: '65c25b610847926f6899eff7',
|
|
1081
|
-
Name: 'Observer Mode',
|
|
1082
|
-
Tier1: {
|
|
1083
|
-
_id: '65c3418078352b58fcbba907',
|
|
1084
|
-
Value: 'No',
|
|
1085
|
-
__v: 0,
|
|
1086
|
-
id: '65c3418078352b58fcbba907',
|
|
1087
|
-
},
|
|
1088
|
-
Tier2: {
|
|
1089
|
-
_id: '65c3418078352b58fcbba917',
|
|
1090
|
-
Value: '1',
|
|
1091
|
-
__v: 0,
|
|
1092
|
-
id: '65c3418078352b58fcbba917',
|
|
1093
|
-
},
|
|
1094
|
-
Tier3: {
|
|
1095
|
-
_id: '65c3418078352b58fcbba927',
|
|
1096
|
-
Value: '2',
|
|
1097
|
-
__v: 0,
|
|
1098
|
-
id: '65c3418078352b58fcbba927',
|
|
1099
|
-
},
|
|
1100
|
-
Tier4: {
|
|
1101
|
-
_id: '65c3418078352b58fcbba937',
|
|
1102
|
-
Value: '5',
|
|
1103
|
-
__v: 0,
|
|
1104
|
-
id: '65c3418078352b58fcbba937',
|
|
1105
|
-
},
|
|
1106
|
-
__v: 0,
|
|
1107
|
-
isActive: true,
|
|
1108
|
-
id: '65c25b610847926f6899eff7',
|
|
1109
|
-
},
|
|
1110
|
-
],
|
|
1111
|
-
AIFeatures: [
|
|
1112
|
-
{
|
|
1113
|
-
_id: '65c25ba20847926f6899f02e',
|
|
1114
|
-
Name: 'UX Assistant',
|
|
1115
|
-
Tier1: {
|
|
1116
|
-
_id: '65c3423278352b58fcbba9fc',
|
|
1117
|
-
Value: '5',
|
|
1118
|
-
Sufix: 'Questions per Study',
|
|
1119
|
-
__v: 0,
|
|
1120
|
-
id: '65c3423278352b58fcbba9fc',
|
|
1121
|
-
},
|
|
1122
|
-
Tier2: {
|
|
1123
|
-
_id: '65c3423378352b58fcbbaa06',
|
|
1124
|
-
Sufix: 'Questions per Study',
|
|
1125
|
-
Value: '40',
|
|
1126
|
-
__v: 0,
|
|
1127
|
-
id: '65c3423378352b58fcbbaa06',
|
|
1128
|
-
},
|
|
1129
|
-
Tier3: {
|
|
1130
|
-
_id: '65c3423378352b58fcbbaa0d',
|
|
1131
|
-
Sufix: 'Questions per Study',
|
|
1132
|
-
Value: '60',
|
|
1133
|
-
__v: 0,
|
|
1134
|
-
id: '65c3423378352b58fcbbaa0d',
|
|
1135
|
-
},
|
|
1136
|
-
Tier4: {
|
|
1137
|
-
_id: '65c3423378352b58fcbbaa14',
|
|
1138
|
-
Prefix: 'Up To',
|
|
1139
|
-
Value: '120',
|
|
1140
|
-
Sufix: 'Questions per Study',
|
|
1141
|
-
__v: 0,
|
|
1142
|
-
id: '65c3423378352b58fcbbaa14',
|
|
1143
|
-
},
|
|
1144
|
-
__v: 0,
|
|
1145
|
-
isActive: true,
|
|
1146
|
-
id: '65c25ba20847926f6899f02e',
|
|
1147
|
-
},
|
|
1148
|
-
{
|
|
1149
|
-
_id: '65c25ba20847926f6899f02f',
|
|
1150
|
-
Name: 'Persona Creation Addon',
|
|
1151
|
-
Tier1: {
|
|
1152
|
-
_id: '65c3423278352b58fcbba9fb',
|
|
1153
|
-
Value: 'Yes',
|
|
1154
|
-
__v: 0,
|
|
1155
|
-
id: '65c3423278352b58fcbba9fb',
|
|
1156
|
-
},
|
|
1157
|
-
Tier2: {
|
|
1158
|
-
_id: '65c3423378352b58fcbbaa05',
|
|
1159
|
-
Value: 'Yes',
|
|
1160
|
-
__v: 0,
|
|
1161
|
-
id: '65c3423378352b58fcbbaa05',
|
|
1162
|
-
},
|
|
1163
|
-
Tier3: {
|
|
1164
|
-
_id: '65c3423378352b58fcbbaa0e',
|
|
1165
|
-
Value: 'Yes',
|
|
1166
|
-
__v: 0,
|
|
1167
|
-
id: '65c3423378352b58fcbbaa0e',
|
|
1168
|
-
},
|
|
1169
|
-
Tier4: {
|
|
1170
|
-
_id: '65c3423378352b58fcbbaa16',
|
|
1171
|
-
Value: 'Yes',
|
|
1172
|
-
__v: 0,
|
|
1173
|
-
id: '65c3423378352b58fcbbaa16',
|
|
1174
|
-
},
|
|
1175
|
-
__v: 0,
|
|
1176
|
-
isActive: true,
|
|
1177
|
-
id: '65c25ba20847926f6899f02f',
|
|
1178
|
-
},
|
|
1179
|
-
{
|
|
1180
|
-
_id: '65c25ba20847926f6899f030',
|
|
1181
|
-
Name: 'Project Context Creation Addon',
|
|
1182
|
-
Tier1: {
|
|
1183
|
-
_id: '65c3423278352b58fcbba9fe',
|
|
1184
|
-
Value: 'Yes',
|
|
1185
|
-
__v: 0,
|
|
1186
|
-
id: '65c3423278352b58fcbba9fe',
|
|
1187
|
-
},
|
|
1188
|
-
Tier2: {
|
|
1189
|
-
_id: '65c3423378352b58fcbbaa03',
|
|
1190
|
-
Value: 'Yes',
|
|
1191
|
-
__v: 0,
|
|
1192
|
-
id: '65c3423378352b58fcbbaa03',
|
|
1193
|
-
},
|
|
1194
|
-
Tier3: {
|
|
1195
|
-
_id: '65c3423378352b58fcbbaa0b',
|
|
1196
|
-
Value: 'Yes',
|
|
1197
|
-
__v: 0,
|
|
1198
|
-
id: '65c3423378352b58fcbbaa0b',
|
|
1199
|
-
},
|
|
1200
|
-
Tier4: {
|
|
1201
|
-
_id: '65c3423378352b58fcbbaa13',
|
|
1202
|
-
Value: 'Yes',
|
|
1203
|
-
__v: 0,
|
|
1204
|
-
id: '65c3423378352b58fcbbaa13',
|
|
1205
|
-
},
|
|
1206
|
-
__v: 0,
|
|
1207
|
-
isActive: true,
|
|
1208
|
-
id: '65c25ba20847926f6899f030',
|
|
1209
|
-
},
|
|
1210
|
-
{
|
|
1211
|
-
_id: '65c25ba20847926f6899f031',
|
|
1212
|
-
Name: '20% off on Oda Refill',
|
|
1213
|
-
Tier1: {
|
|
1214
|
-
_id: '65c3423278352b58fcbba9fd',
|
|
1215
|
-
Value: 'No',
|
|
1216
|
-
__v: 0,
|
|
1217
|
-
id: '65c3423278352b58fcbba9fd',
|
|
1218
|
-
},
|
|
1219
|
-
Tier2: {
|
|
1220
|
-
_id: '65c3423378352b58fcbbaa04',
|
|
1221
|
-
Value: 'No',
|
|
1222
|
-
__v: 0,
|
|
1223
|
-
id: '65c3423378352b58fcbbaa04',
|
|
1224
|
-
},
|
|
1225
|
-
Tier3: {
|
|
1226
|
-
_id: '65c3423378352b58fcbbaa0c',
|
|
1227
|
-
Value: 'Yes',
|
|
1228
|
-
__v: 0,
|
|
1229
|
-
id: '65c3423378352b58fcbbaa0c',
|
|
1230
|
-
},
|
|
1231
|
-
Tier4: {
|
|
1232
|
-
_id: '65c3423378352b58fcbbaa15',
|
|
1233
|
-
Value: 'N/A',
|
|
1234
|
-
__v: 0,
|
|
1235
|
-
id: '65c3423378352b58fcbbaa15',
|
|
1236
|
-
},
|
|
1237
|
-
__v: 0,
|
|
1238
|
-
isActive: true,
|
|
1239
|
-
id: '65c25ba20847926f6899f031',
|
|
1240
|
-
},
|
|
1241
|
-
],
|
|
1242
|
-
CustomizationFeatures: [
|
|
1243
|
-
{
|
|
1244
|
-
_id: '65c25c0e0847926f6899f09d',
|
|
1245
|
-
Name: 'Custom Email Templates',
|
|
1246
|
-
Tier1: {
|
|
1247
|
-
_id: '65c346cb78352b58fcbbabd7',
|
|
1248
|
-
Value: 'No',
|
|
1249
|
-
__v: 0,
|
|
1250
|
-
id: '65c346cb78352b58fcbbabd7',
|
|
1251
|
-
},
|
|
1252
|
-
Tier2: {
|
|
1253
|
-
_id: '65c346cb78352b58fcbbabdc',
|
|
1254
|
-
Value: 'No',
|
|
1255
|
-
__v: 0,
|
|
1256
|
-
id: '65c346cb78352b58fcbbabdc',
|
|
1257
|
-
},
|
|
1258
|
-
Tier3: {
|
|
1259
|
-
_id: '65c346cb78352b58fcbbabe2',
|
|
1260
|
-
Value: 'Yes',
|
|
1261
|
-
__v: 0,
|
|
1262
|
-
id: '65c346cb78352b58fcbbabe2',
|
|
1263
|
-
},
|
|
1264
|
-
Tier4: {
|
|
1265
|
-
_id: '65c346cb78352b58fcbbabe7',
|
|
1266
|
-
Value: 'Yes',
|
|
1267
|
-
__v: 0,
|
|
1268
|
-
id: '65c346cb78352b58fcbbabe7',
|
|
1269
|
-
},
|
|
1270
|
-
__v: 0,
|
|
1271
|
-
isActive: true,
|
|
1272
|
-
id: '65c25c0e0847926f6899f09d',
|
|
1273
|
-
},
|
|
1274
|
-
{
|
|
1275
|
-
_id: '65c25c0e0847926f6899f09e',
|
|
1276
|
-
Name: 'White Label for Reports',
|
|
1277
|
-
Tier1: {
|
|
1278
|
-
_id: '65c346cb78352b58fcbbabd5',
|
|
1279
|
-
Value: 'No',
|
|
1280
|
-
__v: 0,
|
|
1281
|
-
id: '65c346cb78352b58fcbbabd5',
|
|
1282
|
-
},
|
|
1283
|
-
Tier2: {
|
|
1284
|
-
_id: '65c346cb78352b58fcbbabdd',
|
|
1285
|
-
Value: 'No',
|
|
1286
|
-
__v: 0,
|
|
1287
|
-
id: '65c346cb78352b58fcbbabdd',
|
|
1288
|
-
},
|
|
1289
|
-
Tier3: {
|
|
1290
|
-
_id: '65c346cb78352b58fcbbabe1',
|
|
1291
|
-
Value: 'Yes',
|
|
1292
|
-
__v: 0,
|
|
1293
|
-
id: '65c346cb78352b58fcbbabe1',
|
|
1294
|
-
},
|
|
1295
|
-
Tier4: {
|
|
1296
|
-
_id: '65c346cb78352b58fcbbabe8',
|
|
1297
|
-
Value: 'Yes',
|
|
1298
|
-
__v: 0,
|
|
1299
|
-
id: '65c346cb78352b58fcbbabe8',
|
|
1300
|
-
},
|
|
1301
|
-
__v: 0,
|
|
1302
|
-
isActive: true,
|
|
1303
|
-
id: '65c25c0e0847926f6899f09e',
|
|
1304
|
-
},
|
|
1305
|
-
{
|
|
1306
|
-
_id: '65c25c0e0847926f6899f09f',
|
|
1307
|
-
Name: 'Custom NDA for Testers',
|
|
1308
|
-
Tier1: {
|
|
1309
|
-
_id: '65c346cb78352b58fcbbabd6',
|
|
1310
|
-
Value: 'No',
|
|
1311
|
-
__v: 0,
|
|
1312
|
-
id: '65c346cb78352b58fcbbabd6',
|
|
1313
|
-
},
|
|
1314
|
-
Tier2: {
|
|
1315
|
-
_id: '65c346cb78352b58fcbbabdb',
|
|
1316
|
-
Value: 'No',
|
|
1317
|
-
__v: 0,
|
|
1318
|
-
id: '65c346cb78352b58fcbbabdb',
|
|
1319
|
-
},
|
|
1320
|
-
Tier3: {
|
|
1321
|
-
_id: '65c346cb78352b58fcbbabe3',
|
|
1322
|
-
Value: 'Yes',
|
|
1323
|
-
__v: 0,
|
|
1324
|
-
id: '65c346cb78352b58fcbbabe3',
|
|
1325
|
-
},
|
|
1326
|
-
Tier4: {
|
|
1327
|
-
_id: '65c346cb78352b58fcbbabe9',
|
|
1328
|
-
Value: 'Yes',
|
|
1329
|
-
__v: 0,
|
|
1330
|
-
id: '65c346cb78352b58fcbbabe9',
|
|
1331
|
-
},
|
|
1332
|
-
__v: 0,
|
|
1333
|
-
isActive: true,
|
|
1334
|
-
id: '65c25c0e0847926f6899f09f',
|
|
1335
|
-
},
|
|
1336
|
-
],
|
|
1337
|
-
ReportingFeatures: [
|
|
1338
|
-
{
|
|
1339
|
-
_id: '65c25c3c0847926f6899f0d7',
|
|
1340
|
-
Name: 'Export to PDF / Slideshow',
|
|
1341
|
-
Tier1: {
|
|
1342
|
-
_id: '65c34baa78352b58fcbbaccd',
|
|
1343
|
-
Value: 'No',
|
|
1344
|
-
__v: 0,
|
|
1345
|
-
id: '65c34baa78352b58fcbbaccd',
|
|
1346
|
-
},
|
|
1347
|
-
Tier2: {
|
|
1348
|
-
_id: '65c34baa78352b58fcbbacd3',
|
|
1349
|
-
Value: 'Yes',
|
|
1350
|
-
__v: 0,
|
|
1351
|
-
id: '65c34baa78352b58fcbbacd3',
|
|
1352
|
-
},
|
|
1353
|
-
Tier3: {
|
|
1354
|
-
_id: '65c34baa78352b58fcbbacd9',
|
|
1355
|
-
Value: 'Yes',
|
|
1356
|
-
__v: 0,
|
|
1357
|
-
id: '65c34baa78352b58fcbbacd9',
|
|
1358
|
-
},
|
|
1359
|
-
Tier4: {
|
|
1360
|
-
_id: '65c34baa78352b58fcbbace0',
|
|
1361
|
-
Value: 'Yes',
|
|
1362
|
-
__v: 0,
|
|
1363
|
-
id: '65c34baa78352b58fcbbace0',
|
|
1364
|
-
},
|
|
1365
|
-
__v: 0,
|
|
1366
|
-
isActive: true,
|
|
1367
|
-
id: '65c25c3c0847926f6899f0d7',
|
|
1368
|
-
},
|
|
1369
|
-
{
|
|
1370
|
-
_id: '65c25c3c0847926f6899f0d8',
|
|
1371
|
-
Name: 'Export Transcript',
|
|
1372
|
-
Tier1: {
|
|
1373
|
-
_id: '65c34baa78352b58fcbbaccf',
|
|
1374
|
-
Value: 'No',
|
|
1375
|
-
__v: 0,
|
|
1376
|
-
id: '65c34baa78352b58fcbbaccf',
|
|
1377
|
-
},
|
|
1378
|
-
Tier2: {
|
|
1379
|
-
_id: '65c34baa78352b58fcbbacd5',
|
|
1380
|
-
Value: 'Yes',
|
|
1381
|
-
__v: 0,
|
|
1382
|
-
id: '65c34baa78352b58fcbbacd5',
|
|
1383
|
-
},
|
|
1384
|
-
Tier3: {
|
|
1385
|
-
_id: '65c34baa78352b58fcbbacdb',
|
|
1386
|
-
Value: 'Yes',
|
|
1387
|
-
__v: 0,
|
|
1388
|
-
id: '65c34baa78352b58fcbbacdb',
|
|
1389
|
-
},
|
|
1390
|
-
Tier4: {
|
|
1391
|
-
_id: '65c34baa78352b58fcbbace1',
|
|
1392
|
-
Value: 'Yes',
|
|
1393
|
-
__v: 0,
|
|
1394
|
-
id: '65c34baa78352b58fcbbace1',
|
|
1395
|
-
},
|
|
1396
|
-
__v: 0,
|
|
1397
|
-
isActive: true,
|
|
1398
|
-
id: '65c25c3c0847926f6899f0d8',
|
|
1399
|
-
},
|
|
1400
|
-
{
|
|
1401
|
-
_id: '65c25c3c0847926f6899f0d9',
|
|
1402
|
-
Name: 'Video Reel',
|
|
1403
|
-
Tier1: {
|
|
1404
|
-
_id: '65c34baa78352b58fcbbacce',
|
|
1405
|
-
Value: 'No',
|
|
1406
|
-
__v: 0,
|
|
1407
|
-
id: '65c34baa78352b58fcbbacce',
|
|
1408
|
-
},
|
|
1409
|
-
Tier2: {
|
|
1410
|
-
_id: '65c34baa78352b58fcbbacd4',
|
|
1411
|
-
Value: 'No',
|
|
1412
|
-
__v: 0,
|
|
1413
|
-
id: '65c34baa78352b58fcbbacd4',
|
|
1414
|
-
},
|
|
1415
|
-
Tier3: {
|
|
1416
|
-
_id: '65c34baa78352b58fcbbacda',
|
|
1417
|
-
Value: 'Yes',
|
|
1418
|
-
__v: 0,
|
|
1419
|
-
id: '65c34baa78352b58fcbbacda',
|
|
1420
|
-
},
|
|
1421
|
-
Tier4: {
|
|
1422
|
-
_id: '65c34baa78352b58fcbbacdf',
|
|
1423
|
-
Value: 'Yes',
|
|
1424
|
-
__v: 0,
|
|
1425
|
-
id: '65c34baa78352b58fcbbacdf',
|
|
1426
|
-
},
|
|
1427
|
-
__v: 0,
|
|
1428
|
-
isActive: true,
|
|
1429
|
-
id: '65c25c3c0847926f6899f0d9',
|
|
1430
|
-
},
|
|
1431
|
-
],
|
|
1432
|
-
SecurityFeatures: [
|
|
1433
|
-
{
|
|
1434
|
-
_id: '65c25d050847926f6899f153',
|
|
1435
|
-
Name: 'SSO Login',
|
|
1436
|
-
Tier1: {
|
|
1437
|
-
_id: '65c34cc278352b58fcbbaee0',
|
|
1438
|
-
Value: 'Yes',
|
|
1439
|
-
__v: 0,
|
|
1440
|
-
id: '65c34cc278352b58fcbbaee0',
|
|
1441
|
-
},
|
|
1442
|
-
Tier2: {
|
|
1443
|
-
_id: '65c34cc378352b58fcbbaeef',
|
|
1444
|
-
Value: 'Yes',
|
|
1445
|
-
__v: 0,
|
|
1446
|
-
id: '65c34cc378352b58fcbbaeef',
|
|
1447
|
-
},
|
|
1448
|
-
Tier3: {
|
|
1449
|
-
_id: '65c34cc378352b58fcbbaf00',
|
|
1450
|
-
Value: 'Yes',
|
|
1451
|
-
__v: 0,
|
|
1452
|
-
id: '65c34cc378352b58fcbbaf00',
|
|
1453
|
-
},
|
|
1454
|
-
Tier4: {
|
|
1455
|
-
_id: '65c34cc378352b58fcbbaf0f',
|
|
1456
|
-
Value: 'Yes',
|
|
1457
|
-
__v: 0,
|
|
1458
|
-
id: '65c34cc378352b58fcbbaf0f',
|
|
1459
|
-
},
|
|
1460
|
-
__v: 0,
|
|
1461
|
-
isActive: true,
|
|
1462
|
-
id: '65c25d050847926f6899f153',
|
|
1463
|
-
},
|
|
1464
|
-
{
|
|
1465
|
-
_id: '65c25d050847926f6899f154',
|
|
1466
|
-
Name: 'Recording Retention',
|
|
1467
|
-
Tier1: {
|
|
1468
|
-
_id: '65c34cc278352b58fcbbaedc',
|
|
1469
|
-
Value: '2',
|
|
1470
|
-
Sufix: 'weeks of retention',
|
|
1471
|
-
__v: 0,
|
|
1472
|
-
id: '65c34cc278352b58fcbbaedc',
|
|
1473
|
-
},
|
|
1474
|
-
Tier2: {
|
|
1475
|
-
_id: '65c34cc378352b58fcbbaeed',
|
|
1476
|
-
Value: '3',
|
|
1477
|
-
Sufix: 'years of retention',
|
|
1478
|
-
__v: 0,
|
|
1479
|
-
id: '65c34cc378352b58fcbbaeed',
|
|
1480
|
-
},
|
|
1481
|
-
Tier3: {
|
|
1482
|
-
_id: '65c34cc378352b58fcbbaefe',
|
|
1483
|
-
Sufix: 'years of retention',
|
|
1484
|
-
Value: '3',
|
|
1485
|
-
__v: 0,
|
|
1486
|
-
id: '65c34cc378352b58fcbbaefe',
|
|
1487
|
-
},
|
|
1488
|
-
Tier4: {
|
|
1489
|
-
_id: '65c34cc378352b58fcbbaf0d',
|
|
1490
|
-
Sufix: 'years of retention',
|
|
1491
|
-
Value: '3',
|
|
1492
|
-
__v: 0,
|
|
1493
|
-
id: '65c34cc378352b58fcbbaf0d',
|
|
1494
|
-
},
|
|
1495
|
-
__v: 0,
|
|
1496
|
-
isActive: true,
|
|
1497
|
-
id: '65c25d050847926f6899f154',
|
|
1498
|
-
},
|
|
1499
|
-
{
|
|
1500
|
-
_id: '65c25d050847926f6899f155',
|
|
1501
|
-
Name: 'Team Management Access',
|
|
1502
|
-
Tier1: {
|
|
1503
|
-
_id: '65c34cc278352b58fcbbaede',
|
|
1504
|
-
Value: 'No',
|
|
1505
|
-
__v: 0,
|
|
1506
|
-
id: '65c34cc278352b58fcbbaede',
|
|
1507
|
-
},
|
|
1508
|
-
Tier2: {
|
|
1509
|
-
_id: '65c34cc378352b58fcbbaef1',
|
|
1510
|
-
Value: 'Yes',
|
|
1511
|
-
__v: 0,
|
|
1512
|
-
id: '65c34cc378352b58fcbbaef1',
|
|
1513
|
-
},
|
|
1514
|
-
Tier3: {
|
|
1515
|
-
_id: '65c34cc378352b58fcbbaefd',
|
|
1516
|
-
Value: 'Yes',
|
|
1517
|
-
__v: 0,
|
|
1518
|
-
id: '65c34cc378352b58fcbbaefd',
|
|
1519
|
-
},
|
|
1520
|
-
Tier4: {
|
|
1521
|
-
_id: '65c34cc378352b58fcbbaf0b',
|
|
1522
|
-
Value: 'Yes',
|
|
1523
|
-
__v: 0,
|
|
1524
|
-
id: '65c34cc378352b58fcbbaf0b',
|
|
1525
|
-
},
|
|
1526
|
-
__v: 0,
|
|
1527
|
-
isActive: true,
|
|
1528
|
-
id: '65c25d050847926f6899f155',
|
|
1529
|
-
},
|
|
1530
|
-
{
|
|
1531
|
-
_id: '65c25d050847926f6899f156',
|
|
1532
|
-
Name: 'Granular Admin Role',
|
|
1533
|
-
Tier1: {
|
|
1534
|
-
_id: '65c34cc278352b58fcbbaedf',
|
|
1535
|
-
Value: 'No',
|
|
1536
|
-
__v: 0,
|
|
1537
|
-
id: '65c34cc278352b58fcbbaedf',
|
|
1538
|
-
},
|
|
1539
|
-
Tier2: {
|
|
1540
|
-
_id: '65c34cc378352b58fcbbaeec',
|
|
1541
|
-
Value: 'Yes',
|
|
1542
|
-
__v: 0,
|
|
1543
|
-
id: '65c34cc378352b58fcbbaeec',
|
|
1544
|
-
},
|
|
1545
|
-
Tier3: {
|
|
1546
|
-
_id: '65c34cc378352b58fcbbaeff',
|
|
1547
|
-
Value: 'Yes',
|
|
1548
|
-
__v: 0,
|
|
1549
|
-
id: '65c34cc378352b58fcbbaeff',
|
|
1550
|
-
},
|
|
1551
|
-
Tier4: {
|
|
1552
|
-
_id: '65c34cc378352b58fcbbaf11',
|
|
1553
|
-
Value: 'Yes',
|
|
1554
|
-
__v: 0,
|
|
1555
|
-
id: '65c34cc378352b58fcbbaf11',
|
|
1556
|
-
},
|
|
1557
|
-
__v: 0,
|
|
1558
|
-
isActive: true,
|
|
1559
|
-
id: '65c25d050847926f6899f156',
|
|
1560
|
-
},
|
|
1561
|
-
{
|
|
1562
|
-
_id: '65c25d050847926f6899f157',
|
|
1563
|
-
Name: 'Two Factor Authentication',
|
|
1564
|
-
Tier1: {
|
|
1565
|
-
_id: '65c34cc278352b58fcbbaee1',
|
|
1566
|
-
Value: 'No',
|
|
1567
|
-
__v: 0,
|
|
1568
|
-
id: '65c34cc278352b58fcbbaee1',
|
|
1569
|
-
},
|
|
1570
|
-
Tier2: {
|
|
1571
|
-
_id: '65c34cc378352b58fcbbaef0',
|
|
1572
|
-
Value: 'No',
|
|
1573
|
-
__v: 0,
|
|
1574
|
-
id: '65c34cc378352b58fcbbaef0',
|
|
1575
|
-
},
|
|
1576
|
-
Tier3: {
|
|
1577
|
-
_id: '65c34cc378352b58fcbbaf01',
|
|
1578
|
-
Value: 'No',
|
|
1579
|
-
__v: 0,
|
|
1580
|
-
id: '65c34cc378352b58fcbbaf01',
|
|
1581
|
-
},
|
|
1582
|
-
Tier4: {
|
|
1583
|
-
_id: '65c34cc378352b58fcbbaf10',
|
|
1584
|
-
Value: 'Yes',
|
|
1585
|
-
__v: 0,
|
|
1586
|
-
id: '65c34cc378352b58fcbbaf10',
|
|
1587
|
-
},
|
|
1588
|
-
__v: 0,
|
|
1589
|
-
isActive: true,
|
|
1590
|
-
id: '65c25d050847926f6899f157',
|
|
1591
|
-
},
|
|
1592
|
-
{
|
|
1593
|
-
_id: '65c25d050847926f6899f158',
|
|
1594
|
-
Name: 'User Anonymization',
|
|
1595
|
-
Tier1: {
|
|
1596
|
-
_id: '65c34cc278352b58fcbbaeda',
|
|
1597
|
-
Value: 'No',
|
|
1598
|
-
__v: 0,
|
|
1599
|
-
id: '65c34cc278352b58fcbbaeda',
|
|
1600
|
-
},
|
|
1601
|
-
Tier2: {
|
|
1602
|
-
_id: '65c34cc378352b58fcbbaeea',
|
|
1603
|
-
Value: 'No',
|
|
1604
|
-
__v: 0,
|
|
1605
|
-
id: '65c34cc378352b58fcbbaeea',
|
|
1606
|
-
},
|
|
1607
|
-
Tier3: {
|
|
1608
|
-
_id: '65c34cc378352b58fcbbaefb',
|
|
1609
|
-
Value: 'No',
|
|
1610
|
-
__v: 0,
|
|
1611
|
-
id: '65c34cc378352b58fcbbaefb',
|
|
1612
|
-
},
|
|
1613
|
-
Tier4: {
|
|
1614
|
-
_id: '65c34cc378352b58fcbbaf0a',
|
|
1615
|
-
Value: 'Yes',
|
|
1616
|
-
__v: 0,
|
|
1617
|
-
id: '65c34cc378352b58fcbbaf0a',
|
|
1618
|
-
},
|
|
1619
|
-
__v: 0,
|
|
1620
|
-
isActive: true,
|
|
1621
|
-
id: '65c25d050847926f6899f158',
|
|
1622
|
-
},
|
|
1623
|
-
{
|
|
1624
|
-
_id: '65c25d050847926f6899f159',
|
|
1625
|
-
Name: 'SAML-Based single sign-on',
|
|
1626
|
-
Tier1: {
|
|
1627
|
-
_id: '65c34cc278352b58fcbbaedb',
|
|
1628
|
-
Value: 'No',
|
|
1629
|
-
__v: 0,
|
|
1630
|
-
id: '65c34cc278352b58fcbbaedb',
|
|
1631
|
-
},
|
|
1632
|
-
Tier2: {
|
|
1633
|
-
_id: '65c34cc378352b58fcbbaeee',
|
|
1634
|
-
Value: 'No',
|
|
1635
|
-
__v: 0,
|
|
1636
|
-
id: '65c34cc378352b58fcbbaeee',
|
|
1637
|
-
},
|
|
1638
|
-
Tier3: {
|
|
1639
|
-
_id: '65c34cc378352b58fcbbaefc',
|
|
1640
|
-
Value: 'No',
|
|
1641
|
-
__v: 0,
|
|
1642
|
-
id: '65c34cc378352b58fcbbaefc',
|
|
1643
|
-
},
|
|
1644
|
-
Tier4: {
|
|
1645
|
-
_id: '65c34cc378352b58fcbbaf0e',
|
|
1646
|
-
Value: 'Yes',
|
|
1647
|
-
__v: 0,
|
|
1648
|
-
id: '65c34cc378352b58fcbbaf0e',
|
|
1649
|
-
},
|
|
1650
|
-
__v: 0,
|
|
1651
|
-
isActive: true,
|
|
1652
|
-
id: '65c25d050847926f6899f159',
|
|
1653
|
-
},
|
|
1654
|
-
{
|
|
1655
|
-
_id: '65c25d050847926f6899f15a',
|
|
1656
|
-
Name: 'Custom Security Review',
|
|
1657
|
-
Tier1: {
|
|
1658
|
-
_id: '65c34cc278352b58fcbbaedd',
|
|
1659
|
-
Value: 'No',
|
|
1660
|
-
__v: 0,
|
|
1661
|
-
id: '65c34cc278352b58fcbbaedd',
|
|
1662
|
-
},
|
|
1663
|
-
Tier2: {
|
|
1664
|
-
_id: '65c34cc378352b58fcbbaeeb',
|
|
1665
|
-
Value: 'No',
|
|
1666
|
-
__v: 0,
|
|
1667
|
-
id: '65c34cc378352b58fcbbaeeb',
|
|
1668
|
-
},
|
|
1669
|
-
Tier3: {
|
|
1670
|
-
_id: '65c34cc378352b58fcbbaefa',
|
|
1671
|
-
Value: 'No',
|
|
1672
|
-
__v: 0,
|
|
1673
|
-
id: '65c34cc378352b58fcbbaefa',
|
|
1674
|
-
},
|
|
1675
|
-
Tier4: {
|
|
1676
|
-
_id: '65c34cc378352b58fcbbaf0c',
|
|
1677
|
-
Value: 'Yes',
|
|
1678
|
-
__v: 0,
|
|
1679
|
-
id: '65c34cc378352b58fcbbaf0c',
|
|
1680
|
-
},
|
|
1681
|
-
__v: 0,
|
|
1682
|
-
isActive: true,
|
|
1683
|
-
id: '65c25d050847926f6899f15a',
|
|
1684
|
-
},
|
|
1685
|
-
],
|
|
1686
|
-
SupportFeatures: [
|
|
1687
|
-
{
|
|
1688
|
-
_id: '65c25d480847926f6899f1a6',
|
|
1689
|
-
Name: '24/7 Ressource Center',
|
|
1690
|
-
Tier1: {
|
|
1691
|
-
_id: '65c34f9378352b58fcbbb03d',
|
|
1692
|
-
Value: 'Yes',
|
|
1693
|
-
__v: 0,
|
|
1694
|
-
id: '65c34f9378352b58fcbbb03d',
|
|
1695
|
-
},
|
|
1696
|
-
Tier2: {
|
|
1697
|
-
_id: '65c34f9378352b58fcbbb047',
|
|
1698
|
-
Value: 'Yes',
|
|
1699
|
-
__v: 0,
|
|
1700
|
-
id: '65c34f9378352b58fcbbb047',
|
|
1701
|
-
},
|
|
1702
|
-
Tier3: {
|
|
1703
|
-
_id: '65c34f9378352b58fcbbb051',
|
|
1704
|
-
Value: 'Yes',
|
|
1705
|
-
__v: 0,
|
|
1706
|
-
id: '65c34f9378352b58fcbbb051',
|
|
1707
|
-
},
|
|
1708
|
-
Tier4: {
|
|
1709
|
-
_id: '65c34f9378352b58fcbbb05b',
|
|
1710
|
-
Value: 'Yes',
|
|
1711
|
-
__v: 0,
|
|
1712
|
-
id: '65c34f9378352b58fcbbb05b',
|
|
1713
|
-
},
|
|
1714
|
-
__v: 0,
|
|
1715
|
-
isActive: true,
|
|
1716
|
-
id: '65c25d480847926f6899f1a6',
|
|
1717
|
-
},
|
|
1718
|
-
{
|
|
1719
|
-
_id: '65c25d480847926f6899f1a7',
|
|
1720
|
-
Name: 'Mail Support',
|
|
1721
|
-
Tier1: {
|
|
1722
|
-
_id: '65c34f9378352b58fcbbb03c',
|
|
1723
|
-
Value: 'No',
|
|
1724
|
-
__v: 0,
|
|
1725
|
-
id: '65c34f9378352b58fcbbb03c',
|
|
1726
|
-
},
|
|
1727
|
-
Tier2: {
|
|
1728
|
-
_id: '65c34f9378352b58fcbbb046',
|
|
1729
|
-
Value: 'Yes',
|
|
1730
|
-
__v: 0,
|
|
1731
|
-
id: '65c34f9378352b58fcbbb046',
|
|
1732
|
-
},
|
|
1733
|
-
Tier3: {
|
|
1734
|
-
_id: '65c34f9378352b58fcbbb050',
|
|
1735
|
-
Value: 'Yes',
|
|
1736
|
-
__v: 0,
|
|
1737
|
-
id: '65c34f9378352b58fcbbb050',
|
|
1738
|
-
},
|
|
1739
|
-
Tier4: {
|
|
1740
|
-
_id: '65c34f9378352b58fcbbb05a',
|
|
1741
|
-
Value: 'Yes',
|
|
1742
|
-
__v: 0,
|
|
1743
|
-
id: '65c34f9378352b58fcbbb05a',
|
|
1744
|
-
},
|
|
1745
|
-
__v: 0,
|
|
1746
|
-
isActive: true,
|
|
1747
|
-
id: '65c25d480847926f6899f1a7',
|
|
1748
|
-
},
|
|
1749
|
-
{
|
|
1750
|
-
_id: '65c25d480847926f6899f1a8',
|
|
1751
|
-
Name: 'Customer Success Manager',
|
|
1752
|
-
Tier1: {
|
|
1753
|
-
_id: '65c34f9378352b58fcbbb03b',
|
|
1754
|
-
Value: 'No',
|
|
1755
|
-
__v: 0,
|
|
1756
|
-
id: '65c34f9378352b58fcbbb03b',
|
|
1757
|
-
},
|
|
1758
|
-
Tier2: {
|
|
1759
|
-
_id: '65c34f9378352b58fcbbb045',
|
|
1760
|
-
Value: 'Yes',
|
|
1761
|
-
__v: 0,
|
|
1762
|
-
id: '65c34f9378352b58fcbbb045',
|
|
1763
|
-
},
|
|
1764
|
-
Tier3: {
|
|
1765
|
-
_id: '65c34f9378352b58fcbbb04f',
|
|
1766
|
-
Value: 'Yes',
|
|
1767
|
-
__v: 0,
|
|
1768
|
-
id: '65c34f9378352b58fcbbb04f',
|
|
1769
|
-
},
|
|
1770
|
-
Tier4: {
|
|
1771
|
-
_id: '65c34f9378352b58fcbbb059',
|
|
1772
|
-
Value: 'Yes',
|
|
1773
|
-
__v: 0,
|
|
1774
|
-
id: '65c34f9378352b58fcbbb059',
|
|
1775
|
-
},
|
|
1776
|
-
__v: 0,
|
|
1777
|
-
isActive: true,
|
|
1778
|
-
id: '65c25d480847926f6899f1a8',
|
|
1779
|
-
},
|
|
1780
|
-
{
|
|
1781
|
-
_id: '65c25d480847926f6899f1a9',
|
|
1782
|
-
Name: 'Onboarding & Corporate Services',
|
|
1783
|
-
Tier1: {
|
|
1784
|
-
_id: '65c34f9378352b58fcbbb03e',
|
|
1785
|
-
Value: 'No',
|
|
1786
|
-
Sufix: '(Onboarding videos only)',
|
|
1787
|
-
__v: 0,
|
|
1788
|
-
id: '65c34f9378352b58fcbbb03e',
|
|
1789
|
-
},
|
|
1790
|
-
Tier2: {
|
|
1791
|
-
_id: '65c34f9378352b58fcbbb049',
|
|
1792
|
-
Value: 'Yes',
|
|
1793
|
-
__v: 0,
|
|
1794
|
-
id: '65c34f9378352b58fcbbb049',
|
|
1795
|
-
},
|
|
1796
|
-
Tier3: {
|
|
1797
|
-
_id: '65c34f9378352b58fcbbb052',
|
|
1798
|
-
Value: 'Yes',
|
|
1799
|
-
__v: 0,
|
|
1800
|
-
id: '65c34f9378352b58fcbbb052',
|
|
1801
|
-
},
|
|
1802
|
-
Tier4: {
|
|
1803
|
-
_id: '65c34f9378352b58fcbbb05c',
|
|
1804
|
-
Value: 'Yes',
|
|
1805
|
-
__v: 0,
|
|
1806
|
-
id: '65c34f9378352b58fcbbb05c',
|
|
1807
|
-
},
|
|
1808
|
-
__v: 0,
|
|
1809
|
-
isActive: true,
|
|
1810
|
-
id: '65c25d480847926f6899f1a9',
|
|
1811
|
-
},
|
|
1812
|
-
{
|
|
1813
|
-
_id: '65c25d480847926f6899f1aa',
|
|
1814
|
-
Name: 'Priority Support',
|
|
1815
|
-
Tier1: {
|
|
1816
|
-
_id: '65c34f9378352b58fcbbb03f',
|
|
1817
|
-
Value: 'No',
|
|
1818
|
-
__v: 0,
|
|
1819
|
-
id: '65c34f9378352b58fcbbb03f',
|
|
1820
|
-
},
|
|
1821
|
-
Tier2: {
|
|
1822
|
-
_id: '65c34f9378352b58fcbbb048',
|
|
1823
|
-
Value: 'No',
|
|
1824
|
-
__v: 0,
|
|
1825
|
-
id: '65c34f9378352b58fcbbb048',
|
|
1826
|
-
},
|
|
1827
|
-
Tier3: {
|
|
1828
|
-
_id: '65c34f9378352b58fcbbb053',
|
|
1829
|
-
Value: 'No',
|
|
1830
|
-
__v: 0,
|
|
1831
|
-
id: '65c34f9378352b58fcbbb053',
|
|
1832
|
-
},
|
|
1833
|
-
Tier4: {
|
|
1834
|
-
_id: '65c34f9378352b58fcbbb05d',
|
|
1835
|
-
Value: 'Yes',
|
|
1836
|
-
__v: 0,
|
|
1837
|
-
id: '65c34f9378352b58fcbbb05d',
|
|
1838
|
-
},
|
|
1839
|
-
__v: 0,
|
|
1840
|
-
isActive: true,
|
|
1841
|
-
id: '65c25d480847926f6899f1aa',
|
|
1842
|
-
},
|
|
1843
|
-
],
|
|
1844
|
-
AdvicingFeatures: [
|
|
1845
|
-
{
|
|
1846
|
-
_id: '65c25da40847926f6899f1f8',
|
|
1847
|
-
Name: 'Customer Experience Manager',
|
|
1848
|
-
Tier1: {
|
|
1849
|
-
_id: '65c34fd578352b58fcbbb195',
|
|
1850
|
-
Value: 'No',
|
|
1851
|
-
__v: 0,
|
|
1852
|
-
id: '65c34fd578352b58fcbbb195',
|
|
1853
|
-
},
|
|
1854
|
-
Tier2: {
|
|
1855
|
-
_id: '65c34fd578352b58fcbbb197',
|
|
1856
|
-
Value: 'No',
|
|
1857
|
-
__v: 0,
|
|
1858
|
-
id: '65c34fd578352b58fcbbb197',
|
|
1859
|
-
},
|
|
1860
|
-
Tier3: {
|
|
1861
|
-
_id: '65c34fd578352b58fcbbb199',
|
|
1862
|
-
Value: 'No',
|
|
1863
|
-
__v: 0,
|
|
1864
|
-
id: '65c34fd578352b58fcbbb199',
|
|
1865
|
-
},
|
|
1866
|
-
Tier4: {
|
|
1867
|
-
_id: '65c34fd578352b58fcbbb19b',
|
|
1868
|
-
Prefix: 'Up to',
|
|
1869
|
-
Value: '120 days of Work',
|
|
1870
|
-
__v: 0,
|
|
1871
|
-
id: '65c34fd578352b58fcbbb19b',
|
|
1872
|
-
},
|
|
1873
|
-
__v: 0,
|
|
1874
|
-
isActive: true,
|
|
1875
|
-
id: '65c25da40847926f6899f1f8',
|
|
1876
|
-
},
|
|
1877
|
-
],
|
|
1878
|
-
ExtraFeatures: [
|
|
1879
|
-
{
|
|
1880
|
-
_id: '65c25da40847926f6899f1fa',
|
|
1881
|
-
Name: 'Early access to BETA functionalities',
|
|
1882
|
-
Tier1: {
|
|
1883
|
-
_id: '65c34fd678352b58fcbbb19e',
|
|
1884
|
-
Value: 'No',
|
|
1885
|
-
__v: 0,
|
|
1886
|
-
id: '65c34fd678352b58fcbbb19e',
|
|
1887
|
-
},
|
|
1888
|
-
Tier2: {
|
|
1889
|
-
_id: '65c34fd678352b58fcbbb1a0',
|
|
1890
|
-
Value: 'No',
|
|
1891
|
-
__v: 0,
|
|
1892
|
-
id: '65c34fd678352b58fcbbb1a0',
|
|
1893
|
-
},
|
|
1894
|
-
Tier3: {
|
|
1895
|
-
_id: '65c34fd678352b58fcbbb1a2',
|
|
1896
|
-
Value: 'No',
|
|
1897
|
-
__v: 0,
|
|
1898
|
-
id: '65c34fd678352b58fcbbb1a2',
|
|
1899
|
-
},
|
|
1900
|
-
Tier4: {
|
|
1901
|
-
_id: '65c34fd678352b58fcbbb1a4',
|
|
1902
|
-
Value: 'Yes',
|
|
1903
|
-
__v: 0,
|
|
1904
|
-
id: '65c34fd678352b58fcbbb1a4',
|
|
1905
|
-
},
|
|
1906
|
-
__v: 0,
|
|
1907
|
-
isActive: true,
|
|
1908
|
-
id: '65c25da40847926f6899f1fa',
|
|
1909
|
-
},
|
|
1910
|
-
],
|
|
1911
|
-
SharingFeatures: [
|
|
1912
|
-
{
|
|
1913
|
-
_id: '65c25ca10847926f6899f114',
|
|
1914
|
-
Name: 'Collaborative Reporting Tool',
|
|
1915
|
-
Tier1: {
|
|
1916
|
-
_id: '65c34c0378352b58fcbbade1',
|
|
1917
|
-
Value: 'Yes',
|
|
1918
|
-
__v: 0,
|
|
1919
|
-
id: '65c34c0378352b58fcbbade1',
|
|
1920
|
-
},
|
|
1921
|
-
Tier2: {
|
|
1922
|
-
_id: '65c34c0378352b58fcbbadea',
|
|
1923
|
-
Value: 'Yes',
|
|
1924
|
-
__v: 0,
|
|
1925
|
-
id: '65c34c0378352b58fcbbadea',
|
|
1926
|
-
},
|
|
1927
|
-
Tier3: {
|
|
1928
|
-
_id: '65c34c0478352b58fcbbadf2',
|
|
1929
|
-
Value: 'Yes',
|
|
1930
|
-
__v: 0,
|
|
1931
|
-
id: '65c34c0478352b58fcbbadf2',
|
|
1932
|
-
},
|
|
1933
|
-
Tier4: {
|
|
1934
|
-
_id: '65c34c0478352b58fcbbadfb',
|
|
1935
|
-
Value: 'Yes',
|
|
1936
|
-
__v: 0,
|
|
1937
|
-
id: '65c34c0478352b58fcbbadfb',
|
|
1938
|
-
},
|
|
1939
|
-
__v: 0,
|
|
1940
|
-
isActive: true,
|
|
1941
|
-
id: '65c25ca10847926f6899f114',
|
|
1942
|
-
},
|
|
1943
|
-
{
|
|
1944
|
-
_id: '65c25ca10847926f6899f115',
|
|
1945
|
-
Name: 'Report accessing via secure link',
|
|
1946
|
-
Tier1: {
|
|
1947
|
-
_id: '65c34c0378352b58fcbbade0',
|
|
1948
|
-
Value: 'No',
|
|
1949
|
-
__v: 0,
|
|
1950
|
-
id: '65c34c0378352b58fcbbade0',
|
|
1951
|
-
},
|
|
1952
|
-
Tier2: {
|
|
1953
|
-
_id: '65c34c0378352b58fcbbade8',
|
|
1954
|
-
Value: 'Yes',
|
|
1955
|
-
__v: 0,
|
|
1956
|
-
id: '65c34c0378352b58fcbbade8',
|
|
1957
|
-
},
|
|
1958
|
-
Tier3: {
|
|
1959
|
-
_id: '65c34c0478352b58fcbbadf3',
|
|
1960
|
-
Value: 'Yes',
|
|
1961
|
-
__v: 0,
|
|
1962
|
-
id: '65c34c0478352b58fcbbadf3',
|
|
1963
|
-
},
|
|
1964
|
-
Tier4: {
|
|
1965
|
-
_id: '65c34c0478352b58fcbbadfa',
|
|
1966
|
-
Value: 'Yes',
|
|
1967
|
-
__v: 0,
|
|
1968
|
-
id: '65c34c0478352b58fcbbadfa',
|
|
1969
|
-
},
|
|
1970
|
-
__v: 0,
|
|
1971
|
-
isActive: true,
|
|
1972
|
-
id: '65c25ca10847926f6899f115',
|
|
1973
|
-
},
|
|
1974
|
-
{
|
|
1975
|
-
_id: '65c25ca10847926f6899f116',
|
|
1976
|
-
Name: 'Mention team members @',
|
|
1977
|
-
Tier1: {
|
|
1978
|
-
_id: '65c34c0378352b58fcbbade2',
|
|
1979
|
-
Value: 'No',
|
|
1980
|
-
__v: 0,
|
|
1981
|
-
id: '65c34c0378352b58fcbbade2',
|
|
1982
|
-
},
|
|
1983
|
-
Tier2: {
|
|
1984
|
-
_id: '65c34c0378352b58fcbbade9',
|
|
1985
|
-
Value: 'Yes',
|
|
1986
|
-
__v: 0,
|
|
1987
|
-
id: '65c34c0378352b58fcbbade9',
|
|
1988
|
-
},
|
|
1989
|
-
Tier3: {
|
|
1990
|
-
_id: '65c34c0478352b58fcbbadf0',
|
|
1991
|
-
Value: 'Yes',
|
|
1992
|
-
__v: 0,
|
|
1993
|
-
id: '65c34c0478352b58fcbbadf0',
|
|
1994
|
-
},
|
|
1995
|
-
Tier4: {
|
|
1996
|
-
_id: '65c34c0478352b58fcbbadf8',
|
|
1997
|
-
Value: 'Yes',
|
|
1998
|
-
__v: 0,
|
|
1999
|
-
id: '65c34c0478352b58fcbbadf8',
|
|
2000
|
-
},
|
|
2001
|
-
__v: 0,
|
|
2002
|
-
isActive: true,
|
|
2003
|
-
id: '65c25ca10847926f6899f116',
|
|
2004
|
-
},
|
|
2005
|
-
{
|
|
2006
|
-
_id: '65c25ca10847926f6899f117',
|
|
2007
|
-
Name: 'Research Repository',
|
|
2008
|
-
Tier1: {
|
|
2009
|
-
_id: '65c34c0378352b58fcbbade3',
|
|
2010
|
-
Value: 'No',
|
|
2011
|
-
__v: 0,
|
|
2012
|
-
id: '65c34c0378352b58fcbbade3',
|
|
2013
|
-
},
|
|
2014
|
-
Tier2: {
|
|
2015
|
-
_id: '65c34c0378352b58fcbbadeb',
|
|
2016
|
-
Value: 'Yes',
|
|
2017
|
-
__v: 0,
|
|
2018
|
-
id: '65c34c0378352b58fcbbadeb',
|
|
2019
|
-
},
|
|
2020
|
-
Tier3: {
|
|
2021
|
-
_id: '65c34c0478352b58fcbbadf1',
|
|
2022
|
-
Value: 'Yes',
|
|
2023
|
-
__v: 0,
|
|
2024
|
-
id: '65c34c0478352b58fcbbadf1',
|
|
2025
|
-
},
|
|
2026
|
-
Tier4: {
|
|
2027
|
-
_id: '65c34c0478352b58fcbbadf9',
|
|
2028
|
-
Value: 'Yes',
|
|
2029
|
-
__v: 0,
|
|
2030
|
-
id: '65c34c0478352b58fcbbadf9',
|
|
2031
|
-
},
|
|
2032
|
-
__v: 0,
|
|
2033
|
-
isActive: true,
|
|
2034
|
-
id: '65c25ca10847926f6899f117',
|
|
2035
|
-
},
|
|
2036
|
-
],
|
|
2037
|
-
createdAt: '2024-02-06T14:57:54.013Z',
|
|
2038
|
-
updatedAt: '2024-02-13T21:29:32.541Z',
|
|
2039
|
-
__v: 2,
|
|
2040
|
-
SectionsTitleMapping: [
|
|
2041
|
-
{
|
|
2042
|
-
_id: '65cbdf3b94cd4767fc2444d7',
|
|
2043
|
-
Id: 'CoreFeatures',
|
|
2044
|
-
Title: 'Core Features',
|
|
2045
|
-
__v: 0,
|
|
2046
|
-
id: '65cbdf3b94cd4767fc2444d7',
|
|
2047
|
-
},
|
|
2048
|
-
{
|
|
2049
|
-
_id: '65cbdf3b94cd4767fc2444d8',
|
|
2050
|
-
Id: 'AnalysisFeatures',
|
|
2051
|
-
Title: 'Analysis Features',
|
|
2052
|
-
__v: 0,
|
|
2053
|
-
id: '65cbdf3b94cd4767fc2444d8',
|
|
2054
|
-
},
|
|
2055
|
-
{
|
|
2056
|
-
_id: '65cbdf3b94cd4767fc2444d9',
|
|
2057
|
-
Id: 'AIFeatures',
|
|
2058
|
-
Title: 'AI Features',
|
|
2059
|
-
__v: 0,
|
|
2060
|
-
id: '65cbdf3b94cd4767fc2444d9',
|
|
2061
|
-
},
|
|
2062
|
-
{
|
|
2063
|
-
_id: '65cbdf3b94cd4767fc2444da',
|
|
2064
|
-
Id: 'UserPanelFeatures',
|
|
2065
|
-
Title: 'User Panel',
|
|
2066
|
-
__v: 0,
|
|
2067
|
-
id: '65cbdf3b94cd4767fc2444da',
|
|
2068
|
-
},
|
|
2069
|
-
{
|
|
2070
|
-
_id: '65cbdf3b94cd4767fc2444db',
|
|
2071
|
-
Id: 'CustomizationFeatures',
|
|
2072
|
-
Title: 'Customization',
|
|
2073
|
-
__v: 0,
|
|
2074
|
-
id: '65cbdf3b94cd4767fc2444db',
|
|
2075
|
-
},
|
|
2076
|
-
{
|
|
2077
|
-
_id: '65cbdf3b94cd4767fc2444dc',
|
|
2078
|
-
Id: 'ReportingFeatures',
|
|
2079
|
-
Title: 'Reporting',
|
|
2080
|
-
__v: 0,
|
|
2081
|
-
id: '65cbdf3b94cd4767fc2444dc',
|
|
2082
|
-
},
|
|
2083
|
-
{
|
|
2084
|
-
_id: '65cbdf3b94cd4767fc2444dd',
|
|
2085
|
-
Id: 'SharingFeatures',
|
|
2086
|
-
Title: 'Sharing',
|
|
2087
|
-
__v: 0,
|
|
2088
|
-
id: '65cbdf3b94cd4767fc2444dd',
|
|
2089
|
-
},
|
|
2090
|
-
{
|
|
2091
|
-
_id: '65cbdf3b94cd4767fc2444de',
|
|
2092
|
-
Id: 'SecurityFeatures',
|
|
2093
|
-
Title: 'Security',
|
|
2094
|
-
__v: 0,
|
|
2095
|
-
id: '65cbdf3b94cd4767fc2444de',
|
|
2096
|
-
},
|
|
2097
|
-
{
|
|
2098
|
-
_id: '65cbdf3b94cd4767fc2444df',
|
|
2099
|
-
Id: 'SupportFeatures',
|
|
2100
|
-
Title: 'Support',
|
|
2101
|
-
__v: 0,
|
|
2102
|
-
id: '65cbdf3b94cd4767fc2444df',
|
|
2103
|
-
},
|
|
2104
|
-
{
|
|
2105
|
-
_id: '65cbdf3b94cd4767fc2444e0',
|
|
2106
|
-
Id: 'AdvicingFeatures',
|
|
2107
|
-
Title: 'Conseil',
|
|
2108
|
-
__v: 0,
|
|
2109
|
-
id: '65cbdf3b94cd4767fc2444e0',
|
|
2110
|
-
},
|
|
2111
|
-
{
|
|
2112
|
-
_id: '65cbdf3b94cd4767fc2444e1',
|
|
2113
|
-
Id: 'ExtraFeatures',
|
|
2114
|
-
Title: 'Extras',
|
|
2115
|
-
__v: 0,
|
|
2116
|
-
id: '65cbdf3b94cd4767fc2444e1',
|
|
2117
|
-
},
|
|
2118
|
-
],
|
|
2119
|
-
id: '65c248f2a4111f0c64a2bf98',
|
|
2120
|
-
};
|
|
1
|
+
export const pricingCardTexts = {
|
|
2
|
+
//General wording from MS-Pricing
|
|
3
|
+
_id: '65c8cf6df152189ac0372eee',
|
|
4
|
+
Month: 'month',
|
|
5
|
+
ForLife: 'for life',
|
|
6
|
+
GetStartedForFree: 'Get started for free',
|
|
7
|
+
GetStarted: 'Get Started',
|
|
8
|
+
Includes: 'Includes:',
|
|
9
|
+
Interviews: 'interviews',
|
|
10
|
+
UpTo: 'Up to',
|
|
11
|
+
EverythingIn: 'Everything in',
|
|
12
|
+
LearnMore: 'Learn More',
|
|
13
|
+
Year: 'year',
|
|
14
|
+
ContactUs: 'Contact Us',
|
|
15
|
+
LetsTalk: 'Let’s talk',
|
|
16
|
+
Currency: '$',
|
|
17
|
+
FeaturedSectionTitleTooltip: 'Depending on the plan',
|
|
18
|
+
ForLife: 'for life',
|
|
19
|
+
__v: 0,
|
|
20
|
+
id: '65c8cf6df152189ac0372eee',
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export const featuresTableData = {
|
|
24
|
+
localizations: [],
|
|
25
|
+
_id: '65c248f2a4111f0c64a2bf98',
|
|
26
|
+
published_at: '2024-02-07T09:39:41.454Z',
|
|
27
|
+
locale: 'en',
|
|
28
|
+
PricingCards: [
|
|
29
|
+
{
|
|
30
|
+
_id: '65c248f2a4111f0c64a2bf99',
|
|
31
|
+
Name: 'Basic',
|
|
32
|
+
Description:
|
|
33
|
+
'Ideal for small businesses that want to speed up their user research.\n',
|
|
34
|
+
isActive: true,
|
|
35
|
+
MonthlyPrice: 0,
|
|
36
|
+
YearlyPrice: 0,
|
|
37
|
+
isHighlighted: false,
|
|
38
|
+
__v: 0,
|
|
39
|
+
HighlightText: '',
|
|
40
|
+
id: '65c248f2a4111f0c64a2bf99',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
_id: '65c248f2a4111f0c64a2bf9a',
|
|
44
|
+
Name: 'Plus',
|
|
45
|
+
Description:
|
|
46
|
+
'Perfect for organizations looking to foster a culture centered around design and research.\n',
|
|
47
|
+
__v: 0,
|
|
48
|
+
MonthlyPrice: 1,
|
|
49
|
+
YearlyPrice: 1,
|
|
50
|
+
id: '65c248f2a4111f0c64a2bf9a',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
_id: '65c248f2a4111f0c64a2bf9b',
|
|
54
|
+
Name: 'Business',
|
|
55
|
+
Description:
|
|
56
|
+
'Suitable for companies with multiple teams seeking improved collaboration and synergy.',
|
|
57
|
+
__v: 0,
|
|
58
|
+
MonthlyPrice: 2,
|
|
59
|
+
YearlyPrice: 2,
|
|
60
|
+
id: '65c248f2a4111f0c64a2bf9b',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
_id: '65c248f2a4111f0c64a2bf9c',
|
|
64
|
+
Name: 'Enterprise Level',
|
|
65
|
+
Description:
|
|
66
|
+
'Suitable for companies with multiple teams seeking improved collaboration and synergy.',
|
|
67
|
+
__v: 0,
|
|
68
|
+
MonthlyPrice: null,
|
|
69
|
+
id: '65c248f2a4111f0c64a2bf9c',
|
|
70
|
+
},
|
|
71
|
+
],
|
|
72
|
+
CoreFeatures: [
|
|
73
|
+
{
|
|
74
|
+
_id: '65c248f2a4111f0c64a2bfa1',
|
|
75
|
+
Tier1: {
|
|
76
|
+
_id: '65c24bafa4111f0c64a2bfb8',
|
|
77
|
+
Value: 'Yes',
|
|
78
|
+
__v: 0,
|
|
79
|
+
isFeatured: true,
|
|
80
|
+
FeatureText: 'This is a feature text',
|
|
81
|
+
id: '65c24bafa4111f0c64a2bfb8',
|
|
82
|
+
},
|
|
83
|
+
Tier2: {
|
|
84
|
+
_id: '65c24bafa4111f0c64a2bfba',
|
|
85
|
+
Value: 'Yes',
|
|
86
|
+
__v: 0,
|
|
87
|
+
id: '65c24bafa4111f0c64a2bfba',
|
|
88
|
+
},
|
|
89
|
+
Tier3: {
|
|
90
|
+
_id: '65c24bafa4111f0c64a2bfbc',
|
|
91
|
+
Value: 'Yes',
|
|
92
|
+
__v: 0,
|
|
93
|
+
id: '65c24bafa4111f0c64a2bfbc',
|
|
94
|
+
},
|
|
95
|
+
Tier4: {
|
|
96
|
+
_id: '65c24bafa4111f0c64a2bfbe',
|
|
97
|
+
Value: 'Yes',
|
|
98
|
+
__v: 0,
|
|
99
|
+
id: '65c24bafa4111f0c64a2bfbe',
|
|
100
|
+
},
|
|
101
|
+
__v: 0,
|
|
102
|
+
Name: 'Remote Testing',
|
|
103
|
+
isActive: true,
|
|
104
|
+
TooltipDescription: 'LoremIpsum',
|
|
105
|
+
id: '65c248f2a4111f0c64a2bfa1',
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
_id: '65c24bafa4111f0c64a2bfa7',
|
|
109
|
+
Name: 'Meta-Analysis',
|
|
110
|
+
Tier1: {
|
|
111
|
+
_id: '65c3409c78352b58fcbba7d5',
|
|
112
|
+
Value: 'Yes',
|
|
113
|
+
__v: 0,
|
|
114
|
+
id: '65c3409c78352b58fcbba7d5',
|
|
115
|
+
},
|
|
116
|
+
Tier2: {
|
|
117
|
+
_id: '65c3409d78352b58fcbba7f7',
|
|
118
|
+
Value: 'Yes',
|
|
119
|
+
__v: 0,
|
|
120
|
+
id: '65c3409d78352b58fcbba7f7',
|
|
121
|
+
},
|
|
122
|
+
Tier3: {
|
|
123
|
+
_id: '65c3409d78352b58fcbba81a',
|
|
124
|
+
Value: 'Yes',
|
|
125
|
+
__v: 0,
|
|
126
|
+
id: '65c3409d78352b58fcbba81a',
|
|
127
|
+
},
|
|
128
|
+
Tier4: {
|
|
129
|
+
_id: '65c3409d78352b58fcbba83c',
|
|
130
|
+
Value: 'Yes',
|
|
131
|
+
__v: 0,
|
|
132
|
+
id: '65c3409d78352b58fcbba83c',
|
|
133
|
+
},
|
|
134
|
+
__v: 0,
|
|
135
|
+
isActive: true,
|
|
136
|
+
id: '65c24bafa4111f0c64a2bfa7',
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
_id: '65c24bafa4111f0c64a2bfa8',
|
|
140
|
+
Name: 'Emotional HeatMaps',
|
|
141
|
+
Tier1: {
|
|
142
|
+
_id: '65c3409c78352b58fcbba7d7',
|
|
143
|
+
Value: 'Yes',
|
|
144
|
+
__v: 0,
|
|
145
|
+
id: '65c3409c78352b58fcbba7d7',
|
|
146
|
+
},
|
|
147
|
+
Tier2: {
|
|
148
|
+
_id: '65c3409d78352b58fcbba7f9',
|
|
149
|
+
Value: 'Yes',
|
|
150
|
+
__v: 0,
|
|
151
|
+
id: '65c3409d78352b58fcbba7f9',
|
|
152
|
+
},
|
|
153
|
+
Tier3: {
|
|
154
|
+
_id: '65c3409d78352b58fcbba81c',
|
|
155
|
+
Value: 'Yes',
|
|
156
|
+
__v: 0,
|
|
157
|
+
id: '65c3409d78352b58fcbba81c',
|
|
158
|
+
},
|
|
159
|
+
Tier4: {
|
|
160
|
+
_id: '65c3409d78352b58fcbba83f',
|
|
161
|
+
Value: 'Yes',
|
|
162
|
+
__v: 0,
|
|
163
|
+
id: '65c3409d78352b58fcbba83f',
|
|
164
|
+
},
|
|
165
|
+
__v: 0,
|
|
166
|
+
isActive: true,
|
|
167
|
+
id: '65c24bafa4111f0c64a2bfa8',
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
_id: '65c24bafa4111f0c64a2bfa9',
|
|
171
|
+
Name: 'Aspect-Based Sentiment Analysis',
|
|
172
|
+
Tier1: {
|
|
173
|
+
_id: '65c3409c78352b58fcbba7d6',
|
|
174
|
+
Value: 'Yes',
|
|
175
|
+
__v: 0,
|
|
176
|
+
id: '65c3409c78352b58fcbba7d6',
|
|
177
|
+
},
|
|
178
|
+
Tier2: {
|
|
179
|
+
_id: '65c3409d78352b58fcbba7f8',
|
|
180
|
+
Value: 'Yes',
|
|
181
|
+
__v: 0,
|
|
182
|
+
id: '65c3409d78352b58fcbba7f8',
|
|
183
|
+
},
|
|
184
|
+
Tier3: {
|
|
185
|
+
_id: '65c3409d78352b58fcbba81b',
|
|
186
|
+
Value: 'Yes',
|
|
187
|
+
__v: 0,
|
|
188
|
+
id: '65c3409d78352b58fcbba81b',
|
|
189
|
+
},
|
|
190
|
+
Tier4: {
|
|
191
|
+
_id: '65c3409d78352b58fcbba83e',
|
|
192
|
+
Value: 'Yes',
|
|
193
|
+
__v: 0,
|
|
194
|
+
id: '65c3409d78352b58fcbba83e',
|
|
195
|
+
},
|
|
196
|
+
__v: 0,
|
|
197
|
+
isActive: true,
|
|
198
|
+
id: '65c24bafa4111f0c64a2bfa9',
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
_id: '65c24bafa4111f0c64a2bfaa',
|
|
202
|
+
Name: 'Voice Transcription',
|
|
203
|
+
Tier1: {
|
|
204
|
+
_id: '65c3409c78352b58fcbba7d8',
|
|
205
|
+
Value: 'Yes',
|
|
206
|
+
__v: 0,
|
|
207
|
+
id: '65c3409c78352b58fcbba7d8',
|
|
208
|
+
},
|
|
209
|
+
Tier2: {
|
|
210
|
+
_id: '65c3409d78352b58fcbba7fa',
|
|
211
|
+
Value: 'Yes',
|
|
212
|
+
__v: 0,
|
|
213
|
+
id: '65c3409d78352b58fcbba7fa',
|
|
214
|
+
},
|
|
215
|
+
Tier3: {
|
|
216
|
+
_id: '65c3409d78352b58fcbba81d',
|
|
217
|
+
Value: 'Yes',
|
|
218
|
+
__v: 0,
|
|
219
|
+
id: '65c3409d78352b58fcbba81d',
|
|
220
|
+
},
|
|
221
|
+
Tier4: null,
|
|
222
|
+
__v: 0,
|
|
223
|
+
isActive: true,
|
|
224
|
+
id: '65c24bafa4111f0c64a2bfaa',
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
_id: '65c24bafa4111f0c64a2bfab',
|
|
228
|
+
Name: 'Projects',
|
|
229
|
+
Tier1: {
|
|
230
|
+
_id: '65c3409c78352b58fcbba7d9',
|
|
231
|
+
Value: '1',
|
|
232
|
+
Sufix: '',
|
|
233
|
+
__v: 0,
|
|
234
|
+
id: '65c3409c78352b58fcbba7d9',
|
|
235
|
+
},
|
|
236
|
+
Tier2: {
|
|
237
|
+
_id: '65c3409d78352b58fcbba7fb',
|
|
238
|
+
Value: '3',
|
|
239
|
+
Sufix: '',
|
|
240
|
+
__v: 0,
|
|
241
|
+
id: '65c3409d78352b58fcbba7fb',
|
|
242
|
+
},
|
|
243
|
+
Tier3: {
|
|
244
|
+
_id: '65c3409d78352b58fcbba81e',
|
|
245
|
+
Value: '5',
|
|
246
|
+
__v: 0,
|
|
247
|
+
id: '65c3409d78352b58fcbba81e',
|
|
248
|
+
},
|
|
249
|
+
Tier4: {
|
|
250
|
+
_id: '65c3409d78352b58fcbba840',
|
|
251
|
+
Value: 'Unlimited',
|
|
252
|
+
__v: 0,
|
|
253
|
+
id: '65c3409d78352b58fcbba840',
|
|
254
|
+
},
|
|
255
|
+
__v: 0,
|
|
256
|
+
isActive: true,
|
|
257
|
+
id: '65c24bafa4111f0c64a2bfab',
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
_id: '65c24bafa4111f0c64a2bfac',
|
|
261
|
+
Name: 'Study Protocol',
|
|
262
|
+
Tier1: {
|
|
263
|
+
_id: '65c3409c78352b58fcbba7d2',
|
|
264
|
+
Sufix: 'Task Per Study',
|
|
265
|
+
Value: '5',
|
|
266
|
+
__v: 0,
|
|
267
|
+
id: '65c3409c78352b58fcbba7d2',
|
|
268
|
+
},
|
|
269
|
+
Tier2: {
|
|
270
|
+
_id: '65c3409d78352b58fcbba7f4',
|
|
271
|
+
Sufix: 'Task Per Study',
|
|
272
|
+
Value: '10',
|
|
273
|
+
__v: 0,
|
|
274
|
+
id: '65c3409d78352b58fcbba7f4',
|
|
275
|
+
},
|
|
276
|
+
Tier3: {
|
|
277
|
+
_id: '65c3409d78352b58fcbba818',
|
|
278
|
+
Value: 'Unlimited',
|
|
279
|
+
__v: 0,
|
|
280
|
+
id: '65c3409d78352b58fcbba818',
|
|
281
|
+
},
|
|
282
|
+
Tier4: {
|
|
283
|
+
_id: '65c3409d78352b58fcbba839',
|
|
284
|
+
Value: 'Unlimited',
|
|
285
|
+
__v: 0,
|
|
286
|
+
id: '65c3409d78352b58fcbba839',
|
|
287
|
+
},
|
|
288
|
+
__v: 0,
|
|
289
|
+
isActive: true,
|
|
290
|
+
id: '65c24bafa4111f0c64a2bfac',
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
_id: '65c24bafa4111f0c64a2bfad',
|
|
294
|
+
Name: 'Notes Taking',
|
|
295
|
+
Tier1: {
|
|
296
|
+
_id: '65c3409c78352b58fcbba7da',
|
|
297
|
+
Value: 'Yes',
|
|
298
|
+
__v: 0,
|
|
299
|
+
id: '65c3409c78352b58fcbba7da',
|
|
300
|
+
},
|
|
301
|
+
Tier2: {
|
|
302
|
+
_id: '65c3409d78352b58fcbba7fc',
|
|
303
|
+
Value: 'Yes',
|
|
304
|
+
__v: 0,
|
|
305
|
+
id: '65c3409d78352b58fcbba7fc',
|
|
306
|
+
},
|
|
307
|
+
Tier3: {
|
|
308
|
+
_id: '65c3409d78352b58fcbba81f',
|
|
309
|
+
Value: 'Yes',
|
|
310
|
+
__v: 0,
|
|
311
|
+
id: '65c3409d78352b58fcbba81f',
|
|
312
|
+
},
|
|
313
|
+
Tier4: {
|
|
314
|
+
_id: '65c3409d78352b58fcbba841',
|
|
315
|
+
Value: 'Yes',
|
|
316
|
+
__v: 0,
|
|
317
|
+
id: '65c3409d78352b58fcbba841',
|
|
318
|
+
},
|
|
319
|
+
__v: 0,
|
|
320
|
+
isActive: true,
|
|
321
|
+
id: '65c24bafa4111f0c64a2bfad',
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
_id: '65c24bafa4111f0c64a2bfae',
|
|
325
|
+
Name: 'Task Validation',
|
|
326
|
+
Tier1: {
|
|
327
|
+
_id: '65c3409c78352b58fcbba7d3',
|
|
328
|
+
Value: 'Yes',
|
|
329
|
+
__v: 0,
|
|
330
|
+
id: '65c3409c78352b58fcbba7d3',
|
|
331
|
+
},
|
|
332
|
+
Tier2: {
|
|
333
|
+
_id: '65c3409d78352b58fcbba7f5',
|
|
334
|
+
Value: 'Yes',
|
|
335
|
+
__v: 0,
|
|
336
|
+
id: '65c3409d78352b58fcbba7f5',
|
|
337
|
+
},
|
|
338
|
+
Tier3: {
|
|
339
|
+
_id: '65c3409d78352b58fcbba817',
|
|
340
|
+
Value: 'Yes',
|
|
341
|
+
__v: 0,
|
|
342
|
+
id: '65c3409d78352b58fcbba817',
|
|
343
|
+
},
|
|
344
|
+
Tier4: {
|
|
345
|
+
_id: '65c3409d78352b58fcbba83b',
|
|
346
|
+
Value: 'Yes',
|
|
347
|
+
__v: 0,
|
|
348
|
+
id: '65c3409d78352b58fcbba83b',
|
|
349
|
+
},
|
|
350
|
+
__v: 0,
|
|
351
|
+
isActive: true,
|
|
352
|
+
id: '65c24bafa4111f0c64a2bfae',
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
_id: '65c24bafa4111f0c64a2bfaf',
|
|
356
|
+
Name: 'User Journey',
|
|
357
|
+
Tier1: {
|
|
358
|
+
_id: '65c3409c78352b58fcbba7d4',
|
|
359
|
+
Value: 'Yes',
|
|
360
|
+
__v: 0,
|
|
361
|
+
id: '65c3409c78352b58fcbba7d4',
|
|
362
|
+
},
|
|
363
|
+
Tier2: {
|
|
364
|
+
_id: '65c3409d78352b58fcbba7f6',
|
|
365
|
+
Value: 'Yes',
|
|
366
|
+
__v: 0,
|
|
367
|
+
id: '65c3409d78352b58fcbba7f6',
|
|
368
|
+
},
|
|
369
|
+
Tier3: {
|
|
370
|
+
_id: '65c3409d78352b58fcbba819',
|
|
371
|
+
Value: 'Yes',
|
|
372
|
+
__v: 0,
|
|
373
|
+
id: '65c3409d78352b58fcbba819',
|
|
374
|
+
},
|
|
375
|
+
Tier4: {
|
|
376
|
+
_id: '65c3409d78352b58fcbba83d',
|
|
377
|
+
Value: 'Yes',
|
|
378
|
+
__v: 0,
|
|
379
|
+
id: '65c3409d78352b58fcbba83d',
|
|
380
|
+
},
|
|
381
|
+
__v: 0,
|
|
382
|
+
isActive: true,
|
|
383
|
+
id: '65c24bafa4111f0c64a2bfaf',
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
_id: '65c24bafa4111f0c64a2bfb0',
|
|
387
|
+
Name: 'Emotion-Based Video Player',
|
|
388
|
+
Tier1: {
|
|
389
|
+
_id: '65c3409c78352b58fcbba7db',
|
|
390
|
+
Value: 'Yes',
|
|
391
|
+
__v: 0,
|
|
392
|
+
id: '65c3409c78352b58fcbba7db',
|
|
393
|
+
},
|
|
394
|
+
Tier2: {
|
|
395
|
+
_id: '65c3409d78352b58fcbba7fd',
|
|
396
|
+
Value: 'Yes',
|
|
397
|
+
__v: 0,
|
|
398
|
+
id: '65c3409d78352b58fcbba7fd',
|
|
399
|
+
},
|
|
400
|
+
Tier3: {
|
|
401
|
+
_id: '65c3409d78352b58fcbba821',
|
|
402
|
+
Value: 'Yes',
|
|
403
|
+
__v: 0,
|
|
404
|
+
id: '65c3409d78352b58fcbba821',
|
|
405
|
+
},
|
|
406
|
+
Tier4: {
|
|
407
|
+
_id: '65c3409e78352b58fcbba843',
|
|
408
|
+
Value: 'Yes',
|
|
409
|
+
__v: 0,
|
|
410
|
+
id: '65c3409e78352b58fcbba843',
|
|
411
|
+
},
|
|
412
|
+
__v: 0,
|
|
413
|
+
isActive: true,
|
|
414
|
+
id: '65c24bafa4111f0c64a2bfb0',
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
_id: '65c24bafa4111f0c64a2bfb1',
|
|
418
|
+
Name: 'Video Clipping',
|
|
419
|
+
Tier1: {
|
|
420
|
+
_id: '65c3409c78352b58fcbba7dc',
|
|
421
|
+
Prefix: 'Up to',
|
|
422
|
+
Value: '5',
|
|
423
|
+
Sufix: ' Per Study',
|
|
424
|
+
__v: 0,
|
|
425
|
+
id: '65c3409c78352b58fcbba7dc',
|
|
426
|
+
},
|
|
427
|
+
Tier2: {
|
|
428
|
+
_id: '65c3409d78352b58fcbba7ff',
|
|
429
|
+
Sufix: ' Per Study',
|
|
430
|
+
Prefix: 'Up to',
|
|
431
|
+
Value: '30',
|
|
432
|
+
__v: 0,
|
|
433
|
+
id: '65c3409d78352b58fcbba7ff',
|
|
434
|
+
},
|
|
435
|
+
Tier3: {
|
|
436
|
+
_id: '65c3409d78352b58fcbba822',
|
|
437
|
+
Sufix: ' Per Study',
|
|
438
|
+
Prefix: 'Up to',
|
|
439
|
+
Value: '50',
|
|
440
|
+
__v: 0,
|
|
441
|
+
id: '65c3409d78352b58fcbba822',
|
|
442
|
+
},
|
|
443
|
+
Tier4: {
|
|
444
|
+
_id: '65c3409e78352b58fcbba845',
|
|
445
|
+
Value: 'Unlimited',
|
|
446
|
+
__v: 0,
|
|
447
|
+
id: '65c3409e78352b58fcbba845',
|
|
448
|
+
},
|
|
449
|
+
__v: 0,
|
|
450
|
+
isActive: true,
|
|
451
|
+
id: '65c24bafa4111f0c64a2bfb1',
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
_id: '65c24bafa4111f0c64a2bfb2',
|
|
455
|
+
Name: 'Video Markup',
|
|
456
|
+
Tier1: {
|
|
457
|
+
_id: '65c3409c78352b58fcbba7dd',
|
|
458
|
+
Value: 'Yes',
|
|
459
|
+
__v: 0,
|
|
460
|
+
id: '65c3409c78352b58fcbba7dd',
|
|
461
|
+
},
|
|
462
|
+
Tier2: {
|
|
463
|
+
_id: '65c3409d78352b58fcbba7fe',
|
|
464
|
+
Value: 'Yes',
|
|
465
|
+
__v: 0,
|
|
466
|
+
id: '65c3409d78352b58fcbba7fe',
|
|
467
|
+
},
|
|
468
|
+
Tier3: {
|
|
469
|
+
_id: '65c3409d78352b58fcbba820',
|
|
470
|
+
Value: 'Yes',
|
|
471
|
+
__v: 0,
|
|
472
|
+
id: '65c3409d78352b58fcbba820',
|
|
473
|
+
},
|
|
474
|
+
Tier4: {
|
|
475
|
+
_id: '65c3409e78352b58fcbba842',
|
|
476
|
+
Value: 'Yes',
|
|
477
|
+
__v: 0,
|
|
478
|
+
id: '65c3409e78352b58fcbba842',
|
|
479
|
+
},
|
|
480
|
+
__v: 0,
|
|
481
|
+
isActive: true,
|
|
482
|
+
id: '65c24bafa4111f0c64a2bfb2',
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
_id: '65c24bafa4111f0c64a2bfb3',
|
|
486
|
+
Name: 'White Tests',
|
|
487
|
+
Tier1: {
|
|
488
|
+
_id: '65c3409c78352b58fcbba7df',
|
|
489
|
+
Value: '1',
|
|
490
|
+
__v: 0,
|
|
491
|
+
id: '65c3409c78352b58fcbba7df',
|
|
492
|
+
},
|
|
493
|
+
Tier2: {
|
|
494
|
+
_id: '65c3409d78352b58fcbba801',
|
|
495
|
+
Value: 'Unlimited',
|
|
496
|
+
__v: 0,
|
|
497
|
+
id: '65c3409d78352b58fcbba801',
|
|
498
|
+
},
|
|
499
|
+
Tier3: {
|
|
500
|
+
_id: '65c3409d78352b58fcbba826',
|
|
501
|
+
Value: 'Unlimited',
|
|
502
|
+
__v: 0,
|
|
503
|
+
id: '65c3409d78352b58fcbba826',
|
|
504
|
+
},
|
|
505
|
+
Tier4: {
|
|
506
|
+
_id: '65c3409e78352b58fcbba848',
|
|
507
|
+
Value: 'Unlimited',
|
|
508
|
+
__v: 0,
|
|
509
|
+
id: '65c3409e78352b58fcbba848',
|
|
510
|
+
},
|
|
511
|
+
__v: 0,
|
|
512
|
+
isActive: true,
|
|
513
|
+
id: '65c24bafa4111f0c64a2bfb3',
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
_id: '65c24bafa4111f0c64a2bfb4',
|
|
517
|
+
Name: 'Multilanguage Tests',
|
|
518
|
+
Tier1: {
|
|
519
|
+
_id: '65c3409c78352b58fcbba7de',
|
|
520
|
+
Value: 'Yes',
|
|
521
|
+
__v: 0,
|
|
522
|
+
id: '65c3409c78352b58fcbba7de',
|
|
523
|
+
},
|
|
524
|
+
Tier2: {
|
|
525
|
+
_id: '65c3409d78352b58fcbba800',
|
|
526
|
+
Value: 'Yes',
|
|
527
|
+
__v: 0,
|
|
528
|
+
id: '65c3409d78352b58fcbba800',
|
|
529
|
+
},
|
|
530
|
+
Tier3: {
|
|
531
|
+
_id: '65c3409d78352b58fcbba824',
|
|
532
|
+
Value: 'Yes',
|
|
533
|
+
__v: 0,
|
|
534
|
+
id: '65c3409d78352b58fcbba824',
|
|
535
|
+
},
|
|
536
|
+
Tier4: {
|
|
537
|
+
_id: '65c3409e78352b58fcbba846',
|
|
538
|
+
Value: 'Yes',
|
|
539
|
+
__v: 0,
|
|
540
|
+
id: '65c3409e78352b58fcbba846',
|
|
541
|
+
},
|
|
542
|
+
__v: 0,
|
|
543
|
+
isActive: true,
|
|
544
|
+
id: '65c24bafa4111f0c64a2bfb4',
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
_id: '65c24bafa4111f0c64a2bfb5',
|
|
548
|
+
Name: 'SUS (System Usability Scale)',
|
|
549
|
+
Tier1: {
|
|
550
|
+
_id: '65c3409c78352b58fcbba7e1',
|
|
551
|
+
Value: 'Yes',
|
|
552
|
+
__v: 0,
|
|
553
|
+
id: '65c3409c78352b58fcbba7e1',
|
|
554
|
+
},
|
|
555
|
+
Tier2: {
|
|
556
|
+
_id: '65c3409d78352b58fcbba803',
|
|
557
|
+
Value: 'Yes',
|
|
558
|
+
__v: 0,
|
|
559
|
+
id: '65c3409d78352b58fcbba803',
|
|
560
|
+
},
|
|
561
|
+
Tier3: {
|
|
562
|
+
_id: '65c3409d78352b58fcbba825',
|
|
563
|
+
Value: 'Yes',
|
|
564
|
+
__v: 0,
|
|
565
|
+
id: '65c3409d78352b58fcbba825',
|
|
566
|
+
},
|
|
567
|
+
Tier4: {
|
|
568
|
+
_id: '65c3409e78352b58fcbba847',
|
|
569
|
+
Value: 'Yes',
|
|
570
|
+
__v: 0,
|
|
571
|
+
id: '65c3409e78352b58fcbba847',
|
|
572
|
+
},
|
|
573
|
+
__v: 0,
|
|
574
|
+
isActive: true,
|
|
575
|
+
id: '65c24bafa4111f0c64a2bfb5',
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
_id: '65c24bafa4111f0c64a2bfb6',
|
|
579
|
+
Name: 'Mobile Testing',
|
|
580
|
+
Tier1: {
|
|
581
|
+
_id: '65c3409c78352b58fcbba7e0',
|
|
582
|
+
Value: 'No',
|
|
583
|
+
__v: 0,
|
|
584
|
+
id: '65c3409c78352b58fcbba7e0',
|
|
585
|
+
},
|
|
586
|
+
Tier2: {
|
|
587
|
+
_id: '65c3409d78352b58fcbba802',
|
|
588
|
+
Value: 'Yes',
|
|
589
|
+
__v: 0,
|
|
590
|
+
id: '65c3409d78352b58fcbba802',
|
|
591
|
+
},
|
|
592
|
+
Tier3: {
|
|
593
|
+
_id: '65c3409d78352b58fcbba823',
|
|
594
|
+
Value: 'Yes',
|
|
595
|
+
__v: 0,
|
|
596
|
+
id: '65c3409d78352b58fcbba823',
|
|
597
|
+
},
|
|
598
|
+
Tier4: {
|
|
599
|
+
_id: '65c3409e78352b58fcbba844',
|
|
600
|
+
Value: 'Yes',
|
|
601
|
+
__v: 0,
|
|
602
|
+
id: '65c3409e78352b58fcbba844',
|
|
603
|
+
},
|
|
604
|
+
__v: 0,
|
|
605
|
+
isActive: true,
|
|
606
|
+
id: '65c24bafa4111f0c64a2bfb6',
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
_id: '65c24bafa4111f0c64a2bfb7',
|
|
610
|
+
Name: 'Workspaces',
|
|
611
|
+
Tier1: {
|
|
612
|
+
_id: '65c3409c78352b58fcbba7e2',
|
|
613
|
+
Value: 'No',
|
|
614
|
+
__v: 0,
|
|
615
|
+
id: '65c3409c78352b58fcbba7e2',
|
|
616
|
+
},
|
|
617
|
+
Tier2: {
|
|
618
|
+
_id: '65c3409d78352b58fcbba804',
|
|
619
|
+
Value: 'Yes',
|
|
620
|
+
__v: 0,
|
|
621
|
+
id: '65c3409d78352b58fcbba804',
|
|
622
|
+
},
|
|
623
|
+
Tier3: {
|
|
624
|
+
_id: '65c3409d78352b58fcbba827',
|
|
625
|
+
Value: 'Yes',
|
|
626
|
+
__v: 0,
|
|
627
|
+
id: '65c3409d78352b58fcbba827',
|
|
628
|
+
},
|
|
629
|
+
Tier4: {
|
|
630
|
+
_id: '65c3409e78352b58fcbba849',
|
|
631
|
+
Value: 'Yes',
|
|
632
|
+
__v: 0,
|
|
633
|
+
id: '65c3409e78352b58fcbba849',
|
|
634
|
+
},
|
|
635
|
+
__v: 0,
|
|
636
|
+
isActive: true,
|
|
637
|
+
id: '65c24bafa4111f0c64a2bfb7',
|
|
638
|
+
},
|
|
639
|
+
],
|
|
640
|
+
UserPanelFeatures: [
|
|
641
|
+
{
|
|
642
|
+
_id: '65c25be30847926f6899f050',
|
|
643
|
+
Name: 'User Panel Widget or Link',
|
|
644
|
+
Tier1: {
|
|
645
|
+
_id: '65c3468278352b58fcbbaa97',
|
|
646
|
+
Value: '1',
|
|
647
|
+
Sufix: 'Widget Per Year',
|
|
648
|
+
__v: 0,
|
|
649
|
+
id: '65c3468278352b58fcbbaa97',
|
|
650
|
+
},
|
|
651
|
+
Tier2: {
|
|
652
|
+
_id: '65c3468378352b58fcbbaaa1',
|
|
653
|
+
Sufix: 'Widgets Per Year',
|
|
654
|
+
Value: '3',
|
|
655
|
+
__v: 0,
|
|
656
|
+
id: '65c3468378352b58fcbbaaa1',
|
|
657
|
+
},
|
|
658
|
+
Tier3: {
|
|
659
|
+
_id: '65c3468378352b58fcbbaaab',
|
|
660
|
+
Sufix: 'Widgets Per Year',
|
|
661
|
+
Value: '6',
|
|
662
|
+
__v: 0,
|
|
663
|
+
id: '65c3468378352b58fcbbaaab',
|
|
664
|
+
},
|
|
665
|
+
Tier4: {
|
|
666
|
+
_id: '65c3468378352b58fcbbaab5',
|
|
667
|
+
Sufix: 'Widgets Per Year',
|
|
668
|
+
Value: 'Unlimited',
|
|
669
|
+
__v: 0,
|
|
670
|
+
id: '65c3468378352b58fcbbaab5',
|
|
671
|
+
},
|
|
672
|
+
__v: 0,
|
|
673
|
+
isActive: true,
|
|
674
|
+
id: '65c25be30847926f6899f050',
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
_id: '65c25be30847926f6899f051',
|
|
678
|
+
Name: 'All-In-One Dashboard',
|
|
679
|
+
Tier1: {
|
|
680
|
+
_id: '65c3468278352b58fcbbaa98',
|
|
681
|
+
Value: 'Yes',
|
|
682
|
+
__v: 0,
|
|
683
|
+
id: '65c3468278352b58fcbbaa98',
|
|
684
|
+
},
|
|
685
|
+
Tier2: {
|
|
686
|
+
_id: '65c3468378352b58fcbbaaa3',
|
|
687
|
+
Value: 'Yes',
|
|
688
|
+
__v: 0,
|
|
689
|
+
id: '65c3468378352b58fcbbaaa3',
|
|
690
|
+
},
|
|
691
|
+
Tier3: {
|
|
692
|
+
_id: '65c3468378352b58fcbbaaad',
|
|
693
|
+
Value: 'Yes',
|
|
694
|
+
__v: 0,
|
|
695
|
+
id: '65c3468378352b58fcbbaaad',
|
|
696
|
+
},
|
|
697
|
+
Tier4: {
|
|
698
|
+
_id: '65c3468378352b58fcbbaab7',
|
|
699
|
+
Value: 'Yes',
|
|
700
|
+
__v: 0,
|
|
701
|
+
id: '65c3468378352b58fcbbaab7',
|
|
702
|
+
},
|
|
703
|
+
__v: 0,
|
|
704
|
+
isActive: true,
|
|
705
|
+
id: '65c25be30847926f6899f051',
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
_id: '65c25be30847926f6899f052',
|
|
709
|
+
Name: 'Automated Calendar Invites',
|
|
710
|
+
Tier1: {
|
|
711
|
+
_id: '65c3468278352b58fcbbaa99',
|
|
712
|
+
Value: 'Yes',
|
|
713
|
+
__v: 0,
|
|
714
|
+
id: '65c3468278352b58fcbbaa99',
|
|
715
|
+
},
|
|
716
|
+
Tier2: {
|
|
717
|
+
_id: '65c3468378352b58fcbbaaa2',
|
|
718
|
+
Value: 'Yes',
|
|
719
|
+
__v: 0,
|
|
720
|
+
id: '65c3468378352b58fcbbaaa2',
|
|
721
|
+
},
|
|
722
|
+
Tier3: {
|
|
723
|
+
_id: '65c3468378352b58fcbbaaac',
|
|
724
|
+
Value: 'Yes',
|
|
725
|
+
__v: 0,
|
|
726
|
+
id: '65c3468378352b58fcbbaaac',
|
|
727
|
+
},
|
|
728
|
+
Tier4: {
|
|
729
|
+
_id: '65c3468378352b58fcbbaab6',
|
|
730
|
+
Value: 'Yes',
|
|
731
|
+
__v: 0,
|
|
732
|
+
id: '65c3468378352b58fcbbaab6',
|
|
733
|
+
},
|
|
734
|
+
__v: 0,
|
|
735
|
+
isActive: true,
|
|
736
|
+
id: '65c25be30847926f6899f052',
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
_id: '65c25be30847926f6899f053',
|
|
740
|
+
Name: 'Centralized Payment',
|
|
741
|
+
Tier1: {
|
|
742
|
+
_id: '65c3468278352b58fcbbaa95',
|
|
743
|
+
Value: 'Yes',
|
|
744
|
+
__v: 0,
|
|
745
|
+
id: '65c3468278352b58fcbbaa95',
|
|
746
|
+
},
|
|
747
|
+
Tier2: {
|
|
748
|
+
_id: '65c3468378352b58fcbbaaa0',
|
|
749
|
+
Value: 'Yes',
|
|
750
|
+
__v: 0,
|
|
751
|
+
id: '65c3468378352b58fcbbaaa0',
|
|
752
|
+
},
|
|
753
|
+
Tier3: {
|
|
754
|
+
_id: '65c3468378352b58fcbbaaaa',
|
|
755
|
+
Value: 'Yes',
|
|
756
|
+
__v: 0,
|
|
757
|
+
id: '65c3468378352b58fcbbaaaa',
|
|
758
|
+
},
|
|
759
|
+
Tier4: {
|
|
760
|
+
_id: '65c3468378352b58fcbbaab3',
|
|
761
|
+
Value: 'Yes',
|
|
762
|
+
__v: 0,
|
|
763
|
+
id: '65c3468378352b58fcbbaab3',
|
|
764
|
+
},
|
|
765
|
+
__v: 0,
|
|
766
|
+
isActive: true,
|
|
767
|
+
id: '65c25be30847926f6899f053',
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
_id: '65c25be30847926f6899f054',
|
|
771
|
+
Name: 'Custom Incentive',
|
|
772
|
+
Tier1: {
|
|
773
|
+
_id: '65c3468278352b58fcbbaa96',
|
|
774
|
+
Value: 'No',
|
|
775
|
+
__v: 0,
|
|
776
|
+
id: '65c3468278352b58fcbbaa96',
|
|
777
|
+
},
|
|
778
|
+
Tier2: {
|
|
779
|
+
_id: '65c3468378352b58fcbbaa9f',
|
|
780
|
+
Value: 'No',
|
|
781
|
+
__v: 0,
|
|
782
|
+
id: '65c3468378352b58fcbbaa9f',
|
|
783
|
+
},
|
|
784
|
+
Tier3: {
|
|
785
|
+
_id: '65c3468378352b58fcbbaaa9',
|
|
786
|
+
Value: 'No',
|
|
787
|
+
__v: 0,
|
|
788
|
+
id: '65c3468378352b58fcbbaaa9',
|
|
789
|
+
},
|
|
790
|
+
Tier4: {
|
|
791
|
+
_id: '65c3468378352b58fcbbaab4',
|
|
792
|
+
Value: 'Yes',
|
|
793
|
+
__v: 0,
|
|
794
|
+
id: '65c3468378352b58fcbbaab4',
|
|
795
|
+
},
|
|
796
|
+
__v: 0,
|
|
797
|
+
isActive: true,
|
|
798
|
+
id: '65c25be30847926f6899f054',
|
|
799
|
+
},
|
|
800
|
+
],
|
|
801
|
+
AnalysisFeatures: [
|
|
802
|
+
{
|
|
803
|
+
_id: '65c25aac0847926f6899efcf',
|
|
804
|
+
Tier1: {
|
|
805
|
+
_id: '65c3418078352b58fcbba900',
|
|
806
|
+
Value: 'No',
|
|
807
|
+
__v: 0,
|
|
808
|
+
id: '65c3418078352b58fcbba900',
|
|
809
|
+
},
|
|
810
|
+
Tier2: {
|
|
811
|
+
_id: '65c3418078352b58fcbba911',
|
|
812
|
+
Value: 'Yes',
|
|
813
|
+
__v: 0,
|
|
814
|
+
id: '65c3418078352b58fcbba911',
|
|
815
|
+
},
|
|
816
|
+
Tier3: {
|
|
817
|
+
_id: '65c3418078352b58fcbba921',
|
|
818
|
+
Value: 'Yes',
|
|
819
|
+
__v: 0,
|
|
820
|
+
id: '65c3418078352b58fcbba921',
|
|
821
|
+
},
|
|
822
|
+
Tier4: {
|
|
823
|
+
_id: '65c3418078352b58fcbba931',
|
|
824
|
+
Value: 'Yes',
|
|
825
|
+
__v: 0,
|
|
826
|
+
id: '65c3418078352b58fcbba931',
|
|
827
|
+
},
|
|
828
|
+
__v: 0,
|
|
829
|
+
Name: 'Automated Testing',
|
|
830
|
+
isActive: true,
|
|
831
|
+
id: '65c25aac0847926f6899efcf',
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
_id: '65c25b610847926f6899efeb',
|
|
835
|
+
Name: 'Automated Clip Creation',
|
|
836
|
+
Tier1: {
|
|
837
|
+
_id: '65c3418078352b58fcbba901',
|
|
838
|
+
Value: 'No',
|
|
839
|
+
__v: 0,
|
|
840
|
+
id: '65c3418078352b58fcbba901',
|
|
841
|
+
},
|
|
842
|
+
Tier2: {
|
|
843
|
+
_id: '65c3418078352b58fcbba910',
|
|
844
|
+
Value: 'Yes',
|
|
845
|
+
__v: 0,
|
|
846
|
+
id: '65c3418078352b58fcbba910',
|
|
847
|
+
},
|
|
848
|
+
Tier3: {
|
|
849
|
+
_id: '65c3418078352b58fcbba920',
|
|
850
|
+
Value: 'Yes',
|
|
851
|
+
__v: 0,
|
|
852
|
+
id: '65c3418078352b58fcbba920',
|
|
853
|
+
},
|
|
854
|
+
Tier4: {
|
|
855
|
+
_id: '65c3418078352b58fcbba930',
|
|
856
|
+
Value: 'Yes',
|
|
857
|
+
__v: 0,
|
|
858
|
+
id: '65c3418078352b58fcbba930',
|
|
859
|
+
},
|
|
860
|
+
__v: 0,
|
|
861
|
+
isActive: true,
|
|
862
|
+
id: '65c25b610847926f6899efeb',
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
_id: '65c25b610847926f6899efec',
|
|
866
|
+
Name: 'Automated Keyword Extraction',
|
|
867
|
+
Tier1: {
|
|
868
|
+
_id: '65c3418078352b58fcbba905',
|
|
869
|
+
Value: 'No',
|
|
870
|
+
__v: 0,
|
|
871
|
+
id: '65c3418078352b58fcbba905',
|
|
872
|
+
},
|
|
873
|
+
Tier2: {
|
|
874
|
+
_id: '65c3418078352b58fcbba915',
|
|
875
|
+
Value: 'Yes',
|
|
876
|
+
__v: 0,
|
|
877
|
+
id: '65c3418078352b58fcbba915',
|
|
878
|
+
},
|
|
879
|
+
Tier3: {
|
|
880
|
+
_id: '65c3418078352b58fcbba925',
|
|
881
|
+
Value: 'Yes',
|
|
882
|
+
__v: 0,
|
|
883
|
+
id: '65c3418078352b58fcbba925',
|
|
884
|
+
},
|
|
885
|
+
Tier4: {
|
|
886
|
+
_id: '65c3418078352b58fcbba936',
|
|
887
|
+
Value: 'Yes',
|
|
888
|
+
__v: 0,
|
|
889
|
+
id: '65c3418078352b58fcbba936',
|
|
890
|
+
},
|
|
891
|
+
__v: 0,
|
|
892
|
+
isActive: true,
|
|
893
|
+
id: '65c25b610847926f6899efec',
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
_id: '65c25b610847926f6899efed',
|
|
897
|
+
Name: 'Attention Analysis',
|
|
898
|
+
Tier1: {
|
|
899
|
+
_id: '65c3418078352b58fcbba906',
|
|
900
|
+
Value: 'No',
|
|
901
|
+
__v: 0,
|
|
902
|
+
id: '65c3418078352b58fcbba906',
|
|
903
|
+
},
|
|
904
|
+
Tier2: {
|
|
905
|
+
_id: '65c3418078352b58fcbba916',
|
|
906
|
+
Value: 'Yes',
|
|
907
|
+
__v: 0,
|
|
908
|
+
id: '65c3418078352b58fcbba916',
|
|
909
|
+
},
|
|
910
|
+
Tier3: {
|
|
911
|
+
_id: '65c3418078352b58fcbba926',
|
|
912
|
+
Value: 'Yes',
|
|
913
|
+
__v: 0,
|
|
914
|
+
id: '65c3418078352b58fcbba926',
|
|
915
|
+
},
|
|
916
|
+
Tier4: {
|
|
917
|
+
_id: '65c3418078352b58fcbba934',
|
|
918
|
+
Value: 'Yes',
|
|
919
|
+
__v: 0,
|
|
920
|
+
id: '65c3418078352b58fcbba934',
|
|
921
|
+
},
|
|
922
|
+
__v: 0,
|
|
923
|
+
isActive: true,
|
|
924
|
+
id: '65c25b610847926f6899efed',
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
_id: '65c25b610847926f6899efee',
|
|
928
|
+
Name: 'Custom Usability Forms',
|
|
929
|
+
Tier1: {
|
|
930
|
+
_id: '65c3418078352b58fcbba902',
|
|
931
|
+
Value: 'No',
|
|
932
|
+
__v: 0,
|
|
933
|
+
id: '65c3418078352b58fcbba902',
|
|
934
|
+
},
|
|
935
|
+
Tier2: {
|
|
936
|
+
_id: '65c3418078352b58fcbba913',
|
|
937
|
+
Value: 'Yes',
|
|
938
|
+
__v: 0,
|
|
939
|
+
id: '65c3418078352b58fcbba913',
|
|
940
|
+
},
|
|
941
|
+
Tier3: {
|
|
942
|
+
_id: '65c3418078352b58fcbba922',
|
|
943
|
+
Value: 'Yes',
|
|
944
|
+
__v: 0,
|
|
945
|
+
id: '65c3418078352b58fcbba922',
|
|
946
|
+
},
|
|
947
|
+
Tier4: {
|
|
948
|
+
_id: '65c3418078352b58fcbba935',
|
|
949
|
+
Value: 'Yes',
|
|
950
|
+
__v: 0,
|
|
951
|
+
id: '65c3418078352b58fcbba935',
|
|
952
|
+
},
|
|
953
|
+
__v: 0,
|
|
954
|
+
isActive: true,
|
|
955
|
+
id: '65c25b610847926f6899efee',
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
_id: '65c25b610847926f6899efef',
|
|
959
|
+
Name: 'Browser Extension',
|
|
960
|
+
Tier1: {
|
|
961
|
+
_id: '65c3418078352b58fcbba903',
|
|
962
|
+
Value: 'No',
|
|
963
|
+
__v: 0,
|
|
964
|
+
id: '65c3418078352b58fcbba903',
|
|
965
|
+
},
|
|
966
|
+
Tier2: {
|
|
967
|
+
_id: '65c3418078352b58fcbba912',
|
|
968
|
+
Value: 'Yes',
|
|
969
|
+
__v: 0,
|
|
970
|
+
id: '65c3418078352b58fcbba912',
|
|
971
|
+
},
|
|
972
|
+
Tier3: {
|
|
973
|
+
_id: '65c3418078352b58fcbba923',
|
|
974
|
+
Value: 'Yes',
|
|
975
|
+
__v: 0,
|
|
976
|
+
id: '65c3418078352b58fcbba923',
|
|
977
|
+
},
|
|
978
|
+
Tier4: {
|
|
979
|
+
_id: '65c3418078352b58fcbba933',
|
|
980
|
+
Value: 'Yes',
|
|
981
|
+
__v: 0,
|
|
982
|
+
id: '65c3418078352b58fcbba933',
|
|
983
|
+
},
|
|
984
|
+
__v: 0,
|
|
985
|
+
isActive: true,
|
|
986
|
+
id: '65c25b610847926f6899efef',
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
_id: '65c25b610847926f6899eff0',
|
|
990
|
+
Name: 'Video Upload',
|
|
991
|
+
Tier1: {
|
|
992
|
+
_id: '65c3418078352b58fcbba904',
|
|
993
|
+
Value: 'No',
|
|
994
|
+
__v: 0,
|
|
995
|
+
id: '65c3418078352b58fcbba904',
|
|
996
|
+
},
|
|
997
|
+
Tier2: {
|
|
998
|
+
_id: '65c3418078352b58fcbba914',
|
|
999
|
+
Value: 'Yes',
|
|
1000
|
+
__v: 0,
|
|
1001
|
+
id: '65c3418078352b58fcbba914',
|
|
1002
|
+
},
|
|
1003
|
+
Tier3: {
|
|
1004
|
+
_id: '65c3418078352b58fcbba924',
|
|
1005
|
+
Value: 'Yes',
|
|
1006
|
+
__v: 0,
|
|
1007
|
+
id: '65c3418078352b58fcbba924',
|
|
1008
|
+
},
|
|
1009
|
+
Tier4: {
|
|
1010
|
+
_id: '65c3418078352b58fcbba932',
|
|
1011
|
+
Value: 'Yes',
|
|
1012
|
+
__v: 0,
|
|
1013
|
+
id: '65c3418078352b58fcbba932',
|
|
1014
|
+
},
|
|
1015
|
+
__v: 0,
|
|
1016
|
+
isActive: true,
|
|
1017
|
+
id: '65c25b610847926f6899eff0',
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
_id: '65c25b610847926f6899eff1',
|
|
1021
|
+
Name: 'Card Sorting Sessions',
|
|
1022
|
+
Tier1: null,
|
|
1023
|
+
Tier2: null,
|
|
1024
|
+
Tier3: null,
|
|
1025
|
+
Tier4: null,
|
|
1026
|
+
__v: 0,
|
|
1027
|
+
id: '65c25b610847926f6899eff1',
|
|
1028
|
+
},
|
|
1029
|
+
{
|
|
1030
|
+
_id: '65c25b610847926f6899eff2',
|
|
1031
|
+
Name: 'Detection of Uncertainty',
|
|
1032
|
+
Tier1: null,
|
|
1033
|
+
Tier2: null,
|
|
1034
|
+
Tier3: null,
|
|
1035
|
+
Tier4: null,
|
|
1036
|
+
__v: 0,
|
|
1037
|
+
id: '65c25b610847926f6899eff2',
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
_id: '65c25b610847926f6899eff3',
|
|
1041
|
+
Name: 'Eye Tracking',
|
|
1042
|
+
Tier1: null,
|
|
1043
|
+
Tier2: null,
|
|
1044
|
+
Tier3: null,
|
|
1045
|
+
Tier4: null,
|
|
1046
|
+
__v: 0,
|
|
1047
|
+
id: '65c25b610847926f6899eff3',
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
_id: '65c25b610847926f6899eff4',
|
|
1051
|
+
Name: 'Focus Groups',
|
|
1052
|
+
Tier1: null,
|
|
1053
|
+
Tier2: null,
|
|
1054
|
+
Tier3: null,
|
|
1055
|
+
Tier4: null,
|
|
1056
|
+
__v: 0,
|
|
1057
|
+
id: '65c25b610847926f6899eff4',
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
_id: '65c25b610847926f6899eff5',
|
|
1061
|
+
Name: 'Multiple Interviewers',
|
|
1062
|
+
Tier1: null,
|
|
1063
|
+
Tier2: null,
|
|
1064
|
+
Tier3: null,
|
|
1065
|
+
Tier4: null,
|
|
1066
|
+
__v: 0,
|
|
1067
|
+
id: '65c25b610847926f6899eff5',
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
_id: '65c25b610847926f6899eff6',
|
|
1071
|
+
Name: 'Usability browser',
|
|
1072
|
+
Tier1: null,
|
|
1073
|
+
Tier2: null,
|
|
1074
|
+
Tier3: null,
|
|
1075
|
+
Tier4: null,
|
|
1076
|
+
__v: 0,
|
|
1077
|
+
id: '65c25b610847926f6899eff6',
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
_id: '65c25b610847926f6899eff7',
|
|
1081
|
+
Name: 'Observer Mode',
|
|
1082
|
+
Tier1: {
|
|
1083
|
+
_id: '65c3418078352b58fcbba907',
|
|
1084
|
+
Value: 'No',
|
|
1085
|
+
__v: 0,
|
|
1086
|
+
id: '65c3418078352b58fcbba907',
|
|
1087
|
+
},
|
|
1088
|
+
Tier2: {
|
|
1089
|
+
_id: '65c3418078352b58fcbba917',
|
|
1090
|
+
Value: '1',
|
|
1091
|
+
__v: 0,
|
|
1092
|
+
id: '65c3418078352b58fcbba917',
|
|
1093
|
+
},
|
|
1094
|
+
Tier3: {
|
|
1095
|
+
_id: '65c3418078352b58fcbba927',
|
|
1096
|
+
Value: '2',
|
|
1097
|
+
__v: 0,
|
|
1098
|
+
id: '65c3418078352b58fcbba927',
|
|
1099
|
+
},
|
|
1100
|
+
Tier4: {
|
|
1101
|
+
_id: '65c3418078352b58fcbba937',
|
|
1102
|
+
Value: '5',
|
|
1103
|
+
__v: 0,
|
|
1104
|
+
id: '65c3418078352b58fcbba937',
|
|
1105
|
+
},
|
|
1106
|
+
__v: 0,
|
|
1107
|
+
isActive: true,
|
|
1108
|
+
id: '65c25b610847926f6899eff7',
|
|
1109
|
+
},
|
|
1110
|
+
],
|
|
1111
|
+
AIFeatures: [
|
|
1112
|
+
{
|
|
1113
|
+
_id: '65c25ba20847926f6899f02e',
|
|
1114
|
+
Name: 'UX Assistant',
|
|
1115
|
+
Tier1: {
|
|
1116
|
+
_id: '65c3423278352b58fcbba9fc',
|
|
1117
|
+
Value: '5',
|
|
1118
|
+
Sufix: 'Questions per Study',
|
|
1119
|
+
__v: 0,
|
|
1120
|
+
id: '65c3423278352b58fcbba9fc',
|
|
1121
|
+
},
|
|
1122
|
+
Tier2: {
|
|
1123
|
+
_id: '65c3423378352b58fcbbaa06',
|
|
1124
|
+
Sufix: 'Questions per Study',
|
|
1125
|
+
Value: '40',
|
|
1126
|
+
__v: 0,
|
|
1127
|
+
id: '65c3423378352b58fcbbaa06',
|
|
1128
|
+
},
|
|
1129
|
+
Tier3: {
|
|
1130
|
+
_id: '65c3423378352b58fcbbaa0d',
|
|
1131
|
+
Sufix: 'Questions per Study',
|
|
1132
|
+
Value: '60',
|
|
1133
|
+
__v: 0,
|
|
1134
|
+
id: '65c3423378352b58fcbbaa0d',
|
|
1135
|
+
},
|
|
1136
|
+
Tier4: {
|
|
1137
|
+
_id: '65c3423378352b58fcbbaa14',
|
|
1138
|
+
Prefix: 'Up To',
|
|
1139
|
+
Value: '120',
|
|
1140
|
+
Sufix: 'Questions per Study',
|
|
1141
|
+
__v: 0,
|
|
1142
|
+
id: '65c3423378352b58fcbbaa14',
|
|
1143
|
+
},
|
|
1144
|
+
__v: 0,
|
|
1145
|
+
isActive: true,
|
|
1146
|
+
id: '65c25ba20847926f6899f02e',
|
|
1147
|
+
},
|
|
1148
|
+
{
|
|
1149
|
+
_id: '65c25ba20847926f6899f02f',
|
|
1150
|
+
Name: 'Persona Creation Addon',
|
|
1151
|
+
Tier1: {
|
|
1152
|
+
_id: '65c3423278352b58fcbba9fb',
|
|
1153
|
+
Value: 'Yes',
|
|
1154
|
+
__v: 0,
|
|
1155
|
+
id: '65c3423278352b58fcbba9fb',
|
|
1156
|
+
},
|
|
1157
|
+
Tier2: {
|
|
1158
|
+
_id: '65c3423378352b58fcbbaa05',
|
|
1159
|
+
Value: 'Yes',
|
|
1160
|
+
__v: 0,
|
|
1161
|
+
id: '65c3423378352b58fcbbaa05',
|
|
1162
|
+
},
|
|
1163
|
+
Tier3: {
|
|
1164
|
+
_id: '65c3423378352b58fcbbaa0e',
|
|
1165
|
+
Value: 'Yes',
|
|
1166
|
+
__v: 0,
|
|
1167
|
+
id: '65c3423378352b58fcbbaa0e',
|
|
1168
|
+
},
|
|
1169
|
+
Tier4: {
|
|
1170
|
+
_id: '65c3423378352b58fcbbaa16',
|
|
1171
|
+
Value: 'Yes',
|
|
1172
|
+
__v: 0,
|
|
1173
|
+
id: '65c3423378352b58fcbbaa16',
|
|
1174
|
+
},
|
|
1175
|
+
__v: 0,
|
|
1176
|
+
isActive: true,
|
|
1177
|
+
id: '65c25ba20847926f6899f02f',
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
_id: '65c25ba20847926f6899f030',
|
|
1181
|
+
Name: 'Project Context Creation Addon',
|
|
1182
|
+
Tier1: {
|
|
1183
|
+
_id: '65c3423278352b58fcbba9fe',
|
|
1184
|
+
Value: 'Yes',
|
|
1185
|
+
__v: 0,
|
|
1186
|
+
id: '65c3423278352b58fcbba9fe',
|
|
1187
|
+
},
|
|
1188
|
+
Tier2: {
|
|
1189
|
+
_id: '65c3423378352b58fcbbaa03',
|
|
1190
|
+
Value: 'Yes',
|
|
1191
|
+
__v: 0,
|
|
1192
|
+
id: '65c3423378352b58fcbbaa03',
|
|
1193
|
+
},
|
|
1194
|
+
Tier3: {
|
|
1195
|
+
_id: '65c3423378352b58fcbbaa0b',
|
|
1196
|
+
Value: 'Yes',
|
|
1197
|
+
__v: 0,
|
|
1198
|
+
id: '65c3423378352b58fcbbaa0b',
|
|
1199
|
+
},
|
|
1200
|
+
Tier4: {
|
|
1201
|
+
_id: '65c3423378352b58fcbbaa13',
|
|
1202
|
+
Value: 'Yes',
|
|
1203
|
+
__v: 0,
|
|
1204
|
+
id: '65c3423378352b58fcbbaa13',
|
|
1205
|
+
},
|
|
1206
|
+
__v: 0,
|
|
1207
|
+
isActive: true,
|
|
1208
|
+
id: '65c25ba20847926f6899f030',
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
_id: '65c25ba20847926f6899f031',
|
|
1212
|
+
Name: '20% off on Oda Refill',
|
|
1213
|
+
Tier1: {
|
|
1214
|
+
_id: '65c3423278352b58fcbba9fd',
|
|
1215
|
+
Value: 'No',
|
|
1216
|
+
__v: 0,
|
|
1217
|
+
id: '65c3423278352b58fcbba9fd',
|
|
1218
|
+
},
|
|
1219
|
+
Tier2: {
|
|
1220
|
+
_id: '65c3423378352b58fcbbaa04',
|
|
1221
|
+
Value: 'No',
|
|
1222
|
+
__v: 0,
|
|
1223
|
+
id: '65c3423378352b58fcbbaa04',
|
|
1224
|
+
},
|
|
1225
|
+
Tier3: {
|
|
1226
|
+
_id: '65c3423378352b58fcbbaa0c',
|
|
1227
|
+
Value: 'Yes',
|
|
1228
|
+
__v: 0,
|
|
1229
|
+
id: '65c3423378352b58fcbbaa0c',
|
|
1230
|
+
},
|
|
1231
|
+
Tier4: {
|
|
1232
|
+
_id: '65c3423378352b58fcbbaa15',
|
|
1233
|
+
Value: 'N/A',
|
|
1234
|
+
__v: 0,
|
|
1235
|
+
id: '65c3423378352b58fcbbaa15',
|
|
1236
|
+
},
|
|
1237
|
+
__v: 0,
|
|
1238
|
+
isActive: true,
|
|
1239
|
+
id: '65c25ba20847926f6899f031',
|
|
1240
|
+
},
|
|
1241
|
+
],
|
|
1242
|
+
CustomizationFeatures: [
|
|
1243
|
+
{
|
|
1244
|
+
_id: '65c25c0e0847926f6899f09d',
|
|
1245
|
+
Name: 'Custom Email Templates',
|
|
1246
|
+
Tier1: {
|
|
1247
|
+
_id: '65c346cb78352b58fcbbabd7',
|
|
1248
|
+
Value: 'No',
|
|
1249
|
+
__v: 0,
|
|
1250
|
+
id: '65c346cb78352b58fcbbabd7',
|
|
1251
|
+
},
|
|
1252
|
+
Tier2: {
|
|
1253
|
+
_id: '65c346cb78352b58fcbbabdc',
|
|
1254
|
+
Value: 'No',
|
|
1255
|
+
__v: 0,
|
|
1256
|
+
id: '65c346cb78352b58fcbbabdc',
|
|
1257
|
+
},
|
|
1258
|
+
Tier3: {
|
|
1259
|
+
_id: '65c346cb78352b58fcbbabe2',
|
|
1260
|
+
Value: 'Yes',
|
|
1261
|
+
__v: 0,
|
|
1262
|
+
id: '65c346cb78352b58fcbbabe2',
|
|
1263
|
+
},
|
|
1264
|
+
Tier4: {
|
|
1265
|
+
_id: '65c346cb78352b58fcbbabe7',
|
|
1266
|
+
Value: 'Yes',
|
|
1267
|
+
__v: 0,
|
|
1268
|
+
id: '65c346cb78352b58fcbbabe7',
|
|
1269
|
+
},
|
|
1270
|
+
__v: 0,
|
|
1271
|
+
isActive: true,
|
|
1272
|
+
id: '65c25c0e0847926f6899f09d',
|
|
1273
|
+
},
|
|
1274
|
+
{
|
|
1275
|
+
_id: '65c25c0e0847926f6899f09e',
|
|
1276
|
+
Name: 'White Label for Reports',
|
|
1277
|
+
Tier1: {
|
|
1278
|
+
_id: '65c346cb78352b58fcbbabd5',
|
|
1279
|
+
Value: 'No',
|
|
1280
|
+
__v: 0,
|
|
1281
|
+
id: '65c346cb78352b58fcbbabd5',
|
|
1282
|
+
},
|
|
1283
|
+
Tier2: {
|
|
1284
|
+
_id: '65c346cb78352b58fcbbabdd',
|
|
1285
|
+
Value: 'No',
|
|
1286
|
+
__v: 0,
|
|
1287
|
+
id: '65c346cb78352b58fcbbabdd',
|
|
1288
|
+
},
|
|
1289
|
+
Tier3: {
|
|
1290
|
+
_id: '65c346cb78352b58fcbbabe1',
|
|
1291
|
+
Value: 'Yes',
|
|
1292
|
+
__v: 0,
|
|
1293
|
+
id: '65c346cb78352b58fcbbabe1',
|
|
1294
|
+
},
|
|
1295
|
+
Tier4: {
|
|
1296
|
+
_id: '65c346cb78352b58fcbbabe8',
|
|
1297
|
+
Value: 'Yes',
|
|
1298
|
+
__v: 0,
|
|
1299
|
+
id: '65c346cb78352b58fcbbabe8',
|
|
1300
|
+
},
|
|
1301
|
+
__v: 0,
|
|
1302
|
+
isActive: true,
|
|
1303
|
+
id: '65c25c0e0847926f6899f09e',
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
_id: '65c25c0e0847926f6899f09f',
|
|
1307
|
+
Name: 'Custom NDA for Testers',
|
|
1308
|
+
Tier1: {
|
|
1309
|
+
_id: '65c346cb78352b58fcbbabd6',
|
|
1310
|
+
Value: 'No',
|
|
1311
|
+
__v: 0,
|
|
1312
|
+
id: '65c346cb78352b58fcbbabd6',
|
|
1313
|
+
},
|
|
1314
|
+
Tier2: {
|
|
1315
|
+
_id: '65c346cb78352b58fcbbabdb',
|
|
1316
|
+
Value: 'No',
|
|
1317
|
+
__v: 0,
|
|
1318
|
+
id: '65c346cb78352b58fcbbabdb',
|
|
1319
|
+
},
|
|
1320
|
+
Tier3: {
|
|
1321
|
+
_id: '65c346cb78352b58fcbbabe3',
|
|
1322
|
+
Value: 'Yes',
|
|
1323
|
+
__v: 0,
|
|
1324
|
+
id: '65c346cb78352b58fcbbabe3',
|
|
1325
|
+
},
|
|
1326
|
+
Tier4: {
|
|
1327
|
+
_id: '65c346cb78352b58fcbbabe9',
|
|
1328
|
+
Value: 'Yes',
|
|
1329
|
+
__v: 0,
|
|
1330
|
+
id: '65c346cb78352b58fcbbabe9',
|
|
1331
|
+
},
|
|
1332
|
+
__v: 0,
|
|
1333
|
+
isActive: true,
|
|
1334
|
+
id: '65c25c0e0847926f6899f09f',
|
|
1335
|
+
},
|
|
1336
|
+
],
|
|
1337
|
+
ReportingFeatures: [
|
|
1338
|
+
{
|
|
1339
|
+
_id: '65c25c3c0847926f6899f0d7',
|
|
1340
|
+
Name: 'Export to PDF / Slideshow',
|
|
1341
|
+
Tier1: {
|
|
1342
|
+
_id: '65c34baa78352b58fcbbaccd',
|
|
1343
|
+
Value: 'No',
|
|
1344
|
+
__v: 0,
|
|
1345
|
+
id: '65c34baa78352b58fcbbaccd',
|
|
1346
|
+
},
|
|
1347
|
+
Tier2: {
|
|
1348
|
+
_id: '65c34baa78352b58fcbbacd3',
|
|
1349
|
+
Value: 'Yes',
|
|
1350
|
+
__v: 0,
|
|
1351
|
+
id: '65c34baa78352b58fcbbacd3',
|
|
1352
|
+
},
|
|
1353
|
+
Tier3: {
|
|
1354
|
+
_id: '65c34baa78352b58fcbbacd9',
|
|
1355
|
+
Value: 'Yes',
|
|
1356
|
+
__v: 0,
|
|
1357
|
+
id: '65c34baa78352b58fcbbacd9',
|
|
1358
|
+
},
|
|
1359
|
+
Tier4: {
|
|
1360
|
+
_id: '65c34baa78352b58fcbbace0',
|
|
1361
|
+
Value: 'Yes',
|
|
1362
|
+
__v: 0,
|
|
1363
|
+
id: '65c34baa78352b58fcbbace0',
|
|
1364
|
+
},
|
|
1365
|
+
__v: 0,
|
|
1366
|
+
isActive: true,
|
|
1367
|
+
id: '65c25c3c0847926f6899f0d7',
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
_id: '65c25c3c0847926f6899f0d8',
|
|
1371
|
+
Name: 'Export Transcript',
|
|
1372
|
+
Tier1: {
|
|
1373
|
+
_id: '65c34baa78352b58fcbbaccf',
|
|
1374
|
+
Value: 'No',
|
|
1375
|
+
__v: 0,
|
|
1376
|
+
id: '65c34baa78352b58fcbbaccf',
|
|
1377
|
+
},
|
|
1378
|
+
Tier2: {
|
|
1379
|
+
_id: '65c34baa78352b58fcbbacd5',
|
|
1380
|
+
Value: 'Yes',
|
|
1381
|
+
__v: 0,
|
|
1382
|
+
id: '65c34baa78352b58fcbbacd5',
|
|
1383
|
+
},
|
|
1384
|
+
Tier3: {
|
|
1385
|
+
_id: '65c34baa78352b58fcbbacdb',
|
|
1386
|
+
Value: 'Yes',
|
|
1387
|
+
__v: 0,
|
|
1388
|
+
id: '65c34baa78352b58fcbbacdb',
|
|
1389
|
+
},
|
|
1390
|
+
Tier4: {
|
|
1391
|
+
_id: '65c34baa78352b58fcbbace1',
|
|
1392
|
+
Value: 'Yes',
|
|
1393
|
+
__v: 0,
|
|
1394
|
+
id: '65c34baa78352b58fcbbace1',
|
|
1395
|
+
},
|
|
1396
|
+
__v: 0,
|
|
1397
|
+
isActive: true,
|
|
1398
|
+
id: '65c25c3c0847926f6899f0d8',
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
_id: '65c25c3c0847926f6899f0d9',
|
|
1402
|
+
Name: 'Video Reel',
|
|
1403
|
+
Tier1: {
|
|
1404
|
+
_id: '65c34baa78352b58fcbbacce',
|
|
1405
|
+
Value: 'No',
|
|
1406
|
+
__v: 0,
|
|
1407
|
+
id: '65c34baa78352b58fcbbacce',
|
|
1408
|
+
},
|
|
1409
|
+
Tier2: {
|
|
1410
|
+
_id: '65c34baa78352b58fcbbacd4',
|
|
1411
|
+
Value: 'No',
|
|
1412
|
+
__v: 0,
|
|
1413
|
+
id: '65c34baa78352b58fcbbacd4',
|
|
1414
|
+
},
|
|
1415
|
+
Tier3: {
|
|
1416
|
+
_id: '65c34baa78352b58fcbbacda',
|
|
1417
|
+
Value: 'Yes',
|
|
1418
|
+
__v: 0,
|
|
1419
|
+
id: '65c34baa78352b58fcbbacda',
|
|
1420
|
+
},
|
|
1421
|
+
Tier4: {
|
|
1422
|
+
_id: '65c34baa78352b58fcbbacdf',
|
|
1423
|
+
Value: 'Yes',
|
|
1424
|
+
__v: 0,
|
|
1425
|
+
id: '65c34baa78352b58fcbbacdf',
|
|
1426
|
+
},
|
|
1427
|
+
__v: 0,
|
|
1428
|
+
isActive: true,
|
|
1429
|
+
id: '65c25c3c0847926f6899f0d9',
|
|
1430
|
+
},
|
|
1431
|
+
],
|
|
1432
|
+
SecurityFeatures: [
|
|
1433
|
+
{
|
|
1434
|
+
_id: '65c25d050847926f6899f153',
|
|
1435
|
+
Name: 'SSO Login',
|
|
1436
|
+
Tier1: {
|
|
1437
|
+
_id: '65c34cc278352b58fcbbaee0',
|
|
1438
|
+
Value: 'Yes',
|
|
1439
|
+
__v: 0,
|
|
1440
|
+
id: '65c34cc278352b58fcbbaee0',
|
|
1441
|
+
},
|
|
1442
|
+
Tier2: {
|
|
1443
|
+
_id: '65c34cc378352b58fcbbaeef',
|
|
1444
|
+
Value: 'Yes',
|
|
1445
|
+
__v: 0,
|
|
1446
|
+
id: '65c34cc378352b58fcbbaeef',
|
|
1447
|
+
},
|
|
1448
|
+
Tier3: {
|
|
1449
|
+
_id: '65c34cc378352b58fcbbaf00',
|
|
1450
|
+
Value: 'Yes',
|
|
1451
|
+
__v: 0,
|
|
1452
|
+
id: '65c34cc378352b58fcbbaf00',
|
|
1453
|
+
},
|
|
1454
|
+
Tier4: {
|
|
1455
|
+
_id: '65c34cc378352b58fcbbaf0f',
|
|
1456
|
+
Value: 'Yes',
|
|
1457
|
+
__v: 0,
|
|
1458
|
+
id: '65c34cc378352b58fcbbaf0f',
|
|
1459
|
+
},
|
|
1460
|
+
__v: 0,
|
|
1461
|
+
isActive: true,
|
|
1462
|
+
id: '65c25d050847926f6899f153',
|
|
1463
|
+
},
|
|
1464
|
+
{
|
|
1465
|
+
_id: '65c25d050847926f6899f154',
|
|
1466
|
+
Name: 'Recording Retention',
|
|
1467
|
+
Tier1: {
|
|
1468
|
+
_id: '65c34cc278352b58fcbbaedc',
|
|
1469
|
+
Value: '2',
|
|
1470
|
+
Sufix: 'weeks of retention',
|
|
1471
|
+
__v: 0,
|
|
1472
|
+
id: '65c34cc278352b58fcbbaedc',
|
|
1473
|
+
},
|
|
1474
|
+
Tier2: {
|
|
1475
|
+
_id: '65c34cc378352b58fcbbaeed',
|
|
1476
|
+
Value: '3',
|
|
1477
|
+
Sufix: 'years of retention',
|
|
1478
|
+
__v: 0,
|
|
1479
|
+
id: '65c34cc378352b58fcbbaeed',
|
|
1480
|
+
},
|
|
1481
|
+
Tier3: {
|
|
1482
|
+
_id: '65c34cc378352b58fcbbaefe',
|
|
1483
|
+
Sufix: 'years of retention',
|
|
1484
|
+
Value: '3',
|
|
1485
|
+
__v: 0,
|
|
1486
|
+
id: '65c34cc378352b58fcbbaefe',
|
|
1487
|
+
},
|
|
1488
|
+
Tier4: {
|
|
1489
|
+
_id: '65c34cc378352b58fcbbaf0d',
|
|
1490
|
+
Sufix: 'years of retention',
|
|
1491
|
+
Value: '3',
|
|
1492
|
+
__v: 0,
|
|
1493
|
+
id: '65c34cc378352b58fcbbaf0d',
|
|
1494
|
+
},
|
|
1495
|
+
__v: 0,
|
|
1496
|
+
isActive: true,
|
|
1497
|
+
id: '65c25d050847926f6899f154',
|
|
1498
|
+
},
|
|
1499
|
+
{
|
|
1500
|
+
_id: '65c25d050847926f6899f155',
|
|
1501
|
+
Name: 'Team Management Access',
|
|
1502
|
+
Tier1: {
|
|
1503
|
+
_id: '65c34cc278352b58fcbbaede',
|
|
1504
|
+
Value: 'No',
|
|
1505
|
+
__v: 0,
|
|
1506
|
+
id: '65c34cc278352b58fcbbaede',
|
|
1507
|
+
},
|
|
1508
|
+
Tier2: {
|
|
1509
|
+
_id: '65c34cc378352b58fcbbaef1',
|
|
1510
|
+
Value: 'Yes',
|
|
1511
|
+
__v: 0,
|
|
1512
|
+
id: '65c34cc378352b58fcbbaef1',
|
|
1513
|
+
},
|
|
1514
|
+
Tier3: {
|
|
1515
|
+
_id: '65c34cc378352b58fcbbaefd',
|
|
1516
|
+
Value: 'Yes',
|
|
1517
|
+
__v: 0,
|
|
1518
|
+
id: '65c34cc378352b58fcbbaefd',
|
|
1519
|
+
},
|
|
1520
|
+
Tier4: {
|
|
1521
|
+
_id: '65c34cc378352b58fcbbaf0b',
|
|
1522
|
+
Value: 'Yes',
|
|
1523
|
+
__v: 0,
|
|
1524
|
+
id: '65c34cc378352b58fcbbaf0b',
|
|
1525
|
+
},
|
|
1526
|
+
__v: 0,
|
|
1527
|
+
isActive: true,
|
|
1528
|
+
id: '65c25d050847926f6899f155',
|
|
1529
|
+
},
|
|
1530
|
+
{
|
|
1531
|
+
_id: '65c25d050847926f6899f156',
|
|
1532
|
+
Name: 'Granular Admin Role',
|
|
1533
|
+
Tier1: {
|
|
1534
|
+
_id: '65c34cc278352b58fcbbaedf',
|
|
1535
|
+
Value: 'No',
|
|
1536
|
+
__v: 0,
|
|
1537
|
+
id: '65c34cc278352b58fcbbaedf',
|
|
1538
|
+
},
|
|
1539
|
+
Tier2: {
|
|
1540
|
+
_id: '65c34cc378352b58fcbbaeec',
|
|
1541
|
+
Value: 'Yes',
|
|
1542
|
+
__v: 0,
|
|
1543
|
+
id: '65c34cc378352b58fcbbaeec',
|
|
1544
|
+
},
|
|
1545
|
+
Tier3: {
|
|
1546
|
+
_id: '65c34cc378352b58fcbbaeff',
|
|
1547
|
+
Value: 'Yes',
|
|
1548
|
+
__v: 0,
|
|
1549
|
+
id: '65c34cc378352b58fcbbaeff',
|
|
1550
|
+
},
|
|
1551
|
+
Tier4: {
|
|
1552
|
+
_id: '65c34cc378352b58fcbbaf11',
|
|
1553
|
+
Value: 'Yes',
|
|
1554
|
+
__v: 0,
|
|
1555
|
+
id: '65c34cc378352b58fcbbaf11',
|
|
1556
|
+
},
|
|
1557
|
+
__v: 0,
|
|
1558
|
+
isActive: true,
|
|
1559
|
+
id: '65c25d050847926f6899f156',
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
_id: '65c25d050847926f6899f157',
|
|
1563
|
+
Name: 'Two Factor Authentication',
|
|
1564
|
+
Tier1: {
|
|
1565
|
+
_id: '65c34cc278352b58fcbbaee1',
|
|
1566
|
+
Value: 'No',
|
|
1567
|
+
__v: 0,
|
|
1568
|
+
id: '65c34cc278352b58fcbbaee1',
|
|
1569
|
+
},
|
|
1570
|
+
Tier2: {
|
|
1571
|
+
_id: '65c34cc378352b58fcbbaef0',
|
|
1572
|
+
Value: 'No',
|
|
1573
|
+
__v: 0,
|
|
1574
|
+
id: '65c34cc378352b58fcbbaef0',
|
|
1575
|
+
},
|
|
1576
|
+
Tier3: {
|
|
1577
|
+
_id: '65c34cc378352b58fcbbaf01',
|
|
1578
|
+
Value: 'No',
|
|
1579
|
+
__v: 0,
|
|
1580
|
+
id: '65c34cc378352b58fcbbaf01',
|
|
1581
|
+
},
|
|
1582
|
+
Tier4: {
|
|
1583
|
+
_id: '65c34cc378352b58fcbbaf10',
|
|
1584
|
+
Value: 'Yes',
|
|
1585
|
+
__v: 0,
|
|
1586
|
+
id: '65c34cc378352b58fcbbaf10',
|
|
1587
|
+
},
|
|
1588
|
+
__v: 0,
|
|
1589
|
+
isActive: true,
|
|
1590
|
+
id: '65c25d050847926f6899f157',
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
_id: '65c25d050847926f6899f158',
|
|
1594
|
+
Name: 'User Anonymization',
|
|
1595
|
+
Tier1: {
|
|
1596
|
+
_id: '65c34cc278352b58fcbbaeda',
|
|
1597
|
+
Value: 'No',
|
|
1598
|
+
__v: 0,
|
|
1599
|
+
id: '65c34cc278352b58fcbbaeda',
|
|
1600
|
+
},
|
|
1601
|
+
Tier2: {
|
|
1602
|
+
_id: '65c34cc378352b58fcbbaeea',
|
|
1603
|
+
Value: 'No',
|
|
1604
|
+
__v: 0,
|
|
1605
|
+
id: '65c34cc378352b58fcbbaeea',
|
|
1606
|
+
},
|
|
1607
|
+
Tier3: {
|
|
1608
|
+
_id: '65c34cc378352b58fcbbaefb',
|
|
1609
|
+
Value: 'No',
|
|
1610
|
+
__v: 0,
|
|
1611
|
+
id: '65c34cc378352b58fcbbaefb',
|
|
1612
|
+
},
|
|
1613
|
+
Tier4: {
|
|
1614
|
+
_id: '65c34cc378352b58fcbbaf0a',
|
|
1615
|
+
Value: 'Yes',
|
|
1616
|
+
__v: 0,
|
|
1617
|
+
id: '65c34cc378352b58fcbbaf0a',
|
|
1618
|
+
},
|
|
1619
|
+
__v: 0,
|
|
1620
|
+
isActive: true,
|
|
1621
|
+
id: '65c25d050847926f6899f158',
|
|
1622
|
+
},
|
|
1623
|
+
{
|
|
1624
|
+
_id: '65c25d050847926f6899f159',
|
|
1625
|
+
Name: 'SAML-Based single sign-on',
|
|
1626
|
+
Tier1: {
|
|
1627
|
+
_id: '65c34cc278352b58fcbbaedb',
|
|
1628
|
+
Value: 'No',
|
|
1629
|
+
__v: 0,
|
|
1630
|
+
id: '65c34cc278352b58fcbbaedb',
|
|
1631
|
+
},
|
|
1632
|
+
Tier2: {
|
|
1633
|
+
_id: '65c34cc378352b58fcbbaeee',
|
|
1634
|
+
Value: 'No',
|
|
1635
|
+
__v: 0,
|
|
1636
|
+
id: '65c34cc378352b58fcbbaeee',
|
|
1637
|
+
},
|
|
1638
|
+
Tier3: {
|
|
1639
|
+
_id: '65c34cc378352b58fcbbaefc',
|
|
1640
|
+
Value: 'No',
|
|
1641
|
+
__v: 0,
|
|
1642
|
+
id: '65c34cc378352b58fcbbaefc',
|
|
1643
|
+
},
|
|
1644
|
+
Tier4: {
|
|
1645
|
+
_id: '65c34cc378352b58fcbbaf0e',
|
|
1646
|
+
Value: 'Yes',
|
|
1647
|
+
__v: 0,
|
|
1648
|
+
id: '65c34cc378352b58fcbbaf0e',
|
|
1649
|
+
},
|
|
1650
|
+
__v: 0,
|
|
1651
|
+
isActive: true,
|
|
1652
|
+
id: '65c25d050847926f6899f159',
|
|
1653
|
+
},
|
|
1654
|
+
{
|
|
1655
|
+
_id: '65c25d050847926f6899f15a',
|
|
1656
|
+
Name: 'Custom Security Review',
|
|
1657
|
+
Tier1: {
|
|
1658
|
+
_id: '65c34cc278352b58fcbbaedd',
|
|
1659
|
+
Value: 'No',
|
|
1660
|
+
__v: 0,
|
|
1661
|
+
id: '65c34cc278352b58fcbbaedd',
|
|
1662
|
+
},
|
|
1663
|
+
Tier2: {
|
|
1664
|
+
_id: '65c34cc378352b58fcbbaeeb',
|
|
1665
|
+
Value: 'No',
|
|
1666
|
+
__v: 0,
|
|
1667
|
+
id: '65c34cc378352b58fcbbaeeb',
|
|
1668
|
+
},
|
|
1669
|
+
Tier3: {
|
|
1670
|
+
_id: '65c34cc378352b58fcbbaefa',
|
|
1671
|
+
Value: 'No',
|
|
1672
|
+
__v: 0,
|
|
1673
|
+
id: '65c34cc378352b58fcbbaefa',
|
|
1674
|
+
},
|
|
1675
|
+
Tier4: {
|
|
1676
|
+
_id: '65c34cc378352b58fcbbaf0c',
|
|
1677
|
+
Value: 'Yes',
|
|
1678
|
+
__v: 0,
|
|
1679
|
+
id: '65c34cc378352b58fcbbaf0c',
|
|
1680
|
+
},
|
|
1681
|
+
__v: 0,
|
|
1682
|
+
isActive: true,
|
|
1683
|
+
id: '65c25d050847926f6899f15a',
|
|
1684
|
+
},
|
|
1685
|
+
],
|
|
1686
|
+
SupportFeatures: [
|
|
1687
|
+
{
|
|
1688
|
+
_id: '65c25d480847926f6899f1a6',
|
|
1689
|
+
Name: '24/7 Ressource Center',
|
|
1690
|
+
Tier1: {
|
|
1691
|
+
_id: '65c34f9378352b58fcbbb03d',
|
|
1692
|
+
Value: 'Yes',
|
|
1693
|
+
__v: 0,
|
|
1694
|
+
id: '65c34f9378352b58fcbbb03d',
|
|
1695
|
+
},
|
|
1696
|
+
Tier2: {
|
|
1697
|
+
_id: '65c34f9378352b58fcbbb047',
|
|
1698
|
+
Value: 'Yes',
|
|
1699
|
+
__v: 0,
|
|
1700
|
+
id: '65c34f9378352b58fcbbb047',
|
|
1701
|
+
},
|
|
1702
|
+
Tier3: {
|
|
1703
|
+
_id: '65c34f9378352b58fcbbb051',
|
|
1704
|
+
Value: 'Yes',
|
|
1705
|
+
__v: 0,
|
|
1706
|
+
id: '65c34f9378352b58fcbbb051',
|
|
1707
|
+
},
|
|
1708
|
+
Tier4: {
|
|
1709
|
+
_id: '65c34f9378352b58fcbbb05b',
|
|
1710
|
+
Value: 'Yes',
|
|
1711
|
+
__v: 0,
|
|
1712
|
+
id: '65c34f9378352b58fcbbb05b',
|
|
1713
|
+
},
|
|
1714
|
+
__v: 0,
|
|
1715
|
+
isActive: true,
|
|
1716
|
+
id: '65c25d480847926f6899f1a6',
|
|
1717
|
+
},
|
|
1718
|
+
{
|
|
1719
|
+
_id: '65c25d480847926f6899f1a7',
|
|
1720
|
+
Name: 'Mail Support',
|
|
1721
|
+
Tier1: {
|
|
1722
|
+
_id: '65c34f9378352b58fcbbb03c',
|
|
1723
|
+
Value: 'No',
|
|
1724
|
+
__v: 0,
|
|
1725
|
+
id: '65c34f9378352b58fcbbb03c',
|
|
1726
|
+
},
|
|
1727
|
+
Tier2: {
|
|
1728
|
+
_id: '65c34f9378352b58fcbbb046',
|
|
1729
|
+
Value: 'Yes',
|
|
1730
|
+
__v: 0,
|
|
1731
|
+
id: '65c34f9378352b58fcbbb046',
|
|
1732
|
+
},
|
|
1733
|
+
Tier3: {
|
|
1734
|
+
_id: '65c34f9378352b58fcbbb050',
|
|
1735
|
+
Value: 'Yes',
|
|
1736
|
+
__v: 0,
|
|
1737
|
+
id: '65c34f9378352b58fcbbb050',
|
|
1738
|
+
},
|
|
1739
|
+
Tier4: {
|
|
1740
|
+
_id: '65c34f9378352b58fcbbb05a',
|
|
1741
|
+
Value: 'Yes',
|
|
1742
|
+
__v: 0,
|
|
1743
|
+
id: '65c34f9378352b58fcbbb05a',
|
|
1744
|
+
},
|
|
1745
|
+
__v: 0,
|
|
1746
|
+
isActive: true,
|
|
1747
|
+
id: '65c25d480847926f6899f1a7',
|
|
1748
|
+
},
|
|
1749
|
+
{
|
|
1750
|
+
_id: '65c25d480847926f6899f1a8',
|
|
1751
|
+
Name: 'Customer Success Manager',
|
|
1752
|
+
Tier1: {
|
|
1753
|
+
_id: '65c34f9378352b58fcbbb03b',
|
|
1754
|
+
Value: 'No',
|
|
1755
|
+
__v: 0,
|
|
1756
|
+
id: '65c34f9378352b58fcbbb03b',
|
|
1757
|
+
},
|
|
1758
|
+
Tier2: {
|
|
1759
|
+
_id: '65c34f9378352b58fcbbb045',
|
|
1760
|
+
Value: 'Yes',
|
|
1761
|
+
__v: 0,
|
|
1762
|
+
id: '65c34f9378352b58fcbbb045',
|
|
1763
|
+
},
|
|
1764
|
+
Tier3: {
|
|
1765
|
+
_id: '65c34f9378352b58fcbbb04f',
|
|
1766
|
+
Value: 'Yes',
|
|
1767
|
+
__v: 0,
|
|
1768
|
+
id: '65c34f9378352b58fcbbb04f',
|
|
1769
|
+
},
|
|
1770
|
+
Tier4: {
|
|
1771
|
+
_id: '65c34f9378352b58fcbbb059',
|
|
1772
|
+
Value: 'Yes',
|
|
1773
|
+
__v: 0,
|
|
1774
|
+
id: '65c34f9378352b58fcbbb059',
|
|
1775
|
+
},
|
|
1776
|
+
__v: 0,
|
|
1777
|
+
isActive: true,
|
|
1778
|
+
id: '65c25d480847926f6899f1a8',
|
|
1779
|
+
},
|
|
1780
|
+
{
|
|
1781
|
+
_id: '65c25d480847926f6899f1a9',
|
|
1782
|
+
Name: 'Onboarding & Corporate Services',
|
|
1783
|
+
Tier1: {
|
|
1784
|
+
_id: '65c34f9378352b58fcbbb03e',
|
|
1785
|
+
Value: 'No',
|
|
1786
|
+
Sufix: '(Onboarding videos only)',
|
|
1787
|
+
__v: 0,
|
|
1788
|
+
id: '65c34f9378352b58fcbbb03e',
|
|
1789
|
+
},
|
|
1790
|
+
Tier2: {
|
|
1791
|
+
_id: '65c34f9378352b58fcbbb049',
|
|
1792
|
+
Value: 'Yes',
|
|
1793
|
+
__v: 0,
|
|
1794
|
+
id: '65c34f9378352b58fcbbb049',
|
|
1795
|
+
},
|
|
1796
|
+
Tier3: {
|
|
1797
|
+
_id: '65c34f9378352b58fcbbb052',
|
|
1798
|
+
Value: 'Yes',
|
|
1799
|
+
__v: 0,
|
|
1800
|
+
id: '65c34f9378352b58fcbbb052',
|
|
1801
|
+
},
|
|
1802
|
+
Tier4: {
|
|
1803
|
+
_id: '65c34f9378352b58fcbbb05c',
|
|
1804
|
+
Value: 'Yes',
|
|
1805
|
+
__v: 0,
|
|
1806
|
+
id: '65c34f9378352b58fcbbb05c',
|
|
1807
|
+
},
|
|
1808
|
+
__v: 0,
|
|
1809
|
+
isActive: true,
|
|
1810
|
+
id: '65c25d480847926f6899f1a9',
|
|
1811
|
+
},
|
|
1812
|
+
{
|
|
1813
|
+
_id: '65c25d480847926f6899f1aa',
|
|
1814
|
+
Name: 'Priority Support',
|
|
1815
|
+
Tier1: {
|
|
1816
|
+
_id: '65c34f9378352b58fcbbb03f',
|
|
1817
|
+
Value: 'No',
|
|
1818
|
+
__v: 0,
|
|
1819
|
+
id: '65c34f9378352b58fcbbb03f',
|
|
1820
|
+
},
|
|
1821
|
+
Tier2: {
|
|
1822
|
+
_id: '65c34f9378352b58fcbbb048',
|
|
1823
|
+
Value: 'No',
|
|
1824
|
+
__v: 0,
|
|
1825
|
+
id: '65c34f9378352b58fcbbb048',
|
|
1826
|
+
},
|
|
1827
|
+
Tier3: {
|
|
1828
|
+
_id: '65c34f9378352b58fcbbb053',
|
|
1829
|
+
Value: 'No',
|
|
1830
|
+
__v: 0,
|
|
1831
|
+
id: '65c34f9378352b58fcbbb053',
|
|
1832
|
+
},
|
|
1833
|
+
Tier4: {
|
|
1834
|
+
_id: '65c34f9378352b58fcbbb05d',
|
|
1835
|
+
Value: 'Yes',
|
|
1836
|
+
__v: 0,
|
|
1837
|
+
id: '65c34f9378352b58fcbbb05d',
|
|
1838
|
+
},
|
|
1839
|
+
__v: 0,
|
|
1840
|
+
isActive: true,
|
|
1841
|
+
id: '65c25d480847926f6899f1aa',
|
|
1842
|
+
},
|
|
1843
|
+
],
|
|
1844
|
+
AdvicingFeatures: [
|
|
1845
|
+
{
|
|
1846
|
+
_id: '65c25da40847926f6899f1f8',
|
|
1847
|
+
Name: 'Customer Experience Manager',
|
|
1848
|
+
Tier1: {
|
|
1849
|
+
_id: '65c34fd578352b58fcbbb195',
|
|
1850
|
+
Value: 'No',
|
|
1851
|
+
__v: 0,
|
|
1852
|
+
id: '65c34fd578352b58fcbbb195',
|
|
1853
|
+
},
|
|
1854
|
+
Tier2: {
|
|
1855
|
+
_id: '65c34fd578352b58fcbbb197',
|
|
1856
|
+
Value: 'No',
|
|
1857
|
+
__v: 0,
|
|
1858
|
+
id: '65c34fd578352b58fcbbb197',
|
|
1859
|
+
},
|
|
1860
|
+
Tier3: {
|
|
1861
|
+
_id: '65c34fd578352b58fcbbb199',
|
|
1862
|
+
Value: 'No',
|
|
1863
|
+
__v: 0,
|
|
1864
|
+
id: '65c34fd578352b58fcbbb199',
|
|
1865
|
+
},
|
|
1866
|
+
Tier4: {
|
|
1867
|
+
_id: '65c34fd578352b58fcbbb19b',
|
|
1868
|
+
Prefix: 'Up to',
|
|
1869
|
+
Value: '120 days of Work',
|
|
1870
|
+
__v: 0,
|
|
1871
|
+
id: '65c34fd578352b58fcbbb19b',
|
|
1872
|
+
},
|
|
1873
|
+
__v: 0,
|
|
1874
|
+
isActive: true,
|
|
1875
|
+
id: '65c25da40847926f6899f1f8',
|
|
1876
|
+
},
|
|
1877
|
+
],
|
|
1878
|
+
ExtraFeatures: [
|
|
1879
|
+
{
|
|
1880
|
+
_id: '65c25da40847926f6899f1fa',
|
|
1881
|
+
Name: 'Early access to BETA functionalities',
|
|
1882
|
+
Tier1: {
|
|
1883
|
+
_id: '65c34fd678352b58fcbbb19e',
|
|
1884
|
+
Value: 'No',
|
|
1885
|
+
__v: 0,
|
|
1886
|
+
id: '65c34fd678352b58fcbbb19e',
|
|
1887
|
+
},
|
|
1888
|
+
Tier2: {
|
|
1889
|
+
_id: '65c34fd678352b58fcbbb1a0',
|
|
1890
|
+
Value: 'No',
|
|
1891
|
+
__v: 0,
|
|
1892
|
+
id: '65c34fd678352b58fcbbb1a0',
|
|
1893
|
+
},
|
|
1894
|
+
Tier3: {
|
|
1895
|
+
_id: '65c34fd678352b58fcbbb1a2',
|
|
1896
|
+
Value: 'No',
|
|
1897
|
+
__v: 0,
|
|
1898
|
+
id: '65c34fd678352b58fcbbb1a2',
|
|
1899
|
+
},
|
|
1900
|
+
Tier4: {
|
|
1901
|
+
_id: '65c34fd678352b58fcbbb1a4',
|
|
1902
|
+
Value: 'Yes',
|
|
1903
|
+
__v: 0,
|
|
1904
|
+
id: '65c34fd678352b58fcbbb1a4',
|
|
1905
|
+
},
|
|
1906
|
+
__v: 0,
|
|
1907
|
+
isActive: true,
|
|
1908
|
+
id: '65c25da40847926f6899f1fa',
|
|
1909
|
+
},
|
|
1910
|
+
],
|
|
1911
|
+
SharingFeatures: [
|
|
1912
|
+
{
|
|
1913
|
+
_id: '65c25ca10847926f6899f114',
|
|
1914
|
+
Name: 'Collaborative Reporting Tool',
|
|
1915
|
+
Tier1: {
|
|
1916
|
+
_id: '65c34c0378352b58fcbbade1',
|
|
1917
|
+
Value: 'Yes',
|
|
1918
|
+
__v: 0,
|
|
1919
|
+
id: '65c34c0378352b58fcbbade1',
|
|
1920
|
+
},
|
|
1921
|
+
Tier2: {
|
|
1922
|
+
_id: '65c34c0378352b58fcbbadea',
|
|
1923
|
+
Value: 'Yes',
|
|
1924
|
+
__v: 0,
|
|
1925
|
+
id: '65c34c0378352b58fcbbadea',
|
|
1926
|
+
},
|
|
1927
|
+
Tier3: {
|
|
1928
|
+
_id: '65c34c0478352b58fcbbadf2',
|
|
1929
|
+
Value: 'Yes',
|
|
1930
|
+
__v: 0,
|
|
1931
|
+
id: '65c34c0478352b58fcbbadf2',
|
|
1932
|
+
},
|
|
1933
|
+
Tier4: {
|
|
1934
|
+
_id: '65c34c0478352b58fcbbadfb',
|
|
1935
|
+
Value: 'Yes',
|
|
1936
|
+
__v: 0,
|
|
1937
|
+
id: '65c34c0478352b58fcbbadfb',
|
|
1938
|
+
},
|
|
1939
|
+
__v: 0,
|
|
1940
|
+
isActive: true,
|
|
1941
|
+
id: '65c25ca10847926f6899f114',
|
|
1942
|
+
},
|
|
1943
|
+
{
|
|
1944
|
+
_id: '65c25ca10847926f6899f115',
|
|
1945
|
+
Name: 'Report accessing via secure link',
|
|
1946
|
+
Tier1: {
|
|
1947
|
+
_id: '65c34c0378352b58fcbbade0',
|
|
1948
|
+
Value: 'No',
|
|
1949
|
+
__v: 0,
|
|
1950
|
+
id: '65c34c0378352b58fcbbade0',
|
|
1951
|
+
},
|
|
1952
|
+
Tier2: {
|
|
1953
|
+
_id: '65c34c0378352b58fcbbade8',
|
|
1954
|
+
Value: 'Yes',
|
|
1955
|
+
__v: 0,
|
|
1956
|
+
id: '65c34c0378352b58fcbbade8',
|
|
1957
|
+
},
|
|
1958
|
+
Tier3: {
|
|
1959
|
+
_id: '65c34c0478352b58fcbbadf3',
|
|
1960
|
+
Value: 'Yes',
|
|
1961
|
+
__v: 0,
|
|
1962
|
+
id: '65c34c0478352b58fcbbadf3',
|
|
1963
|
+
},
|
|
1964
|
+
Tier4: {
|
|
1965
|
+
_id: '65c34c0478352b58fcbbadfa',
|
|
1966
|
+
Value: 'Yes',
|
|
1967
|
+
__v: 0,
|
|
1968
|
+
id: '65c34c0478352b58fcbbadfa',
|
|
1969
|
+
},
|
|
1970
|
+
__v: 0,
|
|
1971
|
+
isActive: true,
|
|
1972
|
+
id: '65c25ca10847926f6899f115',
|
|
1973
|
+
},
|
|
1974
|
+
{
|
|
1975
|
+
_id: '65c25ca10847926f6899f116',
|
|
1976
|
+
Name: 'Mention team members @',
|
|
1977
|
+
Tier1: {
|
|
1978
|
+
_id: '65c34c0378352b58fcbbade2',
|
|
1979
|
+
Value: 'No',
|
|
1980
|
+
__v: 0,
|
|
1981
|
+
id: '65c34c0378352b58fcbbade2',
|
|
1982
|
+
},
|
|
1983
|
+
Tier2: {
|
|
1984
|
+
_id: '65c34c0378352b58fcbbade9',
|
|
1985
|
+
Value: 'Yes',
|
|
1986
|
+
__v: 0,
|
|
1987
|
+
id: '65c34c0378352b58fcbbade9',
|
|
1988
|
+
},
|
|
1989
|
+
Tier3: {
|
|
1990
|
+
_id: '65c34c0478352b58fcbbadf0',
|
|
1991
|
+
Value: 'Yes',
|
|
1992
|
+
__v: 0,
|
|
1993
|
+
id: '65c34c0478352b58fcbbadf0',
|
|
1994
|
+
},
|
|
1995
|
+
Tier4: {
|
|
1996
|
+
_id: '65c34c0478352b58fcbbadf8',
|
|
1997
|
+
Value: 'Yes',
|
|
1998
|
+
__v: 0,
|
|
1999
|
+
id: '65c34c0478352b58fcbbadf8',
|
|
2000
|
+
},
|
|
2001
|
+
__v: 0,
|
|
2002
|
+
isActive: true,
|
|
2003
|
+
id: '65c25ca10847926f6899f116',
|
|
2004
|
+
},
|
|
2005
|
+
{
|
|
2006
|
+
_id: '65c25ca10847926f6899f117',
|
|
2007
|
+
Name: 'Research Repository',
|
|
2008
|
+
Tier1: {
|
|
2009
|
+
_id: '65c34c0378352b58fcbbade3',
|
|
2010
|
+
Value: 'No',
|
|
2011
|
+
__v: 0,
|
|
2012
|
+
id: '65c34c0378352b58fcbbade3',
|
|
2013
|
+
},
|
|
2014
|
+
Tier2: {
|
|
2015
|
+
_id: '65c34c0378352b58fcbbadeb',
|
|
2016
|
+
Value: 'Yes',
|
|
2017
|
+
__v: 0,
|
|
2018
|
+
id: '65c34c0378352b58fcbbadeb',
|
|
2019
|
+
},
|
|
2020
|
+
Tier3: {
|
|
2021
|
+
_id: '65c34c0478352b58fcbbadf1',
|
|
2022
|
+
Value: 'Yes',
|
|
2023
|
+
__v: 0,
|
|
2024
|
+
id: '65c34c0478352b58fcbbadf1',
|
|
2025
|
+
},
|
|
2026
|
+
Tier4: {
|
|
2027
|
+
_id: '65c34c0478352b58fcbbadf9',
|
|
2028
|
+
Value: 'Yes',
|
|
2029
|
+
__v: 0,
|
|
2030
|
+
id: '65c34c0478352b58fcbbadf9',
|
|
2031
|
+
},
|
|
2032
|
+
__v: 0,
|
|
2033
|
+
isActive: true,
|
|
2034
|
+
id: '65c25ca10847926f6899f117',
|
|
2035
|
+
},
|
|
2036
|
+
],
|
|
2037
|
+
createdAt: '2024-02-06T14:57:54.013Z',
|
|
2038
|
+
updatedAt: '2024-02-13T21:29:32.541Z',
|
|
2039
|
+
__v: 2,
|
|
2040
|
+
SectionsTitleMapping: [
|
|
2041
|
+
{
|
|
2042
|
+
_id: '65cbdf3b94cd4767fc2444d7',
|
|
2043
|
+
Id: 'CoreFeatures',
|
|
2044
|
+
Title: 'Core Features',
|
|
2045
|
+
__v: 0,
|
|
2046
|
+
id: '65cbdf3b94cd4767fc2444d7',
|
|
2047
|
+
},
|
|
2048
|
+
{
|
|
2049
|
+
_id: '65cbdf3b94cd4767fc2444d8',
|
|
2050
|
+
Id: 'AnalysisFeatures',
|
|
2051
|
+
Title: 'Analysis Features',
|
|
2052
|
+
__v: 0,
|
|
2053
|
+
id: '65cbdf3b94cd4767fc2444d8',
|
|
2054
|
+
},
|
|
2055
|
+
{
|
|
2056
|
+
_id: '65cbdf3b94cd4767fc2444d9',
|
|
2057
|
+
Id: 'AIFeatures',
|
|
2058
|
+
Title: 'AI Features',
|
|
2059
|
+
__v: 0,
|
|
2060
|
+
id: '65cbdf3b94cd4767fc2444d9',
|
|
2061
|
+
},
|
|
2062
|
+
{
|
|
2063
|
+
_id: '65cbdf3b94cd4767fc2444da',
|
|
2064
|
+
Id: 'UserPanelFeatures',
|
|
2065
|
+
Title: 'User Panel',
|
|
2066
|
+
__v: 0,
|
|
2067
|
+
id: '65cbdf3b94cd4767fc2444da',
|
|
2068
|
+
},
|
|
2069
|
+
{
|
|
2070
|
+
_id: '65cbdf3b94cd4767fc2444db',
|
|
2071
|
+
Id: 'CustomizationFeatures',
|
|
2072
|
+
Title: 'Customization',
|
|
2073
|
+
__v: 0,
|
|
2074
|
+
id: '65cbdf3b94cd4767fc2444db',
|
|
2075
|
+
},
|
|
2076
|
+
{
|
|
2077
|
+
_id: '65cbdf3b94cd4767fc2444dc',
|
|
2078
|
+
Id: 'ReportingFeatures',
|
|
2079
|
+
Title: 'Reporting',
|
|
2080
|
+
__v: 0,
|
|
2081
|
+
id: '65cbdf3b94cd4767fc2444dc',
|
|
2082
|
+
},
|
|
2083
|
+
{
|
|
2084
|
+
_id: '65cbdf3b94cd4767fc2444dd',
|
|
2085
|
+
Id: 'SharingFeatures',
|
|
2086
|
+
Title: 'Sharing',
|
|
2087
|
+
__v: 0,
|
|
2088
|
+
id: '65cbdf3b94cd4767fc2444dd',
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
_id: '65cbdf3b94cd4767fc2444de',
|
|
2092
|
+
Id: 'SecurityFeatures',
|
|
2093
|
+
Title: 'Security',
|
|
2094
|
+
__v: 0,
|
|
2095
|
+
id: '65cbdf3b94cd4767fc2444de',
|
|
2096
|
+
},
|
|
2097
|
+
{
|
|
2098
|
+
_id: '65cbdf3b94cd4767fc2444df',
|
|
2099
|
+
Id: 'SupportFeatures',
|
|
2100
|
+
Title: 'Support',
|
|
2101
|
+
__v: 0,
|
|
2102
|
+
id: '65cbdf3b94cd4767fc2444df',
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
_id: '65cbdf3b94cd4767fc2444e0',
|
|
2106
|
+
Id: 'AdvicingFeatures',
|
|
2107
|
+
Title: 'Conseil',
|
|
2108
|
+
__v: 0,
|
|
2109
|
+
id: '65cbdf3b94cd4767fc2444e0',
|
|
2110
|
+
},
|
|
2111
|
+
{
|
|
2112
|
+
_id: '65cbdf3b94cd4767fc2444e1',
|
|
2113
|
+
Id: 'ExtraFeatures',
|
|
2114
|
+
Title: 'Extras',
|
|
2115
|
+
__v: 0,
|
|
2116
|
+
id: '65cbdf3b94cd4767fc2444e1',
|
|
2117
|
+
},
|
|
2118
|
+
],
|
|
2119
|
+
id: '65c248f2a4111f0c64a2bf98',
|
|
2120
|
+
};
|