@remnawave/backend-contract 0.2.6 → 0.2.7
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/reorder.command.d.ts +6 -0
- package/build/backend/commands/nodes/reorder.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
@@ -51,6 +51,7 @@ export declare namespace CreateNodeCommand {
|
|
51
51
|
lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
52
52
|
lastStatusMessage: z.ZodNullable<z.ZodString>;
|
53
53
|
xrayVersion: z.ZodNullable<z.ZodString>;
|
54
|
+
xrayUptime: z.ZodString;
|
54
55
|
isTrafficTrackingActive: z.ZodBoolean;
|
55
56
|
trafficResetDay: z.ZodNullable<z.ZodNumber>;
|
56
57
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
@@ -94,6 +95,7 @@ export declare namespace CreateNodeCommand {
|
|
94
95
|
lastStatusChange: Date | null;
|
95
96
|
lastStatusMessage: string | null;
|
96
97
|
xrayVersion: string | null;
|
98
|
+
xrayUptime: string;
|
97
99
|
isTrafficTrackingActive: boolean;
|
98
100
|
trafficResetDay: number | null;
|
99
101
|
trafficLimitBytes: number | null;
|
@@ -126,6 +128,7 @@ export declare namespace CreateNodeCommand {
|
|
126
128
|
lastStatusChange: string | null;
|
127
129
|
lastStatusMessage: string | null;
|
128
130
|
xrayVersion: string | null;
|
131
|
+
xrayUptime: string;
|
129
132
|
isTrafficTrackingActive: boolean;
|
130
133
|
trafficResetDay: number | null;
|
131
134
|
trafficLimitBytes: number | null;
|
@@ -160,6 +163,7 @@ export declare namespace CreateNodeCommand {
|
|
160
163
|
lastStatusChange: Date | null;
|
161
164
|
lastStatusMessage: string | null;
|
162
165
|
xrayVersion: string | null;
|
166
|
+
xrayUptime: string;
|
163
167
|
isTrafficTrackingActive: boolean;
|
164
168
|
trafficResetDay: number | null;
|
165
169
|
trafficLimitBytes: number | null;
|
@@ -194,6 +198,7 @@ export declare namespace CreateNodeCommand {
|
|
194
198
|
lastStatusChange: string | null;
|
195
199
|
lastStatusMessage: string | null;
|
196
200
|
xrayVersion: string | null;
|
201
|
+
xrayUptime: string;
|
197
202
|
isTrafficTrackingActive: boolean;
|
198
203
|
trafficResetDay: number | null;
|
199
204
|
trafficLimitBytes: number | 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;AAKxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,qBAAwB,CAAC;IAClC,MAAM,OAAO,qBAAM,CAAC;IAEpB,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAsCxB,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;AAKxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,qBAAwB,CAAC;IAClC,MAAM,OAAO,qBAAM,CAAC;IAEpB,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAsCxB,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"}
|
@@ -24,6 +24,7 @@ export declare namespace DisableNodeCommand {
|
|
24
24
|
lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
25
25
|
lastStatusMessage: z.ZodNullable<z.ZodString>;
|
26
26
|
xrayVersion: z.ZodNullable<z.ZodString>;
|
27
|
+
xrayUptime: z.ZodString;
|
27
28
|
isTrafficTrackingActive: z.ZodBoolean;
|
28
29
|
trafficResetDay: z.ZodNullable<z.ZodNumber>;
|
29
30
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
@@ -67,6 +68,7 @@ export declare namespace DisableNodeCommand {
|
|
67
68
|
lastStatusChange: Date | null;
|
68
69
|
lastStatusMessage: string | null;
|
69
70
|
xrayVersion: string | null;
|
71
|
+
xrayUptime: string;
|
70
72
|
isTrafficTrackingActive: boolean;
|
71
73
|
trafficResetDay: number | null;
|
72
74
|
trafficLimitBytes: number | null;
|
@@ -99,6 +101,7 @@ export declare namespace DisableNodeCommand {
|
|
99
101
|
lastStatusChange: string | null;
|
100
102
|
lastStatusMessage: string | null;
|
101
103
|
xrayVersion: string | null;
|
104
|
+
xrayUptime: string;
|
102
105
|
isTrafficTrackingActive: boolean;
|
103
106
|
trafficResetDay: number | null;
|
104
107
|
trafficLimitBytes: number | null;
|
@@ -133,6 +136,7 @@ export declare namespace DisableNodeCommand {
|
|
133
136
|
lastStatusChange: Date | null;
|
134
137
|
lastStatusMessage: string | null;
|
135
138
|
xrayVersion: string | null;
|
139
|
+
xrayUptime: string;
|
136
140
|
isTrafficTrackingActive: boolean;
|
137
141
|
trafficResetDay: number | null;
|
138
142
|
trafficLimitBytes: number | null;
|
@@ -167,6 +171,7 @@ export declare namespace DisableNodeCommand {
|
|
167
171
|
lastStatusChange: string | null;
|
168
172
|
lastStatusMessage: string | null;
|
169
173
|
xrayVersion: string | null;
|
174
|
+
xrayUptime: string;
|
170
175
|
isTrafficTrackingActive: boolean;
|
171
176
|
trafficResetDay: number | null;
|
172
177
|
trafficLimitBytes: number | 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;AAKxB,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;AAKxB,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"}
|
@@ -24,6 +24,7 @@ export declare namespace EnableNodeCommand {
|
|
24
24
|
lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
25
25
|
lastStatusMessage: z.ZodNullable<z.ZodString>;
|
26
26
|
xrayVersion: z.ZodNullable<z.ZodString>;
|
27
|
+
xrayUptime: z.ZodString;
|
27
28
|
isTrafficTrackingActive: z.ZodBoolean;
|
28
29
|
trafficResetDay: z.ZodNullable<z.ZodNumber>;
|
29
30
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
@@ -67,6 +68,7 @@ export declare namespace EnableNodeCommand {
|
|
67
68
|
lastStatusChange: Date | null;
|
68
69
|
lastStatusMessage: string | null;
|
69
70
|
xrayVersion: string | null;
|
71
|
+
xrayUptime: string;
|
70
72
|
isTrafficTrackingActive: boolean;
|
71
73
|
trafficResetDay: number | null;
|
72
74
|
trafficLimitBytes: number | null;
|
@@ -99,6 +101,7 @@ export declare namespace EnableNodeCommand {
|
|
99
101
|
lastStatusChange: string | null;
|
100
102
|
lastStatusMessage: string | null;
|
101
103
|
xrayVersion: string | null;
|
104
|
+
xrayUptime: string;
|
102
105
|
isTrafficTrackingActive: boolean;
|
103
106
|
trafficResetDay: number | null;
|
104
107
|
trafficLimitBytes: number | null;
|
@@ -133,6 +136,7 @@ export declare namespace EnableNodeCommand {
|
|
133
136
|
lastStatusChange: Date | null;
|
134
137
|
lastStatusMessage: string | null;
|
135
138
|
xrayVersion: string | null;
|
139
|
+
xrayUptime: string;
|
136
140
|
isTrafficTrackingActive: boolean;
|
137
141
|
trafficResetDay: number | null;
|
138
142
|
trafficLimitBytes: number | null;
|
@@ -167,6 +171,7 @@ export declare namespace EnableNodeCommand {
|
|
167
171
|
lastStatusChange: string | null;
|
168
172
|
lastStatusMessage: string | null;
|
169
173
|
xrayVersion: string | null;
|
174
|
+
xrayUptime: string;
|
170
175
|
isTrafficTrackingActive: boolean;
|
171
176
|
trafficResetDay: number | null;
|
172
177
|
trafficLimitBytes: number | 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;AAKxB,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;AAKxB,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"}
|
@@ -16,6 +16,7 @@ export declare namespace GetAllNodesCommand {
|
|
16
16
|
lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
17
17
|
lastStatusMessage: z.ZodNullable<z.ZodString>;
|
18
18
|
xrayVersion: z.ZodNullable<z.ZodString>;
|
19
|
+
xrayUptime: z.ZodString;
|
19
20
|
isTrafficTrackingActive: z.ZodBoolean;
|
20
21
|
trafficResetDay: z.ZodNullable<z.ZodNumber>;
|
21
22
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
@@ -59,6 +60,7 @@ export declare namespace GetAllNodesCommand {
|
|
59
60
|
lastStatusChange: Date | null;
|
60
61
|
lastStatusMessage: string | null;
|
61
62
|
xrayVersion: string | null;
|
63
|
+
xrayUptime: string;
|
62
64
|
isTrafficTrackingActive: boolean;
|
63
65
|
trafficResetDay: number | null;
|
64
66
|
trafficLimitBytes: number | null;
|
@@ -91,6 +93,7 @@ export declare namespace GetAllNodesCommand {
|
|
91
93
|
lastStatusChange: string | null;
|
92
94
|
lastStatusMessage: string | null;
|
93
95
|
xrayVersion: string | null;
|
96
|
+
xrayUptime: string;
|
94
97
|
isTrafficTrackingActive: boolean;
|
95
98
|
trafficResetDay: number | null;
|
96
99
|
trafficLimitBytes: number | null;
|
@@ -125,6 +128,7 @@ export declare namespace GetAllNodesCommand {
|
|
125
128
|
lastStatusChange: Date | null;
|
126
129
|
lastStatusMessage: string | null;
|
127
130
|
xrayVersion: string | null;
|
131
|
+
xrayUptime: string;
|
128
132
|
isTrafficTrackingActive: boolean;
|
129
133
|
trafficResetDay: number | null;
|
130
134
|
trafficLimitBytes: number | null;
|
@@ -159,6 +163,7 @@ export declare namespace GetAllNodesCommand {
|
|
159
163
|
lastStatusChange: string | null;
|
160
164
|
lastStatusMessage: string | null;
|
161
165
|
xrayVersion: string | null;
|
166
|
+
xrayUptime: string;
|
162
167
|
isTrafficTrackingActive: boolean;
|
163
168
|
trafficResetDay: number | null;
|
164
169
|
trafficLimitBytes: number | 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;AAKxB,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;AAKxB,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"}
|
@@ -24,6 +24,7 @@ export declare namespace GetOneNodeCommand {
|
|
24
24
|
lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
25
25
|
lastStatusMessage: z.ZodNullable<z.ZodString>;
|
26
26
|
xrayVersion: z.ZodNullable<z.ZodString>;
|
27
|
+
xrayUptime: z.ZodString;
|
27
28
|
isTrafficTrackingActive: z.ZodBoolean;
|
28
29
|
trafficResetDay: z.ZodNullable<z.ZodNumber>;
|
29
30
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
@@ -67,6 +68,7 @@ export declare namespace GetOneNodeCommand {
|
|
67
68
|
lastStatusChange: Date | null;
|
68
69
|
lastStatusMessage: string | null;
|
69
70
|
xrayVersion: string | null;
|
71
|
+
xrayUptime: string;
|
70
72
|
isTrafficTrackingActive: boolean;
|
71
73
|
trafficResetDay: number | null;
|
72
74
|
trafficLimitBytes: number | null;
|
@@ -99,6 +101,7 @@ export declare namespace GetOneNodeCommand {
|
|
99
101
|
lastStatusChange: string | null;
|
100
102
|
lastStatusMessage: string | null;
|
101
103
|
xrayVersion: string | null;
|
104
|
+
xrayUptime: string;
|
102
105
|
isTrafficTrackingActive: boolean;
|
103
106
|
trafficResetDay: number | null;
|
104
107
|
trafficLimitBytes: number | null;
|
@@ -133,6 +136,7 @@ export declare namespace GetOneNodeCommand {
|
|
133
136
|
lastStatusChange: Date | null;
|
134
137
|
lastStatusMessage: string | null;
|
135
138
|
xrayVersion: string | null;
|
139
|
+
xrayUptime: string;
|
136
140
|
isTrafficTrackingActive: boolean;
|
137
141
|
trafficResetDay: number | null;
|
138
142
|
trafficLimitBytes: number | null;
|
@@ -167,6 +171,7 @@ export declare namespace GetOneNodeCommand {
|
|
167
171
|
lastStatusChange: string | null;
|
168
172
|
lastStatusMessage: string | null;
|
169
173
|
xrayVersion: string | null;
|
174
|
+
xrayUptime: string;
|
170
175
|
isTrafficTrackingActive: boolean;
|
171
176
|
trafficResetDay: number | null;
|
172
177
|
trafficLimitBytes: number | 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;AAKxB,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;AAKxB,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"}
|
@@ -16,6 +16,7 @@ export declare namespace ReorderNodeCommand {
|
|
16
16
|
lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
17
17
|
lastStatusMessage: z.ZodNullable<z.ZodString>;
|
18
18
|
xrayVersion: z.ZodNullable<z.ZodString>;
|
19
|
+
xrayUptime: z.ZodString;
|
19
20
|
isTrafficTrackingActive: z.ZodBoolean;
|
20
21
|
trafficResetDay: z.ZodNullable<z.ZodNumber>;
|
21
22
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
@@ -76,6 +77,7 @@ export declare namespace ReorderNodeCommand {
|
|
76
77
|
lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
77
78
|
lastStatusMessage: z.ZodNullable<z.ZodString>;
|
78
79
|
xrayVersion: z.ZodNullable<z.ZodString>;
|
80
|
+
xrayUptime: z.ZodString;
|
79
81
|
isTrafficTrackingActive: z.ZodBoolean;
|
80
82
|
trafficResetDay: z.ZodNullable<z.ZodNumber>;
|
81
83
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
@@ -119,6 +121,7 @@ export declare namespace ReorderNodeCommand {
|
|
119
121
|
lastStatusChange: Date | null;
|
120
122
|
lastStatusMessage: string | null;
|
121
123
|
xrayVersion: string | null;
|
124
|
+
xrayUptime: string;
|
122
125
|
isTrafficTrackingActive: boolean;
|
123
126
|
trafficResetDay: number | null;
|
124
127
|
trafficLimitBytes: number | null;
|
@@ -151,6 +154,7 @@ export declare namespace ReorderNodeCommand {
|
|
151
154
|
lastStatusChange: string | null;
|
152
155
|
lastStatusMessage: string | null;
|
153
156
|
xrayVersion: string | null;
|
157
|
+
xrayUptime: string;
|
154
158
|
isTrafficTrackingActive: boolean;
|
155
159
|
trafficResetDay: number | null;
|
156
160
|
trafficLimitBytes: number | null;
|
@@ -185,6 +189,7 @@ export declare namespace ReorderNodeCommand {
|
|
185
189
|
lastStatusChange: Date | null;
|
186
190
|
lastStatusMessage: string | null;
|
187
191
|
xrayVersion: string | null;
|
192
|
+
xrayUptime: string;
|
188
193
|
isTrafficTrackingActive: boolean;
|
189
194
|
trafficResetDay: number | null;
|
190
195
|
trafficLimitBytes: number | null;
|
@@ -219,6 +224,7 @@ export declare namespace ReorderNodeCommand {
|
|
219
224
|
lastStatusChange: string | null;
|
220
225
|
lastStatusMessage: string | null;
|
221
226
|
xrayVersion: string | null;
|
227
|
+
xrayUptime: string;
|
222
228
|
isTrafficTrackingActive: boolean;
|
223
229
|
trafficResetDay: number | null;
|
224
230
|
trafficLimitBytes: number | null;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"reorder.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/reorder.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,sBAAyB,CAAC;IACnC,MAAM,OAAO,sBAAM,CAAC;IAEpB,MAAM,aAAa
|
1
|
+
{"version":3,"file":"reorder.command.d.ts","sourceRoot":"","sources":["../../../../commands/nodes/reorder.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,sBAAyB,CAAC;IACnC,MAAM,OAAO,sBAAM,CAAC;IAEpB,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAOxB,CAAC;IACH,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"}
|
@@ -15,6 +15,7 @@ export declare namespace UpdateNodeCommand {
|
|
15
15
|
lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
16
16
|
lastStatusMessage: z.ZodNullable<z.ZodString>;
|
17
17
|
xrayVersion: z.ZodNullable<z.ZodString>;
|
18
|
+
xrayUptime: z.ZodString;
|
18
19
|
isTrafficTrackingActive: z.ZodBoolean;
|
19
20
|
trafficResetDay: z.ZodNullable<z.ZodNumber>;
|
20
21
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
@@ -93,6 +94,7 @@ export declare namespace UpdateNodeCommand {
|
|
93
94
|
lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
94
95
|
lastStatusMessage: z.ZodNullable<z.ZodString>;
|
95
96
|
xrayVersion: z.ZodNullable<z.ZodString>;
|
97
|
+
xrayUptime: z.ZodString;
|
96
98
|
isTrafficTrackingActive: z.ZodBoolean;
|
97
99
|
trafficResetDay: z.ZodNullable<z.ZodNumber>;
|
98
100
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
@@ -136,6 +138,7 @@ export declare namespace UpdateNodeCommand {
|
|
136
138
|
lastStatusChange: Date | null;
|
137
139
|
lastStatusMessage: string | null;
|
138
140
|
xrayVersion: string | null;
|
141
|
+
xrayUptime: string;
|
139
142
|
isTrafficTrackingActive: boolean;
|
140
143
|
trafficResetDay: number | null;
|
141
144
|
trafficLimitBytes: number | null;
|
@@ -168,6 +171,7 @@ export declare namespace UpdateNodeCommand {
|
|
168
171
|
lastStatusChange: string | null;
|
169
172
|
lastStatusMessage: string | null;
|
170
173
|
xrayVersion: string | null;
|
174
|
+
xrayUptime: string;
|
171
175
|
isTrafficTrackingActive: boolean;
|
172
176
|
trafficResetDay: number | null;
|
173
177
|
trafficLimitBytes: number | null;
|
@@ -202,6 +206,7 @@ export declare namespace UpdateNodeCommand {
|
|
202
206
|
lastStatusChange: Date | null;
|
203
207
|
lastStatusMessage: string | null;
|
204
208
|
xrayVersion: string | null;
|
209
|
+
xrayUptime: string;
|
205
210
|
isTrafficTrackingActive: boolean;
|
206
211
|
trafficResetDay: number | null;
|
207
212
|
trafficLimitBytes: number | null;
|
@@ -236,6 +241,7 @@ export declare namespace UpdateNodeCommand {
|
|
236
241
|
lastStatusChange: string | null;
|
237
242
|
lastStatusMessage: string | null;
|
238
243
|
xrayVersion: string | null;
|
244
|
+
xrayUptime: string;
|
239
245
|
isTrafficTrackingActive: boolean;
|
240
246
|
trafficResetDay: number | null;
|
241
247
|
trafficLimitBytes: number | 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;AAKxB,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;AAKxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,qBAAwB,CAAC;IAClC,MAAM,OAAO,qBAAM,CAAC;IAEpB,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAkCxB,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"}
|
@@ -12,6 +12,7 @@ export declare const NodesSchema: z.ZodObject<{
|
|
12
12
|
lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
13
13
|
lastStatusMessage: z.ZodNullable<z.ZodString>;
|
14
14
|
xrayVersion: z.ZodNullable<z.ZodString>;
|
15
|
+
xrayUptime: z.ZodString;
|
15
16
|
isTrafficTrackingActive: z.ZodBoolean;
|
16
17
|
trafficResetDay: z.ZodNullable<z.ZodNumber>;
|
17
18
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
@@ -55,6 +56,7 @@ export declare const NodesSchema: z.ZodObject<{
|
|
55
56
|
lastStatusChange: Date | null;
|
56
57
|
lastStatusMessage: string | null;
|
57
58
|
xrayVersion: string | null;
|
59
|
+
xrayUptime: string;
|
58
60
|
isTrafficTrackingActive: boolean;
|
59
61
|
trafficResetDay: number | null;
|
60
62
|
trafficLimitBytes: number | null;
|
@@ -87,6 +89,7 @@ export declare const NodesSchema: z.ZodObject<{
|
|
87
89
|
lastStatusChange: string | null;
|
88
90
|
lastStatusMessage: string | null;
|
89
91
|
xrayVersion: string | null;
|
92
|
+
xrayUptime: string;
|
90
93
|
isTrafficTrackingActive: boolean;
|
91
94
|
trafficResetDay: number | null;
|
92
95
|
trafficLimitBytes: number | 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;AAIxB,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;AAIxB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4CtB,CAAC"}
|
@@ -19,6 +19,7 @@ exports.NodesSchema = zod_1.z.object({
|
|
19
19
|
.transform((str) => new Date(str))),
|
20
20
|
lastStatusMessage: zod_1.z.nullable(zod_1.z.string()),
|
21
21
|
xrayVersion: zod_1.z.nullable(zod_1.z.string()),
|
22
|
+
xrayUptime: zod_1.z.string(),
|
22
23
|
isTrafficTrackingActive: zod_1.z.boolean(),
|
23
24
|
trafficResetDay: zod_1.z.nullable(zod_1.z.number().int()),
|
24
25
|
trafficLimitBytes: zod_1.z.nullable(zod_1.z.number()),
|
@@ -19,6 +19,7 @@ exports.NodesSchema = zod_1.z.object({
|
|
19
19
|
.transform((str) => new Date(str))),
|
20
20
|
lastStatusMessage: zod_1.z.nullable(zod_1.z.string()),
|
21
21
|
xrayVersion: zod_1.z.nullable(zod_1.z.string()),
|
22
|
+
xrayUptime: zod_1.z.string(),
|
22
23
|
isTrafficTrackingActive: zod_1.z.boolean(),
|
23
24
|
trafficResetDay: zod_1.z.nullable(zod_1.z.number().int()),
|
24
25
|
trafficLimitBytes: zod_1.z.nullable(zod_1.z.number()),
|