@remnawave/backend-contract 2.6.55 → 2.6.56
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/api/controllers-info.d.ts +1 -1
- package/build/backend/api/controllers-info.js +1 -1
- package/build/backend/commands/infra-billing/create-billing-node.command.d.ts +24 -8
- 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 +24 -8
- package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/get-billing-nodes.command.d.ts +24 -8
- package/build/backend/commands/infra-billing/get-billing-nodes.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/update-billing-node.command.d.ts +24 -8
- package/build/backend/commands/infra-billing/update-billing-node.command.d.ts.map +1 -1
- package/build/backend/commands/keygen/get-pubkey.command.js +1 -1
- package/build/backend/commands/node-plugins/torrent-blocker/get-torrent-blocker-reports.command.d.ts +12 -4
- package/build/backend/commands/node-plugins/torrent-blocker/get-torrent-blocker-reports.command.d.ts.map +1 -1
- package/build/backend/commands/node-plugins/torrent-blocker/truncate-torrent-blocker-reports.command.d.ts +12 -4
- package/build/backend/commands/node-plugins/torrent-blocker/truncate-torrent-blocker-reports.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/disable.command.d.ts +36 -20
- package/build/backend/commands/nodes/actions/disable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/enable.command.d.ts +36 -20
- package/build/backend/commands/nodes/actions/enable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/reorder.command.d.ts +48 -24
- package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.d.ts +36 -20
- package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-all.command.d.ts +36 -20
- package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-one.command.d.ts +36 -20
- package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/update.command.d.ts +48 -24
- package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
- package/build/backend/constants/cache-keys/cache-keys.constants.d.ts +5 -0
- package/build/backend/constants/cache-keys/cache-keys.constants.d.ts.map +1 -1
- package/build/backend/constants/cache-keys/cache-keys.constants.js +5 -0
- package/build/backend/models/infra-billing-available-node.schema.d.ts +12 -4
- package/build/backend/models/infra-billing-available-node.schema.d.ts.map +1 -1
- package/build/backend/models/infra-billing-node.schema.d.ts +12 -4
- package/build/backend/models/infra-billing-node.schema.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.d.ts +24 -12
- package/build/backend/models/nodes.schema.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.js +6 -4
- package/build/backend/models/torrent-blocker-report.schema.d.ts +12 -4
- package/build/backend/models/torrent-blocker-report.schema.d.ts.map +1 -1
- package/build/backend/models/webhook/webhook.schema.d.ts +168 -96
- package/build/backend/models/webhook/webhook.schema.d.ts.map +1 -1
- package/build/frontend/api/controllers-info.js +1 -1
- package/build/frontend/commands/keygen/get-pubkey.command.js +1 -1
- package/build/frontend/constants/cache-keys/cache-keys.constants.js +5 -0
- package/build/frontend/models/nodes.schema.js +6 -4
- package/package.json +1 -1
|
@@ -22,15 +22,11 @@ export declare namespace EnableNodeCommand {
|
|
|
22
22
|
isConnecting: z.ZodBoolean;
|
|
23
23
|
lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
24
24
|
lastStatusMessage: z.ZodNullable<z.ZodString>;
|
|
25
|
-
xrayVersion: z.ZodNullable<z.ZodString>;
|
|
26
|
-
nodeVersion: z.ZodNullable<z.ZodString>;
|
|
27
|
-
xrayUptime: z.ZodString;
|
|
28
25
|
isTrafficTrackingActive: z.ZodBoolean;
|
|
29
26
|
trafficResetDay: z.ZodNullable<z.ZodNumber>;
|
|
30
27
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
|
31
28
|
trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
|
|
32
29
|
notifyPercent: z.ZodNullable<z.ZodNumber>;
|
|
33
|
-
usersOnline: z.ZodNullable<z.ZodNumber>;
|
|
34
30
|
viewPosition: z.ZodNumber;
|
|
35
31
|
countryCode: z.ZodString;
|
|
36
32
|
consumptionMultiplier: z.ZodNumber;
|
|
@@ -253,6 +249,18 @@ export declare namespace EnableNodeCommand {
|
|
|
253
249
|
networkInterfaces: string[];
|
|
254
250
|
};
|
|
255
251
|
}>>;
|
|
252
|
+
versions: z.ZodNullable<z.ZodObject<{
|
|
253
|
+
xray: z.ZodString;
|
|
254
|
+
node: z.ZodString;
|
|
255
|
+
}, "strip", z.ZodTypeAny, {
|
|
256
|
+
node: string;
|
|
257
|
+
xray: string;
|
|
258
|
+
}, {
|
|
259
|
+
node: string;
|
|
260
|
+
xray: string;
|
|
261
|
+
}>>;
|
|
262
|
+
xrayUptime: z.ZodNumber;
|
|
263
|
+
usersOnline: z.ZodNumber;
|
|
256
264
|
}, "strip", z.ZodTypeAny, {
|
|
257
265
|
tags: string[];
|
|
258
266
|
system: {
|
|
@@ -304,14 +312,10 @@ export declare namespace EnableNodeCommand {
|
|
|
304
312
|
isConnecting: boolean;
|
|
305
313
|
lastStatusChange: Date | null;
|
|
306
314
|
lastStatusMessage: string | null;
|
|
307
|
-
xrayVersion: string | null;
|
|
308
|
-
nodeVersion: string | null;
|
|
309
|
-
xrayUptime: string;
|
|
310
315
|
isTrafficTrackingActive: boolean;
|
|
311
316
|
trafficResetDay: number | null;
|
|
312
317
|
trafficUsedBytes: number | null;
|
|
313
318
|
notifyPercent: number | null;
|
|
314
|
-
usersOnline: number | null;
|
|
315
319
|
consumptionMultiplier: number;
|
|
316
320
|
configProfile: {
|
|
317
321
|
activeConfigProfileUuid: string | null;
|
|
@@ -328,6 +332,12 @@ export declare namespace EnableNodeCommand {
|
|
|
328
332
|
};
|
|
329
333
|
providerUuid: string | null;
|
|
330
334
|
activePluginUuid: string | null;
|
|
335
|
+
versions: {
|
|
336
|
+
node: string;
|
|
337
|
+
xray: string;
|
|
338
|
+
} | null;
|
|
339
|
+
xrayUptime: number;
|
|
340
|
+
usersOnline: number;
|
|
331
341
|
}, {
|
|
332
342
|
tags: string[];
|
|
333
343
|
system: {
|
|
@@ -379,14 +389,10 @@ export declare namespace EnableNodeCommand {
|
|
|
379
389
|
isConnecting: boolean;
|
|
380
390
|
lastStatusChange: string | null;
|
|
381
391
|
lastStatusMessage: string | null;
|
|
382
|
-
xrayVersion: string | null;
|
|
383
|
-
nodeVersion: string | null;
|
|
384
|
-
xrayUptime: string;
|
|
385
392
|
isTrafficTrackingActive: boolean;
|
|
386
393
|
trafficResetDay: number | null;
|
|
387
394
|
trafficUsedBytes: number | null;
|
|
388
395
|
notifyPercent: number | null;
|
|
389
|
-
usersOnline: number | null;
|
|
390
396
|
consumptionMultiplier: number;
|
|
391
397
|
configProfile: {
|
|
392
398
|
activeConfigProfileUuid: string | null;
|
|
@@ -403,6 +409,12 @@ export declare namespace EnableNodeCommand {
|
|
|
403
409
|
};
|
|
404
410
|
providerUuid: string | null;
|
|
405
411
|
activePluginUuid: string | null;
|
|
412
|
+
versions: {
|
|
413
|
+
node: string;
|
|
414
|
+
xray: string;
|
|
415
|
+
} | null;
|
|
416
|
+
xrayUptime: number;
|
|
417
|
+
usersOnline: number;
|
|
406
418
|
}>;
|
|
407
419
|
}, "strip", z.ZodTypeAny, {
|
|
408
420
|
response: {
|
|
@@ -456,14 +468,10 @@ export declare namespace EnableNodeCommand {
|
|
|
456
468
|
isConnecting: boolean;
|
|
457
469
|
lastStatusChange: Date | null;
|
|
458
470
|
lastStatusMessage: string | null;
|
|
459
|
-
xrayVersion: string | null;
|
|
460
|
-
nodeVersion: string | null;
|
|
461
|
-
xrayUptime: string;
|
|
462
471
|
isTrafficTrackingActive: boolean;
|
|
463
472
|
trafficResetDay: number | null;
|
|
464
473
|
trafficUsedBytes: number | null;
|
|
465
474
|
notifyPercent: number | null;
|
|
466
|
-
usersOnline: number | null;
|
|
467
475
|
consumptionMultiplier: number;
|
|
468
476
|
configProfile: {
|
|
469
477
|
activeConfigProfileUuid: string | null;
|
|
@@ -480,6 +488,12 @@ export declare namespace EnableNodeCommand {
|
|
|
480
488
|
};
|
|
481
489
|
providerUuid: string | null;
|
|
482
490
|
activePluginUuid: string | null;
|
|
491
|
+
versions: {
|
|
492
|
+
node: string;
|
|
493
|
+
xray: string;
|
|
494
|
+
} | null;
|
|
495
|
+
xrayUptime: number;
|
|
496
|
+
usersOnline: number;
|
|
483
497
|
};
|
|
484
498
|
}, {
|
|
485
499
|
response: {
|
|
@@ -533,14 +547,10 @@ export declare namespace EnableNodeCommand {
|
|
|
533
547
|
isConnecting: boolean;
|
|
534
548
|
lastStatusChange: string | null;
|
|
535
549
|
lastStatusMessage: string | null;
|
|
536
|
-
xrayVersion: string | null;
|
|
537
|
-
nodeVersion: string | null;
|
|
538
|
-
xrayUptime: string;
|
|
539
550
|
isTrafficTrackingActive: boolean;
|
|
540
551
|
trafficResetDay: number | null;
|
|
541
552
|
trafficUsedBytes: number | null;
|
|
542
553
|
notifyPercent: number | null;
|
|
543
|
-
usersOnline: number | null;
|
|
544
554
|
consumptionMultiplier: number;
|
|
545
555
|
configProfile: {
|
|
546
556
|
activeConfigProfileUuid: string | null;
|
|
@@ -557,6 +567,12 @@ export declare namespace EnableNodeCommand {
|
|
|
557
567
|
};
|
|
558
568
|
providerUuid: string | null;
|
|
559
569
|
activePluginUuid: string | null;
|
|
570
|
+
versions: {
|
|
571
|
+
node: string;
|
|
572
|
+
xray: string;
|
|
573
|
+
} | null;
|
|
574
|
+
xrayUptime: number;
|
|
575
|
+
usersOnline: number;
|
|
560
576
|
};
|
|
561
577
|
}>;
|
|
562
578
|
type Response = z.infer<typeof ResponseSchema>;
|
|
@@ -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"}
|
|
@@ -14,15 +14,11 @@ export declare namespace ReorderNodeCommand {
|
|
|
14
14
|
isConnecting: z.ZodBoolean;
|
|
15
15
|
lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
16
16
|
lastStatusMessage: z.ZodNullable<z.ZodString>;
|
|
17
|
-
xrayVersion: z.ZodNullable<z.ZodString>;
|
|
18
|
-
nodeVersion: z.ZodNullable<z.ZodString>;
|
|
19
|
-
xrayUptime: z.ZodString;
|
|
20
17
|
isTrafficTrackingActive: z.ZodBoolean;
|
|
21
18
|
trafficResetDay: z.ZodNullable<z.ZodNumber>;
|
|
22
19
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
|
23
20
|
trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
|
|
24
21
|
notifyPercent: z.ZodNullable<z.ZodNumber>;
|
|
25
|
-
usersOnline: z.ZodNullable<z.ZodNumber>;
|
|
26
22
|
viewPosition: z.ZodNumber;
|
|
27
23
|
countryCode: z.ZodString;
|
|
28
24
|
consumptionMultiplier: z.ZodNumber;
|
|
@@ -245,6 +241,18 @@ export declare namespace ReorderNodeCommand {
|
|
|
245
241
|
networkInterfaces: string[];
|
|
246
242
|
};
|
|
247
243
|
}>>;
|
|
244
|
+
versions: z.ZodNullable<z.ZodObject<{
|
|
245
|
+
xray: z.ZodString;
|
|
246
|
+
node: z.ZodString;
|
|
247
|
+
}, "strip", z.ZodTypeAny, {
|
|
248
|
+
node: string;
|
|
249
|
+
xray: string;
|
|
250
|
+
}, {
|
|
251
|
+
node: string;
|
|
252
|
+
xray: string;
|
|
253
|
+
}>>;
|
|
254
|
+
xrayUptime: z.ZodNumber;
|
|
255
|
+
usersOnline: z.ZodNumber;
|
|
248
256
|
}, "uuid" | "viewPosition">, "strip", z.ZodTypeAny, {
|
|
249
257
|
uuid: string;
|
|
250
258
|
viewPosition: number;
|
|
@@ -275,15 +283,11 @@ export declare namespace ReorderNodeCommand {
|
|
|
275
283
|
isConnecting: z.ZodBoolean;
|
|
276
284
|
lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
277
285
|
lastStatusMessage: z.ZodNullable<z.ZodString>;
|
|
278
|
-
xrayVersion: z.ZodNullable<z.ZodString>;
|
|
279
|
-
nodeVersion: z.ZodNullable<z.ZodString>;
|
|
280
|
-
xrayUptime: z.ZodString;
|
|
281
286
|
isTrafficTrackingActive: z.ZodBoolean;
|
|
282
287
|
trafficResetDay: z.ZodNullable<z.ZodNumber>;
|
|
283
288
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
|
284
289
|
trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
|
|
285
290
|
notifyPercent: z.ZodNullable<z.ZodNumber>;
|
|
286
|
-
usersOnline: z.ZodNullable<z.ZodNumber>;
|
|
287
291
|
viewPosition: z.ZodNumber;
|
|
288
292
|
countryCode: z.ZodString;
|
|
289
293
|
consumptionMultiplier: z.ZodNumber;
|
|
@@ -506,6 +510,18 @@ export declare namespace ReorderNodeCommand {
|
|
|
506
510
|
networkInterfaces: string[];
|
|
507
511
|
};
|
|
508
512
|
}>>;
|
|
513
|
+
versions: z.ZodNullable<z.ZodObject<{
|
|
514
|
+
xray: z.ZodString;
|
|
515
|
+
node: z.ZodString;
|
|
516
|
+
}, "strip", z.ZodTypeAny, {
|
|
517
|
+
node: string;
|
|
518
|
+
xray: string;
|
|
519
|
+
}, {
|
|
520
|
+
node: string;
|
|
521
|
+
xray: string;
|
|
522
|
+
}>>;
|
|
523
|
+
xrayUptime: z.ZodNumber;
|
|
524
|
+
usersOnline: z.ZodNumber;
|
|
509
525
|
}, "strip", z.ZodTypeAny, {
|
|
510
526
|
tags: string[];
|
|
511
527
|
system: {
|
|
@@ -557,14 +573,10 @@ export declare namespace ReorderNodeCommand {
|
|
|
557
573
|
isConnecting: boolean;
|
|
558
574
|
lastStatusChange: Date | null;
|
|
559
575
|
lastStatusMessage: string | null;
|
|
560
|
-
xrayVersion: string | null;
|
|
561
|
-
nodeVersion: string | null;
|
|
562
|
-
xrayUptime: string;
|
|
563
576
|
isTrafficTrackingActive: boolean;
|
|
564
577
|
trafficResetDay: number | null;
|
|
565
578
|
trafficUsedBytes: number | null;
|
|
566
579
|
notifyPercent: number | null;
|
|
567
|
-
usersOnline: number | null;
|
|
568
580
|
consumptionMultiplier: number;
|
|
569
581
|
configProfile: {
|
|
570
582
|
activeConfigProfileUuid: string | null;
|
|
@@ -581,6 +593,12 @@ export declare namespace ReorderNodeCommand {
|
|
|
581
593
|
};
|
|
582
594
|
providerUuid: string | null;
|
|
583
595
|
activePluginUuid: string | null;
|
|
596
|
+
versions: {
|
|
597
|
+
node: string;
|
|
598
|
+
xray: string;
|
|
599
|
+
} | null;
|
|
600
|
+
xrayUptime: number;
|
|
601
|
+
usersOnline: number;
|
|
584
602
|
}, {
|
|
585
603
|
tags: string[];
|
|
586
604
|
system: {
|
|
@@ -632,14 +650,10 @@ export declare namespace ReorderNodeCommand {
|
|
|
632
650
|
isConnecting: boolean;
|
|
633
651
|
lastStatusChange: string | null;
|
|
634
652
|
lastStatusMessage: string | null;
|
|
635
|
-
xrayVersion: string | null;
|
|
636
|
-
nodeVersion: string | null;
|
|
637
|
-
xrayUptime: string;
|
|
638
653
|
isTrafficTrackingActive: boolean;
|
|
639
654
|
trafficResetDay: number | null;
|
|
640
655
|
trafficUsedBytes: number | null;
|
|
641
656
|
notifyPercent: number | null;
|
|
642
|
-
usersOnline: number | null;
|
|
643
657
|
consumptionMultiplier: number;
|
|
644
658
|
configProfile: {
|
|
645
659
|
activeConfigProfileUuid: string | null;
|
|
@@ -656,6 +670,12 @@ export declare namespace ReorderNodeCommand {
|
|
|
656
670
|
};
|
|
657
671
|
providerUuid: string | null;
|
|
658
672
|
activePluginUuid: string | null;
|
|
673
|
+
versions: {
|
|
674
|
+
node: string;
|
|
675
|
+
xray: string;
|
|
676
|
+
} | null;
|
|
677
|
+
xrayUptime: number;
|
|
678
|
+
usersOnline: number;
|
|
659
679
|
}>, "many">;
|
|
660
680
|
}, "strip", z.ZodTypeAny, {
|
|
661
681
|
response: {
|
|
@@ -709,14 +729,10 @@ export declare namespace ReorderNodeCommand {
|
|
|
709
729
|
isConnecting: boolean;
|
|
710
730
|
lastStatusChange: Date | null;
|
|
711
731
|
lastStatusMessage: string | null;
|
|
712
|
-
xrayVersion: string | null;
|
|
713
|
-
nodeVersion: string | null;
|
|
714
|
-
xrayUptime: string;
|
|
715
732
|
isTrafficTrackingActive: boolean;
|
|
716
733
|
trafficResetDay: number | null;
|
|
717
734
|
trafficUsedBytes: number | null;
|
|
718
735
|
notifyPercent: number | null;
|
|
719
|
-
usersOnline: number | null;
|
|
720
736
|
consumptionMultiplier: number;
|
|
721
737
|
configProfile: {
|
|
722
738
|
activeConfigProfileUuid: string | null;
|
|
@@ -733,6 +749,12 @@ export declare namespace ReorderNodeCommand {
|
|
|
733
749
|
};
|
|
734
750
|
providerUuid: string | null;
|
|
735
751
|
activePluginUuid: string | null;
|
|
752
|
+
versions: {
|
|
753
|
+
node: string;
|
|
754
|
+
xray: string;
|
|
755
|
+
} | null;
|
|
756
|
+
xrayUptime: number;
|
|
757
|
+
usersOnline: number;
|
|
736
758
|
}[];
|
|
737
759
|
}, {
|
|
738
760
|
response: {
|
|
@@ -786,14 +808,10 @@ export declare namespace ReorderNodeCommand {
|
|
|
786
808
|
isConnecting: boolean;
|
|
787
809
|
lastStatusChange: string | null;
|
|
788
810
|
lastStatusMessage: string | null;
|
|
789
|
-
xrayVersion: string | null;
|
|
790
|
-
nodeVersion: string | null;
|
|
791
|
-
xrayUptime: string;
|
|
792
811
|
isTrafficTrackingActive: boolean;
|
|
793
812
|
trafficResetDay: number | null;
|
|
794
813
|
trafficUsedBytes: number | null;
|
|
795
814
|
notifyPercent: number | null;
|
|
796
|
-
usersOnline: number | null;
|
|
797
815
|
consumptionMultiplier: number;
|
|
798
816
|
configProfile: {
|
|
799
817
|
activeConfigProfileUuid: string | null;
|
|
@@ -810,6 +828,12 @@ export declare namespace ReorderNodeCommand {
|
|
|
810
828
|
};
|
|
811
829
|
providerUuid: string | null;
|
|
812
830
|
activePluginUuid: string | null;
|
|
831
|
+
versions: {
|
|
832
|
+
node: string;
|
|
833
|
+
xray: string;
|
|
834
|
+
} | null;
|
|
835
|
+
xrayUptime: number;
|
|
836
|
+
usersOnline: number;
|
|
813
837
|
}[];
|
|
814
838
|
}>;
|
|
815
839
|
type Response = z.infer<typeof ResponseSchema>;
|
|
@@ -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"}
|
|
@@ -73,15 +73,11 @@ export declare namespace CreateNodeCommand {
|
|
|
73
73
|
isConnecting: z.ZodBoolean;
|
|
74
74
|
lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
75
75
|
lastStatusMessage: z.ZodNullable<z.ZodString>;
|
|
76
|
-
xrayVersion: z.ZodNullable<z.ZodString>;
|
|
77
|
-
nodeVersion: z.ZodNullable<z.ZodString>;
|
|
78
|
-
xrayUptime: z.ZodString;
|
|
79
76
|
isTrafficTrackingActive: z.ZodBoolean;
|
|
80
77
|
trafficResetDay: z.ZodNullable<z.ZodNumber>;
|
|
81
78
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
|
82
79
|
trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
|
|
83
80
|
notifyPercent: z.ZodNullable<z.ZodNumber>;
|
|
84
|
-
usersOnline: z.ZodNullable<z.ZodNumber>;
|
|
85
81
|
viewPosition: z.ZodNumber;
|
|
86
82
|
countryCode: z.ZodString;
|
|
87
83
|
consumptionMultiplier: z.ZodNumber;
|
|
@@ -304,6 +300,18 @@ export declare namespace CreateNodeCommand {
|
|
|
304
300
|
networkInterfaces: string[];
|
|
305
301
|
};
|
|
306
302
|
}>>;
|
|
303
|
+
versions: z.ZodNullable<z.ZodObject<{
|
|
304
|
+
xray: z.ZodString;
|
|
305
|
+
node: z.ZodString;
|
|
306
|
+
}, "strip", z.ZodTypeAny, {
|
|
307
|
+
node: string;
|
|
308
|
+
xray: string;
|
|
309
|
+
}, {
|
|
310
|
+
node: string;
|
|
311
|
+
xray: string;
|
|
312
|
+
}>>;
|
|
313
|
+
xrayUptime: z.ZodNumber;
|
|
314
|
+
usersOnline: z.ZodNumber;
|
|
307
315
|
}, "strip", z.ZodTypeAny, {
|
|
308
316
|
tags: string[];
|
|
309
317
|
system: {
|
|
@@ -355,14 +363,10 @@ export declare namespace CreateNodeCommand {
|
|
|
355
363
|
isConnecting: boolean;
|
|
356
364
|
lastStatusChange: Date | null;
|
|
357
365
|
lastStatusMessage: string | null;
|
|
358
|
-
xrayVersion: string | null;
|
|
359
|
-
nodeVersion: string | null;
|
|
360
|
-
xrayUptime: string;
|
|
361
366
|
isTrafficTrackingActive: boolean;
|
|
362
367
|
trafficResetDay: number | null;
|
|
363
368
|
trafficUsedBytes: number | null;
|
|
364
369
|
notifyPercent: number | null;
|
|
365
|
-
usersOnline: number | null;
|
|
366
370
|
consumptionMultiplier: number;
|
|
367
371
|
configProfile: {
|
|
368
372
|
activeConfigProfileUuid: string | null;
|
|
@@ -379,6 +383,12 @@ export declare namespace CreateNodeCommand {
|
|
|
379
383
|
};
|
|
380
384
|
providerUuid: string | null;
|
|
381
385
|
activePluginUuid: string | null;
|
|
386
|
+
versions: {
|
|
387
|
+
node: string;
|
|
388
|
+
xray: string;
|
|
389
|
+
} | null;
|
|
390
|
+
xrayUptime: number;
|
|
391
|
+
usersOnline: number;
|
|
382
392
|
}, {
|
|
383
393
|
tags: string[];
|
|
384
394
|
system: {
|
|
@@ -430,14 +440,10 @@ export declare namespace CreateNodeCommand {
|
|
|
430
440
|
isConnecting: boolean;
|
|
431
441
|
lastStatusChange: string | null;
|
|
432
442
|
lastStatusMessage: string | null;
|
|
433
|
-
xrayVersion: string | null;
|
|
434
|
-
nodeVersion: string | null;
|
|
435
|
-
xrayUptime: string;
|
|
436
443
|
isTrafficTrackingActive: boolean;
|
|
437
444
|
trafficResetDay: number | null;
|
|
438
445
|
trafficUsedBytes: number | null;
|
|
439
446
|
notifyPercent: number | null;
|
|
440
|
-
usersOnline: number | null;
|
|
441
447
|
consumptionMultiplier: number;
|
|
442
448
|
configProfile: {
|
|
443
449
|
activeConfigProfileUuid: string | null;
|
|
@@ -454,6 +460,12 @@ export declare namespace CreateNodeCommand {
|
|
|
454
460
|
};
|
|
455
461
|
providerUuid: string | null;
|
|
456
462
|
activePluginUuid: string | null;
|
|
463
|
+
versions: {
|
|
464
|
+
node: string;
|
|
465
|
+
xray: string;
|
|
466
|
+
} | null;
|
|
467
|
+
xrayUptime: number;
|
|
468
|
+
usersOnline: number;
|
|
457
469
|
}>;
|
|
458
470
|
}, "strip", z.ZodTypeAny, {
|
|
459
471
|
response: {
|
|
@@ -507,14 +519,10 @@ export declare namespace CreateNodeCommand {
|
|
|
507
519
|
isConnecting: boolean;
|
|
508
520
|
lastStatusChange: Date | null;
|
|
509
521
|
lastStatusMessage: string | null;
|
|
510
|
-
xrayVersion: string | null;
|
|
511
|
-
nodeVersion: string | null;
|
|
512
|
-
xrayUptime: string;
|
|
513
522
|
isTrafficTrackingActive: boolean;
|
|
514
523
|
trafficResetDay: number | null;
|
|
515
524
|
trafficUsedBytes: number | null;
|
|
516
525
|
notifyPercent: number | null;
|
|
517
|
-
usersOnline: number | null;
|
|
518
526
|
consumptionMultiplier: number;
|
|
519
527
|
configProfile: {
|
|
520
528
|
activeConfigProfileUuid: string | null;
|
|
@@ -531,6 +539,12 @@ export declare namespace CreateNodeCommand {
|
|
|
531
539
|
};
|
|
532
540
|
providerUuid: string | null;
|
|
533
541
|
activePluginUuid: string | null;
|
|
542
|
+
versions: {
|
|
543
|
+
node: string;
|
|
544
|
+
xray: string;
|
|
545
|
+
} | null;
|
|
546
|
+
xrayUptime: number;
|
|
547
|
+
usersOnline: number;
|
|
534
548
|
};
|
|
535
549
|
}, {
|
|
536
550
|
response: {
|
|
@@ -584,14 +598,10 @@ export declare namespace CreateNodeCommand {
|
|
|
584
598
|
isConnecting: boolean;
|
|
585
599
|
lastStatusChange: string | null;
|
|
586
600
|
lastStatusMessage: string | null;
|
|
587
|
-
xrayVersion: string | null;
|
|
588
|
-
nodeVersion: string | null;
|
|
589
|
-
xrayUptime: string;
|
|
590
601
|
isTrafficTrackingActive: boolean;
|
|
591
602
|
trafficResetDay: number | null;
|
|
592
603
|
trafficUsedBytes: number | null;
|
|
593
604
|
notifyPercent: number | null;
|
|
594
|
-
usersOnline: number | null;
|
|
595
605
|
consumptionMultiplier: number;
|
|
596
606
|
configProfile: {
|
|
597
607
|
activeConfigProfileUuid: string | null;
|
|
@@ -608,6 +618,12 @@ export declare namespace CreateNodeCommand {
|
|
|
608
618
|
};
|
|
609
619
|
providerUuid: string | null;
|
|
610
620
|
activePluginUuid: string | null;
|
|
621
|
+
versions: {
|
|
622
|
+
node: string;
|
|
623
|
+
xray: string;
|
|
624
|
+
} | null;
|
|
625
|
+
xrayUptime: number;
|
|
626
|
+
usersOnline: number;
|
|
611
627
|
};
|
|
612
628
|
}>;
|
|
613
629
|
type Response = z.infer<typeof ResponseSchema>;
|
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA8DxB,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,eAAwB,CAAC;IAClC,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA8DxB,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"}
|
|
@@ -14,15 +14,11 @@ export declare namespace GetAllNodesCommand {
|
|
|
14
14
|
isConnecting: z.ZodBoolean;
|
|
15
15
|
lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
|
16
16
|
lastStatusMessage: z.ZodNullable<z.ZodString>;
|
|
17
|
-
xrayVersion: z.ZodNullable<z.ZodString>;
|
|
18
|
-
nodeVersion: z.ZodNullable<z.ZodString>;
|
|
19
|
-
xrayUptime: z.ZodString;
|
|
20
17
|
isTrafficTrackingActive: z.ZodBoolean;
|
|
21
18
|
trafficResetDay: z.ZodNullable<z.ZodNumber>;
|
|
22
19
|
trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
|
|
23
20
|
trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
|
|
24
21
|
notifyPercent: z.ZodNullable<z.ZodNumber>;
|
|
25
|
-
usersOnline: z.ZodNullable<z.ZodNumber>;
|
|
26
22
|
viewPosition: z.ZodNumber;
|
|
27
23
|
countryCode: z.ZodString;
|
|
28
24
|
consumptionMultiplier: z.ZodNumber;
|
|
@@ -245,6 +241,18 @@ export declare namespace GetAllNodesCommand {
|
|
|
245
241
|
networkInterfaces: string[];
|
|
246
242
|
};
|
|
247
243
|
}>>;
|
|
244
|
+
versions: z.ZodNullable<z.ZodObject<{
|
|
245
|
+
xray: z.ZodString;
|
|
246
|
+
node: z.ZodString;
|
|
247
|
+
}, "strip", z.ZodTypeAny, {
|
|
248
|
+
node: string;
|
|
249
|
+
xray: string;
|
|
250
|
+
}, {
|
|
251
|
+
node: string;
|
|
252
|
+
xray: string;
|
|
253
|
+
}>>;
|
|
254
|
+
xrayUptime: z.ZodNumber;
|
|
255
|
+
usersOnline: z.ZodNumber;
|
|
248
256
|
}, "strip", z.ZodTypeAny, {
|
|
249
257
|
tags: string[];
|
|
250
258
|
system: {
|
|
@@ -296,14 +304,10 @@ export declare namespace GetAllNodesCommand {
|
|
|
296
304
|
isConnecting: boolean;
|
|
297
305
|
lastStatusChange: Date | null;
|
|
298
306
|
lastStatusMessage: string | null;
|
|
299
|
-
xrayVersion: string | null;
|
|
300
|
-
nodeVersion: string | null;
|
|
301
|
-
xrayUptime: string;
|
|
302
307
|
isTrafficTrackingActive: boolean;
|
|
303
308
|
trafficResetDay: number | null;
|
|
304
309
|
trafficUsedBytes: number | null;
|
|
305
310
|
notifyPercent: number | null;
|
|
306
|
-
usersOnline: number | null;
|
|
307
311
|
consumptionMultiplier: number;
|
|
308
312
|
configProfile: {
|
|
309
313
|
activeConfigProfileUuid: string | null;
|
|
@@ -320,6 +324,12 @@ export declare namespace GetAllNodesCommand {
|
|
|
320
324
|
};
|
|
321
325
|
providerUuid: string | null;
|
|
322
326
|
activePluginUuid: string | null;
|
|
327
|
+
versions: {
|
|
328
|
+
node: string;
|
|
329
|
+
xray: string;
|
|
330
|
+
} | null;
|
|
331
|
+
xrayUptime: number;
|
|
332
|
+
usersOnline: number;
|
|
323
333
|
}, {
|
|
324
334
|
tags: string[];
|
|
325
335
|
system: {
|
|
@@ -371,14 +381,10 @@ export declare namespace GetAllNodesCommand {
|
|
|
371
381
|
isConnecting: boolean;
|
|
372
382
|
lastStatusChange: string | null;
|
|
373
383
|
lastStatusMessage: string | null;
|
|
374
|
-
xrayVersion: string | null;
|
|
375
|
-
nodeVersion: string | null;
|
|
376
|
-
xrayUptime: string;
|
|
377
384
|
isTrafficTrackingActive: boolean;
|
|
378
385
|
trafficResetDay: number | null;
|
|
379
386
|
trafficUsedBytes: number | null;
|
|
380
387
|
notifyPercent: number | null;
|
|
381
|
-
usersOnline: number | null;
|
|
382
388
|
consumptionMultiplier: number;
|
|
383
389
|
configProfile: {
|
|
384
390
|
activeConfigProfileUuid: string | null;
|
|
@@ -395,6 +401,12 @@ export declare namespace GetAllNodesCommand {
|
|
|
395
401
|
};
|
|
396
402
|
providerUuid: string | null;
|
|
397
403
|
activePluginUuid: string | null;
|
|
404
|
+
versions: {
|
|
405
|
+
node: string;
|
|
406
|
+
xray: string;
|
|
407
|
+
} | null;
|
|
408
|
+
xrayUptime: number;
|
|
409
|
+
usersOnline: number;
|
|
398
410
|
}>, "many">;
|
|
399
411
|
}, "strip", z.ZodTypeAny, {
|
|
400
412
|
response: {
|
|
@@ -448,14 +460,10 @@ export declare namespace GetAllNodesCommand {
|
|
|
448
460
|
isConnecting: boolean;
|
|
449
461
|
lastStatusChange: Date | null;
|
|
450
462
|
lastStatusMessage: string | null;
|
|
451
|
-
xrayVersion: string | null;
|
|
452
|
-
nodeVersion: string | null;
|
|
453
|
-
xrayUptime: string;
|
|
454
463
|
isTrafficTrackingActive: boolean;
|
|
455
464
|
trafficResetDay: number | null;
|
|
456
465
|
trafficUsedBytes: number | null;
|
|
457
466
|
notifyPercent: number | null;
|
|
458
|
-
usersOnline: number | null;
|
|
459
467
|
consumptionMultiplier: number;
|
|
460
468
|
configProfile: {
|
|
461
469
|
activeConfigProfileUuid: string | null;
|
|
@@ -472,6 +480,12 @@ export declare namespace GetAllNodesCommand {
|
|
|
472
480
|
};
|
|
473
481
|
providerUuid: string | null;
|
|
474
482
|
activePluginUuid: string | null;
|
|
483
|
+
versions: {
|
|
484
|
+
node: string;
|
|
485
|
+
xray: string;
|
|
486
|
+
} | null;
|
|
487
|
+
xrayUptime: number;
|
|
488
|
+
usersOnline: number;
|
|
475
489
|
}[];
|
|
476
490
|
}, {
|
|
477
491
|
response: {
|
|
@@ -525,14 +539,10 @@ export declare namespace GetAllNodesCommand {
|
|
|
525
539
|
isConnecting: boolean;
|
|
526
540
|
lastStatusChange: string | null;
|
|
527
541
|
lastStatusMessage: string | null;
|
|
528
|
-
xrayVersion: string | null;
|
|
529
|
-
nodeVersion: string | null;
|
|
530
|
-
xrayUptime: string;
|
|
531
542
|
isTrafficTrackingActive: boolean;
|
|
532
543
|
trafficResetDay: number | null;
|
|
533
544
|
trafficUsedBytes: number | null;
|
|
534
545
|
notifyPercent: number | null;
|
|
535
|
-
usersOnline: number | null;
|
|
536
546
|
consumptionMultiplier: number;
|
|
537
547
|
configProfile: {
|
|
538
548
|
activeConfigProfileUuid: string | null;
|
|
@@ -549,6 +559,12 @@ export declare namespace GetAllNodesCommand {
|
|
|
549
559
|
};
|
|
550
560
|
providerUuid: string | null;
|
|
551
561
|
activePluginUuid: string | null;
|
|
562
|
+
versions: {
|
|
563
|
+
node: string;
|
|
564
|
+
xray: string;
|
|
565
|
+
} | null;
|
|
566
|
+
xrayUptime: number;
|
|
567
|
+
usersOnline: number;
|
|
552
568
|
}[];
|
|
553
569
|
}>;
|
|
554
570
|
type Response = z.infer<typeof ResponseSchema>;
|
|
@@ -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"}
|