@remnawave/backend-contract 2.0.0-alpha.3 → 2.0.0-alpha.30
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/index.d.ts +1 -0
- package/build/backend/api/controllers/index.d.ts.map +1 -1
- package/build/backend/api/controllers/index.js +1 -0
- package/build/backend/api/controllers/infra-billing.d.ts +16 -0
- package/build/backend/api/controllers/infra-billing.d.ts.map +1 -0
- package/build/backend/api/controllers/infra-billing.js +18 -0
- 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/users.d.ts +1 -0
- package/build/backend/api/controllers/users.d.ts.map +1 -1
- package/build/backend/api/controllers/users.js +1 -0
- package/build/backend/api/routes.d.ts +19 -0
- package/build/backend/api/routes.d.ts.map +1 -1
- package/build/backend/api/routes.js +19 -0
- package/build/backend/commands/config-profiles/create-config-profile.command.js +2 -2
- package/build/backend/commands/hosts/bulk/delete-many-hosts.command.d.ts +31 -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 +31 -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 +31 -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 +31 -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 +31 -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 +52 -19
- package/build/backend/commands/hosts/create.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/create.command.js +13 -13
- package/build/backend/commands/hosts/get-all.command.d.ts +31 -10
- package/build/backend/commands/hosts/get-all.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/get-one.command.d.ts +31 -10
- package/build/backend/commands/hosts/get-one.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/reorder.command.d.ts +11 -2
- package/build/backend/commands/hosts/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/update.command.d.ts +63 -21
- package/build/backend/commands/hosts/update.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/update.command.js +10 -11
- package/build/backend/commands/index.d.ts +1 -0
- package/build/backend/commands/index.d.ts.map +1 -1
- package/build/backend/commands/index.js +1 -0
- 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 +123 -0
- package/build/backend/commands/infra-billing/create-infra-provider.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/create-infra-provider.command.js +24 -0
- 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/delete-infra-provider-by-uuid.command.d.ts +33 -0
- package/build/backend/commands/infra-billing/delete-infra-provider-by-uuid.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/delete-infra-provider-by-uuid.command.js +20 -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 +117 -0
- package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.js +19 -0
- package/build/backend/commands/infra-billing/get-infra-providers.command.d.ts +156 -0
- package/build/backend/commands/infra-billing/get-infra-providers.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/get-infra-providers.command.js +19 -0
- package/build/backend/commands/infra-billing/index.d.ts +13 -0
- package/build/backend/commands/infra-billing/index.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/index.js +28 -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 +126 -0
- package/build/backend/commands/infra-billing/update-infra-provider.command.d.ts.map +1 -0
- package/build/backend/commands/infra-billing/update-infra-provider.command.js +26 -0
- 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/create-internal-squad.command.js +2 -2
- 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 +162 -64
- package/build/backend/commands/nodes/actions/disable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/enable.command.d.ts +162 -64
- package/build/backend/commands/nodes/actions/enable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/reorder.command.d.ts +236 -88
- package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.d.ts +183 -70
- package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.js +7 -4
- package/build/backend/commands/nodes/get-all.command.d.ts +162 -64
- package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-one.command.d.ts +162 -64
- 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 +257 -94
- package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/update.command.js +9 -4
- package/build/backend/commands/users/get-user-accessible-nodes.command.d.ts +114 -0
- package/build/backend/commands/users/get-user-accessible-nodes.command.d.ts.map +1 -0
- package/build/backend/commands/users/get-user-accessible-nodes.command.js +31 -0
- package/build/backend/commands/users/get-user-usage-by-range.command.d.ts +4 -4
- package/build/backend/commands/users/index.d.ts +1 -0
- package/build/backend/commands/users/index.d.ts.map +1 -1
- package/build/backend/commands/users/index.js +1 -0
- package/build/backend/constants/errors/errors.d.ts +95 -0
- package/build/backend/constants/errors/errors.d.ts.map +1 -1
- package/build/backend/constants/errors/errors.js +95 -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.contants.d.ts +3 -0
- package/build/backend/constants/headers/headers.contants.d.ts.map +1 -0
- package/build/backend/constants/headers/headers.contants.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 +1 -0
- package/build/backend/constants/index.d.ts.map +1 -1
- package/build/backend/constants/index.js +1 -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/{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 +21 -6
- package/build/backend/models/hosts.schema.d.ts.map +1 -1
- package/build/backend/models/hosts.schema.js +5 -2
- package/build/backend/models/index.d.ts +5 -1
- package/build/backend/models/index.d.ts.map +1 -1
- package/build/backend/models/index.js +5 -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 +87 -0
- package/build/backend/models/infra-provider.schema.d.ts.map +1 -0
- package/build/backend/models/infra-provider.schema.js +41 -0
- package/build/backend/models/nodes.schema.d.ts +118 -44
- package/build/backend/models/nodes.schema.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.js +8 -2
- package/build/frontend/api/controllers/index.js +1 -0
- package/build/frontend/api/controllers/infra-billing.js +18 -0
- package/build/frontend/api/controllers/internal-squads.js +5 -0
- package/build/frontend/api/controllers/users.js +1 -0
- package/build/frontend/api/routes.js +19 -0
- package/build/frontend/commands/config-profiles/create-config-profile.command.js +2 -2
- package/build/frontend/commands/hosts/create.command.js +13 -13
- package/build/frontend/commands/hosts/update.command.js +10 -11
- package/build/frontend/commands/index.js +1 -0
- 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 +24 -0
- 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/delete-infra-provider-by-uuid.command.js +20 -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/get-infra-provider-by-uuid.command.js +19 -0
- package/build/frontend/commands/infra-billing/get-infra-providers.command.js +19 -0
- package/build/frontend/commands/infra-billing/index.js +28 -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 +26 -0
- 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/create-internal-squad.command.js +2 -2
- package/build/frontend/commands/internal-squads/index.js +2 -1
- package/build/frontend/commands/nodes/create.command.js +7 -4
- package/build/frontend/commands/nodes/update.command.js +9 -4
- package/build/frontend/commands/users/get-user-accessible-nodes.command.js +31 -0
- package/build/frontend/commands/users/index.js +1 -0
- package/build/frontend/constants/errors/errors.js +95 -0
- package/build/frontend/constants/events/events.js +10 -0
- package/build/frontend/constants/headers/headers.contants.js +5 -0
- package/build/frontend/constants/headers/index.js +17 -0
- package/build/frontend/constants/index.js +1 -0
- package/build/frontend/constants/templates/template-keys.js +1 -0
- package/build/frontend/models/hosts.schema.js +5 -2
- package/build/frontend/models/index.js +5 -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 +41 -0
- package/build/frontend/models/nodes.schema.js +8 -2
- package/package.json +1 -1
- 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 ReorderNodeCommand {
|
|
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,84 @@ export declare namespace ReorderNodeCommand {
|
|
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
|
-
|
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">;
|
66
|
+
}, "strip", z.ZodTypeAny, {
|
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
|
+
}[];
|
78
|
+
}, {
|
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
|
+
}>;
|
91
|
+
providerUuid: z.ZodNullable<z.ZodString>;
|
92
|
+
provider: z.ZodNullable<z.ZodObject<{
|
37
93
|
uuid: z.ZodString;
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
port: z.ZodNullable<z.ZodNumber>;
|
44
|
-
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
94
|
+
name: z.ZodString;
|
95
|
+
faviconLink: z.ZodNullable<z.ZodString>;
|
96
|
+
loginUrl: z.ZodNullable<z.ZodString>;
|
97
|
+
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
98
|
+
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
45
99
|
}, "strip", z.ZodTypeAny, {
|
46
|
-
type: string;
|
47
100
|
uuid: string;
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
rawInbound?: unknown;
|
101
|
+
createdAt: Date;
|
102
|
+
updatedAt: Date;
|
103
|
+
name: string;
|
104
|
+
faviconLink: string | null;
|
105
|
+
loginUrl: string | null;
|
54
106
|
}, {
|
55
|
-
type: string;
|
56
107
|
uuid: string;
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
}>, "many">>;
|
108
|
+
createdAt: string;
|
109
|
+
updatedAt: string;
|
110
|
+
name: string;
|
111
|
+
faviconLink: string | null;
|
112
|
+
loginUrl: string | null;
|
113
|
+
}>>;
|
64
114
|
}, "uuid" | "viewPosition">, "strip", z.ZodTypeAny, {
|
65
115
|
uuid: string;
|
66
116
|
viewPosition: number;
|
@@ -94,6 +144,7 @@ export declare namespace ReorderNodeCommand {
|
|
94
144
|
lastStatusChange: z.ZodNullable<z.ZodEffects<z.ZodString, Date, string>>;
|
95
145
|
lastStatusMessage: z.ZodNullable<z.ZodString>;
|
96
146
|
xrayVersion: z.ZodNullable<z.ZodString>;
|
147
|
+
nodeVersion: z.ZodNullable<z.ZodString>;
|
97
148
|
xrayUptime: z.ZodString;
|
98
149
|
isTrafficTrackingActive: z.ZodBoolean;
|
99
150
|
trafficResetDay: z.ZodNullable<z.ZodNumber>;
|
@@ -109,35 +160,84 @@ export declare namespace ReorderNodeCommand {
|
|
109
160
|
totalRam: z.ZodNullable<z.ZodString>;
|
110
161
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
111
162
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
112
|
-
|
113
|
-
|
163
|
+
configProfile: z.ZodObject<{
|
164
|
+
activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
|
165
|
+
activeInbounds: z.ZodArray<z.ZodObject<{
|
166
|
+
uuid: z.ZodString;
|
167
|
+
profileUuid: z.ZodString;
|
168
|
+
tag: z.ZodString;
|
169
|
+
type: z.ZodString;
|
170
|
+
network: z.ZodNullable<z.ZodString>;
|
171
|
+
security: z.ZodNullable<z.ZodString>;
|
172
|
+
port: z.ZodNullable<z.ZodNumber>;
|
173
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
174
|
+
}, "strip", z.ZodTypeAny, {
|
175
|
+
type: string;
|
176
|
+
uuid: string;
|
177
|
+
profileUuid: string;
|
178
|
+
tag: string;
|
179
|
+
network: string | null;
|
180
|
+
security: string | null;
|
181
|
+
port: number | null;
|
182
|
+
rawInbound?: unknown;
|
183
|
+
}, {
|
184
|
+
type: string;
|
185
|
+
uuid: string;
|
186
|
+
profileUuid: string;
|
187
|
+
tag: string;
|
188
|
+
network: string | null;
|
189
|
+
security: string | null;
|
190
|
+
port: number | null;
|
191
|
+
rawInbound?: unknown;
|
192
|
+
}>, "many">;
|
193
|
+
}, "strip", z.ZodTypeAny, {
|
194
|
+
activeConfigProfileUuid: string | null;
|
195
|
+
activeInbounds: {
|
196
|
+
type: string;
|
197
|
+
uuid: string;
|
198
|
+
profileUuid: string;
|
199
|
+
tag: string;
|
200
|
+
network: string | null;
|
201
|
+
security: string | null;
|
202
|
+
port: number | null;
|
203
|
+
rawInbound?: unknown;
|
204
|
+
}[];
|
205
|
+
}, {
|
206
|
+
activeConfigProfileUuid: string | null;
|
207
|
+
activeInbounds: {
|
208
|
+
type: string;
|
209
|
+
uuid: string;
|
210
|
+
profileUuid: string;
|
211
|
+
tag: string;
|
212
|
+
network: string | null;
|
213
|
+
security: string | null;
|
214
|
+
port: number | null;
|
215
|
+
rawInbound?: unknown;
|
216
|
+
}[];
|
217
|
+
}>;
|
218
|
+
providerUuid: z.ZodNullable<z.ZodString>;
|
219
|
+
provider: z.ZodNullable<z.ZodObject<{
|
114
220
|
uuid: z.ZodString;
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
port: z.ZodNullable<z.ZodNumber>;
|
121
|
-
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
221
|
+
name: z.ZodString;
|
222
|
+
faviconLink: z.ZodNullable<z.ZodString>;
|
223
|
+
loginUrl: z.ZodNullable<z.ZodString>;
|
224
|
+
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
225
|
+
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
122
226
|
}, "strip", z.ZodTypeAny, {
|
123
|
-
type: string;
|
124
227
|
uuid: string;
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
rawInbound?: unknown;
|
228
|
+
createdAt: Date;
|
229
|
+
updatedAt: Date;
|
230
|
+
name: string;
|
231
|
+
faviconLink: string | null;
|
232
|
+
loginUrl: string | null;
|
131
233
|
}, {
|
132
|
-
type: string;
|
133
234
|
uuid: string;
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
}>, "many">>;
|
235
|
+
createdAt: string;
|
236
|
+
updatedAt: string;
|
237
|
+
name: string;
|
238
|
+
faviconLink: string | null;
|
239
|
+
loginUrl: string | null;
|
240
|
+
}>>;
|
141
241
|
}, "strip", z.ZodTypeAny, {
|
142
242
|
uuid: string;
|
143
243
|
createdAt: Date;
|
@@ -156,6 +256,7 @@ export declare namespace ReorderNodeCommand {
|
|
156
256
|
lastStatusChange: Date | null;
|
157
257
|
lastStatusMessage: string | null;
|
158
258
|
xrayVersion: string | null;
|
259
|
+
nodeVersion: string | null;
|
159
260
|
xrayUptime: string;
|
160
261
|
isTrafficTrackingActive: boolean;
|
161
262
|
trafficResetDay: number | null;
|
@@ -166,17 +267,28 @@ export declare namespace ReorderNodeCommand {
|
|
166
267
|
cpuCount: number | null;
|
167
268
|
cpuModel: string | null;
|
168
269
|
totalRam: string | null;
|
169
|
-
|
170
|
-
|
171
|
-
|
270
|
+
configProfile: {
|
271
|
+
activeConfigProfileUuid: string | null;
|
272
|
+
activeInbounds: {
|
273
|
+
type: string;
|
274
|
+
uuid: string;
|
275
|
+
profileUuid: string;
|
276
|
+
tag: string;
|
277
|
+
network: string | null;
|
278
|
+
security: string | null;
|
279
|
+
port: number | null;
|
280
|
+
rawInbound?: unknown;
|
281
|
+
}[];
|
282
|
+
};
|
283
|
+
providerUuid: string | null;
|
284
|
+
provider: {
|
172
285
|
uuid: string;
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
}[] | null;
|
286
|
+
createdAt: Date;
|
287
|
+
updatedAt: Date;
|
288
|
+
name: string;
|
289
|
+
faviconLink: string | null;
|
290
|
+
loginUrl: string | null;
|
291
|
+
} | null;
|
180
292
|
}, {
|
181
293
|
uuid: string;
|
182
294
|
createdAt: string;
|
@@ -195,6 +307,7 @@ export declare namespace ReorderNodeCommand {
|
|
195
307
|
lastStatusChange: string | null;
|
196
308
|
lastStatusMessage: string | null;
|
197
309
|
xrayVersion: string | null;
|
310
|
+
nodeVersion: string | null;
|
198
311
|
xrayUptime: string;
|
199
312
|
isTrafficTrackingActive: boolean;
|
200
313
|
trafficResetDay: number | null;
|
@@ -205,17 +318,28 @@ export declare namespace ReorderNodeCommand {
|
|
205
318
|
cpuCount: number | null;
|
206
319
|
cpuModel: string | null;
|
207
320
|
totalRam: string | null;
|
208
|
-
|
209
|
-
|
210
|
-
|
321
|
+
configProfile: {
|
322
|
+
activeConfigProfileUuid: string | null;
|
323
|
+
activeInbounds: {
|
324
|
+
type: string;
|
325
|
+
uuid: string;
|
326
|
+
profileUuid: string;
|
327
|
+
tag: string;
|
328
|
+
network: string | null;
|
329
|
+
security: string | null;
|
330
|
+
port: number | null;
|
331
|
+
rawInbound?: unknown;
|
332
|
+
}[];
|
333
|
+
};
|
334
|
+
providerUuid: string | null;
|
335
|
+
provider: {
|
211
336
|
uuid: string;
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
}[] | null;
|
337
|
+
createdAt: string;
|
338
|
+
updatedAt: string;
|
339
|
+
name: string;
|
340
|
+
faviconLink: string | null;
|
341
|
+
loginUrl: string | null;
|
342
|
+
} | null;
|
219
343
|
}>, "many">;
|
220
344
|
}, "strip", z.ZodTypeAny, {
|
221
345
|
response: {
|
@@ -236,6 +360,7 @@ export declare namespace ReorderNodeCommand {
|
|
236
360
|
lastStatusChange: Date | null;
|
237
361
|
lastStatusMessage: string | null;
|
238
362
|
xrayVersion: string | null;
|
363
|
+
nodeVersion: string | null;
|
239
364
|
xrayUptime: string;
|
240
365
|
isTrafficTrackingActive: boolean;
|
241
366
|
trafficResetDay: number | null;
|
@@ -246,17 +371,28 @@ export declare namespace ReorderNodeCommand {
|
|
246
371
|
cpuCount: number | null;
|
247
372
|
cpuModel: string | null;
|
248
373
|
totalRam: string | null;
|
249
|
-
|
250
|
-
|
251
|
-
|
374
|
+
configProfile: {
|
375
|
+
activeConfigProfileUuid: string | null;
|
376
|
+
activeInbounds: {
|
377
|
+
type: string;
|
378
|
+
uuid: string;
|
379
|
+
profileUuid: string;
|
380
|
+
tag: string;
|
381
|
+
network: string | null;
|
382
|
+
security: string | null;
|
383
|
+
port: number | null;
|
384
|
+
rawInbound?: unknown;
|
385
|
+
}[];
|
386
|
+
};
|
387
|
+
providerUuid: string | null;
|
388
|
+
provider: {
|
252
389
|
uuid: string;
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
}[] | null;
|
390
|
+
createdAt: Date;
|
391
|
+
updatedAt: Date;
|
392
|
+
name: string;
|
393
|
+
faviconLink: string | null;
|
394
|
+
loginUrl: string | null;
|
395
|
+
} | null;
|
260
396
|
}[];
|
261
397
|
}, {
|
262
398
|
response: {
|
@@ -277,6 +413,7 @@ export declare namespace ReorderNodeCommand {
|
|
277
413
|
lastStatusChange: string | null;
|
278
414
|
lastStatusMessage: string | null;
|
279
415
|
xrayVersion: string | null;
|
416
|
+
nodeVersion: string | null;
|
280
417
|
xrayUptime: string;
|
281
418
|
isTrafficTrackingActive: boolean;
|
282
419
|
trafficResetDay: number | null;
|
@@ -287,17 +424,28 @@ export declare namespace ReorderNodeCommand {
|
|
287
424
|
cpuCount: number | null;
|
288
425
|
cpuModel: string | null;
|
289
426
|
totalRam: string | null;
|
290
|
-
|
291
|
-
|
292
|
-
|
427
|
+
configProfile: {
|
428
|
+
activeConfigProfileUuid: string | null;
|
429
|
+
activeInbounds: {
|
430
|
+
type: string;
|
431
|
+
uuid: string;
|
432
|
+
profileUuid: string;
|
433
|
+
tag: string;
|
434
|
+
network: string | null;
|
435
|
+
security: string | null;
|
436
|
+
port: number | null;
|
437
|
+
rawInbound?: unknown;
|
438
|
+
}[];
|
439
|
+
};
|
440
|
+
providerUuid: string | null;
|
441
|
+
provider: {
|
293
442
|
uuid: string;
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
}[] | null;
|
443
|
+
createdAt: string;
|
444
|
+
updatedAt: string;
|
445
|
+
name: string;
|
446
|
+
faviconLink: string | null;
|
447
|
+
loginUrl: string | null;
|
448
|
+
} | null;
|
301
449
|
}[];
|
302
450
|
}>;
|
303
451
|
type Response = z.infer<typeof ResponseSchema>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"reorder.command.d.ts","sourceRoot":"","sources":["../../../../../commands/nodes/actions/reorder.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,8BAAiC,CAAC;IAC3C,MAAM,OAAO,8BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa
|
1
|
+
{"version":3,"file":"reorder.command.d.ts","sourceRoot":"","sources":["../../../../../commands/nodes/actions/reorder.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,8BAAiC,CAAC;IAC3C,MAAM,OAAO,8BAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAOxB,CAAC;IACH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|