@yaakapp/api 0.6.1 → 0.6.3
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 +6 -2
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
Yaak is a desktop API client for interacting with REST, GraphQL, Server Sent Events (SSE),
|
|
4
4
|
WebSocket, and gRPC APIs. It's built using Tauri, Rust, and ReactJS.
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
contains the TypeScript type definitions required to make building
|
|
6
|
+
Plugins can be created in TypeScript, which are executed alongside Yaak in a NodeJS
|
|
7
|
+
runtime. This package contains the TypeScript type definitions required to make building
|
|
8
|
+
Yaak plugins a breeze.
|
|
8
9
|
|
|
9
10
|
## Quick Start
|
|
10
11
|
|
|
@@ -14,6 +15,9 @@ The easiest way to get started is by generating a plugin with the Yaak CLI:
|
|
|
14
15
|
npx @yaakapp/cli generate
|
|
15
16
|
```
|
|
16
17
|
|
|
18
|
+
For more details on creating plugins, check out
|
|
19
|
+
the [Quick Start Guide](https://feedback.yaak.app/help/articles/6911763-plugins-quick-start)
|
|
20
|
+
|
|
17
21
|
## Installation
|
|
18
22
|
|
|
19
23
|
If you prefer starting from scratch, manually install the types package:
|
package/package.json
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yaakapp/api",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"api-client",
|
|
6
6
|
"insomnia-alternative",
|
|
7
7
|
"bruno-alternative",
|
|
8
8
|
"postman-alternative"
|
|
9
9
|
],
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/mountain-loop/yaak"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://feedback.yaak.app"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://yaak.app",
|
|
10
18
|
"main": "lib/index.js",
|
|
11
19
|
"typings": "./lib/index.d.ts",
|
|
12
20
|
"files": [
|