@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 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_reactNative","_Ionicons","_interopRequireDefault","_toast","_surfaces","_theme","_typography","_settingsList","_core","_ProfileSummaryCard","_SettingsIcon","_DeleteAccountModal","_ActionSheetSurface","_OxyContext","_useI18n","_useSurfaceHeader","_useAccountQueries","_usePaymentQueries","_useServicesQueries","_jsxRuntime","e","__esModule","default","AVATAR_SIZE","formatRelative","dateString","date","Date","now","diffMs","getTime","absMin","Math","abs","isFuture","v","floor","hrs","days","toLocaleDateString","ManageAccountScreen","onClose","goBack","navigate","bloomTheme","useTheme","t","locale","useI18n","useSurfaceHeader","title","user","contextUser","isAuthenticated","oxyServices","activeSessionId","logout","openAvatarPicker","accounts","openAccountDialog","useOxy","data","userFromQuery","isLoading","userLoading","useCurrentUser","enabled","subscription","useUserSubscription","deviceSessions","deviceSessionsLoading","refetch","refetchDeviceSessions","useDeviceSessions","removingDeviceId","setRemovingDeviceId","useState","signingOutAllDevices","setSigningOutAllDevices","signingOut","setSigningOut","displayName","useMemo","name","getNormalizedUserHandle","getAccountDisplayName","handle","getAccountFallbackHandle","avatarUri","avatar","getFileDownloadUrl","undefined","handleSignOut","useCallback","confirmed","surfaces","confirm","message","confirmLabel","cancelLabel","destructive","toast","success","error","loggerUtil","warn","component","confirmRemoveDevice","device","deviceName","sessionId","logoutSession","handleSignOutAllDevices","otherDeviceCount","filter","isCurrent","length","count","logoutAllDeviceSessions","performDownload","format","info","blob","downloadAccountData","Platform","OS","url","URL","createObjectURL","link","document","createElement","href","download","body","appendChild","click","removeChild","revokeObjectURL","Error","handleConfirmDelete","confirmText","deleteAccount","handleDownloadData","presentActionSheet","options","label","value","handleDeleteAccount","deleted","presentDeleteAccount","username","onDelete","jsx","Fragment","children","View","className","Text","ActivityIndicator","color","colors","primary","size","deviceRows","otherDevices","d","jsxs","avatarSize","onAvatarPress","showCameraBadge","avatarAccessibilityLabel","lines","email","SettingsListGroup","SettingsListItem","icon","SettingsIcon","description","onPress","id","userId","disabled","rightElement","showChevron","textTertiary","map","relative","lastActive","warning","isPremium","status","initialStep","version","packageInfo","style","styles","footerSpacer","StyleSheet","create","height","_default","exports"],"sourceRoot":"../../../../src","sources":["ui/screens/ManageAccountScreen.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,150 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
8
|
-
var _reactNative = require("react-native");
|
|
9
|
-
var _settingsList = require("@oxyhq/bloom/settings-list");
|
|
10
|
-
var _switch = require("@oxyhq/bloom/switch");
|
|
11
|
-
var _theme = require("@oxyhq/bloom/theme");
|
|
12
|
-
var _SettingsIcon = require("../components/SettingsIcon.js");
|
|
13
|
-
var _useI18n = require("../hooks/useI18n.js");
|
|
14
|
-
var _useSurfaceHeader = require("../hooks/useSurfaceHeader.js");
|
|
15
|
-
var _OxyContext = require("../context/OxyContext.js");
|
|
16
|
-
var _useAccountQueries = require("../hooks/queries/useAccountQueries.js");
|
|
17
|
-
var _useAccountMutations = require("../hooks/mutations/useAccountMutations.js");
|
|
18
|
-
var _useSettingToggle = require("../hooks/useSettingToggle.js");
|
|
19
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
20
|
-
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
21
|
-
const DEFAULT_VALUES = {
|
|
22
|
-
pushEnabled: true,
|
|
23
|
-
emailDigest: true,
|
|
24
|
-
securityAlerts: true,
|
|
25
|
-
marketingEmails: false
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
/**
|
|
29
|
-
* NotificationsScreen — manage per-channel notification preferences.
|
|
30
|
-
*
|
|
31
|
-
* Persists every toggle change via `useUpdateNotificationPreferences`, which
|
|
32
|
-
* uses optimistic updates + offline-queue support. The initial values seed
|
|
33
|
-
* from the current user's `notificationPreferences` field, defaulting to the
|
|
34
|
-
* platform defaults when the field has never been set.
|
|
35
|
-
*/
|
|
36
|
-
const NotificationsScreen = ({
|
|
37
|
-
onClose,
|
|
38
|
-
goBack
|
|
39
|
-
}) => {
|
|
40
|
-
const bloomTheme = (0, _theme.useTheme)();
|
|
41
|
-
const {
|
|
42
|
-
t
|
|
43
|
-
} = (0, _useI18n.useI18n)();
|
|
44
|
-
(0, _useSurfaceHeader.useSurfaceHeader)({
|
|
45
|
-
title: t('notifications.title') || 'Notifications'
|
|
46
|
-
});
|
|
47
|
-
const {
|
|
48
|
-
isAuthenticated
|
|
49
|
-
} = (0, _OxyContext.useOxy)();
|
|
50
|
-
const {
|
|
51
|
-
data: user
|
|
52
|
-
} = (0, _useAccountQueries.useCurrentUser)({
|
|
53
|
-
enabled: isAuthenticated
|
|
54
|
-
});
|
|
55
|
-
const updateMutation = (0, _useAccountMutations.useUpdateNotificationPreferences)();
|
|
56
|
-
const initialValues = (0, _react.useMemo)(() => {
|
|
57
|
-
const prefs = user?.notificationPreferences;
|
|
58
|
-
return {
|
|
59
|
-
pushEnabled: prefs?.pushEnabled ?? DEFAULT_VALUES.pushEnabled,
|
|
60
|
-
emailDigest: prefs?.emailDigest ?? DEFAULT_VALUES.emailDigest,
|
|
61
|
-
securityAlerts: prefs?.securityAlerts ?? DEFAULT_VALUES.securityAlerts,
|
|
62
|
-
marketingEmails: prefs?.marketingEmails ?? DEFAULT_VALUES.marketingEmails
|
|
63
|
-
};
|
|
64
|
-
}, [user?.notificationPreferences]);
|
|
65
|
-
const handleSave = (0, _react.useCallback)(async (key, value) => {
|
|
66
|
-
const patch = {
|
|
67
|
-
[key]: value
|
|
68
|
-
};
|
|
69
|
-
await updateMutation.mutateAsync(patch);
|
|
70
|
-
}, [updateMutation]);
|
|
71
|
-
const {
|
|
72
|
-
values,
|
|
73
|
-
toggle,
|
|
74
|
-
savingKeys
|
|
75
|
-
} = (0, _useSettingToggle.useSettingToggles)({
|
|
76
|
-
initialValues,
|
|
77
|
-
onSave: handleSave,
|
|
78
|
-
errorMessage: t('notifications.updateError') || 'Failed to update notification preferences'
|
|
79
|
-
});
|
|
80
|
-
const isSaving = savingKeys.size > 0;
|
|
81
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
|
|
82
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
83
|
-
className: "px-screen-margin pb-space-24",
|
|
84
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_settingsList.SettingsListGroup, {
|
|
85
|
-
title: t('notifications.sections.channels') || 'Channels',
|
|
86
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListItem, {
|
|
87
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_SettingsIcon.SettingsIcon, {
|
|
88
|
-
name: "bell",
|
|
89
|
-
color: bloomTheme.colors.primary
|
|
90
|
-
}),
|
|
91
|
-
title: t('notifications.items.push.title') || 'Push notifications',
|
|
92
|
-
description: t('notifications.items.push.subtitle') || 'Real-time alerts on your devices',
|
|
93
|
-
rightElement: /*#__PURE__*/(0, _jsxRuntime.jsx)(_switch.Switch, {
|
|
94
|
-
value: values.pushEnabled,
|
|
95
|
-
onValueChange: () => toggle('pushEnabled'),
|
|
96
|
-
disabled: isSaving
|
|
97
|
-
}),
|
|
98
|
-
showChevron: false
|
|
99
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListItem, {
|
|
100
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_SettingsIcon.SettingsIcon, {
|
|
101
|
-
name: "email",
|
|
102
|
-
color: bloomTheme.colors.info
|
|
103
|
-
}),
|
|
104
|
-
title: t('notifications.items.emailDigest.title') || 'Email digest',
|
|
105
|
-
description: t('notifications.items.emailDigest.subtitle') || 'Periodic summary of your account activity',
|
|
106
|
-
rightElement: /*#__PURE__*/(0, _jsxRuntime.jsx)(_switch.Switch, {
|
|
107
|
-
value: values.emailDigest,
|
|
108
|
-
onValueChange: () => toggle('emailDigest'),
|
|
109
|
-
disabled: isSaving
|
|
110
|
-
}),
|
|
111
|
-
showChevron: false
|
|
112
|
-
})]
|
|
113
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListGroup, {
|
|
114
|
-
title: t('notifications.sections.alerts') || 'Alerts',
|
|
115
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListItem, {
|
|
116
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_SettingsIcon.SettingsIcon, {
|
|
117
|
-
name: "shield-check",
|
|
118
|
-
color: bloomTheme.colors.success
|
|
119
|
-
}),
|
|
120
|
-
title: t('notifications.items.securityAlerts.title') || 'Security alerts',
|
|
121
|
-
description: t('notifications.items.securityAlerts.subtitle') || 'Sign-ins, recovery codes, and key changes',
|
|
122
|
-
rightElement: /*#__PURE__*/(0, _jsxRuntime.jsx)(_switch.Switch, {
|
|
123
|
-
value: values.securityAlerts,
|
|
124
|
-
onValueChange: () => toggle('securityAlerts'),
|
|
125
|
-
disabled: isSaving
|
|
126
|
-
}),
|
|
127
|
-
showChevron: false
|
|
128
|
-
})
|
|
129
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListGroup, {
|
|
130
|
-
title: t('notifications.sections.marketing') || 'Marketing',
|
|
131
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListItem, {
|
|
132
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_SettingsIcon.SettingsIcon, {
|
|
133
|
-
name: "bullhorn",
|
|
134
|
-
color: bloomTheme.colors.secondary
|
|
135
|
-
}),
|
|
136
|
-
title: t('notifications.items.marketingEmails.title') || 'Marketing emails',
|
|
137
|
-
description: t('notifications.items.marketingEmails.subtitle') || 'Product news and occasional offers',
|
|
138
|
-
rightElement: /*#__PURE__*/(0, _jsxRuntime.jsx)(_switch.Switch, {
|
|
139
|
-
value: values.marketingEmails,
|
|
140
|
-
onValueChange: () => toggle('marketingEmails'),
|
|
141
|
-
disabled: isSaving
|
|
142
|
-
}),
|
|
143
|
-
showChevron: false
|
|
144
|
-
})
|
|
145
|
-
})]
|
|
146
|
-
})
|
|
147
|
-
});
|
|
148
|
-
};
|
|
149
|
-
var _default = exports.default = /*#__PURE__*/_react.default.memo(NotificationsScreen);
|
|
150
|
-
//# sourceMappingURL=NotificationsScreen.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_settingsList","_switch","_theme","_SettingsIcon","_useI18n","_useSurfaceHeader","_OxyContext","_useAccountQueries","_useAccountMutations","_useSettingToggle","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","DEFAULT_VALUES","pushEnabled","emailDigest","securityAlerts","marketingEmails","NotificationsScreen","onClose","goBack","bloomTheme","useTheme","useI18n","useSurfaceHeader","title","isAuthenticated","useOxy","data","user","useCurrentUser","enabled","updateMutation","useUpdateNotificationPreferences","initialValues","useMemo","prefs","notificationPreferences","handleSave","useCallback","key","value","patch","mutateAsync","values","toggle","savingKeys","useSettingToggles","onSave","errorMessage","isSaving","size","jsx","Fragment","children","jsxs","View","className","SettingsListGroup","SettingsListItem","icon","SettingsIcon","name","color","colors","primary","description","rightElement","Switch","onValueChange","disabled","showChevron","info","success","secondary","_default","exports","React","memo"],"sourceRoot":"../../../../src","sources":["ui/screens/NotificationsScreen.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,278 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
var _react = require("react");
|
|
8
|
-
var _reactNative = require("react-native");
|
|
9
|
-
var _button = require("@oxyhq/bloom/button");
|
|
10
|
-
var _theme = require("@oxyhq/bloom/theme");
|
|
11
|
-
var _typography = require("@oxyhq/bloom/typography");
|
|
12
|
-
var _Ionicons = _interopRequireDefault(require("@expo/vector-icons/Ionicons"));
|
|
13
|
-
var _useI18n = require("../hooks/useI18n.js");
|
|
14
|
-
var _useSurfaceHeader = require("../hooks/useSurfaceHeader.js");
|
|
15
|
-
var _reactNativeQrcodeSvg = _interopRequireDefault(require("react-native-qrcode-svg"));
|
|
16
|
-
var _PaymentSummaryStep = _interopRequireDefault(require("../components/payment/PaymentSummaryStep.js"));
|
|
17
|
-
var _PaymentMethodStep = _interopRequireDefault(require("../components/payment/PaymentMethodStep.js"));
|
|
18
|
-
var _PaymentDetailsStep = _interopRequireDefault(require("../components/payment/PaymentDetailsStep.js"));
|
|
19
|
-
var _PaymentReviewStep = _interopRequireDefault(require("../components/payment/PaymentReviewStep.js"));
|
|
20
|
-
var _PaymentSuccessStep = _interopRequireDefault(require("../components/payment/PaymentSuccessStep.js"));
|
|
21
|
-
var _constants = require("../components/payment/constants.js");
|
|
22
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
23
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
24
|
-
const getUniqueItemTypes = items => {
|
|
25
|
-
const types = items.map(item => item.type);
|
|
26
|
-
return Array.from(new Set(types));
|
|
27
|
-
};
|
|
28
|
-
const PaymentGatewayScreen = props => {
|
|
29
|
-
const {
|
|
30
|
-
navigate,
|
|
31
|
-
goBack,
|
|
32
|
-
onPaymentResult,
|
|
33
|
-
amount,
|
|
34
|
-
currency = 'FAIR',
|
|
35
|
-
onClose,
|
|
36
|
-
paymentItems = [],
|
|
37
|
-
description = ''
|
|
38
|
-
} = props;
|
|
39
|
-
|
|
40
|
-
// DEV ENFORCEMENT: Only allow one type of payment item
|
|
41
|
-
if (process.env.NODE_ENV !== 'production' && paymentItems.length > 0) {
|
|
42
|
-
const uniqueTypes = getUniqueItemTypes(paymentItems);
|
|
43
|
-
if (uniqueTypes.length > 1) {
|
|
44
|
-
throw new Error(`PaymentGatewayScreen: paymentItems contains mixed types (${uniqueTypes.join(', ')}). Only one type is allowed per payment.`);
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
// Step states
|
|
49
|
-
const [currentStep, setCurrentStep] = (0, _react.useState)(0);
|
|
50
|
-
const [paymentMethod, setPaymentMethod] = (0, _react.useState)('card');
|
|
51
|
-
const [cardDetails, setCardDetails] = (0, _react.useState)({
|
|
52
|
-
number: '',
|
|
53
|
-
expiry: '',
|
|
54
|
-
cvv: ''
|
|
55
|
-
});
|
|
56
|
-
const [isPaying, setIsPaying] = (0, _react.useState)(false);
|
|
57
|
-
|
|
58
|
-
// Animations
|
|
59
|
-
const fadeAnim = (0, _react.useRef)(new _reactNative.Animated.Value(1)).current;
|
|
60
|
-
const slideAnim = (0, _react.useRef)(new _reactNative.Animated.Value(0)).current;
|
|
61
|
-
const scaleAnim = (0, _react.useRef)(new _reactNative.Animated.Value(1)).current;
|
|
62
|
-
const progressAnim = (0, _react.useRef)(new _reactNative.Animated.Value(0.2)).current;
|
|
63
|
-
|
|
64
|
-
// Bloom theme drives all payment colors — the wizard step components consume
|
|
65
|
-
// `colors` (PaymentColors === bloom ThemeColors) directly, no mapper.
|
|
66
|
-
const bloomTheme = (0, _theme.useTheme)();
|
|
67
|
-
const colors = bloomTheme.colors;
|
|
68
|
-
const {
|
|
69
|
-
t
|
|
70
|
-
} = (0, _useI18n.useI18n)();
|
|
71
|
-
|
|
72
|
-
// Determine if the payment is for a recurring item (subscription)
|
|
73
|
-
const isRecurring = paymentItems.length > 0 && paymentItems[0].type === 'subscription';
|
|
74
|
-
|
|
75
|
-
// Filter payment methods: remove 'faircoin' if recurring
|
|
76
|
-
const availablePaymentMethods = (0, _react.useMemo)(() => {
|
|
77
|
-
if (isRecurring) {
|
|
78
|
-
return _constants.PAYMENT_METHODS.filter(m => m.key !== 'faircoin');
|
|
79
|
-
}
|
|
80
|
-
return _constants.PAYMENT_METHODS;
|
|
81
|
-
}, [isRecurring]);
|
|
82
|
-
|
|
83
|
-
// Animation transitions
|
|
84
|
-
const animateTransition = (0, _react.useCallback)(nextStep => {
|
|
85
|
-
_reactNative.Animated.timing(scaleAnim, {
|
|
86
|
-
toValue: 0.95,
|
|
87
|
-
duration: 150,
|
|
88
|
-
useNativeDriver: _reactNative.Platform.OS !== 'web'
|
|
89
|
-
}).start();
|
|
90
|
-
_reactNative.Animated.timing(fadeAnim, {
|
|
91
|
-
toValue: 0,
|
|
92
|
-
duration: 200,
|
|
93
|
-
useNativeDriver: _reactNative.Platform.OS !== 'web'
|
|
94
|
-
}).start(() => {
|
|
95
|
-
setCurrentStep(nextStep);
|
|
96
|
-
slideAnim.setValue(-50);
|
|
97
|
-
scaleAnim.setValue(0.95);
|
|
98
|
-
_reactNative.Animated.parallel([_reactNative.Animated.timing(fadeAnim, {
|
|
99
|
-
toValue: 1,
|
|
100
|
-
duration: 300,
|
|
101
|
-
useNativeDriver: _reactNative.Platform.OS !== 'web'
|
|
102
|
-
}), _reactNative.Animated.spring(slideAnim, {
|
|
103
|
-
toValue: 0,
|
|
104
|
-
tension: 80,
|
|
105
|
-
friction: 8,
|
|
106
|
-
useNativeDriver: _reactNative.Platform.OS !== 'web'
|
|
107
|
-
}), _reactNative.Animated.spring(scaleAnim, {
|
|
108
|
-
toValue: 1,
|
|
109
|
-
tension: 80,
|
|
110
|
-
friction: 8,
|
|
111
|
-
useNativeDriver: _reactNative.Platform.OS !== 'web'
|
|
112
|
-
})]).start();
|
|
113
|
-
});
|
|
114
|
-
}, [fadeAnim, slideAnim, scaleAnim]);
|
|
115
|
-
const nextStep = (0, _react.useCallback)(() => {
|
|
116
|
-
if (currentStep < 4) {
|
|
117
|
-
_reactNative.Animated.timing(progressAnim, {
|
|
118
|
-
toValue: (currentStep + 2) / 5,
|
|
119
|
-
duration: 300,
|
|
120
|
-
useNativeDriver: false
|
|
121
|
-
}).start();
|
|
122
|
-
animateTransition(currentStep + 1);
|
|
123
|
-
}
|
|
124
|
-
}, [currentStep, progressAnim, animateTransition]);
|
|
125
|
-
const prevStep = (0, _react.useCallback)(() => {
|
|
126
|
-
if (currentStep > 0) {
|
|
127
|
-
_reactNative.Animated.timing(progressAnim, {
|
|
128
|
-
toValue: currentStep / 5,
|
|
129
|
-
duration: 300,
|
|
130
|
-
useNativeDriver: false
|
|
131
|
-
}).start();
|
|
132
|
-
animateTransition(currentStep - 1);
|
|
133
|
-
}
|
|
134
|
-
}, [currentStep, progressAnim, animateTransition]);
|
|
135
|
-
|
|
136
|
-
// Pay handler — placeholder for payment integration
|
|
137
|
-
const handlePay = (0, _react.useCallback)(() => {
|
|
138
|
-
setIsPaying(true);
|
|
139
|
-
setTimeout(() => {
|
|
140
|
-
setIsPaying(false);
|
|
141
|
-
nextStep();
|
|
142
|
-
}, 1500);
|
|
143
|
-
}, [nextStep]);
|
|
144
|
-
const handleDone = (0, _react.useCallback)(() => {
|
|
145
|
-
if (onPaymentResult) {
|
|
146
|
-
onPaymentResult({
|
|
147
|
-
success: true
|
|
148
|
-
});
|
|
149
|
-
}
|
|
150
|
-
navigate?.('ManageAccount');
|
|
151
|
-
}, [onPaymentResult, navigate]);
|
|
152
|
-
const handleClose = (0, _react.useCallback)(() => {
|
|
153
|
-
if (onPaymentResult) {
|
|
154
|
-
onPaymentResult({
|
|
155
|
-
success: false,
|
|
156
|
-
error: 'cancelled'
|
|
157
|
-
});
|
|
158
|
-
}
|
|
159
|
-
if (onClose) {
|
|
160
|
-
onClose();
|
|
161
|
-
} else if (goBack) {
|
|
162
|
-
goBack();
|
|
163
|
-
}
|
|
164
|
-
}, [onPaymentResult, onClose, goBack]);
|
|
165
|
-
|
|
166
|
-
// Shared Dialog nav header: a stable "Payment" title + a back affordance that
|
|
167
|
-
// steps the wizard back once past the first step (the step components keep
|
|
168
|
-
// their own bottom Back/Continue CTAs; the header's close dismisses, matching
|
|
169
|
-
// the pre-existing backdrop-dismiss).
|
|
170
|
-
(0, _useSurfaceHeader.useSurfaceHeader)({
|
|
171
|
-
title: t('payment.title'),
|
|
172
|
-
largeTitle: false,
|
|
173
|
-
onBack: currentStep > 0 ? prevStep : undefined
|
|
174
|
-
});
|
|
175
|
-
|
|
176
|
-
// Validate amount
|
|
177
|
-
if (!amount || Number.isNaN(Number(amount)) || Number(amount) <= 0) {
|
|
178
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
179
|
-
className: "items-center justify-center px-screen-margin gap-space-24 py-space-40",
|
|
180
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_Ionicons.default, {
|
|
181
|
-
name: "alert-circle-outline",
|
|
182
|
-
size: 48,
|
|
183
|
-
color: bloomTheme.colors.error
|
|
184
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.H4, {
|
|
185
|
-
className: "text-text text-center",
|
|
186
|
-
children: t('payment.errors.invalidAmount')
|
|
187
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_button.Button, {
|
|
188
|
-
variant: "primary",
|
|
189
|
-
onPress: handleClose,
|
|
190
|
-
size: "small",
|
|
191
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Ionicons.default, {
|
|
192
|
-
name: "close",
|
|
193
|
-
size: 16
|
|
194
|
-
}),
|
|
195
|
-
iconPosition: "right",
|
|
196
|
-
children: t('payment.actions.close')
|
|
197
|
-
})]
|
|
198
|
-
});
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
// FairCoin address placeholder — replaced when integration is wired up.
|
|
202
|
-
const faircoinAddress = 'f1abc1234FAIRCOINADDRESS';
|
|
203
|
-
const {
|
|
204
|
-
width: windowWidth
|
|
205
|
-
} = (0, _reactNative.useWindowDimensions)();
|
|
206
|
-
const isMobile = windowWidth < 600;
|
|
207
|
-
const qrSize = !isMobile ? Math.min(windowWidth * 0.3, 220) : Math.min(windowWidth * 0.8, 300);
|
|
208
|
-
const animations = {
|
|
209
|
-
fadeAnim,
|
|
210
|
-
slideAnim,
|
|
211
|
-
scaleAnim
|
|
212
|
-
};
|
|
213
|
-
const renderCurrentStep = () => {
|
|
214
|
-
switch (currentStep) {
|
|
215
|
-
case 0:
|
|
216
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_PaymentSummaryStep.default, {
|
|
217
|
-
paymentItems: paymentItems,
|
|
218
|
-
amount: amount,
|
|
219
|
-
currency: currency,
|
|
220
|
-
description: description,
|
|
221
|
-
colors: colors,
|
|
222
|
-
animations: animations,
|
|
223
|
-
onClose: handleClose,
|
|
224
|
-
onNext: nextStep
|
|
225
|
-
});
|
|
226
|
-
case 1:
|
|
227
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_PaymentMethodStep.default, {
|
|
228
|
-
availablePaymentMethods: availablePaymentMethods,
|
|
229
|
-
selectedMethod: paymentMethod,
|
|
230
|
-
onSelectMethod: setPaymentMethod,
|
|
231
|
-
colors: colors,
|
|
232
|
-
animations: animations,
|
|
233
|
-
onBack: prevStep,
|
|
234
|
-
onNext: nextStep
|
|
235
|
-
});
|
|
236
|
-
case 2:
|
|
237
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_PaymentDetailsStep.default, {
|
|
238
|
-
paymentMethod: paymentMethod,
|
|
239
|
-
cardDetails: cardDetails,
|
|
240
|
-
onCardDetailsChange: setCardDetails,
|
|
241
|
-
colors: colors,
|
|
242
|
-
animations: animations,
|
|
243
|
-
faircoinAddress: faircoinAddress,
|
|
244
|
-
isMobile: isMobile,
|
|
245
|
-
qrSize: qrSize,
|
|
246
|
-
onBack: prevStep,
|
|
247
|
-
onNext: nextStep,
|
|
248
|
-
QRCodeComponent: _reactNativeQrcodeSvg.default
|
|
249
|
-
});
|
|
250
|
-
case 3:
|
|
251
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_PaymentReviewStep.default, {
|
|
252
|
-
amount: amount,
|
|
253
|
-
currency: currency,
|
|
254
|
-
paymentMethod: paymentMethod,
|
|
255
|
-
cardDetails: cardDetails,
|
|
256
|
-
colors: colors,
|
|
257
|
-
animations: animations,
|
|
258
|
-
isPaying: isPaying,
|
|
259
|
-
onBack: prevStep,
|
|
260
|
-
onPay: handlePay
|
|
261
|
-
});
|
|
262
|
-
case 4:
|
|
263
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_PaymentSuccessStep.default, {
|
|
264
|
-
colors: colors,
|
|
265
|
-
animations: animations,
|
|
266
|
-
onDone: handleDone
|
|
267
|
-
});
|
|
268
|
-
default:
|
|
269
|
-
return null;
|
|
270
|
-
}
|
|
271
|
-
};
|
|
272
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
273
|
-
className: "p-space-16",
|
|
274
|
-
children: renderCurrentStep()
|
|
275
|
-
});
|
|
276
|
-
};
|
|
277
|
-
var _default = exports.default = PaymentGatewayScreen;
|
|
278
|
-
//# sourceMappingURL=PaymentGatewayScreen.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_reactNative","_button","_theme","_typography","_Ionicons","_interopRequireDefault","_useI18n","_useSurfaceHeader","_reactNativeQrcodeSvg","_PaymentSummaryStep","_PaymentMethodStep","_PaymentDetailsStep","_PaymentReviewStep","_PaymentSuccessStep","_constants","_jsxRuntime","e","__esModule","default","getUniqueItemTypes","items","types","map","item","type","Array","from","Set","PaymentGatewayScreen","props","navigate","goBack","onPaymentResult","amount","currency","onClose","paymentItems","description","process","env","NODE_ENV","length","uniqueTypes","Error","join","currentStep","setCurrentStep","useState","paymentMethod","setPaymentMethod","cardDetails","setCardDetails","number","expiry","cvv","isPaying","setIsPaying","fadeAnim","useRef","Animated","Value","current","slideAnim","scaleAnim","progressAnim","bloomTheme","useTheme","colors","t","useI18n","isRecurring","availablePaymentMethods","useMemo","PAYMENT_METHODS","filter","m","key","animateTransition","useCallback","nextStep","timing","toValue","duration","useNativeDriver","Platform","OS","start","setValue","parallel","spring","tension","friction","prevStep","handlePay","setTimeout","handleDone","success","handleClose","error","useSurfaceHeader","title","largeTitle","onBack","undefined","Number","isNaN","jsxs","View","className","children","jsx","name","size","color","H4","Button","variant","onPress","icon","iconPosition","faircoinAddress","width","windowWidth","useWindowDimensions","isMobile","qrSize","Math","min","animations","renderCurrentStep","onNext","selectedMethod","onSelectMethod","onCardDetailsChange","QRCodeComponent","QRCode","onPay","onDone","_default","exports"],"sourceRoot":"../../../../src","sources":["ui/screens/PaymentGatewayScreen.tsx"],"mappings":"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","ignoreList":[]}
|