launchbase 1.0.1 → 1.0.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "launchbase",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Generate production-ready NestJS backends with authentication, multi-tenancy, billing, and deployment in minutes",
5
5
  "author": "LaunchBase",
6
6
  "keywords": [
@@ -15,7 +15,7 @@
15
15
  "test:cov": "jest --coverage"
16
16
  },
17
17
  "dependencies": {
18
- "@launchbase/sdk": "^1.0.0",
18
+ "@launchbasex/sdk": "^1.0.0",
19
19
  "@aws-sdk/client-s3": "^3.600.0",
20
20
  "@nestjs/bullmq": "^10.0.0",
21
21
  "@nestjs/common": "^10.3.10",
@@ -5,13 +5,13 @@ TypeScript SDK for LaunchBase backend.
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install @launchbase/sdk
8
+ npm install @launchbasex/sdk
9
9
  ```
10
10
 
11
11
  ## Quick Start
12
12
 
13
13
  ```typescript
14
- import { LaunchBaseClient } from '@launchbase/sdk';
14
+ import { LaunchBaseClient } from '@launchbasex/sdk';
15
15
 
16
16
  const client = new LaunchBaseClient({
17
17
  baseUrl: 'https://your-api.com',
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "@launchbase/sdk",
2
+ "name": "@launchbasex/sdk",
3
3
  "version": "0.1.0",
4
4
  "description": "TypeScript SDK for LaunchBase API",
5
5
  "main": "dist/index.js",
@@ -1,6 +1,6 @@
1
1
  import { Injectable, OnModuleInit } from '@nestjs/common'
2
2
  import { ConfigService } from '@nestjs/config'
3
- import LaunchBase from '@launchbase/sdk'
3
+ import LaunchBase from '@launchbasex/sdk'
4
4
 
5
5
  @Injectable()
6
6
  export class LaunchBaseService implements OnModuleInit {