bfg-common 1.3.322 → 1.3.323

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.
@@ -1,3 +1,5 @@
1
+ import { UI_I_State } from '~/lib/models/interfaces'
2
+
1
3
  export interface UI_I_ErrorValidationField<T = string> {
2
4
  error_message: string
3
5
  field: T
@@ -26,7 +28,7 @@ export interface UI_I_RequestBody {
26
28
  export interface API_UI_I_Node {
27
29
  id: string
28
30
  name: string
29
- state: number
31
+ state: number | UI_I_State
30
32
  net_bridge?: string
31
33
  console_type?: string
32
34
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.322",
4
+ "version": "1.3.323",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",