@remnawave/backend-contract 2.6.49 → 2.6.51
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/infra-billing/create-billing-node.command.d.ts +160 -6
- 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 +160 -6
- 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 +160 -6
- 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 +160 -6
- package/build/backend/commands/infra-billing/update-billing-node.command.d.ts.map +1 -1
- package/build/backend/commands/node-plugins/torrent-blocker/get-torrent-blocker-reports.command.d.ts +80 -3
- 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 +80 -3
- 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 +152 -15
- package/build/backend/commands/nodes/actions/disable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/enable.command.d.ts +152 -15
- package/build/backend/commands/nodes/actions/enable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/reorder.command.d.ts +232 -18
- package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.d.ts +152 -15
- package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-all.command.d.ts +152 -15
- package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-one.command.d.ts +152 -15
- package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/update.command.d.ts +232 -18
- package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
- package/build/backend/commands/system/get-remnawave-health.command.d.ts +6 -6
- package/build/backend/commands/system/get-stats.command.d.ts +4 -25
- package/build/backend/commands/system/get-stats.command.d.ts.map +1 -1
- package/build/backend/commands/system/get-stats.command.js +0 -3
- package/build/backend/constants/cache-keys/cache-keys.constants.d.ts +6 -5
- package/build/backend/constants/cache-keys/cache-keys.constants.d.ts.map +1 -1
- package/build/backend/constants/cache-keys/cache-keys.constants.js +6 -5
- package/build/backend/models/index.d.ts +1 -0
- package/build/backend/models/index.d.ts.map +1 -1
- package/build/backend/models/index.js +1 -0
- package/build/backend/models/infra-billing-available-node.schema.d.ts +80 -3
- package/build/backend/models/infra-billing-available-node.schema.d.ts.map +1 -1
- package/build/backend/models/infra-billing-node.schema.d.ts +80 -3
- package/build/backend/models/infra-billing-node.schema.d.ts.map +1 -1
- package/build/backend/models/node-system.schema.d.ts +129 -0
- package/build/backend/models/node-system.schema.d.ts.map +1 -0
- package/build/backend/models/node-system.schema.js +24 -0
- package/build/backend/models/nodes.schema.d.ts +116 -9
- package/build/backend/models/nodes.schema.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.js +2 -3
- package/build/backend/models/torrent-blocker-report.schema.d.ts +80 -3
- package/build/backend/models/torrent-blocker-report.schema.d.ts.map +1 -1
- package/build/backend/models/webhook/webhook.schema.d.ts +680 -72
- package/build/backend/models/webhook/webhook.schema.d.ts.map +1 -1
- package/build/frontend/commands/system/get-stats.command.js +0 -3
- package/build/frontend/constants/cache-keys/cache-keys.constants.js +6 -5
- package/build/frontend/models/index.js +1 -0
- package/build/frontend/models/node-system.schema.js +24 -0
- package/build/frontend/models/nodes.schema.js +2 -3
- package/package.json +1 -1
|
@@ -629,9 +629,6 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
|
|
|
629
629
|
countryCode: z.ZodString;
|
|
630
630
|
consumptionMultiplier: z.ZodNumber;
|
|
631
631
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
632
|
-
cpuCount: z.ZodNullable<z.ZodNumber>;
|
|
633
|
-
cpuModel: z.ZodNullable<z.ZodString>;
|
|
634
|
-
totalRam: z.ZodNullable<z.ZodString>;
|
|
635
632
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
636
633
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
637
634
|
configProfile: z.ZodObject<{
|
|
@@ -713,8 +710,106 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
|
|
|
713
710
|
loginUrl: string | null;
|
|
714
711
|
}>>;
|
|
715
712
|
activePluginUuid: z.ZodNullable<z.ZodString>;
|
|
713
|
+
system: z.ZodNullable<z.ZodObject<{
|
|
714
|
+
info: z.ZodObject<{
|
|
715
|
+
arch: z.ZodString;
|
|
716
|
+
cpus: z.ZodNumber;
|
|
717
|
+
cpuModel: z.ZodString;
|
|
718
|
+
memoryTotal: z.ZodNumber;
|
|
719
|
+
hostname: z.ZodString;
|
|
720
|
+
platform: z.ZodString;
|
|
721
|
+
release: z.ZodString;
|
|
722
|
+
type: z.ZodString;
|
|
723
|
+
version: z.ZodString;
|
|
724
|
+
networkInterfaces: z.ZodArray<z.ZodString, "many">;
|
|
725
|
+
}, "strip", z.ZodTypeAny, {
|
|
726
|
+
type: string;
|
|
727
|
+
version: string;
|
|
728
|
+
platform: string;
|
|
729
|
+
arch: string;
|
|
730
|
+
cpus: number;
|
|
731
|
+
cpuModel: string;
|
|
732
|
+
memoryTotal: number;
|
|
733
|
+
hostname: string;
|
|
734
|
+
release: string;
|
|
735
|
+
networkInterfaces: string[];
|
|
736
|
+
}, {
|
|
737
|
+
type: string;
|
|
738
|
+
version: string;
|
|
739
|
+
platform: string;
|
|
740
|
+
arch: string;
|
|
741
|
+
cpus: number;
|
|
742
|
+
cpuModel: string;
|
|
743
|
+
memoryTotal: number;
|
|
744
|
+
hostname: string;
|
|
745
|
+
release: string;
|
|
746
|
+
networkInterfaces: string[];
|
|
747
|
+
}>;
|
|
748
|
+
stats: z.ZodObject<{
|
|
749
|
+
memoryFree: z.ZodNumber;
|
|
750
|
+
uptime: z.ZodNumber;
|
|
751
|
+
}, "strip", z.ZodTypeAny, {
|
|
752
|
+
memoryFree: number;
|
|
753
|
+
uptime: number;
|
|
754
|
+
}, {
|
|
755
|
+
memoryFree: number;
|
|
756
|
+
uptime: number;
|
|
757
|
+
}>;
|
|
758
|
+
}, "strip", z.ZodTypeAny, {
|
|
759
|
+
stats: {
|
|
760
|
+
memoryFree: number;
|
|
761
|
+
uptime: number;
|
|
762
|
+
};
|
|
763
|
+
info: {
|
|
764
|
+
type: string;
|
|
765
|
+
version: string;
|
|
766
|
+
platform: string;
|
|
767
|
+
arch: string;
|
|
768
|
+
cpus: number;
|
|
769
|
+
cpuModel: string;
|
|
770
|
+
memoryTotal: number;
|
|
771
|
+
hostname: string;
|
|
772
|
+
release: string;
|
|
773
|
+
networkInterfaces: string[];
|
|
774
|
+
};
|
|
775
|
+
}, {
|
|
776
|
+
stats: {
|
|
777
|
+
memoryFree: number;
|
|
778
|
+
uptime: number;
|
|
779
|
+
};
|
|
780
|
+
info: {
|
|
781
|
+
type: string;
|
|
782
|
+
version: string;
|
|
783
|
+
platform: string;
|
|
784
|
+
arch: string;
|
|
785
|
+
cpus: number;
|
|
786
|
+
cpuModel: string;
|
|
787
|
+
memoryTotal: number;
|
|
788
|
+
hostname: string;
|
|
789
|
+
release: string;
|
|
790
|
+
networkInterfaces: string[];
|
|
791
|
+
};
|
|
792
|
+
}>>;
|
|
716
793
|
}, "strip", z.ZodTypeAny, {
|
|
717
794
|
tags: string[];
|
|
795
|
+
system: {
|
|
796
|
+
stats: {
|
|
797
|
+
memoryFree: number;
|
|
798
|
+
uptime: number;
|
|
799
|
+
};
|
|
800
|
+
info: {
|
|
801
|
+
type: string;
|
|
802
|
+
version: string;
|
|
803
|
+
platform: string;
|
|
804
|
+
arch: string;
|
|
805
|
+
cpus: number;
|
|
806
|
+
cpuModel: string;
|
|
807
|
+
memoryTotal: number;
|
|
808
|
+
hostname: string;
|
|
809
|
+
release: string;
|
|
810
|
+
networkInterfaces: string[];
|
|
811
|
+
};
|
|
812
|
+
} | null;
|
|
718
813
|
uuid: string;
|
|
719
814
|
createdAt: Date;
|
|
720
815
|
updatedAt: Date;
|
|
@@ -746,9 +841,6 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
|
|
|
746
841
|
notifyPercent: number | null;
|
|
747
842
|
usersOnline: number | null;
|
|
748
843
|
consumptionMultiplier: number;
|
|
749
|
-
cpuCount: number | null;
|
|
750
|
-
cpuModel: string | null;
|
|
751
|
-
totalRam: string | null;
|
|
752
844
|
configProfile: {
|
|
753
845
|
activeConfigProfileUuid: string | null;
|
|
754
846
|
activeInbounds: {
|
|
@@ -766,6 +858,24 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
|
|
|
766
858
|
activePluginUuid: string | null;
|
|
767
859
|
}, {
|
|
768
860
|
tags: string[];
|
|
861
|
+
system: {
|
|
862
|
+
stats: {
|
|
863
|
+
memoryFree: number;
|
|
864
|
+
uptime: number;
|
|
865
|
+
};
|
|
866
|
+
info: {
|
|
867
|
+
type: string;
|
|
868
|
+
version: string;
|
|
869
|
+
platform: string;
|
|
870
|
+
arch: string;
|
|
871
|
+
cpus: number;
|
|
872
|
+
cpuModel: string;
|
|
873
|
+
memoryTotal: number;
|
|
874
|
+
hostname: string;
|
|
875
|
+
release: string;
|
|
876
|
+
networkInterfaces: string[];
|
|
877
|
+
};
|
|
878
|
+
} | null;
|
|
769
879
|
uuid: string;
|
|
770
880
|
createdAt: string;
|
|
771
881
|
updatedAt: string;
|
|
@@ -797,9 +907,6 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
|
|
|
797
907
|
notifyPercent: number | null;
|
|
798
908
|
usersOnline: number | null;
|
|
799
909
|
consumptionMultiplier: number;
|
|
800
|
-
cpuCount: number | null;
|
|
801
|
-
cpuModel: string | null;
|
|
802
|
-
totalRam: string | null;
|
|
803
910
|
configProfile: {
|
|
804
911
|
activeConfigProfileUuid: string | null;
|
|
805
912
|
activeInbounds: {
|
|
@@ -819,6 +926,24 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
|
|
|
819
926
|
}, "strip", z.ZodTypeAny, {
|
|
820
927
|
data: {
|
|
821
928
|
tags: string[];
|
|
929
|
+
system: {
|
|
930
|
+
stats: {
|
|
931
|
+
memoryFree: number;
|
|
932
|
+
uptime: number;
|
|
933
|
+
};
|
|
934
|
+
info: {
|
|
935
|
+
type: string;
|
|
936
|
+
version: string;
|
|
937
|
+
platform: string;
|
|
938
|
+
arch: string;
|
|
939
|
+
cpus: number;
|
|
940
|
+
cpuModel: string;
|
|
941
|
+
memoryTotal: number;
|
|
942
|
+
hostname: string;
|
|
943
|
+
release: string;
|
|
944
|
+
networkInterfaces: string[];
|
|
945
|
+
};
|
|
946
|
+
} | null;
|
|
822
947
|
uuid: string;
|
|
823
948
|
createdAt: Date;
|
|
824
949
|
updatedAt: Date;
|
|
@@ -850,9 +975,6 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
|
|
|
850
975
|
notifyPercent: number | null;
|
|
851
976
|
usersOnline: number | null;
|
|
852
977
|
consumptionMultiplier: number;
|
|
853
|
-
cpuCount: number | null;
|
|
854
|
-
cpuModel: string | null;
|
|
855
|
-
totalRam: string | null;
|
|
856
978
|
configProfile: {
|
|
857
979
|
activeConfigProfileUuid: string | null;
|
|
858
980
|
activeInbounds: {
|
|
@@ -875,6 +997,24 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
|
|
|
875
997
|
}, {
|
|
876
998
|
data: {
|
|
877
999
|
tags: string[];
|
|
1000
|
+
system: {
|
|
1001
|
+
stats: {
|
|
1002
|
+
memoryFree: number;
|
|
1003
|
+
uptime: number;
|
|
1004
|
+
};
|
|
1005
|
+
info: {
|
|
1006
|
+
type: string;
|
|
1007
|
+
version: string;
|
|
1008
|
+
platform: string;
|
|
1009
|
+
arch: string;
|
|
1010
|
+
cpus: number;
|
|
1011
|
+
cpuModel: string;
|
|
1012
|
+
memoryTotal: number;
|
|
1013
|
+
hostname: string;
|
|
1014
|
+
release: string;
|
|
1015
|
+
networkInterfaces: string[];
|
|
1016
|
+
};
|
|
1017
|
+
} | null;
|
|
878
1018
|
uuid: string;
|
|
879
1019
|
createdAt: string;
|
|
880
1020
|
updatedAt: string;
|
|
@@ -906,9 +1046,6 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
|
|
|
906
1046
|
notifyPercent: number | null;
|
|
907
1047
|
usersOnline: number | null;
|
|
908
1048
|
consumptionMultiplier: number;
|
|
909
|
-
cpuCount: number | null;
|
|
910
|
-
cpuModel: string | null;
|
|
911
|
-
totalRam: string | null;
|
|
912
1049
|
configProfile: {
|
|
913
1050
|
activeConfigProfileUuid: string | null;
|
|
914
1051
|
activeInbounds: {
|
|
@@ -1123,9 +1260,6 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
|
|
|
1123
1260
|
countryCode: z.ZodString;
|
|
1124
1261
|
consumptionMultiplier: z.ZodNumber;
|
|
1125
1262
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
1126
|
-
cpuCount: z.ZodNullable<z.ZodNumber>;
|
|
1127
|
-
cpuModel: z.ZodNullable<z.ZodString>;
|
|
1128
|
-
totalRam: z.ZodNullable<z.ZodString>;
|
|
1129
1263
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
1130
1264
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
1131
1265
|
configProfile: z.ZodObject<{
|
|
@@ -1207,8 +1341,106 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
|
|
|
1207
1341
|
loginUrl: string | null;
|
|
1208
1342
|
}>>;
|
|
1209
1343
|
activePluginUuid: z.ZodNullable<z.ZodString>;
|
|
1344
|
+
system: z.ZodNullable<z.ZodObject<{
|
|
1345
|
+
info: z.ZodObject<{
|
|
1346
|
+
arch: z.ZodString;
|
|
1347
|
+
cpus: z.ZodNumber;
|
|
1348
|
+
cpuModel: z.ZodString;
|
|
1349
|
+
memoryTotal: z.ZodNumber;
|
|
1350
|
+
hostname: z.ZodString;
|
|
1351
|
+
platform: z.ZodString;
|
|
1352
|
+
release: z.ZodString;
|
|
1353
|
+
type: z.ZodString;
|
|
1354
|
+
version: z.ZodString;
|
|
1355
|
+
networkInterfaces: z.ZodArray<z.ZodString, "many">;
|
|
1356
|
+
}, "strip", z.ZodTypeAny, {
|
|
1357
|
+
type: string;
|
|
1358
|
+
version: string;
|
|
1359
|
+
platform: string;
|
|
1360
|
+
arch: string;
|
|
1361
|
+
cpus: number;
|
|
1362
|
+
cpuModel: string;
|
|
1363
|
+
memoryTotal: number;
|
|
1364
|
+
hostname: string;
|
|
1365
|
+
release: string;
|
|
1366
|
+
networkInterfaces: string[];
|
|
1367
|
+
}, {
|
|
1368
|
+
type: string;
|
|
1369
|
+
version: string;
|
|
1370
|
+
platform: string;
|
|
1371
|
+
arch: string;
|
|
1372
|
+
cpus: number;
|
|
1373
|
+
cpuModel: string;
|
|
1374
|
+
memoryTotal: number;
|
|
1375
|
+
hostname: string;
|
|
1376
|
+
release: string;
|
|
1377
|
+
networkInterfaces: string[];
|
|
1378
|
+
}>;
|
|
1379
|
+
stats: z.ZodObject<{
|
|
1380
|
+
memoryFree: z.ZodNumber;
|
|
1381
|
+
uptime: z.ZodNumber;
|
|
1382
|
+
}, "strip", z.ZodTypeAny, {
|
|
1383
|
+
memoryFree: number;
|
|
1384
|
+
uptime: number;
|
|
1385
|
+
}, {
|
|
1386
|
+
memoryFree: number;
|
|
1387
|
+
uptime: number;
|
|
1388
|
+
}>;
|
|
1389
|
+
}, "strip", z.ZodTypeAny, {
|
|
1390
|
+
stats: {
|
|
1391
|
+
memoryFree: number;
|
|
1392
|
+
uptime: number;
|
|
1393
|
+
};
|
|
1394
|
+
info: {
|
|
1395
|
+
type: string;
|
|
1396
|
+
version: string;
|
|
1397
|
+
platform: string;
|
|
1398
|
+
arch: string;
|
|
1399
|
+
cpus: number;
|
|
1400
|
+
cpuModel: string;
|
|
1401
|
+
memoryTotal: number;
|
|
1402
|
+
hostname: string;
|
|
1403
|
+
release: string;
|
|
1404
|
+
networkInterfaces: string[];
|
|
1405
|
+
};
|
|
1406
|
+
}, {
|
|
1407
|
+
stats: {
|
|
1408
|
+
memoryFree: number;
|
|
1409
|
+
uptime: number;
|
|
1410
|
+
};
|
|
1411
|
+
info: {
|
|
1412
|
+
type: string;
|
|
1413
|
+
version: string;
|
|
1414
|
+
platform: string;
|
|
1415
|
+
arch: string;
|
|
1416
|
+
cpus: number;
|
|
1417
|
+
cpuModel: string;
|
|
1418
|
+
memoryTotal: number;
|
|
1419
|
+
hostname: string;
|
|
1420
|
+
release: string;
|
|
1421
|
+
networkInterfaces: string[];
|
|
1422
|
+
};
|
|
1423
|
+
}>>;
|
|
1210
1424
|
}, "strip", z.ZodTypeAny, {
|
|
1211
1425
|
tags: string[];
|
|
1426
|
+
system: {
|
|
1427
|
+
stats: {
|
|
1428
|
+
memoryFree: number;
|
|
1429
|
+
uptime: number;
|
|
1430
|
+
};
|
|
1431
|
+
info: {
|
|
1432
|
+
type: string;
|
|
1433
|
+
version: string;
|
|
1434
|
+
platform: string;
|
|
1435
|
+
arch: string;
|
|
1436
|
+
cpus: number;
|
|
1437
|
+
cpuModel: string;
|
|
1438
|
+
memoryTotal: number;
|
|
1439
|
+
hostname: string;
|
|
1440
|
+
release: string;
|
|
1441
|
+
networkInterfaces: string[];
|
|
1442
|
+
};
|
|
1443
|
+
} | null;
|
|
1212
1444
|
uuid: string;
|
|
1213
1445
|
createdAt: Date;
|
|
1214
1446
|
updatedAt: Date;
|
|
@@ -1240,9 +1472,6 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
|
|
|
1240
1472
|
notifyPercent: number | null;
|
|
1241
1473
|
usersOnline: number | null;
|
|
1242
1474
|
consumptionMultiplier: number;
|
|
1243
|
-
cpuCount: number | null;
|
|
1244
|
-
cpuModel: string | null;
|
|
1245
|
-
totalRam: string | null;
|
|
1246
1475
|
configProfile: {
|
|
1247
1476
|
activeConfigProfileUuid: string | null;
|
|
1248
1477
|
activeInbounds: {
|
|
@@ -1260,6 +1489,24 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
|
|
|
1260
1489
|
activePluginUuid: string | null;
|
|
1261
1490
|
}, {
|
|
1262
1491
|
tags: string[];
|
|
1492
|
+
system: {
|
|
1493
|
+
stats: {
|
|
1494
|
+
memoryFree: number;
|
|
1495
|
+
uptime: number;
|
|
1496
|
+
};
|
|
1497
|
+
info: {
|
|
1498
|
+
type: string;
|
|
1499
|
+
version: string;
|
|
1500
|
+
platform: string;
|
|
1501
|
+
arch: string;
|
|
1502
|
+
cpus: number;
|
|
1503
|
+
cpuModel: string;
|
|
1504
|
+
memoryTotal: number;
|
|
1505
|
+
hostname: string;
|
|
1506
|
+
release: string;
|
|
1507
|
+
networkInterfaces: string[];
|
|
1508
|
+
};
|
|
1509
|
+
} | null;
|
|
1263
1510
|
uuid: string;
|
|
1264
1511
|
createdAt: string;
|
|
1265
1512
|
updatedAt: string;
|
|
@@ -1291,9 +1538,6 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
|
|
|
1291
1538
|
notifyPercent: number | null;
|
|
1292
1539
|
usersOnline: number | null;
|
|
1293
1540
|
consumptionMultiplier: number;
|
|
1294
|
-
cpuCount: number | null;
|
|
1295
|
-
cpuModel: string | null;
|
|
1296
|
-
totalRam: string | null;
|
|
1297
1541
|
configProfile: {
|
|
1298
1542
|
activeConfigProfileUuid: string | null;
|
|
1299
1543
|
activeInbounds: {
|
|
@@ -1600,6 +1844,24 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
|
|
|
1600
1844
|
};
|
|
1601
1845
|
node: {
|
|
1602
1846
|
tags: string[];
|
|
1847
|
+
system: {
|
|
1848
|
+
stats: {
|
|
1849
|
+
memoryFree: number;
|
|
1850
|
+
uptime: number;
|
|
1851
|
+
};
|
|
1852
|
+
info: {
|
|
1853
|
+
type: string;
|
|
1854
|
+
version: string;
|
|
1855
|
+
platform: string;
|
|
1856
|
+
arch: string;
|
|
1857
|
+
cpus: number;
|
|
1858
|
+
cpuModel: string;
|
|
1859
|
+
memoryTotal: number;
|
|
1860
|
+
hostname: string;
|
|
1861
|
+
release: string;
|
|
1862
|
+
networkInterfaces: string[];
|
|
1863
|
+
};
|
|
1864
|
+
} | null;
|
|
1603
1865
|
uuid: string;
|
|
1604
1866
|
createdAt: Date;
|
|
1605
1867
|
updatedAt: Date;
|
|
@@ -1631,9 +1893,6 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
|
|
|
1631
1893
|
notifyPercent: number | null;
|
|
1632
1894
|
usersOnline: number | null;
|
|
1633
1895
|
consumptionMultiplier: number;
|
|
1634
|
-
cpuCount: number | null;
|
|
1635
|
-
cpuModel: string | null;
|
|
1636
|
-
totalRam: string | null;
|
|
1637
1896
|
configProfile: {
|
|
1638
1897
|
activeConfigProfileUuid: string | null;
|
|
1639
1898
|
activeInbounds: {
|
|
@@ -1714,6 +1973,24 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
|
|
|
1714
1973
|
};
|
|
1715
1974
|
node: {
|
|
1716
1975
|
tags: string[];
|
|
1976
|
+
system: {
|
|
1977
|
+
stats: {
|
|
1978
|
+
memoryFree: number;
|
|
1979
|
+
uptime: number;
|
|
1980
|
+
};
|
|
1981
|
+
info: {
|
|
1982
|
+
type: string;
|
|
1983
|
+
version: string;
|
|
1984
|
+
platform: string;
|
|
1985
|
+
arch: string;
|
|
1986
|
+
cpus: number;
|
|
1987
|
+
cpuModel: string;
|
|
1988
|
+
memoryTotal: number;
|
|
1989
|
+
hostname: string;
|
|
1990
|
+
release: string;
|
|
1991
|
+
networkInterfaces: string[];
|
|
1992
|
+
};
|
|
1993
|
+
} | null;
|
|
1717
1994
|
uuid: string;
|
|
1718
1995
|
createdAt: string;
|
|
1719
1996
|
updatedAt: string;
|
|
@@ -1745,9 +2022,6 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
|
|
|
1745
2022
|
notifyPercent: number | null;
|
|
1746
2023
|
usersOnline: number | null;
|
|
1747
2024
|
consumptionMultiplier: number;
|
|
1748
|
-
cpuCount: number | null;
|
|
1749
|
-
cpuModel: string | null;
|
|
1750
|
-
totalRam: string | null;
|
|
1751
2025
|
configProfile: {
|
|
1752
2026
|
activeConfigProfileUuid: string | null;
|
|
1753
2027
|
activeInbounds: {
|
|
@@ -1830,6 +2104,24 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
|
|
|
1830
2104
|
};
|
|
1831
2105
|
node: {
|
|
1832
2106
|
tags: string[];
|
|
2107
|
+
system: {
|
|
2108
|
+
stats: {
|
|
2109
|
+
memoryFree: number;
|
|
2110
|
+
uptime: number;
|
|
2111
|
+
};
|
|
2112
|
+
info: {
|
|
2113
|
+
type: string;
|
|
2114
|
+
version: string;
|
|
2115
|
+
platform: string;
|
|
2116
|
+
arch: string;
|
|
2117
|
+
cpus: number;
|
|
2118
|
+
cpuModel: string;
|
|
2119
|
+
memoryTotal: number;
|
|
2120
|
+
hostname: string;
|
|
2121
|
+
release: string;
|
|
2122
|
+
networkInterfaces: string[];
|
|
2123
|
+
};
|
|
2124
|
+
} | null;
|
|
1833
2125
|
uuid: string;
|
|
1834
2126
|
createdAt: Date;
|
|
1835
2127
|
updatedAt: Date;
|
|
@@ -1861,9 +2153,6 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
|
|
|
1861
2153
|
notifyPercent: number | null;
|
|
1862
2154
|
usersOnline: number | null;
|
|
1863
2155
|
consumptionMultiplier: number;
|
|
1864
|
-
cpuCount: number | null;
|
|
1865
|
-
cpuModel: string | null;
|
|
1866
|
-
totalRam: string | null;
|
|
1867
2156
|
configProfile: {
|
|
1868
2157
|
activeConfigProfileUuid: string | null;
|
|
1869
2158
|
activeInbounds: {
|
|
@@ -1949,6 +2238,24 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
|
|
|
1949
2238
|
};
|
|
1950
2239
|
node: {
|
|
1951
2240
|
tags: string[];
|
|
2241
|
+
system: {
|
|
2242
|
+
stats: {
|
|
2243
|
+
memoryFree: number;
|
|
2244
|
+
uptime: number;
|
|
2245
|
+
};
|
|
2246
|
+
info: {
|
|
2247
|
+
type: string;
|
|
2248
|
+
version: string;
|
|
2249
|
+
platform: string;
|
|
2250
|
+
arch: string;
|
|
2251
|
+
cpus: number;
|
|
2252
|
+
cpuModel: string;
|
|
2253
|
+
memoryTotal: number;
|
|
2254
|
+
hostname: string;
|
|
2255
|
+
release: string;
|
|
2256
|
+
networkInterfaces: string[];
|
|
2257
|
+
};
|
|
2258
|
+
} | null;
|
|
1952
2259
|
uuid: string;
|
|
1953
2260
|
createdAt: string;
|
|
1954
2261
|
updatedAt: string;
|
|
@@ -1980,9 +2287,6 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
|
|
|
1980
2287
|
notifyPercent: number | null;
|
|
1981
2288
|
usersOnline: number | null;
|
|
1982
2289
|
consumptionMultiplier: number;
|
|
1983
|
-
cpuCount: number | null;
|
|
1984
|
-
cpuModel: string | null;
|
|
1985
|
-
totalRam: string | null;
|
|
1986
2290
|
configProfile: {
|
|
1987
2291
|
activeConfigProfileUuid: string | null;
|
|
1988
2292
|
activeInbounds: {
|
|
@@ -2657,9 +2961,6 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
2657
2961
|
countryCode: z.ZodString;
|
|
2658
2962
|
consumptionMultiplier: z.ZodNumber;
|
|
2659
2963
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
2660
|
-
cpuCount: z.ZodNullable<z.ZodNumber>;
|
|
2661
|
-
cpuModel: z.ZodNullable<z.ZodString>;
|
|
2662
|
-
totalRam: z.ZodNullable<z.ZodString>;
|
|
2663
2964
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
2664
2965
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
2665
2966
|
configProfile: z.ZodObject<{
|
|
@@ -2741,8 +3042,106 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
2741
3042
|
loginUrl: string | null;
|
|
2742
3043
|
}>>;
|
|
2743
3044
|
activePluginUuid: z.ZodNullable<z.ZodString>;
|
|
3045
|
+
system: z.ZodNullable<z.ZodObject<{
|
|
3046
|
+
info: z.ZodObject<{
|
|
3047
|
+
arch: z.ZodString;
|
|
3048
|
+
cpus: z.ZodNumber;
|
|
3049
|
+
cpuModel: z.ZodString;
|
|
3050
|
+
memoryTotal: z.ZodNumber;
|
|
3051
|
+
hostname: z.ZodString;
|
|
3052
|
+
platform: z.ZodString;
|
|
3053
|
+
release: z.ZodString;
|
|
3054
|
+
type: z.ZodString;
|
|
3055
|
+
version: z.ZodString;
|
|
3056
|
+
networkInterfaces: z.ZodArray<z.ZodString, "many">;
|
|
3057
|
+
}, "strip", z.ZodTypeAny, {
|
|
3058
|
+
type: string;
|
|
3059
|
+
version: string;
|
|
3060
|
+
platform: string;
|
|
3061
|
+
arch: string;
|
|
3062
|
+
cpus: number;
|
|
3063
|
+
cpuModel: string;
|
|
3064
|
+
memoryTotal: number;
|
|
3065
|
+
hostname: string;
|
|
3066
|
+
release: string;
|
|
3067
|
+
networkInterfaces: string[];
|
|
3068
|
+
}, {
|
|
3069
|
+
type: string;
|
|
3070
|
+
version: string;
|
|
3071
|
+
platform: string;
|
|
3072
|
+
arch: string;
|
|
3073
|
+
cpus: number;
|
|
3074
|
+
cpuModel: string;
|
|
3075
|
+
memoryTotal: number;
|
|
3076
|
+
hostname: string;
|
|
3077
|
+
release: string;
|
|
3078
|
+
networkInterfaces: string[];
|
|
3079
|
+
}>;
|
|
3080
|
+
stats: z.ZodObject<{
|
|
3081
|
+
memoryFree: z.ZodNumber;
|
|
3082
|
+
uptime: z.ZodNumber;
|
|
3083
|
+
}, "strip", z.ZodTypeAny, {
|
|
3084
|
+
memoryFree: number;
|
|
3085
|
+
uptime: number;
|
|
3086
|
+
}, {
|
|
3087
|
+
memoryFree: number;
|
|
3088
|
+
uptime: number;
|
|
3089
|
+
}>;
|
|
3090
|
+
}, "strip", z.ZodTypeAny, {
|
|
3091
|
+
stats: {
|
|
3092
|
+
memoryFree: number;
|
|
3093
|
+
uptime: number;
|
|
3094
|
+
};
|
|
3095
|
+
info: {
|
|
3096
|
+
type: string;
|
|
3097
|
+
version: string;
|
|
3098
|
+
platform: string;
|
|
3099
|
+
arch: string;
|
|
3100
|
+
cpus: number;
|
|
3101
|
+
cpuModel: string;
|
|
3102
|
+
memoryTotal: number;
|
|
3103
|
+
hostname: string;
|
|
3104
|
+
release: string;
|
|
3105
|
+
networkInterfaces: string[];
|
|
3106
|
+
};
|
|
3107
|
+
}, {
|
|
3108
|
+
stats: {
|
|
3109
|
+
memoryFree: number;
|
|
3110
|
+
uptime: number;
|
|
3111
|
+
};
|
|
3112
|
+
info: {
|
|
3113
|
+
type: string;
|
|
3114
|
+
version: string;
|
|
3115
|
+
platform: string;
|
|
3116
|
+
arch: string;
|
|
3117
|
+
cpus: number;
|
|
3118
|
+
cpuModel: string;
|
|
3119
|
+
memoryTotal: number;
|
|
3120
|
+
hostname: string;
|
|
3121
|
+
release: string;
|
|
3122
|
+
networkInterfaces: string[];
|
|
3123
|
+
};
|
|
3124
|
+
}>>;
|
|
2744
3125
|
}, "strip", z.ZodTypeAny, {
|
|
2745
3126
|
tags: string[];
|
|
3127
|
+
system: {
|
|
3128
|
+
stats: {
|
|
3129
|
+
memoryFree: number;
|
|
3130
|
+
uptime: number;
|
|
3131
|
+
};
|
|
3132
|
+
info: {
|
|
3133
|
+
type: string;
|
|
3134
|
+
version: string;
|
|
3135
|
+
platform: string;
|
|
3136
|
+
arch: string;
|
|
3137
|
+
cpus: number;
|
|
3138
|
+
cpuModel: string;
|
|
3139
|
+
memoryTotal: number;
|
|
3140
|
+
hostname: string;
|
|
3141
|
+
release: string;
|
|
3142
|
+
networkInterfaces: string[];
|
|
3143
|
+
};
|
|
3144
|
+
} | null;
|
|
2746
3145
|
uuid: string;
|
|
2747
3146
|
createdAt: Date;
|
|
2748
3147
|
updatedAt: Date;
|
|
@@ -2774,9 +3173,6 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
2774
3173
|
notifyPercent: number | null;
|
|
2775
3174
|
usersOnline: number | null;
|
|
2776
3175
|
consumptionMultiplier: number;
|
|
2777
|
-
cpuCount: number | null;
|
|
2778
|
-
cpuModel: string | null;
|
|
2779
|
-
totalRam: string | null;
|
|
2780
3176
|
configProfile: {
|
|
2781
3177
|
activeConfigProfileUuid: string | null;
|
|
2782
3178
|
activeInbounds: {
|
|
@@ -2794,6 +3190,24 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
2794
3190
|
activePluginUuid: string | null;
|
|
2795
3191
|
}, {
|
|
2796
3192
|
tags: string[];
|
|
3193
|
+
system: {
|
|
3194
|
+
stats: {
|
|
3195
|
+
memoryFree: number;
|
|
3196
|
+
uptime: number;
|
|
3197
|
+
};
|
|
3198
|
+
info: {
|
|
3199
|
+
type: string;
|
|
3200
|
+
version: string;
|
|
3201
|
+
platform: string;
|
|
3202
|
+
arch: string;
|
|
3203
|
+
cpus: number;
|
|
3204
|
+
cpuModel: string;
|
|
3205
|
+
memoryTotal: number;
|
|
3206
|
+
hostname: string;
|
|
3207
|
+
release: string;
|
|
3208
|
+
networkInterfaces: string[];
|
|
3209
|
+
};
|
|
3210
|
+
} | null;
|
|
2797
3211
|
uuid: string;
|
|
2798
3212
|
createdAt: string;
|
|
2799
3213
|
updatedAt: string;
|
|
@@ -2825,9 +3239,6 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
2825
3239
|
notifyPercent: number | null;
|
|
2826
3240
|
usersOnline: number | null;
|
|
2827
3241
|
consumptionMultiplier: number;
|
|
2828
|
-
cpuCount: number | null;
|
|
2829
|
-
cpuModel: string | null;
|
|
2830
|
-
totalRam: string | null;
|
|
2831
3242
|
configProfile: {
|
|
2832
3243
|
activeConfigProfileUuid: string | null;
|
|
2833
3244
|
activeInbounds: {
|
|
@@ -2847,6 +3258,24 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
2847
3258
|
}, "strip", z.ZodTypeAny, {
|
|
2848
3259
|
data: {
|
|
2849
3260
|
tags: string[];
|
|
3261
|
+
system: {
|
|
3262
|
+
stats: {
|
|
3263
|
+
memoryFree: number;
|
|
3264
|
+
uptime: number;
|
|
3265
|
+
};
|
|
3266
|
+
info: {
|
|
3267
|
+
type: string;
|
|
3268
|
+
version: string;
|
|
3269
|
+
platform: string;
|
|
3270
|
+
arch: string;
|
|
3271
|
+
cpus: number;
|
|
3272
|
+
cpuModel: string;
|
|
3273
|
+
memoryTotal: number;
|
|
3274
|
+
hostname: string;
|
|
3275
|
+
release: string;
|
|
3276
|
+
networkInterfaces: string[];
|
|
3277
|
+
};
|
|
3278
|
+
} | null;
|
|
2850
3279
|
uuid: string;
|
|
2851
3280
|
createdAt: Date;
|
|
2852
3281
|
updatedAt: Date;
|
|
@@ -2878,9 +3307,6 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
2878
3307
|
notifyPercent: number | null;
|
|
2879
3308
|
usersOnline: number | null;
|
|
2880
3309
|
consumptionMultiplier: number;
|
|
2881
|
-
cpuCount: number | null;
|
|
2882
|
-
cpuModel: string | null;
|
|
2883
|
-
totalRam: string | null;
|
|
2884
3310
|
configProfile: {
|
|
2885
3311
|
activeConfigProfileUuid: string | null;
|
|
2886
3312
|
activeInbounds: {
|
|
@@ -2903,6 +3329,24 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
2903
3329
|
}, {
|
|
2904
3330
|
data: {
|
|
2905
3331
|
tags: string[];
|
|
3332
|
+
system: {
|
|
3333
|
+
stats: {
|
|
3334
|
+
memoryFree: number;
|
|
3335
|
+
uptime: number;
|
|
3336
|
+
};
|
|
3337
|
+
info: {
|
|
3338
|
+
type: string;
|
|
3339
|
+
version: string;
|
|
3340
|
+
platform: string;
|
|
3341
|
+
arch: string;
|
|
3342
|
+
cpus: number;
|
|
3343
|
+
cpuModel: string;
|
|
3344
|
+
memoryTotal: number;
|
|
3345
|
+
hostname: string;
|
|
3346
|
+
release: string;
|
|
3347
|
+
networkInterfaces: string[];
|
|
3348
|
+
};
|
|
3349
|
+
} | null;
|
|
2906
3350
|
uuid: string;
|
|
2907
3351
|
createdAt: string;
|
|
2908
3352
|
updatedAt: string;
|
|
@@ -2934,9 +3378,6 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
2934
3378
|
notifyPercent: number | null;
|
|
2935
3379
|
usersOnline: number | null;
|
|
2936
3380
|
consumptionMultiplier: number;
|
|
2937
|
-
cpuCount: number | null;
|
|
2938
|
-
cpuModel: string | null;
|
|
2939
|
-
totalRam: string | null;
|
|
2940
3381
|
configProfile: {
|
|
2941
3382
|
activeConfigProfileUuid: string | null;
|
|
2942
3383
|
activeInbounds: {
|
|
@@ -3147,9 +3588,6 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
3147
3588
|
countryCode: z.ZodString;
|
|
3148
3589
|
consumptionMultiplier: z.ZodNumber;
|
|
3149
3590
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
3150
|
-
cpuCount: z.ZodNullable<z.ZodNumber>;
|
|
3151
|
-
cpuModel: z.ZodNullable<z.ZodString>;
|
|
3152
|
-
totalRam: z.ZodNullable<z.ZodString>;
|
|
3153
3591
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
3154
3592
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
3155
3593
|
configProfile: z.ZodObject<{
|
|
@@ -3231,8 +3669,106 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
3231
3669
|
loginUrl: string | null;
|
|
3232
3670
|
}>>;
|
|
3233
3671
|
activePluginUuid: z.ZodNullable<z.ZodString>;
|
|
3672
|
+
system: z.ZodNullable<z.ZodObject<{
|
|
3673
|
+
info: z.ZodObject<{
|
|
3674
|
+
arch: z.ZodString;
|
|
3675
|
+
cpus: z.ZodNumber;
|
|
3676
|
+
cpuModel: z.ZodString;
|
|
3677
|
+
memoryTotal: z.ZodNumber;
|
|
3678
|
+
hostname: z.ZodString;
|
|
3679
|
+
platform: z.ZodString;
|
|
3680
|
+
release: z.ZodString;
|
|
3681
|
+
type: z.ZodString;
|
|
3682
|
+
version: z.ZodString;
|
|
3683
|
+
networkInterfaces: z.ZodArray<z.ZodString, "many">;
|
|
3684
|
+
}, "strip", z.ZodTypeAny, {
|
|
3685
|
+
type: string;
|
|
3686
|
+
version: string;
|
|
3687
|
+
platform: string;
|
|
3688
|
+
arch: string;
|
|
3689
|
+
cpus: number;
|
|
3690
|
+
cpuModel: string;
|
|
3691
|
+
memoryTotal: number;
|
|
3692
|
+
hostname: string;
|
|
3693
|
+
release: string;
|
|
3694
|
+
networkInterfaces: string[];
|
|
3695
|
+
}, {
|
|
3696
|
+
type: string;
|
|
3697
|
+
version: string;
|
|
3698
|
+
platform: string;
|
|
3699
|
+
arch: string;
|
|
3700
|
+
cpus: number;
|
|
3701
|
+
cpuModel: string;
|
|
3702
|
+
memoryTotal: number;
|
|
3703
|
+
hostname: string;
|
|
3704
|
+
release: string;
|
|
3705
|
+
networkInterfaces: string[];
|
|
3706
|
+
}>;
|
|
3707
|
+
stats: z.ZodObject<{
|
|
3708
|
+
memoryFree: z.ZodNumber;
|
|
3709
|
+
uptime: z.ZodNumber;
|
|
3710
|
+
}, "strip", z.ZodTypeAny, {
|
|
3711
|
+
memoryFree: number;
|
|
3712
|
+
uptime: number;
|
|
3713
|
+
}, {
|
|
3714
|
+
memoryFree: number;
|
|
3715
|
+
uptime: number;
|
|
3716
|
+
}>;
|
|
3717
|
+
}, "strip", z.ZodTypeAny, {
|
|
3718
|
+
stats: {
|
|
3719
|
+
memoryFree: number;
|
|
3720
|
+
uptime: number;
|
|
3721
|
+
};
|
|
3722
|
+
info: {
|
|
3723
|
+
type: string;
|
|
3724
|
+
version: string;
|
|
3725
|
+
platform: string;
|
|
3726
|
+
arch: string;
|
|
3727
|
+
cpus: number;
|
|
3728
|
+
cpuModel: string;
|
|
3729
|
+
memoryTotal: number;
|
|
3730
|
+
hostname: string;
|
|
3731
|
+
release: string;
|
|
3732
|
+
networkInterfaces: string[];
|
|
3733
|
+
};
|
|
3734
|
+
}, {
|
|
3735
|
+
stats: {
|
|
3736
|
+
memoryFree: number;
|
|
3737
|
+
uptime: number;
|
|
3738
|
+
};
|
|
3739
|
+
info: {
|
|
3740
|
+
type: string;
|
|
3741
|
+
version: string;
|
|
3742
|
+
platform: string;
|
|
3743
|
+
arch: string;
|
|
3744
|
+
cpus: number;
|
|
3745
|
+
cpuModel: string;
|
|
3746
|
+
memoryTotal: number;
|
|
3747
|
+
hostname: string;
|
|
3748
|
+
release: string;
|
|
3749
|
+
networkInterfaces: string[];
|
|
3750
|
+
};
|
|
3751
|
+
}>>;
|
|
3234
3752
|
}, "strip", z.ZodTypeAny, {
|
|
3235
3753
|
tags: string[];
|
|
3754
|
+
system: {
|
|
3755
|
+
stats: {
|
|
3756
|
+
memoryFree: number;
|
|
3757
|
+
uptime: number;
|
|
3758
|
+
};
|
|
3759
|
+
info: {
|
|
3760
|
+
type: string;
|
|
3761
|
+
version: string;
|
|
3762
|
+
platform: string;
|
|
3763
|
+
arch: string;
|
|
3764
|
+
cpus: number;
|
|
3765
|
+
cpuModel: string;
|
|
3766
|
+
memoryTotal: number;
|
|
3767
|
+
hostname: string;
|
|
3768
|
+
release: string;
|
|
3769
|
+
networkInterfaces: string[];
|
|
3770
|
+
};
|
|
3771
|
+
} | null;
|
|
3236
3772
|
uuid: string;
|
|
3237
3773
|
createdAt: Date;
|
|
3238
3774
|
updatedAt: Date;
|
|
@@ -3264,9 +3800,6 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
3264
3800
|
notifyPercent: number | null;
|
|
3265
3801
|
usersOnline: number | null;
|
|
3266
3802
|
consumptionMultiplier: number;
|
|
3267
|
-
cpuCount: number | null;
|
|
3268
|
-
cpuModel: string | null;
|
|
3269
|
-
totalRam: string | null;
|
|
3270
3803
|
configProfile: {
|
|
3271
3804
|
activeConfigProfileUuid: string | null;
|
|
3272
3805
|
activeInbounds: {
|
|
@@ -3284,6 +3817,24 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
3284
3817
|
activePluginUuid: string | null;
|
|
3285
3818
|
}, {
|
|
3286
3819
|
tags: string[];
|
|
3820
|
+
system: {
|
|
3821
|
+
stats: {
|
|
3822
|
+
memoryFree: number;
|
|
3823
|
+
uptime: number;
|
|
3824
|
+
};
|
|
3825
|
+
info: {
|
|
3826
|
+
type: string;
|
|
3827
|
+
version: string;
|
|
3828
|
+
platform: string;
|
|
3829
|
+
arch: string;
|
|
3830
|
+
cpus: number;
|
|
3831
|
+
cpuModel: string;
|
|
3832
|
+
memoryTotal: number;
|
|
3833
|
+
hostname: string;
|
|
3834
|
+
release: string;
|
|
3835
|
+
networkInterfaces: string[];
|
|
3836
|
+
};
|
|
3837
|
+
} | null;
|
|
3287
3838
|
uuid: string;
|
|
3288
3839
|
createdAt: string;
|
|
3289
3840
|
updatedAt: string;
|
|
@@ -3315,9 +3866,6 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
3315
3866
|
notifyPercent: number | null;
|
|
3316
3867
|
usersOnline: number | null;
|
|
3317
3868
|
consumptionMultiplier: number;
|
|
3318
|
-
cpuCount: number | null;
|
|
3319
|
-
cpuModel: string | null;
|
|
3320
|
-
totalRam: string | null;
|
|
3321
3869
|
configProfile: {
|
|
3322
3870
|
activeConfigProfileUuid: string | null;
|
|
3323
3871
|
activeInbounds: {
|
|
@@ -3624,6 +4172,24 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
3624
4172
|
};
|
|
3625
4173
|
node: {
|
|
3626
4174
|
tags: string[];
|
|
4175
|
+
system: {
|
|
4176
|
+
stats: {
|
|
4177
|
+
memoryFree: number;
|
|
4178
|
+
uptime: number;
|
|
4179
|
+
};
|
|
4180
|
+
info: {
|
|
4181
|
+
type: string;
|
|
4182
|
+
version: string;
|
|
4183
|
+
platform: string;
|
|
4184
|
+
arch: string;
|
|
4185
|
+
cpus: number;
|
|
4186
|
+
cpuModel: string;
|
|
4187
|
+
memoryTotal: number;
|
|
4188
|
+
hostname: string;
|
|
4189
|
+
release: string;
|
|
4190
|
+
networkInterfaces: string[];
|
|
4191
|
+
};
|
|
4192
|
+
} | null;
|
|
3627
4193
|
uuid: string;
|
|
3628
4194
|
createdAt: Date;
|
|
3629
4195
|
updatedAt: Date;
|
|
@@ -3655,9 +4221,6 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
3655
4221
|
notifyPercent: number | null;
|
|
3656
4222
|
usersOnline: number | null;
|
|
3657
4223
|
consumptionMultiplier: number;
|
|
3658
|
-
cpuCount: number | null;
|
|
3659
|
-
cpuModel: string | null;
|
|
3660
|
-
totalRam: string | null;
|
|
3661
4224
|
configProfile: {
|
|
3662
4225
|
activeConfigProfileUuid: string | null;
|
|
3663
4226
|
activeInbounds: {
|
|
@@ -3738,6 +4301,24 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
3738
4301
|
};
|
|
3739
4302
|
node: {
|
|
3740
4303
|
tags: string[];
|
|
4304
|
+
system: {
|
|
4305
|
+
stats: {
|
|
4306
|
+
memoryFree: number;
|
|
4307
|
+
uptime: number;
|
|
4308
|
+
};
|
|
4309
|
+
info: {
|
|
4310
|
+
type: string;
|
|
4311
|
+
version: string;
|
|
4312
|
+
platform: string;
|
|
4313
|
+
arch: string;
|
|
4314
|
+
cpus: number;
|
|
4315
|
+
cpuModel: string;
|
|
4316
|
+
memoryTotal: number;
|
|
4317
|
+
hostname: string;
|
|
4318
|
+
release: string;
|
|
4319
|
+
networkInterfaces: string[];
|
|
4320
|
+
};
|
|
4321
|
+
} | null;
|
|
3741
4322
|
uuid: string;
|
|
3742
4323
|
createdAt: string;
|
|
3743
4324
|
updatedAt: string;
|
|
@@ -3769,9 +4350,6 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
3769
4350
|
notifyPercent: number | null;
|
|
3770
4351
|
usersOnline: number | null;
|
|
3771
4352
|
consumptionMultiplier: number;
|
|
3772
|
-
cpuCount: number | null;
|
|
3773
|
-
cpuModel: string | null;
|
|
3774
|
-
totalRam: string | null;
|
|
3775
4353
|
configProfile: {
|
|
3776
4354
|
activeConfigProfileUuid: string | null;
|
|
3777
4355
|
activeInbounds: {
|
|
@@ -3854,6 +4432,24 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
3854
4432
|
};
|
|
3855
4433
|
node: {
|
|
3856
4434
|
tags: string[];
|
|
4435
|
+
system: {
|
|
4436
|
+
stats: {
|
|
4437
|
+
memoryFree: number;
|
|
4438
|
+
uptime: number;
|
|
4439
|
+
};
|
|
4440
|
+
info: {
|
|
4441
|
+
type: string;
|
|
4442
|
+
version: string;
|
|
4443
|
+
platform: string;
|
|
4444
|
+
arch: string;
|
|
4445
|
+
cpus: number;
|
|
4446
|
+
cpuModel: string;
|
|
4447
|
+
memoryTotal: number;
|
|
4448
|
+
hostname: string;
|
|
4449
|
+
release: string;
|
|
4450
|
+
networkInterfaces: string[];
|
|
4451
|
+
};
|
|
4452
|
+
} | null;
|
|
3857
4453
|
uuid: string;
|
|
3858
4454
|
createdAt: Date;
|
|
3859
4455
|
updatedAt: Date;
|
|
@@ -3885,9 +4481,6 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
3885
4481
|
notifyPercent: number | null;
|
|
3886
4482
|
usersOnline: number | null;
|
|
3887
4483
|
consumptionMultiplier: number;
|
|
3888
|
-
cpuCount: number | null;
|
|
3889
|
-
cpuModel: string | null;
|
|
3890
|
-
totalRam: string | null;
|
|
3891
4484
|
configProfile: {
|
|
3892
4485
|
activeConfigProfileUuid: string | null;
|
|
3893
4486
|
activeInbounds: {
|
|
@@ -3973,6 +4566,24 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
3973
4566
|
};
|
|
3974
4567
|
node: {
|
|
3975
4568
|
tags: string[];
|
|
4569
|
+
system: {
|
|
4570
|
+
stats: {
|
|
4571
|
+
memoryFree: number;
|
|
4572
|
+
uptime: number;
|
|
4573
|
+
};
|
|
4574
|
+
info: {
|
|
4575
|
+
type: string;
|
|
4576
|
+
version: string;
|
|
4577
|
+
platform: string;
|
|
4578
|
+
arch: string;
|
|
4579
|
+
cpus: number;
|
|
4580
|
+
cpuModel: string;
|
|
4581
|
+
memoryTotal: number;
|
|
4582
|
+
hostname: string;
|
|
4583
|
+
release: string;
|
|
4584
|
+
networkInterfaces: string[];
|
|
4585
|
+
};
|
|
4586
|
+
} | null;
|
|
3976
4587
|
uuid: string;
|
|
3977
4588
|
createdAt: string;
|
|
3978
4589
|
updatedAt: string;
|
|
@@ -4004,9 +4615,6 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
|
|
|
4004
4615
|
notifyPercent: number | null;
|
|
4005
4616
|
usersOnline: number | null;
|
|
4006
4617
|
consumptionMultiplier: number;
|
|
4007
|
-
cpuCount: number | null;
|
|
4008
|
-
cpuModel: string | null;
|
|
4009
|
-
totalRam: string | null;
|
|
4010
4618
|
configProfile: {
|
|
4011
4619
|
activeConfigProfileUuid: string | null;
|
|
4012
4620
|
activeInbounds: {
|