@pi-r/gcp 0.12.3 → 0.12.4

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/client/index.js CHANGED
@@ -495,7 +495,7 @@ async function executeBatchQuery(credential, batch, sessionKey) {
495
495
  }
496
496
  const sp = clients[5];
497
497
  if (sp) {
498
- sp.close();
498
+ void sp.close();
499
499
  }
500
500
  };
501
501
  const getFamily = (data, row, family) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-r/gcp",
3
- "version": "0.12.3",
3
+ "version": "0.12.4",
4
4
  "description": "Google (GCP) cloud functions for E-mc.",
5
5
  "main": "client/index.js",
6
6
  "repository": {
@@ -16,10 +16,10 @@
16
16
  "license": "MIT",
17
17
  "homepage": "https://github.com/anpham6/pi-r#readme",
18
18
  "dependencies": {
19
- "@e-mc/cloud": "^0.14.4",
20
- "@e-mc/module": "^0.14.4",
21
- "@e-mc/types": "^0.14.4",
22
- "@google-cloud/firestore": "^8.6.0",
19
+ "@e-mc/cloud": "^0.14.5",
20
+ "@e-mc/module": "^0.14.5",
21
+ "@e-mc/types": "^0.14.5",
22
+ "@google-cloud/firestore": "^8.7.1",
23
23
  "@google-cloud/storage": "^7.21.0"
24
24
  }
25
25
  }
package/types/index.d.ts CHANGED
@@ -29,7 +29,7 @@ export interface GCPDatabaseQuery<T = PlainObject> extends Omit<CloudDatabase<un
29
29
  flags?: number;
30
30
  }
31
31
 
32
- export interface GCPDatabaseCredential extends GoogleAuthOptions, IFirebaseOptions {}
32
+ export interface GCPDatabaseCredential extends GoogleAuthOptions<any>, IFirebaseOptions {}
33
33
 
34
34
  export interface FirebaseOptions extends IFirebaseOptions {
35
35
  product?: "firebase";