@oxyhq/services 5.21.6 → 5.22.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/README.md +201 -2
- package/lib/commonjs/assets/assets/fonts/Inter/Inter_18pt-Black.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Inter/Inter_18pt-Bold.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Inter/Inter_18pt-ExtraBold.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Inter/Inter_18pt-Light.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Inter/Inter_18pt-Medium.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Inter/Inter_18pt-Regular.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Inter/Inter_18pt-SemiBold.ttf +0 -0
- package/lib/commonjs/assets/fonts/Inter/Inter_18pt-Black.ttf +0 -0
- package/lib/commonjs/assets/fonts/Inter/Inter_18pt-Bold.ttf +0 -0
- package/lib/commonjs/assets/fonts/Inter/Inter_18pt-ExtraBold.ttf +0 -0
- package/lib/commonjs/assets/fonts/Inter/Inter_18pt-Light.ttf +0 -0
- package/lib/commonjs/assets/fonts/Inter/Inter_18pt-Medium.ttf +0 -0
- package/lib/commonjs/assets/fonts/Inter/Inter_18pt-Regular.ttf +0 -0
- package/lib/commonjs/assets/fonts/Inter/Inter_18pt-SemiBold.ttf +0 -0
- package/lib/commonjs/core/HttpService.js +87 -2
- package/lib/commonjs/core/HttpService.js.map +1 -1
- package/lib/commonjs/core/mixins/OxyServices.assets.js +3 -1
- package/lib/commonjs/core/mixins/OxyServices.assets.js.map +1 -1
- package/lib/commonjs/crypto/keyManager.js +67 -22
- package/lib/commonjs/crypto/keyManager.js.map +1 -1
- package/lib/commonjs/i18n/locales/en-US.json +3 -3
- package/lib/commonjs/i18n/locales/es-ES.json +240 -19
- package/lib/commonjs/index.js +66 -0
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/ui/components/Avatar.js +1 -1
- package/lib/commonjs/ui/components/Avatar.js.map +1 -1
- package/lib/commonjs/ui/components/FollowButton.js +1 -1
- package/lib/commonjs/ui/components/FollowButton.js.map +1 -1
- package/lib/commonjs/ui/components/FontLoader.js +34 -34
- package/lib/commonjs/ui/components/FontLoader.js.map +1 -1
- package/lib/commonjs/ui/components/Header.js +4 -4
- package/lib/commonjs/ui/components/Header.js.map +1 -1
- package/lib/commonjs/ui/components/OxyPayButton.js +1 -1
- package/lib/commonjs/ui/components/OxyPayButton.js.map +1 -1
- package/lib/commonjs/ui/components/OxySignInButton.js +2 -1
- package/lib/commonjs/ui/components/OxySignInButton.js.map +1 -1
- package/lib/commonjs/ui/components/ProfileCard.js +1 -1
- package/lib/commonjs/ui/components/ProfileCard.js.map +1 -1
- package/lib/commonjs/ui/components/SectionTitle.js +1 -1
- package/lib/commonjs/ui/components/SectionTitle.js.map +1 -1
- package/lib/commonjs/ui/components/StepBasedScreen.js +2 -1
- package/lib/commonjs/ui/components/StepBasedScreen.js.map +1 -1
- package/lib/commonjs/ui/components/feedback/feedbackStyles.js +2 -1
- package/lib/commonjs/ui/components/feedback/feedbackStyles.js.map +1 -1
- package/lib/commonjs/ui/components/fileManagement/AnimatedButton.js +57 -0
- package/lib/commonjs/ui/components/fileManagement/AnimatedButton.js.map +1 -0
- package/lib/commonjs/ui/components/fileManagement/styles.js +17 -17
- package/lib/commonjs/ui/components/fileManagement/styles.js.map +1 -1
- package/lib/commonjs/ui/components/payment/paymentStyles.js +7 -7
- package/lib/commonjs/ui/components/payment/paymentStyles.js.map +1 -1
- package/lib/commonjs/ui/hooks/mutations/mutationFactory.js +177 -0
- package/lib/commonjs/ui/hooks/mutations/mutationFactory.js.map +1 -0
- package/lib/commonjs/ui/hooks/mutations/useAccountMutations.js +10 -123
- package/lib/commonjs/ui/hooks/mutations/useAccountMutations.js.map +1 -1
- package/lib/commonjs/ui/hooks/queries/useAccountQueries.js +2 -32
- package/lib/commonjs/ui/hooks/queries/useAccountQueries.js.map +1 -1
- package/lib/commonjs/ui/hooks/queries/useServicesQueries.js +2 -31
- package/lib/commonjs/ui/hooks/queries/useServicesQueries.js.map +1 -1
- package/lib/commonjs/ui/hooks/useFileFiltering.js +76 -0
- package/lib/commonjs/ui/hooks/useFileFiltering.js.map +1 -0
- package/lib/commonjs/ui/navigation/routes.js +2 -0
- package/lib/commonjs/ui/navigation/routes.js.map +1 -1
- package/lib/commonjs/ui/screens/AccountCenterScreen.js +4 -2
- package/lib/commonjs/ui/screens/AccountCenterScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/AccountOverviewScreen.js +13 -5
- package/lib/commonjs/ui/screens/AccountOverviewScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/AccountSettingsScreen.js +273 -1820
- package/lib/commonjs/ui/screens/AccountSettingsScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/AccountSwitcherScreen.js +1 -1
- package/lib/commonjs/ui/screens/AccountSwitcherScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/AccountVerificationScreen.js +3 -1
- package/lib/commonjs/ui/screens/AccountVerificationScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/AppInfoScreen.js +2 -2
- package/lib/commonjs/ui/screens/AppInfoScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/EditProfileFieldScreen.js +640 -0
- package/lib/commonjs/ui/screens/EditProfileFieldScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/FileManagementScreen.js +41 -23
- package/lib/commonjs/ui/screens/FileManagementScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/HistoryViewScreen.js +9 -3
- package/lib/commonjs/ui/screens/HistoryViewScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/LanguageSelectorScreen.js +4 -2
- package/lib/commonjs/ui/screens/LanguageSelectorScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/LegalDocumentsScreen.js +3 -1
- package/lib/commonjs/ui/screens/LegalDocumentsScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/PremiumSubscriptionScreen.js +11 -12
- package/lib/commonjs/ui/screens/PremiumSubscriptionScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/PrivacySettingsScreen.js +12 -4
- package/lib/commonjs/ui/screens/PrivacySettingsScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/SearchSettingsScreen.js +3 -1
- package/lib/commonjs/ui/screens/SearchSettingsScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/SessionManagementScreen.js +15 -5
- package/lib/commonjs/ui/screens/SessionManagementScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/UserLinksScreen.js +3 -1
- package/lib/commonjs/ui/screens/UserLinksScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/WelcomeNewUserScreen.js +2 -1
- package/lib/commonjs/ui/screens/WelcomeNewUserScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/karma/KarmaAboutScreen.js +2 -4
- package/lib/commonjs/ui/screens/karma/KarmaAboutScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/karma/KarmaCenterScreen.js +3 -3
- package/lib/commonjs/ui/screens/karma/KarmaCenterScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/karma/KarmaRewardsScreen.js +3 -3
- package/lib/commonjs/ui/screens/karma/KarmaRewardsScreen.js.map +1 -1
- package/lib/commonjs/ui/styles/authStyles.js +5 -4
- package/lib/commonjs/ui/styles/authStyles.js.map +1 -1
- package/lib/commonjs/ui/styles/fonts.js +27 -27
- package/lib/commonjs/ui/styles/fonts.js.map +1 -1
- package/lib/commonjs/ui/styles/theme.js +3 -3
- package/lib/commonjs/ui/styles/theme.js.map +1 -1
- package/lib/commonjs/ui/utils/authHelpers.js +164 -0
- package/lib/commonjs/ui/utils/authHelpers.js.map +1 -0
- package/lib/commonjs/ui/utils/avatarUtils.js +18 -61
- package/lib/commonjs/ui/utils/avatarUtils.js.map +1 -1
- package/lib/commonjs/web.js +682 -0
- package/lib/commonjs/web.js.map +1 -0
- package/lib/module/assets/assets/fonts/Inter/Inter_18pt-Black.ttf +0 -0
- package/lib/module/assets/assets/fonts/Inter/Inter_18pt-Bold.ttf +0 -0
- package/lib/module/assets/assets/fonts/Inter/Inter_18pt-ExtraBold.ttf +0 -0
- package/lib/module/assets/assets/fonts/Inter/Inter_18pt-Light.ttf +0 -0
- package/lib/module/assets/assets/fonts/Inter/Inter_18pt-Medium.ttf +0 -0
- package/lib/module/assets/assets/fonts/Inter/Inter_18pt-Regular.ttf +0 -0
- package/lib/module/assets/assets/fonts/Inter/Inter_18pt-SemiBold.ttf +0 -0
- package/lib/module/assets/fonts/Inter/Inter_18pt-Black.ttf +0 -0
- package/lib/module/assets/fonts/Inter/Inter_18pt-Bold.ttf +0 -0
- package/lib/module/assets/fonts/Inter/Inter_18pt-ExtraBold.ttf +0 -0
- package/lib/module/assets/fonts/Inter/Inter_18pt-Light.ttf +0 -0
- package/lib/module/assets/fonts/Inter/Inter_18pt-Medium.ttf +0 -0
- package/lib/module/assets/fonts/Inter/Inter_18pt-Regular.ttf +0 -0
- package/lib/module/assets/fonts/Inter/Inter_18pt-SemiBold.ttf +0 -0
- package/lib/module/core/HttpService.js +87 -2
- package/lib/module/core/HttpService.js.map +1 -1
- package/lib/module/core/mixins/OxyServices.assets.js +3 -1
- package/lib/module/core/mixins/OxyServices.assets.js.map +1 -1
- package/lib/module/crypto/keyManager.js +67 -22
- package/lib/module/crypto/keyManager.js.map +1 -1
- package/lib/module/i18n/locales/en-US.json +3 -3
- package/lib/module/i18n/locales/es-ES.json +240 -19
- package/lib/module/index.js +6 -0
- package/lib/module/index.js.map +1 -1
- package/lib/module/ui/components/Avatar.js +1 -1
- package/lib/module/ui/components/Avatar.js.map +1 -1
- package/lib/module/ui/components/FollowButton.js +1 -1
- package/lib/module/ui/components/FollowButton.js.map +1 -1
- package/lib/module/ui/components/FontLoader.js +34 -34
- package/lib/module/ui/components/FontLoader.js.map +1 -1
- package/lib/module/ui/components/Header.js +4 -4
- package/lib/module/ui/components/Header.js.map +1 -1
- package/lib/module/ui/components/OxyPayButton.js +1 -1
- package/lib/module/ui/components/OxyPayButton.js.map +1 -1
- package/lib/module/ui/components/OxySignInButton.js +2 -1
- package/lib/module/ui/components/OxySignInButton.js.map +1 -1
- package/lib/module/ui/components/ProfileCard.js +1 -1
- package/lib/module/ui/components/ProfileCard.js.map +1 -1
- package/lib/module/ui/components/SectionTitle.js +1 -1
- package/lib/module/ui/components/SectionTitle.js.map +1 -1
- package/lib/module/ui/components/StepBasedScreen.js +2 -1
- package/lib/module/ui/components/StepBasedScreen.js.map +1 -1
- package/lib/module/ui/components/feedback/feedbackStyles.js +2 -1
- package/lib/module/ui/components/feedback/feedbackStyles.js.map +1 -1
- package/lib/module/ui/components/fileManagement/AnimatedButton.js +50 -0
- package/lib/module/ui/components/fileManagement/AnimatedButton.js.map +1 -0
- package/lib/module/ui/components/fileManagement/styles.js +17 -17
- package/lib/module/ui/components/fileManagement/styles.js.map +1 -1
- package/lib/module/ui/components/payment/paymentStyles.js +7 -7
- package/lib/module/ui/components/payment/paymentStyles.js.map +1 -1
- package/lib/module/ui/hooks/mutations/mutationFactory.js +173 -0
- package/lib/module/ui/hooks/mutations/mutationFactory.js.map +1 -0
- package/lib/module/ui/hooks/mutations/useAccountMutations.js +10 -122
- package/lib/module/ui/hooks/mutations/useAccountMutations.js.map +1 -1
- package/lib/module/ui/hooks/queries/useAccountQueries.js +2 -32
- package/lib/module/ui/hooks/queries/useAccountQueries.js.map +1 -1
- package/lib/module/ui/hooks/queries/useServicesQueries.js +2 -31
- package/lib/module/ui/hooks/queries/useServicesQueries.js.map +1 -1
- package/lib/module/ui/hooks/useFileFiltering.js +72 -0
- package/lib/module/ui/hooks/useFileFiltering.js.map +1 -0
- package/lib/module/ui/navigation/routes.js +2 -0
- package/lib/module/ui/navigation/routes.js.map +1 -1
- package/lib/module/ui/screens/AccountCenterScreen.js +4 -2
- package/lib/module/ui/screens/AccountCenterScreen.js.map +1 -1
- package/lib/module/ui/screens/AccountOverviewScreen.js +13 -5
- package/lib/module/ui/screens/AccountOverviewScreen.js.map +1 -1
- package/lib/module/ui/screens/AccountSettingsScreen.js +277 -1824
- package/lib/module/ui/screens/AccountSettingsScreen.js.map +1 -1
- package/lib/module/ui/screens/AccountSwitcherScreen.js +1 -1
- package/lib/module/ui/screens/AccountSwitcherScreen.js.map +1 -1
- package/lib/module/ui/screens/AccountVerificationScreen.js +3 -1
- package/lib/module/ui/screens/AccountVerificationScreen.js.map +1 -1
- package/lib/module/ui/screens/AppInfoScreen.js +2 -2
- package/lib/module/ui/screens/AppInfoScreen.js.map +1 -1
- package/lib/module/ui/screens/EditProfileFieldScreen.js +635 -0
- package/lib/module/ui/screens/EditProfileFieldScreen.js.map +1 -0
- package/lib/module/ui/screens/FileManagementScreen.js +41 -23
- package/lib/module/ui/screens/FileManagementScreen.js.map +1 -1
- package/lib/module/ui/screens/HistoryViewScreen.js +9 -3
- package/lib/module/ui/screens/HistoryViewScreen.js.map +1 -1
- package/lib/module/ui/screens/LanguageSelectorScreen.js +4 -2
- package/lib/module/ui/screens/LanguageSelectorScreen.js.map +1 -1
- package/lib/module/ui/screens/LegalDocumentsScreen.js +3 -1
- package/lib/module/ui/screens/LegalDocumentsScreen.js.map +1 -1
- package/lib/module/ui/screens/PremiumSubscriptionScreen.js +11 -12
- package/lib/module/ui/screens/PremiumSubscriptionScreen.js.map +1 -1
- package/lib/module/ui/screens/PrivacySettingsScreen.js +12 -4
- package/lib/module/ui/screens/PrivacySettingsScreen.js.map +1 -1
- package/lib/module/ui/screens/SearchSettingsScreen.js +3 -1
- package/lib/module/ui/screens/SearchSettingsScreen.js.map +1 -1
- package/lib/module/ui/screens/SessionManagementScreen.js +15 -5
- package/lib/module/ui/screens/SessionManagementScreen.js.map +1 -1
- package/lib/module/ui/screens/UserLinksScreen.js +3 -1
- package/lib/module/ui/screens/UserLinksScreen.js.map +1 -1
- package/lib/module/ui/screens/WelcomeNewUserScreen.js +2 -1
- package/lib/module/ui/screens/WelcomeNewUserScreen.js.map +1 -1
- package/lib/module/ui/screens/karma/KarmaAboutScreen.js +2 -4
- package/lib/module/ui/screens/karma/KarmaAboutScreen.js.map +1 -1
- package/lib/module/ui/screens/karma/KarmaCenterScreen.js +3 -3
- package/lib/module/ui/screens/karma/KarmaCenterScreen.js.map +1 -1
- package/lib/module/ui/screens/karma/KarmaRewardsScreen.js +3 -3
- package/lib/module/ui/screens/karma/KarmaRewardsScreen.js.map +1 -1
- package/lib/module/ui/styles/authStyles.js +5 -4
- package/lib/module/ui/styles/authStyles.js.map +1 -1
- package/lib/module/ui/styles/fonts.js +27 -27
- package/lib/module/ui/styles/fonts.js.map +1 -1
- package/lib/module/ui/styles/theme.js +3 -3
- package/lib/module/ui/styles/theme.js.map +1 -1
- package/lib/module/ui/utils/authHelpers.js +154 -0
- package/lib/module/ui/utils/authHelpers.js.map +1 -0
- package/lib/module/ui/utils/avatarUtils.js +18 -61
- package/lib/module/ui/utils/avatarUtils.js.map +1 -1
- package/lib/module/web.js +75 -0
- package/lib/module/web.js.map +1 -0
- package/lib/typescript/commonjs/core/HttpService.d.ts +5 -0
- package/lib/typescript/commonjs/core/HttpService.d.ts.map +1 -1
- package/lib/typescript/commonjs/crypto/keyManager.d.ts.map +1 -1
- package/lib/typescript/commonjs/index.d.ts +6 -0
- package/lib/typescript/commonjs/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/components/OxySignInButton.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/components/StepBasedScreen.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/components/feedback/feedbackStyles.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/components/fileManagement/AnimatedButton.d.ts +16 -0
- package/lib/typescript/commonjs/ui/components/fileManagement/AnimatedButton.d.ts.map +1 -0
- package/lib/typescript/commonjs/ui/hooks/mutations/mutationFactory.d.ts +76 -0
- package/lib/typescript/commonjs/ui/hooks/mutations/mutationFactory.d.ts.map +1 -0
- package/lib/typescript/commonjs/ui/hooks/mutations/useAccountMutations.d.ts +29 -4
- package/lib/typescript/commonjs/ui/hooks/mutations/useAccountMutations.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/hooks/queries/useAccountQueries.d.ts +1 -1
- package/lib/typescript/commonjs/ui/hooks/queries/useAccountQueries.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/hooks/queries/useServicesQueries.d.ts +1 -1
- package/lib/typescript/commonjs/ui/hooks/queries/useServicesQueries.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/hooks/useFileFiltering.d.ts +29 -0
- package/lib/typescript/commonjs/ui/hooks/useFileFiltering.d.ts.map +1 -0
- package/lib/typescript/commonjs/ui/navigation/routes.d.ts +1 -1
- package/lib/typescript/commonjs/ui/navigation/routes.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/screens/AccountCenterScreen.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/screens/AccountOverviewScreen.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/screens/AccountSettingsScreen.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/screens/AccountVerificationScreen.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/screens/EditProfileFieldScreen.d.ts +13 -0
- package/lib/typescript/commonjs/ui/screens/EditProfileFieldScreen.d.ts.map +1 -0
- package/lib/typescript/commonjs/ui/screens/FileManagementScreen.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/screens/HistoryViewScreen.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/screens/LanguageSelectorScreen.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/screens/LegalDocumentsScreen.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/screens/PremiumSubscriptionScreen.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/screens/PrivacySettingsScreen.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/screens/SearchSettingsScreen.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/screens/SessionManagementScreen.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/screens/UserLinksScreen.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/screens/WelcomeNewUserScreen.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/screens/karma/KarmaAboutScreen.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/styles/fonts.d.ts +7 -7
- package/lib/typescript/commonjs/ui/styles/theme.d.ts.map +1 -1
- package/lib/typescript/commonjs/ui/utils/authHelpers.d.ts +99 -0
- package/lib/typescript/commonjs/ui/utils/authHelpers.d.ts.map +1 -0
- package/lib/typescript/commonjs/ui/utils/avatarUtils.d.ts.map +1 -1
- package/lib/typescript/commonjs/web.d.ts +54 -0
- package/lib/typescript/commonjs/web.d.ts.map +1 -0
- package/lib/typescript/module/core/HttpService.d.ts +5 -0
- package/lib/typescript/module/core/HttpService.d.ts.map +1 -1
- package/lib/typescript/module/crypto/keyManager.d.ts.map +1 -1
- package/lib/typescript/module/index.d.ts +6 -0
- package/lib/typescript/module/index.d.ts.map +1 -1
- package/lib/typescript/module/ui/components/OxySignInButton.d.ts.map +1 -1
- package/lib/typescript/module/ui/components/StepBasedScreen.d.ts.map +1 -1
- package/lib/typescript/module/ui/components/feedback/feedbackStyles.d.ts.map +1 -1
- package/lib/typescript/module/ui/components/fileManagement/AnimatedButton.d.ts +16 -0
- package/lib/typescript/module/ui/components/fileManagement/AnimatedButton.d.ts.map +1 -0
- package/lib/typescript/module/ui/hooks/mutations/mutationFactory.d.ts +76 -0
- package/lib/typescript/module/ui/hooks/mutations/mutationFactory.d.ts.map +1 -0
- package/lib/typescript/module/ui/hooks/mutations/useAccountMutations.d.ts +29 -4
- package/lib/typescript/module/ui/hooks/mutations/useAccountMutations.d.ts.map +1 -1
- package/lib/typescript/module/ui/hooks/queries/useAccountQueries.d.ts +1 -1
- package/lib/typescript/module/ui/hooks/queries/useAccountQueries.d.ts.map +1 -1
- package/lib/typescript/module/ui/hooks/queries/useServicesQueries.d.ts +1 -1
- package/lib/typescript/module/ui/hooks/queries/useServicesQueries.d.ts.map +1 -1
- package/lib/typescript/module/ui/hooks/useFileFiltering.d.ts +29 -0
- package/lib/typescript/module/ui/hooks/useFileFiltering.d.ts.map +1 -0
- package/lib/typescript/module/ui/navigation/routes.d.ts +1 -1
- package/lib/typescript/module/ui/navigation/routes.d.ts.map +1 -1
- package/lib/typescript/module/ui/screens/AccountCenterScreen.d.ts.map +1 -1
- package/lib/typescript/module/ui/screens/AccountOverviewScreen.d.ts.map +1 -1
- package/lib/typescript/module/ui/screens/AccountSettingsScreen.d.ts.map +1 -1
- package/lib/typescript/module/ui/screens/AccountVerificationScreen.d.ts.map +1 -1
- package/lib/typescript/module/ui/screens/EditProfileFieldScreen.d.ts +13 -0
- package/lib/typescript/module/ui/screens/EditProfileFieldScreen.d.ts.map +1 -0
- package/lib/typescript/module/ui/screens/FileManagementScreen.d.ts.map +1 -1
- package/lib/typescript/module/ui/screens/HistoryViewScreen.d.ts.map +1 -1
- package/lib/typescript/module/ui/screens/LanguageSelectorScreen.d.ts.map +1 -1
- package/lib/typescript/module/ui/screens/LegalDocumentsScreen.d.ts.map +1 -1
- package/lib/typescript/module/ui/screens/PremiumSubscriptionScreen.d.ts.map +1 -1
- package/lib/typescript/module/ui/screens/PrivacySettingsScreen.d.ts.map +1 -1
- package/lib/typescript/module/ui/screens/SearchSettingsScreen.d.ts.map +1 -1
- package/lib/typescript/module/ui/screens/SessionManagementScreen.d.ts.map +1 -1
- package/lib/typescript/module/ui/screens/UserLinksScreen.d.ts.map +1 -1
- package/lib/typescript/module/ui/screens/WelcomeNewUserScreen.d.ts.map +1 -1
- package/lib/typescript/module/ui/screens/karma/KarmaAboutScreen.d.ts.map +1 -1
- package/lib/typescript/module/ui/styles/fonts.d.ts +7 -7
- package/lib/typescript/module/ui/styles/theme.d.ts.map +1 -1
- package/lib/typescript/module/ui/utils/authHelpers.d.ts +99 -0
- package/lib/typescript/module/ui/utils/authHelpers.d.ts.map +1 -0
- package/lib/typescript/module/ui/utils/avatarUtils.d.ts.map +1 -1
- package/lib/typescript/module/web.d.ts +54 -0
- package/lib/typescript/module/web.d.ts.map +1 -0
- package/package.json +27 -41
- package/src/assets/fonts/Inter/Inter_18pt-Black.ttf +0 -0
- package/src/assets/fonts/Inter/Inter_18pt-Bold.ttf +0 -0
- package/src/assets/fonts/Inter/Inter_18pt-ExtraBold.ttf +0 -0
- package/src/assets/fonts/Inter/Inter_18pt-Light.ttf +0 -0
- package/src/assets/fonts/Inter/Inter_18pt-Medium.ttf +0 -0
- package/src/assets/fonts/Inter/Inter_18pt-Regular.ttf +0 -0
- package/src/assets/fonts/Inter/Inter_18pt-SemiBold.ttf +0 -0
- package/src/core/HttpService.ts +91 -0
- package/src/core/mixins/OxyServices.assets.ts +1 -1
- package/src/crypto/keyManager.ts +23 -22
- package/src/i18n/locales/en-US.json +3 -3
- package/src/i18n/locales/es-ES.json +240 -19
- package/src/index.ts +25 -0
- package/src/ui/components/Avatar.tsx +1 -1
- package/src/ui/components/FollowButton.tsx +1 -1
- package/src/ui/components/FontLoader.tsx +34 -34
- package/src/ui/components/Header.tsx +4 -4
- package/src/ui/components/OxyPayButton.tsx +1 -1
- package/src/ui/components/OxySignInButton.tsx +2 -1
- package/src/ui/components/ProfileCard.tsx +1 -1
- package/src/ui/components/SectionTitle.tsx +1 -1
- package/src/ui/components/StepBasedScreen.tsx +2 -1
- package/src/ui/components/feedback/feedbackStyles.ts +2 -1
- package/src/ui/components/fileManagement/AnimatedButton.tsx +56 -0
- package/src/ui/components/fileManagement/styles.ts +17 -17
- package/src/ui/components/payment/paymentStyles.ts +7 -7
- package/src/ui/hooks/mutations/mutationFactory.ts +215 -0
- package/src/ui/hooks/mutations/useAccountMutations.ts +48 -136
- package/src/ui/hooks/queries/useAccountQueries.ts +6 -33
- package/src/ui/hooks/queries/useServicesQueries.ts +6 -32
- package/src/ui/hooks/useFileFiltering.ts +115 -0
- package/src/ui/navigation/routes.ts +3 -0
- package/src/ui/screens/AccountCenterScreen.tsx +4 -2
- package/src/ui/screens/AccountOverviewScreen.tsx +13 -5
- package/src/ui/screens/AccountSettingsScreen.tsx +35 -1511
- package/src/ui/screens/AccountSwitcherScreen.tsx +1 -1
- package/src/ui/screens/AccountVerificationScreen.tsx +3 -1
- package/src/ui/screens/AppInfoScreen.tsx +2 -2
- package/src/ui/screens/EditProfileFieldScreen.tsx +685 -0
- package/src/ui/screens/FileManagementScreen.tsx +35 -17
- package/src/ui/screens/HistoryViewScreen.tsx +9 -3
- package/src/ui/screens/LanguageSelectorScreen.tsx +4 -2
- package/src/ui/screens/LegalDocumentsScreen.tsx +3 -1
- package/src/ui/screens/PremiumSubscriptionScreen.tsx +11 -13
- package/src/ui/screens/PrivacySettingsScreen.tsx +12 -4
- package/src/ui/screens/SearchSettingsScreen.tsx +3 -1
- package/src/ui/screens/SessionManagementScreen.tsx +15 -5
- package/src/ui/screens/UserLinksScreen.tsx +3 -1
- package/src/ui/screens/WelcomeNewUserScreen.tsx +2 -1
- package/src/ui/screens/karma/KarmaAboutScreen.tsx +6 -8
- package/src/ui/screens/karma/KarmaCenterScreen.tsx +3 -3
- package/src/ui/screens/karma/KarmaRewardsScreen.tsx +3 -3
- package/src/ui/styles/authStyles.ts +4 -4
- package/src/ui/styles/fonts.ts +26 -26
- package/src/ui/styles/theme.ts +3 -5
- package/src/ui/utils/authHelpers.ts +183 -0
- package/src/ui/utils/avatarUtils.ts +25 -65
- package/src/web.ts +230 -0
- package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-Black.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-Bold.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-ExtraBold.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-Light.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-Medium.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-Regular.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-SemiBold.ttf +0 -0
- package/lib/commonjs/assets/fonts/Phudu/Phudu-Black.ttf +0 -0
- package/lib/commonjs/assets/fonts/Phudu/Phudu-Bold.ttf +0 -0
- package/lib/commonjs/assets/fonts/Phudu/Phudu-ExtraBold.ttf +0 -0
- package/lib/commonjs/assets/fonts/Phudu/Phudu-Light.ttf +0 -0
- package/lib/commonjs/assets/fonts/Phudu/Phudu-Medium.ttf +0 -0
- package/lib/commonjs/assets/fonts/Phudu/Phudu-Regular.ttf +0 -0
- package/lib/commonjs/assets/fonts/Phudu/Phudu-SemiBold.ttf +0 -0
- package/lib/commonjs/ui/components/profile/EditBioModal.js +0 -181
- package/lib/commonjs/ui/components/profile/EditBioModal.js.map +0 -1
- package/lib/commonjs/ui/components/profile/EditDisplayNameModal.js +0 -204
- package/lib/commonjs/ui/components/profile/EditDisplayNameModal.js.map +0 -1
- package/lib/commonjs/ui/components/profile/EditEmailModal.js +0 -184
- package/lib/commonjs/ui/components/profile/EditEmailModal.js.map +0 -1
- package/lib/commonjs/ui/components/profile/EditFieldModal.js +0 -412
- package/lib/commonjs/ui/components/profile/EditFieldModal.js.map +0 -1
- package/lib/commonjs/ui/components/profile/EditLinksModal.js +0 -315
- package/lib/commonjs/ui/components/profile/EditLinksModal.js.map +0 -1
- package/lib/commonjs/ui/components/profile/EditLocationModal.js +0 -273
- package/lib/commonjs/ui/components/profile/EditLocationModal.js.map +0 -1
- package/lib/commonjs/ui/components/profile/EditUsernameModal.js +0 -180
- package/lib/commonjs/ui/components/profile/EditUsernameModal.js.map +0 -1
- package/lib/module/assets/assets/fonts/Phudu/Phudu-Black.ttf +0 -0
- package/lib/module/assets/assets/fonts/Phudu/Phudu-Bold.ttf +0 -0
- package/lib/module/assets/assets/fonts/Phudu/Phudu-ExtraBold.ttf +0 -0
- package/lib/module/assets/assets/fonts/Phudu/Phudu-Light.ttf +0 -0
- package/lib/module/assets/assets/fonts/Phudu/Phudu-Medium.ttf +0 -0
- package/lib/module/assets/assets/fonts/Phudu/Phudu-Regular.ttf +0 -0
- package/lib/module/assets/assets/fonts/Phudu/Phudu-SemiBold.ttf +0 -0
- package/lib/module/assets/fonts/Phudu/Phudu-Black.ttf +0 -0
- package/lib/module/assets/fonts/Phudu/Phudu-Bold.ttf +0 -0
- package/lib/module/assets/fonts/Phudu/Phudu-ExtraBold.ttf +0 -0
- package/lib/module/assets/fonts/Phudu/Phudu-Light.ttf +0 -0
- package/lib/module/assets/fonts/Phudu/Phudu-Medium.ttf +0 -0
- package/lib/module/assets/fonts/Phudu/Phudu-Regular.ttf +0 -0
- package/lib/module/assets/fonts/Phudu/Phudu-SemiBold.ttf +0 -0
- package/lib/module/ui/components/profile/EditBioModal.js +0 -175
- package/lib/module/ui/components/profile/EditBioModal.js.map +0 -1
- package/lib/module/ui/components/profile/EditDisplayNameModal.js +0 -198
- package/lib/module/ui/components/profile/EditDisplayNameModal.js.map +0 -1
- package/lib/module/ui/components/profile/EditEmailModal.js +0 -178
- package/lib/module/ui/components/profile/EditEmailModal.js.map +0 -1
- package/lib/module/ui/components/profile/EditFieldModal.js +0 -406
- package/lib/module/ui/components/profile/EditFieldModal.js.map +0 -1
- package/lib/module/ui/components/profile/EditLinksModal.js +0 -309
- package/lib/module/ui/components/profile/EditLinksModal.js.map +0 -1
- package/lib/module/ui/components/profile/EditLocationModal.js +0 -267
- package/lib/module/ui/components/profile/EditLocationModal.js.map +0 -1
- package/lib/module/ui/components/profile/EditUsernameModal.js +0 -174
- package/lib/module/ui/components/profile/EditUsernameModal.js.map +0 -1
- package/lib/typescript/commonjs/ui/components/profile/EditBioModal.d.ts +0 -11
- package/lib/typescript/commonjs/ui/components/profile/EditBioModal.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/profile/EditDisplayNameModal.d.ts +0 -12
- package/lib/typescript/commonjs/ui/components/profile/EditDisplayNameModal.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/profile/EditEmailModal.d.ts +0 -11
- package/lib/typescript/commonjs/ui/components/profile/EditEmailModal.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/profile/EditFieldModal.d.ts +0 -110
- package/lib/typescript/commonjs/ui/components/profile/EditFieldModal.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/profile/EditLinksModal.d.ts +0 -18
- package/lib/typescript/commonjs/ui/components/profile/EditLinksModal.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/profile/EditLocationModal.d.ts +0 -20
- package/lib/typescript/commonjs/ui/components/profile/EditLocationModal.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/profile/EditUsernameModal.d.ts +0 -11
- package/lib/typescript/commonjs/ui/components/profile/EditUsernameModal.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/profile/EditBioModal.d.ts +0 -11
- package/lib/typescript/module/ui/components/profile/EditBioModal.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/profile/EditDisplayNameModal.d.ts +0 -12
- package/lib/typescript/module/ui/components/profile/EditDisplayNameModal.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/profile/EditEmailModal.d.ts +0 -11
- package/lib/typescript/module/ui/components/profile/EditEmailModal.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/profile/EditFieldModal.d.ts +0 -110
- package/lib/typescript/module/ui/components/profile/EditFieldModal.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/profile/EditLinksModal.d.ts +0 -18
- package/lib/typescript/module/ui/components/profile/EditLinksModal.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/profile/EditLocationModal.d.ts +0 -20
- package/lib/typescript/module/ui/components/profile/EditLocationModal.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/profile/EditUsernameModal.d.ts +0 -11
- package/lib/typescript/module/ui/components/profile/EditUsernameModal.d.ts.map +0 -1
- package/src/assets/fonts/Phudu/Phudu-Black.ttf +0 -0
- package/src/assets/fonts/Phudu/Phudu-Bold.ttf +0 -0
- package/src/assets/fonts/Phudu/Phudu-ExtraBold.ttf +0 -0
- package/src/assets/fonts/Phudu/Phudu-Light.ttf +0 -0
- package/src/assets/fonts/Phudu/Phudu-Medium.ttf +0 -0
- package/src/assets/fonts/Phudu/Phudu-Regular.ttf +0 -0
- package/src/assets/fonts/Phudu/Phudu-SemiBold.ttf +0 -0
- package/src/ui/components/profile/EditBioModal.tsx +0 -184
- package/src/ui/components/profile/EditDisplayNameModal.tsx +0 -203
- package/src/ui/components/profile/EditEmailModal.tsx +0 -188
- package/src/ui/components/profile/EditFieldModal.tsx +0 -465
- package/src/ui/components/profile/EditLinksModal.tsx +0 -316
- package/src/ui/components/profile/EditLocationModal.tsx +0 -278
- package/src/ui/components/profile/EditUsernameModal.tsx +0 -183
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"viewAllAccounts": "Ver {{count}} más",
|
|
46
46
|
"status": {
|
|
47
47
|
"accountSwitched": "Ahora usando {{name}}"
|
|
48
|
-
}
|
|
48
|
+
}
|
|
49
49
|
},
|
|
50
50
|
"signup": {
|
|
51
51
|
"welcome": {
|
|
@@ -91,7 +91,15 @@
|
|
|
91
91
|
},
|
|
92
92
|
"notSet": "Sin definir",
|
|
93
93
|
"securityTip": "Para mayor seguridad, habilita la autenticación biométrica en Configuración de la cuenta después de crear tu cuenta.",
|
|
94
|
-
"legalReminder": "Al crear una cuenta, aceptas nuestros Términos de servicio y Política de privacidad."
|
|
94
|
+
"legalReminder": "Al crear una cuenta, aceptas nuestros Términos de servicio y Política de privacidad.",
|
|
95
|
+
"sections": {
|
|
96
|
+
"account": "Información de la cuenta",
|
|
97
|
+
"next": "Próximos pasos"
|
|
98
|
+
},
|
|
99
|
+
"next": {
|
|
100
|
+
"securityTitle": "Mantén tu cuenta segura",
|
|
101
|
+
"legalTitle": "Todo listo"
|
|
102
|
+
}
|
|
95
103
|
}
|
|
96
104
|
},
|
|
97
105
|
"profile": {
|
|
@@ -116,7 +124,8 @@
|
|
|
116
124
|
"username": {
|
|
117
125
|
"label": "Usuario",
|
|
118
126
|
"placeholder": "Introduce tu usuario",
|
|
119
|
-
"errorRequired": "Por favor, introduce tu usuario."
|
|
127
|
+
"errorRequired": "Por favor, introduce tu usuario.",
|
|
128
|
+
"helper": "Introduce tu usuario o correo electrónico"
|
|
120
129
|
},
|
|
121
130
|
"verify": {
|
|
122
131
|
"title": "Verificar código",
|
|
@@ -180,14 +189,12 @@
|
|
|
180
189
|
},
|
|
181
190
|
"privacySettings": {
|
|
182
191
|
"title": "Ajustes de privacidad",
|
|
183
|
-
"subtitle": "Controla quién puede ver tu perfil"
|
|
184
|
-
"coming": "¡Los ajustes de privacidad estarán disponibles pronto!"
|
|
192
|
+
"subtitle": "Controla quién puede ver tu perfil"
|
|
185
193
|
},
|
|
186
194
|
"verifyAccount": {
|
|
187
195
|
"title": "Verificar cuenta",
|
|
188
|
-
"subtitle": "Obtén una insignia verificada"
|
|
189
|
-
|
|
190
|
-
},
|
|
196
|
+
"subtitle": "Obtén una insignia verificada"
|
|
197
|
+
}
|
|
191
198
|
},
|
|
192
199
|
"confirms": {
|
|
193
200
|
"removeAvatar": "¿Eliminar tu foto de perfil?"
|
|
@@ -201,7 +208,7 @@
|
|
|
201
208
|
"avatarSelected": "Avatar seleccionado",
|
|
202
209
|
"avatarUpdated": "Avatar actualizado",
|
|
203
210
|
"updateAvatarFailed": "Error al actualizar el avatar",
|
|
204
|
-
"noActiveSession": "No hay sesión activa"
|
|
211
|
+
"noActiveSession": "No hay sesión activa"
|
|
205
212
|
}
|
|
206
213
|
},
|
|
207
214
|
"common": {
|
|
@@ -289,23 +296,27 @@
|
|
|
289
296
|
"subtitle": "Métodos de pago y facturas",
|
|
290
297
|
"coming": "¡La gestión de facturación estará disponible pronto!"
|
|
291
298
|
},
|
|
292
|
-
"accountSwitcher": {
|
|
293
|
-
"titleShow": "Mostrar conmutador de cuentas",
|
|
294
|
-
"titleHide": "Ocultar conmutador de cuentas",
|
|
295
|
-
"subtitleHide": "Ocultar el conmutador de cuentas",
|
|
296
|
-
"subtitleSwitchBetween": "Cambiar entre {{count}} cuentas",
|
|
297
|
-
"subtitleLoading": "Cargando cuentas adicionales...",
|
|
298
|
-
"subtitleManageMultiple": "Gestionar varias cuentas"
|
|
299
|
-
},
|
|
300
299
|
"downloadData": {
|
|
301
300
|
"title": "Descargar mis datos",
|
|
302
301
|
"subtitle": "Exporta la información de tu cuenta",
|
|
303
|
-
"
|
|
302
|
+
"confirmTitle": "Descargar datos de la cuenta",
|
|
303
|
+
"confirmMessage": "Elige el formato para exportar los datos de tu cuenta:",
|
|
304
|
+
"downloading": "Preparando descarga...",
|
|
305
|
+
"success": "Datos descargados correctamente",
|
|
306
|
+
"error": "Error al descargar los datos"
|
|
304
307
|
},
|
|
305
308
|
"deleteAccount": {
|
|
306
309
|
"title": "Eliminar cuenta",
|
|
307
310
|
"subtitle": "Elimina tu cuenta permanentemente",
|
|
308
|
-
"
|
|
311
|
+
"confirmTitle": "Eliminar cuenta",
|
|
312
|
+
"confirmMessage": "Esta acción no se puede deshacer. Esto eliminará permanentemente tu cuenta y todos los datos asociados.\n\n¿Seguro que quieres eliminar tu cuenta?",
|
|
313
|
+
"finalConfirm": "Esta es tu advertencia final. Tu cuenta será eliminada permanentemente y no se podrá recuperar. Escribe \"{{username}}\" para confirmar.",
|
|
314
|
+
"confirm": "Eliminar para siempre",
|
|
315
|
+
"passwordRequired": "Se requiere confirmación de contraseña. Por favor, usa un modal con entrada de contraseña para completar la eliminación de la cuenta.",
|
|
316
|
+
"missingFields": "Se requiere contraseña y confirmación",
|
|
317
|
+
"confirmMismatch": "El texto de confirmación no coincide con el usuario",
|
|
318
|
+
"success": "Cuenta eliminada correctamente",
|
|
319
|
+
"error": "Error al eliminar la cuenta"
|
|
309
320
|
},
|
|
310
321
|
"preferences": {
|
|
311
322
|
"title": "Preferencias de la cuenta",
|
|
@@ -329,6 +340,30 @@
|
|
|
329
340
|
"signOut": {
|
|
330
341
|
"title": "Cerrar sesión",
|
|
331
342
|
"subtitle": "Cierra sesión en tu cuenta actual"
|
|
343
|
+
},
|
|
344
|
+
"history": {
|
|
345
|
+
"title": "Historial",
|
|
346
|
+
"subtitle": "Ver y gestionar tu historial de búsqueda"
|
|
347
|
+
},
|
|
348
|
+
"saves": {
|
|
349
|
+
"title": "Guardados y colecciones",
|
|
350
|
+
"subtitle": "Ver tus elementos guardados y colecciones"
|
|
351
|
+
},
|
|
352
|
+
"searchSettings": {
|
|
353
|
+
"title": "Configuración de búsqueda",
|
|
354
|
+
"subtitle": "SafeSearch y personalización"
|
|
355
|
+
},
|
|
356
|
+
"language": {
|
|
357
|
+
"title": "Idioma",
|
|
358
|
+
"subtitle": "Elige tu idioma preferido"
|
|
359
|
+
},
|
|
360
|
+
"privacyPolicy": {
|
|
361
|
+
"title": "Política de privacidad",
|
|
362
|
+
"subtitle": "Cómo manejamos tus datos"
|
|
363
|
+
},
|
|
364
|
+
"termsOfService": {
|
|
365
|
+
"title": "Términos de servicio",
|
|
366
|
+
"subtitle": "Términos y condiciones de uso"
|
|
332
367
|
}
|
|
333
368
|
},
|
|
334
369
|
"manageComing": "¡La gestión de tu cuenta Oxy estará disponible pronto!",
|
|
@@ -719,5 +754,191 @@
|
|
|
719
754
|
"enter": "Entrar",
|
|
720
755
|
"continue": "Continuar"
|
|
721
756
|
}
|
|
757
|
+
},
|
|
758
|
+
"history": {
|
|
759
|
+
"title": "Historial",
|
|
760
|
+
"actions": "Acciones",
|
|
761
|
+
"recent": "Historial reciente",
|
|
762
|
+
"loading": "Cargando historial...",
|
|
763
|
+
"empty": "Aún no hay historial",
|
|
764
|
+
"justNow": "Justo ahora",
|
|
765
|
+
"minutesAgo": "minutos atrás",
|
|
766
|
+
"hoursAgo": "horas atrás",
|
|
767
|
+
"daysAgo": "días atrás",
|
|
768
|
+
"deleteLast15Minutes": {
|
|
769
|
+
"title": "Eliminar últimos 15 minutos",
|
|
770
|
+
"subtitle": "Eliminar entradas recientes del historial",
|
|
771
|
+
"confirm": "¿Eliminar los últimos 15 minutos del historial?",
|
|
772
|
+
"success": "Últimos 15 minutos eliminados",
|
|
773
|
+
"error": "Error al eliminar el historial"
|
|
774
|
+
},
|
|
775
|
+
"clearAll": {
|
|
776
|
+
"title": "Borrar todo el historial",
|
|
777
|
+
"subtitle": "Eliminar todas las entradas del historial",
|
|
778
|
+
"confirm": "¿Borrar todo el historial? Esto no se puede deshacer.",
|
|
779
|
+
"success": "Historial borrado",
|
|
780
|
+
"error": "Error al borrar el historial"
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
"saves": {
|
|
784
|
+
"title": "Guardados y colecciones",
|
|
785
|
+
"tabs": {
|
|
786
|
+
"saves": "Guardados",
|
|
787
|
+
"collections": "Colecciones"
|
|
788
|
+
},
|
|
789
|
+
"loading": "Cargando...",
|
|
790
|
+
"empty": "Aún no hay elementos guardados",
|
|
791
|
+
"noCollections": "Aún no hay colecciones",
|
|
792
|
+
"savedItems": "Elementos guardados",
|
|
793
|
+
"collections": "Colecciones",
|
|
794
|
+
"loadError": "Error al cargar elementos guardados"
|
|
795
|
+
},
|
|
796
|
+
"searchSettings": {
|
|
797
|
+
"title": "Configuración de búsqueda",
|
|
798
|
+
"safeSearch": {
|
|
799
|
+
"title": "SafeSearch",
|
|
800
|
+
"label": "Activar SafeSearch",
|
|
801
|
+
"description": "Filtrar contenido explícito de los resultados de búsqueda",
|
|
802
|
+
"updated": "Configuración de SafeSearch actualizada",
|
|
803
|
+
"error": "Error al actualizar SafeSearch"
|
|
804
|
+
},
|
|
805
|
+
"personalization": {
|
|
806
|
+
"title": "Personalización de búsqueda",
|
|
807
|
+
"label": "Búsqueda personalizada",
|
|
808
|
+
"description": "Usa tu actividad para mejorar los resultados de búsqueda",
|
|
809
|
+
"updated": "Personalización de búsqueda actualizada",
|
|
810
|
+
"error": "Error al actualizar la personalización"
|
|
811
|
+
}
|
|
812
|
+
},
|
|
813
|
+
"privacySettings": {
|
|
814
|
+
"title": "Configuración de privacidad",
|
|
815
|
+
"loadError": "Error al cargar la configuración de privacidad",
|
|
816
|
+
"updated": "Configuración de privacidad actualizada",
|
|
817
|
+
"updateError": "Error al actualizar la configuración de privacidad",
|
|
818
|
+
"sections": {
|
|
819
|
+
"account": "PRIVACIDAD DE LA CUENTA",
|
|
820
|
+
"interactions": "INTERACCIONES",
|
|
821
|
+
"activity": "ACTIVIDAD Y DATOS",
|
|
822
|
+
"content": "CONTENIDO Y SEGURIDAD"
|
|
823
|
+
},
|
|
824
|
+
"isPrivateAccount": "Cuenta privada",
|
|
825
|
+
"isPrivateAccountDesc": "Solo los seguidores aprobados pueden ver tus publicaciones",
|
|
826
|
+
"profileVisibility": "Visibilidad del perfil",
|
|
827
|
+
"profileVisibilityDesc": "Controla quién puede ver tu perfil",
|
|
828
|
+
"hideOnlineStatus": "Ocultar estado en línea",
|
|
829
|
+
"hideOnlineStatusDesc": "No mostrar cuando estás en línea",
|
|
830
|
+
"hideLastSeen": "Ocultar última vez visto",
|
|
831
|
+
"hideLastSeenDesc": "No mostrar cuándo estuviste activo por última vez",
|
|
832
|
+
"allowTagging": "Permitir etiquetado",
|
|
833
|
+
"allowTaggingDesc": "Permite que otros te etiqueten en publicaciones",
|
|
834
|
+
"allowMentions": "Permitir menciones",
|
|
835
|
+
"allowMentionsDesc": "Permite que otros te mencionen",
|
|
836
|
+
"allowDirectMessages": "Permitir mensajes directos",
|
|
837
|
+
"allowDirectMessagesDesc": "Permite que otros te envíen mensajes directos",
|
|
838
|
+
"hideReadReceipts": "Ocultar confirmaciones de lectura",
|
|
839
|
+
"hideReadReceiptsDesc": "No mostrar confirmaciones de lectura en mensajes",
|
|
840
|
+
"showActivity": "Mostrar estado de actividad",
|
|
841
|
+
"showActivityDesc": "Mostrar tu actividad en tu perfil",
|
|
842
|
+
"dataSharing": "Compartir datos",
|
|
843
|
+
"dataSharingDesc": "Permitir compartir datos para personalización",
|
|
844
|
+
"locationSharing": "Compartir ubicación",
|
|
845
|
+
"locationSharingDesc": "Compartir tu ubicación",
|
|
846
|
+
"analyticsSharing": "Compartir análisis",
|
|
847
|
+
"analyticsSharingDesc": "Permitir recopilación de datos de análisis",
|
|
848
|
+
"sensitiveContent": "Mostrar contenido sensible",
|
|
849
|
+
"sensitiveContentDesc": "Permitir contenido sensible o explícito",
|
|
850
|
+
"autoFilter": "Filtro automático",
|
|
851
|
+
"autoFilterDesc": "Filtrar automáticamente contenido inapropiado",
|
|
852
|
+
"muteKeywords": "Silenciar palabras clave",
|
|
853
|
+
"muteKeywordsDesc": "Ocultar publicaciones que contengan palabras clave silenciadas",
|
|
854
|
+
"blockScreenshots": "Bloquear capturas de pantalla",
|
|
855
|
+
"blockScreenshotsDesc": "Evitar capturas de pantalla de tu contenido"
|
|
856
|
+
},
|
|
857
|
+
"accountVerification": {
|
|
858
|
+
"title": "Verificación de cuenta",
|
|
859
|
+
"description": "Solicita una insignia verificada para tu cuenta. Las cuentas verificadas ayudan a establecer autenticidad y credibilidad.",
|
|
860
|
+
"sections": {
|
|
861
|
+
"request": "SOLICITUD DE VERIFICACIÓN"
|
|
862
|
+
},
|
|
863
|
+
"reasonLabel": "Motivo de la verificación *",
|
|
864
|
+
"reasonPlaceholder": "Explica por qué necesitas una insignia verificada (p. ej., figura pública, marca, organización)",
|
|
865
|
+
"reasonRequired": "Por favor, proporciona un motivo para la verificación",
|
|
866
|
+
"evidenceLabel": "Evidencia (Opcional)",
|
|
867
|
+
"evidencePlaceholder": "Proporciona documentación de respaldo o enlaces (p. ej., sitio web oficial, perfiles de redes sociales)",
|
|
868
|
+
"submit": "Enviar solicitud",
|
|
869
|
+
"submitError": "Error al enviar la solicitud de verificación",
|
|
870
|
+
"successTitle": "Solicitud enviada",
|
|
871
|
+
"successMessage": "Tu solicitud de verificación ha sido enviada. ID de solicitud: {{requestId}}",
|
|
872
|
+
"ok": "OK",
|
|
873
|
+
"error": "Servicio no disponible",
|
|
874
|
+
"note": "Nota: Las solicitudes de verificación se revisan manualmente y pueden tardar varios días. Te notificaremos cuando tu solicitud haya sido revisada."
|
|
875
|
+
},
|
|
876
|
+
"help": {
|
|
877
|
+
"title": "Ayuda y soporte",
|
|
878
|
+
"options": "Obtener ayuda",
|
|
879
|
+
"resources": "Recursos",
|
|
880
|
+
"contactError": "Error al abrir el cliente de correo",
|
|
881
|
+
"reportError": "Error al abrir el cliente de correo",
|
|
882
|
+
"linkError": "Error al abrir el enlace",
|
|
883
|
+
"faqComing": "FAQ próximamente",
|
|
884
|
+
"faq": {
|
|
885
|
+
"title": "Preguntas frecuentes",
|
|
886
|
+
"subtitle": "Encuentra respuestas a preguntas comunes"
|
|
887
|
+
},
|
|
888
|
+
"contact": {
|
|
889
|
+
"title": "Contactar con soporte",
|
|
890
|
+
"subtitle": "Obtén ayuda de nuestro equipo de soporte"
|
|
891
|
+
},
|
|
892
|
+
"reportBug": {
|
|
893
|
+
"title": "Reportar un error",
|
|
894
|
+
"subtitle": "Ayúdanos a mejorar reportando problemas"
|
|
895
|
+
},
|
|
896
|
+
"documentation": {
|
|
897
|
+
"title": "Documentación",
|
|
898
|
+
"subtitle": "Guías de usuario y tutoriales"
|
|
899
|
+
},
|
|
900
|
+
"community": {
|
|
901
|
+
"title": "Comunidad",
|
|
902
|
+
"subtitle": "Únete a nuestra comunidad"
|
|
903
|
+
},
|
|
904
|
+
"developersPortal": {
|
|
905
|
+
"title": "Portal de desarrolladores",
|
|
906
|
+
"subtitle": "Documentación de API y recursos para desarrolladores"
|
|
907
|
+
}
|
|
908
|
+
},
|
|
909
|
+
"legal": {
|
|
910
|
+
"title": "Documentos legales",
|
|
911
|
+
"documents": "Documentos",
|
|
912
|
+
"policies": "Políticas y directrices",
|
|
913
|
+
"opening": "Abriendo documento...",
|
|
914
|
+
"openError": "Error al abrir el documento",
|
|
915
|
+
"privacyPolicy": {
|
|
916
|
+
"title": "Política de privacidad",
|
|
917
|
+
"subtitle": "Cómo manejamos tus datos"
|
|
918
|
+
},
|
|
919
|
+
"termsOfService": {
|
|
920
|
+
"title": "Términos de servicio",
|
|
921
|
+
"subtitle": "Términos y condiciones de uso"
|
|
922
|
+
},
|
|
923
|
+
"communityGuidelines": {
|
|
924
|
+
"title": "Directrices de la comunidad",
|
|
925
|
+
"subtitle": "Reglas y expectativas para nuestra comunidad"
|
|
926
|
+
},
|
|
927
|
+
"dataRetention": {
|
|
928
|
+
"title": "Política de retención de datos",
|
|
929
|
+
"subtitle": "Cuánto tiempo conservamos tus datos"
|
|
930
|
+
},
|
|
931
|
+
"contentModeration": {
|
|
932
|
+
"title": "Política de moderación de contenido",
|
|
933
|
+
"subtitle": "Cómo moderamos el contenido"
|
|
934
|
+
},
|
|
935
|
+
"childSafety": {
|
|
936
|
+
"title": "Política de seguridad infantil",
|
|
937
|
+
"subtitle": "Protegiendo a los menores en nuestra plataforma"
|
|
938
|
+
},
|
|
939
|
+
"cookiePolicy": {
|
|
940
|
+
"title": "Política de cookies",
|
|
941
|
+
"subtitle": "Cómo usamos cookies y tecnologías similares"
|
|
942
|
+
}
|
|
722
943
|
}
|
|
723
944
|
}
|
package/lib/commonjs/index.js
CHANGED
|
@@ -65,6 +65,15 @@ var _exportNames = {
|
|
|
65
65
|
useLogoutAll: true,
|
|
66
66
|
useUpdateDeviceName: true,
|
|
67
67
|
useRemoveDevice: true,
|
|
68
|
+
createProfileMutation: true,
|
|
69
|
+
createGenericMutation: true,
|
|
70
|
+
ensureValidToken: true,
|
|
71
|
+
withAuthErrorHandling: true,
|
|
72
|
+
authenticatedApiCall: true,
|
|
73
|
+
isAuthenticationError: true,
|
|
74
|
+
SessionSyncRequiredError: true,
|
|
75
|
+
AuthenticationFailedError: true,
|
|
76
|
+
useFileFiltering: true,
|
|
68
77
|
OxySignInButton: true,
|
|
69
78
|
OxyLogo: true,
|
|
70
79
|
FollowButton: true,
|
|
@@ -84,6 +93,12 @@ var _exportNames = {
|
|
|
84
93
|
logPayment: true,
|
|
85
94
|
logPerformance: true
|
|
86
95
|
};
|
|
96
|
+
Object.defineProperty(exports, "AuthenticationFailedError", {
|
|
97
|
+
enumerable: true,
|
|
98
|
+
get: function () {
|
|
99
|
+
return _authHelpers.AuthenticationFailedError;
|
|
100
|
+
}
|
|
101
|
+
});
|
|
87
102
|
Object.defineProperty(exports, "CrossDomainAuth", {
|
|
88
103
|
enumerable: true,
|
|
89
104
|
get: function () {
|
|
@@ -186,6 +201,12 @@ Object.defineProperty(exports, "SUPPORTED_LANGUAGES", {
|
|
|
186
201
|
return _languageUtils.SUPPORTED_LANGUAGES;
|
|
187
202
|
}
|
|
188
203
|
});
|
|
204
|
+
Object.defineProperty(exports, "SessionSyncRequiredError", {
|
|
205
|
+
enumerable: true,
|
|
206
|
+
get: function () {
|
|
207
|
+
return _authHelpers.SessionSyncRequiredError;
|
|
208
|
+
}
|
|
209
|
+
});
|
|
189
210
|
Object.defineProperty(exports, "SignatureService", {
|
|
190
211
|
enumerable: true,
|
|
191
212
|
get: function () {
|
|
@@ -198,6 +219,12 @@ Object.defineProperty(exports, "WebOxyProvider", {
|
|
|
198
219
|
return _WebOxyProvider.default;
|
|
199
220
|
}
|
|
200
221
|
});
|
|
222
|
+
Object.defineProperty(exports, "authenticatedApiCall", {
|
|
223
|
+
enumerable: true,
|
|
224
|
+
get: function () {
|
|
225
|
+
return _authHelpers.authenticatedApiCall;
|
|
226
|
+
}
|
|
227
|
+
});
|
|
201
228
|
Object.defineProperty(exports, "createApiError", {
|
|
202
229
|
enumerable: true,
|
|
203
230
|
get: function () {
|
|
@@ -210,6 +237,24 @@ Object.defineProperty(exports, "createCrossDomainAuth", {
|
|
|
210
237
|
return _index2.createCrossDomainAuth;
|
|
211
238
|
}
|
|
212
239
|
});
|
|
240
|
+
Object.defineProperty(exports, "createGenericMutation", {
|
|
241
|
+
enumerable: true,
|
|
242
|
+
get: function () {
|
|
243
|
+
return _mutationFactory.createGenericMutation;
|
|
244
|
+
}
|
|
245
|
+
});
|
|
246
|
+
Object.defineProperty(exports, "createProfileMutation", {
|
|
247
|
+
enumerable: true,
|
|
248
|
+
get: function () {
|
|
249
|
+
return _mutationFactory.createProfileMutation;
|
|
250
|
+
}
|
|
251
|
+
});
|
|
252
|
+
Object.defineProperty(exports, "ensureValidToken", {
|
|
253
|
+
enumerable: true,
|
|
254
|
+
get: function () {
|
|
255
|
+
return _authHelpers.ensureValidToken;
|
|
256
|
+
}
|
|
257
|
+
});
|
|
213
258
|
Object.defineProperty(exports, "getLanguageMetadata", {
|
|
214
259
|
enumerable: true,
|
|
215
260
|
get: function () {
|
|
@@ -234,6 +279,12 @@ Object.defineProperty(exports, "handleHttpError", {
|
|
|
234
279
|
return _errorUtils.handleHttpError;
|
|
235
280
|
}
|
|
236
281
|
});
|
|
282
|
+
Object.defineProperty(exports, "isAuthenticationError", {
|
|
283
|
+
enumerable: true,
|
|
284
|
+
get: function () {
|
|
285
|
+
return _authHelpers.isAuthenticationError;
|
|
286
|
+
}
|
|
287
|
+
});
|
|
237
288
|
Object.defineProperty(exports, "logApi", {
|
|
238
289
|
enumerable: true,
|
|
239
290
|
get: function () {
|
|
@@ -396,6 +447,12 @@ Object.defineProperty(exports, "useFileDownloadUrl", {
|
|
|
396
447
|
return _useFileDownloadUrl.useFileDownloadUrl;
|
|
397
448
|
}
|
|
398
449
|
});
|
|
450
|
+
Object.defineProperty(exports, "useFileFiltering", {
|
|
451
|
+
enumerable: true,
|
|
452
|
+
get: function () {
|
|
453
|
+
return _useFileFiltering.useFileFiltering;
|
|
454
|
+
}
|
|
455
|
+
});
|
|
399
456
|
Object.defineProperty(exports, "useIsAssetLinked", {
|
|
400
457
|
enumerable: true,
|
|
401
458
|
get: function () {
|
|
@@ -558,6 +615,12 @@ Object.defineProperty(exports, "validateRequiredFields", {
|
|
|
558
615
|
return _errorUtils.validateRequiredFields;
|
|
559
616
|
}
|
|
560
617
|
});
|
|
618
|
+
Object.defineProperty(exports, "withAuthErrorHandling", {
|
|
619
|
+
enumerable: true,
|
|
620
|
+
get: function () {
|
|
621
|
+
return _authHelpers.withAuthErrorHandling;
|
|
622
|
+
}
|
|
623
|
+
});
|
|
561
624
|
require("./crypto/polyfill.js");
|
|
562
625
|
var _index = require("./crypto/index.js");
|
|
563
626
|
var _index2 = require("./core/index.js");
|
|
@@ -575,6 +638,9 @@ var _useAssets = require("./ui/hooks/useAssets.js");
|
|
|
575
638
|
var _useFileDownloadUrl = require("./ui/hooks/useFileDownloadUrl.js");
|
|
576
639
|
var _index3 = require("./ui/hooks/queries/index.js");
|
|
577
640
|
var _index4 = require("./ui/hooks/mutations/index.js");
|
|
641
|
+
var _mutationFactory = require("./ui/hooks/mutations/mutationFactory.js");
|
|
642
|
+
var _authHelpers = require("./ui/utils/authHelpers.js");
|
|
643
|
+
var _useFileFiltering = require("./ui/hooks/useFileFiltering.js");
|
|
578
644
|
var _OxySignInButton = require("./ui/components/OxySignInButton.js");
|
|
579
645
|
var _index5 = require("./ui/index.js");
|
|
580
646
|
var _apiUtils = require("./utils/apiUtils.js");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["require","_index","_index2","_OxyContext","_useAuth","_OxyProvider","_interopRequireDefault","_WebOxyProvider","_deviceManager","_languageUtils","_interfaces","_authStore","_assetStore","_useSessionSocket","_useAssets","_useFileDownloadUrl","_index3","_index4","_OxySignInButton","_index5","_apiUtils","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","_errorUtils","_validationUtils","_loggerUtils","_asyncUtils","_hookUtils","e","__esModule","default"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":"
|
|
1
|
+
{"version":3,"names":["require","_index","_index2","_OxyContext","_useAuth","_OxyProvider","_interopRequireDefault","_WebOxyProvider","_deviceManager","_languageUtils","_interfaces","_authStore","_assetStore","_useSessionSocket","_useAssets","_useFileDownloadUrl","_index3","_index4","_mutationFactory","_authHelpers","_useFileFiltering","_OxySignInButton","_index5","_apiUtils","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","_errorUtils","_validationUtils","_loggerUtils","_asyncUtils","_hookUtils","e","__esModule","default"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -102,7 +102,7 @@ const Avatar = ({
|
|
|
102
102
|
}), [size]);
|
|
103
103
|
const textStyleComputed = (0, _react.useMemo)(() => [styles.text, {
|
|
104
104
|
fontSize,
|
|
105
|
-
fontFamily: _fonts.fontFamilies.
|
|
105
|
+
fontFamily: _fonts.fontFamilies.interBold,
|
|
106
106
|
color: textColor,
|
|
107
107
|
textAlign: 'center',
|
|
108
108
|
lineHeight: size,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_reactNative","_index","_fonts","_jsxRuntime","getInitials","nameStr","trim","trimmed","parts","split","filter","part","length","firstPart","startsWith","substring","toUpperCase","charAt","generateColorFromString","str","hash","i","charCodeAt","hue","Math","abs","calculateFontSize","size","floor","Avatar","uri","text","name","theme","backgroundColor","textColor","style","imageStyle","textStyle","isLoading","colors","useThemeColors","displayText","useMemo","generatedBgColor","primary","nameForColor","bgColor","fontSize","containerStyle","width","height","borderRadius","textStyleComputed","styles","fontFamily","fontFamilies","
|
|
1
|
+
{"version":3,"names":["_react","require","_reactNative","_index","_fonts","_jsxRuntime","getInitials","nameStr","trim","trimmed","parts","split","filter","part","length","firstPart","startsWith","substring","toUpperCase","charAt","generateColorFromString","str","hash","i","charCodeAt","hue","Math","abs","calculateFontSize","size","floor","Avatar","uri","text","name","theme","backgroundColor","textColor","style","imageStyle","textStyle","isLoading","colors","useThemeColors","displayText","useMemo","generatedBgColor","primary","nameForColor","bgColor","fontSize","containerStyle","width","height","borderRadius","textStyleComputed","styles","fontFamily","fontFamilies","interBold","color","textAlign","lineHeight","Platform","OS","includeFontPadding","jsx","View","container","inputBackground","children","ActivityIndicator","Image","source","image","resizeMode","Text","StyleSheet","create","overflow","justifyContent","alignItems","fontWeight","undefined","_default","exports","default","memo"],"sourceRoot":"../../../../src","sources":["ui/components/Avatar.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -189,7 +189,7 @@ const FollowButton = ({
|
|
|
189
189
|
// Get base text style (without state-specific colors since they're animated)
|
|
190
190
|
const getBaseTextStyle = () => {
|
|
191
191
|
const baseTextStyle = {
|
|
192
|
-
fontFamily: _fonts.fontFamilies.
|
|
192
|
+
fontFamily: _fonts.fontFamilies.interSemiBold,
|
|
193
193
|
fontWeight: '600'
|
|
194
194
|
};
|
|
195
195
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_reactNative","_reactNativeReanimated","_interopRequireWildcard","_OxyContext","_fonts","_sonner","_useFollow","_theme","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","AnimatedTouchableOpacity","Animated","createAnimatedComponent","TouchableOpacity","AnimatedText","Text","FollowButton","userId","initiallyFollowing","size","onFollowChange","style","textStyle","disabled","showLoadingState","preventParentActions","theme","oxyServices","isAuthenticated","user","currentUser","useOxy","colors","useThemeColors","normalizeId","id","String","trim","currentUserId","targetUserId","isFollowing","isLoading","error","toggleFollow","setFollowStatus","fetchStatus","clearError","useFollow","animationProgress","useSharedValue","scale","handlePress","useCallback","event","preventDefault","stopPropagation","value","withTiming","duration","finished","withSpring","damping","stiffness","err","Error","toast","message","useEffect","easing","Easing","inOut","ease","animatedButtonStyle","useAnimatedStyle","transform","backgroundColor","interpolateColor","background","primary","borderColor","border","animatedTextStyle","color","text","getBaseButtonStyle","baseStyle","flexDirection","alignItems","justifyContent","borderWidth","Platform","select","web","boxShadow","shadowColor","shadowOffset","width","height","shadowOpacity","shadowRadius","elevation","sizeStyle","paddingVertical","paddingHorizontal","minWidth","borderRadius","getBaseTextStyle","baseTextStyle","fontFamily","fontFamilies","
|
|
1
|
+
{"version":3,"names":["_react","require","_reactNative","_reactNativeReanimated","_interopRequireWildcard","_OxyContext","_fonts","_sonner","_useFollow","_theme","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","AnimatedTouchableOpacity","Animated","createAnimatedComponent","TouchableOpacity","AnimatedText","Text","FollowButton","userId","initiallyFollowing","size","onFollowChange","style","textStyle","disabled","showLoadingState","preventParentActions","theme","oxyServices","isAuthenticated","user","currentUser","useOxy","colors","useThemeColors","normalizeId","id","String","trim","currentUserId","targetUserId","isFollowing","isLoading","error","toggleFollow","setFollowStatus","fetchStatus","clearError","useFollow","animationProgress","useSharedValue","scale","handlePress","useCallback","event","preventDefault","stopPropagation","value","withTiming","duration","finished","withSpring","damping","stiffness","err","Error","toast","message","useEffect","easing","Easing","inOut","ease","animatedButtonStyle","useAnimatedStyle","transform","backgroundColor","interpolateColor","background","primary","borderColor","border","animatedTextStyle","color","text","getBaseButtonStyle","baseStyle","flexDirection","alignItems","justifyContent","borderWidth","Platform","select","web","boxShadow","shadowColor","shadowOffset","width","height","shadowOpacity","shadowRadius","elevation","sizeStyle","paddingVertical","paddingHorizontal","minWidth","borderRadius","getBaseTextStyle","baseTextStyle","fontFamily","fontFamilies","interSemiBold","fontWeight","sizeTextStyle","fontSize","jsx","onPress","activeOpacity","children","ActivityIndicator","exports","_default"],"sourceRoot":"../../../../src","sources":["ui/components/FollowButton.tsx"],"mappings":"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","ignoreList":[]}
|