Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 43 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,46 @@
## Copyright
# REDREDGROUP NestJS Packages

NestJS integrations maintained in a pnpm workspace.

## Packages

- `@redredgroup/nestjs-firebase-admin`: Firebase Admin integration
- `@redredgroup/nestjs-google-auth`: Google Authentication integration
- `@redredgroup/nestjs-mixpanel`: Mixpanel integration
- `@redredgroup/nestjs-openai`: OpenAI integration
- `@redredgroup/nestjs-solapi`: SOLAPI integration

## Requirements

- Node.js `24.13.0`
- pnpm `10.11.1`

## Install

© 2025 REDREDGROUP Software. All Right Reserved.
```bash
pnpm install
```

## License
## Workspace Commands

```bash
pnpm format
pnpm lint
pnpm type-check
pnpm test
pnpm build:production
```

This workspace uses Biome for formatting and linting.

## Publish

```bash
pnpm package-publish
```

Changesets are used for versioning and release notes.

## Copyright

Apache-2.0
© 2026 REDREDGROUP Software. All Right Reserved.
8 changes: 8 additions & 0 deletions packages/nestjs-firebase-admin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @redredgroup/nestjs-firebase-admin

## 1.2.2

### Patch Changes

- Re-export `firebase-admin/app` runtime helpers such as `cert` from the package public API.

This allows consumers to import both Firebase Admin types and credential helpers directly from `@redredgroup/nestjs-firebase-admin`.

## 1.2.1

### Patch Changes
Expand Down
9 changes: 9 additions & 0 deletions packages/nestjs-firebase-admin/libs/firebase-admin.app.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export {
applicationDefault,
cert,
deleteApp,
getApp,
getApps,
initializeApp,
refreshToken,
} from 'firebase-admin/app';
7 changes: 6 additions & 1 deletion packages/nestjs-firebase-admin/libs/firebase-admin.types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
export type * as FirebaseAdminApp from 'firebase-admin/app';
export type { App, AppOptions } from 'firebase-admin/app';
export type {
App,
AppOptions,
Credential,
ServiceAccount,
} from 'firebase-admin/app';
export type * as FirebaseAdminAuth from 'firebase-admin/auth';
export type {
ActionCodeSettings,
Expand Down
1 change: 1 addition & 0 deletions packages/nestjs-firebase-admin/libs/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './firebase-admin.app';
export * from './firebase-admin.module';
export * from './firebase-admin.service';
export * from './firebase-admin.types';
Expand Down
2 changes: 1 addition & 1 deletion packages/nestjs-firebase-admin/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@redredgroup/nestjs-firebase-admin",
"description": "Firebase Admin integration to a NestJS application",
"version": "1.2.1",
"version": "1.2.2",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
Loading