@oxyhq/core 1.11.24 → 2.1.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.
Files changed (150) hide show
  1. package/README.md +5 -6
  2. package/dist/cjs/.tsbuildinfo +1 -1
  3. package/dist/cjs/AuthManager.js +678 -4
  4. package/dist/cjs/AuthManagerTypes.js +13 -0
  5. package/dist/cjs/CrossDomainAuth.js +45 -3
  6. package/dist/cjs/OxyServices.base.js +16 -0
  7. package/dist/cjs/i18n/locales/ar-SA.json +83 -0
  8. package/dist/cjs/i18n/locales/ca-ES.json +83 -0
  9. package/dist/cjs/i18n/locales/de-DE.json +83 -0
  10. package/dist/cjs/i18n/locales/en-US.json +83 -0
  11. package/dist/cjs/i18n/locales/es-ES.json +99 -4
  12. package/dist/cjs/i18n/locales/fr-FR.json +83 -0
  13. package/dist/cjs/i18n/locales/it-IT.json +83 -0
  14. package/dist/cjs/i18n/locales/ja-JP.json +83 -0
  15. package/dist/cjs/i18n/locales/ko-KR.json +83 -0
  16. package/dist/cjs/i18n/locales/locales/ar-SA.json +83 -1
  17. package/dist/cjs/i18n/locales/locales/ca-ES.json +83 -1
  18. package/dist/cjs/i18n/locales/locales/de-DE.json +83 -1
  19. package/dist/cjs/i18n/locales/locales/en-US.json +83 -0
  20. package/dist/cjs/i18n/locales/locales/es-ES.json +99 -4
  21. package/dist/cjs/i18n/locales/locales/fr-FR.json +83 -1
  22. package/dist/cjs/i18n/locales/locales/it-IT.json +83 -1
  23. package/dist/cjs/i18n/locales/locales/ja-JP.json +200 -117
  24. package/dist/cjs/i18n/locales/locales/ko-KR.json +83 -1
  25. package/dist/cjs/i18n/locales/locales/pt-PT.json +83 -1
  26. package/dist/cjs/i18n/locales/locales/zh-CN.json +83 -1
  27. package/dist/cjs/i18n/locales/pt-PT.json +83 -0
  28. package/dist/cjs/i18n/locales/zh-CN.json +83 -0
  29. package/dist/cjs/index.js +121 -57
  30. package/dist/cjs/mixins/OxyServices.auth.js +235 -0
  31. package/dist/cjs/mixins/OxyServices.fedcm.js +36 -0
  32. package/dist/cjs/mixins/OxyServices.popup.js +61 -1
  33. package/dist/cjs/mixins/OxyServices.user.js +18 -0
  34. package/dist/cjs/utils/accountUtils.js +64 -1
  35. package/dist/cjs/utils/coldBoot.js +71 -0
  36. package/dist/cjs/utils/fapiAutoDetect.js +88 -0
  37. package/dist/esm/.tsbuildinfo +1 -1
  38. package/dist/esm/AuthManager.js +678 -4
  39. package/dist/esm/AuthManagerTypes.js +12 -0
  40. package/dist/esm/CrossDomainAuth.js +45 -3
  41. package/dist/esm/OxyServices.base.js +16 -0
  42. package/dist/esm/i18n/locales/ar-SA.json +83 -0
  43. package/dist/esm/i18n/locales/ca-ES.json +83 -0
  44. package/dist/esm/i18n/locales/de-DE.json +83 -0
  45. package/dist/esm/i18n/locales/en-US.json +83 -0
  46. package/dist/esm/i18n/locales/es-ES.json +99 -4
  47. package/dist/esm/i18n/locales/fr-FR.json +83 -0
  48. package/dist/esm/i18n/locales/it-IT.json +83 -0
  49. package/dist/esm/i18n/locales/ja-JP.json +83 -0
  50. package/dist/esm/i18n/locales/ko-KR.json +83 -0
  51. package/dist/esm/i18n/locales/locales/ar-SA.json +83 -1
  52. package/dist/esm/i18n/locales/locales/ca-ES.json +83 -1
  53. package/dist/esm/i18n/locales/locales/de-DE.json +83 -1
  54. package/dist/esm/i18n/locales/locales/en-US.json +83 -0
  55. package/dist/esm/i18n/locales/locales/es-ES.json +99 -4
  56. package/dist/esm/i18n/locales/locales/fr-FR.json +83 -1
  57. package/dist/esm/i18n/locales/locales/it-IT.json +83 -1
  58. package/dist/esm/i18n/locales/locales/ja-JP.json +200 -117
  59. package/dist/esm/i18n/locales/locales/ko-KR.json +83 -1
  60. package/dist/esm/i18n/locales/locales/pt-PT.json +83 -1
  61. package/dist/esm/i18n/locales/locales/zh-CN.json +83 -1
  62. package/dist/esm/i18n/locales/pt-PT.json +83 -0
  63. package/dist/esm/i18n/locales/zh-CN.json +83 -0
  64. package/dist/esm/index.js +74 -26
  65. package/dist/esm/mixins/OxyServices.auth.js +235 -0
  66. package/dist/esm/mixins/OxyServices.fedcm.js +36 -0
  67. package/dist/esm/mixins/OxyServices.popup.js +61 -1
  68. package/dist/esm/mixins/OxyServices.user.js +18 -0
  69. package/dist/esm/utils/accountUtils.js +61 -0
  70. package/dist/esm/utils/coldBoot.js +68 -0
  71. package/dist/esm/utils/fapiAutoDetect.js +85 -0
  72. package/dist/types/.tsbuildinfo +1 -1
  73. package/dist/types/AuthManager.d.ts +243 -3
  74. package/dist/types/AuthManagerTypes.d.ts +68 -0
  75. package/dist/types/CrossDomainAuth.d.ts +23 -0
  76. package/dist/types/OxyServices.base.d.ts +14 -0
  77. package/dist/types/OxyServices.d.ts +7 -0
  78. package/dist/types/index.d.ts +31 -17
  79. package/dist/types/mixins/OxyServices.analytics.d.ts +1 -0
  80. package/dist/types/mixins/OxyServices.appData.d.ts +1 -0
  81. package/dist/types/mixins/OxyServices.assets.d.ts +4 -1
  82. package/dist/types/mixins/OxyServices.auth.d.ts +73 -1
  83. package/dist/types/mixins/OxyServices.contacts.d.ts +1 -0
  84. package/dist/types/mixins/OxyServices.developer.d.ts +1 -0
  85. package/dist/types/mixins/OxyServices.devices.d.ts +1 -0
  86. package/dist/types/mixins/OxyServices.features.d.ts +2 -5
  87. package/dist/types/mixins/OxyServices.fedcm.d.ts +34 -0
  88. package/dist/types/mixins/OxyServices.karma.d.ts +1 -0
  89. package/dist/types/mixins/OxyServices.language.d.ts +1 -0
  90. package/dist/types/mixins/OxyServices.location.d.ts +1 -0
  91. package/dist/types/mixins/OxyServices.managedAccounts.d.ts +1 -0
  92. package/dist/types/mixins/OxyServices.payment.d.ts +1 -0
  93. package/dist/types/mixins/OxyServices.popup.d.ts +40 -0
  94. package/dist/types/mixins/OxyServices.privacy.d.ts +1 -0
  95. package/dist/types/mixins/OxyServices.redirect.d.ts +1 -0
  96. package/dist/types/mixins/OxyServices.security.d.ts +1 -0
  97. package/dist/types/mixins/OxyServices.topics.d.ts +1 -0
  98. package/dist/types/mixins/OxyServices.user.d.ts +16 -1
  99. package/dist/types/mixins/OxyServices.utility.d.ts +1 -0
  100. package/dist/types/models/interfaces.d.ts +98 -0
  101. package/dist/types/models/session.d.ts +8 -0
  102. package/dist/types/utils/accountUtils.d.ts +33 -0
  103. package/dist/types/utils/coldBoot.d.ts +102 -0
  104. package/dist/types/utils/fapiAutoDetect.d.ts +37 -0
  105. package/package.json +9 -18
  106. package/src/AuthManager.ts +776 -7
  107. package/src/AuthManagerTypes.ts +72 -0
  108. package/src/CrossDomainAuth.ts +54 -3
  109. package/src/OxyServices.base.ts +17 -0
  110. package/src/OxyServices.ts +7 -0
  111. package/src/__tests__/authManager.cookiePath.test.ts +339 -0
  112. package/src/__tests__/authManager.security.test.ts +342 -0
  113. package/src/__tests__/crossDomainAuth.test.ts +191 -0
  114. package/src/i18n/locales/ar-SA.json +83 -1
  115. package/src/i18n/locales/ca-ES.json +83 -1
  116. package/src/i18n/locales/de-DE.json +83 -1
  117. package/src/i18n/locales/en-US.json +83 -0
  118. package/src/i18n/locales/es-ES.json +99 -4
  119. package/src/i18n/locales/fr-FR.json +83 -1
  120. package/src/i18n/locales/it-IT.json +83 -1
  121. package/src/i18n/locales/ja-JP.json +200 -117
  122. package/src/i18n/locales/ko-KR.json +83 -1
  123. package/src/i18n/locales/pt-PT.json +83 -1
  124. package/src/i18n/locales/zh-CN.json +83 -1
  125. package/src/index.ts +309 -112
  126. package/src/mixins/OxyServices.auth.ts +268 -1
  127. package/src/mixins/OxyServices.fedcm.ts +63 -0
  128. package/src/mixins/OxyServices.popup.ts +79 -1
  129. package/src/mixins/OxyServices.user.ts +33 -1
  130. package/src/mixins/__tests__/popup.test.ts +307 -0
  131. package/src/mixins/__tests__/sessionBaseUrl.test.ts +61 -0
  132. package/src/models/interfaces.ts +116 -0
  133. package/src/models/session.ts +8 -0
  134. package/src/utils/__tests__/coldBoot.test.ts +226 -0
  135. package/src/utils/__tests__/fapiAutoDetect.test.ts +93 -0
  136. package/src/utils/accountUtils.ts +84 -0
  137. package/src/utils/coldBoot.ts +136 -0
  138. package/src/utils/fapiAutoDetect.ts +82 -0
  139. package/dist/cjs/crypto/index.js +0 -22
  140. package/dist/cjs/shared/index.js +0 -70
  141. package/dist/cjs/utils/index.js +0 -26
  142. package/dist/esm/crypto/index.js +0 -13
  143. package/dist/esm/shared/index.js +0 -31
  144. package/dist/esm/utils/index.js +0 -7
  145. package/dist/types/crypto/index.d.ts +0 -11
  146. package/dist/types/shared/index.d.ts +0 -28
  147. package/dist/types/utils/index.d.ts +0 -6
  148. package/src/crypto/index.ts +0 -30
  149. package/src/shared/index.ts +0 -82
  150. package/src/utils/index.ts +0 -21
@@ -114,6 +114,89 @@
114
114
  "email": "Email",
115
115
  "password": "Mot de passe",
116
116
  "confirmPassword": "Confirmer le mot de passe"
117
+ },
118
+ "revoke": "Revoke"
119
+ },
120
+ "notifications": {
121
+ "title": "Notifications",
122
+ "subtitle": "Manage push, email, and security alerts",
123
+ "updateError": "Failed to update notification preferences",
124
+ "sections": {
125
+ "channels": "Channels",
126
+ "alerts": "Alerts",
127
+ "marketing": "Marketing"
128
+ },
129
+ "items": {
130
+ "push": {
131
+ "title": "Push notifications",
132
+ "subtitle": "Real-time alerts on your devices"
133
+ },
134
+ "emailDigest": {
135
+ "title": "Email digest",
136
+ "subtitle": "Periodic summary of your account activity"
137
+ },
138
+ "securityAlerts": {
139
+ "title": "Security alerts",
140
+ "subtitle": "Sign-ins, recovery codes, and key changes"
141
+ },
142
+ "marketingEmails": {
143
+ "title": "Marketing emails",
144
+ "subtitle": "Product news and occasional offers"
145
+ }
146
+ }
147
+ },
148
+ "preferences": {
149
+ "title": "Preferences",
150
+ "subtitle": "Theme, motion, and regional settings",
151
+ "sections": {
152
+ "appearance": "Appearance",
153
+ "language": "Language",
154
+ "region": "Region"
155
+ },
156
+ "theme": {
157
+ "light": "Light",
158
+ "dark": "Dark",
159
+ "system": "System default"
160
+ },
161
+ "items": {
162
+ "theme": {
163
+ "title": "Theme"
164
+ },
165
+ "reduceMotion": {
166
+ "title": "Reduce motion",
167
+ "subtitle": "Minimise animations across Oxy apps",
168
+ "systemOn": "Following system: reduce motion is on"
169
+ },
170
+ "language": {
171
+ "title": "Language"
172
+ },
173
+ "timezone": {
174
+ "title": "Timezone",
175
+ "unknown": "Unable to detect timezone"
176
+ },
177
+ "about": {
178
+ "title": "About preferences",
179
+ "subtitle": "Preferences sync across every Oxy app you sign into"
180
+ }
181
+ }
182
+ },
183
+ "connectedApps": {
184
+ "title": "Connected apps",
185
+ "subtitle": "Manage third-party app access",
186
+ "empty": {
187
+ "title": "No connected apps",
188
+ "subtitle": "Apps you authorize to sign in with your Oxy account will appear here"
189
+ },
190
+ "item": {
191
+ "lastUsed": "Last used {{relative}}"
192
+ },
193
+ "confirm": {
194
+ "title": "Revoke access",
195
+ "message": "Revoke {{name}}'s access to your Oxy account?"
196
+ },
197
+ "toasts": {
198
+ "revoked": "Revoked access for {{name}}",
199
+ "revokeFailed": "Failed to revoke access"
117
200
  }
118
201
  }
119
202
  }
@@ -114,6 +114,89 @@
114
114
  "email": "Email",
115
115
  "password": "Password",
116
116
  "confirmPassword": "Conferma password"
117
+ },
118
+ "revoke": "Revoke"
119
+ },
120
+ "notifications": {
121
+ "title": "Notifications",
122
+ "subtitle": "Manage push, email, and security alerts",
123
+ "updateError": "Failed to update notification preferences",
124
+ "sections": {
125
+ "channels": "Channels",
126
+ "alerts": "Alerts",
127
+ "marketing": "Marketing"
128
+ },
129
+ "items": {
130
+ "push": {
131
+ "title": "Push notifications",
132
+ "subtitle": "Real-time alerts on your devices"
133
+ },
134
+ "emailDigest": {
135
+ "title": "Email digest",
136
+ "subtitle": "Periodic summary of your account activity"
137
+ },
138
+ "securityAlerts": {
139
+ "title": "Security alerts",
140
+ "subtitle": "Sign-ins, recovery codes, and key changes"
141
+ },
142
+ "marketingEmails": {
143
+ "title": "Marketing emails",
144
+ "subtitle": "Product news and occasional offers"
145
+ }
146
+ }
147
+ },
148
+ "preferences": {
149
+ "title": "Preferences",
150
+ "subtitle": "Theme, motion, and regional settings",
151
+ "sections": {
152
+ "appearance": "Appearance",
153
+ "language": "Language",
154
+ "region": "Region"
155
+ },
156
+ "theme": {
157
+ "light": "Light",
158
+ "dark": "Dark",
159
+ "system": "System default"
160
+ },
161
+ "items": {
162
+ "theme": {
163
+ "title": "Theme"
164
+ },
165
+ "reduceMotion": {
166
+ "title": "Reduce motion",
167
+ "subtitle": "Minimise animations across Oxy apps",
168
+ "systemOn": "Following system: reduce motion is on"
169
+ },
170
+ "language": {
171
+ "title": "Language"
172
+ },
173
+ "timezone": {
174
+ "title": "Timezone",
175
+ "unknown": "Unable to detect timezone"
176
+ },
177
+ "about": {
178
+ "title": "About preferences",
179
+ "subtitle": "Preferences sync across every Oxy app you sign into"
180
+ }
181
+ }
182
+ },
183
+ "connectedApps": {
184
+ "title": "Connected apps",
185
+ "subtitle": "Manage third-party app access",
186
+ "empty": {
187
+ "title": "No connected apps",
188
+ "subtitle": "Apps you authorize to sign in with your Oxy account will appear here"
189
+ },
190
+ "item": {
191
+ "lastUsed": "Last used {{relative}}"
192
+ },
193
+ "confirm": {
194
+ "title": "Revoke access",
195
+ "message": "Revoke {{name}}'s access to your Oxy account?"
196
+ },
197
+ "toasts": {
198
+ "revoked": "Revoked access for {{name}}",
199
+ "revokeFailed": "Failed to revoke access"
117
200
  }
118
201
  }
119
202
  }
@@ -114,6 +114,89 @@
114
114
  "email": "メール",
115
115
  "password": "パスワード",
116
116
  "confirmPassword": "パスワードを確認"
117
+ },
118
+ "revoke": "Revoke"
119
+ },
120
+ "notifications": {
121
+ "title": "Notifications",
122
+ "subtitle": "Manage push, email, and security alerts",
123
+ "updateError": "Failed to update notification preferences",
124
+ "sections": {
125
+ "channels": "Channels",
126
+ "alerts": "Alerts",
127
+ "marketing": "Marketing"
128
+ },
129
+ "items": {
130
+ "push": {
131
+ "title": "Push notifications",
132
+ "subtitle": "Real-time alerts on your devices"
133
+ },
134
+ "emailDigest": {
135
+ "title": "Email digest",
136
+ "subtitle": "Periodic summary of your account activity"
137
+ },
138
+ "securityAlerts": {
139
+ "title": "Security alerts",
140
+ "subtitle": "Sign-ins, recovery codes, and key changes"
141
+ },
142
+ "marketingEmails": {
143
+ "title": "Marketing emails",
144
+ "subtitle": "Product news and occasional offers"
145
+ }
146
+ }
147
+ },
148
+ "preferences": {
149
+ "title": "Preferences",
150
+ "subtitle": "Theme, motion, and regional settings",
151
+ "sections": {
152
+ "appearance": "Appearance",
153
+ "language": "Language",
154
+ "region": "Region"
155
+ },
156
+ "theme": {
157
+ "light": "Light",
158
+ "dark": "Dark",
159
+ "system": "System default"
160
+ },
161
+ "items": {
162
+ "theme": {
163
+ "title": "Theme"
164
+ },
165
+ "reduceMotion": {
166
+ "title": "Reduce motion",
167
+ "subtitle": "Minimise animations across Oxy apps",
168
+ "systemOn": "Following system: reduce motion is on"
169
+ },
170
+ "language": {
171
+ "title": "Language"
172
+ },
173
+ "timezone": {
174
+ "title": "Timezone",
175
+ "unknown": "Unable to detect timezone"
176
+ },
177
+ "about": {
178
+ "title": "About preferences",
179
+ "subtitle": "Preferences sync across every Oxy app you sign into"
180
+ }
181
+ }
182
+ },
183
+ "connectedApps": {
184
+ "title": "Connected apps",
185
+ "subtitle": "Manage third-party app access",
186
+ "empty": {
187
+ "title": "No connected apps",
188
+ "subtitle": "Apps you authorize to sign in with your Oxy account will appear here"
189
+ },
190
+ "item": {
191
+ "lastUsed": "Last used {{relative}}"
192
+ },
193
+ "confirm": {
194
+ "title": "Revoke access",
195
+ "message": "Revoke {{name}}'s access to your Oxy account?"
196
+ },
197
+ "toasts": {
198
+ "revoked": "Revoked access for {{name}}",
199
+ "revokeFailed": "Failed to revoke access"
117
200
  }
118
201
  }
119
202
  }
@@ -114,6 +114,89 @@
114
114
  "email": "이메일",
115
115
  "password": "비밀번호",
116
116
  "confirmPassword": "비밀번호 확인"
117
+ },
118
+ "revoke": "Revoke"
119
+ },
120
+ "notifications": {
121
+ "title": "Notifications",
122
+ "subtitle": "Manage push, email, and security alerts",
123
+ "updateError": "Failed to update notification preferences",
124
+ "sections": {
125
+ "channels": "Channels",
126
+ "alerts": "Alerts",
127
+ "marketing": "Marketing"
128
+ },
129
+ "items": {
130
+ "push": {
131
+ "title": "Push notifications",
132
+ "subtitle": "Real-time alerts on your devices"
133
+ },
134
+ "emailDigest": {
135
+ "title": "Email digest",
136
+ "subtitle": "Periodic summary of your account activity"
137
+ },
138
+ "securityAlerts": {
139
+ "title": "Security alerts",
140
+ "subtitle": "Sign-ins, recovery codes, and key changes"
141
+ },
142
+ "marketingEmails": {
143
+ "title": "Marketing emails",
144
+ "subtitle": "Product news and occasional offers"
145
+ }
146
+ }
147
+ },
148
+ "preferences": {
149
+ "title": "Preferences",
150
+ "subtitle": "Theme, motion, and regional settings",
151
+ "sections": {
152
+ "appearance": "Appearance",
153
+ "language": "Language",
154
+ "region": "Region"
155
+ },
156
+ "theme": {
157
+ "light": "Light",
158
+ "dark": "Dark",
159
+ "system": "System default"
160
+ },
161
+ "items": {
162
+ "theme": {
163
+ "title": "Theme"
164
+ },
165
+ "reduceMotion": {
166
+ "title": "Reduce motion",
167
+ "subtitle": "Minimise animations across Oxy apps",
168
+ "systemOn": "Following system: reduce motion is on"
169
+ },
170
+ "language": {
171
+ "title": "Language"
172
+ },
173
+ "timezone": {
174
+ "title": "Timezone",
175
+ "unknown": "Unable to detect timezone"
176
+ },
177
+ "about": {
178
+ "title": "About preferences",
179
+ "subtitle": "Preferences sync across every Oxy app you sign into"
180
+ }
181
+ }
182
+ },
183
+ "connectedApps": {
184
+ "title": "Connected apps",
185
+ "subtitle": "Manage third-party app access",
186
+ "empty": {
187
+ "title": "No connected apps",
188
+ "subtitle": "Apps you authorize to sign in with your Oxy account will appear here"
189
+ },
190
+ "item": {
191
+ "lastUsed": "Last used {{relative}}"
192
+ },
193
+ "confirm": {
194
+ "title": "Revoke access",
195
+ "message": "Revoke {{name}}'s access to your Oxy account?"
196
+ },
197
+ "toasts": {
198
+ "revoked": "Revoked access for {{name}}",
199
+ "revokeFailed": "Failed to revoke access"
117
200
  }
118
201
  }
119
202
  }
@@ -114,7 +114,89 @@
114
114
  "email": "البريد الإلكتروني",
115
115
  "password": "كلمة المرور",
116
116
  "confirmPassword": "تأكيد كلمة المرور"
117
+ },
118
+ "revoke": "Revoke"
119
+ },
120
+ "notifications": {
121
+ "title": "Notifications",
122
+ "subtitle": "Manage push, email, and security alerts",
123
+ "updateError": "Failed to update notification preferences",
124
+ "sections": {
125
+ "channels": "Channels",
126
+ "alerts": "Alerts",
127
+ "marketing": "Marketing"
128
+ },
129
+ "items": {
130
+ "push": {
131
+ "title": "Push notifications",
132
+ "subtitle": "Real-time alerts on your devices"
133
+ },
134
+ "emailDigest": {
135
+ "title": "Email digest",
136
+ "subtitle": "Periodic summary of your account activity"
137
+ },
138
+ "securityAlerts": {
139
+ "title": "Security alerts",
140
+ "subtitle": "Sign-ins, recovery codes, and key changes"
141
+ },
142
+ "marketingEmails": {
143
+ "title": "Marketing emails",
144
+ "subtitle": "Product news and occasional offers"
145
+ }
146
+ }
147
+ },
148
+ "preferences": {
149
+ "title": "Preferences",
150
+ "subtitle": "Theme, motion, and regional settings",
151
+ "sections": {
152
+ "appearance": "Appearance",
153
+ "language": "Language",
154
+ "region": "Region"
155
+ },
156
+ "theme": {
157
+ "light": "Light",
158
+ "dark": "Dark",
159
+ "system": "System default"
160
+ },
161
+ "items": {
162
+ "theme": {
163
+ "title": "Theme"
164
+ },
165
+ "reduceMotion": {
166
+ "title": "Reduce motion",
167
+ "subtitle": "Minimise animations across Oxy apps",
168
+ "systemOn": "Following system: reduce motion is on"
169
+ },
170
+ "language": {
171
+ "title": "Language"
172
+ },
173
+ "timezone": {
174
+ "title": "Timezone",
175
+ "unknown": "Unable to detect timezone"
176
+ },
177
+ "about": {
178
+ "title": "About preferences",
179
+ "subtitle": "Preferences sync across every Oxy app you sign into"
180
+ }
181
+ }
182
+ },
183
+ "connectedApps": {
184
+ "title": "Connected apps",
185
+ "subtitle": "Manage third-party app access",
186
+ "empty": {
187
+ "title": "No connected apps",
188
+ "subtitle": "Apps you authorize to sign in with your Oxy account will appear here"
189
+ },
190
+ "item": {
191
+ "lastUsed": "Last used {{relative}}"
192
+ },
193
+ "confirm": {
194
+ "title": "Revoke access",
195
+ "message": "Revoke {{name}}'s access to your Oxy account?"
196
+ },
197
+ "toasts": {
198
+ "revoked": "Revoked access for {{name}}",
199
+ "revokeFailed": "Failed to revoke access"
117
200
  }
118
201
  }
119
202
  }
120
-
@@ -114,7 +114,89 @@
114
114
  "email": "Correu electrònic",
115
115
  "password": "Contrasenya",
116
116
  "confirmPassword": "Confirmar contrasenya"
117
+ },
118
+ "revoke": "Revoke"
119
+ },
120
+ "notifications": {
121
+ "title": "Notifications",
122
+ "subtitle": "Manage push, email, and security alerts",
123
+ "updateError": "Failed to update notification preferences",
124
+ "sections": {
125
+ "channels": "Channels",
126
+ "alerts": "Alerts",
127
+ "marketing": "Marketing"
128
+ },
129
+ "items": {
130
+ "push": {
131
+ "title": "Push notifications",
132
+ "subtitle": "Real-time alerts on your devices"
133
+ },
134
+ "emailDigest": {
135
+ "title": "Email digest",
136
+ "subtitle": "Periodic summary of your account activity"
137
+ },
138
+ "securityAlerts": {
139
+ "title": "Security alerts",
140
+ "subtitle": "Sign-ins, recovery codes, and key changes"
141
+ },
142
+ "marketingEmails": {
143
+ "title": "Marketing emails",
144
+ "subtitle": "Product news and occasional offers"
145
+ }
146
+ }
147
+ },
148
+ "preferences": {
149
+ "title": "Preferences",
150
+ "subtitle": "Theme, motion, and regional settings",
151
+ "sections": {
152
+ "appearance": "Appearance",
153
+ "language": "Language",
154
+ "region": "Region"
155
+ },
156
+ "theme": {
157
+ "light": "Light",
158
+ "dark": "Dark",
159
+ "system": "System default"
160
+ },
161
+ "items": {
162
+ "theme": {
163
+ "title": "Theme"
164
+ },
165
+ "reduceMotion": {
166
+ "title": "Reduce motion",
167
+ "subtitle": "Minimise animations across Oxy apps",
168
+ "systemOn": "Following system: reduce motion is on"
169
+ },
170
+ "language": {
171
+ "title": "Language"
172
+ },
173
+ "timezone": {
174
+ "title": "Timezone",
175
+ "unknown": "Unable to detect timezone"
176
+ },
177
+ "about": {
178
+ "title": "About preferences",
179
+ "subtitle": "Preferences sync across every Oxy app you sign into"
180
+ }
181
+ }
182
+ },
183
+ "connectedApps": {
184
+ "title": "Connected apps",
185
+ "subtitle": "Manage third-party app access",
186
+ "empty": {
187
+ "title": "No connected apps",
188
+ "subtitle": "Apps you authorize to sign in with your Oxy account will appear here"
189
+ },
190
+ "item": {
191
+ "lastUsed": "Last used {{relative}}"
192
+ },
193
+ "confirm": {
194
+ "title": "Revoke access",
195
+ "message": "Revoke {{name}}'s access to your Oxy account?"
196
+ },
197
+ "toasts": {
198
+ "revoked": "Revoked access for {{name}}",
199
+ "revokeFailed": "Failed to revoke access"
117
200
  }
118
201
  }
119
202
  }
120
-
@@ -114,7 +114,89 @@
114
114
  "email": "E-Mail",
115
115
  "password": "Passwort",
116
116
  "confirmPassword": "Passwort bestätigen"
117
+ },
118
+ "revoke": "Revoke"
119
+ },
120
+ "notifications": {
121
+ "title": "Notifications",
122
+ "subtitle": "Manage push, email, and security alerts",
123
+ "updateError": "Failed to update notification preferences",
124
+ "sections": {
125
+ "channels": "Channels",
126
+ "alerts": "Alerts",
127
+ "marketing": "Marketing"
128
+ },
129
+ "items": {
130
+ "push": {
131
+ "title": "Push notifications",
132
+ "subtitle": "Real-time alerts on your devices"
133
+ },
134
+ "emailDigest": {
135
+ "title": "Email digest",
136
+ "subtitle": "Periodic summary of your account activity"
137
+ },
138
+ "securityAlerts": {
139
+ "title": "Security alerts",
140
+ "subtitle": "Sign-ins, recovery codes, and key changes"
141
+ },
142
+ "marketingEmails": {
143
+ "title": "Marketing emails",
144
+ "subtitle": "Product news and occasional offers"
145
+ }
146
+ }
147
+ },
148
+ "preferences": {
149
+ "title": "Preferences",
150
+ "subtitle": "Theme, motion, and regional settings",
151
+ "sections": {
152
+ "appearance": "Appearance",
153
+ "language": "Language",
154
+ "region": "Region"
155
+ },
156
+ "theme": {
157
+ "light": "Light",
158
+ "dark": "Dark",
159
+ "system": "System default"
160
+ },
161
+ "items": {
162
+ "theme": {
163
+ "title": "Theme"
164
+ },
165
+ "reduceMotion": {
166
+ "title": "Reduce motion",
167
+ "subtitle": "Minimise animations across Oxy apps",
168
+ "systemOn": "Following system: reduce motion is on"
169
+ },
170
+ "language": {
171
+ "title": "Language"
172
+ },
173
+ "timezone": {
174
+ "title": "Timezone",
175
+ "unknown": "Unable to detect timezone"
176
+ },
177
+ "about": {
178
+ "title": "About preferences",
179
+ "subtitle": "Preferences sync across every Oxy app you sign into"
180
+ }
181
+ }
182
+ },
183
+ "connectedApps": {
184
+ "title": "Connected apps",
185
+ "subtitle": "Manage third-party app access",
186
+ "empty": {
187
+ "title": "No connected apps",
188
+ "subtitle": "Apps you authorize to sign in with your Oxy account will appear here"
189
+ },
190
+ "item": {
191
+ "lastUsed": "Last used {{relative}}"
192
+ },
193
+ "confirm": {
194
+ "title": "Revoke access",
195
+ "message": "Revoke {{name}}'s access to your Oxy account?"
196
+ },
197
+ "toasts": {
198
+ "revoked": "Revoked access for {{name}}",
199
+ "revokeFailed": "Failed to revoke access"
117
200
  }
118
201
  }
119
202
  }
120
-