@bshsolutions/sdk 0.0.1
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/README.md +38 -0
- package/dist/chunk-HHI43U6W.js +697 -0
- package/dist/chunk-HHI43U6W.js.map +1 -0
- package/dist/chunk-NPZVTE5U.js +217 -0
- package/dist/chunk-NPZVTE5U.js.map +1 -0
- package/dist/chunk-WMHRN3IR.js +55 -0
- package/dist/chunk-WMHRN3IR.js.map +1 -0
- package/dist/client/index.d.ts +7 -0
- package/dist/client/index.js +4 -0
- package/dist/client/index.js.map +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +112 -0
- package/dist/index.js.map +1 -0
- package/dist/services/core/index.d.ts +18 -0
- package/dist/services/core/index.js +20 -0
- package/dist/services/core/index.js.map +1 -0
- package/dist/services/index.d.ts +2 -0
- package/dist/services/index.js +3 -0
- package/dist/services/index.js.map +1 -0
- package/dist/types/index.d.ts +408 -0
- package/dist/types/index.js +3 -0
- package/dist/types/index.js.map +1 -0
- package/dist/types-lV042-cm.d.ts +286 -0
- package/package.json +74 -0
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# @bshsolutions/sdk
|
|
2
|
+
|
|
3
|
+
A TypeScript SDK for integrating with [BSH Engine](https://engine.bousalih.com) - a low code backend platform that allows you to create APIs for your application with minimal configuration.
|
|
4
|
+
|
|
5
|
+
## What is BSH Engine?
|
|
6
|
+
|
|
7
|
+
[BSH Engine](https://engine.bousalih.com) is a backend tool that enables you to build robust APIs quickly without writing boilerplate code. It provides:
|
|
8
|
+
|
|
9
|
+
- **Entity Management**: Create, read, update, and delete entities with built-in CRUD operations
|
|
10
|
+
- **Search & Filtering**: Advanced search and filtering for your entities
|
|
11
|
+
- **Authentication**: User registration, login, and JWT token management
|
|
12
|
+
- **File Storage**: Upload and manage images and files
|
|
13
|
+
- **Email Services**: Send emails with templates
|
|
14
|
+
- **API Key Management**: Secure API key generation and management
|
|
15
|
+
- Visit [https://engine.bousalih.com](https://engine.bousalih.com) for more details.
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npm install @bshsolutions/sdk
|
|
21
|
+
# or
|
|
22
|
+
yarn add @bshsolutions/sdk
|
|
23
|
+
# or
|
|
24
|
+
pnpm add @bshsolutions/sdk
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Quick Start
|
|
28
|
+
|
|
29
|
+
### Basic Setup
|
|
30
|
+
|
|
31
|
+
```typescript
|
|
32
|
+
import { BshEngine } from '@bshsolutions/sdk';
|
|
33
|
+
|
|
34
|
+
export const bshServices = new BshEngine()
|
|
35
|
+
.withHost('https://you-instance.com')
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
> for full documtation on how to use it visit: [https://docs.bousalih.com/docs/bsh-engine/sdk](https://docs.bousalih.com/docs/bsh-engine/sdk)
|