@oxyhq/services 28.0.0 → 30.0.0
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/NOTICE +10 -9
- package/README.md +65 -2
- package/android/src/main/java/so/oxy/devicesession/OxyDeviceSessionModule.kt +178 -0
- package/android/src/main/java/so/oxy/devicesession/OxyDeviceSessionProvider.kt +99 -0
- package/android/src/main/java/so/oxy/devicesession/OxyDeviceSessionStore.kt +115 -0
- package/expo-module.config.json +1 -0
- package/package.json +8 -8
- package/plugins/withSharedDeviceSessionProvider.js +102 -0
- package/plugins/withSharedDeviceSessionReader.js +57 -0
- package/src/__tests__/esmSourcePurity.test.ts +61 -0
- package/src/index.ts +31 -9
- package/src/ui/boot/runProviderColdBoot.ts +7 -0
- package/src/ui/client.ts +1 -2
- package/src/ui/components/FollowTargetButton.tsx +31 -27
- package/src/ui/components/OxyAccountDialogScreen.tsx +10 -29
- package/src/ui/components/OxyAuthChooser.tsx +149 -50
- package/src/ui/components/OxyConsentScreen.tsx +7 -2
- package/src/ui/components/OxyProvider.tsx +25 -26
- package/src/ui/components/SurfaceScreen.tsx +28 -4
- package/src/ui/components/authChooser/AccountsMenuView.tsx +246 -96
- package/src/ui/components/authChooser/SignInEntryView.tsx +31 -8
- package/src/ui/components/authChooser/TroubleDisclosure.tsx +26 -11
- package/src/ui/components/authChooser/primitives.tsx +37 -23
- package/src/ui/components/authChooser/types.ts +34 -1
- package/src/ui/context/OxyContext.tsx +269 -324
- package/src/ui/context/hooks/useAuthOperations.ts +32 -35
- package/src/ui/context/oxyContextHelpers.ts +0 -30
- package/src/ui/context/oxyContextTypes.ts +9 -1
- package/src/ui/context/useOxyAccountGraph.ts +5 -19
- package/src/ui/hooks/accountDialogSnapshot.ts +37 -0
- package/src/ui/hooks/mutations/useAccountMutations.ts +0 -19
- package/src/ui/hooks/queries/__tests__/userCache.test.ts +12 -1
- package/src/ui/hooks/useDeviceSwitcher.ts +110 -0
- package/src/ui/hooks/useI18n.ts +23 -3
- package/src/ui/hooks/useSessionManagement.ts +62 -211
- package/src/ui/index.ts +1 -2
- package/src/ui/navigation/routes.ts +85 -75
- package/src/ui/navigation/surfaces.ts +6 -9
- package/src/ui/runtime/createOxyRuntime.ts +623 -0
- package/src/ui/runtime/index.ts +34 -0
- package/src/ui/runtime/runtimeContext.tsx +111 -0
- package/src/ui/runtime/types.ts +110 -0
- package/src/ui/runtime/useRuntimeSnapshot.ts +52 -0
- package/src/ui/screens/AccountMembersScreen.tsx +2 -2
- package/src/ui/screens/AccountSettingsScreen.tsx +1 -1
- package/src/ui/screens/AccountVerificationScreen.tsx +1 -1
- package/src/ui/screens/ChangeAvatarScreen.tsx +1 -1
- package/src/ui/screens/ConnectedAppsScreen.tsx +1 -1
- package/src/ui/screens/FileManagementScreen.tsx +2 -2
- package/src/ui/screens/HistoryViewScreen.tsx +2 -2
- package/src/ui/screens/ManageAccountScreen.tsx +3 -3
- package/src/ui/screens/PremiumSubscriptionScreen.tsx +2 -2
- package/src/ui/screens/trust/TrustCenterScreen.tsx +2 -2
- package/src/ui/screens/trust/TrustLeaderboardScreen.tsx +1 -1
- package/src/ui/screens/trust/TrustRulesScreen.tsx +1 -1
- package/src/ui/server.ts +0 -1
- package/src/ui/session/__tests__/authStore.test.ts +90 -0
- package/src/ui/session/__tests__/sharedDeviceCredentialStore.test.ts +289 -0
- package/src/ui/session/authStore.ts +78 -9
- package/src/ui/session/sharedDeviceCredentialStore.ts +318 -0
- package/src/ui/stores/authStore.ts +171 -43
- package/src/ui/types/navigation.ts +26 -0
- package/src/ui/utils/avatarUtils.ts +2 -37
- package/lib/commonjs/assets/OxyLogo.svg +0 -1
- package/lib/commonjs/assets/assets/OxyLogo.svg +0 -1
- package/lib/commonjs/assets/assets/icons/OxyServices.tsx +0 -60
- package/lib/commonjs/assets/assets/icons/logo_OxyServices.svg +0 -1
- package/lib/commonjs/assets/assets/illustrations/HighFive.tsx +0 -39
- package/lib/commonjs/assets/assets/lottie/welcomeheader_background_op1.json +0 -1
- package/lib/commonjs/assets/icons/OxyServices.js +0 -51
- package/lib/commonjs/assets/icons/OxyServices.js.map +0 -1
- package/lib/commonjs/assets/icons/logo_OxyServices.svg +0 -1
- package/lib/commonjs/assets/illustrations/HighFive.js +0 -58
- package/lib/commonjs/assets/illustrations/HighFive.js.map +0 -1
- package/lib/commonjs/assets/lottie/welcomeheader_background_op1.json +0 -1
- package/lib/commonjs/index.js +0 -994
- package/lib/commonjs/index.js.map +0 -1
- package/lib/commonjs/notifications/deviceNotifications.js +0 -443
- package/lib/commonjs/notifications/deviceNotifications.js.map +0 -1
- package/lib/commonjs/package.json +0 -1
- package/lib/commonjs/ui/boot/runProviderColdBoot.js +0 -198
- package/lib/commonjs/ui/boot/runProviderColdBoot.js.map +0 -1
- package/lib/commonjs/ui/client.js +0 -137
- package/lib/commonjs/ui/client.js.map +0 -1
- package/lib/commonjs/ui/components/AvatarCameraBadge.js +0 -43
- package/lib/commonjs/ui/components/AvatarCameraBadge.js.map +0 -1
- package/lib/commonjs/ui/components/FollowButton.js +0 -255
- package/lib/commonjs/ui/components/FollowButton.js.map +0 -1
- package/lib/commonjs/ui/components/FollowTargetButton.js +0 -363
- package/lib/commonjs/ui/components/FollowTargetButton.js.map +0 -1
- package/lib/commonjs/ui/components/OxyAccountDialogScreen.js +0 -195
- package/lib/commonjs/ui/components/OxyAccountDialogScreen.js.map +0 -1
- package/lib/commonjs/ui/components/OxyAuthChooser.js +0 -405
- package/lib/commonjs/ui/components/OxyAuthChooser.js.map +0 -1
- package/lib/commonjs/ui/components/OxyAuthPrompt.js +0 -124
- package/lib/commonjs/ui/components/OxyAuthPrompt.js.map +0 -1
- package/lib/commonjs/ui/components/OxyConsentScreen.js +0 -497
- package/lib/commonjs/ui/components/OxyConsentScreen.js.map +0 -1
- package/lib/commonjs/ui/components/OxyOAuthCallback.js +0 -44
- package/lib/commonjs/ui/components/OxyOAuthCallback.js.map +0 -1
- package/lib/commonjs/ui/components/OxyPayButton.js +0 -66
- package/lib/commonjs/ui/components/OxyPayButton.js.map +0 -1
- package/lib/commonjs/ui/components/OxyProvider.js +0 -315
- package/lib/commonjs/ui/components/OxyProvider.js.map +0 -1
- package/lib/commonjs/ui/components/OxySignInButton.js +0 -321
- package/lib/commonjs/ui/components/OxySignInButton.js.map +0 -1
- package/lib/commonjs/ui/components/OxySignInRequestSurface.js +0 -147
- package/lib/commonjs/ui/components/OxySignInRequestSurface.js.map +0 -1
- package/lib/commonjs/ui/components/ProfileButton.js +0 -342
- package/lib/commonjs/ui/components/ProfileButton.js.map +0 -1
- package/lib/commonjs/ui/components/ProfileSummaryCard.js +0 -79
- package/lib/commonjs/ui/components/ProfileSummaryCard.js.map +0 -1
- package/lib/commonjs/ui/components/RequireOxyAuth.js +0 -296
- package/lib/commonjs/ui/components/RequireOxyAuth.js.map +0 -1
- package/lib/commonjs/ui/components/SettingsIcon.js +0 -45
- package/lib/commonjs/ui/components/SettingsIcon.js.map +0 -1
- package/lib/commonjs/ui/components/SurfaceHeaderAction.js +0 -63
- package/lib/commonjs/ui/components/SurfaceHeaderAction.js.map +0 -1
- package/lib/commonjs/ui/components/SurfaceScreen.js +0 -229
- package/lib/commonjs/ui/components/SurfaceScreen.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/AccountsMenuView.js +0 -542
- package/lib/commonjs/ui/components/authChooser/AccountsMenuView.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/SignInEntryView.js +0 -90
- package/lib/commonjs/ui/components/authChooser/SignInEntryView.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/SignInRequestView.js +0 -106
- package/lib/commonjs/ui/components/authChooser/SignInRequestView.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/SignUpView.js +0 -188
- package/lib/commonjs/ui/components/authChooser/SignUpView.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/TroubleDisclosure.js +0 -61
- package/lib/commonjs/ui/components/authChooser/TroubleDisclosure.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/primitives.js +0 -170
- package/lib/commonjs/ui/components/authChooser/primitives.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/requestSurfaces.js +0 -161
- package/lib/commonjs/ui/components/authChooser/requestSurfaces.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/signInProgress.js +0 -59
- package/lib/commonjs/ui/components/authChooser/signInProgress.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/styles.js +0 -219
- package/lib/commonjs/ui/components/authChooser/styles.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/types.js +0 -70
- package/lib/commonjs/ui/components/authChooser/types.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/useUsernameAvailability.js +0 -50
- package/lib/commonjs/ui/components/authChooser/useUsernameAvailability.js.map +0 -1
- package/lib/commonjs/ui/components/feedback/constants.js +0 -59
- package/lib/commonjs/ui/components/feedback/constants.js.map +0 -1
- package/lib/commonjs/ui/components/feedback/types.js +0 -6
- package/lib/commonjs/ui/components/feedback/types.js.map +0 -1
- package/lib/commonjs/ui/components/feedback/useFeedbackForm.js +0 -52
- package/lib/commonjs/ui/components/feedback/useFeedbackForm.js.map +0 -1
- package/lib/commonjs/ui/components/fileManagement/AnimatedButton.js +0 -61
- package/lib/commonjs/ui/components/fileManagement/AnimatedButton.js.map +0 -1
- package/lib/commonjs/ui/components/fileManagement/FileDetailsModal.js +0 -125
- package/lib/commonjs/ui/components/fileManagement/FileDetailsModal.js.map +0 -1
- package/lib/commonjs/ui/components/fileManagement/FileViewer.js +0 -431
- package/lib/commonjs/ui/components/fileManagement/FileViewer.js.map +0 -1
- package/lib/commonjs/ui/components/fileManagement/UploadPreview.js +0 -172
- package/lib/commonjs/ui/components/fileManagement/UploadPreview.js.map +0 -1
- package/lib/commonjs/ui/components/icon/FAIRWalletIcon.js +0 -64
- package/lib/commonjs/ui/components/icon/FAIRWalletIcon.js.map +0 -1
- package/lib/commonjs/ui/components/internal/PinInput.js +0 -118
- package/lib/commonjs/ui/components/internal/PinInput.js.map +0 -1
- package/lib/commonjs/ui/components/logo/LogoIcon.js +0 -61
- package/lib/commonjs/ui/components/logo/LogoIcon.js.map +0 -1
- package/lib/commonjs/ui/components/logo/LogoText.js +0 -48
- package/lib/commonjs/ui/components/logo/LogoText.js.map +0 -1
- package/lib/commonjs/ui/components/modals/DeleteAccountModal.js +0 -133
- package/lib/commonjs/ui/components/modals/DeleteAccountModal.js.map +0 -1
- package/lib/commonjs/ui/components/oauthNavigation.js +0 -83
- package/lib/commonjs/ui/components/oauthNavigation.js.map +0 -1
- package/lib/commonjs/ui/components/passkeyHubPopup.js +0 -33
- package/lib/commonjs/ui/components/passkeyHubPopup.js.map +0 -1
- package/lib/commonjs/ui/components/payment/PaymentDetailsStep.js +0 -327
- package/lib/commonjs/ui/components/payment/PaymentDetailsStep.js.map +0 -1
- package/lib/commonjs/ui/components/payment/PaymentMethodStep.js +0 -105
- package/lib/commonjs/ui/components/payment/PaymentMethodStep.js.map +0 -1
- package/lib/commonjs/ui/components/payment/PaymentReviewStep.js +0 -149
- package/lib/commonjs/ui/components/payment/PaymentReviewStep.js.map +0 -1
- package/lib/commonjs/ui/components/payment/PaymentSuccessStep.js +0 -84
- package/lib/commonjs/ui/components/payment/PaymentSuccessStep.js.map +0 -1
- package/lib/commonjs/ui/components/payment/PaymentSummaryStep.js +0 -195
- package/lib/commonjs/ui/components/payment/PaymentSummaryStep.js.map +0 -1
- package/lib/commonjs/ui/components/payment/constants.js +0 -53
- package/lib/commonjs/ui/components/payment/constants.js.map +0 -1
- package/lib/commonjs/ui/components/payment/paymentStyles.js +0 -401
- package/lib/commonjs/ui/components/payment/paymentStyles.js.map +0 -1
- package/lib/commonjs/ui/components/payment/types.js +0 -6
- package/lib/commonjs/ui/components/payment/types.js.map +0 -1
- package/lib/commonjs/ui/components/photogrid/JustifiedPhotoGrid.js +0 -223
- package/lib/commonjs/ui/components/photogrid/JustifiedPhotoGrid.js.map +0 -1
- package/lib/commonjs/ui/components/styles/overlay.js +0 -83
- package/lib/commonjs/ui/components/styles/overlay.js.map +0 -1
- package/lib/commonjs/ui/components/styles/shadow.js +0 -127
- package/lib/commonjs/ui/components/styles/shadow.js.map +0 -1
- package/lib/commonjs/ui/components/surfaces/ActionSheetSurface.js +0 -83
- package/lib/commonjs/ui/components/surfaces/ActionSheetSurface.js.map +0 -1
- package/lib/commonjs/ui/components/utils/hasTouchHandler.js +0 -13
- package/lib/commonjs/ui/components/utils/hasTouchHandler.js.map +0 -1
- package/lib/commonjs/ui/components/utils/roundLayoutSize.js +0 -9
- package/lib/commonjs/ui/components/utils/roundLayoutSize.js.map +0 -1
- package/lib/commonjs/ui/components/utils/splitStyles.js +0 -50
- package/lib/commonjs/ui/components/utils/splitStyles.js.map +0 -1
- package/lib/commonjs/ui/constants/spacing.js +0 -50
- package/lib/commonjs/ui/constants/spacing.js.map +0 -1
- package/lib/commonjs/ui/context/OxyContext.js +0 -1248
- package/lib/commonjs/ui/context/OxyContext.js.map +0 -1
- package/lib/commonjs/ui/context/commitSessionFlow.js +0 -104
- package/lib/commonjs/ui/context/commitSessionFlow.js.map +0 -1
- package/lib/commonjs/ui/context/hooks/useAuthOperations.js +0 -316
- package/lib/commonjs/ui/context/hooks/useAuthOperations.js.map +0 -1
- package/lib/commonjs/ui/context/oxyContextHelpers.js +0 -64
- package/lib/commonjs/ui/context/oxyContextHelpers.js.map +0 -1
- package/lib/commonjs/ui/context/oxyContextTypes.js +0 -6
- package/lib/commonjs/ui/context/oxyContextTypes.js.map +0 -1
- package/lib/commonjs/ui/context/passkeyFlow.js +0 -118
- package/lib/commonjs/ui/context/passkeyFlow.js.map +0 -1
- package/lib/commonjs/ui/context/useOxyAccountGraph.js +0 -111
- package/lib/commonjs/ui/context/useOxyAccountGraph.js.map +0 -1
- package/lib/commonjs/ui/hooks/mutations/mutationFactory.js +0 -182
- package/lib/commonjs/ui/hooks/mutations/mutationFactory.js.map +0 -1
- package/lib/commonjs/ui/hooks/mutations/mutationKeys.js +0 -40
- package/lib/commonjs/ui/hooks/mutations/mutationKeys.js.map +0 -1
- package/lib/commonjs/ui/hooks/mutations/useAccountMutations.js +0 -694
- package/lib/commonjs/ui/hooks/mutations/useAccountMutations.js.map +0 -1
- package/lib/commonjs/ui/hooks/mutations/useServicesMutations.js +0 -197
- package/lib/commonjs/ui/hooks/mutations/useServicesMutations.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/paymentTypes.js +0 -2
- package/lib/commonjs/ui/hooks/queries/paymentTypes.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/queryKeys.js +0 -222
- package/lib/commonjs/ui/hooks/queries/queryKeys.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/useAccountQueries.js +0 -326
- package/lib/commonjs/ui/hooks/queries/useAccountQueries.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/useAuthMethods.js +0 -49
- package/lib/commonjs/ui/hooks/queries/useAuthMethods.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/useFileQueries.js +0 -129
- package/lib/commonjs/ui/hooks/queries/useFileQueries.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/usePaymentQueries.js +0 -145
- package/lib/commonjs/ui/hooks/queries/usePaymentQueries.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/useSecurityQueries.js +0 -93
- package/lib/commonjs/ui/hooks/queries/useSecurityQueries.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/useServicesQueries.js +0 -170
- package/lib/commonjs/ui/hooks/queries/useServicesQueries.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/userCache.js +0 -440
- package/lib/commonjs/ui/hooks/queries/userCache.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/userCacheRelationship.js +0 -31
- package/lib/commonjs/ui/hooks/queries/userCacheRelationship.js.map +0 -1
- package/lib/commonjs/ui/hooks/queryClient.js +0 -208
- package/lib/commonjs/ui/hooks/queryClient.js.map +0 -1
- package/lib/commonjs/ui/hooks/useAssets.js +0 -227
- package/lib/commonjs/ui/hooks/useAssets.js.map +0 -1
- package/lib/commonjs/ui/hooks/useAsyncAction.js +0 -95
- package/lib/commonjs/ui/hooks/useAsyncAction.js.map +0 -1
- package/lib/commonjs/ui/hooks/useAuth.js +0 -127
- package/lib/commonjs/ui/hooks/useAuth.js.map +0 -1
- package/lib/commonjs/ui/hooks/useAvatarPicker.js +0 -106
- package/lib/commonjs/ui/hooks/useAvatarPicker.js.map +0 -1
- package/lib/commonjs/ui/hooks/useDeviceManagement.js +0 -73
- package/lib/commonjs/ui/hooks/useDeviceManagement.js.map +0 -1
- package/lib/commonjs/ui/hooks/useFileDownloadUrl.js +0 -71
- package/lib/commonjs/ui/hooks/useFileDownloadUrl.js.map +0 -1
- package/lib/commonjs/ui/hooks/useFileFiltering.js +0 -76
- package/lib/commonjs/ui/hooks/useFileFiltering.js.map +0 -1
- package/lib/commonjs/ui/hooks/useFollow.js +0 -331
- package/lib/commonjs/ui/hooks/useFollow.js.map +0 -1
- package/lib/commonjs/ui/hooks/useFollow.types.js +0 -6
- package/lib/commonjs/ui/hooks/useFollow.types.js.map +0 -1
- package/lib/commonjs/ui/hooks/useFollowTarget.js +0 -160
- package/lib/commonjs/ui/hooks/useFollowTarget.js.map +0 -1
- package/lib/commonjs/ui/hooks/useI18n.js +0 -22
- package/lib/commonjs/ui/hooks/useI18n.js.map +0 -1
- package/lib/commonjs/ui/hooks/useLanguageManagement.js +0 -193
- package/lib/commonjs/ui/hooks/useLanguageManagement.js.map +0 -1
- package/lib/commonjs/ui/hooks/useMutationStatus.js +0 -86
- package/lib/commonjs/ui/hooks/useMutationStatus.js.map +0 -1
- package/lib/commonjs/ui/hooks/useOnlineStatus.js +0 -34
- package/lib/commonjs/ui/hooks/useOnlineStatus.js.map +0 -1
- package/lib/commonjs/ui/hooks/useOxyEvent.js +0 -28
- package/lib/commonjs/ui/hooks/useOxyEvent.js.map +0 -1
- package/lib/commonjs/ui/hooks/useProfileEditing.js +0 -134
- package/lib/commonjs/ui/hooks/useProfileEditing.js.map +0 -1
- package/lib/commonjs/ui/hooks/useQueryClient.js +0 -20
- package/lib/commonjs/ui/hooks/useQueryClient.js.map +0 -1
- package/lib/commonjs/ui/hooks/useReduceMotion.js +0 -57
- package/lib/commonjs/ui/hooks/useReduceMotion.js.map +0 -1
- package/lib/commonjs/ui/hooks/useResolvedFileUrls.js +0 -163
- package/lib/commonjs/ui/hooks/useResolvedFileUrls.js.map +0 -1
- package/lib/commonjs/ui/hooks/useSessionManagement.js +0 -290
- package/lib/commonjs/ui/hooks/useSessionManagement.js.map +0 -1
- package/lib/commonjs/ui/hooks/useSettingToggle.js +0 -132
- package/lib/commonjs/ui/hooks/useSettingToggle.js.map +0 -1
- package/lib/commonjs/ui/hooks/useStorage.js +0 -45
- package/lib/commonjs/ui/hooks/useStorage.js.map +0 -1
- package/lib/commonjs/ui/hooks/useSurfaceHeader.js +0 -142
- package/lib/commonjs/ui/hooks/useSurfaceHeader.js.map +0 -1
- package/lib/commonjs/ui/hooks/useSwitchableAccounts.js +0 -64
- package/lib/commonjs/ui/hooks/useSwitchableAccounts.js.map +0 -1
- package/lib/commonjs/ui/index.js +0 -178
- package/lib/commonjs/ui/index.js.map +0 -1
- package/lib/commonjs/ui/isFrontend.js +0 -10
- package/lib/commonjs/ui/isFrontend.js.map +0 -1
- package/lib/commonjs/ui/navigation/accountDialogManager.js +0 -105
- package/lib/commonjs/ui/navigation/accountDialogManager.js.map +0 -1
- package/lib/commonjs/ui/navigation/bottomSheetManager.js +0 -62
- package/lib/commonjs/ui/navigation/bottomSheetManager.js.map +0 -1
- package/lib/commonjs/ui/navigation/routes.js +0 -98
- package/lib/commonjs/ui/navigation/routes.js.map +0 -1
- package/lib/commonjs/ui/navigation/surfaceBackBridge.js +0 -68
- package/lib/commonjs/ui/navigation/surfaceBackBridge.js.map +0 -1
- package/lib/commonjs/ui/navigation/surfaceNavStack.js +0 -146
- package/lib/commonjs/ui/navigation/surfaceNavStack.js.map +0 -1
- package/lib/commonjs/ui/navigation/surfaceRegistry.js +0 -147
- package/lib/commonjs/ui/navigation/surfaceRegistry.js.map +0 -1
- package/lib/commonjs/ui/navigation/surfaces.js +0 -338
- package/lib/commonjs/ui/navigation/surfaces.js.map +0 -1
- package/lib/commonjs/ui/oauth/browserAuthTransport.js +0 -170
- package/lib/commonjs/ui/oauth/browserAuthTransport.js.map +0 -1
- package/lib/commonjs/ui/oauth/completeOAuthCode.js +0 -78
- package/lib/commonjs/ui/oauth/completeOAuthCode.js.map +0 -1
- package/lib/commonjs/ui/oauth/oauthHandshake.js +0 -53
- package/lib/commonjs/ui/oauth/oauthHandshake.js.map +0 -1
- package/lib/commonjs/ui/oauth/oauthPopup.js +0 -276
- package/lib/commonjs/ui/oauth/oauthPopup.js.map +0 -1
- package/lib/commonjs/ui/oauth/oauthPopupMessages.js +0 -141
- package/lib/commonjs/ui/oauth/oauthPopupMessages.js.map +0 -1
- package/lib/commonjs/ui/oauth/types.js +0 -2
- package/lib/commonjs/ui/oauth/types.js.map +0 -1
- package/lib/commonjs/ui/screens/AccountMembersScreen.js +0 -443
- package/lib/commonjs/ui/screens/AccountMembersScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/AccountSettingsScreen.js +0 -264
- package/lib/commonjs/ui/screens/AccountSettingsScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/AccountVerificationScreen.js +0 -184
- package/lib/commonjs/ui/screens/AccountVerificationScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/AppInfoScreen.js +0 -373
- package/lib/commonjs/ui/screens/AppInfoScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/AvatarCropScreen.js +0 -987
- package/lib/commonjs/ui/screens/AvatarCropScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/ChangeAvatarScreen.js +0 -306
- package/lib/commonjs/ui/screens/ChangeAvatarScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/ConnectedAppsScreen.js +0 -169
- package/lib/commonjs/ui/screens/ConnectedAppsScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/CreateAccountScreen.js +0 -387
- package/lib/commonjs/ui/screens/CreateAccountScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/EditProfileFieldScreen.js +0 -546
- package/lib/commonjs/ui/screens/EditProfileFieldScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/EditProfileScreen.js +0 -167
- package/lib/commonjs/ui/screens/EditProfileScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/FAQScreen.js +0 -162
- package/lib/commonjs/ui/screens/FAQScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/FeedbackScreen.js +0 -592
- package/lib/commonjs/ui/screens/FeedbackScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/FileManagementScreen.js +0 -1529
- package/lib/commonjs/ui/screens/FileManagementScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/FollowersListScreen.js +0 -17
- package/lib/commonjs/ui/screens/FollowersListScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/FollowingListScreen.js +0 -17
- package/lib/commonjs/ui/screens/FollowingListScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/HelpSupportScreen.js +0 -123
- package/lib/commonjs/ui/screens/HelpSupportScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/HistoryViewScreen.js +0 -165
- package/lib/commonjs/ui/screens/HistoryViewScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/LanguageSelectorScreen.js +0 -235
- package/lib/commonjs/ui/screens/LanguageSelectorScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/LearnMoreUsernamesScreen.js +0 -127
- package/lib/commonjs/ui/screens/LearnMoreUsernamesScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/LegalDocumentsScreen.js +0 -188
- package/lib/commonjs/ui/screens/LegalDocumentsScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/ManageAccountScreen.js +0 -647
- package/lib/commonjs/ui/screens/ManageAccountScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/NotificationsScreen.js +0 -150
- package/lib/commonjs/ui/screens/NotificationsScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/PaymentGatewayScreen.js +0 -278
- package/lib/commonjs/ui/screens/PaymentGatewayScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/PreferencesScreen.js +0 -194
- package/lib/commonjs/ui/screens/PreferencesScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/PremiumSubscriptionScreen.js +0 -958
- package/lib/commonjs/ui/screens/PremiumSubscriptionScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/PrivacySettingsScreen.js +0 -501
- package/lib/commonjs/ui/screens/PrivacySettingsScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/ProfileScreen.js +0 -473
- package/lib/commonjs/ui/screens/ProfileScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/SavesCollectionsScreen.js +0 -132
- package/lib/commonjs/ui/screens/SavesCollectionsScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/SearchSettingsScreen.js +0 -138
- package/lib/commonjs/ui/screens/SearchSettingsScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/UserLinksScreen.js +0 -61
- package/lib/commonjs/ui/screens/UserLinksScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/UserListScreen.js +0 -301
- package/lib/commonjs/ui/screens/UserListScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/WelcomeNewUserScreen.js +0 -467
- package/lib/commonjs/ui/screens/WelcomeNewUserScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/fileManagement/FileLibraryError.js +0 -64
- package/lib/commonjs/ui/screens/fileManagement/FileLibraryError.js.map +0 -1
- package/lib/commonjs/ui/screens/fileManagement/FileListSection.js +0 -121
- package/lib/commonjs/ui/screens/fileManagement/FileListSection.js.map +0 -1
- package/lib/commonjs/ui/screens/fileManagement/PhotoPickerSection.js +0 -552
- package/lib/commonjs/ui/screens/fileManagement/PhotoPickerSection.js.map +0 -1
- package/lib/commonjs/ui/screens/fileManagement/UploadBar.js +0 -85
- package/lib/commonjs/ui/screens/fileManagement/UploadBar.js.map +0 -1
- package/lib/commonjs/ui/screens/fileManagement/hooks/useFileUploadState.js +0 -506
- package/lib/commonjs/ui/screens/fileManagement/hooks/useFileUploadState.js.map +0 -1
- package/lib/commonjs/ui/screens/fileManagement/photoGridLayout.js +0 -44
- package/lib/commonjs/ui/screens/fileManagement/photoGridLayout.js.map +0 -1
- package/lib/commonjs/ui/screens/fileManagement/shared.js +0 -79
- package/lib/commonjs/ui/screens/fileManagement/shared.js.map +0 -1
- package/lib/commonjs/ui/screens/linkFormat.js +0 -38
- package/lib/commonjs/ui/screens/linkFormat.js.map +0 -1
- package/lib/commonjs/ui/screens/trust/TrustAboutScreen.js +0 -94
- package/lib/commonjs/ui/screens/trust/TrustAboutScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/trust/TrustCenterScreen.js +0 -185
- package/lib/commonjs/ui/screens/trust/TrustCenterScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/trust/TrustFAQScreen.js +0 -86
- package/lib/commonjs/ui/screens/trust/TrustFAQScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/trust/TrustLeaderboardScreen.js +0 -222
- package/lib/commonjs/ui/screens/trust/TrustLeaderboardScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/trust/TrustRewardsScreen.js +0 -512
- package/lib/commonjs/ui/screens/trust/TrustRewardsScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/trust/TrustRulesScreen.js +0 -92
- package/lib/commonjs/ui/screens/trust/TrustRulesScreen.js.map +0 -1
- package/lib/commonjs/ui/server.js +0 -86
- package/lib/commonjs/ui/server.js.map +0 -1
- package/lib/commonjs/ui/session/authStore.js +0 -39
- package/lib/commonjs/ui/session/authStore.js.map +0 -1
- package/lib/commonjs/ui/session/backgroundSession.js +0 -258
- package/lib/commonjs/ui/session/backgroundSession.js.map +0 -1
- package/lib/commonjs/ui/session/createSessionClient.js +0 -58
- package/lib/commonjs/ui/session/createSessionClient.js.map +0 -1
- package/lib/commonjs/ui/session/identityBinding.js +0 -95
- package/lib/commonjs/ui/session/identityBinding.js.map +0 -1
- package/lib/commonjs/ui/session/index.js +0 -78
- package/lib/commonjs/ui/session/index.js.map +0 -1
- package/lib/commonjs/ui/session/nativeSecureStorage.js +0 -90
- package/lib/commonjs/ui/session/nativeSecureStorage.js.map +0 -1
- package/lib/commonjs/ui/session/tokenTransport.js +0 -75
- package/lib/commonjs/ui/session/tokenTransport.js.map +0 -1
- package/lib/commonjs/ui/session/useBackgroundSessionSync.js +0 -81
- package/lib/commonjs/ui/session/useBackgroundSessionSync.js.map +0 -1
- package/lib/commonjs/ui/stores/accountStore.js +0 -221
- package/lib/commonjs/ui/stores/accountStore.js.map +0 -1
- package/lib/commonjs/ui/stores/assetStore.js +0 -225
- package/lib/commonjs/ui/stores/assetStore.js.map +0 -1
- package/lib/commonjs/ui/stores/authStore.js +0 -70
- package/lib/commonjs/ui/stores/authStore.js.map +0 -1
- package/lib/commonjs/ui/stores/followStore.js +0 -551
- package/lib/commonjs/ui/stores/followStore.js.map +0 -1
- package/lib/commonjs/ui/stores/followTargetStore.js +0 -152
- package/lib/commonjs/ui/stores/followTargetStore.js.map +0 -1
- package/lib/commonjs/ui/stores/resetSessionScopedStores.js +0 -21
- package/lib/commonjs/ui/stores/resetSessionScopedStores.js.map +0 -1
- package/lib/commonjs/ui/types/fileManagement.js +0 -6
- package/lib/commonjs/ui/types/fileManagement.js.map +0 -1
- package/lib/commonjs/ui/types/navigation.js +0 -6
- package/lib/commonjs/ui/types/navigation.js.map +0 -1
- package/lib/commonjs/ui/types/surfaceScreen.js +0 -6
- package/lib/commonjs/ui/types/surfaceScreen.js.map +0 -1
- package/lib/commonjs/ui/utils/avatarUtils.js +0 -77
- package/lib/commonjs/ui/utils/avatarUtils.js.map +0 -1
- package/lib/commonjs/ui/utils/colorUtils.js +0 -49
- package/lib/commonjs/ui/utils/colorUtils.js.map +0 -1
- package/lib/commonjs/ui/utils/commonsStoreLinks.js +0 -42
- package/lib/commonjs/ui/utils/commonsStoreLinks.js.map +0 -1
- package/lib/commonjs/ui/utils/deliveryPlatform.js +0 -58
- package/lib/commonjs/ui/utils/deliveryPlatform.js.map +0 -1
- package/lib/commonjs/ui/utils/deviceCredential.js +0 -23
- package/lib/commonjs/ui/utils/deviceCredential.js.map +0 -1
- package/lib/commonjs/ui/utils/errorHandlers.js +0 -137
- package/lib/commonjs/ui/utils/errorHandlers.js.map +0 -1
- package/lib/commonjs/ui/utils/fileManagement.js +0 -147
- package/lib/commonjs/ui/utils/fileManagement.js.map +0 -1
- package/lib/commonjs/ui/utils/iconNames.js +0 -133
- package/lib/commonjs/ui/utils/iconNames.js.map +0 -1
- package/lib/commonjs/ui/utils/isWebBrowser.js +0 -13
- package/lib/commonjs/ui/utils/isWebBrowser.js.map +0 -1
- package/lib/commonjs/ui/utils/netConnectivity.js +0 -28
- package/lib/commonjs/ui/utils/netConnectivity.js.map +0 -1
- package/lib/commonjs/ui/utils/oauthReturn.js +0 -126
- package/lib/commonjs/ui/utils/oauthReturn.js.map +0 -1
- package/lib/commonjs/ui/utils/sessionHelpers.js +0 -61
- package/lib/commonjs/ui/utils/sessionHelpers.js.map +0 -1
- package/lib/commonjs/ui/utils/storageHelpers.js +0 -119
- package/lib/commonjs/ui/utils/storageHelpers.js.map +0 -1
- package/lib/commonjs/ui/utils/userUtils.js +0 -69
- package/lib/commonjs/ui/utils/userUtils.js.map +0 -1
- package/lib/commonjs/utils/hookUtils.js +0 -421
- package/lib/commonjs/utils/hookUtils.js.map +0 -1
- package/lib/commonjs/webauthn/passkeyClient.js +0 -39
- package/lib/commonjs/webauthn/passkeyClient.js.map +0 -1
- package/lib/commonjs/webauthn/passkeyClient.native.js +0 -34
- package/lib/commonjs/webauthn/passkeyClient.native.js.map +0 -1
- package/lib/commonjs/webauthn/passkeyClient.web.js +0 -57
- package/lib/commonjs/webauthn/passkeyClient.web.js.map +0 -1
- package/lib/module/assets/OxyLogo.svg +0 -1
- package/lib/module/assets/assets/OxyLogo.svg +0 -1
- package/lib/module/assets/assets/icons/OxyServices.tsx +0 -60
- package/lib/module/assets/assets/icons/logo_OxyServices.svg +0 -1
- package/lib/module/assets/assets/illustrations/HighFive.tsx +0 -39
- package/lib/module/assets/assets/lottie/welcomeheader_background_op1.json +0 -1
- package/lib/module/assets/icons/OxyServices.js +0 -45
- package/lib/module/assets/icons/OxyServices.js.map +0 -1
- package/lib/module/assets/icons/logo_OxyServices.svg +0 -1
- package/lib/module/assets/illustrations/HighFive.js +0 -53
- package/lib/module/assets/illustrations/HighFive.js.map +0 -1
- package/lib/module/assets/lottie/welcomeheader_background_op1.json +0 -1
- package/lib/module/index.js +0 -222
- package/lib/module/index.js.map +0 -1
- package/lib/module/notifications/deviceNotifications.js +0 -433
- package/lib/module/notifications/deviceNotifications.js.map +0 -1
- package/lib/module/package.json +0 -1
- package/lib/module/ui/boot/runProviderColdBoot.js +0 -192
- package/lib/module/ui/boot/runProviderColdBoot.js.map +0 -1
- package/lib/module/ui/client.js +0 -39
- package/lib/module/ui/client.js.map +0 -1
- package/lib/module/ui/components/AvatarCameraBadge.js +0 -40
- package/lib/module/ui/components/AvatarCameraBadge.js.map +0 -1
- package/lib/module/ui/components/FollowButton.js +0 -251
- package/lib/module/ui/components/FollowButton.js.map +0 -1
- package/lib/module/ui/components/FollowTargetButton.js +0 -357
- package/lib/module/ui/components/FollowTargetButton.js.map +0 -1
- package/lib/module/ui/components/OxyAccountDialogScreen.js +0 -190
- package/lib/module/ui/components/OxyAccountDialogScreen.js.map +0 -1
- package/lib/module/ui/components/OxyAuthChooser.js +0 -400
- package/lib/module/ui/components/OxyAuthChooser.js.map +0 -1
- package/lib/module/ui/components/OxyAuthPrompt.js +0 -118
- package/lib/module/ui/components/OxyAuthPrompt.js.map +0 -1
- package/lib/module/ui/components/OxyConsentScreen.js +0 -491
- package/lib/module/ui/components/OxyConsentScreen.js.map +0 -1
- package/lib/module/ui/components/OxyOAuthCallback.js +0 -40
- package/lib/module/ui/components/OxyOAuthCallback.js.map +0 -1
- package/lib/module/ui/components/OxyPayButton.js +0 -62
- package/lib/module/ui/components/OxyPayButton.js.map +0 -1
- package/lib/module/ui/components/OxyProvider.js +0 -312
- package/lib/module/ui/components/OxyProvider.js.map +0 -1
- package/lib/module/ui/components/OxySignInButton.js +0 -316
- package/lib/module/ui/components/OxySignInButton.js.map +0 -1
- package/lib/module/ui/components/OxySignInRequestSurface.js +0 -141
- package/lib/module/ui/components/OxySignInRequestSurface.js.map +0 -1
- package/lib/module/ui/components/ProfileButton.js +0 -336
- package/lib/module/ui/components/ProfileButton.js.map +0 -1
- package/lib/module/ui/components/ProfileSummaryCard.js +0 -74
- package/lib/module/ui/components/ProfileSummaryCard.js.map +0 -1
- package/lib/module/ui/components/RequireOxyAuth.js +0 -292
- package/lib/module/ui/components/RequireOxyAuth.js.map +0 -1
- package/lib/module/ui/components/SettingsIcon.js +0 -40
- package/lib/module/ui/components/SettingsIcon.js.map +0 -1
- package/lib/module/ui/components/SurfaceHeaderAction.js +0 -58
- package/lib/module/ui/components/SurfaceHeaderAction.js.map +0 -1
- package/lib/module/ui/components/SurfaceScreen.js +0 -224
- package/lib/module/ui/components/SurfaceScreen.js.map +0 -1
- package/lib/module/ui/components/authChooser/AccountsMenuView.js +0 -538
- package/lib/module/ui/components/authChooser/AccountsMenuView.js.map +0 -1
- package/lib/module/ui/components/authChooser/SignInEntryView.js +0 -85
- package/lib/module/ui/components/authChooser/SignInEntryView.js.map +0 -1
- package/lib/module/ui/components/authChooser/SignInRequestView.js +0 -101
- package/lib/module/ui/components/authChooser/SignInRequestView.js.map +0 -1
- package/lib/module/ui/components/authChooser/SignUpView.js +0 -184
- package/lib/module/ui/components/authChooser/SignUpView.js.map +0 -1
- package/lib/module/ui/components/authChooser/TroubleDisclosure.js +0 -57
- package/lib/module/ui/components/authChooser/TroubleDisclosure.js.map +0 -1
- package/lib/module/ui/components/authChooser/primitives.js +0 -163
- package/lib/module/ui/components/authChooser/primitives.js.map +0 -1
- package/lib/module/ui/components/authChooser/requestSurfaces.js +0 -151
- package/lib/module/ui/components/authChooser/requestSurfaces.js.map +0 -1
- package/lib/module/ui/components/authChooser/signInProgress.js +0 -55
- package/lib/module/ui/components/authChooser/signInProgress.js.map +0 -1
- package/lib/module/ui/components/authChooser/styles.js +0 -216
- package/lib/module/ui/components/authChooser/styles.js.map +0 -1
- package/lib/module/ui/components/authChooser/types.js +0 -66
- package/lib/module/ui/components/authChooser/types.js.map +0 -1
- package/lib/module/ui/components/authChooser/useUsernameAvailability.js +0 -46
- package/lib/module/ui/components/authChooser/useUsernameAvailability.js.map +0 -1
- package/lib/module/ui/components/feedback/constants.js +0 -55
- package/lib/module/ui/components/feedback/constants.js.map +0 -1
- package/lib/module/ui/components/feedback/types.js +0 -4
- package/lib/module/ui/components/feedback/types.js.map +0 -1
- package/lib/module/ui/components/feedback/useFeedbackForm.js +0 -47
- package/lib/module/ui/components/feedback/useFeedbackForm.js.map +0 -1
- package/lib/module/ui/components/fileManagement/AnimatedButton.js +0 -55
- package/lib/module/ui/components/fileManagement/AnimatedButton.js.map +0 -1
- package/lib/module/ui/components/fileManagement/FileDetailsModal.js +0 -119
- package/lib/module/ui/components/fileManagement/FileDetailsModal.js.map +0 -1
- package/lib/module/ui/components/fileManagement/FileViewer.js +0 -425
- package/lib/module/ui/components/fileManagement/FileViewer.js.map +0 -1
- package/lib/module/ui/components/fileManagement/UploadPreview.js +0 -166
- package/lib/module/ui/components/fileManagement/UploadPreview.js.map +0 -1
- package/lib/module/ui/components/icon/FAIRWalletIcon.js +0 -59
- package/lib/module/ui/components/icon/FAIRWalletIcon.js.map +0 -1
- package/lib/module/ui/components/internal/PinInput.js +0 -113
- package/lib/module/ui/components/internal/PinInput.js.map +0 -1
- package/lib/module/ui/components/logo/LogoIcon.js +0 -55
- package/lib/module/ui/components/logo/LogoIcon.js.map +0 -1
- package/lib/module/ui/components/logo/LogoText.js +0 -42
- package/lib/module/ui/components/logo/LogoText.js.map +0 -1
- package/lib/module/ui/components/modals/DeleteAccountModal.js +0 -127
- package/lib/module/ui/components/modals/DeleteAccountModal.js.map +0 -1
- package/lib/module/ui/components/oauthNavigation.js +0 -80
- package/lib/module/ui/components/oauthNavigation.js.map +0 -1
- package/lib/module/ui/components/passkeyHubPopup.js +0 -29
- package/lib/module/ui/components/passkeyHubPopup.js.map +0 -1
- package/lib/module/ui/components/payment/PaymentDetailsStep.js +0 -322
- package/lib/module/ui/components/payment/PaymentDetailsStep.js.map +0 -1
- package/lib/module/ui/components/payment/PaymentMethodStep.js +0 -100
- package/lib/module/ui/components/payment/PaymentMethodStep.js.map +0 -1
- package/lib/module/ui/components/payment/PaymentReviewStep.js +0 -144
- package/lib/module/ui/components/payment/PaymentReviewStep.js.map +0 -1
- package/lib/module/ui/components/payment/PaymentSuccessStep.js +0 -79
- package/lib/module/ui/components/payment/PaymentSuccessStep.js.map +0 -1
- package/lib/module/ui/components/payment/PaymentSummaryStep.js +0 -190
- package/lib/module/ui/components/payment/PaymentSummaryStep.js.map +0 -1
- package/lib/module/ui/components/payment/constants.js +0 -47
- package/lib/module/ui/components/payment/constants.js.map +0 -1
- package/lib/module/ui/components/payment/paymentStyles.js +0 -396
- package/lib/module/ui/components/payment/paymentStyles.js.map +0 -1
- package/lib/module/ui/components/payment/types.js +0 -4
- package/lib/module/ui/components/payment/types.js.map +0 -1
- package/lib/module/ui/components/photogrid/JustifiedPhotoGrid.js +0 -216
- package/lib/module/ui/components/photogrid/JustifiedPhotoGrid.js.map +0 -1
- package/lib/module/ui/components/styles/overlay.js +0 -80
- package/lib/module/ui/components/styles/overlay.js.map +0 -1
- package/lib/module/ui/components/styles/shadow.js +0 -123
- package/lib/module/ui/components/styles/shadow.js.map +0 -1
- package/lib/module/ui/components/surfaces/ActionSheetSurface.js +0 -78
- package/lib/module/ui/components/surfaces/ActionSheetSurface.js.map +0 -1
- package/lib/module/ui/components/utils/hasTouchHandler.js +0 -9
- package/lib/module/ui/components/utils/hasTouchHandler.js.map +0 -1
- package/lib/module/ui/components/utils/roundLayoutSize.js +0 -4
- package/lib/module/ui/components/utils/roundLayoutSize.js.map +0 -1
- package/lib/module/ui/components/utils/splitStyles.js +0 -46
- package/lib/module/ui/components/utils/splitStyles.js.map +0 -1
- package/lib/module/ui/constants/spacing.js +0 -45
- package/lib/module/ui/constants/spacing.js.map +0 -1
- package/lib/module/ui/context/OxyContext.js +0 -1243
- package/lib/module/ui/context/OxyContext.js.map +0 -1
- package/lib/module/ui/context/commitSessionFlow.js +0 -100
- package/lib/module/ui/context/commitSessionFlow.js.map +0 -1
- package/lib/module/ui/context/hooks/useAuthOperations.js +0 -311
- package/lib/module/ui/context/hooks/useAuthOperations.js.map +0 -1
- package/lib/module/ui/context/oxyContextHelpers.js +0 -57
- package/lib/module/ui/context/oxyContextHelpers.js.map +0 -1
- package/lib/module/ui/context/oxyContextTypes.js +0 -4
- package/lib/module/ui/context/oxyContextTypes.js.map +0 -1
- package/lib/module/ui/context/passkeyFlow.js +0 -111
- package/lib/module/ui/context/passkeyFlow.js.map +0 -1
- package/lib/module/ui/context/useOxyAccountGraph.js +0 -107
- package/lib/module/ui/context/useOxyAccountGraph.js.map +0 -1
- package/lib/module/ui/hooks/mutations/mutationFactory.js +0 -178
- package/lib/module/ui/hooks/mutations/mutationFactory.js.map +0 -1
- package/lib/module/ui/hooks/mutations/mutationKeys.js +0 -36
- package/lib/module/ui/hooks/mutations/mutationKeys.js.map +0 -1
- package/lib/module/ui/hooks/mutations/useAccountMutations.js +0 -685
- package/lib/module/ui/hooks/mutations/useAccountMutations.js.map +0 -1
- package/lib/module/ui/hooks/mutations/useServicesMutations.js +0 -189
- package/lib/module/ui/hooks/mutations/useServicesMutations.js.map +0 -1
- package/lib/module/ui/hooks/queries/paymentTypes.js +0 -2
- package/lib/module/ui/hooks/queries/paymentTypes.js.map +0 -1
- package/lib/module/ui/hooks/queries/queryKeys.js +0 -207
- package/lib/module/ui/hooks/queries/queryKeys.js.map +0 -1
- package/lib/module/ui/hooks/queries/useAccountQueries.js +0 -315
- package/lib/module/ui/hooks/queries/useAccountQueries.js.map +0 -1
- package/lib/module/ui/hooks/queries/useAuthMethods.js +0 -45
- package/lib/module/ui/hooks/queries/useAuthMethods.js.map +0 -1
- package/lib/module/ui/hooks/queries/useFileQueries.js +0 -120
- package/lib/module/ui/hooks/queries/useFileQueries.js.map +0 -1
- package/lib/module/ui/hooks/queries/usePaymentQueries.js +0 -137
- package/lib/module/ui/hooks/queries/usePaymentQueries.js.map +0 -1
- package/lib/module/ui/hooks/queries/useSecurityQueries.js +0 -86
- package/lib/module/ui/hooks/queries/useSecurityQueries.js.map +0 -1
- package/lib/module/ui/hooks/queries/useServicesQueries.js +0 -161
- package/lib/module/ui/hooks/queries/useServicesQueries.js.map +0 -1
- package/lib/module/ui/hooks/queries/userCache.js +0 -433
- package/lib/module/ui/hooks/queries/userCache.js.map +0 -1
- package/lib/module/ui/hooks/queries/userCacheRelationship.js +0 -27
- package/lib/module/ui/hooks/queries/userCacheRelationship.js.map +0 -1
- package/lib/module/ui/hooks/queryClient.js +0 -201
- package/lib/module/ui/hooks/queryClient.js.map +0 -1
- package/lib/module/ui/hooks/useAssets.js +0 -221
- package/lib/module/ui/hooks/useAssets.js.map +0 -1
- package/lib/module/ui/hooks/useAsyncAction.js +0 -89
- package/lib/module/ui/hooks/useAsyncAction.js.map +0 -1
- package/lib/module/ui/hooks/useAuth.js +0 -123
- package/lib/module/ui/hooks/useAuth.js.map +0 -1
- package/lib/module/ui/hooks/useAvatarPicker.js +0 -103
- package/lib/module/ui/hooks/useAvatarPicker.js.map +0 -1
- package/lib/module/ui/hooks/useDeviceManagement.js +0 -68
- package/lib/module/ui/hooks/useDeviceManagement.js.map +0 -1
- package/lib/module/ui/hooks/useFileDownloadUrl.js +0 -66
- package/lib/module/ui/hooks/useFileDownloadUrl.js.map +0 -1
- package/lib/module/ui/hooks/useFileFiltering.js +0 -72
- package/lib/module/ui/hooks/useFileFiltering.js.map +0 -1
- package/lib/module/ui/hooks/useFollow.js +0 -324
- package/lib/module/ui/hooks/useFollow.js.map +0 -1
- package/lib/module/ui/hooks/useFollow.types.js +0 -4
- package/lib/module/ui/hooks/useFollow.types.js.map +0 -1
- package/lib/module/ui/hooks/useFollowTarget.js +0 -156
- package/lib/module/ui/hooks/useFollowTarget.js.map +0 -1
- package/lib/module/ui/hooks/useI18n.js +0 -18
- package/lib/module/ui/hooks/useI18n.js.map +0 -1
- package/lib/module/ui/hooks/useLanguageManagement.js +0 -185
- package/lib/module/ui/hooks/useLanguageManagement.js.map +0 -1
- package/lib/module/ui/hooks/useMutationStatus.js +0 -82
- package/lib/module/ui/hooks/useMutationStatus.js.map +0 -1
- package/lib/module/ui/hooks/useOnlineStatus.js +0 -30
- package/lib/module/ui/hooks/useOnlineStatus.js.map +0 -1
- package/lib/module/ui/hooks/useOxyEvent.js +0 -25
- package/lib/module/ui/hooks/useOxyEvent.js.map +0 -1
- package/lib/module/ui/hooks/useProfileEditing.js +0 -129
- package/lib/module/ui/hooks/useProfileEditing.js.map +0 -1
- package/lib/module/ui/hooks/useQueryClient.js +0 -15
- package/lib/module/ui/hooks/useQueryClient.js.map +0 -1
- package/lib/module/ui/hooks/useReduceMotion.js +0 -53
- package/lib/module/ui/hooks/useReduceMotion.js.map +0 -1
- package/lib/module/ui/hooks/useResolvedFileUrls.js +0 -157
- package/lib/module/ui/hooks/useResolvedFileUrls.js.map +0 -1
- package/lib/module/ui/hooks/useSessionManagement.js +0 -286
- package/lib/module/ui/hooks/useSessionManagement.js.map +0 -1
- package/lib/module/ui/hooks/useSettingToggle.js +0 -126
- package/lib/module/ui/hooks/useSettingToggle.js.map +0 -1
- package/lib/module/ui/hooks/useStorage.js +0 -40
- package/lib/module/ui/hooks/useStorage.js.map +0 -1
- package/lib/module/ui/hooks/useSurfaceHeader.js +0 -138
- package/lib/module/ui/hooks/useSurfaceHeader.js.map +0 -1
- package/lib/module/ui/hooks/useSwitchableAccounts.js +0 -60
- package/lib/module/ui/hooks/useSwitchableAccounts.js.map +0 -1
- package/lib/module/ui/index.js +0 -49
- package/lib/module/ui/index.js.map +0 -1
- package/lib/module/ui/isFrontend.js +0 -6
- package/lib/module/ui/isFrontend.js.map +0 -1
- package/lib/module/ui/navigation/accountDialogManager.js +0 -94
- package/lib/module/ui/navigation/accountDialogManager.js.map +0 -1
- package/lib/module/ui/navigation/bottomSheetManager.js +0 -56
- package/lib/module/ui/navigation/bottomSheetManager.js.map +0 -1
- package/lib/module/ui/navigation/routes.js +0 -92
- package/lib/module/ui/navigation/routes.js.map +0 -1
- package/lib/module/ui/navigation/surfaceBackBridge.js +0 -63
- package/lib/module/ui/navigation/surfaceBackBridge.js.map +0 -1
- package/lib/module/ui/navigation/surfaceNavStack.js +0 -143
- package/lib/module/ui/navigation/surfaceNavStack.js.map +0 -1
- package/lib/module/ui/navigation/surfaceRegistry.js +0 -141
- package/lib/module/ui/navigation/surfaceRegistry.js.map +0 -1
- package/lib/module/ui/navigation/surfaces.js +0 -325
- package/lib/module/ui/navigation/surfaces.js.map +0 -1
- package/lib/module/ui/oauth/browserAuthTransport.js +0 -167
- package/lib/module/ui/oauth/browserAuthTransport.js.map +0 -1
- package/lib/module/ui/oauth/completeOAuthCode.js +0 -75
- package/lib/module/ui/oauth/completeOAuthCode.js.map +0 -1
- package/lib/module/ui/oauth/oauthHandshake.js +0 -50
- package/lib/module/ui/oauth/oauthHandshake.js.map +0 -1
- package/lib/module/ui/oauth/oauthPopup.js +0 -268
- package/lib/module/ui/oauth/oauthPopup.js.map +0 -1
- package/lib/module/ui/oauth/oauthPopupMessages.js +0 -135
- package/lib/module/ui/oauth/oauthPopupMessages.js.map +0 -1
- package/lib/module/ui/oauth/types.js +0 -2
- package/lib/module/ui/oauth/types.js.map +0 -1
- package/lib/module/ui/screens/AccountMembersScreen.js +0 -438
- package/lib/module/ui/screens/AccountMembersScreen.js.map +0 -1
- package/lib/module/ui/screens/AccountSettingsScreen.js +0 -260
- package/lib/module/ui/screens/AccountSettingsScreen.js.map +0 -1
- package/lib/module/ui/screens/AccountVerificationScreen.js +0 -179
- package/lib/module/ui/screens/AccountVerificationScreen.js.map +0 -1
- package/lib/module/ui/screens/AppInfoScreen.js +0 -368
- package/lib/module/ui/screens/AppInfoScreen.js.map +0 -1
- package/lib/module/ui/screens/AvatarCropScreen.js +0 -984
- package/lib/module/ui/screens/AvatarCropScreen.js.map +0 -1
- package/lib/module/ui/screens/ChangeAvatarScreen.js +0 -303
- package/lib/module/ui/screens/ChangeAvatarScreen.js.map +0 -1
- package/lib/module/ui/screens/ConnectedAppsScreen.js +0 -164
- package/lib/module/ui/screens/ConnectedAppsScreen.js.map +0 -1
- package/lib/module/ui/screens/CreateAccountScreen.js +0 -382
- package/lib/module/ui/screens/CreateAccountScreen.js.map +0 -1
- package/lib/module/ui/screens/EditProfileFieldScreen.js +0 -541
- package/lib/module/ui/screens/EditProfileFieldScreen.js.map +0 -1
- package/lib/module/ui/screens/EditProfileScreen.js +0 -162
- package/lib/module/ui/screens/EditProfileScreen.js.map +0 -1
- package/lib/module/ui/screens/FAQScreen.js +0 -157
- package/lib/module/ui/screens/FAQScreen.js.map +0 -1
- package/lib/module/ui/screens/FeedbackScreen.js +0 -590
- package/lib/module/ui/screens/FeedbackScreen.js.map +0 -1
- package/lib/module/ui/screens/FileManagementScreen.js +0 -1525
- package/lib/module/ui/screens/FileManagementScreen.js.map +0 -1
- package/lib/module/ui/screens/FollowersListScreen.js +0 -12
- package/lib/module/ui/screens/FollowersListScreen.js.map +0 -1
- package/lib/module/ui/screens/FollowingListScreen.js +0 -12
- package/lib/module/ui/screens/FollowingListScreen.js.map +0 -1
- package/lib/module/ui/screens/HelpSupportScreen.js +0 -118
- package/lib/module/ui/screens/HelpSupportScreen.js.map +0 -1
- package/lib/module/ui/screens/HistoryViewScreen.js +0 -160
- package/lib/module/ui/screens/HistoryViewScreen.js.map +0 -1
- package/lib/module/ui/screens/LanguageSelectorScreen.js +0 -229
- package/lib/module/ui/screens/LanguageSelectorScreen.js.map +0 -1
- package/lib/module/ui/screens/LearnMoreUsernamesScreen.js +0 -122
- package/lib/module/ui/screens/LearnMoreUsernamesScreen.js.map +0 -1
- package/lib/module/ui/screens/LegalDocumentsScreen.js +0 -185
- package/lib/module/ui/screens/LegalDocumentsScreen.js.map +0 -1
- package/lib/module/ui/screens/ManageAccountScreen.js +0 -642
- package/lib/module/ui/screens/ManageAccountScreen.js.map +0 -1
- package/lib/module/ui/screens/NotificationsScreen.js +0 -145
- package/lib/module/ui/screens/NotificationsScreen.js.map +0 -1
- package/lib/module/ui/screens/PaymentGatewayScreen.js +0 -273
- package/lib/module/ui/screens/PaymentGatewayScreen.js.map +0 -1
- package/lib/module/ui/screens/PreferencesScreen.js +0 -189
- package/lib/module/ui/screens/PreferencesScreen.js.map +0 -1
- package/lib/module/ui/screens/PremiumSubscriptionScreen.js +0 -953
- package/lib/module/ui/screens/PremiumSubscriptionScreen.js.map +0 -1
- package/lib/module/ui/screens/PrivacySettingsScreen.js +0 -496
- package/lib/module/ui/screens/PrivacySettingsScreen.js.map +0 -1
- package/lib/module/ui/screens/ProfileScreen.js +0 -468
- package/lib/module/ui/screens/ProfileScreen.js.map +0 -1
- package/lib/module/ui/screens/SavesCollectionsScreen.js +0 -127
- package/lib/module/ui/screens/SavesCollectionsScreen.js.map +0 -1
- package/lib/module/ui/screens/SearchSettingsScreen.js +0 -133
- package/lib/module/ui/screens/SearchSettingsScreen.js.map +0 -1
- package/lib/module/ui/screens/UserLinksScreen.js +0 -57
- package/lib/module/ui/screens/UserLinksScreen.js.map +0 -1
- package/lib/module/ui/screens/UserListScreen.js +0 -296
- package/lib/module/ui/screens/UserListScreen.js.map +0 -1
- package/lib/module/ui/screens/WelcomeNewUserScreen.js +0 -462
- package/lib/module/ui/screens/WelcomeNewUserScreen.js.map +0 -1
- package/lib/module/ui/screens/fileManagement/FileLibraryError.js +0 -59
- package/lib/module/ui/screens/fileManagement/FileLibraryError.js.map +0 -1
- package/lib/module/ui/screens/fileManagement/FileListSection.js +0 -116
- package/lib/module/ui/screens/fileManagement/FileListSection.js.map +0 -1
- package/lib/module/ui/screens/fileManagement/PhotoPickerSection.js +0 -548
- package/lib/module/ui/screens/fileManagement/PhotoPickerSection.js.map +0 -1
- package/lib/module/ui/screens/fileManagement/UploadBar.js +0 -80
- package/lib/module/ui/screens/fileManagement/UploadBar.js.map +0 -1
- package/lib/module/ui/screens/fileManagement/hooks/useFileUploadState.js +0 -502
- package/lib/module/ui/screens/fileManagement/hooks/useFileUploadState.js.map +0 -1
- package/lib/module/ui/screens/fileManagement/photoGridLayout.js +0 -39
- package/lib/module/ui/screens/fileManagement/photoGridLayout.js.map +0 -1
- package/lib/module/ui/screens/fileManagement/shared.js +0 -70
- package/lib/module/ui/screens/fileManagement/shared.js.map +0 -1
- package/lib/module/ui/screens/linkFormat.js +0 -31
- package/lib/module/ui/screens/linkFormat.js.map +0 -1
- package/lib/module/ui/screens/trust/TrustAboutScreen.js +0 -89
- package/lib/module/ui/screens/trust/TrustAboutScreen.js.map +0 -1
- package/lib/module/ui/screens/trust/TrustCenterScreen.js +0 -180
- package/lib/module/ui/screens/trust/TrustCenterScreen.js.map +0 -1
- package/lib/module/ui/screens/trust/TrustFAQScreen.js +0 -81
- package/lib/module/ui/screens/trust/TrustFAQScreen.js.map +0 -1
- package/lib/module/ui/screens/trust/TrustLeaderboardScreen.js +0 -217
- package/lib/module/ui/screens/trust/TrustLeaderboardScreen.js.map +0 -1
- package/lib/module/ui/screens/trust/TrustRewardsScreen.js +0 -507
- package/lib/module/ui/screens/trust/TrustRewardsScreen.js.map +0 -1
- package/lib/module/ui/screens/trust/TrustRulesScreen.js +0 -90
- package/lib/module/ui/screens/trust/TrustRulesScreen.js.map +0 -1
- package/lib/module/ui/server.js +0 -56
- package/lib/module/ui/server.js.map +0 -1
- package/lib/module/ui/session/authStore.js +0 -35
- package/lib/module/ui/session/authStore.js.map +0 -1
- package/lib/module/ui/session/backgroundSession.js +0 -252
- package/lib/module/ui/session/backgroundSession.js.map +0 -1
- package/lib/module/ui/session/createSessionClient.js +0 -55
- package/lib/module/ui/session/createSessionClient.js.map +0 -1
- package/lib/module/ui/session/identityBinding.js +0 -89
- package/lib/module/ui/session/identityBinding.js.map +0 -1
- package/lib/module/ui/session/index.js +0 -21
- package/lib/module/ui/session/index.js.map +0 -1
- package/lib/module/ui/session/nativeSecureStorage.js +0 -88
- package/lib/module/ui/session/nativeSecureStorage.js.map +0 -1
- package/lib/module/ui/session/tokenTransport.js +0 -71
- package/lib/module/ui/session/tokenTransport.js.map +0 -1
- package/lib/module/ui/session/useBackgroundSessionSync.js +0 -76
- package/lib/module/ui/session/useBackgroundSessionSync.js.map +0 -1
- package/lib/module/ui/stores/accountStore.js +0 -213
- package/lib/module/ui/stores/accountStore.js.map +0 -1
- package/lib/module/ui/stores/assetStore.js +0 -212
- package/lib/module/ui/stores/assetStore.js.map +0 -1
- package/lib/module/ui/stores/authStore.js +0 -66
- package/lib/module/ui/stores/authStore.js.map +0 -1
- package/lib/module/ui/stores/followStore.js +0 -546
- package/lib/module/ui/stores/followStore.js.map +0 -1
- package/lib/module/ui/stores/followTargetStore.js +0 -143
- package/lib/module/ui/stores/followTargetStore.js.map +0 -1
- package/lib/module/ui/stores/resetSessionScopedStores.js +0 -18
- package/lib/module/ui/stores/resetSessionScopedStores.js.map +0 -1
- package/lib/module/ui/types/fileManagement.js +0 -4
- package/lib/module/ui/types/fileManagement.js.map +0 -1
- package/lib/module/ui/types/navigation.js +0 -4
- package/lib/module/ui/types/navigation.js.map +0 -1
- package/lib/module/ui/types/surfaceScreen.js +0 -4
- package/lib/module/ui/types/surfaceScreen.js.map +0 -1
- package/lib/module/ui/utils/avatarUtils.js +0 -73
- package/lib/module/ui/utils/avatarUtils.js.map +0 -1
- package/lib/module/ui/utils/colorUtils.js +0 -13
- package/lib/module/ui/utils/colorUtils.js.map +0 -1
- package/lib/module/ui/utils/commonsStoreLinks.js +0 -37
- package/lib/module/ui/utils/commonsStoreLinks.js.map +0 -1
- package/lib/module/ui/utils/deliveryPlatform.js +0 -55
- package/lib/module/ui/utils/deliveryPlatform.js.map +0 -1
- package/lib/module/ui/utils/deviceCredential.js +0 -18
- package/lib/module/ui/utils/deviceCredential.js.map +0 -1
- package/lib/module/ui/utils/errorHandlers.js +0 -129
- package/lib/module/ui/utils/errorHandlers.js.map +0 -1
- package/lib/module/ui/utils/fileManagement.js +0 -140
- package/lib/module/ui/utils/fileManagement.js.map +0 -1
- package/lib/module/ui/utils/iconNames.js +0 -124
- package/lib/module/ui/utils/iconNames.js.map +0 -1
- package/lib/module/ui/utils/isWebBrowser.js +0 -11
- package/lib/module/ui/utils/isWebBrowser.js.map +0 -1
- package/lib/module/ui/utils/netConnectivity.js +0 -23
- package/lib/module/ui/utils/netConnectivity.js.map +0 -1
- package/lib/module/ui/utils/oauthReturn.js +0 -122
- package/lib/module/ui/utils/oauthReturn.js.map +0 -1
- package/lib/module/ui/utils/sessionHelpers.js +0 -55
- package/lib/module/ui/utils/sessionHelpers.js.map +0 -1
- package/lib/module/ui/utils/storageHelpers.js +0 -111
- package/lib/module/ui/utils/storageHelpers.js.map +0 -1
- package/lib/module/ui/utils/userUtils.js +0 -63
- package/lib/module/ui/utils/userUtils.js.map +0 -1
- package/lib/module/utils/hookUtils.js +0 -403
- package/lib/module/utils/hookUtils.js.map +0 -1
- package/lib/module/webauthn/passkeyClient.js +0 -33
- package/lib/module/webauthn/passkeyClient.js.map +0 -1
- package/lib/module/webauthn/passkeyClient.native.js +0 -28
- package/lib/module/webauthn/passkeyClient.native.js.map +0 -1
- package/lib/module/webauthn/passkeyClient.web.js +0 -52
- package/lib/module/webauthn/passkeyClient.web.js.map +0 -1
- package/lib/typescript/commonjs/assets/icons/OxyServices.d.ts +0 -24
- package/lib/typescript/commonjs/assets/icons/OxyServices.d.ts.map +0 -1
- package/lib/typescript/commonjs/assets/illustrations/HighFive.d.ts +0 -8
- package/lib/typescript/commonjs/assets/illustrations/HighFive.d.ts.map +0 -1
- package/lib/typescript/commonjs/index.d.ts +0 -106
- package/lib/typescript/commonjs/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/notifications/deviceNotifications.d.ts +0 -192
- package/lib/typescript/commonjs/notifications/deviceNotifications.d.ts.map +0 -1
- package/lib/typescript/commonjs/package.json +0 -1
- package/lib/typescript/commonjs/ui/boot/runProviderColdBoot.d.ts +0 -60
- package/lib/typescript/commonjs/ui/boot/runProviderColdBoot.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/client.d.ts +0 -30
- package/lib/typescript/commonjs/ui/client.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/AvatarCameraBadge.d.ts +0 -4
- package/lib/typescript/commonjs/ui/components/AvatarCameraBadge.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/FollowButton.d.ts +0 -39
- package/lib/typescript/commonjs/ui/components/FollowButton.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/FollowTargetButton.d.ts +0 -158
- package/lib/typescript/commonjs/ui/components/FollowTargetButton.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxyAccountDialogScreen.d.ts +0 -40
- package/lib/typescript/commonjs/ui/components/OxyAccountDialogScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxyAuthChooser.d.ts +0 -54
- package/lib/typescript/commonjs/ui/components/OxyAuthChooser.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxyAuthPrompt.d.ts +0 -59
- package/lib/typescript/commonjs/ui/components/OxyAuthPrompt.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxyConsentScreen.d.ts +0 -45
- package/lib/typescript/commonjs/ui/components/OxyConsentScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxyOAuthCallback.d.ts +0 -11
- package/lib/typescript/commonjs/ui/components/OxyOAuthCallback.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxyPayButton.d.ts +0 -29
- package/lib/typescript/commonjs/ui/components/OxyPayButton.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxyProvider.d.ts +0 -40
- package/lib/typescript/commonjs/ui/components/OxyProvider.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxySignInButton.d.ts +0 -113
- package/lib/typescript/commonjs/ui/components/OxySignInButton.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxySignInRequestSurface.d.ts +0 -108
- package/lib/typescript/commonjs/ui/components/OxySignInRequestSurface.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/ProfileButton.d.ts +0 -59
- package/lib/typescript/commonjs/ui/components/ProfileButton.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/ProfileSummaryCard.d.ts +0 -33
- package/lib/typescript/commonjs/ui/components/ProfileSummaryCard.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/RequireOxyAuth.d.ts +0 -55
- package/lib/typescript/commonjs/ui/components/RequireOxyAuth.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/SettingsIcon.d.ts +0 -15
- package/lib/typescript/commonjs/ui/components/SettingsIcon.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/SurfaceHeaderAction.d.ts +0 -16
- package/lib/typescript/commonjs/ui/components/SurfaceHeaderAction.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/SurfaceScreen.d.ts +0 -23
- package/lib/typescript/commonjs/ui/components/SurfaceScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/AccountsMenuView.d.ts +0 -38
- package/lib/typescript/commonjs/ui/components/authChooser/AccountsMenuView.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/SignInEntryView.d.ts +0 -32
- package/lib/typescript/commonjs/ui/components/authChooser/SignInEntryView.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/SignInRequestView.d.ts +0 -34
- package/lib/typescript/commonjs/ui/components/authChooser/SignInRequestView.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/SignUpView.d.ts +0 -34
- package/lib/typescript/commonjs/ui/components/authChooser/SignUpView.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/TroubleDisclosure.d.ts +0 -36
- package/lib/typescript/commonjs/ui/components/authChooser/TroubleDisclosure.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/primitives.d.ts +0 -55
- package/lib/typescript/commonjs/ui/components/authChooser/primitives.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/requestSurfaces.d.ts +0 -63
- package/lib/typescript/commonjs/ui/components/authChooser/requestSurfaces.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/signInProgress.d.ts +0 -26
- package/lib/typescript/commonjs/ui/components/authChooser/signInProgress.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/styles.d.ts +0 -209
- package/lib/typescript/commonjs/ui/components/authChooser/styles.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/types.d.ts +0 -109
- package/lib/typescript/commonjs/ui/components/authChooser/types.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/useUsernameAvailability.d.ts +0 -16
- package/lib/typescript/commonjs/ui/components/authChooser/useUsernameAvailability.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/feedback/constants.d.ts +0 -5
- package/lib/typescript/commonjs/ui/components/feedback/constants.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/feedback/types.d.ts +0 -46
- package/lib/typescript/commonjs/ui/components/feedback/types.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/feedback/useFeedbackForm.d.ts +0 -9
- package/lib/typescript/commonjs/ui/components/feedback/useFeedbackForm.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/fileManagement/AnimatedButton.d.ts +0 -17
- package/lib/typescript/commonjs/ui/components/fileManagement/AnimatedButton.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/fileManagement/FileDetailsModal.d.ts +0 -24
- package/lib/typescript/commonjs/ui/components/fileManagement/FileDetailsModal.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/fileManagement/FileViewer.d.ts +0 -16
- package/lib/typescript/commonjs/ui/components/fileManagement/FileViewer.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/fileManagement/UploadPreview.d.ts +0 -14
- package/lib/typescript/commonjs/ui/components/fileManagement/UploadPreview.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/icon/FAIRWalletIcon.d.ts +0 -9
- package/lib/typescript/commonjs/ui/components/icon/FAIRWalletIcon.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/internal/PinInput.d.ts +0 -23
- package/lib/typescript/commonjs/ui/components/internal/PinInput.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/logo/LogoIcon.d.ts +0 -22
- package/lib/typescript/commonjs/ui/components/logo/LogoIcon.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/logo/LogoText.d.ts +0 -22
- package/lib/typescript/commonjs/ui/components/logo/LogoText.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/modals/DeleteAccountModal.d.ts +0 -26
- package/lib/typescript/commonjs/ui/components/modals/DeleteAccountModal.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/oauthNavigation.d.ts +0 -43
- package/lib/typescript/commonjs/ui/components/oauthNavigation.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/passkeyHubPopup.d.ts +0 -23
- package/lib/typescript/commonjs/ui/components/passkeyHubPopup.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/payment/PaymentDetailsStep.d.ts +0 -21
- package/lib/typescript/commonjs/ui/components/payment/PaymentDetailsStep.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/payment/PaymentMethodStep.d.ts +0 -14
- package/lib/typescript/commonjs/ui/components/payment/PaymentMethodStep.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/payment/PaymentReviewStep.d.ts +0 -16
- package/lib/typescript/commonjs/ui/components/payment/PaymentReviewStep.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/payment/PaymentSuccessStep.d.ts +0 -10
- package/lib/typescript/commonjs/ui/components/payment/PaymentSuccessStep.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/payment/PaymentSummaryStep.d.ts +0 -15
- package/lib/typescript/commonjs/ui/components/payment/PaymentSummaryStep.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/payment/constants.d.ts +0 -7
- package/lib/typescript/commonjs/ui/components/payment/constants.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/payment/paymentStyles.d.ts +0 -389
- package/lib/typescript/commonjs/ui/components/payment/paymentStyles.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/payment/types.d.ts +0 -40
- package/lib/typescript/commonjs/ui/components/payment/types.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/photogrid/JustifiedPhotoGrid.d.ts +0 -28
- package/lib/typescript/commonjs/ui/components/photogrid/JustifiedPhotoGrid.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/styles/overlay.d.ts +0 -6
- package/lib/typescript/commonjs/ui/components/styles/overlay.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/styles/shadow.d.ts +0 -3
- package/lib/typescript/commonjs/ui/components/styles/shadow.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/surfaces/ActionSheetSurface.d.ts +0 -38
- package/lib/typescript/commonjs/ui/components/surfaces/ActionSheetSurface.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/utils/hasTouchHandler.d.ts +0 -6
- package/lib/typescript/commonjs/ui/components/utils/hasTouchHandler.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/utils/roundLayoutSize.d.ts +0 -2
- package/lib/typescript/commonjs/ui/components/utils/roundLayoutSize.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/utils/splitStyles.d.ts +0 -20
- package/lib/typescript/commonjs/ui/components/utils/splitStyles.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/constants/spacing.d.ts +0 -33
- package/lib/typescript/commonjs/ui/constants/spacing.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/context/OxyContext.d.ts +0 -7
- package/lib/typescript/commonjs/ui/context/OxyContext.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/context/commitSessionFlow.d.ts +0 -39
- package/lib/typescript/commonjs/ui/context/commitSessionFlow.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/context/hooks/useAuthOperations.d.ts +0 -74
- package/lib/typescript/commonjs/ui/context/hooks/useAuthOperations.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/context/oxyContextHelpers.d.ts +0 -7
- package/lib/typescript/commonjs/ui/context/oxyContextHelpers.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/context/oxyContextTypes.d.ts +0 -211
- package/lib/typescript/commonjs/ui/context/oxyContextTypes.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/context/passkeyFlow.d.ts +0 -96
- package/lib/typescript/commonjs/ui/context/passkeyFlow.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/context/useOxyAccountGraph.d.ts +0 -32
- package/lib/typescript/commonjs/ui/context/useOxyAccountGraph.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/mutations/mutationFactory.d.ts +0 -87
- package/lib/typescript/commonjs/ui/hooks/mutations/mutationFactory.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/mutations/mutationKeys.d.ts +0 -30
- package/lib/typescript/commonjs/ui/hooks/mutations/mutationKeys.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/mutations/useAccountMutations.d.ts +0 -301
- package/lib/typescript/commonjs/ui/hooks/mutations/useAccountMutations.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/mutations/useServicesMutations.d.ts +0 -23
- package/lib/typescript/commonjs/ui/hooks/mutations/useServicesMutations.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/paymentTypes.d.ts +0 -138
- package/lib/typescript/commonjs/ui/hooks/queries/paymentTypes.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/queryKeys.d.ts +0 -137
- package/lib/typescript/commonjs/ui/hooks/queries/queryKeys.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/useAccountQueries.d.ts +0 -87
- package/lib/typescript/commonjs/ui/hooks/queries/useAccountQueries.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/useAuthMethods.d.ts +0 -212
- package/lib/typescript/commonjs/ui/hooks/queries/useAuthMethods.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/useFileQueries.d.ts +0 -50
- package/lib/typescript/commonjs/ui/hooks/queries/useFileQueries.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/usePaymentQueries.d.ts +0 -64
- package/lib/typescript/commonjs/ui/hooks/queries/usePaymentQueries.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/useSecurityQueries.d.ts +0 -25
- package/lib/typescript/commonjs/ui/hooks/queries/useSecurityQueries.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/useServicesQueries.d.ts +0 -44
- package/lib/typescript/commonjs/ui/hooks/queries/useServicesQueries.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/userCache.d.ts +0 -173
- package/lib/typescript/commonjs/ui/hooks/queries/userCache.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/userCacheRelationship.d.ts +0 -9
- package/lib/typescript/commonjs/ui/hooks/queries/userCacheRelationship.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queryClient.d.ts +0 -66
- package/lib/typescript/commonjs/ui/hooks/queryClient.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useAssets.d.ts +0 -35
- package/lib/typescript/commonjs/ui/hooks/useAssets.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useAsyncAction.d.ts +0 -51
- package/lib/typescript/commonjs/ui/hooks/useAsyncAction.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useAuth.d.ts +0 -109
- package/lib/typescript/commonjs/ui/hooks/useAuth.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useAvatarPicker.d.ts +0 -34
- package/lib/typescript/commonjs/ui/hooks/useAvatarPicker.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useDeviceManagement.d.ts +0 -27
- package/lib/typescript/commonjs/ui/hooks/useDeviceManagement.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useFileDownloadUrl.d.ts +0 -19
- package/lib/typescript/commonjs/ui/hooks/useFileDownloadUrl.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useFileFiltering.d.ts +0 -29
- package/lib/typescript/commonjs/ui/hooks/useFileFiltering.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useFollow.d.ts +0 -108
- package/lib/typescript/commonjs/ui/hooks/useFollow.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useFollow.types.d.ts +0 -35
- package/lib/typescript/commonjs/ui/hooks/useFollow.types.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useFollowTarget.d.ts +0 -50
- package/lib/typescript/commonjs/ui/hooks/useFollowTarget.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useI18n.d.ts +0 -5
- package/lib/typescript/commonjs/ui/hooks/useI18n.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useLanguageManagement.d.ts +0 -69
- package/lib/typescript/commonjs/ui/hooks/useLanguageManagement.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useMutationStatus.d.ts +0 -23
- package/lib/typescript/commonjs/ui/hooks/useMutationStatus.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useOnlineStatus.d.ts +0 -14
- package/lib/typescript/commonjs/ui/hooks/useOnlineStatus.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useOxyEvent.d.ts +0 -8
- package/lib/typescript/commonjs/ui/hooks/useOxyEvent.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useProfileEditing.d.ts +0 -42
- package/lib/typescript/commonjs/ui/hooks/useProfileEditing.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useQueryClient.d.ts +0 -7
- package/lib/typescript/commonjs/ui/hooks/useQueryClient.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useReduceMotion.d.ts +0 -14
- package/lib/typescript/commonjs/ui/hooks/useReduceMotion.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useResolvedFileUrls.d.ts +0 -48
- package/lib/typescript/commonjs/ui/hooks/useResolvedFileUrls.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useSessionManagement.d.ts +0 -41
- package/lib/typescript/commonjs/ui/hooks/useSessionManagement.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useSettingToggle.d.ts +0 -57
- package/lib/typescript/commonjs/ui/hooks/useSettingToggle.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useStorage.d.ts +0 -16
- package/lib/typescript/commonjs/ui/hooks/useStorage.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useSurfaceHeader.d.ts +0 -45
- package/lib/typescript/commonjs/ui/hooks/useSurfaceHeader.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useSwitchableAccounts.d.ts +0 -23
- package/lib/typescript/commonjs/ui/hooks/useSwitchableAccounts.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/index.d.ts +0 -39
- package/lib/typescript/commonjs/ui/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/isFrontend.d.ts +0 -3
- package/lib/typescript/commonjs/ui/isFrontend.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/navigation/accountDialogManager.d.ts +0 -54
- package/lib/typescript/commonjs/ui/navigation/accountDialogManager.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/navigation/bottomSheetManager.d.ts +0 -34
- package/lib/typescript/commonjs/ui/navigation/bottomSheetManager.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/navigation/routes.d.ts +0 -6
- package/lib/typescript/commonjs/ui/navigation/routes.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/navigation/surfaceBackBridge.d.ts +0 -16
- package/lib/typescript/commonjs/ui/navigation/surfaceBackBridge.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/navigation/surfaceNavStack.d.ts +0 -75
- package/lib/typescript/commonjs/ui/navigation/surfaceNavStack.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/navigation/surfaceRegistry.d.ts +0 -194
- package/lib/typescript/commonjs/ui/navigation/surfaceRegistry.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/navigation/surfaces.d.ts +0 -110
- package/lib/typescript/commonjs/ui/navigation/surfaces.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/oauth/browserAuthTransport.d.ts +0 -56
- package/lib/typescript/commonjs/ui/oauth/browserAuthTransport.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/oauth/completeOAuthCode.d.ts +0 -49
- package/lib/typescript/commonjs/ui/oauth/completeOAuthCode.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/oauth/oauthHandshake.d.ts +0 -50
- package/lib/typescript/commonjs/ui/oauth/oauthHandshake.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/oauth/oauthPopup.d.ts +0 -83
- package/lib/typescript/commonjs/ui/oauth/oauthPopup.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/oauth/oauthPopupMessages.d.ts +0 -67
- package/lib/typescript/commonjs/ui/oauth/oauthPopupMessages.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/oauth/types.d.ts +0 -176
- package/lib/typescript/commonjs/ui/oauth/types.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/AccountMembersScreen.d.ts +0 -10
- package/lib/typescript/commonjs/ui/screens/AccountMembersScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/AccountSettingsScreen.d.ts +0 -12
- package/lib/typescript/commonjs/ui/screens/AccountSettingsScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/AccountVerificationScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/AccountVerificationScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/AppInfoScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/AppInfoScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/AvatarCropScreen.d.ts +0 -58
- package/lib/typescript/commonjs/ui/screens/AvatarCropScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/ChangeAvatarScreen.d.ts +0 -38
- package/lib/typescript/commonjs/ui/screens/ChangeAvatarScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/ConnectedAppsScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/ConnectedAppsScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/CreateAccountScreen.d.ts +0 -11
- package/lib/typescript/commonjs/ui/screens/CreateAccountScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/EditProfileFieldScreen.d.ts +0 -13
- package/lib/typescript/commonjs/ui/screens/EditProfileFieldScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/EditProfileScreen.d.ts +0 -14
- package/lib/typescript/commonjs/ui/screens/EditProfileScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/FAQScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/FAQScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/FeedbackScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/FeedbackScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/FileManagementScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/FileManagementScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/FollowersListScreen.d.ts +0 -12
- package/lib/typescript/commonjs/ui/screens/FollowersListScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/FollowingListScreen.d.ts +0 -12
- package/lib/typescript/commonjs/ui/screens/FollowingListScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/HelpSupportScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/HelpSupportScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/HistoryViewScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/HistoryViewScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/LanguageSelectorScreen.d.ts +0 -7
- package/lib/typescript/commonjs/ui/screens/LanguageSelectorScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/LearnMoreUsernamesScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/LearnMoreUsernamesScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/LegalDocumentsScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/LegalDocumentsScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/ManageAccountScreen.d.ts +0 -13
- package/lib/typescript/commonjs/ui/screens/ManageAccountScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/NotificationsScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/NotificationsScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/PaymentGatewayScreen.d.ts +0 -15
- package/lib/typescript/commonjs/ui/screens/PaymentGatewayScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/PreferencesScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/PreferencesScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/PremiumSubscriptionScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/PremiumSubscriptionScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/PrivacySettingsScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/PrivacySettingsScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/ProfileScreen.d.ts +0 -9
- package/lib/typescript/commonjs/ui/screens/ProfileScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/SavesCollectionsScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/SavesCollectionsScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/SearchSettingsScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/SearchSettingsScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/UserLinksScreen.d.ts +0 -15
- package/lib/typescript/commonjs/ui/screens/UserLinksScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/UserListScreen.d.ts +0 -18
- package/lib/typescript/commonjs/ui/screens/UserListScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/WelcomeNewUserScreen.d.ts +0 -14
- package/lib/typescript/commonjs/ui/screens/WelcomeNewUserScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/fileManagement/FileLibraryError.d.ts +0 -23
- package/lib/typescript/commonjs/ui/screens/fileManagement/FileLibraryError.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/fileManagement/FileListSection.d.ts +0 -40
- package/lib/typescript/commonjs/ui/screens/fileManagement/FileListSection.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/fileManagement/PhotoPickerSection.d.ts +0 -43
- package/lib/typescript/commonjs/ui/screens/fileManagement/PhotoPickerSection.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/fileManagement/UploadBar.d.ts +0 -25
- package/lib/typescript/commonjs/ui/screens/fileManagement/UploadBar.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/fileManagement/hooks/useFileUploadState.d.ts +0 -51
- package/lib/typescript/commonjs/ui/screens/fileManagement/hooks/useFileUploadState.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/fileManagement/photoGridLayout.d.ts +0 -37
- package/lib/typescript/commonjs/ui/screens/fileManagement/photoGridLayout.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/fileManagement/shared.d.ts +0 -38
- package/lib/typescript/commonjs/ui/screens/fileManagement/shared.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/linkFormat.d.ts +0 -23
- package/lib/typescript/commonjs/ui/screens/linkFormat.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/trust/TrustAboutScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/trust/TrustAboutScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/trust/TrustCenterScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/trust/TrustCenterScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/trust/TrustFAQScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/trust/TrustFAQScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/trust/TrustLeaderboardScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/trust/TrustLeaderboardScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/trust/TrustRewardsScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/trust/TrustRewardsScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/trust/TrustRulesScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/trust/TrustRulesScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/server.d.ts +0 -36
- package/lib/typescript/commonjs/ui/server.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/session/authStore.d.ts +0 -25
- package/lib/typescript/commonjs/ui/session/authStore.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/session/backgroundSession.d.ts +0 -42
- package/lib/typescript/commonjs/ui/session/backgroundSession.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/session/createSessionClient.d.ts +0 -40
- package/lib/typescript/commonjs/ui/session/createSessionClient.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/session/identityBinding.d.ts +0 -66
- package/lib/typescript/commonjs/ui/session/identityBinding.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/session/index.d.ts +0 -20
- package/lib/typescript/commonjs/ui/session/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/session/nativeSecureStorage.d.ts +0 -25
- package/lib/typescript/commonjs/ui/session/nativeSecureStorage.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/session/tokenTransport.d.ts +0 -33
- package/lib/typescript/commonjs/ui/session/tokenTransport.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/session/useBackgroundSessionSync.d.ts +0 -23
- package/lib/typescript/commonjs/ui/session/useBackgroundSessionSync.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/stores/accountStore.d.ts +0 -27
- package/lib/typescript/commonjs/ui/stores/accountStore.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/stores/assetStore.d.ts +0 -54
- package/lib/typescript/commonjs/ui/stores/assetStore.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/stores/authStore.d.ts +0 -17
- package/lib/typescript/commonjs/ui/stores/authStore.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/stores/followStore.d.ts +0 -30
- package/lib/typescript/commonjs/ui/stores/followStore.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/stores/followTargetStore.d.ts +0 -84
- package/lib/typescript/commonjs/ui/stores/followTargetStore.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/stores/resetSessionScopedStores.d.ts +0 -10
- package/lib/typescript/commonjs/ui/stores/resetSessionScopedStores.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/types/fileManagement.d.ts +0 -51
- package/lib/typescript/commonjs/ui/types/fileManagement.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/types/navigation.d.ts +0 -127
- package/lib/typescript/commonjs/ui/types/navigation.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/types/surfaceScreen.d.ts +0 -38
- package/lib/typescript/commonjs/ui/types/surfaceScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/avatarUtils.d.ts +0 -24
- package/lib/typescript/commonjs/ui/utils/avatarUtils.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/colorUtils.d.ts +0 -10
- package/lib/typescript/commonjs/ui/utils/colorUtils.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/commonsStoreLinks.d.ts +0 -24
- package/lib/typescript/commonjs/ui/utils/commonsStoreLinks.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/deliveryPlatform.d.ts +0 -33
- package/lib/typescript/commonjs/ui/utils/deliveryPlatform.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/deviceCredential.d.ts +0 -8
- package/lib/typescript/commonjs/ui/utils/deviceCredential.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/errorHandlers.d.ts +0 -35
- package/lib/typescript/commonjs/ui/utils/errorHandlers.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/fileManagement.d.ts +0 -55
- package/lib/typescript/commonjs/ui/utils/fileManagement.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/iconNames.d.ts +0 -112
- package/lib/typescript/commonjs/ui/utils/iconNames.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/isWebBrowser.d.ts +0 -9
- package/lib/typescript/commonjs/ui/utils/isWebBrowser.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/netConnectivity.d.ts +0 -17
- package/lib/typescript/commonjs/ui/utils/netConnectivity.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/oauthReturn.d.ts +0 -48
- package/lib/typescript/commonjs/ui/utils/oauthReturn.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/sessionHelpers.d.ts +0 -48
- package/lib/typescript/commonjs/ui/utils/sessionHelpers.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/storageHelpers.d.ts +0 -28
- package/lib/typescript/commonjs/ui/utils/storageHelpers.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/userUtils.d.ts +0 -23
- package/lib/typescript/commonjs/ui/utils/userUtils.d.ts.map +0 -1
- package/lib/typescript/commonjs/utils/hookUtils.d.ts +0 -102
- package/lib/typescript/commonjs/utils/hookUtils.d.ts.map +0 -1
- package/lib/typescript/commonjs/webauthn/passkeyClient.d.ts +0 -20
- package/lib/typescript/commonjs/webauthn/passkeyClient.d.ts.map +0 -1
- package/lib/typescript/commonjs/webauthn/passkeyClient.native.d.ts +0 -15
- package/lib/typescript/commonjs/webauthn/passkeyClient.native.d.ts.map +0 -1
- package/lib/typescript/commonjs/webauthn/passkeyClient.web.d.ts +0 -36
- package/lib/typescript/commonjs/webauthn/passkeyClient.web.d.ts.map +0 -1
- package/lib/typescript/module/assets/icons/OxyServices.d.ts +0 -24
- package/lib/typescript/module/assets/icons/OxyServices.d.ts.map +0 -1
- package/lib/typescript/module/assets/illustrations/HighFive.d.ts +0 -8
- package/lib/typescript/module/assets/illustrations/HighFive.d.ts.map +0 -1
- package/lib/typescript/module/index.d.ts +0 -106
- package/lib/typescript/module/index.d.ts.map +0 -1
- package/lib/typescript/module/notifications/deviceNotifications.d.ts +0 -192
- package/lib/typescript/module/notifications/deviceNotifications.d.ts.map +0 -1
- package/lib/typescript/module/package.json +0 -1
- package/lib/typescript/module/ui/boot/runProviderColdBoot.d.ts +0 -60
- package/lib/typescript/module/ui/boot/runProviderColdBoot.d.ts.map +0 -1
- package/lib/typescript/module/ui/client.d.ts +0 -30
- package/lib/typescript/module/ui/client.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/AvatarCameraBadge.d.ts +0 -4
- package/lib/typescript/module/ui/components/AvatarCameraBadge.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/FollowButton.d.ts +0 -39
- package/lib/typescript/module/ui/components/FollowButton.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/FollowTargetButton.d.ts +0 -158
- package/lib/typescript/module/ui/components/FollowTargetButton.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxyAccountDialogScreen.d.ts +0 -40
- package/lib/typescript/module/ui/components/OxyAccountDialogScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxyAuthChooser.d.ts +0 -54
- package/lib/typescript/module/ui/components/OxyAuthChooser.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxyAuthPrompt.d.ts +0 -59
- package/lib/typescript/module/ui/components/OxyAuthPrompt.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxyConsentScreen.d.ts +0 -45
- package/lib/typescript/module/ui/components/OxyConsentScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxyOAuthCallback.d.ts +0 -11
- package/lib/typescript/module/ui/components/OxyOAuthCallback.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxyPayButton.d.ts +0 -29
- package/lib/typescript/module/ui/components/OxyPayButton.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxyProvider.d.ts +0 -40
- package/lib/typescript/module/ui/components/OxyProvider.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxySignInButton.d.ts +0 -113
- package/lib/typescript/module/ui/components/OxySignInButton.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxySignInRequestSurface.d.ts +0 -108
- package/lib/typescript/module/ui/components/OxySignInRequestSurface.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/ProfileButton.d.ts +0 -59
- package/lib/typescript/module/ui/components/ProfileButton.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/ProfileSummaryCard.d.ts +0 -33
- package/lib/typescript/module/ui/components/ProfileSummaryCard.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/RequireOxyAuth.d.ts +0 -55
- package/lib/typescript/module/ui/components/RequireOxyAuth.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/SettingsIcon.d.ts +0 -15
- package/lib/typescript/module/ui/components/SettingsIcon.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/SurfaceHeaderAction.d.ts +0 -16
- package/lib/typescript/module/ui/components/SurfaceHeaderAction.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/SurfaceScreen.d.ts +0 -23
- package/lib/typescript/module/ui/components/SurfaceScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/AccountsMenuView.d.ts +0 -38
- package/lib/typescript/module/ui/components/authChooser/AccountsMenuView.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/SignInEntryView.d.ts +0 -32
- package/lib/typescript/module/ui/components/authChooser/SignInEntryView.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/SignInRequestView.d.ts +0 -34
- package/lib/typescript/module/ui/components/authChooser/SignInRequestView.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/SignUpView.d.ts +0 -34
- package/lib/typescript/module/ui/components/authChooser/SignUpView.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/TroubleDisclosure.d.ts +0 -36
- package/lib/typescript/module/ui/components/authChooser/TroubleDisclosure.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/primitives.d.ts +0 -55
- package/lib/typescript/module/ui/components/authChooser/primitives.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/requestSurfaces.d.ts +0 -63
- package/lib/typescript/module/ui/components/authChooser/requestSurfaces.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/signInProgress.d.ts +0 -26
- package/lib/typescript/module/ui/components/authChooser/signInProgress.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/styles.d.ts +0 -209
- package/lib/typescript/module/ui/components/authChooser/styles.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/types.d.ts +0 -109
- package/lib/typescript/module/ui/components/authChooser/types.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/useUsernameAvailability.d.ts +0 -16
- package/lib/typescript/module/ui/components/authChooser/useUsernameAvailability.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/feedback/constants.d.ts +0 -5
- package/lib/typescript/module/ui/components/feedback/constants.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/feedback/types.d.ts +0 -46
- package/lib/typescript/module/ui/components/feedback/types.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/feedback/useFeedbackForm.d.ts +0 -9
- package/lib/typescript/module/ui/components/feedback/useFeedbackForm.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/fileManagement/AnimatedButton.d.ts +0 -17
- package/lib/typescript/module/ui/components/fileManagement/AnimatedButton.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/fileManagement/FileDetailsModal.d.ts +0 -24
- package/lib/typescript/module/ui/components/fileManagement/FileDetailsModal.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/fileManagement/FileViewer.d.ts +0 -16
- package/lib/typescript/module/ui/components/fileManagement/FileViewer.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/fileManagement/UploadPreview.d.ts +0 -14
- package/lib/typescript/module/ui/components/fileManagement/UploadPreview.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/icon/FAIRWalletIcon.d.ts +0 -9
- package/lib/typescript/module/ui/components/icon/FAIRWalletIcon.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/internal/PinInput.d.ts +0 -23
- package/lib/typescript/module/ui/components/internal/PinInput.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/logo/LogoIcon.d.ts +0 -22
- package/lib/typescript/module/ui/components/logo/LogoIcon.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/logo/LogoText.d.ts +0 -22
- package/lib/typescript/module/ui/components/logo/LogoText.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/modals/DeleteAccountModal.d.ts +0 -26
- package/lib/typescript/module/ui/components/modals/DeleteAccountModal.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/oauthNavigation.d.ts +0 -43
- package/lib/typescript/module/ui/components/oauthNavigation.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/passkeyHubPopup.d.ts +0 -23
- package/lib/typescript/module/ui/components/passkeyHubPopup.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/payment/PaymentDetailsStep.d.ts +0 -21
- package/lib/typescript/module/ui/components/payment/PaymentDetailsStep.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/payment/PaymentMethodStep.d.ts +0 -14
- package/lib/typescript/module/ui/components/payment/PaymentMethodStep.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/payment/PaymentReviewStep.d.ts +0 -16
- package/lib/typescript/module/ui/components/payment/PaymentReviewStep.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/payment/PaymentSuccessStep.d.ts +0 -10
- package/lib/typescript/module/ui/components/payment/PaymentSuccessStep.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/payment/PaymentSummaryStep.d.ts +0 -15
- package/lib/typescript/module/ui/components/payment/PaymentSummaryStep.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/payment/constants.d.ts +0 -7
- package/lib/typescript/module/ui/components/payment/constants.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/payment/paymentStyles.d.ts +0 -389
- package/lib/typescript/module/ui/components/payment/paymentStyles.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/payment/types.d.ts +0 -40
- package/lib/typescript/module/ui/components/payment/types.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/photogrid/JustifiedPhotoGrid.d.ts +0 -28
- package/lib/typescript/module/ui/components/photogrid/JustifiedPhotoGrid.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/styles/overlay.d.ts +0 -6
- package/lib/typescript/module/ui/components/styles/overlay.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/styles/shadow.d.ts +0 -3
- package/lib/typescript/module/ui/components/styles/shadow.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/surfaces/ActionSheetSurface.d.ts +0 -38
- package/lib/typescript/module/ui/components/surfaces/ActionSheetSurface.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/utils/hasTouchHandler.d.ts +0 -6
- package/lib/typescript/module/ui/components/utils/hasTouchHandler.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/utils/roundLayoutSize.d.ts +0 -2
- package/lib/typescript/module/ui/components/utils/roundLayoutSize.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/utils/splitStyles.d.ts +0 -20
- package/lib/typescript/module/ui/components/utils/splitStyles.d.ts.map +0 -1
- package/lib/typescript/module/ui/constants/spacing.d.ts +0 -33
- package/lib/typescript/module/ui/constants/spacing.d.ts.map +0 -1
- package/lib/typescript/module/ui/context/OxyContext.d.ts +0 -7
- package/lib/typescript/module/ui/context/OxyContext.d.ts.map +0 -1
- package/lib/typescript/module/ui/context/commitSessionFlow.d.ts +0 -39
- package/lib/typescript/module/ui/context/commitSessionFlow.d.ts.map +0 -1
- package/lib/typescript/module/ui/context/hooks/useAuthOperations.d.ts +0 -74
- package/lib/typescript/module/ui/context/hooks/useAuthOperations.d.ts.map +0 -1
- package/lib/typescript/module/ui/context/oxyContextHelpers.d.ts +0 -7
- package/lib/typescript/module/ui/context/oxyContextHelpers.d.ts.map +0 -1
- package/lib/typescript/module/ui/context/oxyContextTypes.d.ts +0 -211
- package/lib/typescript/module/ui/context/oxyContextTypes.d.ts.map +0 -1
- package/lib/typescript/module/ui/context/passkeyFlow.d.ts +0 -96
- package/lib/typescript/module/ui/context/passkeyFlow.d.ts.map +0 -1
- package/lib/typescript/module/ui/context/useOxyAccountGraph.d.ts +0 -32
- package/lib/typescript/module/ui/context/useOxyAccountGraph.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/mutations/mutationFactory.d.ts +0 -87
- package/lib/typescript/module/ui/hooks/mutations/mutationFactory.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/mutations/mutationKeys.d.ts +0 -30
- package/lib/typescript/module/ui/hooks/mutations/mutationKeys.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/mutations/useAccountMutations.d.ts +0 -301
- package/lib/typescript/module/ui/hooks/mutations/useAccountMutations.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/mutations/useServicesMutations.d.ts +0 -23
- package/lib/typescript/module/ui/hooks/mutations/useServicesMutations.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/paymentTypes.d.ts +0 -138
- package/lib/typescript/module/ui/hooks/queries/paymentTypes.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/queryKeys.d.ts +0 -137
- package/lib/typescript/module/ui/hooks/queries/queryKeys.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/useAccountQueries.d.ts +0 -87
- package/lib/typescript/module/ui/hooks/queries/useAccountQueries.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/useAuthMethods.d.ts +0 -212
- package/lib/typescript/module/ui/hooks/queries/useAuthMethods.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/useFileQueries.d.ts +0 -50
- package/lib/typescript/module/ui/hooks/queries/useFileQueries.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/usePaymentQueries.d.ts +0 -64
- package/lib/typescript/module/ui/hooks/queries/usePaymentQueries.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/useSecurityQueries.d.ts +0 -25
- package/lib/typescript/module/ui/hooks/queries/useSecurityQueries.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/useServicesQueries.d.ts +0 -44
- package/lib/typescript/module/ui/hooks/queries/useServicesQueries.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/userCache.d.ts +0 -173
- package/lib/typescript/module/ui/hooks/queries/userCache.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/userCacheRelationship.d.ts +0 -9
- package/lib/typescript/module/ui/hooks/queries/userCacheRelationship.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queryClient.d.ts +0 -66
- package/lib/typescript/module/ui/hooks/queryClient.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useAssets.d.ts +0 -35
- package/lib/typescript/module/ui/hooks/useAssets.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useAsyncAction.d.ts +0 -51
- package/lib/typescript/module/ui/hooks/useAsyncAction.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useAuth.d.ts +0 -109
- package/lib/typescript/module/ui/hooks/useAuth.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useAvatarPicker.d.ts +0 -34
- package/lib/typescript/module/ui/hooks/useAvatarPicker.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useDeviceManagement.d.ts +0 -27
- package/lib/typescript/module/ui/hooks/useDeviceManagement.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useFileDownloadUrl.d.ts +0 -19
- package/lib/typescript/module/ui/hooks/useFileDownloadUrl.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useFileFiltering.d.ts +0 -29
- package/lib/typescript/module/ui/hooks/useFileFiltering.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useFollow.d.ts +0 -108
- package/lib/typescript/module/ui/hooks/useFollow.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useFollow.types.d.ts +0 -35
- package/lib/typescript/module/ui/hooks/useFollow.types.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useFollowTarget.d.ts +0 -50
- package/lib/typescript/module/ui/hooks/useFollowTarget.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useI18n.d.ts +0 -5
- package/lib/typescript/module/ui/hooks/useI18n.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useLanguageManagement.d.ts +0 -69
- package/lib/typescript/module/ui/hooks/useLanguageManagement.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useMutationStatus.d.ts +0 -23
- package/lib/typescript/module/ui/hooks/useMutationStatus.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useOnlineStatus.d.ts +0 -14
- package/lib/typescript/module/ui/hooks/useOnlineStatus.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useOxyEvent.d.ts +0 -8
- package/lib/typescript/module/ui/hooks/useOxyEvent.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useProfileEditing.d.ts +0 -42
- package/lib/typescript/module/ui/hooks/useProfileEditing.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useQueryClient.d.ts +0 -7
- package/lib/typescript/module/ui/hooks/useQueryClient.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useReduceMotion.d.ts +0 -14
- package/lib/typescript/module/ui/hooks/useReduceMotion.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useResolvedFileUrls.d.ts +0 -48
- package/lib/typescript/module/ui/hooks/useResolvedFileUrls.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useSessionManagement.d.ts +0 -41
- package/lib/typescript/module/ui/hooks/useSessionManagement.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useSettingToggle.d.ts +0 -57
- package/lib/typescript/module/ui/hooks/useSettingToggle.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useStorage.d.ts +0 -16
- package/lib/typescript/module/ui/hooks/useStorage.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useSurfaceHeader.d.ts +0 -45
- package/lib/typescript/module/ui/hooks/useSurfaceHeader.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useSwitchableAccounts.d.ts +0 -23
- package/lib/typescript/module/ui/hooks/useSwitchableAccounts.d.ts.map +0 -1
- package/lib/typescript/module/ui/index.d.ts +0 -39
- package/lib/typescript/module/ui/index.d.ts.map +0 -1
- package/lib/typescript/module/ui/isFrontend.d.ts +0 -3
- package/lib/typescript/module/ui/isFrontend.d.ts.map +0 -1
- package/lib/typescript/module/ui/navigation/accountDialogManager.d.ts +0 -54
- package/lib/typescript/module/ui/navigation/accountDialogManager.d.ts.map +0 -1
- package/lib/typescript/module/ui/navigation/bottomSheetManager.d.ts +0 -34
- package/lib/typescript/module/ui/navigation/bottomSheetManager.d.ts.map +0 -1
- package/lib/typescript/module/ui/navigation/routes.d.ts +0 -6
- package/lib/typescript/module/ui/navigation/routes.d.ts.map +0 -1
- package/lib/typescript/module/ui/navigation/surfaceBackBridge.d.ts +0 -16
- package/lib/typescript/module/ui/navigation/surfaceBackBridge.d.ts.map +0 -1
- package/lib/typescript/module/ui/navigation/surfaceNavStack.d.ts +0 -75
- package/lib/typescript/module/ui/navigation/surfaceNavStack.d.ts.map +0 -1
- package/lib/typescript/module/ui/navigation/surfaceRegistry.d.ts +0 -194
- package/lib/typescript/module/ui/navigation/surfaceRegistry.d.ts.map +0 -1
- package/lib/typescript/module/ui/navigation/surfaces.d.ts +0 -110
- package/lib/typescript/module/ui/navigation/surfaces.d.ts.map +0 -1
- package/lib/typescript/module/ui/oauth/browserAuthTransport.d.ts +0 -56
- package/lib/typescript/module/ui/oauth/browserAuthTransport.d.ts.map +0 -1
- package/lib/typescript/module/ui/oauth/completeOAuthCode.d.ts +0 -49
- package/lib/typescript/module/ui/oauth/completeOAuthCode.d.ts.map +0 -1
- package/lib/typescript/module/ui/oauth/oauthHandshake.d.ts +0 -50
- package/lib/typescript/module/ui/oauth/oauthHandshake.d.ts.map +0 -1
- package/lib/typescript/module/ui/oauth/oauthPopup.d.ts +0 -83
- package/lib/typescript/module/ui/oauth/oauthPopup.d.ts.map +0 -1
- package/lib/typescript/module/ui/oauth/oauthPopupMessages.d.ts +0 -67
- package/lib/typescript/module/ui/oauth/oauthPopupMessages.d.ts.map +0 -1
- package/lib/typescript/module/ui/oauth/types.d.ts +0 -176
- package/lib/typescript/module/ui/oauth/types.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/AccountMembersScreen.d.ts +0 -10
- package/lib/typescript/module/ui/screens/AccountMembersScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/AccountSettingsScreen.d.ts +0 -12
- package/lib/typescript/module/ui/screens/AccountSettingsScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/AccountVerificationScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/AccountVerificationScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/AppInfoScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/AppInfoScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/AvatarCropScreen.d.ts +0 -58
- package/lib/typescript/module/ui/screens/AvatarCropScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/ChangeAvatarScreen.d.ts +0 -38
- package/lib/typescript/module/ui/screens/ChangeAvatarScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/ConnectedAppsScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/ConnectedAppsScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/CreateAccountScreen.d.ts +0 -11
- package/lib/typescript/module/ui/screens/CreateAccountScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/EditProfileFieldScreen.d.ts +0 -13
- package/lib/typescript/module/ui/screens/EditProfileFieldScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/EditProfileScreen.d.ts +0 -14
- package/lib/typescript/module/ui/screens/EditProfileScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/FAQScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/FAQScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/FeedbackScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/FeedbackScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/FileManagementScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/FileManagementScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/FollowersListScreen.d.ts +0 -12
- package/lib/typescript/module/ui/screens/FollowersListScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/FollowingListScreen.d.ts +0 -12
- package/lib/typescript/module/ui/screens/FollowingListScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/HelpSupportScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/HelpSupportScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/HistoryViewScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/HistoryViewScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/LanguageSelectorScreen.d.ts +0 -7
- package/lib/typescript/module/ui/screens/LanguageSelectorScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/LearnMoreUsernamesScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/LearnMoreUsernamesScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/LegalDocumentsScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/LegalDocumentsScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/ManageAccountScreen.d.ts +0 -13
- package/lib/typescript/module/ui/screens/ManageAccountScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/NotificationsScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/NotificationsScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/PaymentGatewayScreen.d.ts +0 -15
- package/lib/typescript/module/ui/screens/PaymentGatewayScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/PreferencesScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/PreferencesScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/PremiumSubscriptionScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/PremiumSubscriptionScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/PrivacySettingsScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/PrivacySettingsScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/ProfileScreen.d.ts +0 -9
- package/lib/typescript/module/ui/screens/ProfileScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/SavesCollectionsScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/SavesCollectionsScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/SearchSettingsScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/SearchSettingsScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/UserLinksScreen.d.ts +0 -15
- package/lib/typescript/module/ui/screens/UserLinksScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/UserListScreen.d.ts +0 -18
- package/lib/typescript/module/ui/screens/UserListScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/WelcomeNewUserScreen.d.ts +0 -14
- package/lib/typescript/module/ui/screens/WelcomeNewUserScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/fileManagement/FileLibraryError.d.ts +0 -23
- package/lib/typescript/module/ui/screens/fileManagement/FileLibraryError.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/fileManagement/FileListSection.d.ts +0 -40
- package/lib/typescript/module/ui/screens/fileManagement/FileListSection.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/fileManagement/PhotoPickerSection.d.ts +0 -43
- package/lib/typescript/module/ui/screens/fileManagement/PhotoPickerSection.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/fileManagement/UploadBar.d.ts +0 -25
- package/lib/typescript/module/ui/screens/fileManagement/UploadBar.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/fileManagement/hooks/useFileUploadState.d.ts +0 -51
- package/lib/typescript/module/ui/screens/fileManagement/hooks/useFileUploadState.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/fileManagement/photoGridLayout.d.ts +0 -37
- package/lib/typescript/module/ui/screens/fileManagement/photoGridLayout.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/fileManagement/shared.d.ts +0 -38
- package/lib/typescript/module/ui/screens/fileManagement/shared.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/linkFormat.d.ts +0 -23
- package/lib/typescript/module/ui/screens/linkFormat.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/trust/TrustAboutScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/trust/TrustAboutScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/trust/TrustCenterScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/trust/TrustCenterScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/trust/TrustFAQScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/trust/TrustFAQScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/trust/TrustLeaderboardScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/trust/TrustLeaderboardScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/trust/TrustRewardsScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/trust/TrustRewardsScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/trust/TrustRulesScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/trust/TrustRulesScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/server.d.ts +0 -36
- package/lib/typescript/module/ui/server.d.ts.map +0 -1
- package/lib/typescript/module/ui/session/authStore.d.ts +0 -25
- package/lib/typescript/module/ui/session/authStore.d.ts.map +0 -1
- package/lib/typescript/module/ui/session/backgroundSession.d.ts +0 -42
- package/lib/typescript/module/ui/session/backgroundSession.d.ts.map +0 -1
- package/lib/typescript/module/ui/session/createSessionClient.d.ts +0 -40
- package/lib/typescript/module/ui/session/createSessionClient.d.ts.map +0 -1
- package/lib/typescript/module/ui/session/identityBinding.d.ts +0 -66
- package/lib/typescript/module/ui/session/identityBinding.d.ts.map +0 -1
- package/lib/typescript/module/ui/session/index.d.ts +0 -20
- package/lib/typescript/module/ui/session/index.d.ts.map +0 -1
- package/lib/typescript/module/ui/session/nativeSecureStorage.d.ts +0 -25
- package/lib/typescript/module/ui/session/nativeSecureStorage.d.ts.map +0 -1
- package/lib/typescript/module/ui/session/tokenTransport.d.ts +0 -33
- package/lib/typescript/module/ui/session/tokenTransport.d.ts.map +0 -1
- package/lib/typescript/module/ui/session/useBackgroundSessionSync.d.ts +0 -23
- package/lib/typescript/module/ui/session/useBackgroundSessionSync.d.ts.map +0 -1
- package/lib/typescript/module/ui/stores/accountStore.d.ts +0 -27
- package/lib/typescript/module/ui/stores/accountStore.d.ts.map +0 -1
- package/lib/typescript/module/ui/stores/assetStore.d.ts +0 -54
- package/lib/typescript/module/ui/stores/assetStore.d.ts.map +0 -1
- package/lib/typescript/module/ui/stores/authStore.d.ts +0 -17
- package/lib/typescript/module/ui/stores/authStore.d.ts.map +0 -1
- package/lib/typescript/module/ui/stores/followStore.d.ts +0 -30
- package/lib/typescript/module/ui/stores/followStore.d.ts.map +0 -1
- package/lib/typescript/module/ui/stores/followTargetStore.d.ts +0 -84
- package/lib/typescript/module/ui/stores/followTargetStore.d.ts.map +0 -1
- package/lib/typescript/module/ui/stores/resetSessionScopedStores.d.ts +0 -10
- package/lib/typescript/module/ui/stores/resetSessionScopedStores.d.ts.map +0 -1
- package/lib/typescript/module/ui/types/fileManagement.d.ts +0 -51
- package/lib/typescript/module/ui/types/fileManagement.d.ts.map +0 -1
- package/lib/typescript/module/ui/types/navigation.d.ts +0 -127
- package/lib/typescript/module/ui/types/navigation.d.ts.map +0 -1
- package/lib/typescript/module/ui/types/surfaceScreen.d.ts +0 -38
- package/lib/typescript/module/ui/types/surfaceScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/avatarUtils.d.ts +0 -24
- package/lib/typescript/module/ui/utils/avatarUtils.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/colorUtils.d.ts +0 -10
- package/lib/typescript/module/ui/utils/colorUtils.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/commonsStoreLinks.d.ts +0 -24
- package/lib/typescript/module/ui/utils/commonsStoreLinks.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/deliveryPlatform.d.ts +0 -33
- package/lib/typescript/module/ui/utils/deliveryPlatform.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/deviceCredential.d.ts +0 -8
- package/lib/typescript/module/ui/utils/deviceCredential.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/errorHandlers.d.ts +0 -35
- package/lib/typescript/module/ui/utils/errorHandlers.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/fileManagement.d.ts +0 -55
- package/lib/typescript/module/ui/utils/fileManagement.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/iconNames.d.ts +0 -112
- package/lib/typescript/module/ui/utils/iconNames.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/isWebBrowser.d.ts +0 -9
- package/lib/typescript/module/ui/utils/isWebBrowser.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/netConnectivity.d.ts +0 -17
- package/lib/typescript/module/ui/utils/netConnectivity.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/oauthReturn.d.ts +0 -48
- package/lib/typescript/module/ui/utils/oauthReturn.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/sessionHelpers.d.ts +0 -48
- package/lib/typescript/module/ui/utils/sessionHelpers.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/storageHelpers.d.ts +0 -28
- package/lib/typescript/module/ui/utils/storageHelpers.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/userUtils.d.ts +0 -23
- package/lib/typescript/module/ui/utils/userUtils.d.ts.map +0 -1
- package/lib/typescript/module/utils/hookUtils.d.ts +0 -102
- package/lib/typescript/module/utils/hookUtils.d.ts.map +0 -1
- package/lib/typescript/module/webauthn/passkeyClient.d.ts +0 -20
- package/lib/typescript/module/webauthn/passkeyClient.d.ts.map +0 -1
- package/lib/typescript/module/webauthn/passkeyClient.native.d.ts +0 -15
- package/lib/typescript/module/webauthn/passkeyClient.native.d.ts.map +0 -1
- package/lib/typescript/module/webauthn/passkeyClient.web.d.ts +0 -36
- package/lib/typescript/module/webauthn/passkeyClient.web.d.ts.map +0 -1
- package/lib/typescript/nativewind-env.d.ts +0 -1
- package/lib/typescript/types/expo-crypto.d.ts +0 -29
- package/lib/typescript/types/expo-document-picker.d.ts +0 -36
- package/lib/typescript/types/expo-haptics.d.ts +0 -42
- package/lib/typescript/types/expo-image-picker.d.ts +0 -35
- package/lib/typescript/types/expo-secure-store.d.ts +0 -22
- package/lib/typescript/types/express.d.ts +0 -24
- package/lib/typescript/types/react-native-classname.d.ts +0 -39
- package/lib/typescript/types/react-native-web-style.d.ts +0 -27
- package/src/ui/hooks/useSwitchableAccounts.ts +0 -75
- package/src/ui/stores/accountStore.ts +0 -264
|
@@ -1,468 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import { useMemo } from 'react';
|
|
4
|
-
import { View, StyleSheet, ActivityIndicator } from 'react-native';
|
|
5
|
-
import { useQuery } from '@tanstack/react-query';
|
|
6
|
-
import { useTheme } from '@oxyhq/bloom/theme';
|
|
7
|
-
import { Button } from '@oxyhq/bloom/button';
|
|
8
|
-
import { H2, Text } from '@oxyhq/bloom/typography';
|
|
9
|
-
import { SettingsListGroup, SettingsListItem } from '@oxyhq/bloom/settings-list';
|
|
10
|
-
import { Avatar } from '@oxyhq/bloom/avatar';
|
|
11
|
-
import FollowButton from "../components/FollowButton.js";
|
|
12
|
-
import { useFollow } from "../hooks/useFollow.js";
|
|
13
|
-
import Ionicons from '@expo/vector-icons/Ionicons';
|
|
14
|
-
import { useI18n } from "../hooks/useI18n.js";
|
|
15
|
-
import { useSurfaceHeader } from "../hooks/useSurfaceHeader.js";
|
|
16
|
-
import { useOxy } from "../context/OxyContext.js";
|
|
17
|
-
import { getNormalizedUserHandle, logger, normalizeProfileLinks } from '@oxyhq/core';
|
|
18
|
-
import { extractErrorMessage } from "../utils/errorHandlers.js";
|
|
19
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
20
|
-
const AVATAR_SIZE = 96;
|
|
21
|
-
const BANNER_HEIGHT = 160;
|
|
22
|
-
const AVATAR_OVERLAP = -56;
|
|
23
|
-
const INFO_ICON_SIZE = 18;
|
|
24
|
-
const ProfileScreen = ({
|
|
25
|
-
userId,
|
|
26
|
-
username,
|
|
27
|
-
theme,
|
|
28
|
-
goBack,
|
|
29
|
-
navigate
|
|
30
|
-
}) => {
|
|
31
|
-
// Use useOxy() hook for OxyContext values. "Me" for own-profile detection
|
|
32
|
-
// and the own-profile fallback is the ACTIVE account (the account switched
|
|
33
|
-
// into), so previewing my profile while switched into an org/project/bot
|
|
34
|
-
// resolves "this is mine" against that account, not the session owner.
|
|
35
|
-
const {
|
|
36
|
-
oxyServices,
|
|
37
|
-
user: currentUser
|
|
38
|
-
} = useOxy();
|
|
39
|
-
|
|
40
|
-
// Use the follow hook for real follower data
|
|
41
|
-
const {
|
|
42
|
-
followerCount,
|
|
43
|
-
followingCount,
|
|
44
|
-
isLoadingCounts
|
|
45
|
-
} = useFollow(userId);
|
|
46
|
-
const bloomTheme = useTheme();
|
|
47
|
-
const {
|
|
48
|
-
t
|
|
49
|
-
} = useI18n();
|
|
50
|
-
|
|
51
|
-
// Check if current user is viewing their own profile
|
|
52
|
-
// Normalize IDs by trimming whitespace to handle format mismatches
|
|
53
|
-
const normalizeId = id => {
|
|
54
|
-
if (!id) return '';
|
|
55
|
-
return String(id).trim();
|
|
56
|
-
};
|
|
57
|
-
const currentUserId = normalizeId(currentUser?.id);
|
|
58
|
-
const targetUserId = normalizeId(userId);
|
|
59
|
-
const isOwnProfile = !!(currentUserId && targetUserId && currentUserId === targetUserId);
|
|
60
|
-
|
|
61
|
-
// Profile + reputation + stats in ONE React Query (no data-fetch effect). The
|
|
62
|
-
// reputation/stats reads swallow their own failures; only `getUserById` can
|
|
63
|
-
// reject the query, and for MY OWN profile a failed fetch falls back to the
|
|
64
|
-
// active-account snapshot instead of erroring. The key includes both ids so a
|
|
65
|
-
// switch/own-profile change refetches.
|
|
66
|
-
const profileQuery = useQuery({
|
|
67
|
-
queryKey: ['profileScreen', targetUserId, currentUserId],
|
|
68
|
-
enabled: !!userId,
|
|
69
|
-
retry: false,
|
|
70
|
-
queryFn: async () => {
|
|
71
|
-
// Follower/following counts come from the `useFollow` hook; the stats
|
|
72
|
-
// read is kept for parity (it warms server-side counters) but its
|
|
73
|
-
// result is not surfaced in this view, so it is not bound.
|
|
74
|
-
const [profileRes, reputationRes] = await Promise.all([oxyServices.getUserById(userId).catch(err => {
|
|
75
|
-
if (isOwnProfile) return currentUser;
|
|
76
|
-
logger.error('Profile loading error', err instanceof Error ? err : new Error(String(err)), {
|
|
77
|
-
component: 'ProfileScreen'
|
|
78
|
-
});
|
|
79
|
-
throw err;
|
|
80
|
-
}), (isOwnProfile ? oxyServices.getMyReputationBalance() : oxyServices.getReputationBalance(userId)).then(balance => ({
|
|
81
|
-
total: balance.total
|
|
82
|
-
})).catch(() => ({
|
|
83
|
-
total: undefined
|
|
84
|
-
})), oxyServices.getUserStats ? oxyServices.getUserStats(userId).catch(() => ({
|
|
85
|
-
postCount: 0,
|
|
86
|
-
commentCount: 0
|
|
87
|
-
})) : Promise.resolve({
|
|
88
|
-
postCount: 0,
|
|
89
|
-
commentCount: 0
|
|
90
|
-
})]);
|
|
91
|
-
if (!profileRes) {
|
|
92
|
-
throw new Error('Profile data is not available');
|
|
93
|
-
}
|
|
94
|
-
return {
|
|
95
|
-
profile: profileRes,
|
|
96
|
-
reputationTotal: typeof reputationRes.total === 'number' ? reputationRes.total : null,
|
|
97
|
-
links: normalizeProfileLinks(profileRes.linksMetadata, profileRes.links)
|
|
98
|
-
};
|
|
99
|
-
}
|
|
100
|
-
});
|
|
101
|
-
const profile = profileQuery.data?.profile ?? null;
|
|
102
|
-
const reputationTotal = profileQuery.data?.reputationTotal ?? null;
|
|
103
|
-
const links = profileQuery.data?.links ?? [];
|
|
104
|
-
const isLoading = !!userId && profileQuery.isLoading;
|
|
105
|
-
|
|
106
|
-
// Friendly, status-aware error copy derived from the query error (no effect).
|
|
107
|
-
const error = useMemo(() => {
|
|
108
|
-
if (!userId) return 'No user ID provided';
|
|
109
|
-
if (!profileQuery.isError) return null;
|
|
110
|
-
const err = profileQuery.error;
|
|
111
|
-
const errorWithStatus = err && typeof err === 'object' && 'status' in err ? err : null;
|
|
112
|
-
const errorMessageText = extractErrorMessage(err, '');
|
|
113
|
-
if (errorWithStatus?.status === 404 || errorMessageText.includes('not found') || errorMessageText.includes('Resource not found')) {
|
|
114
|
-
return isOwnProfile ? 'Unable to load your profile from the server. This may be due to a temporary service issue.' : 'This user profile could not be found or may have been removed.';
|
|
115
|
-
}
|
|
116
|
-
if (errorWithStatus?.status === 403) {
|
|
117
|
-
return 'You do not have permission to view this profile.';
|
|
118
|
-
}
|
|
119
|
-
if (errorWithStatus?.status === 500) {
|
|
120
|
-
return 'Server error occurred while loading the profile. Please try again later.';
|
|
121
|
-
}
|
|
122
|
-
return errorMessageText || 'Failed to load profile';
|
|
123
|
-
}, [userId, profileQuery.isError, profileQuery.error, isOwnProfile]);
|
|
124
|
-
|
|
125
|
-
// Display name: the loaded profile's, else the passed handle. Also the nav-bar
|
|
126
|
-
// title (a stable "Profile" fallback before it resolves), so the banner +
|
|
127
|
-
// overlapping avatar scroll as content UNDER the shared gradient nav bar.
|
|
128
|
-
// `onImage` tone keeps the title + close legible over the colored banner.
|
|
129
|
-
// Ends in a string, deliberately: `getNormalizedUserHandle` answers `null` for a
|
|
130
|
-
// user it cannot normalise, and letting that null travel makes this `string | null`
|
|
131
|
-
// — which does not satisfy `Avatar.name` and does not typecheck. Empty is the honest
|
|
132
|
-
// bottom of the chain and every reader below already treats it as falsy
|
|
133
|
-
// (`displayName || t('profile.title')`), so nothing renders a literal "null".
|
|
134
|
-
const displayName = profile ? profile.name?.displayName ?? getNormalizedUserHandle(profile) ?? '' : username || '';
|
|
135
|
-
useSurfaceHeader({
|
|
136
|
-
title: displayName || t('profile.title'),
|
|
137
|
-
largeTitle: false,
|
|
138
|
-
tone: 'onImage'
|
|
139
|
-
});
|
|
140
|
-
if (isLoading) {
|
|
141
|
-
return /*#__PURE__*/_jsx(View, {
|
|
142
|
-
className: "items-center py-space-40",
|
|
143
|
-
children: /*#__PURE__*/_jsx(ActivityIndicator, {
|
|
144
|
-
size: "large",
|
|
145
|
-
color: bloomTheme.colors.primary
|
|
146
|
-
})
|
|
147
|
-
});
|
|
148
|
-
}
|
|
149
|
-
if (error) {
|
|
150
|
-
// The shared nav header owns back/close; the error body is just the alert.
|
|
151
|
-
return /*#__PURE__*/_jsxs(View, {
|
|
152
|
-
style: styles.errorContent,
|
|
153
|
-
className: "px-space-32 gap-space-12 py-space-40",
|
|
154
|
-
children: [/*#__PURE__*/_jsx(Ionicons, {
|
|
155
|
-
name: "alert-circle",
|
|
156
|
-
size: 48,
|
|
157
|
-
color: bloomTheme.colors.error
|
|
158
|
-
}), /*#__PURE__*/_jsx(H2, {
|
|
159
|
-
style: styles.errorTitle,
|
|
160
|
-
className: "text-text text-center",
|
|
161
|
-
children: t('profile.errorTitle') || 'Profile Error'
|
|
162
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
163
|
-
style: styles.errorText,
|
|
164
|
-
className: "text-text",
|
|
165
|
-
children: error
|
|
166
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
167
|
-
style: styles.errorSubtext,
|
|
168
|
-
className: "text-text-secondary",
|
|
169
|
-
children: t('profile.errorSubtext') || "This could happen if the user doesn't exist or the profile service is unavailable."
|
|
170
|
-
})]
|
|
171
|
-
});
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
// The singular `location` field was removed from the User contract; derive
|
|
175
|
-
// the primary place from the `locations` list instead. `locations` is only
|
|
176
|
-
// reachable through the User index signature (typed `unknown`), so narrow it
|
|
177
|
-
// defensively before rendering the chip.
|
|
178
|
-
const primaryLocation = (() => {
|
|
179
|
-
const locations = profile?.locations;
|
|
180
|
-
const first = Array.isArray(locations) ? locations[0] : undefined;
|
|
181
|
-
if (first && typeof first === 'object' && 'name' in first && typeof first.name === 'string') {
|
|
182
|
-
return first.name || undefined;
|
|
183
|
-
}
|
|
184
|
-
return undefined;
|
|
185
|
-
})();
|
|
186
|
-
return /*#__PURE__*/_jsxs(View, {
|
|
187
|
-
style: styles.scrollContainer,
|
|
188
|
-
children: [/*#__PURE__*/_jsx(View, {
|
|
189
|
-
style: styles.bannerContainer,
|
|
190
|
-
className: "bg-fill-brand/20",
|
|
191
|
-
children: /*#__PURE__*/_jsx(View, {
|
|
192
|
-
style: styles.flex,
|
|
193
|
-
className: "bg-fill-brand"
|
|
194
|
-
})
|
|
195
|
-
}), /*#__PURE__*/_jsxs(View, {
|
|
196
|
-
style: styles.avatarRow,
|
|
197
|
-
className: "px-screen-margin",
|
|
198
|
-
children: [/*#__PURE__*/_jsx(View, {
|
|
199
|
-
style: styles.avatarWrapper,
|
|
200
|
-
className: "border-bg bg-bg rounded-radius-max",
|
|
201
|
-
children: /*#__PURE__*/_jsx(Avatar
|
|
202
|
-
// `getFileDownloadUrl` answers `null` for a reference it cannot
|
|
203
|
-
// resolve, and `Avatar.source` takes `undefined` for "no picture" —
|
|
204
|
-
// the two spellings of absent do not meet, so the coalesce is the
|
|
205
|
-
// whole fix. Without it this file does not typecheck, which blocks
|
|
206
|
-
// `bun run build` and therefore every publish of this package.
|
|
207
|
-
, {
|
|
208
|
-
source: profile?.avatar ? oxyServices.getFileDownloadUrl(profile.avatar, 'thumb') ?? undefined : undefined,
|
|
209
|
-
name: displayName,
|
|
210
|
-
size: AVATAR_SIZE
|
|
211
|
-
})
|
|
212
|
-
}), /*#__PURE__*/_jsx(View, {
|
|
213
|
-
style: styles.actionButtonWrapper,
|
|
214
|
-
children: isOwnProfile ? /*#__PURE__*/_jsx(Button, {
|
|
215
|
-
variant: "secondary",
|
|
216
|
-
size: "small",
|
|
217
|
-
onPress: () => navigate?.('ManageAccount'),
|
|
218
|
-
children: t('editProfile.title') || 'Edit Profile'
|
|
219
|
-
}) : /*#__PURE__*/_jsx(FollowButton, {
|
|
220
|
-
userId: userId,
|
|
221
|
-
onFollowChange: isFollowing => {
|
|
222
|
-
// The follow button will automatically update counts via Zustand
|
|
223
|
-
if (__DEV__) {
|
|
224
|
-
logger.debug(`Follow status changed: ${isFollowing}`, {
|
|
225
|
-
component: 'ProfileScreen'
|
|
226
|
-
});
|
|
227
|
-
}
|
|
228
|
-
}
|
|
229
|
-
})
|
|
230
|
-
})]
|
|
231
|
-
}), /*#__PURE__*/_jsxs(View, {
|
|
232
|
-
style: styles.header,
|
|
233
|
-
className: "px-screen-margin",
|
|
234
|
-
children: [/*#__PURE__*/_jsx(H2, {
|
|
235
|
-
style: styles.displayName,
|
|
236
|
-
className: "text-text",
|
|
237
|
-
children: displayName
|
|
238
|
-
}), profile?.username && /*#__PURE__*/_jsxs(Text, {
|
|
239
|
-
style: styles.subText,
|
|
240
|
-
className: "text-text-secondary",
|
|
241
|
-
children: ["@", profile.username]
|
|
242
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
243
|
-
style: styles.bio,
|
|
244
|
-
className: "text-text",
|
|
245
|
-
children: profile?.bio || t('profile.noBio') || 'This user has no bio yet.'
|
|
246
|
-
})]
|
|
247
|
-
}), /*#__PURE__*/_jsx(View, {
|
|
248
|
-
className: "px-screen-margin",
|
|
249
|
-
children: /*#__PURE__*/_jsxs(SettingsListGroup, {
|
|
250
|
-
children: [profile?.createdAt && /*#__PURE__*/_jsx(SettingsListItem, {
|
|
251
|
-
icon: /*#__PURE__*/_jsx(Ionicons, {
|
|
252
|
-
name: "calendar-outline",
|
|
253
|
-
size: INFO_ICON_SIZE,
|
|
254
|
-
color: bloomTheme.colors.textSecondary
|
|
255
|
-
}),
|
|
256
|
-
title: t('profile.joinedOn', {
|
|
257
|
-
date: new Date(profile.createdAt).toLocaleDateString()
|
|
258
|
-
}) || `Joined ${new Date(profile.createdAt).toLocaleDateString()}`,
|
|
259
|
-
showChevron: false
|
|
260
|
-
}), primaryLocation && /*#__PURE__*/_jsx(SettingsListItem, {
|
|
261
|
-
icon: /*#__PURE__*/_jsx(Ionicons, {
|
|
262
|
-
name: "location-outline",
|
|
263
|
-
size: INFO_ICON_SIZE,
|
|
264
|
-
color: bloomTheme.colors.textSecondary
|
|
265
|
-
}),
|
|
266
|
-
title: primaryLocation,
|
|
267
|
-
showChevron: false
|
|
268
|
-
}), profile?.website && /*#__PURE__*/_jsx(SettingsListItem, {
|
|
269
|
-
icon: /*#__PURE__*/_jsx(Ionicons, {
|
|
270
|
-
name: "globe-outline",
|
|
271
|
-
size: INFO_ICON_SIZE,
|
|
272
|
-
color: bloomTheme.colors.textSecondary
|
|
273
|
-
}),
|
|
274
|
-
title: profile.website,
|
|
275
|
-
showChevron: false
|
|
276
|
-
}), profile && 'company' in profile && typeof profile.company === 'string' && profile.company && /*#__PURE__*/_jsx(SettingsListItem, {
|
|
277
|
-
icon: /*#__PURE__*/_jsx(Ionicons, {
|
|
278
|
-
name: "business-outline",
|
|
279
|
-
size: INFO_ICON_SIZE,
|
|
280
|
-
color: bloomTheme.colors.textSecondary
|
|
281
|
-
}),
|
|
282
|
-
title: profile.company,
|
|
283
|
-
showChevron: false
|
|
284
|
-
}), profile && 'jobTitle' in profile && typeof profile.jobTitle === 'string' && profile.jobTitle && /*#__PURE__*/_jsx(SettingsListItem, {
|
|
285
|
-
icon: /*#__PURE__*/_jsx(Ionicons, {
|
|
286
|
-
name: "briefcase-outline",
|
|
287
|
-
size: INFO_ICON_SIZE,
|
|
288
|
-
color: bloomTheme.colors.textSecondary
|
|
289
|
-
}),
|
|
290
|
-
title: profile.jobTitle,
|
|
291
|
-
showChevron: false
|
|
292
|
-
}), profile && 'education' in profile && typeof profile.education === 'string' && profile.education && /*#__PURE__*/_jsx(SettingsListItem, {
|
|
293
|
-
icon: /*#__PURE__*/_jsx(Ionicons, {
|
|
294
|
-
name: "school-outline",
|
|
295
|
-
size: INFO_ICON_SIZE,
|
|
296
|
-
color: bloomTheme.colors.textSecondary
|
|
297
|
-
}),
|
|
298
|
-
title: profile.education,
|
|
299
|
-
showChevron: false
|
|
300
|
-
}), profile && 'birthday' in profile && typeof profile.birthday === 'string' && profile.birthday && /*#__PURE__*/_jsx(SettingsListItem, {
|
|
301
|
-
icon: /*#__PURE__*/_jsx(Ionicons, {
|
|
302
|
-
name: "gift-outline",
|
|
303
|
-
size: INFO_ICON_SIZE,
|
|
304
|
-
color: bloomTheme.colors.textSecondary
|
|
305
|
-
}),
|
|
306
|
-
title: t('profile.bornOn', {
|
|
307
|
-
date: new Date(profile.birthday).toLocaleDateString()
|
|
308
|
-
}) || `Born ${new Date(profile.birthday).toLocaleDateString()}`,
|
|
309
|
-
showChevron: false
|
|
310
|
-
}), links.length > 0 && /*#__PURE__*/_jsx(SettingsListItem, {
|
|
311
|
-
icon: /*#__PURE__*/_jsx(Ionicons, {
|
|
312
|
-
name: "link-outline",
|
|
313
|
-
size: INFO_ICON_SIZE,
|
|
314
|
-
color: bloomTheme.colors.textSecondary
|
|
315
|
-
}),
|
|
316
|
-
title: links[0].url,
|
|
317
|
-
value: links.length > 1 ? t('profile.more', {
|
|
318
|
-
count: links.length - 1
|
|
319
|
-
}) || `+ ${links.length - 1} more` : undefined,
|
|
320
|
-
onPress: () => navigate?.('UserLinks', {
|
|
321
|
-
userId,
|
|
322
|
-
links
|
|
323
|
-
})
|
|
324
|
-
})]
|
|
325
|
-
})
|
|
326
|
-
}), /*#__PURE__*/_jsxs(View, {
|
|
327
|
-
style: styles.statsRow,
|
|
328
|
-
className: "px-screen-margin",
|
|
329
|
-
children: [/*#__PURE__*/_jsxs(View, {
|
|
330
|
-
style: styles.statItem,
|
|
331
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
332
|
-
style: styles.statAmount,
|
|
333
|
-
className: "text-text",
|
|
334
|
-
children: reputationTotal !== null && reputationTotal !== undefined ? reputationTotal : '--'
|
|
335
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
336
|
-
style: styles.statLabel,
|
|
337
|
-
className: "text-text-secondary",
|
|
338
|
-
children: t('profile.reputation') || 'Reputation'
|
|
339
|
-
})]
|
|
340
|
-
}), /*#__PURE__*/_jsxs(View, {
|
|
341
|
-
style: styles.statItem,
|
|
342
|
-
children: [isLoadingCounts ? /*#__PURE__*/_jsx(ActivityIndicator, {
|
|
343
|
-
size: "small",
|
|
344
|
-
color: bloomTheme.colors.text
|
|
345
|
-
}) : /*#__PURE__*/_jsx(Text, {
|
|
346
|
-
style: styles.statAmount,
|
|
347
|
-
className: "text-text",
|
|
348
|
-
children: followerCount !== null ? followerCount : '--'
|
|
349
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
350
|
-
style: styles.statLabel,
|
|
351
|
-
className: "text-text-secondary",
|
|
352
|
-
children: t('profile.followers') || 'Followers'
|
|
353
|
-
})]
|
|
354
|
-
}), /*#__PURE__*/_jsxs(View, {
|
|
355
|
-
style: styles.statItem,
|
|
356
|
-
children: [isLoadingCounts ? /*#__PURE__*/_jsx(ActivityIndicator, {
|
|
357
|
-
size: "small",
|
|
358
|
-
color: bloomTheme.colors.text
|
|
359
|
-
}) : /*#__PURE__*/_jsx(Text, {
|
|
360
|
-
style: styles.statAmount,
|
|
361
|
-
className: "text-text",
|
|
362
|
-
children: followingCount !== null ? followingCount : '--'
|
|
363
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
364
|
-
style: styles.statLabel,
|
|
365
|
-
className: "text-text-secondary",
|
|
366
|
-
children: t('profile.following') || 'Following'
|
|
367
|
-
})]
|
|
368
|
-
})]
|
|
369
|
-
})]
|
|
370
|
-
});
|
|
371
|
-
};
|
|
372
|
-
|
|
373
|
-
// Layout-only styles: flex, dimensions, and the measured banner/avatar overlap
|
|
374
|
-
// that no token class can express. Colors, spacing, radius, and typography roles
|
|
375
|
-
// live on Bloom components + NativeWind token classes.
|
|
376
|
-
const styles = StyleSheet.create({
|
|
377
|
-
flex: {
|
|
378
|
-
flex: 1
|
|
379
|
-
},
|
|
380
|
-
scrollContainer: {
|
|
381
|
-
alignItems: 'stretch',
|
|
382
|
-
paddingBottom: 40
|
|
383
|
-
},
|
|
384
|
-
bannerContainer: {
|
|
385
|
-
height: BANNER_HEIGHT,
|
|
386
|
-
position: 'relative',
|
|
387
|
-
overflow: 'hidden'
|
|
388
|
-
},
|
|
389
|
-
avatarRow: {
|
|
390
|
-
flexDirection: 'row',
|
|
391
|
-
alignItems: 'flex-end',
|
|
392
|
-
marginTop: AVATAR_OVERLAP,
|
|
393
|
-
justifyContent: 'space-between',
|
|
394
|
-
zIndex: 2
|
|
395
|
-
},
|
|
396
|
-
avatarWrapper: {
|
|
397
|
-
borderWidth: 5,
|
|
398
|
-
overflow: 'hidden'
|
|
399
|
-
},
|
|
400
|
-
actionButtonWrapper: {
|
|
401
|
-
flex: 1,
|
|
402
|
-
alignItems: 'flex-end',
|
|
403
|
-
justifyContent: 'flex-end',
|
|
404
|
-
paddingBottom: 8
|
|
405
|
-
},
|
|
406
|
-
header: {
|
|
407
|
-
alignItems: 'flex-start',
|
|
408
|
-
width: '100%',
|
|
409
|
-
marginTop: 10
|
|
410
|
-
},
|
|
411
|
-
displayName: {
|
|
412
|
-
fontSize: 24,
|
|
413
|
-
marginBottom: 2,
|
|
414
|
-
letterSpacing: 0.1
|
|
415
|
-
},
|
|
416
|
-
subText: {
|
|
417
|
-
fontSize: 16,
|
|
418
|
-
marginBottom: 2
|
|
419
|
-
},
|
|
420
|
-
bio: {
|
|
421
|
-
fontSize: 16,
|
|
422
|
-
marginTop: 10,
|
|
423
|
-
lineHeight: 22
|
|
424
|
-
},
|
|
425
|
-
statsRow: {
|
|
426
|
-
width: '100%',
|
|
427
|
-
flexDirection: 'row',
|
|
428
|
-
alignItems: 'center',
|
|
429
|
-
marginTop: 14,
|
|
430
|
-
justifyContent: 'space-between'
|
|
431
|
-
},
|
|
432
|
-
statItem: {
|
|
433
|
-
flex: 1,
|
|
434
|
-
alignItems: 'center',
|
|
435
|
-
minWidth: 50,
|
|
436
|
-
marginBottom: 12
|
|
437
|
-
},
|
|
438
|
-
statLabel: {
|
|
439
|
-
fontSize: 14,
|
|
440
|
-
marginBottom: 2,
|
|
441
|
-
textAlign: 'center'
|
|
442
|
-
},
|
|
443
|
-
statAmount: {
|
|
444
|
-
fontSize: 24,
|
|
445
|
-
fontWeight: 'bold',
|
|
446
|
-
textAlign: 'center',
|
|
447
|
-
letterSpacing: 0.2
|
|
448
|
-
},
|
|
449
|
-
// Error state layout
|
|
450
|
-
errorTitle: {
|
|
451
|
-
fontSize: 20
|
|
452
|
-
},
|
|
453
|
-
errorContent: {
|
|
454
|
-
justifyContent: 'center',
|
|
455
|
-
alignItems: 'center'
|
|
456
|
-
},
|
|
457
|
-
errorText: {
|
|
458
|
-
fontSize: 18,
|
|
459
|
-
fontWeight: '600',
|
|
460
|
-
textAlign: 'center'
|
|
461
|
-
},
|
|
462
|
-
errorSubtext: {
|
|
463
|
-
fontSize: 14,
|
|
464
|
-
textAlign: 'center'
|
|
465
|
-
}
|
|
466
|
-
});
|
|
467
|
-
export default ProfileScreen;
|
|
468
|
-
//# sourceMappingURL=ProfileScreen.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["useMemo","View","StyleSheet","ActivityIndicator","useQuery","useTheme","Button","H2","Text","SettingsListGroup","SettingsListItem","Avatar","FollowButton","useFollow","Ionicons","useI18n","useSurfaceHeader","useOxy","getNormalizedUserHandle","logger","normalizeProfileLinks","extractErrorMessage","jsx","_jsx","jsxs","_jsxs","AVATAR_SIZE","BANNER_HEIGHT","AVATAR_OVERLAP","INFO_ICON_SIZE","ProfileScreen","userId","username","theme","goBack","navigate","oxyServices","user","currentUser","followerCount","followingCount","isLoadingCounts","bloomTheme","t","normalizeId","id","String","trim","currentUserId","targetUserId","isOwnProfile","profileQuery","queryKey","enabled","retry","queryFn","profileRes","reputationRes","Promise","all","getUserById","catch","err","error","Error","component","getMyReputationBalance","getReputationBalance","then","balance","total","undefined","getUserStats","postCount","commentCount","resolve","profile","reputationTotal","links","linksMetadata","data","isLoading","isError","errorWithStatus","errorMessageText","status","includes","displayName","name","title","largeTitle","tone","className","children","size","color","colors","primary","style","styles","errorContent","errorTitle","errorText","errorSubtext","primaryLocation","locations","first","Array","isArray","scrollContainer","bannerContainer","flex","avatarRow","avatarWrapper","source","avatar","getFileDownloadUrl","actionButtonWrapper","variant","onPress","onFollowChange","isFollowing","__DEV__","debug","header","subText","bio","createdAt","icon","textSecondary","date","Date","toLocaleDateString","showChevron","website","company","jobTitle","education","birthday","length","url","value","count","statsRow","statItem","statAmount","statLabel","text","create","alignItems","paddingBottom","height","position","overflow","flexDirection","marginTop","justifyContent","zIndex","borderWidth","width","fontSize","marginBottom","letterSpacing","lineHeight","minWidth","textAlign","fontWeight"],"sourceRoot":"../../../../src","sources":["ui/screens/ProfileScreen.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import React, { useState, useEffect } from 'react';
|
|
4
|
-
import { View } from 'react-native';
|
|
5
|
-
import { toast } from '@oxyhq/bloom/toast';
|
|
6
|
-
import { SegmentedControl, SegmentedControlItem, SegmentedControlItemText } from '@oxyhq/bloom/segmented-control';
|
|
7
|
-
import { useTheme } from '@oxyhq/bloom/theme';
|
|
8
|
-
import { SettingsListGroup, SettingsListItem } from '@oxyhq/bloom/settings-list';
|
|
9
|
-
import { Loading } from '@oxyhq/bloom/loading';
|
|
10
|
-
import { Text } from '@oxyhq/bloom/typography';
|
|
11
|
-
import { SettingsIcon } from "../components/SettingsIcon.js";
|
|
12
|
-
import { useI18n } from "../hooks/useI18n.js";
|
|
13
|
-
import { useSurfaceHeader } from "../hooks/useSurfaceHeader.js";
|
|
14
|
-
import { useOxy } from "../context/OxyContext.js";
|
|
15
|
-
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
16
|
-
const SavesCollectionsScreen = ({
|
|
17
|
-
onClose,
|
|
18
|
-
goBack
|
|
19
|
-
}) => {
|
|
20
|
-
// Saves & collections belong to the ACTIVE account (the org/project/bot when
|
|
21
|
-
// switched, else the personal user).
|
|
22
|
-
const {
|
|
23
|
-
oxyServices,
|
|
24
|
-
user
|
|
25
|
-
} = useOxy();
|
|
26
|
-
const {
|
|
27
|
-
t
|
|
28
|
-
} = useI18n();
|
|
29
|
-
useSurfaceHeader({
|
|
30
|
-
title: t('saves.title') || 'Saves & Collections'
|
|
31
|
-
});
|
|
32
|
-
const bloomTheme = useTheme();
|
|
33
|
-
const [savedItems, setSavedItems] = useState([]);
|
|
34
|
-
const [collections, setCollections] = useState([]);
|
|
35
|
-
const [isLoading, setIsLoading] = useState(true);
|
|
36
|
-
const [activeTab, setActiveTab] = useState('saves');
|
|
37
|
-
|
|
38
|
-
// Load saved items and collections from API
|
|
39
|
-
useEffect(() => {
|
|
40
|
-
const loadData = async () => {
|
|
41
|
-
try {
|
|
42
|
-
setIsLoading(true);
|
|
43
|
-
if (user?.id && oxyServices) {
|
|
44
|
-
const [saved, cols] = await Promise.all([oxyServices.getSavedItems(user.id), oxyServices.getCollections(user.id)]);
|
|
45
|
-
setSavedItems(saved.map(item => ({
|
|
46
|
-
id: item.id,
|
|
47
|
-
title: item.title,
|
|
48
|
-
type: item.itemType === 'post' ? 'post' : 'collection',
|
|
49
|
-
savedAt: new Date(item.createdAt)
|
|
50
|
-
})));
|
|
51
|
-
setCollections(cols.map(col => ({
|
|
52
|
-
id: col.id,
|
|
53
|
-
name: col.name,
|
|
54
|
-
description: col.description,
|
|
55
|
-
itemCount: col.itemCount,
|
|
56
|
-
createdAt: col.createdAt ? new Date(col.createdAt) : undefined
|
|
57
|
-
})));
|
|
58
|
-
}
|
|
59
|
-
} catch (error) {
|
|
60
|
-
toast.error(t('saves.loadError') || 'Failed to load saved items');
|
|
61
|
-
} finally {
|
|
62
|
-
setIsLoading(false);
|
|
63
|
-
}
|
|
64
|
-
};
|
|
65
|
-
loadData();
|
|
66
|
-
}, [user?.id, oxyServices, t]);
|
|
67
|
-
const formatDate = date => {
|
|
68
|
-
return date.toLocaleDateString();
|
|
69
|
-
};
|
|
70
|
-
return /*#__PURE__*/_jsxs(_Fragment, {
|
|
71
|
-
children: [/*#__PURE__*/_jsx(View, {
|
|
72
|
-
className: "px-screen-margin py-space-12 border-b border-border",
|
|
73
|
-
children: /*#__PURE__*/_jsxs(SegmentedControl, {
|
|
74
|
-
label: t('saves.title') || 'Saves & Collections',
|
|
75
|
-
type: "tabs",
|
|
76
|
-
value: activeTab,
|
|
77
|
-
onChange: setActiveTab,
|
|
78
|
-
children: [/*#__PURE__*/_jsx(SegmentedControlItem, {
|
|
79
|
-
value: "saves",
|
|
80
|
-
children: /*#__PURE__*/_jsx(SegmentedControlItemText, {
|
|
81
|
-
children: t('saves.tabs.saves') || 'Saves'
|
|
82
|
-
})
|
|
83
|
-
}), /*#__PURE__*/_jsx(SegmentedControlItem, {
|
|
84
|
-
value: "collections",
|
|
85
|
-
children: /*#__PURE__*/_jsx(SegmentedControlItemText, {
|
|
86
|
-
children: t('saves.tabs.collections') || 'Collections'
|
|
87
|
-
})
|
|
88
|
-
})]
|
|
89
|
-
})
|
|
90
|
-
}), /*#__PURE__*/_jsx(View, {
|
|
91
|
-
className: "px-screen-margin pb-space-24",
|
|
92
|
-
children: isLoading ? /*#__PURE__*/_jsx(Loading, {
|
|
93
|
-
size: "large",
|
|
94
|
-
color: bloomTheme.colors.text,
|
|
95
|
-
text: t('saves.loading') || 'Loading...'
|
|
96
|
-
}) : activeTab === 'saves' ? savedItems.length === 0 ? /*#__PURE__*/_jsx(Text, {
|
|
97
|
-
className: "text-text-secondary text-center p-space-40",
|
|
98
|
-
children: t('saves.empty') || 'No saved items yet'
|
|
99
|
-
}) : /*#__PURE__*/_jsx(SettingsListGroup, {
|
|
100
|
-
title: t('saves.savedItems') || 'Saved Items',
|
|
101
|
-
children: savedItems.map(item => /*#__PURE__*/_jsx(SettingsListItem, {
|
|
102
|
-
icon: /*#__PURE__*/_jsx(SettingsIcon, {
|
|
103
|
-
name: item.type === 'post' ? 'file-document-outline' : 'folder',
|
|
104
|
-
color: item.type === 'post' ? bloomTheme.colors.primary : bloomTheme.colors.info
|
|
105
|
-
}),
|
|
106
|
-
title: item.title,
|
|
107
|
-
description: formatDate(item.savedAt)
|
|
108
|
-
}, item.id))
|
|
109
|
-
}) : collections.length === 0 ? /*#__PURE__*/_jsx(Text, {
|
|
110
|
-
className: "text-text-secondary text-center p-space-40",
|
|
111
|
-
children: t('saves.noCollections') || 'No collections yet'
|
|
112
|
-
}) : /*#__PURE__*/_jsx(SettingsListGroup, {
|
|
113
|
-
title: t('saves.collections') || 'Collections',
|
|
114
|
-
children: collections.map(collection => /*#__PURE__*/_jsx(SettingsListItem, {
|
|
115
|
-
icon: /*#__PURE__*/_jsx(SettingsIcon, {
|
|
116
|
-
name: "folder",
|
|
117
|
-
color: bloomTheme.colors.info
|
|
118
|
-
}),
|
|
119
|
-
title: collection.name,
|
|
120
|
-
description: `${collection.itemCount || 0} items`
|
|
121
|
-
}, collection.id))
|
|
122
|
-
})
|
|
123
|
-
})]
|
|
124
|
-
});
|
|
125
|
-
};
|
|
126
|
-
export default /*#__PURE__*/React.memo(SavesCollectionsScreen);
|
|
127
|
-
//# sourceMappingURL=SavesCollectionsScreen.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["React","useState","useEffect","View","toast","SegmentedControl","SegmentedControlItem","SegmentedControlItemText","useTheme","SettingsListGroup","SettingsListItem","Loading","Text","SettingsIcon","useI18n","useSurfaceHeader","useOxy","jsx","_jsx","jsxs","_jsxs","Fragment","_Fragment","SavesCollectionsScreen","onClose","goBack","oxyServices","user","t","title","bloomTheme","savedItems","setSavedItems","collections","setCollections","isLoading","setIsLoading","activeTab","setActiveTab","loadData","id","saved","cols","Promise","all","getSavedItems","getCollections","map","item","type","itemType","savedAt","Date","createdAt","col","name","description","itemCount","undefined","error","formatDate","date","toLocaleDateString","children","className","label","value","onChange","size","color","colors","text","length","icon","primary","info","collection","memo"],"sourceRoot":"../../../../src","sources":["ui/screens/SavesCollectionsScreen.tsx"],"mappings":"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","ignoreList":[]}
|