@repliqo/sdk-react-native 0.4.0 → 0.4.1

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.
@@ -1,5 +1,5 @@
1
1
  import { SDKConfig } from '../types/events';
2
- export declare const REPLIQO_API_URL = "https://api-repliqo.odmservice.site";
2
+ export declare const REPLIQO_API_URL = "https://api-repliqo.juan-sebastian.dev";
3
3
  export declare const DEFAULT_CONFIG: Required<Omit<SDKConfig, 'apiKey' | 'appId' | 'storage'>>;
4
4
  export type ResolvedConfig = SDKConfig & typeof DEFAULT_CONFIG;
5
5
  export declare function resolveConfig(config: SDKConfig): ResolvedConfig;
@@ -2,7 +2,9 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.DEFAULT_CONFIG = exports.REPLIQO_API_URL = void 0;
4
4
  exports.resolveConfig = resolveConfig;
5
- exports.REPLIQO_API_URL = 'https://api-repliqo.odmservice.site';
5
+ // Dominio actual (el viejo odmservice.site expiró en 2026); el túnel de
6
+ // cloudflared rutea api-repliqo.juan-sebastian.dev → PC :3050
7
+ exports.REPLIQO_API_URL = 'https://api-repliqo.juan-sebastian.dev';
6
8
  exports.DEFAULT_CONFIG = {
7
9
  batchSize: 20,
8
10
  flushInterval: 30000,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@repliqo/sdk-react-native",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Session replay & analytics SDK for React Native. Captures screenshots (including modals/alerts), navigation, screen visits, and custom events.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,6 +1,8 @@
1
1
  import { SDKConfig } from '../types/events';
2
2
 
3
- export const REPLIQO_API_URL = 'https://api-repliqo.odmservice.site';
3
+ // Dominio actual (el viejo odmservice.site expiró en 2026); el túnel de
4
+ // cloudflared rutea api-repliqo.juan-sebastian.dev → PC :3050
5
+ export const REPLIQO_API_URL = 'https://api-repliqo.juan-sebastian.dev';
4
6
 
5
7
  export const DEFAULT_CONFIG: Required<
6
8
  Omit<SDKConfig, 'apiKey' | 'appId' | 'storage'>