verteilen-core 1.2.16 → 1.2.17
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/dist/interface/table.d.ts +4 -1
- package/package.json +1 -1
- package/src/interface/table.ts +11 -1
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
import { Node, Database, Project, Task } from './base';
|
|
1
|
+
import { Node, Database, Project, Task, Job } from './base';
|
|
2
2
|
import { Plugin, SystemLoad } from './struct';
|
|
3
|
+
export interface JobTable extends Job {
|
|
4
|
+
s?: boolean;
|
|
5
|
+
}
|
|
3
6
|
export interface DatabaseTable extends Database {
|
|
4
7
|
s?: boolean;
|
|
5
8
|
}
|
package/package.json
CHANGED
package/src/interface/table.ts
CHANGED
|
@@ -7,9 +7,19 @@
|
|
|
7
7
|
* Value override for some base value\
|
|
8
8
|
* The data structure that use in Vue
|
|
9
9
|
*/
|
|
10
|
-
import { Node, Database, Project, Task } from './base'
|
|
10
|
+
import { Node, Database, Project, Task, Job } from './base'
|
|
11
11
|
import { Plugin, SystemLoad } from './struct'
|
|
12
12
|
|
|
13
|
+
/**
|
|
14
|
+
* **UI Database Table Data Structure**\
|
|
15
|
+
* For display the data on the database page
|
|
16
|
+
*/
|
|
17
|
+
export interface JobTable extends Job {
|
|
18
|
+
/**
|
|
19
|
+
* **Select State**
|
|
20
|
+
*/
|
|
21
|
+
s?: boolean
|
|
22
|
+
}
|
|
13
23
|
/**
|
|
14
24
|
* **UI Database Table Data Structure**\
|
|
15
25
|
* For display the data on the database page
|