@nyuccl/smile 0.2.0-beta.4 → 0.2.0-beta.41
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/dist/module.json +1 -1
- package/dist/module.mjs +109 -21
- package/dist/runtime/components/builtins/AdvertisementView.d.vue.ts +13 -1
- package/dist/runtime/components/builtins/AdvertisementView.vue +7 -3
- package/dist/runtime/components/builtins/AdvertisementView.vue.d.ts +13 -1
- package/dist/runtime/components/builtins/DebriefView.vue +3 -1
- package/dist/runtime/components/builtins/DemographicSurveyView.vue +8 -6
- package/dist/runtime/components/builtins/DeviceSurveyView.vue +5 -3
- package/dist/runtime/components/builtins/ExpView.vue +4 -2
- package/dist/runtime/components/builtins/ExperimentStatusBar.vue +3 -0
- package/dist/runtime/components/builtins/FavoriteColor.vue +3 -1
- package/dist/runtime/components/builtins/FavoriteNumber.vue +3 -1
- package/dist/runtime/components/builtins/InformedConsentModal.vue +5 -3
- package/dist/runtime/components/builtins/InformedConsentView.vue +3 -2
- package/dist/runtime/components/builtins/InstructionsQuiz.vue +7 -5
- package/dist/runtime/components/builtins/InstructionsView.vue +5 -3
- package/dist/runtime/components/builtins/LocalDevBanner.vue +16 -0
- package/dist/runtime/components/builtins/MTurkRecruitView.vue +4 -3
- package/dist/runtime/components/builtins/PresentationModeView.vue +9 -8
- package/dist/runtime/components/builtins/StatusBar.vue +7 -4
- package/dist/runtime/components/builtins/StudyPreviewText.vue +12 -10
- package/dist/runtime/components/builtins/TaskFeedbackSurveyView.vue +3 -1
- package/dist/runtime/components/builtins/ThanksView.vue +22 -21
- package/dist/runtime/components/builtins/WindowSizerView.vue +5 -3
- package/dist/runtime/components/builtins/WithdrawModal.vue +9 -7
- package/dist/runtime/components/builtins/WithdrawView.vue +4 -2
- package/dist/runtime/components/dev/RecruitmentChooserView.vue +532 -224
- package/dist/runtime/components/dev/ResponsiveDeviceContainer.vue +17 -8
- package/dist/runtime/components/dev/SmileDevPresentationView.vue +83 -0
- package/dist/runtime/components/dev/console/ConfigList.vue +14 -11
- package/dist/runtime/components/dev/console/ConsoleConfigPanel.vue +28 -7
- package/dist/runtime/components/dev/console/ConsoleDatabaseBrowsePanel.vue +6 -4
- package/dist/runtime/components/dev/console/ConsoleLogPanel.vue +68 -23
- package/dist/runtime/components/dev/console/DatabaseList.vue +9 -7
- package/dist/runtime/components/dev/console/SmileDevConsole.vue +7 -5
- package/dist/runtime/components/dev/devicePresets.d.ts +4 -4
- package/dist/runtime/components/dev/devicePresets.js +4 -4
- package/dist/runtime/components/dev/menu/DevConfigPanel.vue +3 -1
- package/dist/runtime/components/dev/menu/ResponsiveDeviceSelect.vue +1 -0
- package/dist/runtime/components/dev/menu/SmileDevAppMenu.vue +27 -24
- package/dist/runtime/components/dev/navbar/ColorModeButton.vue +5 -3
- package/dist/runtime/components/dev/navbar/DatabaseButtonGroup.vue +8 -6
- package/dist/runtime/components/dev/navbar/FullScreenButton.vue +4 -2
- package/dist/runtime/components/dev/navbar/KeyCommandNotification.vue +1 -1
- package/dist/runtime/components/dev/navbar/PanelButtonGroup.d.vue.ts +3 -0
- package/dist/runtime/components/dev/navbar/PanelButtonGroup.vue +79 -0
- package/dist/runtime/components/dev/navbar/PanelButtonGroup.vue.d.ts +3 -0
- package/dist/runtime/components/dev/navbar/ReloadButton.vue +3 -1
- package/dist/runtime/components/dev/navbar/ResetButton.vue +3 -1
- package/dist/runtime/components/dev/navbar/RouteJumper.vue +9 -5
- package/dist/runtime/components/dev/navbar/SmileDevNavBar.vue +19 -27
- package/dist/runtime/components/dev/navbar/StepInfoButtonGroup.vue +5 -3
- package/dist/runtime/components/dev/navbar/ViewInfoButtonGroup.vue +13 -10
- package/dist/runtime/components/dev/presentation/DarkModeButton.vue +5 -3
- package/dist/runtime/components/dev/presentation/LogoutButton.vue +2 -1
- package/dist/runtime/components/dev/presentation/PresentationModeResetButton.vue +11 -2
- package/dist/runtime/components/dev/presentation/PresentationNavBar.d.vue.ts +13 -1
- package/dist/runtime/components/dev/presentation/PresentationNavBar.vue +13 -6
- package/dist/runtime/components/dev/presentation/PresentationNavBar.vue.d.ts +13 -1
- package/dist/runtime/components/dev/presentation/QRCodeButton.vue +4 -2
- package/dist/runtime/components/dev/sidebar/AppProgressPanel.vue +23 -21
- package/dist/runtime/components/dev/sidebar/ConfigurationVariablesPanel.vue +7 -5
- package/dist/runtime/components/dev/sidebar/DatabaseStatusInfoPanel.vue +27 -7
- package/dist/runtime/components/dev/sidebar/RandomizationSidebarPanel.vue +9 -5
- package/dist/runtime/components/dev/sidebar/SmileDevSideBar.vue +12 -5
- package/dist/runtime/components/dev/sidebar/StepDataViewer.d.vue.ts +2 -2
- package/dist/runtime/components/dev/sidebar/StepDataViewer.vue +1 -1
- package/dist/runtime/components/dev/sidebar/StepDataViewer.vue.d.ts +2 -2
- package/dist/runtime/components/dev/sidebar/StepExplorerPanel.vue +13 -8
- package/dist/runtime/components/dev/sidebar/StepNode.vue +7 -5
- package/dist/runtime/components/dev/sidebar/StudyInfoPanel.vue +3 -2
- package/dist/runtime/components/forms/MonthYearDayPicker.vue +1 -0
- package/dist/runtime/components/layouts/ConstrainedPage.d.vue.ts +1 -1
- package/dist/runtime/components/layouts/ConstrainedPage.vue.d.ts +1 -1
- package/dist/runtime/components/layouts/ConstrainedTaskWindow.d.vue.ts +2 -2
- package/dist/runtime/components/layouts/ConstrainedTaskWindow.vue +1 -1
- package/dist/runtime/components/layouts/ConstrainedTaskWindow.vue.d.ts +2 -2
- package/dist/runtime/components/layouts/TitleTwoCol.d.vue.ts +1 -1
- package/dist/runtime/components/layouts/TitleTwoCol.vue.d.ts +1 -1
- package/dist/runtime/components/layouts/TwoCol.d.vue.ts +1 -1
- package/dist/runtime/components/layouts/TwoCol.vue.d.ts +1 -1
- package/dist/runtime/components/ui/avatar/Avatar.vue +1 -0
- package/dist/runtime/components/ui/avatar/AvatarFallback.vue +1 -0
- package/dist/runtime/components/ui/badge/Badge.vue +1 -0
- package/dist/runtime/components/ui/badge/index.d.ts +1 -1
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbEllipsis.vue +1 -0
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbItem.vue +1 -0
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbLink.vue +1 -0
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbList.vue +1 -0
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbPage.vue +1 -0
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbSeparator.vue +1 -0
- package/dist/runtime/components/ui/button/Button.vue +1 -0
- package/dist/runtime/components/ui/button/index.d.ts +2 -2
- package/dist/runtime/components/ui/button-group/ButtonGroup.vue +1 -0
- package/dist/runtime/components/ui/button-group/ButtonGroupItem.vue +1 -0
- package/dist/runtime/components/ui/calendar/Calendar.vue +1 -0
- package/dist/runtime/components/ui/calendar/CalendarCell.vue +1 -0
- package/dist/runtime/components/ui/calendar/CalendarCellTrigger.vue +1 -0
- package/dist/runtime/components/ui/calendar/CalendarGrid.vue +1 -0
- package/dist/runtime/components/ui/calendar/CalendarGridRow.vue +1 -0
- package/dist/runtime/components/ui/calendar/CalendarHeadCell.vue +1 -0
- package/dist/runtime/components/ui/calendar/CalendarHeader.vue +1 -0
- package/dist/runtime/components/ui/calendar/CalendarHeading.vue +1 -0
- package/dist/runtime/components/ui/calendar/CalendarNextButton.vue +1 -0
- package/dist/runtime/components/ui/calendar/CalendarPrevButton.vue +1 -0
- package/dist/runtime/components/ui/card/Card.vue +1 -0
- package/dist/runtime/components/ui/card/CardAction.vue +1 -0
- package/dist/runtime/components/ui/card/CardContent.vue +1 -0
- package/dist/runtime/components/ui/card/CardDescription.vue +1 -0
- package/dist/runtime/components/ui/card/CardFooter.vue +1 -0
- package/dist/runtime/components/ui/card/CardHeader.vue +1 -0
- package/dist/runtime/components/ui/card/CardTitle.vue +1 -0
- package/dist/runtime/components/ui/checkbox/Checkbox.d.vue.ts +6 -6
- package/dist/runtime/components/ui/checkbox/Checkbox.vue +1 -0
- package/dist/runtime/components/ui/checkbox/Checkbox.vue.d.ts +6 -6
- package/dist/runtime/components/ui/checkbox/index.d.ts +2 -2
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuCheckboxItem.d.vue.ts +4 -4
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue +1 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue.d.ts +4 -4
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuContent.d.vue.ts +3 -3
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuContent.vue +1 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuContent.vue.d.ts +3 -3
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuItem.d.vue.ts +1 -1
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuItem.vue +1 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuItem.vue.d.ts +1 -1
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuLabel.vue +1 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuRadioItem.vue +1 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuSeparator.vue +1 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuShortcut.vue +1 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuSubContent.d.vue.ts +3 -3
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuSubContent.vue +1 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuSubContent.vue.d.ts +3 -3
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue +1 -0
- package/dist/runtime/components/ui/input/Input.d.vue.ts +4 -4
- package/dist/runtime/components/ui/input/Input.vue +1 -0
- package/dist/runtime/components/ui/input/Input.vue.d.ts +4 -4
- package/dist/runtime/components/ui/label/Label.vue +1 -0
- package/dist/runtime/components/ui/multiselect/MultiSelect.d.vue.ts +1 -1
- package/dist/runtime/components/ui/multiselect/MultiSelect.vue +1 -0
- package/dist/runtime/components/ui/multiselect/MultiSelect.vue.d.ts +1 -1
- package/dist/runtime/components/ui/pagination/Pagination.vue +1 -0
- package/dist/runtime/components/ui/pagination/PaginationContent.vue +1 -0
- package/dist/runtime/components/ui/pagination/PaginationEllipsis.vue +1 -0
- package/dist/runtime/components/ui/pagination/PaginationFirst.vue +1 -0
- package/dist/runtime/components/ui/pagination/PaginationItem.vue +1 -0
- package/dist/runtime/components/ui/pagination/PaginationLast.vue +1 -0
- package/dist/runtime/components/ui/pagination/PaginationNext.vue +1 -0
- package/dist/runtime/components/ui/pagination/PaginationPrevious.vue +1 -0
- package/dist/runtime/components/ui/popover/PopoverContent.d.vue.ts +2 -2
- package/dist/runtime/components/ui/popover/PopoverContent.vue +1 -0
- package/dist/runtime/components/ui/popover/PopoverContent.vue.d.ts +2 -2
- package/dist/runtime/components/ui/progress/Progress.vue +1 -0
- package/dist/runtime/components/ui/resizable/ResizableHandle.vue +1 -0
- package/dist/runtime/components/ui/resizable/ResizablePanel.d.vue.ts +1 -1
- package/dist/runtime/components/ui/resizable/ResizablePanel.vue.d.ts +1 -1
- package/dist/runtime/components/ui/resizable/ResizablePanelGroup.vue +1 -0
- package/dist/runtime/components/ui/select/Select.d.vue.ts +1 -1
- package/dist/runtime/components/ui/select/Select.vue.d.ts +1 -1
- package/dist/runtime/components/ui/select/SelectContent.d.vue.ts +2 -2
- package/dist/runtime/components/ui/select/SelectContent.vue +1 -0
- package/dist/runtime/components/ui/select/SelectContent.vue.d.ts +2 -2
- package/dist/runtime/components/ui/select/SelectItem.vue +1 -0
- package/dist/runtime/components/ui/select/SelectLabel.vue +1 -0
- package/dist/runtime/components/ui/select/SelectScrollDownButton.vue +1 -0
- package/dist/runtime/components/ui/select/SelectScrollUpButton.vue +1 -0
- package/dist/runtime/components/ui/select/SelectSeparator.vue +1 -0
- package/dist/runtime/components/ui/select/SelectTrigger.vue +1 -0
- package/dist/runtime/components/ui/separator/Separator.vue +1 -0
- package/dist/runtime/components/ui/sheet/SheetContent.d.vue.ts +1 -1
- package/dist/runtime/components/ui/sheet/SheetContent.vue +1 -0
- package/dist/runtime/components/ui/sheet/SheetContent.vue.d.ts +1 -1
- package/dist/runtime/components/ui/sheet/SheetDescription.vue +1 -0
- package/dist/runtime/components/ui/sheet/SheetFooter.vue +1 -0
- package/dist/runtime/components/ui/sheet/SheetHeader.vue +1 -0
- package/dist/runtime/components/ui/sheet/SheetOverlay.vue +1 -0
- package/dist/runtime/components/ui/sheet/SheetTitle.vue +1 -0
- package/dist/runtime/components/ui/sidebar/Sidebar.d.vue.ts +1 -1
- package/dist/runtime/components/ui/sidebar/Sidebar.vue +1 -0
- package/dist/runtime/components/ui/sidebar/Sidebar.vue.d.ts +1 -1
- package/dist/runtime/components/ui/sidebar/SidebarContent.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarFooter.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarGroup.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarGroupAction.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarGroupContent.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarGroupLabel.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarHeader.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarInput.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarInset.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenu.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuAction.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuBadge.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuButton.d.vue.ts +1 -1
- package/dist/runtime/components/ui/sidebar/SidebarMenuButton.vue.d.ts +1 -1
- package/dist/runtime/components/ui/sidebar/SidebarMenuButtonChild.d.vue.ts +1 -1
- package/dist/runtime/components/ui/sidebar/SidebarMenuButtonChild.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuButtonChild.vue.d.ts +1 -1
- package/dist/runtime/components/ui/sidebar/SidebarMenuItem.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuSkeleton.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuSub.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuSubButton.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuSubItem.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarProvider.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarRail.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarSeparator.vue +1 -0
- package/dist/runtime/components/ui/sidebar/SidebarTrigger.vue +1 -0
- package/dist/runtime/components/ui/sidebar/index.d.ts +1 -1
- package/dist/runtime/components/ui/skeleton/Skeleton.vue +1 -0
- package/dist/runtime/components/ui/sonner/Sonner.d.vue.ts +4 -4
- package/dist/runtime/components/ui/sonner/Sonner.vue.d.ts +4 -4
- package/dist/runtime/components/ui/stepper/Stepper.vue +1 -0
- package/dist/runtime/components/ui/stepper/StepperDescription.vue +1 -0
- package/dist/runtime/components/ui/stepper/StepperIndicator.vue +1 -0
- package/dist/runtime/components/ui/stepper/StepperItem.d.vue.ts +1 -1
- package/dist/runtime/components/ui/stepper/StepperItem.vue +1 -0
- package/dist/runtime/components/ui/stepper/StepperItem.vue.d.ts +1 -1
- package/dist/runtime/components/ui/stepper/StepperSeparator.vue +1 -0
- package/dist/runtime/components/ui/stepper/StepperTitle.vue +1 -0
- package/dist/runtime/components/ui/stepper/StepperTrigger.vue +1 -0
- package/dist/runtime/components/ui/switch/Switch.d.vue.ts +2 -2
- package/dist/runtime/components/ui/switch/Switch.vue +1 -0
- package/dist/runtime/components/ui/switch/Switch.vue.d.ts +2 -2
- package/dist/runtime/components/ui/switch/index.d.ts +2 -2
- package/dist/runtime/components/ui/table/Table.vue +1 -0
- package/dist/runtime/components/ui/table/TableBody.vue +1 -0
- package/dist/runtime/components/ui/table/TableCaption.vue +1 -0
- package/dist/runtime/components/ui/table/TableCell.vue +1 -0
- package/dist/runtime/components/ui/table/TableEmpty.vue +1 -0
- package/dist/runtime/components/ui/table/TableFooter.vue +1 -0
- package/dist/runtime/components/ui/table/TableHead.vue +1 -0
- package/dist/runtime/components/ui/table/TableHeader.vue +1 -0
- package/dist/runtime/components/ui/table/TableRow.vue +1 -0
- package/dist/runtime/components/ui/tabs/Tabs.vue +1 -0
- package/dist/runtime/components/ui/tabs/TabsContent.d.vue.ts +2 -2
- package/dist/runtime/components/ui/tabs/TabsContent.vue +1 -0
- package/dist/runtime/components/ui/tabs/TabsContent.vue.d.ts +2 -2
- package/dist/runtime/components/ui/tabs/TabsList.d.vue.ts +1 -1
- package/dist/runtime/components/ui/tabs/TabsList.vue +1 -0
- package/dist/runtime/components/ui/tabs/TabsList.vue.d.ts +1 -1
- package/dist/runtime/components/ui/tabs/TabsTrigger.d.vue.ts +2 -2
- package/dist/runtime/components/ui/tabs/TabsTrigger.vue +1 -0
- package/dist/runtime/components/ui/tabs/TabsTrigger.vue.d.ts +2 -2
- package/dist/runtime/components/ui/tags-input/TagsInput.d.vue.ts +3 -3
- package/dist/runtime/components/ui/tags-input/TagsInput.vue +1 -0
- package/dist/runtime/components/ui/tags-input/TagsInput.vue.d.ts +3 -3
- package/dist/runtime/components/ui/tags-input/TagsInputInput.vue +1 -0
- package/dist/runtime/components/ui/tags-input/TagsInputItem.d.vue.ts +2 -2
- package/dist/runtime/components/ui/tags-input/TagsInputItem.vue +1 -0
- package/dist/runtime/components/ui/tags-input/TagsInputItem.vue.d.ts +2 -2
- package/dist/runtime/components/ui/tags-input/TagsInputItemDelete.vue +1 -0
- package/dist/runtime/components/ui/tags-input/TagsInputItemText.vue +1 -0
- package/dist/runtime/components/ui/textarea/Textarea.d.vue.ts +4 -4
- package/dist/runtime/components/ui/textarea/Textarea.vue +1 -0
- package/dist/runtime/components/ui/textarea/Textarea.vue.d.ts +4 -4
- package/dist/runtime/components/ui/toggle/Toggle.d.vue.ts +2 -2
- package/dist/runtime/components/ui/toggle/Toggle.vue +1 -0
- package/dist/runtime/components/ui/toggle/Toggle.vue.d.ts +2 -2
- package/dist/runtime/components/ui/toggle/index.d.ts +1 -1
- package/dist/runtime/components/ui/toggle-group/ToggleGroup.d.vue.ts +2 -2
- package/dist/runtime/components/ui/toggle-group/ToggleGroup.vue +1 -0
- package/dist/runtime/components/ui/toggle-group/ToggleGroup.vue.d.ts +2 -2
- package/dist/runtime/components/ui/toggle-group/ToggleGroupItem.vue +1 -0
- package/dist/runtime/components/ui/tooltip/TooltipContent.d.vue.ts +2 -2
- package/dist/runtime/components/ui/tooltip/TooltipContent.vue +1 -0
- package/dist/runtime/components/ui/tooltip/TooltipContent.vue.d.ts +2 -2
- package/dist/runtime/composables/useAPI.d.ts +2 -2
- package/dist/runtime/composables/useAPI.js +6 -11
- package/dist/runtime/composables/useViewAPI.d.ts +1 -0
- package/dist/runtime/composables/useViewAPI.js +20 -4
- package/dist/runtime/composables/useWindowSizer.d.ts +14 -0
- package/dist/runtime/composables/useWindowSizer.js +48 -0
- package/dist/runtime/core/config.d.ts +78 -48
- package/dist/runtime/core/config.js +21 -27
- package/dist/runtime/core/stepper/Stepper.d.ts +13 -10
- package/dist/runtime/core/stepper/Stepper.js +70 -55
- package/dist/runtime/core/stepper/StepperSerializer.js +32 -14
- package/dist/runtime/core/timeline/Timeline.js +1 -2
- package/dist/runtime/css/main.css +1 -1
- package/dist/runtime/css/smile.css +1 -1
- package/dist/runtime/layouts/development.vue +38 -78
- package/dist/runtime/layouts/experiment.d.vue.ts +7 -10
- package/dist/runtime/layouts/experiment.vue +13 -0
- package/dist/runtime/layouts/experiment.vue.d.ts +7 -10
- package/dist/runtime/layouts/presentation.vue +24 -3
- package/dist/runtime/middleware/timeline.global.js +2 -4
- package/dist/runtime/pages/[...slug].vue +2 -0
- package/dist/runtime/pages/dev/[...slug].vue +2 -0
- package/dist/runtime/pages/dev-login.vue +5 -3
- package/dist/runtime/pages/presentation/[...slug].vue +2 -0
- package/dist/runtime/plugins/dev-sync.client.js +0 -2
- package/dist/runtime/plugins/seed.client.js +1 -3
- package/dist/runtime/plugins/store-sync.client.js +8 -10
- package/dist/runtime/public/images/helpus.png +0 -0
- package/dist/runtime/public/images/smile.svg +78 -0
- package/dist/runtime/public/images/universitylogo.png +0 -0
- package/dist/runtime/server/api/auth/login.post.js +11 -2
- package/dist/runtime/server/api/db-info.get.d.ts +5 -0
- package/dist/runtime/server/api/db-info.get.js +10 -0
- package/dist/runtime/server/api/qr.get.js +1 -2
- package/dist/runtime/server/middleware/dev-auth.js +10 -5
- package/dist/runtime/stores/log.js +4 -7
- package/dist/runtime/stores/smilestore.d.ts +161 -1014
- package/dist/runtime/stores/smilestore.js +39 -7
- package/dist/runtime/utils/utils.js +7 -0
- package/package.json +5 -3
- package/dist/runtime/components/dev/navbar/ViewButton.vue +0 -159
- package/dist/runtime/pages/info.vue +0 -462
- /package/dist/runtime/components/{dev/navbar/ViewButton.d.vue.ts → builtins/LocalDevBanner.d.vue.ts} +0 -0
- /package/dist/runtime/components/{dev/navbar/ViewButton.vue.d.ts → builtins/LocalDevBanner.vue.d.ts} +0 -0
- /package/dist/runtime/{pages/info.d.vue.ts → components/dev/SmileDevPresentationView.d.vue.ts} +0 -0
- /package/dist/runtime/{pages/info.vue.d.ts → components/dev/SmileDevPresentationView.vue.d.ts} +0 -0
|
@@ -119,6 +119,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
119
119
|
deployURL: any;
|
|
120
120
|
labURL: any;
|
|
121
121
|
brandLogoFn: any;
|
|
122
|
+
advertisementImageFn: string;
|
|
123
|
+
advertisementImageInvertDark: boolean;
|
|
122
124
|
colorMode: any;
|
|
123
125
|
responsiveUI: boolean;
|
|
124
126
|
googleAnalyticsID: any;
|
|
@@ -126,19 +128,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
126
128
|
windowsizerAggressive: boolean;
|
|
127
129
|
anonymousMode: boolean;
|
|
128
130
|
unpaidStudy: boolean;
|
|
129
|
-
sona: {
|
|
130
|
-
url: any;
|
|
131
|
-
experimentId: any;
|
|
132
|
-
creditToken: any;
|
|
133
|
-
};
|
|
134
|
-
sonaPaid: {
|
|
135
|
-
url: any;
|
|
136
|
-
experimentId: any;
|
|
137
|
-
creditToken: any;
|
|
138
|
-
};
|
|
139
|
-
spark: {
|
|
140
|
-
completionUrl: string;
|
|
141
|
-
};
|
|
142
131
|
firebaseConfig: {
|
|
143
132
|
apiKey: any;
|
|
144
133
|
authDomain: any;
|
|
@@ -176,6 +165,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
176
165
|
deployURL: any;
|
|
177
166
|
labURL: any;
|
|
178
167
|
brandLogoFn: any;
|
|
168
|
+
advertisementImageFn: string;
|
|
169
|
+
advertisementImageInvertDark: boolean;
|
|
179
170
|
colorMode: any;
|
|
180
171
|
responsiveUI: boolean;
|
|
181
172
|
googleAnalyticsID: any;
|
|
@@ -183,19 +174,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
183
174
|
windowsizerAggressive: boolean;
|
|
184
175
|
anonymousMode: boolean;
|
|
185
176
|
unpaidStudy: boolean;
|
|
186
|
-
sona: {
|
|
187
|
-
url: any;
|
|
188
|
-
experimentId: any;
|
|
189
|
-
creditToken: any;
|
|
190
|
-
};
|
|
191
|
-
sonaPaid: {
|
|
192
|
-
url: any;
|
|
193
|
-
experimentId: any;
|
|
194
|
-
creditToken: any;
|
|
195
|
-
};
|
|
196
|
-
spark: {
|
|
197
|
-
completionUrl: string;
|
|
198
|
-
};
|
|
199
177
|
firebaseConfig: {
|
|
200
178
|
apiKey: any;
|
|
201
179
|
authDomain: any;
|
|
@@ -327,6 +305,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
327
305
|
deployURL: any;
|
|
328
306
|
labURL: any;
|
|
329
307
|
brandLogoFn: any;
|
|
308
|
+
advertisementImageFn: string;
|
|
309
|
+
advertisementImageInvertDark: boolean;
|
|
330
310
|
colorMode: any;
|
|
331
311
|
responsiveUI: boolean;
|
|
332
312
|
googleAnalyticsID: any;
|
|
@@ -334,19 +314,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
334
314
|
windowsizerAggressive: boolean;
|
|
335
315
|
anonymousMode: boolean;
|
|
336
316
|
unpaidStudy: boolean;
|
|
337
|
-
sona: {
|
|
338
|
-
url: any;
|
|
339
|
-
experimentId: any;
|
|
340
|
-
creditToken: any;
|
|
341
|
-
};
|
|
342
|
-
sonaPaid: {
|
|
343
|
-
url: any;
|
|
344
|
-
experimentId: any;
|
|
345
|
-
creditToken: any;
|
|
346
|
-
};
|
|
347
|
-
spark: {
|
|
348
|
-
completionUrl: string;
|
|
349
|
-
};
|
|
350
317
|
firebaseConfig: {
|
|
351
318
|
apiKey: any;
|
|
352
319
|
authDomain: any;
|
|
@@ -384,6 +351,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
384
351
|
deployURL: any;
|
|
385
352
|
labURL: any;
|
|
386
353
|
brandLogoFn: any;
|
|
354
|
+
advertisementImageFn: string;
|
|
355
|
+
advertisementImageInvertDark: boolean;
|
|
387
356
|
colorMode: any;
|
|
388
357
|
responsiveUI: boolean;
|
|
389
358
|
googleAnalyticsID: any;
|
|
@@ -391,19 +360,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
391
360
|
windowsizerAggressive: boolean;
|
|
392
361
|
anonymousMode: boolean;
|
|
393
362
|
unpaidStudy: boolean;
|
|
394
|
-
sona: {
|
|
395
|
-
url: any;
|
|
396
|
-
experimentId: any;
|
|
397
|
-
creditToken: any;
|
|
398
|
-
};
|
|
399
|
-
sonaPaid: {
|
|
400
|
-
url: any;
|
|
401
|
-
experimentId: any;
|
|
402
|
-
creditToken: any;
|
|
403
|
-
};
|
|
404
|
-
spark: {
|
|
405
|
-
completionUrl: string;
|
|
406
|
-
};
|
|
407
363
|
firebaseConfig: {
|
|
408
364
|
apiKey: any;
|
|
409
365
|
authDomain: any;
|
|
@@ -534,6 +490,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
534
490
|
deployURL: any;
|
|
535
491
|
labURL: any;
|
|
536
492
|
brandLogoFn: any;
|
|
493
|
+
advertisementImageFn: string;
|
|
494
|
+
advertisementImageInvertDark: boolean;
|
|
537
495
|
colorMode: any;
|
|
538
496
|
responsiveUI: boolean;
|
|
539
497
|
googleAnalyticsID: any;
|
|
@@ -541,19 +499,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
541
499
|
windowsizerAggressive: boolean;
|
|
542
500
|
anonymousMode: boolean;
|
|
543
501
|
unpaidStudy: boolean;
|
|
544
|
-
sona: {
|
|
545
|
-
url: any;
|
|
546
|
-
experimentId: any;
|
|
547
|
-
creditToken: any;
|
|
548
|
-
};
|
|
549
|
-
sonaPaid: {
|
|
550
|
-
url: any;
|
|
551
|
-
experimentId: any;
|
|
552
|
-
creditToken: any;
|
|
553
|
-
};
|
|
554
|
-
spark: {
|
|
555
|
-
completionUrl: string;
|
|
556
|
-
};
|
|
557
502
|
firebaseConfig: {
|
|
558
503
|
apiKey: any;
|
|
559
504
|
authDomain: any;
|
|
@@ -591,6 +536,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
591
536
|
deployURL: any;
|
|
592
537
|
labURL: any;
|
|
593
538
|
brandLogoFn: any;
|
|
539
|
+
advertisementImageFn: string;
|
|
540
|
+
advertisementImageInvertDark: boolean;
|
|
594
541
|
colorMode: any;
|
|
595
542
|
responsiveUI: boolean;
|
|
596
543
|
googleAnalyticsID: any;
|
|
@@ -598,19 +545,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
598
545
|
windowsizerAggressive: boolean;
|
|
599
546
|
anonymousMode: boolean;
|
|
600
547
|
unpaidStudy: boolean;
|
|
601
|
-
sona: {
|
|
602
|
-
url: any;
|
|
603
|
-
experimentId: any;
|
|
604
|
-
creditToken: any;
|
|
605
|
-
};
|
|
606
|
-
sonaPaid: {
|
|
607
|
-
url: any;
|
|
608
|
-
experimentId: any;
|
|
609
|
-
creditToken: any;
|
|
610
|
-
};
|
|
611
|
-
spark: {
|
|
612
|
-
completionUrl: string;
|
|
613
|
-
};
|
|
614
548
|
firebaseConfig: {
|
|
615
549
|
apiKey: any;
|
|
616
550
|
authDomain: any;
|
|
@@ -765,6 +699,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
765
699
|
deployURL: any;
|
|
766
700
|
labURL: any;
|
|
767
701
|
brandLogoFn: any;
|
|
702
|
+
advertisementImageFn: string;
|
|
703
|
+
advertisementImageInvertDark: boolean;
|
|
768
704
|
colorMode: any;
|
|
769
705
|
responsiveUI: boolean;
|
|
770
706
|
googleAnalyticsID: any;
|
|
@@ -772,19 +708,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
772
708
|
windowsizerAggressive: boolean;
|
|
773
709
|
anonymousMode: boolean;
|
|
774
710
|
unpaidStudy: boolean;
|
|
775
|
-
sona: {
|
|
776
|
-
url: any;
|
|
777
|
-
experimentId: any;
|
|
778
|
-
creditToken: any;
|
|
779
|
-
};
|
|
780
|
-
sonaPaid: {
|
|
781
|
-
url: any;
|
|
782
|
-
experimentId: any;
|
|
783
|
-
creditToken: any;
|
|
784
|
-
};
|
|
785
|
-
spark: {
|
|
786
|
-
completionUrl: string;
|
|
787
|
-
};
|
|
788
711
|
firebaseConfig: {
|
|
789
712
|
apiKey: any;
|
|
790
713
|
authDomain: any;
|
|
@@ -822,6 +745,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
822
745
|
deployURL: any;
|
|
823
746
|
labURL: any;
|
|
824
747
|
brandLogoFn: any;
|
|
748
|
+
advertisementImageFn: string;
|
|
749
|
+
advertisementImageInvertDark: boolean;
|
|
825
750
|
colorMode: any;
|
|
826
751
|
responsiveUI: boolean;
|
|
827
752
|
googleAnalyticsID: any;
|
|
@@ -829,19 +754,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
829
754
|
windowsizerAggressive: boolean;
|
|
830
755
|
anonymousMode: boolean;
|
|
831
756
|
unpaidStudy: boolean;
|
|
832
|
-
sona: {
|
|
833
|
-
url: any;
|
|
834
|
-
experimentId: any;
|
|
835
|
-
creditToken: any;
|
|
836
|
-
};
|
|
837
|
-
sonaPaid: {
|
|
838
|
-
url: any;
|
|
839
|
-
experimentId: any;
|
|
840
|
-
creditToken: any;
|
|
841
|
-
};
|
|
842
|
-
spark: {
|
|
843
|
-
completionUrl: string;
|
|
844
|
-
};
|
|
845
757
|
firebaseConfig: {
|
|
846
758
|
apiKey: any;
|
|
847
759
|
authDomain: any;
|
|
@@ -972,6 +884,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
972
884
|
deployURL: any;
|
|
973
885
|
labURL: any;
|
|
974
886
|
brandLogoFn: any;
|
|
887
|
+
advertisementImageFn: string;
|
|
888
|
+
advertisementImageInvertDark: boolean;
|
|
975
889
|
colorMode: any;
|
|
976
890
|
responsiveUI: boolean;
|
|
977
891
|
googleAnalyticsID: any;
|
|
@@ -979,19 +893,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
979
893
|
windowsizerAggressive: boolean;
|
|
980
894
|
anonymousMode: boolean;
|
|
981
895
|
unpaidStudy: boolean;
|
|
982
|
-
sona: {
|
|
983
|
-
url: any;
|
|
984
|
-
experimentId: any;
|
|
985
|
-
creditToken: any;
|
|
986
|
-
};
|
|
987
|
-
sonaPaid: {
|
|
988
|
-
url: any;
|
|
989
|
-
experimentId: any;
|
|
990
|
-
creditToken: any;
|
|
991
|
-
};
|
|
992
|
-
spark: {
|
|
993
|
-
completionUrl: string;
|
|
994
|
-
};
|
|
995
896
|
firebaseConfig: {
|
|
996
897
|
apiKey: any;
|
|
997
898
|
authDomain: any;
|
|
@@ -1029,6 +930,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1029
930
|
deployURL: any;
|
|
1030
931
|
labURL: any;
|
|
1031
932
|
brandLogoFn: any;
|
|
933
|
+
advertisementImageFn: string;
|
|
934
|
+
advertisementImageInvertDark: boolean;
|
|
1032
935
|
colorMode: any;
|
|
1033
936
|
responsiveUI: boolean;
|
|
1034
937
|
googleAnalyticsID: any;
|
|
@@ -1036,19 +939,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1036
939
|
windowsizerAggressive: boolean;
|
|
1037
940
|
anonymousMode: boolean;
|
|
1038
941
|
unpaidStudy: boolean;
|
|
1039
|
-
sona: {
|
|
1040
|
-
url: any;
|
|
1041
|
-
experimentId: any;
|
|
1042
|
-
creditToken: any;
|
|
1043
|
-
};
|
|
1044
|
-
sonaPaid: {
|
|
1045
|
-
url: any;
|
|
1046
|
-
experimentId: any;
|
|
1047
|
-
creditToken: any;
|
|
1048
|
-
};
|
|
1049
|
-
spark: {
|
|
1050
|
-
completionUrl: string;
|
|
1051
|
-
};
|
|
1052
942
|
firebaseConfig: {
|
|
1053
943
|
apiKey: any;
|
|
1054
944
|
authDomain: any;
|
|
@@ -1180,6 +1070,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1180
1070
|
deployURL: any;
|
|
1181
1071
|
labURL: any;
|
|
1182
1072
|
brandLogoFn: any;
|
|
1073
|
+
advertisementImageFn: string;
|
|
1074
|
+
advertisementImageInvertDark: boolean;
|
|
1183
1075
|
colorMode: any;
|
|
1184
1076
|
responsiveUI: boolean;
|
|
1185
1077
|
googleAnalyticsID: any;
|
|
@@ -1187,19 +1079,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1187
1079
|
windowsizerAggressive: boolean;
|
|
1188
1080
|
anonymousMode: boolean;
|
|
1189
1081
|
unpaidStudy: boolean;
|
|
1190
|
-
sona: {
|
|
1191
|
-
url: any;
|
|
1192
|
-
experimentId: any;
|
|
1193
|
-
creditToken: any;
|
|
1194
|
-
};
|
|
1195
|
-
sonaPaid: {
|
|
1196
|
-
url: any;
|
|
1197
|
-
experimentId: any;
|
|
1198
|
-
creditToken: any;
|
|
1199
|
-
};
|
|
1200
|
-
spark: {
|
|
1201
|
-
completionUrl: string;
|
|
1202
|
-
};
|
|
1203
1082
|
firebaseConfig: {
|
|
1204
1083
|
apiKey: any;
|
|
1205
1084
|
authDomain: any;
|
|
@@ -1237,6 +1116,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1237
1116
|
deployURL: any;
|
|
1238
1117
|
labURL: any;
|
|
1239
1118
|
brandLogoFn: any;
|
|
1119
|
+
advertisementImageFn: string;
|
|
1120
|
+
advertisementImageInvertDark: boolean;
|
|
1240
1121
|
colorMode: any;
|
|
1241
1122
|
responsiveUI: boolean;
|
|
1242
1123
|
googleAnalyticsID: any;
|
|
@@ -1244,19 +1125,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1244
1125
|
windowsizerAggressive: boolean;
|
|
1245
1126
|
anonymousMode: boolean;
|
|
1246
1127
|
unpaidStudy: boolean;
|
|
1247
|
-
sona: {
|
|
1248
|
-
url: any;
|
|
1249
|
-
experimentId: any;
|
|
1250
|
-
creditToken: any;
|
|
1251
|
-
};
|
|
1252
|
-
sonaPaid: {
|
|
1253
|
-
url: any;
|
|
1254
|
-
experimentId: any;
|
|
1255
|
-
creditToken: any;
|
|
1256
|
-
};
|
|
1257
|
-
spark: {
|
|
1258
|
-
completionUrl: string;
|
|
1259
|
-
};
|
|
1260
1128
|
firebaseConfig: {
|
|
1261
1129
|
apiKey: any;
|
|
1262
1130
|
authDomain: any;
|
|
@@ -1387,6 +1255,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1387
1255
|
deployURL: any;
|
|
1388
1256
|
labURL: any;
|
|
1389
1257
|
brandLogoFn: any;
|
|
1258
|
+
advertisementImageFn: string;
|
|
1259
|
+
advertisementImageInvertDark: boolean;
|
|
1390
1260
|
colorMode: any;
|
|
1391
1261
|
responsiveUI: boolean;
|
|
1392
1262
|
googleAnalyticsID: any;
|
|
@@ -1394,19 +1264,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1394
1264
|
windowsizerAggressive: boolean;
|
|
1395
1265
|
anonymousMode: boolean;
|
|
1396
1266
|
unpaidStudy: boolean;
|
|
1397
|
-
sona: {
|
|
1398
|
-
url: any;
|
|
1399
|
-
experimentId: any;
|
|
1400
|
-
creditToken: any;
|
|
1401
|
-
};
|
|
1402
|
-
sonaPaid: {
|
|
1403
|
-
url: any;
|
|
1404
|
-
experimentId: any;
|
|
1405
|
-
creditToken: any;
|
|
1406
|
-
};
|
|
1407
|
-
spark: {
|
|
1408
|
-
completionUrl: string;
|
|
1409
|
-
};
|
|
1410
1267
|
firebaseConfig: {
|
|
1411
1268
|
apiKey: any;
|
|
1412
1269
|
authDomain: any;
|
|
@@ -1444,6 +1301,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1444
1301
|
deployURL: any;
|
|
1445
1302
|
labURL: any;
|
|
1446
1303
|
brandLogoFn: any;
|
|
1304
|
+
advertisementImageFn: string;
|
|
1305
|
+
advertisementImageInvertDark: boolean;
|
|
1447
1306
|
colorMode: any;
|
|
1448
1307
|
responsiveUI: boolean;
|
|
1449
1308
|
googleAnalyticsID: any;
|
|
@@ -1451,19 +1310,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1451
1310
|
windowsizerAggressive: boolean;
|
|
1452
1311
|
anonymousMode: boolean;
|
|
1453
1312
|
unpaidStudy: boolean;
|
|
1454
|
-
sona: {
|
|
1455
|
-
url: any;
|
|
1456
|
-
experimentId: any;
|
|
1457
|
-
creditToken: any;
|
|
1458
|
-
};
|
|
1459
|
-
sonaPaid: {
|
|
1460
|
-
url: any;
|
|
1461
|
-
experimentId: any;
|
|
1462
|
-
creditToken: any;
|
|
1463
|
-
};
|
|
1464
|
-
spark: {
|
|
1465
|
-
completionUrl: string;
|
|
1466
|
-
};
|
|
1467
1313
|
firebaseConfig: {
|
|
1468
1314
|
apiKey: any;
|
|
1469
1315
|
authDomain: any;
|
|
@@ -1595,6 +1441,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1595
1441
|
deployURL: any;
|
|
1596
1442
|
labURL: any;
|
|
1597
1443
|
brandLogoFn: any;
|
|
1444
|
+
advertisementImageFn: string;
|
|
1445
|
+
advertisementImageInvertDark: boolean;
|
|
1598
1446
|
colorMode: any;
|
|
1599
1447
|
responsiveUI: boolean;
|
|
1600
1448
|
googleAnalyticsID: any;
|
|
@@ -1602,19 +1450,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1602
1450
|
windowsizerAggressive: boolean;
|
|
1603
1451
|
anonymousMode: boolean;
|
|
1604
1452
|
unpaidStudy: boolean;
|
|
1605
|
-
sona: {
|
|
1606
|
-
url: any;
|
|
1607
|
-
experimentId: any;
|
|
1608
|
-
creditToken: any;
|
|
1609
|
-
};
|
|
1610
|
-
sonaPaid: {
|
|
1611
|
-
url: any;
|
|
1612
|
-
experimentId: any;
|
|
1613
|
-
creditToken: any;
|
|
1614
|
-
};
|
|
1615
|
-
spark: {
|
|
1616
|
-
completionUrl: string;
|
|
1617
|
-
};
|
|
1618
1453
|
firebaseConfig: {
|
|
1619
1454
|
apiKey: any;
|
|
1620
1455
|
authDomain: any;
|
|
@@ -1652,6 +1487,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1652
1487
|
deployURL: any;
|
|
1653
1488
|
labURL: any;
|
|
1654
1489
|
brandLogoFn: any;
|
|
1490
|
+
advertisementImageFn: string;
|
|
1491
|
+
advertisementImageInvertDark: boolean;
|
|
1655
1492
|
colorMode: any;
|
|
1656
1493
|
responsiveUI: boolean;
|
|
1657
1494
|
googleAnalyticsID: any;
|
|
@@ -1659,19 +1496,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1659
1496
|
windowsizerAggressive: boolean;
|
|
1660
1497
|
anonymousMode: boolean;
|
|
1661
1498
|
unpaidStudy: boolean;
|
|
1662
|
-
sona: {
|
|
1663
|
-
url: any;
|
|
1664
|
-
experimentId: any;
|
|
1665
|
-
creditToken: any;
|
|
1666
|
-
};
|
|
1667
|
-
sonaPaid: {
|
|
1668
|
-
url: any;
|
|
1669
|
-
experimentId: any;
|
|
1670
|
-
creditToken: any;
|
|
1671
|
-
};
|
|
1672
|
-
spark: {
|
|
1673
|
-
completionUrl: string;
|
|
1674
|
-
};
|
|
1675
1499
|
firebaseConfig: {
|
|
1676
1500
|
apiKey: any;
|
|
1677
1501
|
authDomain: any;
|
|
@@ -1802,6 +1626,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1802
1626
|
deployURL: any;
|
|
1803
1627
|
labURL: any;
|
|
1804
1628
|
brandLogoFn: any;
|
|
1629
|
+
advertisementImageFn: string;
|
|
1630
|
+
advertisementImageInvertDark: boolean;
|
|
1805
1631
|
colorMode: any;
|
|
1806
1632
|
responsiveUI: boolean;
|
|
1807
1633
|
googleAnalyticsID: any;
|
|
@@ -1809,19 +1635,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1809
1635
|
windowsizerAggressive: boolean;
|
|
1810
1636
|
anonymousMode: boolean;
|
|
1811
1637
|
unpaidStudy: boolean;
|
|
1812
|
-
sona: {
|
|
1813
|
-
url: any;
|
|
1814
|
-
experimentId: any;
|
|
1815
|
-
creditToken: any;
|
|
1816
|
-
};
|
|
1817
|
-
sonaPaid: {
|
|
1818
|
-
url: any;
|
|
1819
|
-
experimentId: any;
|
|
1820
|
-
creditToken: any;
|
|
1821
|
-
};
|
|
1822
|
-
spark: {
|
|
1823
|
-
completionUrl: string;
|
|
1824
|
-
};
|
|
1825
1638
|
firebaseConfig: {
|
|
1826
1639
|
apiKey: any;
|
|
1827
1640
|
authDomain: any;
|
|
@@ -1859,6 +1672,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1859
1672
|
deployURL: any;
|
|
1860
1673
|
labURL: any;
|
|
1861
1674
|
brandLogoFn: any;
|
|
1675
|
+
advertisementImageFn: string;
|
|
1676
|
+
advertisementImageInvertDark: boolean;
|
|
1862
1677
|
colorMode: any;
|
|
1863
1678
|
responsiveUI: boolean;
|
|
1864
1679
|
googleAnalyticsID: any;
|
|
@@ -1866,19 +1681,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
1866
1681
|
windowsizerAggressive: boolean;
|
|
1867
1682
|
anonymousMode: boolean;
|
|
1868
1683
|
unpaidStudy: boolean;
|
|
1869
|
-
sona: {
|
|
1870
|
-
url: any;
|
|
1871
|
-
experimentId: any;
|
|
1872
|
-
creditToken: any;
|
|
1873
|
-
};
|
|
1874
|
-
sonaPaid: {
|
|
1875
|
-
url: any;
|
|
1876
|
-
experimentId: any;
|
|
1877
|
-
creditToken: any;
|
|
1878
|
-
};
|
|
1879
|
-
spark: {
|
|
1880
|
-
completionUrl: string;
|
|
1881
|
-
};
|
|
1882
1684
|
firebaseConfig: {
|
|
1883
1685
|
apiKey: any;
|
|
1884
1686
|
authDomain: any;
|
|
@@ -2010,6 +1812,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2010
1812
|
deployURL: any;
|
|
2011
1813
|
labURL: any;
|
|
2012
1814
|
brandLogoFn: any;
|
|
1815
|
+
advertisementImageFn: string;
|
|
1816
|
+
advertisementImageInvertDark: boolean;
|
|
2013
1817
|
colorMode: any;
|
|
2014
1818
|
responsiveUI: boolean;
|
|
2015
1819
|
googleAnalyticsID: any;
|
|
@@ -2017,19 +1821,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2017
1821
|
windowsizerAggressive: boolean;
|
|
2018
1822
|
anonymousMode: boolean;
|
|
2019
1823
|
unpaidStudy: boolean;
|
|
2020
|
-
sona: {
|
|
2021
|
-
url: any;
|
|
2022
|
-
experimentId: any;
|
|
2023
|
-
creditToken: any;
|
|
2024
|
-
};
|
|
2025
|
-
sonaPaid: {
|
|
2026
|
-
url: any;
|
|
2027
|
-
experimentId: any;
|
|
2028
|
-
creditToken: any;
|
|
2029
|
-
};
|
|
2030
|
-
spark: {
|
|
2031
|
-
completionUrl: string;
|
|
2032
|
-
};
|
|
2033
1824
|
firebaseConfig: {
|
|
2034
1825
|
apiKey: any;
|
|
2035
1826
|
authDomain: any;
|
|
@@ -2067,6 +1858,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2067
1858
|
deployURL: any;
|
|
2068
1859
|
labURL: any;
|
|
2069
1860
|
brandLogoFn: any;
|
|
1861
|
+
advertisementImageFn: string;
|
|
1862
|
+
advertisementImageInvertDark: boolean;
|
|
2070
1863
|
colorMode: any;
|
|
2071
1864
|
responsiveUI: boolean;
|
|
2072
1865
|
googleAnalyticsID: any;
|
|
@@ -2074,19 +1867,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2074
1867
|
windowsizerAggressive: boolean;
|
|
2075
1868
|
anonymousMode: boolean;
|
|
2076
1869
|
unpaidStudy: boolean;
|
|
2077
|
-
sona: {
|
|
2078
|
-
url: any;
|
|
2079
|
-
experimentId: any;
|
|
2080
|
-
creditToken: any;
|
|
2081
|
-
};
|
|
2082
|
-
sonaPaid: {
|
|
2083
|
-
url: any;
|
|
2084
|
-
experimentId: any;
|
|
2085
|
-
creditToken: any;
|
|
2086
|
-
};
|
|
2087
|
-
spark: {
|
|
2088
|
-
completionUrl: string;
|
|
2089
|
-
};
|
|
2090
1870
|
firebaseConfig: {
|
|
2091
1871
|
apiKey: any;
|
|
2092
1872
|
authDomain: any;
|
|
@@ -2217,6 +1997,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2217
1997
|
deployURL: any;
|
|
2218
1998
|
labURL: any;
|
|
2219
1999
|
brandLogoFn: any;
|
|
2000
|
+
advertisementImageFn: string;
|
|
2001
|
+
advertisementImageInvertDark: boolean;
|
|
2220
2002
|
colorMode: any;
|
|
2221
2003
|
responsiveUI: boolean;
|
|
2222
2004
|
googleAnalyticsID: any;
|
|
@@ -2224,19 +2006,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2224
2006
|
windowsizerAggressive: boolean;
|
|
2225
2007
|
anonymousMode: boolean;
|
|
2226
2008
|
unpaidStudy: boolean;
|
|
2227
|
-
sona: {
|
|
2228
|
-
url: any;
|
|
2229
|
-
experimentId: any;
|
|
2230
|
-
creditToken: any;
|
|
2231
|
-
};
|
|
2232
|
-
sonaPaid: {
|
|
2233
|
-
url: any;
|
|
2234
|
-
experimentId: any;
|
|
2235
|
-
creditToken: any;
|
|
2236
|
-
};
|
|
2237
|
-
spark: {
|
|
2238
|
-
completionUrl: string;
|
|
2239
|
-
};
|
|
2240
2009
|
firebaseConfig: {
|
|
2241
2010
|
apiKey: any;
|
|
2242
2011
|
authDomain: any;
|
|
@@ -2274,6 +2043,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2274
2043
|
deployURL: any;
|
|
2275
2044
|
labURL: any;
|
|
2276
2045
|
brandLogoFn: any;
|
|
2046
|
+
advertisementImageFn: string;
|
|
2047
|
+
advertisementImageInvertDark: boolean;
|
|
2277
2048
|
colorMode: any;
|
|
2278
2049
|
responsiveUI: boolean;
|
|
2279
2050
|
googleAnalyticsID: any;
|
|
@@ -2281,19 +2052,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2281
2052
|
windowsizerAggressive: boolean;
|
|
2282
2053
|
anonymousMode: boolean;
|
|
2283
2054
|
unpaidStudy: boolean;
|
|
2284
|
-
sona: {
|
|
2285
|
-
url: any;
|
|
2286
|
-
experimentId: any;
|
|
2287
|
-
creditToken: any;
|
|
2288
|
-
};
|
|
2289
|
-
sonaPaid: {
|
|
2290
|
-
url: any;
|
|
2291
|
-
experimentId: any;
|
|
2292
|
-
creditToken: any;
|
|
2293
|
-
};
|
|
2294
|
-
spark: {
|
|
2295
|
-
completionUrl: string;
|
|
2296
|
-
};
|
|
2297
2055
|
firebaseConfig: {
|
|
2298
2056
|
apiKey: any;
|
|
2299
2057
|
authDomain: any;
|
|
@@ -2425,6 +2183,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2425
2183
|
deployURL: any;
|
|
2426
2184
|
labURL: any;
|
|
2427
2185
|
brandLogoFn: any;
|
|
2186
|
+
advertisementImageFn: string;
|
|
2187
|
+
advertisementImageInvertDark: boolean;
|
|
2428
2188
|
colorMode: any;
|
|
2429
2189
|
responsiveUI: boolean;
|
|
2430
2190
|
googleAnalyticsID: any;
|
|
@@ -2432,19 +2192,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2432
2192
|
windowsizerAggressive: boolean;
|
|
2433
2193
|
anonymousMode: boolean;
|
|
2434
2194
|
unpaidStudy: boolean;
|
|
2435
|
-
sona: {
|
|
2436
|
-
url: any;
|
|
2437
|
-
experimentId: any;
|
|
2438
|
-
creditToken: any;
|
|
2439
|
-
};
|
|
2440
|
-
sonaPaid: {
|
|
2441
|
-
url: any;
|
|
2442
|
-
experimentId: any;
|
|
2443
|
-
creditToken: any;
|
|
2444
|
-
};
|
|
2445
|
-
spark: {
|
|
2446
|
-
completionUrl: string;
|
|
2447
|
-
};
|
|
2448
2195
|
firebaseConfig: {
|
|
2449
2196
|
apiKey: any;
|
|
2450
2197
|
authDomain: any;
|
|
@@ -2482,6 +2229,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2482
2229
|
deployURL: any;
|
|
2483
2230
|
labURL: any;
|
|
2484
2231
|
brandLogoFn: any;
|
|
2232
|
+
advertisementImageFn: string;
|
|
2233
|
+
advertisementImageInvertDark: boolean;
|
|
2485
2234
|
colorMode: any;
|
|
2486
2235
|
responsiveUI: boolean;
|
|
2487
2236
|
googleAnalyticsID: any;
|
|
@@ -2489,19 +2238,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2489
2238
|
windowsizerAggressive: boolean;
|
|
2490
2239
|
anonymousMode: boolean;
|
|
2491
2240
|
unpaidStudy: boolean;
|
|
2492
|
-
sona: {
|
|
2493
|
-
url: any;
|
|
2494
|
-
experimentId: any;
|
|
2495
|
-
creditToken: any;
|
|
2496
|
-
};
|
|
2497
|
-
sonaPaid: {
|
|
2498
|
-
url: any;
|
|
2499
|
-
experimentId: any;
|
|
2500
|
-
creditToken: any;
|
|
2501
|
-
};
|
|
2502
|
-
spark: {
|
|
2503
|
-
completionUrl: string;
|
|
2504
|
-
};
|
|
2505
2241
|
firebaseConfig: {
|
|
2506
2242
|
apiKey: any;
|
|
2507
2243
|
authDomain: any;
|
|
@@ -2632,6 +2368,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2632
2368
|
deployURL: any;
|
|
2633
2369
|
labURL: any;
|
|
2634
2370
|
brandLogoFn: any;
|
|
2371
|
+
advertisementImageFn: string;
|
|
2372
|
+
advertisementImageInvertDark: boolean;
|
|
2635
2373
|
colorMode: any;
|
|
2636
2374
|
responsiveUI: boolean;
|
|
2637
2375
|
googleAnalyticsID: any;
|
|
@@ -2639,19 +2377,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2639
2377
|
windowsizerAggressive: boolean;
|
|
2640
2378
|
anonymousMode: boolean;
|
|
2641
2379
|
unpaidStudy: boolean;
|
|
2642
|
-
sona: {
|
|
2643
|
-
url: any;
|
|
2644
|
-
experimentId: any;
|
|
2645
|
-
creditToken: any;
|
|
2646
|
-
};
|
|
2647
|
-
sonaPaid: {
|
|
2648
|
-
url: any;
|
|
2649
|
-
experimentId: any;
|
|
2650
|
-
creditToken: any;
|
|
2651
|
-
};
|
|
2652
|
-
spark: {
|
|
2653
|
-
completionUrl: string;
|
|
2654
|
-
};
|
|
2655
2380
|
firebaseConfig: {
|
|
2656
2381
|
apiKey: any;
|
|
2657
2382
|
authDomain: any;
|
|
@@ -2689,6 +2414,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2689
2414
|
deployURL: any;
|
|
2690
2415
|
labURL: any;
|
|
2691
2416
|
brandLogoFn: any;
|
|
2417
|
+
advertisementImageFn: string;
|
|
2418
|
+
advertisementImageInvertDark: boolean;
|
|
2692
2419
|
colorMode: any;
|
|
2693
2420
|
responsiveUI: boolean;
|
|
2694
2421
|
googleAnalyticsID: any;
|
|
@@ -2696,19 +2423,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2696
2423
|
windowsizerAggressive: boolean;
|
|
2697
2424
|
anonymousMode: boolean;
|
|
2698
2425
|
unpaidStudy: boolean;
|
|
2699
|
-
sona: {
|
|
2700
|
-
url: any;
|
|
2701
|
-
experimentId: any;
|
|
2702
|
-
creditToken: any;
|
|
2703
|
-
};
|
|
2704
|
-
sonaPaid: {
|
|
2705
|
-
url: any;
|
|
2706
|
-
experimentId: any;
|
|
2707
|
-
creditToken: any;
|
|
2708
|
-
};
|
|
2709
|
-
spark: {
|
|
2710
|
-
completionUrl: string;
|
|
2711
|
-
};
|
|
2712
2426
|
firebaseConfig: {
|
|
2713
2427
|
apiKey: any;
|
|
2714
2428
|
authDomain: any;
|
|
@@ -2840,6 +2554,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2840
2554
|
deployURL: any;
|
|
2841
2555
|
labURL: any;
|
|
2842
2556
|
brandLogoFn: any;
|
|
2557
|
+
advertisementImageFn: string;
|
|
2558
|
+
advertisementImageInvertDark: boolean;
|
|
2843
2559
|
colorMode: any;
|
|
2844
2560
|
responsiveUI: boolean;
|
|
2845
2561
|
googleAnalyticsID: any;
|
|
@@ -2847,19 +2563,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2847
2563
|
windowsizerAggressive: boolean;
|
|
2848
2564
|
anonymousMode: boolean;
|
|
2849
2565
|
unpaidStudy: boolean;
|
|
2850
|
-
sona: {
|
|
2851
|
-
url: any;
|
|
2852
|
-
experimentId: any;
|
|
2853
|
-
creditToken: any;
|
|
2854
|
-
};
|
|
2855
|
-
sonaPaid: {
|
|
2856
|
-
url: any;
|
|
2857
|
-
experimentId: any;
|
|
2858
|
-
creditToken: any;
|
|
2859
|
-
};
|
|
2860
|
-
spark: {
|
|
2861
|
-
completionUrl: string;
|
|
2862
|
-
};
|
|
2863
2566
|
firebaseConfig: {
|
|
2864
2567
|
apiKey: any;
|
|
2865
2568
|
authDomain: any;
|
|
@@ -2897,6 +2600,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2897
2600
|
deployURL: any;
|
|
2898
2601
|
labURL: any;
|
|
2899
2602
|
brandLogoFn: any;
|
|
2603
|
+
advertisementImageFn: string;
|
|
2604
|
+
advertisementImageInvertDark: boolean;
|
|
2900
2605
|
colorMode: any;
|
|
2901
2606
|
responsiveUI: boolean;
|
|
2902
2607
|
googleAnalyticsID: any;
|
|
@@ -2904,19 +2609,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
2904
2609
|
windowsizerAggressive: boolean;
|
|
2905
2610
|
anonymousMode: boolean;
|
|
2906
2611
|
unpaidStudy: boolean;
|
|
2907
|
-
sona: {
|
|
2908
|
-
url: any;
|
|
2909
|
-
experimentId: any;
|
|
2910
|
-
creditToken: any;
|
|
2911
|
-
};
|
|
2912
|
-
sonaPaid: {
|
|
2913
|
-
url: any;
|
|
2914
|
-
experimentId: any;
|
|
2915
|
-
creditToken: any;
|
|
2916
|
-
};
|
|
2917
|
-
spark: {
|
|
2918
|
-
completionUrl: string;
|
|
2919
|
-
};
|
|
2920
2612
|
firebaseConfig: {
|
|
2921
2613
|
apiKey: any;
|
|
2922
2614
|
authDomain: any;
|
|
@@ -3047,6 +2739,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3047
2739
|
deployURL: any;
|
|
3048
2740
|
labURL: any;
|
|
3049
2741
|
brandLogoFn: any;
|
|
2742
|
+
advertisementImageFn: string;
|
|
2743
|
+
advertisementImageInvertDark: boolean;
|
|
3050
2744
|
colorMode: any;
|
|
3051
2745
|
responsiveUI: boolean;
|
|
3052
2746
|
googleAnalyticsID: any;
|
|
@@ -3054,19 +2748,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3054
2748
|
windowsizerAggressive: boolean;
|
|
3055
2749
|
anonymousMode: boolean;
|
|
3056
2750
|
unpaidStudy: boolean;
|
|
3057
|
-
sona: {
|
|
3058
|
-
url: any;
|
|
3059
|
-
experimentId: any;
|
|
3060
|
-
creditToken: any;
|
|
3061
|
-
};
|
|
3062
|
-
sonaPaid: {
|
|
3063
|
-
url: any;
|
|
3064
|
-
experimentId: any;
|
|
3065
|
-
creditToken: any;
|
|
3066
|
-
};
|
|
3067
|
-
spark: {
|
|
3068
|
-
completionUrl: string;
|
|
3069
|
-
};
|
|
3070
2751
|
firebaseConfig: {
|
|
3071
2752
|
apiKey: any;
|
|
3072
2753
|
authDomain: any;
|
|
@@ -3104,6 +2785,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3104
2785
|
deployURL: any;
|
|
3105
2786
|
labURL: any;
|
|
3106
2787
|
brandLogoFn: any;
|
|
2788
|
+
advertisementImageFn: string;
|
|
2789
|
+
advertisementImageInvertDark: boolean;
|
|
3107
2790
|
colorMode: any;
|
|
3108
2791
|
responsiveUI: boolean;
|
|
3109
2792
|
googleAnalyticsID: any;
|
|
@@ -3111,19 +2794,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3111
2794
|
windowsizerAggressive: boolean;
|
|
3112
2795
|
anonymousMode: boolean;
|
|
3113
2796
|
unpaidStudy: boolean;
|
|
3114
|
-
sona: {
|
|
3115
|
-
url: any;
|
|
3116
|
-
experimentId: any;
|
|
3117
|
-
creditToken: any;
|
|
3118
|
-
};
|
|
3119
|
-
sonaPaid: {
|
|
3120
|
-
url: any;
|
|
3121
|
-
experimentId: any;
|
|
3122
|
-
creditToken: any;
|
|
3123
|
-
};
|
|
3124
|
-
spark: {
|
|
3125
|
-
completionUrl: string;
|
|
3126
|
-
};
|
|
3127
2797
|
firebaseConfig: {
|
|
3128
2798
|
apiKey: any;
|
|
3129
2799
|
authDomain: any;
|
|
@@ -3255,6 +2925,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3255
2925
|
deployURL: any;
|
|
3256
2926
|
labURL: any;
|
|
3257
2927
|
brandLogoFn: any;
|
|
2928
|
+
advertisementImageFn: string;
|
|
2929
|
+
advertisementImageInvertDark: boolean;
|
|
3258
2930
|
colorMode: any;
|
|
3259
2931
|
responsiveUI: boolean;
|
|
3260
2932
|
googleAnalyticsID: any;
|
|
@@ -3262,19 +2934,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3262
2934
|
windowsizerAggressive: boolean;
|
|
3263
2935
|
anonymousMode: boolean;
|
|
3264
2936
|
unpaidStudy: boolean;
|
|
3265
|
-
sona: {
|
|
3266
|
-
url: any;
|
|
3267
|
-
experimentId: any;
|
|
3268
|
-
creditToken: any;
|
|
3269
|
-
};
|
|
3270
|
-
sonaPaid: {
|
|
3271
|
-
url: any;
|
|
3272
|
-
experimentId: any;
|
|
3273
|
-
creditToken: any;
|
|
3274
|
-
};
|
|
3275
|
-
spark: {
|
|
3276
|
-
completionUrl: string;
|
|
3277
|
-
};
|
|
3278
2937
|
firebaseConfig: {
|
|
3279
2938
|
apiKey: any;
|
|
3280
2939
|
authDomain: any;
|
|
@@ -3312,6 +2971,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3312
2971
|
deployURL: any;
|
|
3313
2972
|
labURL: any;
|
|
3314
2973
|
brandLogoFn: any;
|
|
2974
|
+
advertisementImageFn: string;
|
|
2975
|
+
advertisementImageInvertDark: boolean;
|
|
3315
2976
|
colorMode: any;
|
|
3316
2977
|
responsiveUI: boolean;
|
|
3317
2978
|
googleAnalyticsID: any;
|
|
@@ -3319,19 +2980,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3319
2980
|
windowsizerAggressive: boolean;
|
|
3320
2981
|
anonymousMode: boolean;
|
|
3321
2982
|
unpaidStudy: boolean;
|
|
3322
|
-
sona: {
|
|
3323
|
-
url: any;
|
|
3324
|
-
experimentId: any;
|
|
3325
|
-
creditToken: any;
|
|
3326
|
-
};
|
|
3327
|
-
sonaPaid: {
|
|
3328
|
-
url: any;
|
|
3329
|
-
experimentId: any;
|
|
3330
|
-
creditToken: any;
|
|
3331
|
-
};
|
|
3332
|
-
spark: {
|
|
3333
|
-
completionUrl: string;
|
|
3334
|
-
};
|
|
3335
2983
|
firebaseConfig: {
|
|
3336
2984
|
apiKey: any;
|
|
3337
2985
|
authDomain: any;
|
|
@@ -3462,6 +3110,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3462
3110
|
deployURL: any;
|
|
3463
3111
|
labURL: any;
|
|
3464
3112
|
brandLogoFn: any;
|
|
3113
|
+
advertisementImageFn: string;
|
|
3114
|
+
advertisementImageInvertDark: boolean;
|
|
3465
3115
|
colorMode: any;
|
|
3466
3116
|
responsiveUI: boolean;
|
|
3467
3117
|
googleAnalyticsID: any;
|
|
@@ -3469,19 +3119,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3469
3119
|
windowsizerAggressive: boolean;
|
|
3470
3120
|
anonymousMode: boolean;
|
|
3471
3121
|
unpaidStudy: boolean;
|
|
3472
|
-
sona: {
|
|
3473
|
-
url: any;
|
|
3474
|
-
experimentId: any;
|
|
3475
|
-
creditToken: any;
|
|
3476
|
-
};
|
|
3477
|
-
sonaPaid: {
|
|
3478
|
-
url: any;
|
|
3479
|
-
experimentId: any;
|
|
3480
|
-
creditToken: any;
|
|
3481
|
-
};
|
|
3482
|
-
spark: {
|
|
3483
|
-
completionUrl: string;
|
|
3484
|
-
};
|
|
3485
3122
|
firebaseConfig: {
|
|
3486
3123
|
apiKey: any;
|
|
3487
3124
|
authDomain: any;
|
|
@@ -3519,6 +3156,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3519
3156
|
deployURL: any;
|
|
3520
3157
|
labURL: any;
|
|
3521
3158
|
brandLogoFn: any;
|
|
3159
|
+
advertisementImageFn: string;
|
|
3160
|
+
advertisementImageInvertDark: boolean;
|
|
3522
3161
|
colorMode: any;
|
|
3523
3162
|
responsiveUI: boolean;
|
|
3524
3163
|
googleAnalyticsID: any;
|
|
@@ -3526,19 +3165,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3526
3165
|
windowsizerAggressive: boolean;
|
|
3527
3166
|
anonymousMode: boolean;
|
|
3528
3167
|
unpaidStudy: boolean;
|
|
3529
|
-
sona: {
|
|
3530
|
-
url: any;
|
|
3531
|
-
experimentId: any;
|
|
3532
|
-
creditToken: any;
|
|
3533
|
-
};
|
|
3534
|
-
sonaPaid: {
|
|
3535
|
-
url: any;
|
|
3536
|
-
experimentId: any;
|
|
3537
|
-
creditToken: any;
|
|
3538
|
-
};
|
|
3539
|
-
spark: {
|
|
3540
|
-
completionUrl: string;
|
|
3541
|
-
};
|
|
3542
3168
|
firebaseConfig: {
|
|
3543
3169
|
apiKey: any;
|
|
3544
3170
|
authDomain: any;
|
|
@@ -3670,6 +3296,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3670
3296
|
deployURL: any;
|
|
3671
3297
|
labURL: any;
|
|
3672
3298
|
brandLogoFn: any;
|
|
3299
|
+
advertisementImageFn: string;
|
|
3300
|
+
advertisementImageInvertDark: boolean;
|
|
3673
3301
|
colorMode: any;
|
|
3674
3302
|
responsiveUI: boolean;
|
|
3675
3303
|
googleAnalyticsID: any;
|
|
@@ -3677,19 +3305,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3677
3305
|
windowsizerAggressive: boolean;
|
|
3678
3306
|
anonymousMode: boolean;
|
|
3679
3307
|
unpaidStudy: boolean;
|
|
3680
|
-
sona: {
|
|
3681
|
-
url: any;
|
|
3682
|
-
experimentId: any;
|
|
3683
|
-
creditToken: any;
|
|
3684
|
-
};
|
|
3685
|
-
sonaPaid: {
|
|
3686
|
-
url: any;
|
|
3687
|
-
experimentId: any;
|
|
3688
|
-
creditToken: any;
|
|
3689
|
-
};
|
|
3690
|
-
spark: {
|
|
3691
|
-
completionUrl: string;
|
|
3692
|
-
};
|
|
3693
3308
|
firebaseConfig: {
|
|
3694
3309
|
apiKey: any;
|
|
3695
3310
|
authDomain: any;
|
|
@@ -3727,6 +3342,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3727
3342
|
deployURL: any;
|
|
3728
3343
|
labURL: any;
|
|
3729
3344
|
brandLogoFn: any;
|
|
3345
|
+
advertisementImageFn: string;
|
|
3346
|
+
advertisementImageInvertDark: boolean;
|
|
3730
3347
|
colorMode: any;
|
|
3731
3348
|
responsiveUI: boolean;
|
|
3732
3349
|
googleAnalyticsID: any;
|
|
@@ -3734,19 +3351,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3734
3351
|
windowsizerAggressive: boolean;
|
|
3735
3352
|
anonymousMode: boolean;
|
|
3736
3353
|
unpaidStudy: boolean;
|
|
3737
|
-
sona: {
|
|
3738
|
-
url: any;
|
|
3739
|
-
experimentId: any;
|
|
3740
|
-
creditToken: any;
|
|
3741
|
-
};
|
|
3742
|
-
sonaPaid: {
|
|
3743
|
-
url: any;
|
|
3744
|
-
experimentId: any;
|
|
3745
|
-
creditToken: any;
|
|
3746
|
-
};
|
|
3747
|
-
spark: {
|
|
3748
|
-
completionUrl: string;
|
|
3749
|
-
};
|
|
3750
3354
|
firebaseConfig: {
|
|
3751
3355
|
apiKey: any;
|
|
3752
3356
|
authDomain: any;
|
|
@@ -3877,6 +3481,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3877
3481
|
deployURL: any;
|
|
3878
3482
|
labURL: any;
|
|
3879
3483
|
brandLogoFn: any;
|
|
3484
|
+
advertisementImageFn: string;
|
|
3485
|
+
advertisementImageInvertDark: boolean;
|
|
3880
3486
|
colorMode: any;
|
|
3881
3487
|
responsiveUI: boolean;
|
|
3882
3488
|
googleAnalyticsID: any;
|
|
@@ -3884,19 +3490,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3884
3490
|
windowsizerAggressive: boolean;
|
|
3885
3491
|
anonymousMode: boolean;
|
|
3886
3492
|
unpaidStudy: boolean;
|
|
3887
|
-
sona: {
|
|
3888
|
-
url: any;
|
|
3889
|
-
experimentId: any;
|
|
3890
|
-
creditToken: any;
|
|
3891
|
-
};
|
|
3892
|
-
sonaPaid: {
|
|
3893
|
-
url: any;
|
|
3894
|
-
experimentId: any;
|
|
3895
|
-
creditToken: any;
|
|
3896
|
-
};
|
|
3897
|
-
spark: {
|
|
3898
|
-
completionUrl: string;
|
|
3899
|
-
};
|
|
3900
3493
|
firebaseConfig: {
|
|
3901
3494
|
apiKey: any;
|
|
3902
3495
|
authDomain: any;
|
|
@@ -3934,6 +3527,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3934
3527
|
deployURL: any;
|
|
3935
3528
|
labURL: any;
|
|
3936
3529
|
brandLogoFn: any;
|
|
3530
|
+
advertisementImageFn: string;
|
|
3531
|
+
advertisementImageInvertDark: boolean;
|
|
3937
3532
|
colorMode: any;
|
|
3938
3533
|
responsiveUI: boolean;
|
|
3939
3534
|
googleAnalyticsID: any;
|
|
@@ -3941,19 +3536,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
3941
3536
|
windowsizerAggressive: boolean;
|
|
3942
3537
|
anonymousMode: boolean;
|
|
3943
3538
|
unpaidStudy: boolean;
|
|
3944
|
-
sona: {
|
|
3945
|
-
url: any;
|
|
3946
|
-
experimentId: any;
|
|
3947
|
-
creditToken: any;
|
|
3948
|
-
};
|
|
3949
|
-
sonaPaid: {
|
|
3950
|
-
url: any;
|
|
3951
|
-
experimentId: any;
|
|
3952
|
-
creditToken: any;
|
|
3953
|
-
};
|
|
3954
|
-
spark: {
|
|
3955
|
-
completionUrl: string;
|
|
3956
|
-
};
|
|
3957
3539
|
firebaseConfig: {
|
|
3958
3540
|
apiKey: any;
|
|
3959
3541
|
authDomain: any;
|
|
@@ -4085,6 +3667,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4085
3667
|
deployURL: any;
|
|
4086
3668
|
labURL: any;
|
|
4087
3669
|
brandLogoFn: any;
|
|
3670
|
+
advertisementImageFn: string;
|
|
3671
|
+
advertisementImageInvertDark: boolean;
|
|
4088
3672
|
colorMode: any;
|
|
4089
3673
|
responsiveUI: boolean;
|
|
4090
3674
|
googleAnalyticsID: any;
|
|
@@ -4092,19 +3676,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4092
3676
|
windowsizerAggressive: boolean;
|
|
4093
3677
|
anonymousMode: boolean;
|
|
4094
3678
|
unpaidStudy: boolean;
|
|
4095
|
-
sona: {
|
|
4096
|
-
url: any;
|
|
4097
|
-
experimentId: any;
|
|
4098
|
-
creditToken: any;
|
|
4099
|
-
};
|
|
4100
|
-
sonaPaid: {
|
|
4101
|
-
url: any;
|
|
4102
|
-
experimentId: any;
|
|
4103
|
-
creditToken: any;
|
|
4104
|
-
};
|
|
4105
|
-
spark: {
|
|
4106
|
-
completionUrl: string;
|
|
4107
|
-
};
|
|
4108
3679
|
firebaseConfig: {
|
|
4109
3680
|
apiKey: any;
|
|
4110
3681
|
authDomain: any;
|
|
@@ -4142,6 +3713,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4142
3713
|
deployURL: any;
|
|
4143
3714
|
labURL: any;
|
|
4144
3715
|
brandLogoFn: any;
|
|
3716
|
+
advertisementImageFn: string;
|
|
3717
|
+
advertisementImageInvertDark: boolean;
|
|
4145
3718
|
colorMode: any;
|
|
4146
3719
|
responsiveUI: boolean;
|
|
4147
3720
|
googleAnalyticsID: any;
|
|
@@ -4149,19 +3722,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4149
3722
|
windowsizerAggressive: boolean;
|
|
4150
3723
|
anonymousMode: boolean;
|
|
4151
3724
|
unpaidStudy: boolean;
|
|
4152
|
-
sona: {
|
|
4153
|
-
url: any;
|
|
4154
|
-
experimentId: any;
|
|
4155
|
-
creditToken: any;
|
|
4156
|
-
};
|
|
4157
|
-
sonaPaid: {
|
|
4158
|
-
url: any;
|
|
4159
|
-
experimentId: any;
|
|
4160
|
-
creditToken: any;
|
|
4161
|
-
};
|
|
4162
|
-
spark: {
|
|
4163
|
-
completionUrl: string;
|
|
4164
|
-
};
|
|
4165
3725
|
firebaseConfig: {
|
|
4166
3726
|
apiKey: any;
|
|
4167
3727
|
authDomain: any;
|
|
@@ -4292,6 +3852,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4292
3852
|
deployURL: any;
|
|
4293
3853
|
labURL: any;
|
|
4294
3854
|
brandLogoFn: any;
|
|
3855
|
+
advertisementImageFn: string;
|
|
3856
|
+
advertisementImageInvertDark: boolean;
|
|
4295
3857
|
colorMode: any;
|
|
4296
3858
|
responsiveUI: boolean;
|
|
4297
3859
|
googleAnalyticsID: any;
|
|
@@ -4299,19 +3861,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4299
3861
|
windowsizerAggressive: boolean;
|
|
4300
3862
|
anonymousMode: boolean;
|
|
4301
3863
|
unpaidStudy: boolean;
|
|
4302
|
-
sona: {
|
|
4303
|
-
url: any;
|
|
4304
|
-
experimentId: any;
|
|
4305
|
-
creditToken: any;
|
|
4306
|
-
};
|
|
4307
|
-
sonaPaid: {
|
|
4308
|
-
url: any;
|
|
4309
|
-
experimentId: any;
|
|
4310
|
-
creditToken: any;
|
|
4311
|
-
};
|
|
4312
|
-
spark: {
|
|
4313
|
-
completionUrl: string;
|
|
4314
|
-
};
|
|
4315
3864
|
firebaseConfig: {
|
|
4316
3865
|
apiKey: any;
|
|
4317
3866
|
authDomain: any;
|
|
@@ -4349,6 +3898,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4349
3898
|
deployURL: any;
|
|
4350
3899
|
labURL: any;
|
|
4351
3900
|
brandLogoFn: any;
|
|
3901
|
+
advertisementImageFn: string;
|
|
3902
|
+
advertisementImageInvertDark: boolean;
|
|
4352
3903
|
colorMode: any;
|
|
4353
3904
|
responsiveUI: boolean;
|
|
4354
3905
|
googleAnalyticsID: any;
|
|
@@ -4356,19 +3907,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4356
3907
|
windowsizerAggressive: boolean;
|
|
4357
3908
|
anonymousMode: boolean;
|
|
4358
3909
|
unpaidStudy: boolean;
|
|
4359
|
-
sona: {
|
|
4360
|
-
url: any;
|
|
4361
|
-
experimentId: any;
|
|
4362
|
-
creditToken: any;
|
|
4363
|
-
};
|
|
4364
|
-
sonaPaid: {
|
|
4365
|
-
url: any;
|
|
4366
|
-
experimentId: any;
|
|
4367
|
-
creditToken: any;
|
|
4368
|
-
};
|
|
4369
|
-
spark: {
|
|
4370
|
-
completionUrl: string;
|
|
4371
|
-
};
|
|
4372
3910
|
firebaseConfig: {
|
|
4373
3911
|
apiKey: any;
|
|
4374
3912
|
authDomain: any;
|
|
@@ -4500,6 +4038,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4500
4038
|
deployURL: any;
|
|
4501
4039
|
labURL: any;
|
|
4502
4040
|
brandLogoFn: any;
|
|
4041
|
+
advertisementImageFn: string;
|
|
4042
|
+
advertisementImageInvertDark: boolean;
|
|
4503
4043
|
colorMode: any;
|
|
4504
4044
|
responsiveUI: boolean;
|
|
4505
4045
|
googleAnalyticsID: any;
|
|
@@ -4507,19 +4047,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4507
4047
|
windowsizerAggressive: boolean;
|
|
4508
4048
|
anonymousMode: boolean;
|
|
4509
4049
|
unpaidStudy: boolean;
|
|
4510
|
-
sona: {
|
|
4511
|
-
url: any;
|
|
4512
|
-
experimentId: any;
|
|
4513
|
-
creditToken: any;
|
|
4514
|
-
};
|
|
4515
|
-
sonaPaid: {
|
|
4516
|
-
url: any;
|
|
4517
|
-
experimentId: any;
|
|
4518
|
-
creditToken: any;
|
|
4519
|
-
};
|
|
4520
|
-
spark: {
|
|
4521
|
-
completionUrl: string;
|
|
4522
|
-
};
|
|
4523
4050
|
firebaseConfig: {
|
|
4524
4051
|
apiKey: any;
|
|
4525
4052
|
authDomain: any;
|
|
@@ -4557,6 +4084,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4557
4084
|
deployURL: any;
|
|
4558
4085
|
labURL: any;
|
|
4559
4086
|
brandLogoFn: any;
|
|
4087
|
+
advertisementImageFn: string;
|
|
4088
|
+
advertisementImageInvertDark: boolean;
|
|
4560
4089
|
colorMode: any;
|
|
4561
4090
|
responsiveUI: boolean;
|
|
4562
4091
|
googleAnalyticsID: any;
|
|
@@ -4564,19 +4093,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4564
4093
|
windowsizerAggressive: boolean;
|
|
4565
4094
|
anonymousMode: boolean;
|
|
4566
4095
|
unpaidStudy: boolean;
|
|
4567
|
-
sona: {
|
|
4568
|
-
url: any;
|
|
4569
|
-
experimentId: any;
|
|
4570
|
-
creditToken: any;
|
|
4571
|
-
};
|
|
4572
|
-
sonaPaid: {
|
|
4573
|
-
url: any;
|
|
4574
|
-
experimentId: any;
|
|
4575
|
-
creditToken: any;
|
|
4576
|
-
};
|
|
4577
|
-
spark: {
|
|
4578
|
-
completionUrl: string;
|
|
4579
|
-
};
|
|
4580
4096
|
firebaseConfig: {
|
|
4581
4097
|
apiKey: any;
|
|
4582
4098
|
authDomain: any;
|
|
@@ -4707,6 +4223,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4707
4223
|
deployURL: any;
|
|
4708
4224
|
labURL: any;
|
|
4709
4225
|
brandLogoFn: any;
|
|
4226
|
+
advertisementImageFn: string;
|
|
4227
|
+
advertisementImageInvertDark: boolean;
|
|
4710
4228
|
colorMode: any;
|
|
4711
4229
|
responsiveUI: boolean;
|
|
4712
4230
|
googleAnalyticsID: any;
|
|
@@ -4714,19 +4232,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4714
4232
|
windowsizerAggressive: boolean;
|
|
4715
4233
|
anonymousMode: boolean;
|
|
4716
4234
|
unpaidStudy: boolean;
|
|
4717
|
-
sona: {
|
|
4718
|
-
url: any;
|
|
4719
|
-
experimentId: any;
|
|
4720
|
-
creditToken: any;
|
|
4721
|
-
};
|
|
4722
|
-
sonaPaid: {
|
|
4723
|
-
url: any;
|
|
4724
|
-
experimentId: any;
|
|
4725
|
-
creditToken: any;
|
|
4726
|
-
};
|
|
4727
|
-
spark: {
|
|
4728
|
-
completionUrl: string;
|
|
4729
|
-
};
|
|
4730
4235
|
firebaseConfig: {
|
|
4731
4236
|
apiKey: any;
|
|
4732
4237
|
authDomain: any;
|
|
@@ -4764,6 +4269,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4764
4269
|
deployURL: any;
|
|
4765
4270
|
labURL: any;
|
|
4766
4271
|
brandLogoFn: any;
|
|
4272
|
+
advertisementImageFn: string;
|
|
4273
|
+
advertisementImageInvertDark: boolean;
|
|
4767
4274
|
colorMode: any;
|
|
4768
4275
|
responsiveUI: boolean;
|
|
4769
4276
|
googleAnalyticsID: any;
|
|
@@ -4771,19 +4278,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4771
4278
|
windowsizerAggressive: boolean;
|
|
4772
4279
|
anonymousMode: boolean;
|
|
4773
4280
|
unpaidStudy: boolean;
|
|
4774
|
-
sona: {
|
|
4775
|
-
url: any;
|
|
4776
|
-
experimentId: any;
|
|
4777
|
-
creditToken: any;
|
|
4778
|
-
};
|
|
4779
|
-
sonaPaid: {
|
|
4780
|
-
url: any;
|
|
4781
|
-
experimentId: any;
|
|
4782
|
-
creditToken: any;
|
|
4783
|
-
};
|
|
4784
|
-
spark: {
|
|
4785
|
-
completionUrl: string;
|
|
4786
|
-
};
|
|
4787
4281
|
firebaseConfig: {
|
|
4788
4282
|
apiKey: any;
|
|
4789
4283
|
authDomain: any;
|
|
@@ -4915,6 +4409,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4915
4409
|
deployURL: any;
|
|
4916
4410
|
labURL: any;
|
|
4917
4411
|
brandLogoFn: any;
|
|
4412
|
+
advertisementImageFn: string;
|
|
4413
|
+
advertisementImageInvertDark: boolean;
|
|
4918
4414
|
colorMode: any;
|
|
4919
4415
|
responsiveUI: boolean;
|
|
4920
4416
|
googleAnalyticsID: any;
|
|
@@ -4922,19 +4418,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4922
4418
|
windowsizerAggressive: boolean;
|
|
4923
4419
|
anonymousMode: boolean;
|
|
4924
4420
|
unpaidStudy: boolean;
|
|
4925
|
-
sona: {
|
|
4926
|
-
url: any;
|
|
4927
|
-
experimentId: any;
|
|
4928
|
-
creditToken: any;
|
|
4929
|
-
};
|
|
4930
|
-
sonaPaid: {
|
|
4931
|
-
url: any;
|
|
4932
|
-
experimentId: any;
|
|
4933
|
-
creditToken: any;
|
|
4934
|
-
};
|
|
4935
|
-
spark: {
|
|
4936
|
-
completionUrl: string;
|
|
4937
|
-
};
|
|
4938
4421
|
firebaseConfig: {
|
|
4939
4422
|
apiKey: any;
|
|
4940
4423
|
authDomain: any;
|
|
@@ -4972,6 +4455,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4972
4455
|
deployURL: any;
|
|
4973
4456
|
labURL: any;
|
|
4974
4457
|
brandLogoFn: any;
|
|
4458
|
+
advertisementImageFn: string;
|
|
4459
|
+
advertisementImageInvertDark: boolean;
|
|
4975
4460
|
colorMode: any;
|
|
4976
4461
|
responsiveUI: boolean;
|
|
4977
4462
|
googleAnalyticsID: any;
|
|
@@ -4979,19 +4464,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
4979
4464
|
windowsizerAggressive: boolean;
|
|
4980
4465
|
anonymousMode: boolean;
|
|
4981
4466
|
unpaidStudy: boolean;
|
|
4982
|
-
sona: {
|
|
4983
|
-
url: any;
|
|
4984
|
-
experimentId: any;
|
|
4985
|
-
creditToken: any;
|
|
4986
|
-
};
|
|
4987
|
-
sonaPaid: {
|
|
4988
|
-
url: any;
|
|
4989
|
-
experimentId: any;
|
|
4990
|
-
creditToken: any;
|
|
4991
|
-
};
|
|
4992
|
-
spark: {
|
|
4993
|
-
completionUrl: string;
|
|
4994
|
-
};
|
|
4995
4467
|
firebaseConfig: {
|
|
4996
4468
|
apiKey: any;
|
|
4997
4469
|
authDomain: any;
|
|
@@ -5122,6 +4594,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5122
4594
|
deployURL: any;
|
|
5123
4595
|
labURL: any;
|
|
5124
4596
|
brandLogoFn: any;
|
|
4597
|
+
advertisementImageFn: string;
|
|
4598
|
+
advertisementImageInvertDark: boolean;
|
|
5125
4599
|
colorMode: any;
|
|
5126
4600
|
responsiveUI: boolean;
|
|
5127
4601
|
googleAnalyticsID: any;
|
|
@@ -5129,19 +4603,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5129
4603
|
windowsizerAggressive: boolean;
|
|
5130
4604
|
anonymousMode: boolean;
|
|
5131
4605
|
unpaidStudy: boolean;
|
|
5132
|
-
sona: {
|
|
5133
|
-
url: any;
|
|
5134
|
-
experimentId: any;
|
|
5135
|
-
creditToken: any;
|
|
5136
|
-
};
|
|
5137
|
-
sonaPaid: {
|
|
5138
|
-
url: any;
|
|
5139
|
-
experimentId: any;
|
|
5140
|
-
creditToken: any;
|
|
5141
|
-
};
|
|
5142
|
-
spark: {
|
|
5143
|
-
completionUrl: string;
|
|
5144
|
-
};
|
|
5145
4606
|
firebaseConfig: {
|
|
5146
4607
|
apiKey: any;
|
|
5147
4608
|
authDomain: any;
|
|
@@ -5179,6 +4640,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5179
4640
|
deployURL: any;
|
|
5180
4641
|
labURL: any;
|
|
5181
4642
|
brandLogoFn: any;
|
|
4643
|
+
advertisementImageFn: string;
|
|
4644
|
+
advertisementImageInvertDark: boolean;
|
|
5182
4645
|
colorMode: any;
|
|
5183
4646
|
responsiveUI: boolean;
|
|
5184
4647
|
googleAnalyticsID: any;
|
|
@@ -5186,19 +4649,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5186
4649
|
windowsizerAggressive: boolean;
|
|
5187
4650
|
anonymousMode: boolean;
|
|
5188
4651
|
unpaidStudy: boolean;
|
|
5189
|
-
sona: {
|
|
5190
|
-
url: any;
|
|
5191
|
-
experimentId: any;
|
|
5192
|
-
creditToken: any;
|
|
5193
|
-
};
|
|
5194
|
-
sonaPaid: {
|
|
5195
|
-
url: any;
|
|
5196
|
-
experimentId: any;
|
|
5197
|
-
creditToken: any;
|
|
5198
|
-
};
|
|
5199
|
-
spark: {
|
|
5200
|
-
completionUrl: string;
|
|
5201
|
-
};
|
|
5202
4652
|
firebaseConfig: {
|
|
5203
4653
|
apiKey: any;
|
|
5204
4654
|
authDomain: any;
|
|
@@ -5330,6 +4780,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5330
4780
|
deployURL: any;
|
|
5331
4781
|
labURL: any;
|
|
5332
4782
|
brandLogoFn: any;
|
|
4783
|
+
advertisementImageFn: string;
|
|
4784
|
+
advertisementImageInvertDark: boolean;
|
|
5333
4785
|
colorMode: any;
|
|
5334
4786
|
responsiveUI: boolean;
|
|
5335
4787
|
googleAnalyticsID: any;
|
|
@@ -5337,19 +4789,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5337
4789
|
windowsizerAggressive: boolean;
|
|
5338
4790
|
anonymousMode: boolean;
|
|
5339
4791
|
unpaidStudy: boolean;
|
|
5340
|
-
sona: {
|
|
5341
|
-
url: any;
|
|
5342
|
-
experimentId: any;
|
|
5343
|
-
creditToken: any;
|
|
5344
|
-
};
|
|
5345
|
-
sonaPaid: {
|
|
5346
|
-
url: any;
|
|
5347
|
-
experimentId: any;
|
|
5348
|
-
creditToken: any;
|
|
5349
|
-
};
|
|
5350
|
-
spark: {
|
|
5351
|
-
completionUrl: string;
|
|
5352
|
-
};
|
|
5353
4792
|
firebaseConfig: {
|
|
5354
4793
|
apiKey: any;
|
|
5355
4794
|
authDomain: any;
|
|
@@ -5387,6 +4826,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5387
4826
|
deployURL: any;
|
|
5388
4827
|
labURL: any;
|
|
5389
4828
|
brandLogoFn: any;
|
|
4829
|
+
advertisementImageFn: string;
|
|
4830
|
+
advertisementImageInvertDark: boolean;
|
|
5390
4831
|
colorMode: any;
|
|
5391
4832
|
responsiveUI: boolean;
|
|
5392
4833
|
googleAnalyticsID: any;
|
|
@@ -5394,19 +4835,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5394
4835
|
windowsizerAggressive: boolean;
|
|
5395
4836
|
anonymousMode: boolean;
|
|
5396
4837
|
unpaidStudy: boolean;
|
|
5397
|
-
sona: {
|
|
5398
|
-
url: any;
|
|
5399
|
-
experimentId: any;
|
|
5400
|
-
creditToken: any;
|
|
5401
|
-
};
|
|
5402
|
-
sonaPaid: {
|
|
5403
|
-
url: any;
|
|
5404
|
-
experimentId: any;
|
|
5405
|
-
creditToken: any;
|
|
5406
|
-
};
|
|
5407
|
-
spark: {
|
|
5408
|
-
completionUrl: string;
|
|
5409
|
-
};
|
|
5410
4838
|
firebaseConfig: {
|
|
5411
4839
|
apiKey: any;
|
|
5412
4840
|
authDomain: any;
|
|
@@ -5537,6 +4965,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5537
4965
|
deployURL: any;
|
|
5538
4966
|
labURL: any;
|
|
5539
4967
|
brandLogoFn: any;
|
|
4968
|
+
advertisementImageFn: string;
|
|
4969
|
+
advertisementImageInvertDark: boolean;
|
|
5540
4970
|
colorMode: any;
|
|
5541
4971
|
responsiveUI: boolean;
|
|
5542
4972
|
googleAnalyticsID: any;
|
|
@@ -5544,19 +4974,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5544
4974
|
windowsizerAggressive: boolean;
|
|
5545
4975
|
anonymousMode: boolean;
|
|
5546
4976
|
unpaidStudy: boolean;
|
|
5547
|
-
sona: {
|
|
5548
|
-
url: any;
|
|
5549
|
-
experimentId: any;
|
|
5550
|
-
creditToken: any;
|
|
5551
|
-
};
|
|
5552
|
-
sonaPaid: {
|
|
5553
|
-
url: any;
|
|
5554
|
-
experimentId: any;
|
|
5555
|
-
creditToken: any;
|
|
5556
|
-
};
|
|
5557
|
-
spark: {
|
|
5558
|
-
completionUrl: string;
|
|
5559
|
-
};
|
|
5560
4977
|
firebaseConfig: {
|
|
5561
4978
|
apiKey: any;
|
|
5562
4979
|
authDomain: any;
|
|
@@ -5594,6 +5011,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5594
5011
|
deployURL: any;
|
|
5595
5012
|
labURL: any;
|
|
5596
5013
|
brandLogoFn: any;
|
|
5014
|
+
advertisementImageFn: string;
|
|
5015
|
+
advertisementImageInvertDark: boolean;
|
|
5597
5016
|
colorMode: any;
|
|
5598
5017
|
responsiveUI: boolean;
|
|
5599
5018
|
googleAnalyticsID: any;
|
|
@@ -5601,19 +5020,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5601
5020
|
windowsizerAggressive: boolean;
|
|
5602
5021
|
anonymousMode: boolean;
|
|
5603
5022
|
unpaidStudy: boolean;
|
|
5604
|
-
sona: {
|
|
5605
|
-
url: any;
|
|
5606
|
-
experimentId: any;
|
|
5607
|
-
creditToken: any;
|
|
5608
|
-
};
|
|
5609
|
-
sonaPaid: {
|
|
5610
|
-
url: any;
|
|
5611
|
-
experimentId: any;
|
|
5612
|
-
creditToken: any;
|
|
5613
|
-
};
|
|
5614
|
-
spark: {
|
|
5615
|
-
completionUrl: string;
|
|
5616
|
-
};
|
|
5617
5023
|
firebaseConfig: {
|
|
5618
5024
|
apiKey: any;
|
|
5619
5025
|
authDomain: any;
|
|
@@ -5745,6 +5151,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5745
5151
|
deployURL: any;
|
|
5746
5152
|
labURL: any;
|
|
5747
5153
|
brandLogoFn: any;
|
|
5154
|
+
advertisementImageFn: string;
|
|
5155
|
+
advertisementImageInvertDark: boolean;
|
|
5748
5156
|
colorMode: any;
|
|
5749
5157
|
responsiveUI: boolean;
|
|
5750
5158
|
googleAnalyticsID: any;
|
|
@@ -5752,19 +5160,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5752
5160
|
windowsizerAggressive: boolean;
|
|
5753
5161
|
anonymousMode: boolean;
|
|
5754
5162
|
unpaidStudy: boolean;
|
|
5755
|
-
sona: {
|
|
5756
|
-
url: any;
|
|
5757
|
-
experimentId: any;
|
|
5758
|
-
creditToken: any;
|
|
5759
|
-
};
|
|
5760
|
-
sonaPaid: {
|
|
5761
|
-
url: any;
|
|
5762
|
-
experimentId: any;
|
|
5763
|
-
creditToken: any;
|
|
5764
|
-
};
|
|
5765
|
-
spark: {
|
|
5766
|
-
completionUrl: string;
|
|
5767
|
-
};
|
|
5768
5163
|
firebaseConfig: {
|
|
5769
5164
|
apiKey: any;
|
|
5770
5165
|
authDomain: any;
|
|
@@ -5802,6 +5197,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5802
5197
|
deployURL: any;
|
|
5803
5198
|
labURL: any;
|
|
5804
5199
|
brandLogoFn: any;
|
|
5200
|
+
advertisementImageFn: string;
|
|
5201
|
+
advertisementImageInvertDark: boolean;
|
|
5805
5202
|
colorMode: any;
|
|
5806
5203
|
responsiveUI: boolean;
|
|
5807
5204
|
googleAnalyticsID: any;
|
|
@@ -5809,19 +5206,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5809
5206
|
windowsizerAggressive: boolean;
|
|
5810
5207
|
anonymousMode: boolean;
|
|
5811
5208
|
unpaidStudy: boolean;
|
|
5812
|
-
sona: {
|
|
5813
|
-
url: any;
|
|
5814
|
-
experimentId: any;
|
|
5815
|
-
creditToken: any;
|
|
5816
|
-
};
|
|
5817
|
-
sonaPaid: {
|
|
5818
|
-
url: any;
|
|
5819
|
-
experimentId: any;
|
|
5820
|
-
creditToken: any;
|
|
5821
|
-
};
|
|
5822
|
-
spark: {
|
|
5823
|
-
completionUrl: string;
|
|
5824
|
-
};
|
|
5825
5209
|
firebaseConfig: {
|
|
5826
5210
|
apiKey: any;
|
|
5827
5211
|
authDomain: any;
|
|
@@ -5952,6 +5336,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5952
5336
|
deployURL: any;
|
|
5953
5337
|
labURL: any;
|
|
5954
5338
|
brandLogoFn: any;
|
|
5339
|
+
advertisementImageFn: string;
|
|
5340
|
+
advertisementImageInvertDark: boolean;
|
|
5955
5341
|
colorMode: any;
|
|
5956
5342
|
responsiveUI: boolean;
|
|
5957
5343
|
googleAnalyticsID: any;
|
|
@@ -5959,19 +5345,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
5959
5345
|
windowsizerAggressive: boolean;
|
|
5960
5346
|
anonymousMode: boolean;
|
|
5961
5347
|
unpaidStudy: boolean;
|
|
5962
|
-
sona: {
|
|
5963
|
-
url: any;
|
|
5964
|
-
experimentId: any;
|
|
5965
|
-
creditToken: any;
|
|
5966
|
-
};
|
|
5967
|
-
sonaPaid: {
|
|
5968
|
-
url: any;
|
|
5969
|
-
experimentId: any;
|
|
5970
|
-
creditToken: any;
|
|
5971
|
-
};
|
|
5972
|
-
spark: {
|
|
5973
|
-
completionUrl: string;
|
|
5974
|
-
};
|
|
5975
5348
|
firebaseConfig: {
|
|
5976
5349
|
apiKey: any;
|
|
5977
5350
|
authDomain: any;
|
|
@@ -6009,6 +5382,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6009
5382
|
deployURL: any;
|
|
6010
5383
|
labURL: any;
|
|
6011
5384
|
brandLogoFn: any;
|
|
5385
|
+
advertisementImageFn: string;
|
|
5386
|
+
advertisementImageInvertDark: boolean;
|
|
6012
5387
|
colorMode: any;
|
|
6013
5388
|
responsiveUI: boolean;
|
|
6014
5389
|
googleAnalyticsID: any;
|
|
@@ -6016,19 +5391,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6016
5391
|
windowsizerAggressive: boolean;
|
|
6017
5392
|
anonymousMode: boolean;
|
|
6018
5393
|
unpaidStudy: boolean;
|
|
6019
|
-
sona: {
|
|
6020
|
-
url: any;
|
|
6021
|
-
experimentId: any;
|
|
6022
|
-
creditToken: any;
|
|
6023
|
-
};
|
|
6024
|
-
sonaPaid: {
|
|
6025
|
-
url: any;
|
|
6026
|
-
experimentId: any;
|
|
6027
|
-
creditToken: any;
|
|
6028
|
-
};
|
|
6029
|
-
spark: {
|
|
6030
|
-
completionUrl: string;
|
|
6031
|
-
};
|
|
6032
5394
|
firebaseConfig: {
|
|
6033
5395
|
apiKey: any;
|
|
6034
5396
|
authDomain: any;
|
|
@@ -6183,6 +5545,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6183
5545
|
deployURL: any;
|
|
6184
5546
|
labURL: any;
|
|
6185
5547
|
brandLogoFn: any;
|
|
5548
|
+
advertisementImageFn: string;
|
|
5549
|
+
advertisementImageInvertDark: boolean;
|
|
6186
5550
|
colorMode: any;
|
|
6187
5551
|
responsiveUI: boolean;
|
|
6188
5552
|
googleAnalyticsID: any;
|
|
@@ -6190,19 +5554,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6190
5554
|
windowsizerAggressive: boolean;
|
|
6191
5555
|
anonymousMode: boolean;
|
|
6192
5556
|
unpaidStudy: boolean;
|
|
6193
|
-
sona: {
|
|
6194
|
-
url: any;
|
|
6195
|
-
experimentId: any;
|
|
6196
|
-
creditToken: any;
|
|
6197
|
-
};
|
|
6198
|
-
sonaPaid: {
|
|
6199
|
-
url: any;
|
|
6200
|
-
experimentId: any;
|
|
6201
|
-
creditToken: any;
|
|
6202
|
-
};
|
|
6203
|
-
spark: {
|
|
6204
|
-
completionUrl: string;
|
|
6205
|
-
};
|
|
6206
5557
|
firebaseConfig: {
|
|
6207
5558
|
apiKey: any;
|
|
6208
5559
|
authDomain: any;
|
|
@@ -6240,6 +5591,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6240
5591
|
deployURL: any;
|
|
6241
5592
|
labURL: any;
|
|
6242
5593
|
brandLogoFn: any;
|
|
5594
|
+
advertisementImageFn: string;
|
|
5595
|
+
advertisementImageInvertDark: boolean;
|
|
6243
5596
|
colorMode: any;
|
|
6244
5597
|
responsiveUI: boolean;
|
|
6245
5598
|
googleAnalyticsID: any;
|
|
@@ -6247,19 +5600,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6247
5600
|
windowsizerAggressive: boolean;
|
|
6248
5601
|
anonymousMode: boolean;
|
|
6249
5602
|
unpaidStudy: boolean;
|
|
6250
|
-
sona: {
|
|
6251
|
-
url: any;
|
|
6252
|
-
experimentId: any;
|
|
6253
|
-
creditToken: any;
|
|
6254
|
-
};
|
|
6255
|
-
sonaPaid: {
|
|
6256
|
-
url: any;
|
|
6257
|
-
experimentId: any;
|
|
6258
|
-
creditToken: any;
|
|
6259
|
-
};
|
|
6260
|
-
spark: {
|
|
6261
|
-
completionUrl: string;
|
|
6262
|
-
};
|
|
6263
5603
|
firebaseConfig: {
|
|
6264
5604
|
apiKey: any;
|
|
6265
5605
|
authDomain: any;
|
|
@@ -6390,6 +5730,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6390
5730
|
deployURL: any;
|
|
6391
5731
|
labURL: any;
|
|
6392
5732
|
brandLogoFn: any;
|
|
5733
|
+
advertisementImageFn: string;
|
|
5734
|
+
advertisementImageInvertDark: boolean;
|
|
6393
5735
|
colorMode: any;
|
|
6394
5736
|
responsiveUI: boolean;
|
|
6395
5737
|
googleAnalyticsID: any;
|
|
@@ -6397,19 +5739,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6397
5739
|
windowsizerAggressive: boolean;
|
|
6398
5740
|
anonymousMode: boolean;
|
|
6399
5741
|
unpaidStudy: boolean;
|
|
6400
|
-
sona: {
|
|
6401
|
-
url: any;
|
|
6402
|
-
experimentId: any;
|
|
6403
|
-
creditToken: any;
|
|
6404
|
-
};
|
|
6405
|
-
sonaPaid: {
|
|
6406
|
-
url: any;
|
|
6407
|
-
experimentId: any;
|
|
6408
|
-
creditToken: any;
|
|
6409
|
-
};
|
|
6410
|
-
spark: {
|
|
6411
|
-
completionUrl: string;
|
|
6412
|
-
};
|
|
6413
5742
|
firebaseConfig: {
|
|
6414
5743
|
apiKey: any;
|
|
6415
5744
|
authDomain: any;
|
|
@@ -6447,6 +5776,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6447
5776
|
deployURL: any;
|
|
6448
5777
|
labURL: any;
|
|
6449
5778
|
brandLogoFn: any;
|
|
5779
|
+
advertisementImageFn: string;
|
|
5780
|
+
advertisementImageInvertDark: boolean;
|
|
6450
5781
|
colorMode: any;
|
|
6451
5782
|
responsiveUI: boolean;
|
|
6452
5783
|
googleAnalyticsID: any;
|
|
@@ -6454,19 +5785,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6454
5785
|
windowsizerAggressive: boolean;
|
|
6455
5786
|
anonymousMode: boolean;
|
|
6456
5787
|
unpaidStudy: boolean;
|
|
6457
|
-
sona: {
|
|
6458
|
-
url: any;
|
|
6459
|
-
experimentId: any;
|
|
6460
|
-
creditToken: any;
|
|
6461
|
-
};
|
|
6462
|
-
sonaPaid: {
|
|
6463
|
-
url: any;
|
|
6464
|
-
experimentId: any;
|
|
6465
|
-
creditToken: any;
|
|
6466
|
-
};
|
|
6467
|
-
spark: {
|
|
6468
|
-
completionUrl: string;
|
|
6469
|
-
};
|
|
6470
5788
|
firebaseConfig: {
|
|
6471
5789
|
apiKey: any;
|
|
6472
5790
|
authDomain: any;
|
|
@@ -6598,6 +5916,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6598
5916
|
deployURL: any;
|
|
6599
5917
|
labURL: any;
|
|
6600
5918
|
brandLogoFn: any;
|
|
5919
|
+
advertisementImageFn: string;
|
|
5920
|
+
advertisementImageInvertDark: boolean;
|
|
6601
5921
|
colorMode: any;
|
|
6602
5922
|
responsiveUI: boolean;
|
|
6603
5923
|
googleAnalyticsID: any;
|
|
@@ -6605,19 +5925,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6605
5925
|
windowsizerAggressive: boolean;
|
|
6606
5926
|
anonymousMode: boolean;
|
|
6607
5927
|
unpaidStudy: boolean;
|
|
6608
|
-
sona: {
|
|
6609
|
-
url: any;
|
|
6610
|
-
experimentId: any;
|
|
6611
|
-
creditToken: any;
|
|
6612
|
-
};
|
|
6613
|
-
sonaPaid: {
|
|
6614
|
-
url: any;
|
|
6615
|
-
experimentId: any;
|
|
6616
|
-
creditToken: any;
|
|
6617
|
-
};
|
|
6618
|
-
spark: {
|
|
6619
|
-
completionUrl: string;
|
|
6620
|
-
};
|
|
6621
5928
|
firebaseConfig: {
|
|
6622
5929
|
apiKey: any;
|
|
6623
5930
|
authDomain: any;
|
|
@@ -6655,6 +5962,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6655
5962
|
deployURL: any;
|
|
6656
5963
|
labURL: any;
|
|
6657
5964
|
brandLogoFn: any;
|
|
5965
|
+
advertisementImageFn: string;
|
|
5966
|
+
advertisementImageInvertDark: boolean;
|
|
6658
5967
|
colorMode: any;
|
|
6659
5968
|
responsiveUI: boolean;
|
|
6660
5969
|
googleAnalyticsID: any;
|
|
@@ -6662,19 +5971,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6662
5971
|
windowsizerAggressive: boolean;
|
|
6663
5972
|
anonymousMode: boolean;
|
|
6664
5973
|
unpaidStudy: boolean;
|
|
6665
|
-
sona: {
|
|
6666
|
-
url: any;
|
|
6667
|
-
experimentId: any;
|
|
6668
|
-
creditToken: any;
|
|
6669
|
-
};
|
|
6670
|
-
sonaPaid: {
|
|
6671
|
-
url: any;
|
|
6672
|
-
experimentId: any;
|
|
6673
|
-
creditToken: any;
|
|
6674
|
-
};
|
|
6675
|
-
spark: {
|
|
6676
|
-
completionUrl: string;
|
|
6677
|
-
};
|
|
6678
5974
|
firebaseConfig: {
|
|
6679
5975
|
apiKey: any;
|
|
6680
5976
|
authDomain: any;
|
|
@@ -6805,6 +6101,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6805
6101
|
deployURL: any;
|
|
6806
6102
|
labURL: any;
|
|
6807
6103
|
brandLogoFn: any;
|
|
6104
|
+
advertisementImageFn: string;
|
|
6105
|
+
advertisementImageInvertDark: boolean;
|
|
6808
6106
|
colorMode: any;
|
|
6809
6107
|
responsiveUI: boolean;
|
|
6810
6108
|
googleAnalyticsID: any;
|
|
@@ -6812,19 +6110,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6812
6110
|
windowsizerAggressive: boolean;
|
|
6813
6111
|
anonymousMode: boolean;
|
|
6814
6112
|
unpaidStudy: boolean;
|
|
6815
|
-
sona: {
|
|
6816
|
-
url: any;
|
|
6817
|
-
experimentId: any;
|
|
6818
|
-
creditToken: any;
|
|
6819
|
-
};
|
|
6820
|
-
sonaPaid: {
|
|
6821
|
-
url: any;
|
|
6822
|
-
experimentId: any;
|
|
6823
|
-
creditToken: any;
|
|
6824
|
-
};
|
|
6825
|
-
spark: {
|
|
6826
|
-
completionUrl: string;
|
|
6827
|
-
};
|
|
6828
6113
|
firebaseConfig: {
|
|
6829
6114
|
apiKey: any;
|
|
6830
6115
|
authDomain: any;
|
|
@@ -6862,6 +6147,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6862
6147
|
deployURL: any;
|
|
6863
6148
|
labURL: any;
|
|
6864
6149
|
brandLogoFn: any;
|
|
6150
|
+
advertisementImageFn: string;
|
|
6151
|
+
advertisementImageInvertDark: boolean;
|
|
6865
6152
|
colorMode: any;
|
|
6866
6153
|
responsiveUI: boolean;
|
|
6867
6154
|
googleAnalyticsID: any;
|
|
@@ -6869,19 +6156,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
6869
6156
|
windowsizerAggressive: boolean;
|
|
6870
6157
|
anonymousMode: boolean;
|
|
6871
6158
|
unpaidStudy: boolean;
|
|
6872
|
-
sona: {
|
|
6873
|
-
url: any;
|
|
6874
|
-
experimentId: any;
|
|
6875
|
-
creditToken: any;
|
|
6876
|
-
};
|
|
6877
|
-
sonaPaid: {
|
|
6878
|
-
url: any;
|
|
6879
|
-
experimentId: any;
|
|
6880
|
-
creditToken: any;
|
|
6881
|
-
};
|
|
6882
|
-
spark: {
|
|
6883
|
-
completionUrl: string;
|
|
6884
|
-
};
|
|
6885
6159
|
firebaseConfig: {
|
|
6886
6160
|
apiKey: any;
|
|
6887
6161
|
authDomain: any;
|
|
@@ -7013,6 +6287,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7013
6287
|
deployURL: any;
|
|
7014
6288
|
labURL: any;
|
|
7015
6289
|
brandLogoFn: any;
|
|
6290
|
+
advertisementImageFn: string;
|
|
6291
|
+
advertisementImageInvertDark: boolean;
|
|
7016
6292
|
colorMode: any;
|
|
7017
6293
|
responsiveUI: boolean;
|
|
7018
6294
|
googleAnalyticsID: any;
|
|
@@ -7020,19 +6296,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7020
6296
|
windowsizerAggressive: boolean;
|
|
7021
6297
|
anonymousMode: boolean;
|
|
7022
6298
|
unpaidStudy: boolean;
|
|
7023
|
-
sona: {
|
|
7024
|
-
url: any;
|
|
7025
|
-
experimentId: any;
|
|
7026
|
-
creditToken: any;
|
|
7027
|
-
};
|
|
7028
|
-
sonaPaid: {
|
|
7029
|
-
url: any;
|
|
7030
|
-
experimentId: any;
|
|
7031
|
-
creditToken: any;
|
|
7032
|
-
};
|
|
7033
|
-
spark: {
|
|
7034
|
-
completionUrl: string;
|
|
7035
|
-
};
|
|
7036
6299
|
firebaseConfig: {
|
|
7037
6300
|
apiKey: any;
|
|
7038
6301
|
authDomain: any;
|
|
@@ -7070,6 +6333,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7070
6333
|
deployURL: any;
|
|
7071
6334
|
labURL: any;
|
|
7072
6335
|
brandLogoFn: any;
|
|
6336
|
+
advertisementImageFn: string;
|
|
6337
|
+
advertisementImageInvertDark: boolean;
|
|
7073
6338
|
colorMode: any;
|
|
7074
6339
|
responsiveUI: boolean;
|
|
7075
6340
|
googleAnalyticsID: any;
|
|
@@ -7077,19 +6342,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7077
6342
|
windowsizerAggressive: boolean;
|
|
7078
6343
|
anonymousMode: boolean;
|
|
7079
6344
|
unpaidStudy: boolean;
|
|
7080
|
-
sona: {
|
|
7081
|
-
url: any;
|
|
7082
|
-
experimentId: any;
|
|
7083
|
-
creditToken: any;
|
|
7084
|
-
};
|
|
7085
|
-
sonaPaid: {
|
|
7086
|
-
url: any;
|
|
7087
|
-
experimentId: any;
|
|
7088
|
-
creditToken: any;
|
|
7089
|
-
};
|
|
7090
|
-
spark: {
|
|
7091
|
-
completionUrl: string;
|
|
7092
|
-
};
|
|
7093
6345
|
firebaseConfig: {
|
|
7094
6346
|
apiKey: any;
|
|
7095
6347
|
authDomain: any;
|
|
@@ -7220,6 +6472,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7220
6472
|
deployURL: any;
|
|
7221
6473
|
labURL: any;
|
|
7222
6474
|
brandLogoFn: any;
|
|
6475
|
+
advertisementImageFn: string;
|
|
6476
|
+
advertisementImageInvertDark: boolean;
|
|
7223
6477
|
colorMode: any;
|
|
7224
6478
|
responsiveUI: boolean;
|
|
7225
6479
|
googleAnalyticsID: any;
|
|
@@ -7227,19 +6481,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7227
6481
|
windowsizerAggressive: boolean;
|
|
7228
6482
|
anonymousMode: boolean;
|
|
7229
6483
|
unpaidStudy: boolean;
|
|
7230
|
-
sona: {
|
|
7231
|
-
url: any;
|
|
7232
|
-
experimentId: any;
|
|
7233
|
-
creditToken: any;
|
|
7234
|
-
};
|
|
7235
|
-
sonaPaid: {
|
|
7236
|
-
url: any;
|
|
7237
|
-
experimentId: any;
|
|
7238
|
-
creditToken: any;
|
|
7239
|
-
};
|
|
7240
|
-
spark: {
|
|
7241
|
-
completionUrl: string;
|
|
7242
|
-
};
|
|
7243
6484
|
firebaseConfig: {
|
|
7244
6485
|
apiKey: any;
|
|
7245
6486
|
authDomain: any;
|
|
@@ -7277,6 +6518,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7277
6518
|
deployURL: any;
|
|
7278
6519
|
labURL: any;
|
|
7279
6520
|
brandLogoFn: any;
|
|
6521
|
+
advertisementImageFn: string;
|
|
6522
|
+
advertisementImageInvertDark: boolean;
|
|
7280
6523
|
colorMode: any;
|
|
7281
6524
|
responsiveUI: boolean;
|
|
7282
6525
|
googleAnalyticsID: any;
|
|
@@ -7284,19 +6527,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7284
6527
|
windowsizerAggressive: boolean;
|
|
7285
6528
|
anonymousMode: boolean;
|
|
7286
6529
|
unpaidStudy: boolean;
|
|
7287
|
-
sona: {
|
|
7288
|
-
url: any;
|
|
7289
|
-
experimentId: any;
|
|
7290
|
-
creditToken: any;
|
|
7291
|
-
};
|
|
7292
|
-
sonaPaid: {
|
|
7293
|
-
url: any;
|
|
7294
|
-
experimentId: any;
|
|
7295
|
-
creditToken: any;
|
|
7296
|
-
};
|
|
7297
|
-
spark: {
|
|
7298
|
-
completionUrl: string;
|
|
7299
|
-
};
|
|
7300
6530
|
firebaseConfig: {
|
|
7301
6531
|
apiKey: any;
|
|
7302
6532
|
authDomain: any;
|
|
@@ -7428,6 +6658,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7428
6658
|
deployURL: any;
|
|
7429
6659
|
labURL: any;
|
|
7430
6660
|
brandLogoFn: any;
|
|
6661
|
+
advertisementImageFn: string;
|
|
6662
|
+
advertisementImageInvertDark: boolean;
|
|
7431
6663
|
colorMode: any;
|
|
7432
6664
|
responsiveUI: boolean;
|
|
7433
6665
|
googleAnalyticsID: any;
|
|
@@ -7435,19 +6667,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7435
6667
|
windowsizerAggressive: boolean;
|
|
7436
6668
|
anonymousMode: boolean;
|
|
7437
6669
|
unpaidStudy: boolean;
|
|
7438
|
-
sona: {
|
|
7439
|
-
url: any;
|
|
7440
|
-
experimentId: any;
|
|
7441
|
-
creditToken: any;
|
|
7442
|
-
};
|
|
7443
|
-
sonaPaid: {
|
|
7444
|
-
url: any;
|
|
7445
|
-
experimentId: any;
|
|
7446
|
-
creditToken: any;
|
|
7447
|
-
};
|
|
7448
|
-
spark: {
|
|
7449
|
-
completionUrl: string;
|
|
7450
|
-
};
|
|
7451
6670
|
firebaseConfig: {
|
|
7452
6671
|
apiKey: any;
|
|
7453
6672
|
authDomain: any;
|
|
@@ -7485,6 +6704,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7485
6704
|
deployURL: any;
|
|
7486
6705
|
labURL: any;
|
|
7487
6706
|
brandLogoFn: any;
|
|
6707
|
+
advertisementImageFn: string;
|
|
6708
|
+
advertisementImageInvertDark: boolean;
|
|
7488
6709
|
colorMode: any;
|
|
7489
6710
|
responsiveUI: boolean;
|
|
7490
6711
|
googleAnalyticsID: any;
|
|
@@ -7492,19 +6713,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7492
6713
|
windowsizerAggressive: boolean;
|
|
7493
6714
|
anonymousMode: boolean;
|
|
7494
6715
|
unpaidStudy: boolean;
|
|
7495
|
-
sona: {
|
|
7496
|
-
url: any;
|
|
7497
|
-
experimentId: any;
|
|
7498
|
-
creditToken: any;
|
|
7499
|
-
};
|
|
7500
|
-
sonaPaid: {
|
|
7501
|
-
url: any;
|
|
7502
|
-
experimentId: any;
|
|
7503
|
-
creditToken: any;
|
|
7504
|
-
};
|
|
7505
|
-
spark: {
|
|
7506
|
-
completionUrl: string;
|
|
7507
|
-
};
|
|
7508
6716
|
firebaseConfig: {
|
|
7509
6717
|
apiKey: any;
|
|
7510
6718
|
authDomain: any;
|
|
@@ -7635,6 +6843,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7635
6843
|
deployURL: any;
|
|
7636
6844
|
labURL: any;
|
|
7637
6845
|
brandLogoFn: any;
|
|
6846
|
+
advertisementImageFn: string;
|
|
6847
|
+
advertisementImageInvertDark: boolean;
|
|
7638
6848
|
colorMode: any;
|
|
7639
6849
|
responsiveUI: boolean;
|
|
7640
6850
|
googleAnalyticsID: any;
|
|
@@ -7642,19 +6852,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7642
6852
|
windowsizerAggressive: boolean;
|
|
7643
6853
|
anonymousMode: boolean;
|
|
7644
6854
|
unpaidStudy: boolean;
|
|
7645
|
-
sona: {
|
|
7646
|
-
url: any;
|
|
7647
|
-
experimentId: any;
|
|
7648
|
-
creditToken: any;
|
|
7649
|
-
};
|
|
7650
|
-
sonaPaid: {
|
|
7651
|
-
url: any;
|
|
7652
|
-
experimentId: any;
|
|
7653
|
-
creditToken: any;
|
|
7654
|
-
};
|
|
7655
|
-
spark: {
|
|
7656
|
-
completionUrl: string;
|
|
7657
|
-
};
|
|
7658
6855
|
firebaseConfig: {
|
|
7659
6856
|
apiKey: any;
|
|
7660
6857
|
authDomain: any;
|
|
@@ -7692,6 +6889,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7692
6889
|
deployURL: any;
|
|
7693
6890
|
labURL: any;
|
|
7694
6891
|
brandLogoFn: any;
|
|
6892
|
+
advertisementImageFn: string;
|
|
6893
|
+
advertisementImageInvertDark: boolean;
|
|
7695
6894
|
colorMode: any;
|
|
7696
6895
|
responsiveUI: boolean;
|
|
7697
6896
|
googleAnalyticsID: any;
|
|
@@ -7699,19 +6898,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7699
6898
|
windowsizerAggressive: boolean;
|
|
7700
6899
|
anonymousMode: boolean;
|
|
7701
6900
|
unpaidStudy: boolean;
|
|
7702
|
-
sona: {
|
|
7703
|
-
url: any;
|
|
7704
|
-
experimentId: any;
|
|
7705
|
-
creditToken: any;
|
|
7706
|
-
};
|
|
7707
|
-
sonaPaid: {
|
|
7708
|
-
url: any;
|
|
7709
|
-
experimentId: any;
|
|
7710
|
-
creditToken: any;
|
|
7711
|
-
};
|
|
7712
|
-
spark: {
|
|
7713
|
-
completionUrl: string;
|
|
7714
|
-
};
|
|
7715
6901
|
firebaseConfig: {
|
|
7716
6902
|
apiKey: any;
|
|
7717
6903
|
authDomain: any;
|
|
@@ -7843,6 +7029,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7843
7029
|
deployURL: any;
|
|
7844
7030
|
labURL: any;
|
|
7845
7031
|
brandLogoFn: any;
|
|
7032
|
+
advertisementImageFn: string;
|
|
7033
|
+
advertisementImageInvertDark: boolean;
|
|
7846
7034
|
colorMode: any;
|
|
7847
7035
|
responsiveUI: boolean;
|
|
7848
7036
|
googleAnalyticsID: any;
|
|
@@ -7850,19 +7038,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7850
7038
|
windowsizerAggressive: boolean;
|
|
7851
7039
|
anonymousMode: boolean;
|
|
7852
7040
|
unpaidStudy: boolean;
|
|
7853
|
-
sona: {
|
|
7854
|
-
url: any;
|
|
7855
|
-
experimentId: any;
|
|
7856
|
-
creditToken: any;
|
|
7857
|
-
};
|
|
7858
|
-
sonaPaid: {
|
|
7859
|
-
url: any;
|
|
7860
|
-
experimentId: any;
|
|
7861
|
-
creditToken: any;
|
|
7862
|
-
};
|
|
7863
|
-
spark: {
|
|
7864
|
-
completionUrl: string;
|
|
7865
|
-
};
|
|
7866
7041
|
firebaseConfig: {
|
|
7867
7042
|
apiKey: any;
|
|
7868
7043
|
authDomain: any;
|
|
@@ -7900,6 +7075,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7900
7075
|
deployURL: any;
|
|
7901
7076
|
labURL: any;
|
|
7902
7077
|
brandLogoFn: any;
|
|
7078
|
+
advertisementImageFn: string;
|
|
7079
|
+
advertisementImageInvertDark: boolean;
|
|
7903
7080
|
colorMode: any;
|
|
7904
7081
|
responsiveUI: boolean;
|
|
7905
7082
|
googleAnalyticsID: any;
|
|
@@ -7907,19 +7084,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
7907
7084
|
windowsizerAggressive: boolean;
|
|
7908
7085
|
anonymousMode: boolean;
|
|
7909
7086
|
unpaidStudy: boolean;
|
|
7910
|
-
sona: {
|
|
7911
|
-
url: any;
|
|
7912
|
-
experimentId: any;
|
|
7913
|
-
creditToken: any;
|
|
7914
|
-
};
|
|
7915
|
-
sonaPaid: {
|
|
7916
|
-
url: any;
|
|
7917
|
-
experimentId: any;
|
|
7918
|
-
creditToken: any;
|
|
7919
|
-
};
|
|
7920
|
-
spark: {
|
|
7921
|
-
completionUrl: string;
|
|
7922
|
-
};
|
|
7923
7087
|
firebaseConfig: {
|
|
7924
7088
|
apiKey: any;
|
|
7925
7089
|
authDomain: any;
|
|
@@ -8050,6 +7214,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
8050
7214
|
deployURL: any;
|
|
8051
7215
|
labURL: any;
|
|
8052
7216
|
brandLogoFn: any;
|
|
7217
|
+
advertisementImageFn: string;
|
|
7218
|
+
advertisementImageInvertDark: boolean;
|
|
8053
7219
|
colorMode: any;
|
|
8054
7220
|
responsiveUI: boolean;
|
|
8055
7221
|
googleAnalyticsID: any;
|
|
@@ -8057,19 +7223,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
8057
7223
|
windowsizerAggressive: boolean;
|
|
8058
7224
|
anonymousMode: boolean;
|
|
8059
7225
|
unpaidStudy: boolean;
|
|
8060
|
-
sona: {
|
|
8061
|
-
url: any;
|
|
8062
|
-
experimentId: any;
|
|
8063
|
-
creditToken: any;
|
|
8064
|
-
};
|
|
8065
|
-
sonaPaid: {
|
|
8066
|
-
url: any;
|
|
8067
|
-
experimentId: any;
|
|
8068
|
-
creditToken: any;
|
|
8069
|
-
};
|
|
8070
|
-
spark: {
|
|
8071
|
-
completionUrl: string;
|
|
8072
|
-
};
|
|
8073
7226
|
firebaseConfig: {
|
|
8074
7227
|
apiKey: any;
|
|
8075
7228
|
authDomain: any;
|
|
@@ -8107,6 +7260,8 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
8107
7260
|
deployURL: any;
|
|
8108
7261
|
labURL: any;
|
|
8109
7262
|
brandLogoFn: any;
|
|
7263
|
+
advertisementImageFn: string;
|
|
7264
|
+
advertisementImageInvertDark: boolean;
|
|
8110
7265
|
colorMode: any;
|
|
8111
7266
|
responsiveUI: boolean;
|
|
8112
7267
|
googleAnalyticsID: any;
|
|
@@ -8114,19 +7269,6 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
8114
7269
|
windowsizerAggressive: boolean;
|
|
8115
7270
|
anonymousMode: boolean;
|
|
8116
7271
|
unpaidStudy: boolean;
|
|
8117
|
-
sona: {
|
|
8118
|
-
url: any;
|
|
8119
|
-
experimentId: any;
|
|
8120
|
-
creditToken: any;
|
|
8121
|
-
};
|
|
8122
|
-
sonaPaid: {
|
|
8123
|
-
url: any;
|
|
8124
|
-
experimentId: any;
|
|
8125
|
-
creditToken: any;
|
|
8126
|
-
};
|
|
8127
|
-
spark: {
|
|
8128
|
-
completionUrl: string;
|
|
8129
|
-
};
|
|
8130
7272
|
firebaseConfig: {
|
|
8131
7273
|
apiKey: any;
|
|
8132
7274
|
authDomain: any;
|
|
@@ -8165,6 +7307,11 @@ declare const _default: import("pinia").StoreDefinition<"smilestore", {
|
|
|
8165
7307
|
setRandomizedRoute(name: any, route: any): void;
|
|
8166
7308
|
setKnown(): Promise<void>;
|
|
8167
7309
|
loadData(): Promise<void>;
|
|
7310
|
+
/**
|
|
7311
|
+
* Resets an orphaned user (cookie exists but DB record is missing).
|
|
7312
|
+
* Clears cookies and localStorage, then redirects to the welcome page.
|
|
7313
|
+
*/
|
|
7314
|
+
resetOrphanedUser(): void;
|
|
8168
7315
|
setLastRoute(route: any): void;
|
|
8169
7316
|
recordRoute(route: any): void;
|
|
8170
7317
|
saveData(force?: boolean): Promise<void>;
|