@umituz/react-native-uuid 1.0.0 → 1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-uuid",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Cross-platform UUID generation utility for React Native apps using expo-crypto",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -45,4 +45,3 @@
45
45
  "LICENSE"
46
46
  ]
47
47
  }
48
-
package/src/index.ts CHANGED
@@ -1,16 +1,7 @@
1
1
  /**
2
- * @umituz/react-native-uuid - Public API
2
+ * React Native UUID
3
3
  *
4
- * Cross-platform UUID generation utility for React Native apps
5
- * Uses expo-crypto for secure UUID generation
6
- *
7
- * Usage:
8
- * import { generateUUID, uuidv4 } from '@umituz/react-native-uuid';
4
+ * Cross-platform UUID generation for React Native apps
9
5
  */
10
6
 
11
- // =============================================================================
12
- // INFRASTRUCTURE LAYER - Utilities
13
- // =============================================================================
14
-
15
- export { generateUUID, uuidv4 } from './infrastructure/utils/UUIDUtils';
16
-
7
+ export { generateUUID } from './infrastructure/utils/UUIDUtils';
@@ -25,9 +25,3 @@ export const generateUUID = (): string => {
25
25
  return Crypto.randomUUID();
26
26
  };
27
27
 
28
- /**
29
- * Alias for generateUUID (backward compatibility)
30
- * @deprecated Use generateUUID() instead
31
- */
32
- export const uuidv4 = generateUUID;
33
-