@remnawave/backend-contract 0.0.61 → 0.0.63
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/build/backend/commands/nodes/create.command.d.ts +5 -0
- package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/disable.command.d.ts +5 -0
- package/build/backend/commands/nodes/disable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/enable.command.d.ts +5 -0
- package/build/backend/commands/nodes/enable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-all.command.d.ts +5 -0
- package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-one.command.d.ts +5 -0
- package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/update.command.d.ts +6 -0
- package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.d.ts +3 -0
- package/build/backend/models/nodes.schema.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.js +1 -0
- package/build/frontend/models/nodes.schema.js +1 -0
- package/package.json +1 -1
@@ -47,6 +47,7 @@ export declare namespace CreateNodeCommand {
|
|
47
47
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
48
48
|
trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
|
49
49
|
notifyPercent: z.ZodNullable<z.ZodNumber>;
|
50
|
+
usersOnline: z.ZodNullable<z.ZodNumber>;
|
50
51
|
cpuCount: z.ZodNullable<z.ZodNumber>;
|
51
52
|
cpuModel: z.ZodNullable<z.ZodString>;
|
52
53
|
totalRam: z.ZodNullable<z.ZodString>;
|
@@ -72,6 +73,7 @@ export declare namespace CreateNodeCommand {
|
|
72
73
|
trafficLimitBytes: number | null;
|
73
74
|
trafficUsedBytes: number | null;
|
74
75
|
notifyPercent: number | null;
|
76
|
+
usersOnline: number | null;
|
75
77
|
cpuCount: number | null;
|
76
78
|
cpuModel: string | null;
|
77
79
|
totalRam: string | null;
|
@@ -95,6 +97,7 @@ export declare namespace CreateNodeCommand {
|
|
95
97
|
trafficLimitBytes: number | null;
|
96
98
|
trafficUsedBytes: number | null;
|
97
99
|
notifyPercent: number | null;
|
100
|
+
usersOnline: number | null;
|
98
101
|
cpuCount: number | null;
|
99
102
|
cpuModel: string | null;
|
100
103
|
totalRam: string | null;
|
@@ -120,6 +123,7 @@ export declare namespace CreateNodeCommand {
|
|
120
123
|
trafficLimitBytes: number | null;
|
121
124
|
trafficUsedBytes: number | null;
|
122
125
|
notifyPercent: number | null;
|
126
|
+
usersOnline: number | null;
|
123
127
|
cpuCount: number | null;
|
124
128
|
cpuModel: string | null;
|
125
129
|
totalRam: string | null;
|
@@ -145,6 +149,7 @@ export declare namespace CreateNodeCommand {
|
|
145
149
|
trafficLimitBytes: number | null;
|
146
150
|
trafficUsedBytes: number | null;
|
147
151
|
notifyPercent: number | null;
|
152
|
+
usersOnline: number | null;
|
148
153
|
cpuCount: number | null;
|
149
154
|
cpuModel: string | null;
|
150
155
|
totalRam: string | null;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"create.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/create.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,qBAAwB,CAAC;IAClC,MAAM,OAAO,qBAAM,CAAC;IAEpB,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;MAsBxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
1
|
+
{"version":3,"file":"create.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/create.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,qBAAwB,CAAC;IAClC,MAAM,OAAO,qBAAM,CAAC;IAEpB,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;MAsBxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
@@ -29,6 +29,7 @@ export declare namespace DisableNodeCommand {
|
|
29
29
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
30
30
|
trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
|
31
31
|
notifyPercent: z.ZodNullable<z.ZodNumber>;
|
32
|
+
usersOnline: z.ZodNullable<z.ZodNumber>;
|
32
33
|
cpuCount: z.ZodNullable<z.ZodNumber>;
|
33
34
|
cpuModel: z.ZodNullable<z.ZodString>;
|
34
35
|
totalRam: z.ZodNullable<z.ZodString>;
|
@@ -54,6 +55,7 @@ export declare namespace DisableNodeCommand {
|
|
54
55
|
trafficLimitBytes: number | null;
|
55
56
|
trafficUsedBytes: number | null;
|
56
57
|
notifyPercent: number | null;
|
58
|
+
usersOnline: number | null;
|
57
59
|
cpuCount: number | null;
|
58
60
|
cpuModel: string | null;
|
59
61
|
totalRam: string | null;
|
@@ -77,6 +79,7 @@ export declare namespace DisableNodeCommand {
|
|
77
79
|
trafficLimitBytes: number | null;
|
78
80
|
trafficUsedBytes: number | null;
|
79
81
|
notifyPercent: number | null;
|
82
|
+
usersOnline: number | null;
|
80
83
|
cpuCount: number | null;
|
81
84
|
cpuModel: string | null;
|
82
85
|
totalRam: string | null;
|
@@ -102,6 +105,7 @@ export declare namespace DisableNodeCommand {
|
|
102
105
|
trafficLimitBytes: number | null;
|
103
106
|
trafficUsedBytes: number | null;
|
104
107
|
notifyPercent: number | null;
|
108
|
+
usersOnline: number | null;
|
105
109
|
cpuCount: number | null;
|
106
110
|
cpuModel: string | null;
|
107
111
|
totalRam: string | null;
|
@@ -127,6 +131,7 @@ export declare namespace DisableNodeCommand {
|
|
127
131
|
trafficLimitBytes: number | null;
|
128
132
|
trafficUsedBytes: number | null;
|
129
133
|
notifyPercent: number | null;
|
134
|
+
usersOnline: number | null;
|
130
135
|
cpuCount: number | null;
|
131
136
|
cpuModel: string | null;
|
132
137
|
totalRam: string | null;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"disable.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/disable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,0BAAyB,CAAC;IACnC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
1
|
+
{"version":3,"file":"disable.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/disable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,0BAAyB,CAAC;IACnC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
@@ -29,6 +29,7 @@ export declare namespace EnableNodeCommand {
|
|
29
29
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
30
30
|
trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
|
31
31
|
notifyPercent: z.ZodNullable<z.ZodNumber>;
|
32
|
+
usersOnline: z.ZodNullable<z.ZodNumber>;
|
32
33
|
cpuCount: z.ZodNullable<z.ZodNumber>;
|
33
34
|
cpuModel: z.ZodNullable<z.ZodString>;
|
34
35
|
totalRam: z.ZodNullable<z.ZodString>;
|
@@ -54,6 +55,7 @@ export declare namespace EnableNodeCommand {
|
|
54
55
|
trafficLimitBytes: number | null;
|
55
56
|
trafficUsedBytes: number | null;
|
56
57
|
notifyPercent: number | null;
|
58
|
+
usersOnline: number | null;
|
57
59
|
cpuCount: number | null;
|
58
60
|
cpuModel: string | null;
|
59
61
|
totalRam: string | null;
|
@@ -77,6 +79,7 @@ export declare namespace EnableNodeCommand {
|
|
77
79
|
trafficLimitBytes: number | null;
|
78
80
|
trafficUsedBytes: number | null;
|
79
81
|
notifyPercent: number | null;
|
82
|
+
usersOnline: number | null;
|
80
83
|
cpuCount: number | null;
|
81
84
|
cpuModel: string | null;
|
82
85
|
totalRam: string | null;
|
@@ -102,6 +105,7 @@ export declare namespace EnableNodeCommand {
|
|
102
105
|
trafficLimitBytes: number | null;
|
103
106
|
trafficUsedBytes: number | null;
|
104
107
|
notifyPercent: number | null;
|
108
|
+
usersOnline: number | null;
|
105
109
|
cpuCount: number | null;
|
106
110
|
cpuModel: string | null;
|
107
111
|
totalRam: string | null;
|
@@ -127,6 +131,7 @@ export declare namespace EnableNodeCommand {
|
|
127
131
|
trafficLimitBytes: number | null;
|
128
132
|
trafficUsedBytes: number | null;
|
129
133
|
notifyPercent: number | null;
|
134
|
+
usersOnline: number | null;
|
130
135
|
cpuCount: number | null;
|
131
136
|
cpuModel: string | null;
|
132
137
|
totalRam: string | null;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"enable.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/enable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAAwB,CAAC;IAClC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
1
|
+
{"version":3,"file":"enable.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/enable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAAwB,CAAC;IAClC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
@@ -21,6 +21,7 @@ export declare namespace GetAllNodesCommand {
|
|
21
21
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
22
22
|
trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
|
23
23
|
notifyPercent: z.ZodNullable<z.ZodNumber>;
|
24
|
+
usersOnline: z.ZodNullable<z.ZodNumber>;
|
24
25
|
cpuCount: z.ZodNullable<z.ZodNumber>;
|
25
26
|
cpuModel: z.ZodNullable<z.ZodString>;
|
26
27
|
totalRam: z.ZodNullable<z.ZodString>;
|
@@ -46,6 +47,7 @@ export declare namespace GetAllNodesCommand {
|
|
46
47
|
trafficLimitBytes: number | null;
|
47
48
|
trafficUsedBytes: number | null;
|
48
49
|
notifyPercent: number | null;
|
50
|
+
usersOnline: number | null;
|
49
51
|
cpuCount: number | null;
|
50
52
|
cpuModel: string | null;
|
51
53
|
totalRam: string | null;
|
@@ -69,6 +71,7 @@ export declare namespace GetAllNodesCommand {
|
|
69
71
|
trafficLimitBytes: number | null;
|
70
72
|
trafficUsedBytes: number | null;
|
71
73
|
notifyPercent: number | null;
|
74
|
+
usersOnline: number | null;
|
72
75
|
cpuCount: number | null;
|
73
76
|
cpuModel: string | null;
|
74
77
|
totalRam: string | null;
|
@@ -94,6 +97,7 @@ export declare namespace GetAllNodesCommand {
|
|
94
97
|
trafficLimitBytes: number | null;
|
95
98
|
trafficUsedBytes: number | null;
|
96
99
|
notifyPercent: number | null;
|
100
|
+
usersOnline: number | null;
|
97
101
|
cpuCount: number | null;
|
98
102
|
cpuModel: string | null;
|
99
103
|
totalRam: string | null;
|
@@ -119,6 +123,7 @@ export declare namespace GetAllNodesCommand {
|
|
119
123
|
trafficLimitBytes: number | null;
|
120
124
|
trafficUsedBytes: number | null;
|
121
125
|
notifyPercent: number | null;
|
126
|
+
usersOnline: number | null;
|
122
127
|
cpuCount: number | null;
|
123
128
|
cpuModel: string | null;
|
124
129
|
totalRam: string | null;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"get-all.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-all.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,sBAAyB,CAAC;IACnC,MAAM,OAAO,sBAAM,CAAC;IAEpB,MAAM,cAAc
|
1
|
+
{"version":3,"file":"get-all.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-all.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,sBAAyB,CAAC;IACnC,MAAM,OAAO,sBAAM,CAAC;IAEpB,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
@@ -29,6 +29,7 @@ export declare namespace GetOneNodeCommand {
|
|
29
29
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
30
30
|
trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
|
31
31
|
notifyPercent: z.ZodNullable<z.ZodNumber>;
|
32
|
+
usersOnline: z.ZodNullable<z.ZodNumber>;
|
32
33
|
cpuCount: z.ZodNullable<z.ZodNumber>;
|
33
34
|
cpuModel: z.ZodNullable<z.ZodString>;
|
34
35
|
totalRam: z.ZodNullable<z.ZodString>;
|
@@ -54,6 +55,7 @@ export declare namespace GetOneNodeCommand {
|
|
54
55
|
trafficLimitBytes: number | null;
|
55
56
|
trafficUsedBytes: number | null;
|
56
57
|
notifyPercent: number | null;
|
58
|
+
usersOnline: number | null;
|
57
59
|
cpuCount: number | null;
|
58
60
|
cpuModel: string | null;
|
59
61
|
totalRam: string | null;
|
@@ -77,6 +79,7 @@ export declare namespace GetOneNodeCommand {
|
|
77
79
|
trafficLimitBytes: number | null;
|
78
80
|
trafficUsedBytes: number | null;
|
79
81
|
notifyPercent: number | null;
|
82
|
+
usersOnline: number | null;
|
80
83
|
cpuCount: number | null;
|
81
84
|
cpuModel: string | null;
|
82
85
|
totalRam: string | null;
|
@@ -102,6 +105,7 @@ export declare namespace GetOneNodeCommand {
|
|
102
105
|
trafficLimitBytes: number | null;
|
103
106
|
trafficUsedBytes: number | null;
|
104
107
|
notifyPercent: number | null;
|
108
|
+
usersOnline: number | null;
|
105
109
|
cpuCount: number | null;
|
106
110
|
cpuModel: string | null;
|
107
111
|
totalRam: string | null;
|
@@ -127,6 +131,7 @@ export declare namespace GetOneNodeCommand {
|
|
127
131
|
trafficLimitBytes: number | null;
|
128
132
|
trafficUsedBytes: number | null;
|
129
133
|
notifyPercent: number | null;
|
134
|
+
usersOnline: number | null;
|
130
135
|
cpuCount: number | null;
|
131
136
|
cpuModel: string | null;
|
132
137
|
totalRam: string | null;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"get-one.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-one.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAAyB,CAAC;IACnC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
1
|
+
{"version":3,"file":"get-one.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/get-one.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAAyB,CAAC;IACnC,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
@@ -20,6 +20,7 @@ export declare namespace UpdateNodeCommand {
|
|
20
20
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
21
21
|
trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
|
22
22
|
notifyPercent: z.ZodNullable<z.ZodNumber>;
|
23
|
+
usersOnline: z.ZodNullable<z.ZodNumber>;
|
23
24
|
cpuCount: z.ZodNullable<z.ZodNumber>;
|
24
25
|
cpuModel: z.ZodNullable<z.ZodString>;
|
25
26
|
totalRam: z.ZodNullable<z.ZodString>;
|
@@ -72,6 +73,7 @@ export declare namespace UpdateNodeCommand {
|
|
72
73
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
73
74
|
trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
|
74
75
|
notifyPercent: z.ZodNullable<z.ZodNumber>;
|
76
|
+
usersOnline: z.ZodNullable<z.ZodNumber>;
|
75
77
|
cpuCount: z.ZodNullable<z.ZodNumber>;
|
76
78
|
cpuModel: z.ZodNullable<z.ZodString>;
|
77
79
|
totalRam: z.ZodNullable<z.ZodString>;
|
@@ -97,6 +99,7 @@ export declare namespace UpdateNodeCommand {
|
|
97
99
|
trafficLimitBytes: number | null;
|
98
100
|
trafficUsedBytes: number | null;
|
99
101
|
notifyPercent: number | null;
|
102
|
+
usersOnline: number | null;
|
100
103
|
cpuCount: number | null;
|
101
104
|
cpuModel: string | null;
|
102
105
|
totalRam: string | null;
|
@@ -120,6 +123,7 @@ export declare namespace UpdateNodeCommand {
|
|
120
123
|
trafficLimitBytes: number | null;
|
121
124
|
trafficUsedBytes: number | null;
|
122
125
|
notifyPercent: number | null;
|
126
|
+
usersOnline: number | null;
|
123
127
|
cpuCount: number | null;
|
124
128
|
cpuModel: string | null;
|
125
129
|
totalRam: string | null;
|
@@ -145,6 +149,7 @@ export declare namespace UpdateNodeCommand {
|
|
145
149
|
trafficLimitBytes: number | null;
|
146
150
|
trafficUsedBytes: number | null;
|
147
151
|
notifyPercent: number | null;
|
152
|
+
usersOnline: number | null;
|
148
153
|
cpuCount: number | null;
|
149
154
|
cpuModel: string | null;
|
150
155
|
totalRam: string | null;
|
@@ -170,6 +175,7 @@ export declare namespace UpdateNodeCommand {
|
|
170
175
|
trafficLimitBytes: number | null;
|
171
176
|
trafficUsedBytes: number | null;
|
172
177
|
notifyPercent: number | null;
|
178
|
+
usersOnline: number | null;
|
173
179
|
cpuCount: number | null;
|
174
180
|
cpuModel: string | null;
|
175
181
|
totalRam: string | null;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"update.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/update.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,qBAAwB,CAAC;IAClC,MAAM,OAAO,qBAAM,CAAC;IAEpB,MAAM,aAAa
|
1
|
+
{"version":3,"file":"update.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/update.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,qBAAwB,CAAC;IAClC,MAAM,OAAO,qBAAM,CAAC;IAEpB,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAoBxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
@@ -17,6 +17,7 @@ export declare const NodesSchema: z.ZodObject<{
|
|
17
17
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
18
18
|
trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
|
19
19
|
notifyPercent: z.ZodNullable<z.ZodNumber>;
|
20
|
+
usersOnline: z.ZodNullable<z.ZodNumber>;
|
20
21
|
cpuCount: z.ZodNullable<z.ZodNumber>;
|
21
22
|
cpuModel: z.ZodNullable<z.ZodString>;
|
22
23
|
totalRam: z.ZodNullable<z.ZodString>;
|
@@ -42,6 +43,7 @@ export declare const NodesSchema: z.ZodObject<{
|
|
42
43
|
trafficLimitBytes: number | null;
|
43
44
|
trafficUsedBytes: number | null;
|
44
45
|
notifyPercent: number | null;
|
46
|
+
usersOnline: number | null;
|
45
47
|
cpuCount: number | null;
|
46
48
|
cpuModel: string | null;
|
47
49
|
totalRam: string | null;
|
@@ -65,6 +67,7 @@ export declare const NodesSchema: z.ZodObject<{
|
|
65
67
|
trafficLimitBytes: number | null;
|
66
68
|
trafficUsedBytes: number | null;
|
67
69
|
notifyPercent: number | null;
|
70
|
+
usersOnline: number | null;
|
68
71
|
cpuCount: number | null;
|
69
72
|
cpuModel: string | null;
|
70
73
|
totalRam: string | null;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"nodes.schema.d.ts","sourceRoot":"","sources":["../../../models/nodes.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,WAAW
|
1
|
+
{"version":3,"file":"nodes.schema.d.ts","sourceRoot":"","sources":["../../../models/nodes.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BtB,CAAC"}
|
@@ -20,6 +20,7 @@ exports.NodesSchema = zod_1.z.object({
|
|
20
20
|
trafficLimitBytes: zod_1.z.nullable(zod_1.z.number()),
|
21
21
|
trafficUsedBytes: zod_1.z.nullable(zod_1.z.number()),
|
22
22
|
notifyPercent: zod_1.z.nullable(zod_1.z.number().int()),
|
23
|
+
usersOnline: zod_1.z.nullable(zod_1.z.number().int()),
|
23
24
|
cpuCount: zod_1.z.nullable(zod_1.z.number().int()),
|
24
25
|
cpuModel: zod_1.z.nullable(zod_1.z.string()),
|
25
26
|
totalRam: zod_1.z.nullable(zod_1.z.string()),
|
@@ -20,6 +20,7 @@ exports.NodesSchema = zod_1.z.object({
|
|
20
20
|
trafficLimitBytes: zod_1.z.nullable(zod_1.z.number()),
|
21
21
|
trafficUsedBytes: zod_1.z.nullable(zod_1.z.number()),
|
22
22
|
notifyPercent: zod_1.z.nullable(zod_1.z.number().int()),
|
23
|
+
usersOnline: zod_1.z.nullable(zod_1.z.number().int()),
|
23
24
|
cpuCount: zod_1.z.nullable(zod_1.z.number().int()),
|
24
25
|
cpuModel: zod_1.z.nullable(zod_1.z.string()),
|
25
26
|
totalRam: zod_1.z.nullable(zod_1.z.string()),
|