@explorins/pers-sdk-react-native 1.5.21 → 1.5.22
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/dist/index.js
CHANGED
|
@@ -22632,17 +22632,21 @@ class ErrorUtils {
|
|
|
22632
22632
|
if (typeof error !== 'object' || error === null)
|
|
22633
22633
|
return false;
|
|
22634
22634
|
const err = error;
|
|
22635
|
-
|
|
22636
|
-
|
|
22637
|
-
|
|
22635
|
+
// Check for explicit token expired indicators
|
|
22636
|
+
if (err?.code === 'TOKEN_EXPIRED' || err?.errorCode === 'TOKEN_EXPIRED') {
|
|
22637
|
+
return true;
|
|
22638
|
+
}
|
|
22639
|
+
// Check in response data
|
|
22640
|
+
const apiError = err?.response?.data || err;
|
|
22638
22641
|
if (apiError?.code === 'TOKEN_EXPIRED' || apiError?.errorCode === 'TOKEN_EXPIRED') {
|
|
22639
22642
|
return true;
|
|
22640
22643
|
}
|
|
22641
|
-
// Any 401
|
|
22644
|
+
// Any 401 error is treated as token expiration
|
|
22645
|
+
const status = err?.status || err?.statusCode || err?.response?.status;
|
|
22642
22646
|
if (status === 401) {
|
|
22643
22647
|
return true;
|
|
22644
22648
|
}
|
|
22645
|
-
// Check for token-related messages
|
|
22649
|
+
// Check for token-related messages
|
|
22646
22650
|
const message = apiError?.message || err?.message || '';
|
|
22647
22651
|
if (message && typeof message === 'string') {
|
|
22648
22652
|
const lowerMessage = message.toLowerCase();
|
|
@@ -22659,8 +22663,9 @@ class ErrorUtils {
|
|
|
22659
22663
|
if (typeof error !== 'object' || error === null)
|
|
22660
22664
|
return 'Unknown error';
|
|
22661
22665
|
const err = error;
|
|
22662
|
-
|
|
22663
|
-
|
|
22666
|
+
// Try structured error first
|
|
22667
|
+
const apiError = err?.response?.data || err;
|
|
22668
|
+
return apiError?.message || apiError?.detail || apiError?.userMessage || err?.message || 'Request failed';
|
|
22664
22669
|
}
|
|
22665
22670
|
/**
|
|
22666
22671
|
* Fast status code extraction
|
|
@@ -22669,6 +22674,7 @@ class ErrorUtils {
|
|
|
22669
22674
|
if (typeof error !== 'object' || error === null)
|
|
22670
22675
|
return null;
|
|
22671
22676
|
const err = error;
|
|
22677
|
+
// Direct properties first
|
|
22672
22678
|
return err?.status || err?.statusCode || err?.response?.status || null;
|
|
22673
22679
|
}
|
|
22674
22680
|
/**
|
|
@@ -22678,11 +22684,14 @@ class ErrorUtils {
|
|
|
22678
22684
|
if (typeof error !== 'object' || error === null)
|
|
22679
22685
|
return false;
|
|
22680
22686
|
const err = error;
|
|
22681
|
-
// Check explicit retryable property
|
|
22687
|
+
// Check explicit retryable property
|
|
22688
|
+
const apiError = err?.response?.data || err;
|
|
22689
|
+
if (typeof apiError?.retryable === 'boolean')
|
|
22690
|
+
return apiError.retryable;
|
|
22682
22691
|
if (typeof err?.retryable === 'boolean')
|
|
22683
22692
|
return err.retryable;
|
|
22684
|
-
//
|
|
22685
|
-
const status =
|
|
22693
|
+
// Status-based check
|
|
22694
|
+
const status = this.getStatus(error);
|
|
22686
22695
|
return status === null || status >= 500 || status === 429;
|
|
22687
22696
|
}
|
|
22688
22697
|
/**
|
|
@@ -22694,6 +22703,11 @@ class ErrorUtils {
|
|
|
22694
22703
|
// Try to extract structured error response from HTTP error
|
|
22695
22704
|
if (error && typeof error === 'object') {
|
|
22696
22705
|
const httpError = error;
|
|
22706
|
+
// Use centralized parsing for React Native HTTP client format
|
|
22707
|
+
const parsedError = this.parseHttpClientError(error);
|
|
22708
|
+
if (parsedError && typeof parsedError === 'object') {
|
|
22709
|
+
return parsedError;
|
|
22710
|
+
}
|
|
22697
22711
|
// Check if error has response data (common in HTTP clients)
|
|
22698
22712
|
if (httpError.response?.data) {
|
|
22699
22713
|
return httpError.response.data;
|
|
@@ -22729,6 +22743,38 @@ class ErrorUtils {
|
|
|
22729
22743
|
};
|
|
22730
22744
|
}
|
|
22731
22745
|
}
|
|
22746
|
+
/**
|
|
22747
|
+
* Parse React Native HTTP client error format
|
|
22748
|
+
* Handles format: "HTTP 401: Unauthorized - {json}"
|
|
22749
|
+
*/
|
|
22750
|
+
static parseHttpClientError(error) {
|
|
22751
|
+
try {
|
|
22752
|
+
if (typeof error === 'object' && error !== null) {
|
|
22753
|
+
const err = error;
|
|
22754
|
+
const message = err?.message || '';
|
|
22755
|
+
if (typeof message === 'string' && message.includes('HTTP') && message.includes(' - ')) {
|
|
22756
|
+
// Extract JSON part after " - "
|
|
22757
|
+
const jsonStart = message.lastIndexOf(' - ');
|
|
22758
|
+
if (jsonStart !== -1) {
|
|
22759
|
+
const jsonStr = message.substring(jsonStart + 3);
|
|
22760
|
+
if (jsonStr.trim()) {
|
|
22761
|
+
try {
|
|
22762
|
+
return JSON.parse(jsonStr);
|
|
22763
|
+
}
|
|
22764
|
+
catch {
|
|
22765
|
+
// If JSON parsing fails, return the raw string as message
|
|
22766
|
+
return { message: jsonStr };
|
|
22767
|
+
}
|
|
22768
|
+
}
|
|
22769
|
+
}
|
|
22770
|
+
}
|
|
22771
|
+
}
|
|
22772
|
+
return null;
|
|
22773
|
+
}
|
|
22774
|
+
catch {
|
|
22775
|
+
return null;
|
|
22776
|
+
}
|
|
22777
|
+
}
|
|
22732
22778
|
/**
|
|
22733
22779
|
* Check if error is from PERS API (uses @explorins/pers-shared format)
|
|
22734
22780
|
*/
|
|
@@ -26091,13 +26137,11 @@ class TokenRefreshManager {
|
|
|
26091
26137
|
if (isTokenExpired(token, this.tokenRefreshMarginSeconds)) {
|
|
26092
26138
|
const refreshSuccess = await this.attemptInternalRefresh();
|
|
26093
26139
|
if (!refreshSuccess) {
|
|
26094
|
-
// Failed to refresh - delegate cleanup to AuthService
|
|
26095
26140
|
await this.authService.handleAuthFailure();
|
|
26096
26141
|
}
|
|
26097
26142
|
}
|
|
26098
26143
|
}
|
|
26099
26144
|
catch (error) {
|
|
26100
|
-
// Delegate token cleanup to AuthService for consistency
|
|
26101
26145
|
await this.authService.handleAuthFailure();
|
|
26102
26146
|
}
|
|
26103
26147
|
}
|
|
@@ -26107,7 +26151,6 @@ class TokenRefreshManager {
|
|
|
26107
26151
|
return true;
|
|
26108
26152
|
}
|
|
26109
26153
|
catch (error) {
|
|
26110
|
-
// Check if this is a 401 error and set auth failure flag
|
|
26111
26154
|
const isAuthError = error && typeof error === 'object' && 'status' in error && error.status === 401;
|
|
26112
26155
|
if (isAuthError) {
|
|
26113
26156
|
await this.authService.handleAuthFailure();
|
|
@@ -26368,7 +26411,6 @@ class PersApiClient {
|
|
|
26368
26411
|
async ensureInitialized() {
|
|
26369
26412
|
if (this.initializationPromise) {
|
|
26370
26413
|
await this.initializationPromise;
|
|
26371
|
-
// Clear after successful initialization to prevent holding references
|
|
26372
26414
|
this.initializationPromise = null;
|
|
26373
26415
|
}
|
|
26374
26416
|
}
|
|
@@ -26384,8 +26426,9 @@ class PersApiClient {
|
|
|
26384
26426
|
}
|
|
26385
26427
|
const { retryCount = 0, responseType = 'json', bypassAuth = false } = options || {};
|
|
26386
26428
|
const url = `${this.apiRoot}${endpoint}`;
|
|
26387
|
-
//
|
|
26429
|
+
// SMART TOKEN VALIDATION: Only check if we suspect the token might be expired
|
|
26388
26430
|
if (!bypassAuth && this.mergedConfig.authProvider && retryCount === 0) {
|
|
26431
|
+
// Fire-and-forget validation - don't block the request unless we know there's an issue
|
|
26389
26432
|
this.ensureValidToken().catch(error => {
|
|
26390
26433
|
console.debug('[PersApiClient] Background token validation failed:', error);
|
|
26391
26434
|
});
|
|
@@ -26437,7 +26480,7 @@ class PersApiClient {
|
|
|
26437
26480
|
}
|
|
26438
26481
|
}
|
|
26439
26482
|
catch (refreshError) {
|
|
26440
|
-
//
|
|
26483
|
+
// console.error('[PersApiClient] Token refresh failed:', refreshError);
|
|
26441
26484
|
}
|
|
26442
26485
|
}
|
|
26443
26486
|
// Auth failure - let AuthService handle cleanup and notify app
|
|
@@ -31828,18 +31871,18 @@ class ReactNativeHttpClient {
|
|
|
31828
31871
|
try {
|
|
31829
31872
|
const response = await fetch(fullUrl, config);
|
|
31830
31873
|
if (!response.ok) {
|
|
31831
|
-
//
|
|
31832
|
-
let
|
|
31874
|
+
// Get raw error response for ErrorUtils to handle
|
|
31875
|
+
let errorText = '';
|
|
31833
31876
|
try {
|
|
31834
|
-
|
|
31835
|
-
if (errorBody) {
|
|
31836
|
-
errorMessage += ` - ${errorBody}`;
|
|
31837
|
-
}
|
|
31877
|
+
errorText = await response.text();
|
|
31838
31878
|
}
|
|
31839
31879
|
catch (e) {
|
|
31840
31880
|
// Ignore errors when reading error body
|
|
31841
31881
|
}
|
|
31842
|
-
|
|
31882
|
+
// Create simple error with HTTP status and raw response
|
|
31883
|
+
const httpError = new Error(`HTTP ${response.status}: ${response.statusText} - ${errorText}`);
|
|
31884
|
+
httpError.status = response.status;
|
|
31885
|
+
throw httpError;
|
|
31843
31886
|
}
|
|
31844
31887
|
// Handle different response types
|
|
31845
31888
|
switch (options?.responseType) {
|