@oxyhq/services 6.9.40 → 6.9.42
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/lib/commonjs/ui/components/SignInModal.js +1 -1
- package/lib/commonjs/ui/screens/OxyAuthScreen.js +1 -1
- package/lib/module/ui/components/SignInModal.js +1 -1
- package/lib/module/ui/screens/OxyAuthScreen.js +1 -1
- package/package.json +2 -2
- package/src/ui/components/SignInModal.tsx +1 -1
- package/src/ui/screens/OxyAuthScreen.tsx +1 -1
|
@@ -266,7 +266,7 @@ const SignInModal = () => {
|
|
|
266
266
|
try {
|
|
267
267
|
const url = new URL(baseURL);
|
|
268
268
|
if (url.port === '3001') {
|
|
269
|
-
url.port = '
|
|
269
|
+
url.port = '3002';
|
|
270
270
|
authWebUrl = url.origin;
|
|
271
271
|
} else if (url.hostname.startsWith('api.')) {
|
|
272
272
|
url.hostname = `auth.${url.hostname.slice(4)}`;
|
|
@@ -256,7 +256,7 @@ const SignInModal = () => {
|
|
|
256
256
|
try {
|
|
257
257
|
const url = new URL(baseURL);
|
|
258
258
|
if (url.port === '3001') {
|
|
259
|
-
url.port = '
|
|
259
|
+
url.port = '3002';
|
|
260
260
|
authWebUrl = url.origin;
|
|
261
261
|
} else if (url.hostname.startsWith('api.')) {
|
|
262
262
|
url.hostname = `auth.${url.hostname.slice(4)}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oxyhq/services",
|
|
3
|
-
"version": "6.9.
|
|
3
|
+
"version": "6.9.42",
|
|
4
4
|
"description": "OxyHQ Expo/React Native SDK — UI components, screens, and native features",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"module": "lib/module/index.js",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"@lottiefiles/dotlottie-react": "^0.13.5",
|
|
74
|
-
"@oxyhq/bloom": "0.1.
|
|
74
|
+
"@oxyhq/bloom": "0.1.25",
|
|
75
75
|
"@oxyhq/core": "*",
|
|
76
76
|
"@react-native-async-storage/async-storage": "2.2.0",
|
|
77
77
|
"@react-native-community/netinfo": "^11.4.1",
|
|
@@ -288,7 +288,7 @@ const SignInModal: React.FC = () => {
|
|
|
288
288
|
try {
|
|
289
289
|
const url = new URL(baseURL);
|
|
290
290
|
if (url.port === '3001') {
|
|
291
|
-
url.port = '
|
|
291
|
+
url.port = '3002';
|
|
292
292
|
authWebUrl = url.origin;
|
|
293
293
|
} else if (url.hostname.startsWith('api.')) {
|
|
294
294
|
url.hostname = `auth.${url.hostname.slice(4)}`;
|
|
@@ -63,7 +63,7 @@ const resolveAuthWebBaseUrl = (baseURL: string, authWebUrl?: string): string =>
|
|
|
63
63
|
try {
|
|
64
64
|
const url = new URL(baseURL);
|
|
65
65
|
if (url.port === '3001') {
|
|
66
|
-
url.port = '
|
|
66
|
+
url.port = '3002';
|
|
67
67
|
return url.origin;
|
|
68
68
|
}
|
|
69
69
|
if (url.hostname.startsWith('api.')) {
|