@remnawave/backend-contract 2.0.0-alpha.9 → 2.0.1
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/auth.d.ts +2 -0
- package/build/backend/api/controllers/auth.d.ts.map +1 -1
- package/build/backend/api/controllers/auth.js +2 -0
- package/build/backend/api/controllers/infra-billing.d.ts +1 -1
- package/build/backend/api/controllers/infra-billing.d.ts.map +1 -1
- package/build/backend/api/controllers/infra-billing.js +1 -5
- package/build/backend/api/controllers/internal-squads.d.ts +4 -0
- package/build/backend/api/controllers/internal-squads.d.ts.map +1 -1
- package/build/backend/api/controllers/internal-squads.js +5 -0
- package/build/backend/api/controllers/subscription.d.ts +1 -0
- package/build/backend/api/controllers/subscription.d.ts.map +1 -1
- package/build/backend/api/controllers/subscription.js +1 -0
- package/build/backend/api/controllers/system.d.ts +1 -0
- package/build/backend/api/controllers/system.d.ts.map +1 -1
- package/build/backend/api/controllers/system.js +1 -0
- package/build/backend/api/routes.d.ts +9 -1
- package/build/backend/api/routes.d.ts.map +1 -1
- package/build/backend/api/routes.js +9 -1
- package/build/backend/commands/api-tokens/create.command.d.ts +0 -3
- package/build/backend/commands/api-tokens/create.command.d.ts.map +1 -1
- package/build/backend/commands/api-tokens/create.command.js +0 -1
- package/build/backend/commands/api-tokens/find.command.d.ts +0 -7
- package/build/backend/commands/api-tokens/find.command.d.ts.map +1 -1
- package/build/backend/commands/auth/get-status.command.d.ts +23 -0
- package/build/backend/commands/auth/get-status.command.d.ts.map +1 -1
- package/build/backend/commands/auth/get-status.command.js +3 -0
- package/build/backend/commands/auth/oauth2/authorize.command.d.ts +36 -0
- package/build/backend/commands/auth/oauth2/authorize.command.d.ts.map +1 -0
- package/build/backend/commands/auth/oauth2/authorize.command.js +20 -0
- package/build/backend/commands/auth/oauth2/callback.command.d.ts +43 -0
- package/build/backend/commands/auth/oauth2/callback.command.d.ts.map +1 -0
- package/build/backend/commands/auth/oauth2/callback.command.js +22 -0
- package/build/backend/commands/auth/oauth2/index.d.ts +2 -0
- package/build/backend/commands/auth/oauth2/index.d.ts.map +1 -1
- package/build/backend/commands/auth/oauth2/index.js +2 -0
- package/build/backend/commands/hosts/bulk/delete-many-hosts.command.d.ts +36 -10
- package/build/backend/commands/hosts/bulk/delete-many-hosts.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/bulk/disable-many-hosts.command.d.ts +36 -10
- package/build/backend/commands/hosts/bulk/disable-many-hosts.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/bulk/enable-many-hosts.command.d.ts +36 -10
- package/build/backend/commands/hosts/bulk/enable-many-hosts.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/bulk/set-inbound-to-many-hosts.command.d.ts +36 -10
- package/build/backend/commands/hosts/bulk/set-inbound-to-many-hosts.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/bulk/set-port-to-many-hosts.command.d.ts +36 -10
- package/build/backend/commands/hosts/bulk/set-port-to-many-hosts.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/create.command.d.ts +60 -19
- package/build/backend/commands/hosts/create.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/create.command.js +14 -13
- package/build/backend/commands/hosts/get-all.command.d.ts +36 -10
- package/build/backend/commands/hosts/get-all.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/get-one.command.d.ts +36 -10
- package/build/backend/commands/hosts/get-one.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/reorder.command.d.ts +12 -2
- package/build/backend/commands/hosts/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/update.command.d.ts +72 -21
- package/build/backend/commands/hosts/update.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/update.command.js +11 -11
- package/build/backend/commands/infra-billing/create-bill-record.command.d.ts +125 -0
- package/build/backend/commands/infra-billing/create-bill-record.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/create-bill-record.command.js +30 -0
- package/build/backend/commands/infra-billing/create-billing-node.command.d.ts +467 -0
- package/build/backend/commands/infra-billing/create-billing-node.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/create-billing-node.command.js +38 -0
- package/build/backend/commands/infra-billing/create-infra-provider.command.d.ts +59 -0
- package/build/backend/commands/infra-billing/create-infra-provider.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/create-infra-provider.command.js +1 -1
- package/build/backend/commands/infra-billing/delete-bill-record-by-uuid.command.d.ts +119 -0
- package/build/backend/commands/infra-billing/delete-bill-record-by-uuid.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/delete-bill-record-by-uuid.command.js +22 -0
- package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts +461 -0
- package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.js +29 -0
- package/build/backend/commands/infra-billing/get-bill-records.command.d.ts +122 -0
- package/build/backend/commands/infra-billing/get-bill-records.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/get-bill-records.command.js +31 -0
- package/build/backend/commands/infra-billing/get-billing-nodes.command.d.ts +453 -0
- package/build/backend/commands/infra-billing/get-billing-nodes.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/get-billing-nodes.command.js +26 -0
- package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.d.ts +59 -0
- package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/get-infra-providers.command.d.ts +77 -0
- package/build/backend/commands/infra-billing/get-infra-providers.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/index.d.ts +7 -0
- package/build/backend/commands/infra-billing/index.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/index.js +7 -0
- package/build/backend/commands/infra-billing/update-billing-node.command.d.ts +464 -0
- package/build/backend/commands/infra-billing/update-billing-node.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/update-billing-node.command.js +35 -0
- package/build/backend/commands/infra-billing/update-infra-provider.command.d.ts +59 -0
- package/build/backend/commands/infra-billing/update-infra-provider.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/update-infra-provider.command.js +1 -1
- package/build/backend/commands/internal-squads/bulk-actions/add-users-to-internal-squad.command.d.ts +33 -0
- package/build/backend/commands/internal-squads/bulk-actions/add-users-to-internal-squad.command.d.ts.map +1 -0
- package/build/backend/commands/internal-squads/bulk-actions/add-users-to-internal-squad.command.js +20 -0
- package/build/backend/commands/internal-squads/bulk-actions/delete-users-from-internal-squad.command.d.ts +33 -0
- package/build/backend/commands/internal-squads/bulk-actions/delete-users-from-internal-squad.command.d.ts.map +1 -0
- package/build/backend/commands/internal-squads/bulk-actions/delete-users-from-internal-squad.command.js +20 -0
- package/build/backend/commands/internal-squads/bulk-actions/index.d.ts +3 -0
- package/build/backend/commands/internal-squads/bulk-actions/index.d.ts.map +1 -0
- package/build/backend/commands/internal-squads/bulk-actions/index.js +18 -0
- package/build/backend/commands/internal-squads/{get-internal-squad-by-uuid..d.ts → get-internal-squad-by-uuid.d.ts} +1 -1
- package/build/backend/commands/internal-squads/get-internal-squad-by-uuid.d.ts.map +1 -0
- package/build/backend/commands/internal-squads/index.d.ts +2 -1
- package/build/backend/commands/internal-squads/index.d.ts.map +1 -1
- package/build/backend/commands/internal-squads/index.js +2 -1
- package/build/backend/commands/nodes/actions/disable.command.d.ts +140 -101
- package/build/backend/commands/nodes/actions/disable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/enable.command.d.ts +140 -101
- package/build/backend/commands/nodes/actions/enable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/reorder.command.d.ts +194 -128
- package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.d.ts +158 -107
- package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.js +6 -4
- package/build/backend/commands/nodes/get-all.command.d.ts +140 -101
- package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-one.command.d.ts +140 -101
- package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/stats/get-node-user-usage-by-range.command.d.ts +4 -4
- package/build/backend/commands/nodes/stats/get-nodes-usage-by-range.command.d.ts +4 -4
- package/build/backend/commands/nodes/update.command.d.ts +212 -134
- package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/update.command.js +8 -4
- package/build/backend/commands/subscription/get-raw-subscription-by-short-uuid.command.d.ts +361 -0
- package/build/backend/commands/subscription/get-raw-subscription-by-short-uuid.command.d.ts.map +1 -0
- package/build/backend/commands/subscription/get-raw-subscription-by-short-uuid.command.js +68 -0
- package/build/backend/commands/subscription/get-subscription-info-by-short-uuid.command.d.ts +4 -4
- package/build/backend/commands/subscription/index.d.ts +1 -0
- package/build/backend/commands/subscription/index.d.ts.map +1 -1
- package/build/backend/commands/subscription/index.js +1 -0
- package/build/backend/commands/subscriptions/get-all-subscriptions.command.d.ts +6 -6
- package/build/backend/commands/subscriptions/get-by/get-subscription-by-username.command.d.ts +4 -4
- package/build/backend/commands/system/get-nodes-metrics.command.d.ts +153 -0
- package/build/backend/commands/system/get-nodes-metrics.command.d.ts.map +1 -0
- package/build/backend/commands/system/get-nodes-metrics.command.js +33 -0
- package/build/backend/commands/system/index.d.ts +1 -0
- package/build/backend/commands/system/index.d.ts.map +1 -1
- package/build/backend/commands/system/index.js +1 -0
- package/build/backend/commands/users/create-user.command.d.ts +6 -6
- package/build/backend/commands/users/create-user.command.d.ts.map +1 -1
- package/build/backend/commands/users/create-user.command.js +2 -4
- package/build/backend/commands/users/get-user-usage-by-range.command.d.ts +4 -4
- package/build/backend/constants/errors/errors.d.ts +85 -0
- package/build/backend/constants/errors/errors.d.ts.map +1 -1
- package/build/backend/constants/errors/errors.js +85 -0
- package/build/backend/constants/events/events.d.ts +11 -0
- package/build/backend/constants/events/events.d.ts.map +1 -1
- package/build/backend/constants/events/events.js +10 -0
- package/build/backend/constants/headers/headers.constants.d.ts +3 -0
- package/build/backend/constants/headers/headers.constants.d.ts.map +1 -0
- package/build/backend/constants/headers/headers.constants.js +5 -0
- package/build/backend/constants/headers/index.d.ts +2 -0
- package/build/backend/constants/headers/index.d.ts.map +1 -0
- package/build/backend/constants/headers/index.js +17 -0
- package/build/backend/constants/index.d.ts +3 -0
- package/build/backend/constants/index.d.ts.map +1 -1
- package/build/backend/constants/index.js +3 -0
- package/build/backend/constants/messaging/index.d.ts +2 -0
- package/build/backend/constants/messaging/index.d.ts.map +1 -0
- package/build/backend/constants/messaging/index.js +17 -0
- package/build/backend/constants/messaging/messaging.constants.d.ts +13 -0
- package/build/backend/constants/messaging/messaging.constants.d.ts.map +1 -0
- package/build/backend/constants/messaging/messaging.constants.js +19 -0
- package/build/backend/constants/metrics/metric-names.constant.d.ts +17 -0
- package/build/backend/constants/metrics/metric-names.constant.d.ts.map +1 -1
- package/build/backend/constants/metrics/metric-names.constant.js +17 -0
- package/build/backend/constants/oauth2/index.d.ts +2 -0
- package/build/backend/constants/oauth2/index.d.ts.map +1 -0
- package/build/backend/constants/oauth2/index.js +17 -0
- package/build/backend/constants/oauth2/providers.contants.d.ts +9 -0
- package/build/backend/constants/oauth2/providers.contants.d.ts.map +1 -0
- package/build/backend/constants/oauth2/providers.contants.js +9 -0
- package/build/backend/constants/templates/template-keys.d.ts +1 -1
- package/build/backend/constants/templates/template-keys.d.ts.map +1 -1
- package/build/backend/constants/templates/template-keys.js +1 -0
- package/build/backend/models/api-tokens.schema.d.ts +0 -3
- package/build/backend/models/api-tokens.schema.d.ts.map +1 -1
- package/build/backend/models/api-tokens.schema.js +0 -1
- package/build/backend/models/{extented-users.schema.d.ts → extended-users.schema.d.ts} +1 -1
- package/build/backend/models/{extented-users.schema.d.ts.map → extended-users.schema.d.ts.map} +1 -1
- package/build/backend/models/hosts.schema.d.ts +24 -6
- package/build/backend/models/hosts.schema.d.ts.map +1 -1
- package/build/backend/models/hosts.schema.js +6 -2
- package/build/backend/models/index.d.ts +4 -1
- package/build/backend/models/index.d.ts.map +1 -1
- package/build/backend/models/index.js +4 -1
- package/build/backend/models/infra-billing-available-node.schema.d.ts +117 -0
- package/build/backend/models/infra-billing-available-node.schema.d.ts.map +1 -0
- package/build/backend/models/infra-billing-available-node.schema.js +9 -0
- package/build/backend/models/infra-billing-history-record.schema.d.ts +44 -0
- package/build/backend/models/infra-billing-history-record.schema.d.ts.map +1 -0
- package/build/backend/models/infra-billing-history-record.schema.js +19 -0
- package/build/backend/models/infra-billing-node.schema.d.ts +180 -0
- package/build/backend/models/infra-billing-node.schema.d.ts.map +1 -0
- package/build/backend/models/infra-billing-node.schema.js +34 -0
- package/build/backend/models/infra-provider.schema.d.ts +63 -0
- package/build/backend/models/infra-provider.schema.d.ts.map +1 -1
- package/build/backend/models/infra-provider.schema.js +24 -1
- package/build/backend/models/nodes.schema.d.ts +96 -63
- package/build/backend/models/nodes.schema.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.js +6 -3
- package/build/frontend/api/controllers/auth.js +2 -0
- package/build/frontend/api/controllers/infra-billing.js +1 -5
- package/build/frontend/api/controllers/internal-squads.js +5 -0
- package/build/frontend/api/controllers/subscription.js +1 -0
- package/build/frontend/api/controllers/system.js +1 -0
- package/build/frontend/api/routes.js +9 -1
- package/build/frontend/commands/api-tokens/create.command.js +0 -1
- package/build/frontend/commands/auth/get-status.command.js +3 -0
- package/build/frontend/commands/auth/oauth2/authorize.command.js +20 -0
- package/build/frontend/commands/auth/oauth2/callback.command.js +22 -0
- package/build/frontend/commands/auth/oauth2/index.js +2 -0
- package/build/frontend/commands/hosts/create.command.js +14 -13
- package/build/frontend/commands/hosts/update.command.js +11 -11
- package/build/frontend/commands/infra-billing/create-bill-record.command.js +30 -0
- package/build/frontend/commands/infra-billing/create-billing-node.command.js +38 -0
- package/build/frontend/commands/infra-billing/create-infra-provider.command.js +1 -1
- package/build/frontend/commands/infra-billing/delete-bill-record-by-uuid.command.js +22 -0
- package/build/frontend/commands/infra-billing/delete-billing-node-by-uuid.command.js +29 -0
- package/build/frontend/commands/infra-billing/get-bill-records.command.js +31 -0
- package/build/frontend/commands/infra-billing/get-billing-nodes.command.js +26 -0
- package/build/frontend/commands/infra-billing/index.js +7 -0
- package/build/frontend/commands/infra-billing/update-billing-node.command.js +35 -0
- package/build/frontend/commands/infra-billing/update-infra-provider.command.js +1 -1
- package/build/frontend/commands/internal-squads/bulk-actions/add-users-to-internal-squad.command.js +20 -0
- package/build/frontend/commands/internal-squads/bulk-actions/delete-users-from-internal-squad.command.js +20 -0
- package/build/frontend/commands/internal-squads/bulk-actions/index.js +18 -0
- package/build/frontend/commands/internal-squads/index.js +2 -1
- package/build/frontend/commands/nodes/create.command.js +6 -4
- package/build/frontend/commands/nodes/update.command.js +8 -4
- package/build/frontend/commands/subscription/get-raw-subscription-by-short-uuid.command.js +68 -0
- package/build/frontend/commands/subscription/index.js +1 -0
- package/build/frontend/commands/system/get-nodes-metrics.command.js +33 -0
- package/build/frontend/commands/system/index.js +1 -0
- package/build/frontend/commands/users/create-user.command.js +2 -4
- package/build/frontend/constants/errors/errors.js +85 -0
- package/build/frontend/constants/events/events.js +10 -0
- package/build/frontend/constants/headers/headers.constants.js +5 -0
- package/build/frontend/constants/headers/index.js +17 -0
- package/build/frontend/constants/index.js +3 -0
- package/build/frontend/constants/messaging/index.js +17 -0
- package/build/frontend/constants/messaging/messaging.constants.js +19 -0
- package/build/frontend/constants/metrics/metric-names.constant.js +17 -0
- package/build/frontend/constants/oauth2/index.js +17 -0
- package/build/frontend/constants/oauth2/providers.contants.js +9 -0
- package/build/frontend/constants/templates/template-keys.js +1 -0
- package/build/frontend/models/api-tokens.schema.js +0 -1
- package/build/frontend/models/hosts.schema.js +6 -2
- package/build/frontend/models/index.js +4 -1
- package/build/frontend/models/infra-billing-available-node.schema.js +9 -0
- package/build/frontend/models/infra-billing-history-record.schema.js +19 -0
- package/build/frontend/models/infra-billing-node.schema.js +34 -0
- package/build/frontend/models/infra-provider.schema.js +24 -1
- package/build/frontend/models/nodes.schema.js +6 -3
- package/package.json +2 -2
- package/build/backend/commands/internal-squads/get-internal-squad-by-uuid..d.ts.map +0 -1
- /package/build/backend/commands/internal-squads/{get-internal-squad-by-uuid..js → get-internal-squad-by-uuid.js} +0 -0
- /package/build/backend/models/{extented-users.schema.js → extended-users.schema.js} +0 -0
- /package/build/frontend/commands/internal-squads/{get-internal-squad-by-uuid..js → get-internal-squad-by-uuid.js} +0 -0
- /package/build/frontend/models/{extented-users.schema.js → extended-users.schema.js} +0 -0
@@ -17,6 +17,7 @@ export declare namespace GetAllNodesCommand {
|
|
17
17
|
lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
18
18
|
lastStatusMessage: z.ZodNullable<z.ZodString>;
|
19
19
|
xrayVersion: z.ZodNullable<z.ZodString>;
|
20
|
+
nodeVersion: z.ZodNullable<z.ZodString>;
|
20
21
|
xrayUptime: z.ZodString;
|
21
22
|
isTrafficTrackingActive: z.ZodBoolean;
|
22
23
|
trafficResetDay: z.ZodNullable<z.ZodNumber>;
|
@@ -32,35 +33,61 @@ export declare namespace GetAllNodesCommand {
|
|
32
33
|
totalRam: z.ZodNullable<z.ZodString>;
|
33
34
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
34
35
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
36
|
+
configProfile: z.ZodObject<{
|
37
|
+
activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
|
38
|
+
activeInbounds: z.ZodArray<z.ZodObject<{
|
39
|
+
uuid: z.ZodString;
|
40
|
+
profileUuid: z.ZodString;
|
41
|
+
tag: z.ZodString;
|
42
|
+
type: z.ZodString;
|
43
|
+
network: z.ZodNullable<z.ZodString>;
|
44
|
+
security: z.ZodNullable<z.ZodString>;
|
45
|
+
port: z.ZodNullable<z.ZodNumber>;
|
46
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
47
|
+
}, "strip", z.ZodTypeAny, {
|
48
|
+
type: string;
|
49
|
+
uuid: string;
|
50
|
+
profileUuid: string;
|
51
|
+
tag: string;
|
52
|
+
network: string | null;
|
53
|
+
security: string | null;
|
54
|
+
port: number | null;
|
55
|
+
rawInbound?: unknown;
|
56
|
+
}, {
|
57
|
+
type: string;
|
58
|
+
uuid: string;
|
59
|
+
profileUuid: string;
|
60
|
+
tag: string;
|
61
|
+
network: string | null;
|
62
|
+
security: string | null;
|
63
|
+
port: number | null;
|
64
|
+
rawInbound?: unknown;
|
65
|
+
}>, "many">;
|
45
66
|
}, "strip", z.ZodTypeAny, {
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
67
|
+
activeConfigProfileUuid: string | null;
|
68
|
+
activeInbounds: {
|
69
|
+
type: string;
|
70
|
+
uuid: string;
|
71
|
+
profileUuid: string;
|
72
|
+
tag: string;
|
73
|
+
network: string | null;
|
74
|
+
security: string | null;
|
75
|
+
port: number | null;
|
76
|
+
rawInbound?: unknown;
|
77
|
+
}[];
|
54
78
|
}, {
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
79
|
+
activeConfigProfileUuid: string | null;
|
80
|
+
activeInbounds: {
|
81
|
+
type: string;
|
82
|
+
uuid: string;
|
83
|
+
profileUuid: string;
|
84
|
+
tag: string;
|
85
|
+
network: string | null;
|
86
|
+
security: string | null;
|
87
|
+
port: number | null;
|
88
|
+
rawInbound?: unknown;
|
89
|
+
}[];
|
90
|
+
}>;
|
64
91
|
providerUuid: z.ZodNullable<z.ZodString>;
|
65
92
|
provider: z.ZodNullable<z.ZodObject<{
|
66
93
|
uuid: z.ZodString;
|
@@ -88,6 +115,14 @@ export declare namespace GetAllNodesCommand {
|
|
88
115
|
uuid: string;
|
89
116
|
createdAt: Date;
|
90
117
|
updatedAt: Date;
|
118
|
+
provider: {
|
119
|
+
uuid: string;
|
120
|
+
createdAt: Date;
|
121
|
+
updatedAt: Date;
|
122
|
+
name: string;
|
123
|
+
faviconLink: string | null;
|
124
|
+
loginUrl: string | null;
|
125
|
+
} | null;
|
91
126
|
name: string;
|
92
127
|
port: number | null;
|
93
128
|
countryCode: string;
|
@@ -102,6 +137,7 @@ export declare namespace GetAllNodesCommand {
|
|
102
137
|
lastStatusChange: Date | null;
|
103
138
|
lastStatusMessage: string | null;
|
104
139
|
xrayVersion: string | null;
|
140
|
+
nodeVersion: string | null;
|
105
141
|
xrayUptime: string;
|
106
142
|
isTrafficTrackingActive: boolean;
|
107
143
|
trafficResetDay: number | null;
|
@@ -112,30 +148,32 @@ export declare namespace GetAllNodesCommand {
|
|
112
148
|
cpuCount: number | null;
|
113
149
|
cpuModel: string | null;
|
114
150
|
totalRam: string | null;
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
151
|
+
configProfile: {
|
152
|
+
activeConfigProfileUuid: string | null;
|
153
|
+
activeInbounds: {
|
154
|
+
type: string;
|
155
|
+
uuid: string;
|
156
|
+
profileUuid: string;
|
157
|
+
tag: string;
|
158
|
+
network: string | null;
|
159
|
+
security: string | null;
|
160
|
+
port: number | null;
|
161
|
+
rawInbound?: unknown;
|
162
|
+
}[];
|
163
|
+
};
|
126
164
|
providerUuid: string | null;
|
165
|
+
}, {
|
166
|
+
uuid: string;
|
167
|
+
createdAt: string;
|
168
|
+
updatedAt: string;
|
127
169
|
provider: {
|
128
170
|
uuid: string;
|
129
|
-
createdAt:
|
130
|
-
updatedAt:
|
171
|
+
createdAt: string;
|
172
|
+
updatedAt: string;
|
131
173
|
name: string;
|
132
174
|
faviconLink: string | null;
|
133
175
|
loginUrl: string | null;
|
134
176
|
} | null;
|
135
|
-
}, {
|
136
|
-
uuid: string;
|
137
|
-
createdAt: string;
|
138
|
-
updatedAt: string;
|
139
177
|
name: string;
|
140
178
|
port: number | null;
|
141
179
|
countryCode: string;
|
@@ -150,6 +188,7 @@ export declare namespace GetAllNodesCommand {
|
|
150
188
|
lastStatusChange: string | null;
|
151
189
|
lastStatusMessage: string | null;
|
152
190
|
xrayVersion: string | null;
|
191
|
+
nodeVersion: string | null;
|
153
192
|
xrayUptime: string;
|
154
193
|
isTrafficTrackingActive: boolean;
|
155
194
|
trafficResetDay: number | null;
|
@@ -160,32 +199,34 @@ export declare namespace GetAllNodesCommand {
|
|
160
199
|
cpuCount: number | null;
|
161
200
|
cpuModel: string | null;
|
162
201
|
totalRam: string | null;
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
202
|
+
configProfile: {
|
203
|
+
activeConfigProfileUuid: string | null;
|
204
|
+
activeInbounds: {
|
205
|
+
type: string;
|
206
|
+
uuid: string;
|
207
|
+
profileUuid: string;
|
208
|
+
tag: string;
|
209
|
+
network: string | null;
|
210
|
+
security: string | null;
|
211
|
+
port: number | null;
|
212
|
+
rawInbound?: unknown;
|
213
|
+
}[];
|
214
|
+
};
|
174
215
|
providerUuid: string | null;
|
175
|
-
provider: {
|
176
|
-
uuid: string;
|
177
|
-
createdAt: string;
|
178
|
-
updatedAt: string;
|
179
|
-
name: string;
|
180
|
-
faviconLink: string | null;
|
181
|
-
loginUrl: string | null;
|
182
|
-
} | null;
|
183
216
|
}>, "many">;
|
184
217
|
}, "strip", z.ZodTypeAny, {
|
185
218
|
response: {
|
186
219
|
uuid: string;
|
187
220
|
createdAt: Date;
|
188
221
|
updatedAt: Date;
|
222
|
+
provider: {
|
223
|
+
uuid: string;
|
224
|
+
createdAt: Date;
|
225
|
+
updatedAt: Date;
|
226
|
+
name: string;
|
227
|
+
faviconLink: string | null;
|
228
|
+
loginUrl: string | null;
|
229
|
+
} | null;
|
189
230
|
name: string;
|
190
231
|
port: number | null;
|
191
232
|
countryCode: string;
|
@@ -200,6 +241,7 @@ export declare namespace GetAllNodesCommand {
|
|
200
241
|
lastStatusChange: Date | null;
|
201
242
|
lastStatusMessage: string | null;
|
202
243
|
xrayVersion: string | null;
|
244
|
+
nodeVersion: string | null;
|
203
245
|
xrayUptime: string;
|
204
246
|
isTrafficTrackingActive: boolean;
|
205
247
|
trafficResetDay: number | null;
|
@@ -210,32 +252,34 @@ export declare namespace GetAllNodesCommand {
|
|
210
252
|
cpuCount: number | null;
|
211
253
|
cpuModel: string | null;
|
212
254
|
totalRam: string | null;
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
255
|
+
configProfile: {
|
256
|
+
activeConfigProfileUuid: string | null;
|
257
|
+
activeInbounds: {
|
258
|
+
type: string;
|
259
|
+
uuid: string;
|
260
|
+
profileUuid: string;
|
261
|
+
tag: string;
|
262
|
+
network: string | null;
|
263
|
+
security: string | null;
|
264
|
+
port: number | null;
|
265
|
+
rawInbound?: unknown;
|
266
|
+
}[];
|
267
|
+
};
|
224
268
|
providerUuid: string | null;
|
225
|
-
provider: {
|
226
|
-
uuid: string;
|
227
|
-
createdAt: Date;
|
228
|
-
updatedAt: Date;
|
229
|
-
name: string;
|
230
|
-
faviconLink: string | null;
|
231
|
-
loginUrl: string | null;
|
232
|
-
} | null;
|
233
269
|
}[];
|
234
270
|
}, {
|
235
271
|
response: {
|
236
272
|
uuid: string;
|
237
273
|
createdAt: string;
|
238
274
|
updatedAt: string;
|
275
|
+
provider: {
|
276
|
+
uuid: string;
|
277
|
+
createdAt: string;
|
278
|
+
updatedAt: string;
|
279
|
+
name: string;
|
280
|
+
faviconLink: string | null;
|
281
|
+
loginUrl: string | null;
|
282
|
+
} | null;
|
239
283
|
name: string;
|
240
284
|
port: number | null;
|
241
285
|
countryCode: string;
|
@@ -250,6 +294,7 @@ export declare namespace GetAllNodesCommand {
|
|
250
294
|
lastStatusChange: string | null;
|
251
295
|
lastStatusMessage: string | null;
|
252
296
|
xrayVersion: string | null;
|
297
|
+
nodeVersion: string | null;
|
253
298
|
xrayUptime: string;
|
254
299
|
isTrafficTrackingActive: boolean;
|
255
300
|
trafficResetDay: number | null;
|
@@ -260,26 +305,20 @@ export declare namespace GetAllNodesCommand {
|
|
260
305
|
cpuCount: number | null;
|
261
306
|
cpuModel: string | null;
|
262
307
|
totalRam: string | null;
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
308
|
+
configProfile: {
|
309
|
+
activeConfigProfileUuid: string | null;
|
310
|
+
activeInbounds: {
|
311
|
+
type: string;
|
312
|
+
uuid: string;
|
313
|
+
profileUuid: string;
|
314
|
+
tag: string;
|
315
|
+
network: string | null;
|
316
|
+
security: string | null;
|
317
|
+
port: number | null;
|
318
|
+
rawInbound?: unknown;
|
319
|
+
}[];
|
320
|
+
};
|
274
321
|
providerUuid: string | null;
|
275
|
-
provider: {
|
276
|
-
uuid: string;
|
277
|
-
createdAt: string;
|
278
|
-
updatedAt: string;
|
279
|
-
name: string;
|
280
|
-
faviconLink: string | null;
|
281
|
-
loginUrl: string | null;
|
282
|
-
} | null;
|
283
322
|
}[];
|
284
323
|
}>;
|
285
324
|
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"}
|