@open-xamu-co/firebase-nuxt 1.0.0-next.4 → 1.0.0-next.5
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,5 +1,12 @@
|
|
|
1
1
|
Firebase nuxt
|
|
2
2
|
|
|
3
|
+
# [1.0.0-next.5](https://github.com/xamu-co/firebase-nuxt/compare/v1.0.0-next.4...v1.0.0-next.5) (2026-01-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* remove problematic schema ([c53c195](https://github.com/xamu-co/firebase-nuxt/commit/c53c1952d5713e75479d4d32d99645d5fccb9a1f))
|
|
9
|
+
|
|
3
10
|
# [1.0.0-next.4](https://github.com/xamu-co/firebase-nuxt/compare/v1.0.0-next.3...v1.0.0-next.4) (2026-01-08)
|
|
4
11
|
|
|
5
12
|
|
package/dist/module.d.mts
CHANGED
|
@@ -30,10 +30,6 @@ interface FirebaseNuxtModuleOptions {
|
|
|
30
30
|
*/
|
|
31
31
|
sudo: (context: H3Context) => boolean;
|
|
32
32
|
}
|
|
33
|
-
declare module "nuxt/schema" {
|
|
34
|
-
interface PublicRuntimeConfig extends FirebaseNuxtPublicRuntimeConfig {
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
33
|
declare module "@nuxt/schema" {
|
|
38
34
|
interface PublicRuntimeConfig extends FirebaseNuxtPublicRuntimeConfig {
|
|
39
35
|
}
|
package/dist/module.json
CHANGED
|
@@ -24,7 +24,7 @@ interface OnCreatedOptions<T extends SharedData> {
|
|
|
24
24
|
export declare function onCreated<T extends SharedData>(collectionPath: string, callback?: (newDoc: QueryDocumentSnapshot<T>, utils: {
|
|
25
25
|
createdAt: Date;
|
|
26
26
|
logger: tLogger;
|
|
27
|
-
}) => Partial<T> | undefined | void | Promise<Partial<T> | undefined | void>, { defaults, exclude }?: OnCreatedOptions<T>): import("firebase-functions").CloudFunction<import("firebase-functions/v2/firestore").FirestoreEvent<import("firebase-functions/v2/firestore").QueryDocumentSnapshot | undefined, Record<string, string>>>;
|
|
27
|
+
}) => Partial<T> | undefined | void | Promise<Partial<T> | undefined | void>, { defaults, exclude }?: OnCreatedOptions<T>): import("firebase-functions/core").CloudFunction<import("firebase-functions/v2/firestore").FirestoreEvent<import("firebase-functions/v2/firestore").QueryDocumentSnapshot | undefined, Record<string, string>>>;
|
|
28
28
|
interface OnUpdatedOptions<T extends SharedData> {
|
|
29
29
|
/**
|
|
30
30
|
* Default values when not provided
|
|
@@ -41,7 +41,7 @@ interface OnUpdatedOptions<T extends SharedData> {
|
|
|
41
41
|
export declare function onUpdated<T extends SharedData>(collectionPath: string, callback?: (newDoc: QueryDocumentSnapshot<T>, oldDoc: QueryDocumentSnapshot<T>, utils: {
|
|
42
42
|
updatedAt: Date;
|
|
43
43
|
logger: tLogger;
|
|
44
|
-
}) => Partial<T> | undefined | void | Promise<Partial<T> | undefined | void>, { defaults }?: OnUpdatedOptions<T>): import("firebase-functions").CloudFunction<import("firebase-functions/v2/firestore").FirestoreEvent<import("firebase-functions").Change<import("firebase-functions/v2/firestore").QueryDocumentSnapshot> | undefined, Record<string, string>>>;
|
|
44
|
+
}) => Partial<T> | undefined | void | Promise<Partial<T> | undefined | void>, { defaults }?: OnUpdatedOptions<T>): import("firebase-functions/core").CloudFunction<import("firebase-functions/v2/firestore").FirestoreEvent<import("firebase-functions/v1").Change<import("firebase-functions/v2/firestore").QueryDocumentSnapshot> | undefined, Record<string, string>>>;
|
|
45
45
|
/**
|
|
46
46
|
* Runs callback after document has been removed
|
|
47
47
|
*
|
|
@@ -52,7 +52,7 @@ export declare function onUpdated<T extends SharedData>(collectionPath: string,
|
|
|
52
52
|
export declare function onDelete<T extends SharedData>(collectionPath: string, callback: (deletedDoc: QueryDocumentSnapshot<T>, utils: {
|
|
53
53
|
deletedAt: Date;
|
|
54
54
|
logger: tLogger;
|
|
55
|
-
}) => void): import("firebase-functions").CloudFunction<import("firebase-functions/v2/firestore").FirestoreEvent<import("firebase-functions/v2/firestore").QueryDocumentSnapshot | undefined, Record<string, string>>>;
|
|
55
|
+
}) => void): import("firebase-functions/core").CloudFunction<import("firebase-functions/v2/firestore").FirestoreEvent<import("firebase-functions/v2/firestore").QueryDocumentSnapshot | undefined, Record<string, string>>>;
|
|
56
56
|
/**
|
|
57
57
|
* Runs callback at given schedule
|
|
58
58
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-xamu-co/firebase-nuxt",
|
|
3
|
-
"version": "1.0.0-next.
|
|
3
|
+
"version": "1.0.0-next.5",
|
|
4
4
|
"stableVersion": "0.0.1",
|
|
5
5
|
"description": "Nuxt 3 module for the xamu project",
|
|
6
6
|
"author": "@xamu-co",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"@nuxt/kit": "^3.20.2",
|
|
88
88
|
"@open-xamu-co/ui-common-enums": "^4.0.0-next.1",
|
|
89
89
|
"@open-xamu-co/ui-common-helpers": "^4.0.0-next.2",
|
|
90
|
-
"@open-xamu-co/ui-nuxt": "^4.0.0-next.
|
|
90
|
+
"@open-xamu-co/ui-nuxt": "^4.0.0-next.6",
|
|
91
91
|
"@pinia/nuxt": "^0.11.0",
|
|
92
92
|
"firebase": "^11.0.2",
|
|
93
93
|
"firebase-admin": "^13.6.0",
|