verteilen-core 1.0.6 → 1.0.8
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/index.ts +1 -0
- package/package.json +1 -1
- package/src/computed.ts +34 -0
- package/src/interface.ts +1 -36
package/index.ts
CHANGED
package/package.json
CHANGED
package/src/computed.ts
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Client
|
|
3
|
+
*/
|
|
4
|
+
export * as ClientAnalysis from './client/analysis'
|
|
5
|
+
export * as Client from './client/client'
|
|
6
|
+
export * as ClientCluster from './client/cluster'
|
|
7
|
+
export * as ClientExecute from './client/execute'
|
|
8
|
+
export * as ClientJobExecute from './client/job_execute'
|
|
9
|
+
export * as ClientJobParameter from './client/job_parameter'
|
|
10
|
+
export * as ClientHttp from './client/http'
|
|
11
|
+
export * as ClientJavascript from './client/javascript'
|
|
12
|
+
export * as ClientOS from './client/os'
|
|
13
|
+
export * as ClientParameter from './client/parameter'
|
|
14
|
+
export * as ClientResource from './client/resource'
|
|
15
|
+
export * as ClientShell from './client/shell'
|
|
16
|
+
/**
|
|
17
|
+
* Plugin
|
|
18
|
+
*/
|
|
19
|
+
export * as I18N from './plugins/i18n'
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Scripts
|
|
23
|
+
*/
|
|
24
|
+
export * as Execute_ConsoleManager from './script/console_manager'
|
|
25
|
+
export * as Execute_ConsoleServerManager from './script/console_server_manager'
|
|
26
|
+
export * as Execute_ExecuteManager from './script/execute_manager'
|
|
27
|
+
export * as Execute_SocketManager from './script/socket_manager'
|
|
28
|
+
export * as Execute_WebhookManager from './script/webhook_manager'
|
|
29
|
+
export * as Execute_WebhookServerManager from './script/webhook_server_manager'
|
|
30
|
+
/**
|
|
31
|
+
* Util
|
|
32
|
+
*/
|
|
33
|
+
export * as UtilServer_Console from './util/server/console_handle'
|
|
34
|
+
export * as UtilServer_Log from './util/server/log_handle'
|
package/src/interface.ts
CHANGED
|
@@ -45,39 +45,4 @@ export * from './interface/record'
|
|
|
45
45
|
export * from './interface/server'
|
|
46
46
|
export * from './interface/struct'
|
|
47
47
|
export * from './interface/table'
|
|
48
|
-
export * from './interface/ui'
|
|
49
|
-
|
|
50
|
-
/**
|
|
51
|
-
* Client
|
|
52
|
-
*/
|
|
53
|
-
export * as ClientAnalysis from './client/analysis'
|
|
54
|
-
export * as Client from './client/client'
|
|
55
|
-
export * as ClientCluster from './client/cluster'
|
|
56
|
-
export * as ClientExecute from './client/execute'
|
|
57
|
-
export * as ClientJobExecute from './client/job_execute'
|
|
58
|
-
export * as ClientJobParameter from './client/job_parameter'
|
|
59
|
-
export * as ClientHttp from './client/http'
|
|
60
|
-
export * as ClientJavascript from './client/javascript'
|
|
61
|
-
export * as ClientOS from './client/os'
|
|
62
|
-
export * as ClientParameter from './client/parameter'
|
|
63
|
-
export * as ClientResource from './client/resource'
|
|
64
|
-
export * as ClientShell from './client/shell'
|
|
65
|
-
/**
|
|
66
|
-
* Plugin
|
|
67
|
-
*/
|
|
68
|
-
export * as I18N from './plugins/i18n'
|
|
69
|
-
|
|
70
|
-
/**
|
|
71
|
-
* Scripts
|
|
72
|
-
*/
|
|
73
|
-
export * as Execute_ConsoleManager from './script/console_manager'
|
|
74
|
-
export * as Execute_ConsoleServerManager from './script/console_server_manager'
|
|
75
|
-
export * as Execute_ExecuteManager from './script/execute_manager'
|
|
76
|
-
export * as Execute_SocketManager from './script/socket_manager'
|
|
77
|
-
export * as Execute_WebhookManager from './script/webhook_manager'
|
|
78
|
-
export * as Execute_WebhookServerManager from './script/webhook_server_manager'
|
|
79
|
-
/**
|
|
80
|
-
* Util
|
|
81
|
-
*/
|
|
82
|
-
export * as UtilServer_Console from './util/server/console_handle'
|
|
83
|
-
export * as UtilServer_Log from './util/server/log_handle'
|
|
48
|
+
export * from './interface/ui'
|