@quatrain/cloudwrapper-firebase 1.2.3 → 1.2.5-beta.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.
@@ -30,6 +30,6 @@ export declare class FirebaseCloudWrapper extends AbstractCloudWrapper {
30
30
  * @returns The generated CloudFunction event handler.
31
31
  * @throws {Error} If action type is unknown.
32
32
  */
33
- storageTrigger(func: any, eventType: BackendAction): CloudFunction<import("firebase-functions/storage").StorageEvent>;
33
+ storageTrigger(func: any, eventType: BackendAction): CloudFunction<import("firebase-functions/v2/storage").StorageEvent>;
34
34
  protected _initialize(): void;
35
35
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quatrain/cloudwrapper-firebase",
3
- "version": "1.2.3",
3
+ "version": "1.2.5-beta.0",
4
4
  "license": "AGPL-3.0-only",
5
5
  "description": "Cloud Wrapper adapter for Firebase",
6
6
  "main": "dist/index.js",
@@ -23,8 +23,8 @@
23
23
  "@quatrain/core": "^1.2.18"
24
24
  },
25
25
  "dependencies": {
26
- "@quatrain/backend": "^1.2.18",
27
- "@quatrain/cloudwrapper": "^1.2.3",
26
+ "@quatrain/backend": "^1.2.20",
27
+ "@quatrain/cloudwrapper": "^1.2.4-beta.0",
28
28
  "@quatrain/core": "^1.2.18",
29
29
  "firebase-admin": "^13.4.0",
30
30
  "firebase-functions": "^6.4.0"
@@ -49,5 +49,6 @@
49
49
  },
50
50
  "typedoc": {
51
51
  "entryPoint": "src/index.ts"
52
- }
52
+ },
53
+ "stableVersion": "1.2.4"
53
54
  }