@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.
Files changed (48) hide show
  1. package/build/backend/api/controllers-info.d.ts +1 -1
  2. package/build/backend/api/controllers-info.js +1 -1
  3. package/build/backend/commands/infra-billing/create-billing-node.command.d.ts +24 -8
  4. package/build/backend/commands/infra-billing/create-billing-node.command.d.ts.map +1 -1
  5. package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts +24 -8
  6. package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts.map +1 -1
  7. package/build/backend/commands/infra-billing/get-billing-nodes.command.d.ts +24 -8
  8. package/build/backend/commands/infra-billing/get-billing-nodes.command.d.ts.map +1 -1
  9. package/build/backend/commands/infra-billing/update-billing-node.command.d.ts +24 -8
  10. package/build/backend/commands/infra-billing/update-billing-node.command.d.ts.map +1 -1
  11. package/build/backend/commands/keygen/get-pubkey.command.js +1 -1
  12. package/build/backend/commands/node-plugins/torrent-blocker/get-torrent-blocker-reports.command.d.ts +12 -4
  13. package/build/backend/commands/node-plugins/torrent-blocker/get-torrent-blocker-reports.command.d.ts.map +1 -1
  14. package/build/backend/commands/node-plugins/torrent-blocker/truncate-torrent-blocker-reports.command.d.ts +12 -4
  15. package/build/backend/commands/node-plugins/torrent-blocker/truncate-torrent-blocker-reports.command.d.ts.map +1 -1
  16. package/build/backend/commands/nodes/actions/disable.command.d.ts +36 -20
  17. package/build/backend/commands/nodes/actions/disable.command.d.ts.map +1 -1
  18. package/build/backend/commands/nodes/actions/enable.command.d.ts +36 -20
  19. package/build/backend/commands/nodes/actions/enable.command.d.ts.map +1 -1
  20. package/build/backend/commands/nodes/actions/reorder.command.d.ts +48 -24
  21. package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
  22. package/build/backend/commands/nodes/create.command.d.ts +36 -20
  23. package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
  24. package/build/backend/commands/nodes/get-all.command.d.ts +36 -20
  25. package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
  26. package/build/backend/commands/nodes/get-one.command.d.ts +36 -20
  27. package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
  28. package/build/backend/commands/nodes/update.command.d.ts +48 -24
  29. package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
  30. package/build/backend/constants/cache-keys/cache-keys.constants.d.ts +5 -0
  31. package/build/backend/constants/cache-keys/cache-keys.constants.d.ts.map +1 -1
  32. package/build/backend/constants/cache-keys/cache-keys.constants.js +5 -0
  33. package/build/backend/models/infra-billing-available-node.schema.d.ts +12 -4
  34. package/build/backend/models/infra-billing-available-node.schema.d.ts.map +1 -1
  35. package/build/backend/models/infra-billing-node.schema.d.ts +12 -4
  36. package/build/backend/models/infra-billing-node.schema.d.ts.map +1 -1
  37. package/build/backend/models/nodes.schema.d.ts +24 -12
  38. package/build/backend/models/nodes.schema.d.ts.map +1 -1
  39. package/build/backend/models/nodes.schema.js +6 -4
  40. package/build/backend/models/torrent-blocker-report.schema.d.ts +12 -4
  41. package/build/backend/models/torrent-blocker-report.schema.d.ts.map +1 -1
  42. package/build/backend/models/webhook/webhook.schema.d.ts +168 -96
  43. package/build/backend/models/webhook/webhook.schema.d.ts.map +1 -1
  44. package/build/frontend/api/controllers-info.js +1 -1
  45. package/build/frontend/commands/keygen/get-pubkey.command.js +1 -1
  46. package/build/frontend/constants/cache-keys/cache-keys.constants.js +5 -0
  47. package/build/frontend/models/nodes.schema.js +6 -4
  48. package/package.json +1 -1
@@ -616,15 +616,11 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
616
616
  isConnecting: z.ZodBoolean;
617
617
  lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
618
618
  lastStatusMessage: z.ZodNullable<z.ZodString>;
619
- xrayVersion: z.ZodNullable<z.ZodString>;
620
- nodeVersion: z.ZodNullable<z.ZodString>;
621
- xrayUptime: z.ZodString;
622
619
  isTrafficTrackingActive: z.ZodBoolean;
623
620
  trafficResetDay: z.ZodNullable<z.ZodNumber>;
624
621
  trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
625
622
  trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
626
623
  notifyPercent: z.ZodNullable<z.ZodNumber>;
627
- usersOnline: z.ZodNullable<z.ZodNumber>;
628
624
  viewPosition: z.ZodNumber;
629
625
  countryCode: z.ZodString;
630
626
  consumptionMultiplier: z.ZodNumber;
@@ -847,6 +843,18 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
847
843
  networkInterfaces: string[];
848
844
  };
849
845
  }>>;
846
+ versions: z.ZodNullable<z.ZodObject<{
847
+ xray: z.ZodString;
848
+ node: z.ZodString;
849
+ }, "strip", z.ZodTypeAny, {
850
+ node: string;
851
+ xray: string;
852
+ }, {
853
+ node: string;
854
+ xray: string;
855
+ }>>;
856
+ xrayUptime: z.ZodNumber;
857
+ usersOnline: z.ZodNumber;
850
858
  }, "strip", z.ZodTypeAny, {
851
859
  tags: string[];
852
860
  system: {
@@ -898,14 +906,10 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
898
906
  isConnecting: boolean;
899
907
  lastStatusChange: Date | null;
900
908
  lastStatusMessage: string | null;
901
- xrayVersion: string | null;
902
- nodeVersion: string | null;
903
- xrayUptime: string;
904
909
  isTrafficTrackingActive: boolean;
905
910
  trafficResetDay: number | null;
906
911
  trafficUsedBytes: number | null;
907
912
  notifyPercent: number | null;
908
- usersOnline: number | null;
909
913
  consumptionMultiplier: number;
910
914
  configProfile: {
911
915
  activeConfigProfileUuid: string | null;
@@ -922,6 +926,12 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
922
926
  };
923
927
  providerUuid: string | null;
924
928
  activePluginUuid: string | null;
929
+ versions: {
930
+ node: string;
931
+ xray: string;
932
+ } | null;
933
+ xrayUptime: number;
934
+ usersOnline: number;
925
935
  }, {
926
936
  tags: string[];
927
937
  system: {
@@ -973,14 +983,10 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
973
983
  isConnecting: boolean;
974
984
  lastStatusChange: string | null;
975
985
  lastStatusMessage: string | null;
976
- xrayVersion: string | null;
977
- nodeVersion: string | null;
978
- xrayUptime: string;
979
986
  isTrafficTrackingActive: boolean;
980
987
  trafficResetDay: number | null;
981
988
  trafficUsedBytes: number | null;
982
989
  notifyPercent: number | null;
983
- usersOnline: number | null;
984
990
  consumptionMultiplier: number;
985
991
  configProfile: {
986
992
  activeConfigProfileUuid: string | null;
@@ -997,6 +1003,12 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
997
1003
  };
998
1004
  providerUuid: string | null;
999
1005
  activePluginUuid: string | null;
1006
+ versions: {
1007
+ node: string;
1008
+ xray: string;
1009
+ } | null;
1010
+ xrayUptime: number;
1011
+ usersOnline: number;
1000
1012
  }>;
1001
1013
  }, "strip", z.ZodTypeAny, {
1002
1014
  data: {
@@ -1050,14 +1062,10 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
1050
1062
  isConnecting: boolean;
1051
1063
  lastStatusChange: Date | null;
1052
1064
  lastStatusMessage: string | null;
1053
- xrayVersion: string | null;
1054
- nodeVersion: string | null;
1055
- xrayUptime: string;
1056
1065
  isTrafficTrackingActive: boolean;
1057
1066
  trafficResetDay: number | null;
1058
1067
  trafficUsedBytes: number | null;
1059
1068
  notifyPercent: number | null;
1060
- usersOnline: number | null;
1061
1069
  consumptionMultiplier: number;
1062
1070
  configProfile: {
1063
1071
  activeConfigProfileUuid: string | null;
@@ -1074,6 +1082,12 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
1074
1082
  };
1075
1083
  providerUuid: string | null;
1076
1084
  activePluginUuid: string | null;
1085
+ versions: {
1086
+ node: string;
1087
+ xray: string;
1088
+ } | null;
1089
+ xrayUptime: number;
1090
+ usersOnline: number;
1077
1091
  };
1078
1092
  scope: "node";
1079
1093
  event: "node.created" | "node.modified" | "node.disabled" | "node.enabled" | "node.deleted" | "node.connection_lost" | "node.connection_restored" | "node.traffic_notify";
@@ -1130,14 +1144,10 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
1130
1144
  isConnecting: boolean;
1131
1145
  lastStatusChange: string | null;
1132
1146
  lastStatusMessage: string | null;
1133
- xrayVersion: string | null;
1134
- nodeVersion: string | null;
1135
- xrayUptime: string;
1136
1147
  isTrafficTrackingActive: boolean;
1137
1148
  trafficResetDay: number | null;
1138
1149
  trafficUsedBytes: number | null;
1139
1150
  notifyPercent: number | null;
1140
- usersOnline: number | null;
1141
1151
  consumptionMultiplier: number;
1142
1152
  configProfile: {
1143
1153
  activeConfigProfileUuid: string | null;
@@ -1154,6 +1164,12 @@ export declare const RemnawaveWebhookNodeEvents: z.ZodObject<{
1154
1164
  };
1155
1165
  providerUuid: string | null;
1156
1166
  activePluginUuid: string | null;
1167
+ versions: {
1168
+ node: string;
1169
+ xray: string;
1170
+ } | null;
1171
+ xrayUptime: number;
1172
+ usersOnline: number;
1157
1173
  };
1158
1174
  scope: "node";
1159
1175
  event: "node.created" | "node.modified" | "node.disabled" | "node.enabled" | "node.deleted" | "node.connection_lost" | "node.connection_restored" | "node.traffic_notify";
@@ -1340,15 +1356,11 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
1340
1356
  isConnecting: z.ZodBoolean;
1341
1357
  lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
1342
1358
  lastStatusMessage: z.ZodNullable<z.ZodString>;
1343
- xrayVersion: z.ZodNullable<z.ZodString>;
1344
- nodeVersion: z.ZodNullable<z.ZodString>;
1345
- xrayUptime: z.ZodString;
1346
1359
  isTrafficTrackingActive: z.ZodBoolean;
1347
1360
  trafficResetDay: z.ZodNullable<z.ZodNumber>;
1348
1361
  trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
1349
1362
  trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
1350
1363
  notifyPercent: z.ZodNullable<z.ZodNumber>;
1351
- usersOnline: z.ZodNullable<z.ZodNumber>;
1352
1364
  viewPosition: z.ZodNumber;
1353
1365
  countryCode: z.ZodString;
1354
1366
  consumptionMultiplier: z.ZodNumber;
@@ -1571,6 +1583,18 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
1571
1583
  networkInterfaces: string[];
1572
1584
  };
1573
1585
  }>>;
1586
+ versions: z.ZodNullable<z.ZodObject<{
1587
+ xray: z.ZodString;
1588
+ node: z.ZodString;
1589
+ }, "strip", z.ZodTypeAny, {
1590
+ node: string;
1591
+ xray: string;
1592
+ }, {
1593
+ node: string;
1594
+ xray: string;
1595
+ }>>;
1596
+ xrayUptime: z.ZodNumber;
1597
+ usersOnline: z.ZodNumber;
1574
1598
  }, "strip", z.ZodTypeAny, {
1575
1599
  tags: string[];
1576
1600
  system: {
@@ -1622,14 +1646,10 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
1622
1646
  isConnecting: boolean;
1623
1647
  lastStatusChange: Date | null;
1624
1648
  lastStatusMessage: string | null;
1625
- xrayVersion: string | null;
1626
- nodeVersion: string | null;
1627
- xrayUptime: string;
1628
1649
  isTrafficTrackingActive: boolean;
1629
1650
  trafficResetDay: number | null;
1630
1651
  trafficUsedBytes: number | null;
1631
1652
  notifyPercent: number | null;
1632
- usersOnline: number | null;
1633
1653
  consumptionMultiplier: number;
1634
1654
  configProfile: {
1635
1655
  activeConfigProfileUuid: string | null;
@@ -1646,6 +1666,12 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
1646
1666
  };
1647
1667
  providerUuid: string | null;
1648
1668
  activePluginUuid: string | null;
1669
+ versions: {
1670
+ node: string;
1671
+ xray: string;
1672
+ } | null;
1673
+ xrayUptime: number;
1674
+ usersOnline: number;
1649
1675
  }, {
1650
1676
  tags: string[];
1651
1677
  system: {
@@ -1697,14 +1723,10 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
1697
1723
  isConnecting: boolean;
1698
1724
  lastStatusChange: string | null;
1699
1725
  lastStatusMessage: string | null;
1700
- xrayVersion: string | null;
1701
- nodeVersion: string | null;
1702
- xrayUptime: string;
1703
1726
  isTrafficTrackingActive: boolean;
1704
1727
  trafficResetDay: number | null;
1705
1728
  trafficUsedBytes: number | null;
1706
1729
  notifyPercent: number | null;
1707
- usersOnline: number | null;
1708
1730
  consumptionMultiplier: number;
1709
1731
  configProfile: {
1710
1732
  activeConfigProfileUuid: string | null;
@@ -1721,6 +1743,12 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
1721
1743
  };
1722
1744
  providerUuid: string | null;
1723
1745
  activePluginUuid: string | null;
1746
+ versions: {
1747
+ node: string;
1748
+ xray: string;
1749
+ } | null;
1750
+ xrayUptime: number;
1751
+ usersOnline: number;
1724
1752
  }>;
1725
1753
  user: z.ZodObject<{
1726
1754
  uuid: z.ZodString;
@@ -2061,14 +2089,10 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
2061
2089
  isConnecting: boolean;
2062
2090
  lastStatusChange: Date | null;
2063
2091
  lastStatusMessage: string | null;
2064
- xrayVersion: string | null;
2065
- nodeVersion: string | null;
2066
- xrayUptime: string;
2067
2092
  isTrafficTrackingActive: boolean;
2068
2093
  trafficResetDay: number | null;
2069
2094
  trafficUsedBytes: number | null;
2070
2095
  notifyPercent: number | null;
2071
- usersOnline: number | null;
2072
2096
  consumptionMultiplier: number;
2073
2097
  configProfile: {
2074
2098
  activeConfigProfileUuid: string | null;
@@ -2085,6 +2109,12 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
2085
2109
  };
2086
2110
  providerUuid: string | null;
2087
2111
  activePluginUuid: string | null;
2112
+ versions: {
2113
+ node: string;
2114
+ xray: string;
2115
+ } | null;
2116
+ xrayUptime: number;
2117
+ usersOnline: number;
2088
2118
  };
2089
2119
  report: {
2090
2120
  actionReport: {
@@ -2199,14 +2229,10 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
2199
2229
  isConnecting: boolean;
2200
2230
  lastStatusChange: string | null;
2201
2231
  lastStatusMessage: string | null;
2202
- xrayVersion: string | null;
2203
- nodeVersion: string | null;
2204
- xrayUptime: string;
2205
2232
  isTrafficTrackingActive: boolean;
2206
2233
  trafficResetDay: number | null;
2207
2234
  trafficUsedBytes: number | null;
2208
2235
  notifyPercent: number | null;
2209
- usersOnline: number | null;
2210
2236
  consumptionMultiplier: number;
2211
2237
  configProfile: {
2212
2238
  activeConfigProfileUuid: string | null;
@@ -2223,6 +2249,12 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
2223
2249
  };
2224
2250
  providerUuid: string | null;
2225
2251
  activePluginUuid: string | null;
2252
+ versions: {
2253
+ node: string;
2254
+ xray: string;
2255
+ } | null;
2256
+ xrayUptime: number;
2257
+ usersOnline: number;
2226
2258
  };
2227
2259
  report: {
2228
2260
  actionReport: {
@@ -2339,14 +2371,10 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
2339
2371
  isConnecting: boolean;
2340
2372
  lastStatusChange: Date | null;
2341
2373
  lastStatusMessage: string | null;
2342
- xrayVersion: string | null;
2343
- nodeVersion: string | null;
2344
- xrayUptime: string;
2345
2374
  isTrafficTrackingActive: boolean;
2346
2375
  trafficResetDay: number | null;
2347
2376
  trafficUsedBytes: number | null;
2348
2377
  notifyPercent: number | null;
2349
- usersOnline: number | null;
2350
2378
  consumptionMultiplier: number;
2351
2379
  configProfile: {
2352
2380
  activeConfigProfileUuid: string | null;
@@ -2363,6 +2391,12 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
2363
2391
  };
2364
2392
  providerUuid: string | null;
2365
2393
  activePluginUuid: string | null;
2394
+ versions: {
2395
+ node: string;
2396
+ xray: string;
2397
+ } | null;
2398
+ xrayUptime: number;
2399
+ usersOnline: number;
2366
2400
  };
2367
2401
  report: {
2368
2402
  actionReport: {
@@ -2482,14 +2516,10 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
2482
2516
  isConnecting: boolean;
2483
2517
  lastStatusChange: string | null;
2484
2518
  lastStatusMessage: string | null;
2485
- xrayVersion: string | null;
2486
- nodeVersion: string | null;
2487
- xrayUptime: string;
2488
2519
  isTrafficTrackingActive: boolean;
2489
2520
  trafficResetDay: number | null;
2490
2521
  trafficUsedBytes: number | null;
2491
2522
  notifyPercent: number | null;
2492
- usersOnline: number | null;
2493
2523
  consumptionMultiplier: number;
2494
2524
  configProfile: {
2495
2525
  activeConfigProfileUuid: string | null;
@@ -2506,6 +2536,12 @@ export declare const RemnawaveWebhookTorrentBlockerEvents: z.ZodObject<{
2506
2536
  };
2507
2537
  providerUuid: string | null;
2508
2538
  activePluginUuid: string | null;
2539
+ versions: {
2540
+ node: string;
2541
+ xray: string;
2542
+ } | null;
2543
+ xrayUptime: number;
2544
+ usersOnline: number;
2509
2545
  };
2510
2546
  report: {
2511
2547
  actionReport: {
@@ -3152,15 +3188,11 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
3152
3188
  isConnecting: z.ZodBoolean;
3153
3189
  lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
3154
3190
  lastStatusMessage: z.ZodNullable<z.ZodString>;
3155
- xrayVersion: z.ZodNullable<z.ZodString>;
3156
- nodeVersion: z.ZodNullable<z.ZodString>;
3157
- xrayUptime: z.ZodString;
3158
3191
  isTrafficTrackingActive: z.ZodBoolean;
3159
3192
  trafficResetDay: z.ZodNullable<z.ZodNumber>;
3160
3193
  trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
3161
3194
  trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
3162
3195
  notifyPercent: z.ZodNullable<z.ZodNumber>;
3163
- usersOnline: z.ZodNullable<z.ZodNumber>;
3164
3196
  viewPosition: z.ZodNumber;
3165
3197
  countryCode: z.ZodString;
3166
3198
  consumptionMultiplier: z.ZodNumber;
@@ -3383,6 +3415,18 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
3383
3415
  networkInterfaces: string[];
3384
3416
  };
3385
3417
  }>>;
3418
+ versions: z.ZodNullable<z.ZodObject<{
3419
+ xray: z.ZodString;
3420
+ node: z.ZodString;
3421
+ }, "strip", z.ZodTypeAny, {
3422
+ node: string;
3423
+ xray: string;
3424
+ }, {
3425
+ node: string;
3426
+ xray: string;
3427
+ }>>;
3428
+ xrayUptime: z.ZodNumber;
3429
+ usersOnline: z.ZodNumber;
3386
3430
  }, "strip", z.ZodTypeAny, {
3387
3431
  tags: string[];
3388
3432
  system: {
@@ -3434,14 +3478,10 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
3434
3478
  isConnecting: boolean;
3435
3479
  lastStatusChange: Date | null;
3436
3480
  lastStatusMessage: string | null;
3437
- xrayVersion: string | null;
3438
- nodeVersion: string | null;
3439
- xrayUptime: string;
3440
3481
  isTrafficTrackingActive: boolean;
3441
3482
  trafficResetDay: number | null;
3442
3483
  trafficUsedBytes: number | null;
3443
3484
  notifyPercent: number | null;
3444
- usersOnline: number | null;
3445
3485
  consumptionMultiplier: number;
3446
3486
  configProfile: {
3447
3487
  activeConfigProfileUuid: string | null;
@@ -3458,6 +3498,12 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
3458
3498
  };
3459
3499
  providerUuid: string | null;
3460
3500
  activePluginUuid: string | null;
3501
+ versions: {
3502
+ node: string;
3503
+ xray: string;
3504
+ } | null;
3505
+ xrayUptime: number;
3506
+ usersOnline: number;
3461
3507
  }, {
3462
3508
  tags: string[];
3463
3509
  system: {
@@ -3509,14 +3555,10 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
3509
3555
  isConnecting: boolean;
3510
3556
  lastStatusChange: string | null;
3511
3557
  lastStatusMessage: string | null;
3512
- xrayVersion: string | null;
3513
- nodeVersion: string | null;
3514
- xrayUptime: string;
3515
3558
  isTrafficTrackingActive: boolean;
3516
3559
  trafficResetDay: number | null;
3517
3560
  trafficUsedBytes: number | null;
3518
3561
  notifyPercent: number | null;
3519
- usersOnline: number | null;
3520
3562
  consumptionMultiplier: number;
3521
3563
  configProfile: {
3522
3564
  activeConfigProfileUuid: string | null;
@@ -3533,6 +3575,12 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
3533
3575
  };
3534
3576
  providerUuid: string | null;
3535
3577
  activePluginUuid: string | null;
3578
+ versions: {
3579
+ node: string;
3580
+ xray: string;
3581
+ } | null;
3582
+ xrayUptime: number;
3583
+ usersOnline: number;
3536
3584
  }>;
3537
3585
  }, "strip", z.ZodTypeAny, {
3538
3586
  data: {
@@ -3586,14 +3634,10 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
3586
3634
  isConnecting: boolean;
3587
3635
  lastStatusChange: Date | null;
3588
3636
  lastStatusMessage: string | null;
3589
- xrayVersion: string | null;
3590
- nodeVersion: string | null;
3591
- xrayUptime: string;
3592
3637
  isTrafficTrackingActive: boolean;
3593
3638
  trafficResetDay: number | null;
3594
3639
  trafficUsedBytes: number | null;
3595
3640
  notifyPercent: number | null;
3596
- usersOnline: number | null;
3597
3641
  consumptionMultiplier: number;
3598
3642
  configProfile: {
3599
3643
  activeConfigProfileUuid: string | null;
@@ -3610,6 +3654,12 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
3610
3654
  };
3611
3655
  providerUuid: string | null;
3612
3656
  activePluginUuid: string | null;
3657
+ versions: {
3658
+ node: string;
3659
+ xray: string;
3660
+ } | null;
3661
+ xrayUptime: number;
3662
+ usersOnline: number;
3613
3663
  };
3614
3664
  scope: "node";
3615
3665
  event: "node.created" | "node.modified" | "node.disabled" | "node.enabled" | "node.deleted" | "node.connection_lost" | "node.connection_restored" | "node.traffic_notify";
@@ -3666,14 +3716,10 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
3666
3716
  isConnecting: boolean;
3667
3717
  lastStatusChange: string | null;
3668
3718
  lastStatusMessage: string | null;
3669
- xrayVersion: string | null;
3670
- nodeVersion: string | null;
3671
- xrayUptime: string;
3672
3719
  isTrafficTrackingActive: boolean;
3673
3720
  trafficResetDay: number | null;
3674
3721
  trafficUsedBytes: number | null;
3675
3722
  notifyPercent: number | null;
3676
- usersOnline: number | null;
3677
3723
  consumptionMultiplier: number;
3678
3724
  configProfile: {
3679
3725
  activeConfigProfileUuid: string | null;
@@ -3690,6 +3736,12 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
3690
3736
  };
3691
3737
  providerUuid: string | null;
3692
3738
  activePluginUuid: string | null;
3739
+ versions: {
3740
+ node: string;
3741
+ xray: string;
3742
+ } | null;
3743
+ xrayUptime: number;
3744
+ usersOnline: number;
3693
3745
  };
3694
3746
  scope: "node";
3695
3747
  event: "node.created" | "node.modified" | "node.disabled" | "node.enabled" | "node.deleted" | "node.connection_lost" | "node.connection_restored" | "node.traffic_notify";
@@ -3872,15 +3924,11 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
3872
3924
  isConnecting: z.ZodBoolean;
3873
3925
  lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
3874
3926
  lastStatusMessage: z.ZodNullable<z.ZodString>;
3875
- xrayVersion: z.ZodNullable<z.ZodString>;
3876
- nodeVersion: z.ZodNullable<z.ZodString>;
3877
- xrayUptime: z.ZodString;
3878
3927
  isTrafficTrackingActive: z.ZodBoolean;
3879
3928
  trafficResetDay: z.ZodNullable<z.ZodNumber>;
3880
3929
  trafficLimitBytes: z.ZodNullable<z.ZodNumber>;
3881
3930
  trafficUsedBytes: z.ZodNullable<z.ZodNumber>;
3882
3931
  notifyPercent: z.ZodNullable<z.ZodNumber>;
3883
- usersOnline: z.ZodNullable<z.ZodNumber>;
3884
3932
  viewPosition: z.ZodNumber;
3885
3933
  countryCode: z.ZodString;
3886
3934
  consumptionMultiplier: z.ZodNumber;
@@ -4103,6 +4151,18 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
4103
4151
  networkInterfaces: string[];
4104
4152
  };
4105
4153
  }>>;
4154
+ versions: z.ZodNullable<z.ZodObject<{
4155
+ xray: z.ZodString;
4156
+ node: z.ZodString;
4157
+ }, "strip", z.ZodTypeAny, {
4158
+ node: string;
4159
+ xray: string;
4160
+ }, {
4161
+ node: string;
4162
+ xray: string;
4163
+ }>>;
4164
+ xrayUptime: z.ZodNumber;
4165
+ usersOnline: z.ZodNumber;
4106
4166
  }, "strip", z.ZodTypeAny, {
4107
4167
  tags: string[];
4108
4168
  system: {
@@ -4154,14 +4214,10 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
4154
4214
  isConnecting: boolean;
4155
4215
  lastStatusChange: Date | null;
4156
4216
  lastStatusMessage: string | null;
4157
- xrayVersion: string | null;
4158
- nodeVersion: string | null;
4159
- xrayUptime: string;
4160
4217
  isTrafficTrackingActive: boolean;
4161
4218
  trafficResetDay: number | null;
4162
4219
  trafficUsedBytes: number | null;
4163
4220
  notifyPercent: number | null;
4164
- usersOnline: number | null;
4165
4221
  consumptionMultiplier: number;
4166
4222
  configProfile: {
4167
4223
  activeConfigProfileUuid: string | null;
@@ -4178,6 +4234,12 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
4178
4234
  };
4179
4235
  providerUuid: string | null;
4180
4236
  activePluginUuid: string | null;
4237
+ versions: {
4238
+ node: string;
4239
+ xray: string;
4240
+ } | null;
4241
+ xrayUptime: number;
4242
+ usersOnline: number;
4181
4243
  }, {
4182
4244
  tags: string[];
4183
4245
  system: {
@@ -4229,14 +4291,10 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
4229
4291
  isConnecting: boolean;
4230
4292
  lastStatusChange: string | null;
4231
4293
  lastStatusMessage: string | null;
4232
- xrayVersion: string | null;
4233
- nodeVersion: string | null;
4234
- xrayUptime: string;
4235
4294
  isTrafficTrackingActive: boolean;
4236
4295
  trafficResetDay: number | null;
4237
4296
  trafficUsedBytes: number | null;
4238
4297
  notifyPercent: number | null;
4239
- usersOnline: number | null;
4240
4298
  consumptionMultiplier: number;
4241
4299
  configProfile: {
4242
4300
  activeConfigProfileUuid: string | null;
@@ -4253,6 +4311,12 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
4253
4311
  };
4254
4312
  providerUuid: string | null;
4255
4313
  activePluginUuid: string | null;
4314
+ versions: {
4315
+ node: string;
4316
+ xray: string;
4317
+ } | null;
4318
+ xrayUptime: number;
4319
+ usersOnline: number;
4256
4320
  }>;
4257
4321
  user: z.ZodObject<{
4258
4322
  uuid: z.ZodString;
@@ -4593,14 +4657,10 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
4593
4657
  isConnecting: boolean;
4594
4658
  lastStatusChange: Date | null;
4595
4659
  lastStatusMessage: string | null;
4596
- xrayVersion: string | null;
4597
- nodeVersion: string | null;
4598
- xrayUptime: string;
4599
4660
  isTrafficTrackingActive: boolean;
4600
4661
  trafficResetDay: number | null;
4601
4662
  trafficUsedBytes: number | null;
4602
4663
  notifyPercent: number | null;
4603
- usersOnline: number | null;
4604
4664
  consumptionMultiplier: number;
4605
4665
  configProfile: {
4606
4666
  activeConfigProfileUuid: string | null;
@@ -4617,6 +4677,12 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
4617
4677
  };
4618
4678
  providerUuid: string | null;
4619
4679
  activePluginUuid: string | null;
4680
+ versions: {
4681
+ node: string;
4682
+ xray: string;
4683
+ } | null;
4684
+ xrayUptime: number;
4685
+ usersOnline: number;
4620
4686
  };
4621
4687
  report: {
4622
4688
  actionReport: {
@@ -4731,14 +4797,10 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
4731
4797
  isConnecting: boolean;
4732
4798
  lastStatusChange: string | null;
4733
4799
  lastStatusMessage: string | null;
4734
- xrayVersion: string | null;
4735
- nodeVersion: string | null;
4736
- xrayUptime: string;
4737
4800
  isTrafficTrackingActive: boolean;
4738
4801
  trafficResetDay: number | null;
4739
4802
  trafficUsedBytes: number | null;
4740
4803
  notifyPercent: number | null;
4741
- usersOnline: number | null;
4742
4804
  consumptionMultiplier: number;
4743
4805
  configProfile: {
4744
4806
  activeConfigProfileUuid: string | null;
@@ -4755,6 +4817,12 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
4755
4817
  };
4756
4818
  providerUuid: string | null;
4757
4819
  activePluginUuid: string | null;
4820
+ versions: {
4821
+ node: string;
4822
+ xray: string;
4823
+ } | null;
4824
+ xrayUptime: number;
4825
+ usersOnline: number;
4758
4826
  };
4759
4827
  report: {
4760
4828
  actionReport: {
@@ -4871,14 +4939,10 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
4871
4939
  isConnecting: boolean;
4872
4940
  lastStatusChange: Date | null;
4873
4941
  lastStatusMessage: string | null;
4874
- xrayVersion: string | null;
4875
- nodeVersion: string | null;
4876
- xrayUptime: string;
4877
4942
  isTrafficTrackingActive: boolean;
4878
4943
  trafficResetDay: number | null;
4879
4944
  trafficUsedBytes: number | null;
4880
4945
  notifyPercent: number | null;
4881
- usersOnline: number | null;
4882
4946
  consumptionMultiplier: number;
4883
4947
  configProfile: {
4884
4948
  activeConfigProfileUuid: string | null;
@@ -4895,6 +4959,12 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
4895
4959
  };
4896
4960
  providerUuid: string | null;
4897
4961
  activePluginUuid: string | null;
4962
+ versions: {
4963
+ node: string;
4964
+ xray: string;
4965
+ } | null;
4966
+ xrayUptime: number;
4967
+ usersOnline: number;
4898
4968
  };
4899
4969
  report: {
4900
4970
  actionReport: {
@@ -5014,14 +5084,10 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
5014
5084
  isConnecting: boolean;
5015
5085
  lastStatusChange: string | null;
5016
5086
  lastStatusMessage: string | null;
5017
- xrayVersion: string | null;
5018
- nodeVersion: string | null;
5019
- xrayUptime: string;
5020
5087
  isTrafficTrackingActive: boolean;
5021
5088
  trafficResetDay: number | null;
5022
5089
  trafficUsedBytes: number | null;
5023
5090
  notifyPercent: number | null;
5024
- usersOnline: number | null;
5025
5091
  consumptionMultiplier: number;
5026
5092
  configProfile: {
5027
5093
  activeConfigProfileUuid: string | null;
@@ -5038,6 +5104,12 @@ export declare const RemnawaveWebhookEventSchema: z.ZodDiscriminatedUnion<"scope
5038
5104
  };
5039
5105
  providerUuid: string | null;
5040
5106
  activePluginUuid: string | null;
5107
+ versions: {
5108
+ node: string;
5109
+ xray: string;
5110
+ } | null;
5111
+ xrayUptime: number;
5112
+ usersOnline: number;
5041
5113
  };
5042
5114
  report: {
5043
5115
  actionReport: {