@open-xamu-co/firebase-nuxt 1.0.0-next.2 → 1.0.0-next.3

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +0 -3
  3. package/package.json +19 -19
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  Firebase nuxt
2
2
 
3
+ # [1.0.0-next.3](https://github.com/xamu-co/firebase-nuxt/compare/v1.0.0-next.2...v1.0.0-next.3) (2026-01-08)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * make stable ([38ba0fe](https://github.com/xamu-co/firebase-nuxt/commit/38ba0fea5aa365c9c5354df566d3181a3e716d5c))
9
+
10
+
11
+ ### Features
12
+
13
+ * conditional media handler ([d472288](https://github.com/xamu-co/firebase-nuxt/commit/d4722881de6b4b7238e3bcc3fd31378dd8fb1489))
14
+
3
15
  # [1.0.0-next.2](https://github.com/xamu-co/firebase-nuxt/compare/v1.0.0-next.1...v1.0.0-next.2) (2026-01-08)
4
16
 
5
17
 
package/README.md CHANGED
@@ -59,9 +59,6 @@ F_CLIENT_EMAIL=""
59
59
  # App check, site key, public
60
60
  RECAPTCHA_ENTERPRISE_SITE_KEY=
61
61
 
62
- # Google fonts
63
- FONTS_API_KEY=
64
-
65
62
  # Project
66
63
  ORIGIN=
67
64
  COUNTRIES_API=
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@open-xamu-co/firebase-nuxt",
3
- "version": "1.0.0-next.2",
3
+ "version": "1.0.0-next.3",
4
+ "stableVersion": "0.0.1",
4
5
  "description": "Nuxt 3 module for the xamu project",
5
6
  "author": "@xamu-co",
6
7
  "type": "module",
@@ -50,33 +51,33 @@
50
51
  },
51
52
  "./client": {
52
53
  "types": "./dist/runtime/client/types/index.d.ts",
53
- "import": "./dist/runtime/client/types/index.d.ts",
54
- "default": "./dist/runtime/client/types/index.d.ts"
54
+ "import": "./dist/runtime/client/types/index.js",
55
+ "default": "./dist/runtime/client/types/index.js"
55
56
  },
56
57
  "./client/*": {
57
- "types": "./dist/runtime/client/*.d.ts",
58
- "import": "./dist/runtime/client/*.ts",
59
- "default": "./dist/runtime/client/*.ts"
58
+ "types": "./dist/runtime/client/utils/*.d.ts",
59
+ "import": "./dist/runtime/client/utils/*.js",
60
+ "default": "./dist/runtime/client/utils/*.js"
60
61
  },
61
62
  "./functions": {
62
63
  "types": "./dist/runtime/functions/types/index.d.ts",
63
- "import": "./dist/runtime/functions/types/index.d.ts",
64
- "default": "./dist/runtime/functions/types/index.d.ts"
64
+ "import": "./dist/runtime/functions/types/index.js",
65
+ "default": "./dist/runtime/functions/types/index.js"
65
66
  },
66
67
  "./functions/*": {
67
- "types": "./dist/runtime/functions/*.d.ts",
68
- "import": "./dist/runtime/functions/*.ts",
69
- "default": "./dist/runtime/functions/*.ts"
68
+ "types": "./dist/runtime/functions/utils/*.d.ts",
69
+ "import": "./dist/runtime/functions/utils/*.js",
70
+ "default": "./dist/runtime/functions/utils/*.js"
70
71
  },
71
72
  "./server": {
72
73
  "types": "./dist/runtime/server/types/index.d.ts",
73
- "import": "./dist/runtime/server/types/index.d.ts",
74
- "default": "./dist/runtime/server/types/index.d.ts"
74
+ "import": "./dist/runtime/server/types/index.js",
75
+ "default": "./dist/runtime/server/types/index.js"
75
76
  },
76
77
  "./server/*": {
77
- "types": "./dist/runtime/server/*.d.ts",
78
- "import": "./dist/runtime/server/*.ts",
79
- "default": "./dist/runtime/server/*.ts"
78
+ "types": "./dist/runtime/server/utils/*.d.ts",
79
+ "import": "./dist/runtime/server/utils/*.js",
80
+ "default": "./dist/runtime/server/utils/*.js"
80
81
  }
81
82
  },
82
83
  "files": [
@@ -86,7 +87,7 @@
86
87
  "@nuxt/kit": "^3.20.2",
87
88
  "@open-xamu-co/ui-common-enums": "^4.0.0-next.1",
88
89
  "@open-xamu-co/ui-common-helpers": "^4.0.0-next.2",
89
- "@open-xamu-co/ui-nuxt": "^4.0.0-next.4",
90
+ "@open-xamu-co/ui-nuxt": "^4.0.0-next.5",
90
91
  "@pinia/nuxt": "^0.11.0",
91
92
  "firebase": "^11.0.2",
92
93
  "firebase-admin": "^13.6.0",
@@ -160,6 +161,5 @@
160
161
  },
161
162
  "browserslist": [
162
163
  "defaults"
163
- ],
164
- "stableVersion": "0.0.1"
164
+ ]
165
165
  }