@tracktor/shared-module 2.15.8 → 2.15.10

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## [2.15.8] - 2025-07-10
3
+ ## [2.15.10] - 2025-07-10
4
4
 
5
5
  ### 🔧 Fix
6
6
  - axios export module resolution for react native
package/dist/main.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { axiosCustomInstance, type ErrorType, type BodyType } from './axios/axiosCustomInstance';
1
+ export { axiosCustomInstance, type ErrorType, type BodyType } from './axiosCustomInstance';
2
2
  export { default as RequireAuth } from './components/Utils/RequireAuth';
3
3
  export * from './components/Utils/RequireAuth';
4
4
  export { default as GTMSendPageView } from './components/Utils/GTMSendPageView';
package/package.json CHANGED
@@ -1,20 +1,22 @@
1
1
  {
2
2
  "name": "@tracktor/shared-module",
3
- "version": "2.15.8",
3
+ "version": "2.15.10",
4
4
  "type": "module",
5
5
  "license": "UNLICENSED",
6
6
  "types": "./dist/main.d.ts",
7
7
  "main": "./dist/main.umd.cjs",
8
8
  "module": "./dist/main.js",
9
- "files": [
10
- "dist"
11
- ],
9
+ "files": ["dist"],
12
10
  "exports": {
13
11
  ".": {
14
12
  "types": "./dist/main.d.ts",
15
13
  "require": "./dist/main.umd.cjs",
16
14
  "import": "./dist/main.js",
17
15
  "default": "./dist/main.umd.cjs"
16
+ },
17
+ "./axiosCustomInstance": {
18
+ "types": "./dist/axiosCustomInstance.d.ts",
19
+ "default": "./dist/axiosCustomInstance.ts"
18
20
  }
19
21
  },
20
22
  "repository": {