@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
@@ -13,25 +13,39 @@ export declare namespace CreateNodeCommand {
|
|
13
13
|
trafficResetDay: z.ZodOptional<z.ZodNumber>;
|
14
14
|
countryCode: z.ZodDefault<z.ZodString>;
|
15
15
|
consumptionMultiplier: z.ZodOptional<z.ZodEffects<z.ZodNumber, number, number>>;
|
16
|
-
|
17
|
-
|
16
|
+
configProfile: z.ZodObject<{
|
17
|
+
activeConfigProfileUuid: z.ZodString;
|
18
|
+
activeInbounds: z.ZodArray<z.ZodString, "many">;
|
19
|
+
}, "strip", z.ZodTypeAny, {
|
20
|
+
activeConfigProfileUuid: string;
|
21
|
+
activeInbounds: string[];
|
22
|
+
}, {
|
23
|
+
activeConfigProfileUuid: string;
|
24
|
+
activeInbounds: string[];
|
25
|
+
}>;
|
18
26
|
providerUuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
19
27
|
}, "strip", z.ZodTypeAny, {
|
20
28
|
name: string;
|
21
29
|
countryCode: string;
|
22
30
|
address: string;
|
23
31
|
isTrafficTrackingActive: boolean;
|
32
|
+
configProfile: {
|
33
|
+
activeConfigProfileUuid: string;
|
34
|
+
activeInbounds: string[];
|
35
|
+
};
|
24
36
|
port?: number | undefined;
|
25
37
|
trafficLimitBytes?: number | undefined;
|
26
38
|
trafficResetDay?: number | undefined;
|
27
39
|
notifyPercent?: number | undefined;
|
28
40
|
consumptionMultiplier?: number | undefined;
|
29
|
-
activeConfigProfileUuid?: string | undefined;
|
30
|
-
activeInbounds?: string[] | undefined;
|
31
41
|
providerUuid?: string | null | undefined;
|
32
42
|
}, {
|
33
43
|
name: string;
|
34
44
|
address: string;
|
45
|
+
configProfile: {
|
46
|
+
activeConfigProfileUuid: string;
|
47
|
+
activeInbounds: string[];
|
48
|
+
};
|
35
49
|
port?: number | undefined;
|
36
50
|
countryCode?: string | undefined;
|
37
51
|
trafficLimitBytes?: number | undefined;
|
@@ -39,8 +53,6 @@ export declare namespace CreateNodeCommand {
|
|
39
53
|
trafficResetDay?: number | undefined;
|
40
54
|
notifyPercent?: number | undefined;
|
41
55
|
consumptionMultiplier?: number | undefined;
|
42
|
-
activeConfigProfileUuid?: string | undefined;
|
43
|
-
activeInbounds?: string[] | undefined;
|
44
56
|
providerUuid?: string | null | undefined;
|
45
57
|
}>;
|
46
58
|
type Request = z.infer<typeof RequestSchema>;
|
@@ -73,35 +85,61 @@ export declare namespace CreateNodeCommand {
|
|
73
85
|
totalRam: z.ZodNullable<z.ZodString>;
|
74
86
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
75
87
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
88
|
+
configProfile: z.ZodObject<{
|
89
|
+
activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
|
90
|
+
activeInbounds: z.ZodArray<z.ZodObject<{
|
91
|
+
uuid: z.ZodString;
|
92
|
+
profileUuid: z.ZodString;
|
93
|
+
tag: z.ZodString;
|
94
|
+
type: z.ZodString;
|
95
|
+
network: z.ZodNullable<z.ZodString>;
|
96
|
+
security: z.ZodNullable<z.ZodString>;
|
97
|
+
port: z.ZodNullable<z.ZodNumber>;
|
98
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
99
|
+
}, "strip", z.ZodTypeAny, {
|
100
|
+
type: string;
|
101
|
+
uuid: string;
|
102
|
+
profileUuid: string;
|
103
|
+
tag: string;
|
104
|
+
network: string | null;
|
105
|
+
security: string | null;
|
106
|
+
port: number | null;
|
107
|
+
rawInbound?: unknown;
|
108
|
+
}, {
|
109
|
+
type: string;
|
110
|
+
uuid: string;
|
111
|
+
profileUuid: string;
|
112
|
+
tag: string;
|
113
|
+
network: string | null;
|
114
|
+
security: string | null;
|
115
|
+
port: number | null;
|
116
|
+
rawInbound?: unknown;
|
117
|
+
}>, "many">;
|
86
118
|
}, "strip", z.ZodTypeAny, {
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
119
|
+
activeConfigProfileUuid: string | null;
|
120
|
+
activeInbounds: {
|
121
|
+
type: string;
|
122
|
+
uuid: string;
|
123
|
+
profileUuid: string;
|
124
|
+
tag: string;
|
125
|
+
network: string | null;
|
126
|
+
security: string | null;
|
127
|
+
port: number | null;
|
128
|
+
rawInbound?: unknown;
|
129
|
+
}[];
|
95
130
|
}, {
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
131
|
+
activeConfigProfileUuid: string | null;
|
132
|
+
activeInbounds: {
|
133
|
+
type: string;
|
134
|
+
uuid: string;
|
135
|
+
profileUuid: string;
|
136
|
+
tag: string;
|
137
|
+
network: string | null;
|
138
|
+
security: string | null;
|
139
|
+
port: number | null;
|
140
|
+
rawInbound?: unknown;
|
141
|
+
}[];
|
142
|
+
}>;
|
105
143
|
providerUuid: z.ZodNullable<z.ZodString>;
|
106
144
|
provider: z.ZodNullable<z.ZodObject<{
|
107
145
|
uuid: z.ZodString;
|
@@ -153,17 +191,19 @@ export declare namespace CreateNodeCommand {
|
|
153
191
|
cpuCount: number | null;
|
154
192
|
cpuModel: string | null;
|
155
193
|
totalRam: string | null;
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
194
|
+
configProfile: {
|
195
|
+
activeConfigProfileUuid: string | null;
|
196
|
+
activeInbounds: {
|
197
|
+
type: string;
|
198
|
+
uuid: string;
|
199
|
+
profileUuid: string;
|
200
|
+
tag: string;
|
201
|
+
network: string | null;
|
202
|
+
security: string | null;
|
203
|
+
port: number | null;
|
204
|
+
rawInbound?: unknown;
|
205
|
+
}[];
|
206
|
+
};
|
167
207
|
providerUuid: string | null;
|
168
208
|
provider: {
|
169
209
|
uuid: string;
|
@@ -201,17 +241,19 @@ export declare namespace CreateNodeCommand {
|
|
201
241
|
cpuCount: number | null;
|
202
242
|
cpuModel: string | null;
|
203
243
|
totalRam: string | null;
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
244
|
+
configProfile: {
|
245
|
+
activeConfigProfileUuid: string | null;
|
246
|
+
activeInbounds: {
|
247
|
+
type: string;
|
248
|
+
uuid: string;
|
249
|
+
profileUuid: string;
|
250
|
+
tag: string;
|
251
|
+
network: string | null;
|
252
|
+
security: string | null;
|
253
|
+
port: number | null;
|
254
|
+
rawInbound?: unknown;
|
255
|
+
}[];
|
256
|
+
};
|
215
257
|
providerUuid: string | null;
|
216
258
|
provider: {
|
217
259
|
uuid: string;
|
@@ -251,17 +293,19 @@ export declare namespace CreateNodeCommand {
|
|
251
293
|
cpuCount: number | null;
|
252
294
|
cpuModel: string | null;
|
253
295
|
totalRam: string | null;
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
296
|
+
configProfile: {
|
297
|
+
activeConfigProfileUuid: string | null;
|
298
|
+
activeInbounds: {
|
299
|
+
type: string;
|
300
|
+
uuid: string;
|
301
|
+
profileUuid: string;
|
302
|
+
tag: string;
|
303
|
+
network: string | null;
|
304
|
+
security: string | null;
|
305
|
+
port: number | null;
|
306
|
+
rawInbound?: unknown;
|
307
|
+
}[];
|
308
|
+
};
|
265
309
|
providerUuid: string | null;
|
266
310
|
provider: {
|
267
311
|
uuid: string;
|
@@ -301,17 +345,19 @@ export declare namespace CreateNodeCommand {
|
|
301
345
|
cpuCount: number | null;
|
302
346
|
cpuModel: string | null;
|
303
347
|
totalRam: string | null;
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
348
|
+
configProfile: {
|
349
|
+
activeConfigProfileUuid: string | null;
|
350
|
+
activeInbounds: {
|
351
|
+
type: string;
|
352
|
+
uuid: string;
|
353
|
+
profileUuid: string;
|
354
|
+
tag: string;
|
355
|
+
network: string | null;
|
356
|
+
security: string | null;
|
357
|
+
port: number | null;
|
358
|
+
rawInbound?: unknown;
|
359
|
+
}[];
|
360
|
+
};
|
315
361
|
providerUuid: string | null;
|
316
362
|
provider: {
|
317
363
|
uuid: string;
|
@@ -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,eAAwB,CAAC;IAClC,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa
|
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,eAAwB,CAAC;IAClC,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA0CxB,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"}
|
@@ -35,10 +35,12 @@ var CreateNodeCommand;
|
|
35
35
|
.number()
|
36
36
|
.min(0.1, 'Consumption multiplier must be greater than 0')
|
37
37
|
.transform((n) => Number(n.toFixed(1)))),
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
38
|
+
configProfile: zod_1.z.object({
|
39
|
+
activeConfigProfileUuid: zod_1.z.string().uuid(),
|
40
|
+
activeInbounds: zod_1.z.array(zod_1.z.string().uuid(), {
|
41
|
+
invalid_type_error: 'Config profile inbound UUID must be an array of UUIDs',
|
42
|
+
}),
|
43
|
+
}),
|
42
44
|
providerUuid: zod_1.z.optional(zod_1.z.nullable(zod_1.z.string().uuid())),
|
43
45
|
});
|
44
46
|
CreateNodeCommand.ResponseSchema = zod_1.z.object({
|
@@ -32,35 +32,61 @@ export declare namespace GetAllNodesCommand {
|
|
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;
|
@@ -112,17 +138,19 @@ export declare namespace GetAllNodesCommand {
|
|
112
138
|
cpuCount: number | null;
|
113
139
|
cpuModel: string | null;
|
114
140
|
totalRam: string | null;
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
141
|
+
configProfile: {
|
142
|
+
activeConfigProfileUuid: string | null;
|
143
|
+
activeInbounds: {
|
144
|
+
type: string;
|
145
|
+
uuid: string;
|
146
|
+
profileUuid: string;
|
147
|
+
tag: string;
|
148
|
+
network: string | null;
|
149
|
+
security: string | null;
|
150
|
+
port: number | null;
|
151
|
+
rawInbound?: unknown;
|
152
|
+
}[];
|
153
|
+
};
|
126
154
|
providerUuid: string | null;
|
127
155
|
provider: {
|
128
156
|
uuid: string;
|
@@ -160,17 +188,19 @@ export declare namespace GetAllNodesCommand {
|
|
160
188
|
cpuCount: number | null;
|
161
189
|
cpuModel: string | null;
|
162
190
|
totalRam: string | null;
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
191
|
+
configProfile: {
|
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
|
+
}[];
|
203
|
+
};
|
174
204
|
providerUuid: string | null;
|
175
205
|
provider: {
|
176
206
|
uuid: string;
|
@@ -210,17 +240,19 @@ export declare namespace GetAllNodesCommand {
|
|
210
240
|
cpuCount: number | null;
|
211
241
|
cpuModel: string | null;
|
212
242
|
totalRam: string | null;
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
243
|
+
configProfile: {
|
244
|
+
activeConfigProfileUuid: string | null;
|
245
|
+
activeInbounds: {
|
246
|
+
type: string;
|
247
|
+
uuid: string;
|
248
|
+
profileUuid: string;
|
249
|
+
tag: string;
|
250
|
+
network: string | null;
|
251
|
+
security: string | null;
|
252
|
+
port: number | null;
|
253
|
+
rawInbound?: unknown;
|
254
|
+
}[];
|
255
|
+
};
|
224
256
|
providerUuid: string | null;
|
225
257
|
provider: {
|
226
258
|
uuid: string;
|
@@ -260,17 +292,19 @@ export declare namespace GetAllNodesCommand {
|
|
260
292
|
cpuCount: number | null;
|
261
293
|
cpuModel: string | null;
|
262
294
|
totalRam: string | null;
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
295
|
+
configProfile: {
|
296
|
+
activeConfigProfileUuid: string | null;
|
297
|
+
activeInbounds: {
|
298
|
+
type: string;
|
299
|
+
uuid: string;
|
300
|
+
profileUuid: string;
|
301
|
+
tag: string;
|
302
|
+
network: string | null;
|
303
|
+
security: string | null;
|
304
|
+
port: number | null;
|
305
|
+
rawInbound?: unknown;
|
306
|
+
}[];
|
307
|
+
};
|
274
308
|
providerUuid: string | null;
|
275
309
|
provider: {
|
276
310
|
uuid: string;
|
@@ -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;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,eAAqB,CAAC;IAC/B,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAA+D,CAAC;IAErF,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;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,eAAqB,CAAC;IAC/B,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAA+D,CAAC;IAErF,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|