@fdm-monster/client-next 0.1.0 → 2.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.
Binary file
package/README.md CHANGED
@@ -2,6 +2,23 @@
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
+ # Fetch OpenAPI spec from backend and generate TypeScript client
12
+ yarn openapi-ts
13
+ ```
14
+
15
+ Or run the steps separately:
16
+
17
+ ```bash
18
+ # Start watch mode
19
+ yarn openapi-ts:watch
20
+ ```
21
+
5
22
  ## Notes to self
6
23
 
7
24
  - Example to fix alias includes https://github.com/mutoe/vue3-realworld-example-app/blob/master/tsconfig.json
@@ -14,6 +31,7 @@ This is the official scaffolding tool for Vuetify, designed to give you a head s
14
31
  ],
15
32
  ```
16
33
 
34
+
17
35
  ## ❗️ Important Links
18
36
 
19
37
  - 📄 [Docs](https://vuetifyjs.com/)
package/RELEASE_NOTES.MD CHANGED
@@ -1,6 +1,28 @@
1
1
  # Develop
2
2
 
3
- ## Client 0.0.28
3
+ ## Client 2.0.1
4
+
5
+ Features
6
+
7
+ - Tag color system
8
+ - Tag management dialog with color picker
9
+ - Clickable floor/tag/camera chips to open edit dialogs
10
+ - Action menus on printer list for floors, tags, and cameras
11
+ - Job (and queue) page
12
+ - Queue top menu
13
+ - Files page
14
+ - Set complete/failed/cancelled/unknown on job page
15
+ - Job thumbnails viewer dialog
16
+ - Redesign navigation bars
17
+
18
+ Fixes
19
+
20
+ - Reordering floors now works
21
+ - YAML export dialog now exports exportTags
22
+ - Camera grid camera filter clear now works
23
+ - AppLoader will redirect properly even when VueRouter hasnt kicked in
24
+
25
+ ## Client 2.0.0
4
26
 
5
27
  Features
6
28
 
@@ -50,6 +72,7 @@ Fixes
50
72
  - Redirect from login to login prevented
51
73
  - First time setup YAML import and manual setup will now trigger AppLoad through wizardCompleted
52
74
  - Reimplement dialog context to be more strictly typed
75
+ - Remove AppConstants as it's not useful
53
76
 
54
77
  Chores
55
78