@fdm-monster/client-next 0.1.0 → 2.0.0

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.
Binary file
package/README.md CHANGED
@@ -2,6 +2,26 @@
2
2
 
3
3
  This is the official scaffolding tool for Vuetify, designed to give you a head start in building your new Vuetify application. It sets up a base template with all the necessary configurations and standard directory structure, enabling you to begin development without the hassle of setting up the project from scratch.
4
4
 
5
+ ### Prerequisites
6
+ - Backend server must be running at `http://127.0.0.1:4000`
7
+
8
+ ### Generate API Client
9
+
10
+ ```bash
11
+ # One command to fetch spec and generate client
12
+ yarn generate:api
13
+ ```
14
+
15
+ Or run the steps separately:
16
+
17
+ ```bash
18
+ # 1. Fetch OpenAPI spec from backend
19
+ yarn fetch:openapi
20
+
21
+ # 2. Generate TypeScript client
22
+ yarn openapi-ts
23
+ ```
24
+
5
25
  ## Notes to self
6
26
 
7
27
  - Example to fix alias includes https://github.com/mutoe/vue3-realworld-example-app/blob/master/tsconfig.json
@@ -14,6 +34,7 @@ This is the official scaffolding tool for Vuetify, designed to give you a head s
14
34
  ],
15
35
  ```
16
36
 
37
+
17
38
  ## ❗️ Important Links
18
39
 
19
40
  - 📄 [Docs](https://vuetifyjs.com/)
package/RELEASE_NOTES.MD CHANGED
@@ -1,6 +1,6 @@
1
1
  # Develop
2
2
 
3
- ## Client 0.0.28
3
+ ## Client 2.0.0
4
4
 
5
5
  Features
6
6
 
@@ -50,6 +50,7 @@ Fixes
50
50
  - Redirect from login to login prevented
51
51
  - First time setup YAML import and manual setup will now trigger AppLoad through wizardCompleted
52
52
  - Reimplement dialog context to be more strictly typed
53
+ - Remove AppConstants as it's not useful
53
54
 
54
55
  Chores
55
56