@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 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)