@applite/js-sdk 0.0.13 → 0.0.14
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 +13 -0
- package/dist/index.d.mts +824 -614
- package/dist/index.d.ts +824 -614
- package/dist/index.js +118 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +117 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -104,6 +104,19 @@ await client.module.method({
|
|
|
104
104
|
| `delete(params)` | Delete an address |
|
|
105
105
|
| `getById(params)` | Get address by ID |
|
|
106
106
|
|
|
107
|
+
#### Testimony API (`client.testimony`)
|
|
108
|
+
|
|
109
|
+
| Method | Description |
|
|
110
|
+
|--------|-------------|
|
|
111
|
+
| `create(params)` | Admin: Create a testimony |
|
|
112
|
+
| `list(params)` | Admin: List testimonies with filters |
|
|
113
|
+
| `getById(params)` | Admin: Get testimony by ID |
|
|
114
|
+
| `update(params)` | Admin: Update a testimony |
|
|
115
|
+
| `delete(params)` | Admin: Delete a testimony |
|
|
116
|
+
| `updateStatus(params)` | Admin: Approve or reject testimony |
|
|
117
|
+
| `submit(params)` | Customer: Submit a new testimony |
|
|
118
|
+
| `listPublic(params)` | Public: Get approved testimonies |
|
|
119
|
+
|
|
107
120
|
#### Stats API (`client.app.stats`)
|
|
108
121
|
|
|
109
122
|
| Method | Description |
|