@remnawave/backend-contract 2.0.0-alpha.20 → 2.0.0-alpha.22
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/hosts/bulk/delete-many-hosts.command.d.ts +26 -10
- package/build/backend/commands/hosts/bulk/delete-many-hosts.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/bulk/disable-many-hosts.command.d.ts +26 -10
- package/build/backend/commands/hosts/bulk/disable-many-hosts.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/bulk/enable-many-hosts.command.d.ts +26 -10
- package/build/backend/commands/hosts/bulk/enable-many-hosts.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/bulk/set-inbound-to-many-hosts.command.d.ts +26 -10
- package/build/backend/commands/hosts/bulk/set-inbound-to-many-hosts.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/bulk/set-port-to-many-hosts.command.d.ts +26 -10
- package/build/backend/commands/hosts/bulk/set-port-to-many-hosts.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/create.command.d.ts +44 -19
- package/build/backend/commands/hosts/create.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/create.command.js +7 -13
- package/build/backend/commands/hosts/get-all.command.d.ts +26 -10
- package/build/backend/commands/hosts/get-all.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/get-one.command.d.ts +26 -10
- package/build/backend/commands/hosts/get-one.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/reorder.command.d.ts +10 -2
- package/build/backend/commands/hosts/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/update.command.d.ts +54 -21
- package/build/backend/commands/hosts/update.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/update.command.js +4 -11
- package/build/backend/commands/infra-billing/create-billing-node.command.d.ts +106 -54
- package/build/backend/commands/infra-billing/create-billing-node.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts +106 -54
- package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/get-blling-nodes.command.d.ts +106 -54
- package/build/backend/commands/infra-billing/get-blling-nodes.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/update-billing-node.command.d.ts +106 -54
- package/build/backend/commands/infra-billing/update-billing-node.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/disable.command.d.ts +105 -71
- package/build/backend/commands/nodes/actions/disable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/enable.command.d.ts +105 -71
- package/build/backend/commands/nodes/actions/enable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/reorder.command.d.ts +158 -98
- package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.d.ts +123 -77
- package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.js +6 -4
- package/build/backend/commands/nodes/get-all.command.d.ts +105 -71
- package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-one.command.d.ts +105 -71
- package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/update.command.d.ts +176 -104
- package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/update.command.js +8 -4
- package/build/backend/models/hosts.schema.d.ts +18 -6
- package/build/backend/models/hosts.schema.d.ts.map +1 -1
- package/build/backend/models/hosts.schema.js +4 -2
- package/build/backend/models/infra-billing-available-node.schema.d.ts +53 -27
- package/build/backend/models/infra-billing-available-node.schema.d.ts.map +1 -1
- package/build/backend/models/infra-billing-node.schema.d.ts +53 -27
- package/build/backend/models/infra-billing-node.schema.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.d.ts +79 -49
- package/build/backend/models/nodes.schema.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.js +4 -2
- package/build/frontend/commands/hosts/create.command.js +7 -13
- package/build/frontend/commands/hosts/update.command.js +4 -11
- package/build/frontend/commands/nodes/create.command.js +6 -4
- package/build/frontend/commands/nodes/update.command.js +8 -4
- package/build/frontend/models/hosts.schema.js +4 -2
- package/build/frontend/models/nodes.schema.js +4 -2
- package/package.json +1 -1
|
@@ -40,35 +40,61 @@ export declare namespace EnableNodeCommand {
|
|
|
40
40
|
totalRam: z.ZodNullable<z.ZodString>;
|
|
41
41
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
42
42
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
43
|
+
configProfile: z.ZodObject<{
|
|
44
|
+
activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
|
|
45
|
+
activeInbounds: z.ZodArray<z.ZodObject<{
|
|
46
|
+
uuid: z.ZodString;
|
|
47
|
+
profileUuid: z.ZodString;
|
|
48
|
+
tag: z.ZodString;
|
|
49
|
+
type: z.ZodString;
|
|
50
|
+
network: z.ZodNullable<z.ZodString>;
|
|
51
|
+
security: z.ZodNullable<z.ZodString>;
|
|
52
|
+
port: z.ZodNullable<z.ZodNumber>;
|
|
53
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
|
54
|
+
}, "strip", z.ZodTypeAny, {
|
|
55
|
+
type: string;
|
|
56
|
+
uuid: string;
|
|
57
|
+
profileUuid: string;
|
|
58
|
+
tag: string;
|
|
59
|
+
network: string | null;
|
|
60
|
+
security: string | null;
|
|
61
|
+
port: number | null;
|
|
62
|
+
rawInbound?: unknown;
|
|
63
|
+
}, {
|
|
64
|
+
type: string;
|
|
65
|
+
uuid: string;
|
|
66
|
+
profileUuid: string;
|
|
67
|
+
tag: string;
|
|
68
|
+
network: string | null;
|
|
69
|
+
security: string | null;
|
|
70
|
+
port: number | null;
|
|
71
|
+
rawInbound?: unknown;
|
|
72
|
+
}>, "many">;
|
|
53
73
|
}, "strip", z.ZodTypeAny, {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
74
|
+
activeConfigProfileUuid: string | null;
|
|
75
|
+
activeInbounds: {
|
|
76
|
+
type: string;
|
|
77
|
+
uuid: string;
|
|
78
|
+
profileUuid: string;
|
|
79
|
+
tag: string;
|
|
80
|
+
network: string | null;
|
|
81
|
+
security: string | null;
|
|
82
|
+
port: number | null;
|
|
83
|
+
rawInbound?: unknown;
|
|
84
|
+
}[];
|
|
62
85
|
}, {
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
86
|
+
activeConfigProfileUuid: string | null;
|
|
87
|
+
activeInbounds: {
|
|
88
|
+
type: string;
|
|
89
|
+
uuid: string;
|
|
90
|
+
profileUuid: string;
|
|
91
|
+
tag: string;
|
|
92
|
+
network: string | null;
|
|
93
|
+
security: string | null;
|
|
94
|
+
port: number | null;
|
|
95
|
+
rawInbound?: unknown;
|
|
96
|
+
}[];
|
|
97
|
+
}>;
|
|
72
98
|
providerUuid: z.ZodNullable<z.ZodString>;
|
|
73
99
|
provider: z.ZodNullable<z.ZodObject<{
|
|
74
100
|
uuid: z.ZodString;
|
|
@@ -120,17 +146,19 @@ export declare namespace EnableNodeCommand {
|
|
|
120
146
|
cpuCount: number | null;
|
|
121
147
|
cpuModel: string | null;
|
|
122
148
|
totalRam: string | null;
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
149
|
+
configProfile: {
|
|
150
|
+
activeConfigProfileUuid: string | null;
|
|
151
|
+
activeInbounds: {
|
|
152
|
+
type: string;
|
|
153
|
+
uuid: string;
|
|
154
|
+
profileUuid: string;
|
|
155
|
+
tag: string;
|
|
156
|
+
network: string | null;
|
|
157
|
+
security: string | null;
|
|
158
|
+
port: number | null;
|
|
159
|
+
rawInbound?: unknown;
|
|
160
|
+
}[];
|
|
161
|
+
};
|
|
134
162
|
providerUuid: string | null;
|
|
135
163
|
provider: {
|
|
136
164
|
uuid: string;
|
|
@@ -168,17 +196,19 @@ export declare namespace EnableNodeCommand {
|
|
|
168
196
|
cpuCount: number | null;
|
|
169
197
|
cpuModel: string | null;
|
|
170
198
|
totalRam: string | null;
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
199
|
+
configProfile: {
|
|
200
|
+
activeConfigProfileUuid: string | null;
|
|
201
|
+
activeInbounds: {
|
|
202
|
+
type: string;
|
|
203
|
+
uuid: string;
|
|
204
|
+
profileUuid: string;
|
|
205
|
+
tag: string;
|
|
206
|
+
network: string | null;
|
|
207
|
+
security: string | null;
|
|
208
|
+
port: number | null;
|
|
209
|
+
rawInbound?: unknown;
|
|
210
|
+
}[];
|
|
211
|
+
};
|
|
182
212
|
providerUuid: string | null;
|
|
183
213
|
provider: {
|
|
184
214
|
uuid: string;
|
|
@@ -218,17 +248,19 @@ export declare namespace EnableNodeCommand {
|
|
|
218
248
|
cpuCount: number | null;
|
|
219
249
|
cpuModel: string | null;
|
|
220
250
|
totalRam: string | null;
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
251
|
+
configProfile: {
|
|
252
|
+
activeConfigProfileUuid: string | null;
|
|
253
|
+
activeInbounds: {
|
|
254
|
+
type: string;
|
|
255
|
+
uuid: string;
|
|
256
|
+
profileUuid: string;
|
|
257
|
+
tag: string;
|
|
258
|
+
network: string | null;
|
|
259
|
+
security: string | null;
|
|
260
|
+
port: number | null;
|
|
261
|
+
rawInbound?: unknown;
|
|
262
|
+
}[];
|
|
263
|
+
};
|
|
232
264
|
providerUuid: string | null;
|
|
233
265
|
provider: {
|
|
234
266
|
uuid: string;
|
|
@@ -268,17 +300,19 @@ export declare namespace EnableNodeCommand {
|
|
|
268
300
|
cpuCount: number | null;
|
|
269
301
|
cpuModel: string | null;
|
|
270
302
|
totalRam: string | null;
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
303
|
+
configProfile: {
|
|
304
|
+
activeConfigProfileUuid: string | null;
|
|
305
|
+
activeInbounds: {
|
|
306
|
+
type: string;
|
|
307
|
+
uuid: string;
|
|
308
|
+
profileUuid: string;
|
|
309
|
+
tag: string;
|
|
310
|
+
network: string | null;
|
|
311
|
+
security: string | null;
|
|
312
|
+
port: number | null;
|
|
313
|
+
rawInbound?: unknown;
|
|
314
|
+
}[];
|
|
315
|
+
};
|
|
282
316
|
providerUuid: string | null;
|
|
283
317
|
provider: {
|
|
284
318
|
uuid: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"enable.command.d.ts","sourceRoot":"","sources":["../../../../../commands/nodes/actions/enable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAAgC,CAAC;IAC1C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,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/actions/enable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAAgC,CAAC;IAC1C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,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"}
|
|
@@ -32,35 +32,61 @@ export declare namespace ReorderNodeCommand {
|
|
|
32
32
|
totalRam: z.ZodNullable<z.ZodString>;
|
|
33
33
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
34
34
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
35
|
+
configProfile: z.ZodObject<{
|
|
36
|
+
activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
|
|
37
|
+
activeInbounds: z.ZodArray<z.ZodObject<{
|
|
38
|
+
uuid: z.ZodString;
|
|
39
|
+
profileUuid: z.ZodString;
|
|
40
|
+
tag: z.ZodString;
|
|
41
|
+
type: z.ZodString;
|
|
42
|
+
network: z.ZodNullable<z.ZodString>;
|
|
43
|
+
security: z.ZodNullable<z.ZodString>;
|
|
44
|
+
port: z.ZodNullable<z.ZodNumber>;
|
|
45
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
|
46
|
+
}, "strip", z.ZodTypeAny, {
|
|
47
|
+
type: string;
|
|
48
|
+
uuid: string;
|
|
49
|
+
profileUuid: string;
|
|
50
|
+
tag: string;
|
|
51
|
+
network: string | null;
|
|
52
|
+
security: string | null;
|
|
53
|
+
port: number | null;
|
|
54
|
+
rawInbound?: unknown;
|
|
55
|
+
}, {
|
|
56
|
+
type: string;
|
|
57
|
+
uuid: string;
|
|
58
|
+
profileUuid: string;
|
|
59
|
+
tag: string;
|
|
60
|
+
network: string | null;
|
|
61
|
+
security: string | null;
|
|
62
|
+
port: number | null;
|
|
63
|
+
rawInbound?: unknown;
|
|
64
|
+
}>, "many">;
|
|
45
65
|
}, "strip", z.ZodTypeAny, {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
66
|
+
activeConfigProfileUuid: string | null;
|
|
67
|
+
activeInbounds: {
|
|
68
|
+
type: string;
|
|
69
|
+
uuid: string;
|
|
70
|
+
profileUuid: string;
|
|
71
|
+
tag: string;
|
|
72
|
+
network: string | null;
|
|
73
|
+
security: string | null;
|
|
74
|
+
port: number | null;
|
|
75
|
+
rawInbound?: unknown;
|
|
76
|
+
}[];
|
|
54
77
|
}, {
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
78
|
+
activeConfigProfileUuid: string | null;
|
|
79
|
+
activeInbounds: {
|
|
80
|
+
type: string;
|
|
81
|
+
uuid: string;
|
|
82
|
+
profileUuid: string;
|
|
83
|
+
tag: string;
|
|
84
|
+
network: string | null;
|
|
85
|
+
security: string | null;
|
|
86
|
+
port: number | null;
|
|
87
|
+
rawInbound?: unknown;
|
|
88
|
+
}[];
|
|
89
|
+
}>;
|
|
64
90
|
providerUuid: z.ZodNullable<z.ZodString>;
|
|
65
91
|
provider: z.ZodNullable<z.ZodObject<{
|
|
66
92
|
uuid: z.ZodString;
|
|
@@ -132,35 +158,61 @@ export declare namespace ReorderNodeCommand {
|
|
|
132
158
|
totalRam: z.ZodNullable<z.ZodString>;
|
|
133
159
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
134
160
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
161
|
+
configProfile: z.ZodObject<{
|
|
162
|
+
activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
|
|
163
|
+
activeInbounds: z.ZodArray<z.ZodObject<{
|
|
164
|
+
uuid: z.ZodString;
|
|
165
|
+
profileUuid: z.ZodString;
|
|
166
|
+
tag: z.ZodString;
|
|
167
|
+
type: z.ZodString;
|
|
168
|
+
network: z.ZodNullable<z.ZodString>;
|
|
169
|
+
security: z.ZodNullable<z.ZodString>;
|
|
170
|
+
port: z.ZodNullable<z.ZodNumber>;
|
|
171
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
|
172
|
+
}, "strip", z.ZodTypeAny, {
|
|
173
|
+
type: string;
|
|
174
|
+
uuid: string;
|
|
175
|
+
profileUuid: string;
|
|
176
|
+
tag: string;
|
|
177
|
+
network: string | null;
|
|
178
|
+
security: string | null;
|
|
179
|
+
port: number | null;
|
|
180
|
+
rawInbound?: unknown;
|
|
181
|
+
}, {
|
|
182
|
+
type: string;
|
|
183
|
+
uuid: string;
|
|
184
|
+
profileUuid: string;
|
|
185
|
+
tag: string;
|
|
186
|
+
network: string | null;
|
|
187
|
+
security: string | null;
|
|
188
|
+
port: number | null;
|
|
189
|
+
rawInbound?: unknown;
|
|
190
|
+
}>, "many">;
|
|
145
191
|
}, "strip", z.ZodTypeAny, {
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
192
|
+
activeConfigProfileUuid: string | null;
|
|
193
|
+
activeInbounds: {
|
|
194
|
+
type: string;
|
|
195
|
+
uuid: string;
|
|
196
|
+
profileUuid: string;
|
|
197
|
+
tag: string;
|
|
198
|
+
network: string | null;
|
|
199
|
+
security: string | null;
|
|
200
|
+
port: number | null;
|
|
201
|
+
rawInbound?: unknown;
|
|
202
|
+
}[];
|
|
154
203
|
}, {
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
204
|
+
activeConfigProfileUuid: string | null;
|
|
205
|
+
activeInbounds: {
|
|
206
|
+
type: string;
|
|
207
|
+
uuid: string;
|
|
208
|
+
profileUuid: string;
|
|
209
|
+
tag: string;
|
|
210
|
+
network: string | null;
|
|
211
|
+
security: string | null;
|
|
212
|
+
port: number | null;
|
|
213
|
+
rawInbound?: unknown;
|
|
214
|
+
}[];
|
|
215
|
+
}>;
|
|
164
216
|
providerUuid: z.ZodNullable<z.ZodString>;
|
|
165
217
|
provider: z.ZodNullable<z.ZodObject<{
|
|
166
218
|
uuid: z.ZodString;
|
|
@@ -212,17 +264,19 @@ export declare namespace ReorderNodeCommand {
|
|
|
212
264
|
cpuCount: number | null;
|
|
213
265
|
cpuModel: string | null;
|
|
214
266
|
totalRam: string | null;
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
267
|
+
configProfile: {
|
|
268
|
+
activeConfigProfileUuid: string | null;
|
|
269
|
+
activeInbounds: {
|
|
270
|
+
type: string;
|
|
271
|
+
uuid: string;
|
|
272
|
+
profileUuid: string;
|
|
273
|
+
tag: string;
|
|
274
|
+
network: string | null;
|
|
275
|
+
security: string | null;
|
|
276
|
+
port: number | null;
|
|
277
|
+
rawInbound?: unknown;
|
|
278
|
+
}[];
|
|
279
|
+
};
|
|
226
280
|
providerUuid: string | null;
|
|
227
281
|
provider: {
|
|
228
282
|
uuid: string;
|
|
@@ -260,17 +314,19 @@ export declare namespace ReorderNodeCommand {
|
|
|
260
314
|
cpuCount: number | null;
|
|
261
315
|
cpuModel: string | null;
|
|
262
316
|
totalRam: string | null;
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
317
|
+
configProfile: {
|
|
318
|
+
activeConfigProfileUuid: string | null;
|
|
319
|
+
activeInbounds: {
|
|
320
|
+
type: string;
|
|
321
|
+
uuid: string;
|
|
322
|
+
profileUuid: string;
|
|
323
|
+
tag: string;
|
|
324
|
+
network: string | null;
|
|
325
|
+
security: string | null;
|
|
326
|
+
port: number | null;
|
|
327
|
+
rawInbound?: unknown;
|
|
328
|
+
}[];
|
|
329
|
+
};
|
|
274
330
|
providerUuid: string | null;
|
|
275
331
|
provider: {
|
|
276
332
|
uuid: string;
|
|
@@ -310,17 +366,19 @@ export declare namespace ReorderNodeCommand {
|
|
|
310
366
|
cpuCount: number | null;
|
|
311
367
|
cpuModel: string | null;
|
|
312
368
|
totalRam: string | null;
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
369
|
+
configProfile: {
|
|
370
|
+
activeConfigProfileUuid: string | null;
|
|
371
|
+
activeInbounds: {
|
|
372
|
+
type: string;
|
|
373
|
+
uuid: string;
|
|
374
|
+
profileUuid: string;
|
|
375
|
+
tag: string;
|
|
376
|
+
network: string | null;
|
|
377
|
+
security: string | null;
|
|
378
|
+
port: number | null;
|
|
379
|
+
rawInbound?: unknown;
|
|
380
|
+
}[];
|
|
381
|
+
};
|
|
324
382
|
providerUuid: string | null;
|
|
325
383
|
provider: {
|
|
326
384
|
uuid: string;
|
|
@@ -360,17 +418,19 @@ export declare namespace ReorderNodeCommand {
|
|
|
360
418
|
cpuCount: number | null;
|
|
361
419
|
cpuModel: string | null;
|
|
362
420
|
totalRam: string | null;
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
421
|
+
configProfile: {
|
|
422
|
+
activeConfigProfileUuid: string | null;
|
|
423
|
+
activeInbounds: {
|
|
424
|
+
type: string;
|
|
425
|
+
uuid: string;
|
|
426
|
+
profileUuid: string;
|
|
427
|
+
tag: string;
|
|
428
|
+
network: string | null;
|
|
429
|
+
security: string | null;
|
|
430
|
+
port: number | null;
|
|
431
|
+
rawInbound?: unknown;
|
|
432
|
+
}[];
|
|
433
|
+
};
|
|
374
434
|
providerUuid: string | null;
|
|
375
435
|
provider: {
|
|
376
436
|
uuid: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reorder.command.d.ts","sourceRoot":"","sources":["../../../../../commands/nodes/actions/reorder.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,8BAAiC,CAAC;IAC3C,MAAM,OAAO,8BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"reorder.command.d.ts","sourceRoot":"","sources":["../../../../../commands/nodes/actions/reorder.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,8BAAiC,CAAC;IAC3C,MAAM,OAAO,8BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,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"}
|