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
package/template/package.json
CHANGED
package/template/sdk/README.md
CHANGED
|
@@ -5,13 +5,13 @@ TypeScript SDK for LaunchBase backend.
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install @
|
|
8
|
+
npm install @launchbasex/sdk
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Quick Start
|
|
12
12
|
|
|
13
13
|
```typescript
|
|
14
|
-
import { LaunchBaseClient } from '@
|
|
14
|
+
import { LaunchBaseClient } from '@launchbasex/sdk';
|
|
15
15
|
|
|
16
16
|
const client = new LaunchBaseClient({
|
|
17
17
|
baseUrl: 'https://your-api.com',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Injectable, OnModuleInit } from '@nestjs/common'
|
|
2
2
|
import { ConfigService } from '@nestjs/config'
|
|
3
|
-
import LaunchBase from '@
|
|
3
|
+
import LaunchBase from '@launchbasex/sdk'
|
|
4
4
|
|
|
5
5
|
@Injectable()
|
|
6
6
|
export class LaunchBaseService implements OnModuleInit {
|