nestjs-firebase-admin 0.0.72 → 0.0.74

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/.nvmrc CHANGED
@@ -1 +1 @@
1
- v16.17.1
1
+ lts/gallium
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
- [![codecov](https://codecov.io/gh/hebertcisco/nestjs-firebase-admin/branch/master/graph/badge.svg?token=N0IW1UNNIP)](https://codecov.io/gh/hebertcisco/nestjs-firebase-admin)
1
+ [![codecov](https://codecov.io/gh/hebertcisco/nestjs-firebase-admin/branch/main/graph/badge.svg?token=N0IW1UNNIP)](https://codecov.io/gh/hebertcisco/nestjs-firebase-admin)
2
2
 
3
- [![CircleCI](https://dl.circleci.com/status-badge/img/gh/hebertcisco/nestjs-firebase-admin/tree/master.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/hebertcisco/nestjs-firebase-admin/tree/master)
3
+ [![CircleCI](https://dl.circleci.com/status-badge/img/gh/hebertcisco/nestjs-firebase-admin/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/hebertcisco/nestjs-firebase-admin/tree/main)
4
4
 
5
5
  [![Node.js build and publish package](https://github.com/hebertcisco/nestjs-firebase-admin/actions/workflows/npm-publish.yml/badge.svg)](https://github.com/hebertcisco/nestjs-firebase-admin/actions/workflows/npm-publish.yml)
6
6
 
@@ -1,7 +1,7 @@
1
1
  /// <reference types="node" />
2
2
  import type { Agent } from 'node:http';
3
3
  import type { ServiceAccount } from 'firebase-admin/app';
4
- export declare type AdminConfig = {
4
+ export type AdminConfig = {
5
5
  credential: ServiceAccount;
6
6
  databaseURL?: string;
7
7
  databaseAuthVariableOverride?: object | null;
@@ -10,4 +10,4 @@ export declare type AdminConfig = {
10
10
  projectId?: string;
11
11
  httpAgent?: Agent;
12
12
  };
13
- export declare type AdminModuleOptions = AdminConfig;
13
+ export type AdminModuleOptions = AdminConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nestjs-firebase-admin",
3
- "version": "0.0.72",
3
+ "version": "0.0.74",
4
4
  "description": "Firebase Admin SDK for Nestjs",
5
5
  "author": "Hebert Cisco",
6
6
  "license": "MIT",
@@ -27,35 +27,35 @@
27
27
  "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
28
28
  },
29
29
  "dependencies": {
30
- "firebase-admin": "11.0.1"
30
+ "firebase-admin": "11.4.1"
31
31
  },
32
32
  "devDependencies": {
33
- "@commitlint/cli": "17.1.2",
34
- "@commitlint/config-angular": "17.1.0",
35
- "@nestjs/common": "8.4.7",
36
- "@nestjs/core": "8.4.7",
37
- "@nestjs/platform-express": "8.4.7",
38
- "@nestjs/testing": "8.4.7",
39
- "@types/jest": "29.1.0",
40
- "@types/node": "16.11.62",
41
- "@typescript-eslint/eslint-plugin": "5.38.1",
42
- "@typescript-eslint/parser": "5.38.1",
43
- "eslint": "8.24.0",
33
+ "@commitlint/cli": "17.3.0",
34
+ "@commitlint/config-angular": "17.3.0",
35
+ "@nestjs/common": "9.2.1",
36
+ "@nestjs/core": "9.2.1",
37
+ "@nestjs/platform-express": "9.2.1",
38
+ "@nestjs/testing": "9.2.1",
39
+ "@types/jest": "29.2.4",
40
+ "@types/node": "18.11.18",
41
+ "@typescript-eslint/eslint-plugin": "5.47.1",
42
+ "@typescript-eslint/parser": "5.47.1",
43
+ "eslint": "8.30.0",
44
44
  "eslint-config-prettier": "8.5.0",
45
45
  "eslint-plugin-import": "2.26.0",
46
- "husky": "8.0.1",
47
- "jest": "29.1.1",
48
- "lint-staged": "13.0.3",
49
- "prettier": "2.7.1",
46
+ "husky": "8.0.2",
47
+ "jest": "29.3.1",
48
+ "lint-staged": "13.1.0",
49
+ "prettier": "2.8.1",
50
50
  "reflect-metadata": "0.1.13",
51
- "release-it": "15.4.2",
51
+ "release-it": "15.6.0",
52
52
  "rimraf": "3.0.2",
53
- "rxjs": "7.5.7",
53
+ "rxjs": "7.8.0",
54
54
  "ts-jest": "29.0.3",
55
- "typescript": "4.8.4"
55
+ "typescript": "4.9.4"
56
56
  },
57
57
  "peerDependencies": {
58
- "@nestjs/common": "^7.0.0 || ^8.0.0",
58
+ "@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.2.1",
59
59
  "reflect-metadata": "^0.1.12",
60
60
  "rxjs": "^6.0.0 || ^7.0.0"
61
61
  },