@remnawave/backend-contract 0.7.26 → 2.0.0-alpha.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/config-profiles.d.ts +11 -0
- package/build/backend/api/controllers/config-profiles.d.ts.map +1 -0
- package/build/backend/api/controllers/config-profiles.js +13 -0
- package/build/backend/api/controllers/index.d.ts +2 -2
- package/build/backend/api/controllers/index.d.ts.map +1 -1
- package/build/backend/api/controllers/index.js +2 -2
- package/build/backend/api/controllers/internal-squads.d.ts +9 -0
- package/build/backend/api/controllers/internal-squads.d.ts.map +1 -0
- package/build/backend/api/controllers/internal-squads.js +11 -0
- package/build/backend/api/controllers/users.d.ts +1 -2
- package/build/backend/api/controllers/users.d.ts.map +1 -1
- package/build/backend/api/controllers/users.js +1 -2
- package/build/backend/api/routes.d.ts +17 -16
- package/build/backend/api/routes.d.ts.map +1 -1
- package/build/backend/api/routes.js +17 -16
- package/build/backend/commands/config-profiles/create-config-profile.command.d.ts +154 -0
- package/build/backend/commands/config-profiles/create-config-profile.command.d.ts.map +1 -0
- package/build/backend/commands/config-profiles/create-config-profile.command.js +24 -0
- package/build/backend/commands/config-profiles/delete-config-profile.command.d.ts +33 -0
- package/build/backend/commands/config-profiles/delete-config-profile.command.d.ts.map +1 -0
- package/build/backend/commands/config-profiles/delete-config-profile.command.js +20 -0
- package/build/backend/commands/config-profiles/get-all-inbounds.command.d.ts +86 -0
- package/build/backend/commands/config-profiles/get-all-inbounds.command.d.ts.map +1 -0
- package/build/backend/commands/config-profiles/get-all-inbounds.command.js +19 -0
- package/build/backend/commands/config-profiles/get-config-profile-by-uuid.command.d.ts +147 -0
- package/build/backend/commands/config-profiles/get-config-profile-by-uuid.command.d.ts.map +1 -0
- package/build/backend/commands/config-profiles/get-config-profile-by-uuid.command.js +19 -0
- package/build/backend/commands/config-profiles/get-config-profiles.command.d.ts +194 -0
- package/build/backend/commands/config-profiles/get-config-profiles.command.d.ts.map +1 -0
- package/build/backend/commands/config-profiles/get-config-profiles.command.js +19 -0
- package/build/backend/commands/config-profiles/get-inbounds-by-profile-uuid.command.d.ts +94 -0
- package/build/backend/commands/config-profiles/get-inbounds-by-profile-uuid.command.d.ts.map +1 -0
- package/build/backend/commands/config-profiles/get-inbounds-by-profile-uuid.command.js +22 -0
- package/build/backend/commands/config-profiles/index.d.ts +8 -0
- package/build/backend/commands/config-profiles/index.d.ts.map +1 -0
- package/build/backend/commands/{inbounds/bulk → config-profiles}/index.js +7 -4
- package/build/backend/commands/config-profiles/update-config-profile.command.d.ts +154 -0
- package/build/backend/commands/config-profiles/update-config-profile.command.d.ts.map +1 -0
- package/build/backend/commands/config-profiles/update-config-profile.command.js +20 -0
- package/build/backend/commands/hosts/bulk/delete-many-hosts.command.d.ts +10 -10
- package/build/backend/commands/hosts/bulk/disable-many-hosts.command.d.ts +10 -10
- package/build/backend/commands/hosts/bulk/enable-many-hosts.command.d.ts +10 -10
- package/build/backend/commands/hosts/bulk/set-inbound-to-many-hosts.command.d.ts +16 -13
- package/build/backend/commands/hosts/bulk/set-inbound-to-many-hosts.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/bulk/set-inbound-to-many-hosts.command.js +2 -1
- package/build/backend/commands/hosts/bulk/set-port-to-many-hosts.command.d.ts +10 -10
- package/build/backend/commands/hosts/create.command.d.ts +18 -15
- package/build/backend/commands/hosts/create.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/create.command.js +6 -1
- package/build/backend/commands/hosts/get-all.command.d.ts +10 -10
- package/build/backend/commands/hosts/get-one.command.d.ts +10 -10
- package/build/backend/commands/hosts/reorder.command.d.ts +2 -2
- package/build/backend/commands/hosts/update.command.d.ts +20 -17
- package/build/backend/commands/hosts/update.command.d.ts.map +1 -1
- package/build/backend/commands/hosts/update.command.js +7 -1
- package/build/backend/commands/index.d.ts +2 -2
- package/build/backend/commands/index.d.ts.map +1 -1
- package/build/backend/commands/index.js +2 -2
- package/build/backend/commands/internal-squads/create-internal-squad.command.d.ts +138 -0
- package/build/backend/commands/internal-squads/create-internal-squad.command.d.ts.map +1 -0
- package/build/backend/commands/internal-squads/create-internal-squad.command.js +24 -0
- package/build/backend/commands/internal-squads/delete-internal-squad.command.d.ts +33 -0
- package/build/backend/commands/internal-squads/delete-internal-squad.command.d.ts.map +1 -0
- package/build/backend/commands/internal-squads/delete-internal-squad.command.js +20 -0
- package/build/backend/commands/internal-squads/get-internal-squad-by-uuid..d.ts +135 -0
- package/build/backend/commands/internal-squads/get-internal-squad-by-uuid..d.ts.map +1 -0
- package/build/backend/commands/internal-squads/get-internal-squad-by-uuid..js +19 -0
- package/build/backend/commands/internal-squads/get-internal-squads.command.d.ts +178 -0
- package/build/backend/commands/internal-squads/get-internal-squads.command.d.ts.map +1 -0
- package/build/backend/commands/internal-squads/get-internal-squads.command.js +19 -0
- package/build/backend/commands/internal-squads/index.d.ts +6 -0
- package/build/backend/commands/internal-squads/index.d.ts.map +1 -0
- package/build/backend/commands/{xray → internal-squads}/index.js +5 -2
- package/build/backend/commands/internal-squads/update-internal-squad.command.d.ts +138 -0
- package/build/backend/commands/internal-squads/update-internal-squad.command.d.ts.map +1 -0
- package/build/backend/commands/internal-squads/update-internal-squad.command.js +20 -0
- package/build/backend/commands/nodes/actions/disable.command.d.ts +41 -22
- package/build/backend/commands/nodes/actions/disable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/enable.command.d.ts +41 -22
- package/build/backend/commands/nodes/actions/enable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/reorder.command.d.ts +50 -24
- package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.d.ts +53 -31
- package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.js +4 -3
- package/build/backend/commands/nodes/get-all.command.d.ts +41 -22
- package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-one.command.d.ts +41 -22
- package/build/backend/commands/nodes/get-one.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/stats/get-realtime-usage.command.d.ts +4 -4
- package/build/backend/commands/nodes/update.command.d.ts +62 -33
- package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/update.command.js +4 -3
- package/build/backend/commands/users/actions/disable-user.command.d.ts +12 -38
- package/build/backend/commands/users/actions/disable-user.command.d.ts.map +1 -1
- package/build/backend/commands/users/actions/enable-user.command.d.ts +12 -38
- package/build/backend/commands/users/actions/enable-user.command.d.ts.map +1 -1
- package/build/backend/commands/users/actions/index.d.ts +0 -1
- package/build/backend/commands/users/actions/index.d.ts.map +1 -1
- package/build/backend/commands/users/actions/index.js +0 -1
- package/build/backend/commands/users/actions/reset-user-traffic.command.d.ts +12 -38
- package/build/backend/commands/users/actions/reset-user-traffic.command.d.ts.map +1 -1
- package/build/backend/commands/users/actions/revoke-user-subscription.command.d.ts +12 -38
- package/build/backend/commands/users/actions/revoke-user-subscription.command.d.ts.map +1 -1
- package/build/backend/commands/users/bulk/{bulk-update-users-inbounds.command.d.ts → bulk-update-users-squads.command.d.ts} +7 -7
- package/build/backend/commands/users/bulk/bulk-update-users-squads.command.d.ts.map +1 -0
- package/build/backend/commands/users/bulk/bulk-update-users-squads.command.js +23 -0
- package/build/backend/commands/users/bulk/index.d.ts +1 -1
- package/build/backend/commands/users/bulk/index.d.ts.map +1 -1
- package/build/backend/commands/users/bulk/index.js +1 -1
- package/build/backend/commands/users/create-user.command.d.ts +15 -47
- package/build/backend/commands/users/create-user.command.d.ts.map +1 -1
- package/build/backend/commands/users/create-user.command.js +5 -16
- package/build/backend/commands/users/get-all-users.command.d.ts +16 -50
- package/build/backend/commands/users/get-all-users.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-by/get-user-by-email.command.d.ts +12 -38
- package/build/backend/commands/users/get-by/get-user-by-email.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-by/get-user-by-short-uuid.command.d.ts +12 -38
- package/build/backend/commands/users/get-by/get-user-by-short-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-by/get-user-by-tag.command.d.ts +12 -38
- package/build/backend/commands/users/get-by/get-user-by-tag.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-by/get-user-by-telegram-id.command.d.ts +12 -38
- package/build/backend/commands/users/get-by/get-user-by-telegram-id.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-by/get-user-by-username.command.d.ts +12 -38
- package/build/backend/commands/users/get-by/get-user-by-username.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-by/index.d.ts +0 -1
- package/build/backend/commands/users/get-by/index.d.ts.map +1 -1
- package/build/backend/commands/users/get-by/index.js +0 -1
- package/build/backend/commands/users/get-user-by-uuid.command.d.ts +12 -38
- package/build/backend/commands/users/get-user-by-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/users/update-user.command.d.ts +19 -55
- package/build/backend/commands/users/update-user.command.d.ts.map +1 -1
- package/build/backend/commands/users/update-user.command.js +5 -5
- package/build/backend/constants/errors/errors.d.ts +80 -0
- package/build/backend/constants/errors/errors.d.ts.map +1 -1
- package/build/backend/constants/errors/errors.js +80 -0
- package/build/backend/models/base-internal-squad.schema.d.ts +12 -0
- package/build/backend/models/base-internal-squad.schema.d.ts.map +1 -0
- package/build/backend/models/base-internal-squad.schema.js +8 -0
- package/build/backend/models/{inbounds.schema.d.ts → config-profile-inbounds.schema.d.ts} +8 -2
- package/build/backend/models/config-profile-inbounds.schema.d.ts.map +1 -0
- package/build/backend/models/{inbounds.schema.js → config-profile-inbounds.schema.js} +4 -2
- package/build/backend/models/config-profile.schema.d.ts +87 -0
- package/build/backend/models/config-profile.schema.d.ts.map +1 -0
- package/build/backend/models/config-profile.schema.js +24 -0
- package/build/backend/models/extented-users.schema.d.ts +8 -26
- package/build/backend/models/extented-users.schema.d.ts.map +1 -1
- package/build/backend/models/hosts.schema.d.ts +6 -6
- package/build/backend/models/hosts.schema.d.ts.map +1 -1
- package/build/backend/models/hosts.schema.js +2 -2
- package/build/backend/models/index.d.ts +4 -2
- package/build/backend/models/index.d.ts.map +1 -1
- package/build/backend/models/index.js +4 -2
- package/build/backend/models/internal-squad.schema.d.ts +79 -0
- package/build/backend/models/internal-squad.schema.d.ts.map +1 -0
- package/build/backend/models/internal-squad.schema.js +22 -0
- package/build/backend/models/nodes.schema.d.ts +25 -12
- package/build/backend/models/nodes.schema.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.js +3 -2
- package/build/backend/models/users.schema.d.ts +8 -26
- package/build/backend/models/users.schema.d.ts.map +1 -1
- package/build/backend/models/users.schema.js +2 -3
- package/build/frontend/api/controllers/config-profiles.js +13 -0
- package/build/frontend/api/controllers/index.js +2 -2
- package/build/frontend/api/controllers/internal-squads.js +11 -0
- package/build/frontend/api/controllers/users.js +1 -2
- package/build/frontend/api/routes.js +17 -16
- package/build/frontend/commands/config-profiles/create-config-profile.command.js +24 -0
- package/build/frontend/commands/config-profiles/delete-config-profile.command.js +20 -0
- package/build/frontend/commands/config-profiles/get-all-inbounds.command.js +19 -0
- package/build/frontend/commands/config-profiles/get-config-profile-by-uuid.command.js +19 -0
- package/build/frontend/commands/config-profiles/get-config-profiles.command.js +19 -0
- package/build/frontend/commands/config-profiles/get-inbounds-by-profile-uuid.command.js +22 -0
- package/build/frontend/commands/{inbounds/bulk → config-profiles}/index.js +7 -4
- package/build/frontend/commands/config-profiles/update-config-profile.command.js +20 -0
- package/build/frontend/commands/hosts/bulk/set-inbound-to-many-hosts.command.js +2 -1
- package/build/frontend/commands/hosts/create.command.js +6 -1
- package/build/frontend/commands/hosts/update.command.js +7 -1
- package/build/frontend/commands/index.js +2 -2
- package/build/frontend/commands/internal-squads/create-internal-squad.command.js +24 -0
- package/build/frontend/commands/internal-squads/delete-internal-squad.command.js +20 -0
- package/build/frontend/commands/internal-squads/get-internal-squad-by-uuid..js +19 -0
- package/build/frontend/commands/internal-squads/get-internal-squads.command.js +19 -0
- package/build/{backend/commands/inbounds → frontend/commands/internal-squads}/index.js +5 -3
- package/build/frontend/commands/internal-squads/update-internal-squad.command.js +20 -0
- package/build/frontend/commands/nodes/create.command.js +4 -3
- package/build/frontend/commands/nodes/update.command.js +4 -3
- package/build/frontend/commands/users/actions/index.js +0 -1
- package/build/frontend/commands/users/bulk/bulk-update-users-squads.command.js +23 -0
- package/build/frontend/commands/users/bulk/index.js +1 -1
- package/build/frontend/commands/users/create-user.command.js +5 -16
- package/build/frontend/commands/users/get-by/index.js +0 -1
- package/build/frontend/commands/users/update-user.command.js +5 -5
- package/build/frontend/constants/errors/errors.js +80 -0
- package/build/frontend/models/base-internal-squad.schema.js +8 -0
- package/build/frontend/models/{inbounds.schema.js → config-profile-inbounds.schema.js} +4 -2
- package/build/frontend/models/config-profile.schema.js +24 -0
- package/build/frontend/models/hosts.schema.js +2 -2
- package/build/frontend/models/index.js +4 -2
- package/build/frontend/models/internal-squad.schema.js +22 -0
- package/build/frontend/models/nodes.schema.js +3 -2
- package/build/frontend/models/users.schema.js +2 -3
- package/package.json +1 -1
- package/build/backend/api/controllers/inbounds.d.ts +0 -12
- package/build/backend/api/controllers/inbounds.d.ts.map +0 -1
- package/build/backend/api/controllers/inbounds.js +0 -14
- package/build/backend/api/controllers/xray.d.ts +0 -6
- package/build/backend/api/controllers/xray.d.ts.map +0 -1
- package/build/backend/api/controllers/xray.js +0 -8
- package/build/backend/commands/inbounds/bulk/add-inbound-to-nodes.command.d.ts +0 -33
- package/build/backend/commands/inbounds/bulk/add-inbound-to-nodes.command.d.ts.map +0 -1
- package/build/backend/commands/inbounds/bulk/add-inbound-to-nodes.command.js +0 -24
- package/build/backend/commands/inbounds/bulk/add-inbound-to-users.command.d.ts +0 -33
- package/build/backend/commands/inbounds/bulk/add-inbound-to-users.command.d.ts.map +0 -1
- package/build/backend/commands/inbounds/bulk/add-inbound-to-users.command.js +0 -24
- package/build/backend/commands/inbounds/bulk/index.d.ts +0 -5
- package/build/backend/commands/inbounds/bulk/index.d.ts.map +0 -1
- package/build/backend/commands/inbounds/bulk/remove-inbound-from-nodes.command.d.ts +0 -33
- package/build/backend/commands/inbounds/bulk/remove-inbound-from-nodes.command.d.ts.map +0 -1
- package/build/backend/commands/inbounds/bulk/remove-inbound-from-nodes.command.js +0 -24
- package/build/backend/commands/inbounds/bulk/remove-inbound-from-users.command.d.ts +0 -33
- package/build/backend/commands/inbounds/bulk/remove-inbound-from-users.command.d.ts.map +0 -1
- package/build/backend/commands/inbounds/bulk/remove-inbound-from-users.command.js +0 -24
- package/build/backend/commands/inbounds/get-full-inbounds.command.d.ts +0 -115
- package/build/backend/commands/inbounds/get-full-inbounds.command.d.ts.map +0 -1
- package/build/backend/commands/inbounds/get-full-inbounds.command.js +0 -16
- package/build/backend/commands/inbounds/get-inbounds.command.d.ts +0 -50
- package/build/backend/commands/inbounds/get-inbounds.command.d.ts.map +0 -1
- package/build/backend/commands/inbounds/get-inbounds.command.js +0 -22
- package/build/backend/commands/inbounds/index.d.ts +0 -4
- package/build/backend/commands/inbounds/index.d.ts.map +0 -1
- package/build/backend/commands/users/actions/activate-all-inbounds.command.d.ts +0 -271
- package/build/backend/commands/users/actions/activate-all-inbounds.command.d.ts.map +0 -1
- package/build/backend/commands/users/actions/activate-all-inbounds.command.js +0 -19
- package/build/backend/commands/users/bulk/bulk-update-users-inbounds.command.d.ts.map +0 -1
- package/build/backend/commands/users/bulk/bulk-update-users-inbounds.command.js +0 -23
- package/build/backend/commands/users/get-by/get-user-by-subscription-uuid.command.d.ts +0 -271
- package/build/backend/commands/users/get-by/get-user-by-subscription-uuid.command.d.ts.map +0 -1
- package/build/backend/commands/users/get-by/get-user-by-subscription-uuid.command.js +0 -19
- package/build/backend/commands/xray/get-config.command.d.ts +0 -25
- package/build/backend/commands/xray/get-config.command.d.ts.map +0 -1
- package/build/backend/commands/xray/get-config.command.js +0 -17
- package/build/backend/commands/xray/index.d.ts +0 -3
- package/build/backend/commands/xray/index.d.ts.map +0 -1
- package/build/backend/commands/xray/update-config.command.d.ts +0 -27
- package/build/backend/commands/xray/update-config.command.d.ts.map +0 -1
- package/build/backend/commands/xray/update-config.command.js +0 -18
- package/build/backend/models/full-inbounds.schema.d.ts +0 -67
- package/build/backend/models/full-inbounds.schema.d.ts.map +0 -1
- package/build/backend/models/full-inbounds.schema.js +0 -21
- package/build/backend/models/inbounds.schema.d.ts.map +0 -1
- package/build/frontend/api/controllers/inbounds.js +0 -14
- package/build/frontend/api/controllers/xray.js +0 -8
- package/build/frontend/commands/inbounds/bulk/add-inbound-to-nodes.command.js +0 -24
- package/build/frontend/commands/inbounds/bulk/add-inbound-to-users.command.js +0 -24
- package/build/frontend/commands/inbounds/bulk/remove-inbound-from-nodes.command.js +0 -24
- package/build/frontend/commands/inbounds/bulk/remove-inbound-from-users.command.js +0 -24
- package/build/frontend/commands/inbounds/get-full-inbounds.command.js +0 -16
- package/build/frontend/commands/inbounds/get-inbounds.command.js +0 -22
- package/build/frontend/commands/inbounds/index.js +0 -19
- package/build/frontend/commands/users/actions/activate-all-inbounds.command.js +0 -19
- package/build/frontend/commands/users/bulk/bulk-update-users-inbounds.command.js +0 -23
- package/build/frontend/commands/users/get-by/get-user-by-subscription-uuid.command.js +0 -19
- package/build/frontend/commands/xray/get-config.command.js +0 -17
- package/build/frontend/commands/xray/index.js +0 -18
- package/build/frontend/commands/xray/update-config.command.js +0 -18
- package/build/frontend/models/full-inbounds.schema.js +0 -21
@@ -0,0 +1,138 @@
|
|
1
|
+
import { z } from 'zod';
|
2
|
+
export declare namespace UpdateInternalSquadCommand {
|
3
|
+
const url: "/api/internal-squads/";
|
4
|
+
const TSQ_url: "/api/internal-squads/";
|
5
|
+
const endpointDetails: import("../../constants").EndpointDetails;
|
6
|
+
const RequestSchema: z.ZodObject<{
|
7
|
+
uuid: z.ZodString;
|
8
|
+
inbounds: z.ZodArray<z.ZodString, "many">;
|
9
|
+
}, "strip", z.ZodTypeAny, {
|
10
|
+
inbounds: string[];
|
11
|
+
uuid: string;
|
12
|
+
}, {
|
13
|
+
inbounds: string[];
|
14
|
+
uuid: string;
|
15
|
+
}>;
|
16
|
+
type Request = z.infer<typeof RequestSchema>;
|
17
|
+
const ResponseSchema: z.ZodObject<{
|
18
|
+
response: z.ZodObject<{
|
19
|
+
uuid: z.ZodString;
|
20
|
+
name: z.ZodString;
|
21
|
+
info: z.ZodObject<{
|
22
|
+
membersCount: z.ZodNumber;
|
23
|
+
inboundsCount: z.ZodNumber;
|
24
|
+
}, "strip", z.ZodTypeAny, {
|
25
|
+
membersCount: number;
|
26
|
+
inboundsCount: number;
|
27
|
+
}, {
|
28
|
+
membersCount: number;
|
29
|
+
inboundsCount: number;
|
30
|
+
}>;
|
31
|
+
inbounds: z.ZodArray<z.ZodObject<{
|
32
|
+
uuid: z.ZodString;
|
33
|
+
profileUuid: z.ZodString;
|
34
|
+
tag: z.ZodString;
|
35
|
+
type: z.ZodString;
|
36
|
+
network: z.ZodNullable<z.ZodString>;
|
37
|
+
security: z.ZodNullable<z.ZodString>;
|
38
|
+
port: z.ZodNullable<z.ZodNumber>;
|
39
|
+
}, "strip", z.ZodTypeAny, {
|
40
|
+
type: string;
|
41
|
+
uuid: string;
|
42
|
+
profileUuid: string;
|
43
|
+
tag: string;
|
44
|
+
network: string | null;
|
45
|
+
security: string | null;
|
46
|
+
port: number | null;
|
47
|
+
}, {
|
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
|
+
}>, "many">;
|
56
|
+
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
57
|
+
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
58
|
+
}, "strip", z.ZodTypeAny, {
|
59
|
+
inbounds: {
|
60
|
+
type: string;
|
61
|
+
uuid: string;
|
62
|
+
profileUuid: string;
|
63
|
+
tag: string;
|
64
|
+
network: string | null;
|
65
|
+
security: string | null;
|
66
|
+
port: number | null;
|
67
|
+
}[];
|
68
|
+
uuid: string;
|
69
|
+
createdAt: Date;
|
70
|
+
updatedAt: Date;
|
71
|
+
name: string;
|
72
|
+
info: {
|
73
|
+
membersCount: number;
|
74
|
+
inboundsCount: number;
|
75
|
+
};
|
76
|
+
}, {
|
77
|
+
inbounds: {
|
78
|
+
type: string;
|
79
|
+
uuid: string;
|
80
|
+
profileUuid: string;
|
81
|
+
tag: string;
|
82
|
+
network: string | null;
|
83
|
+
security: string | null;
|
84
|
+
port: number | null;
|
85
|
+
}[];
|
86
|
+
uuid: string;
|
87
|
+
createdAt: string;
|
88
|
+
updatedAt: string;
|
89
|
+
name: string;
|
90
|
+
info: {
|
91
|
+
membersCount: number;
|
92
|
+
inboundsCount: number;
|
93
|
+
};
|
94
|
+
}>;
|
95
|
+
}, "strip", z.ZodTypeAny, {
|
96
|
+
response: {
|
97
|
+
inbounds: {
|
98
|
+
type: string;
|
99
|
+
uuid: string;
|
100
|
+
profileUuid: string;
|
101
|
+
tag: string;
|
102
|
+
network: string | null;
|
103
|
+
security: string | null;
|
104
|
+
port: number | null;
|
105
|
+
}[];
|
106
|
+
uuid: string;
|
107
|
+
createdAt: Date;
|
108
|
+
updatedAt: Date;
|
109
|
+
name: string;
|
110
|
+
info: {
|
111
|
+
membersCount: number;
|
112
|
+
inboundsCount: number;
|
113
|
+
};
|
114
|
+
};
|
115
|
+
}, {
|
116
|
+
response: {
|
117
|
+
inbounds: {
|
118
|
+
type: string;
|
119
|
+
uuid: string;
|
120
|
+
profileUuid: string;
|
121
|
+
tag: string;
|
122
|
+
network: string | null;
|
123
|
+
security: string | null;
|
124
|
+
port: number | null;
|
125
|
+
}[];
|
126
|
+
uuid: string;
|
127
|
+
createdAt: string;
|
128
|
+
updatedAt: string;
|
129
|
+
name: string;
|
130
|
+
info: {
|
131
|
+
membersCount: number;
|
132
|
+
inboundsCount: number;
|
133
|
+
};
|
134
|
+
};
|
135
|
+
}>;
|
136
|
+
type Response = z.infer<typeof ResponseSchema>;
|
137
|
+
}
|
138
|
+
//# sourceMappingURL=update-internal-squad.command.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"update-internal-squad.command.d.ts","sourceRoot":"","sources":["../../../../commands/internal-squads/update-internal-squad.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,0BAA0B,CAAC;IACjC,MAAM,GAAG,yBAAkC,CAAC;IAC5C,MAAM,OAAO,yBAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;MAGxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.UpdateInternalSquadCommand = void 0;
|
4
|
+
const zod_1 = require("zod");
|
5
|
+
const api_1 = require("../../api");
|
6
|
+
const constants_1 = require("../../constants");
|
7
|
+
const models_1 = require("../../models");
|
8
|
+
var UpdateInternalSquadCommand;
|
9
|
+
(function (UpdateInternalSquadCommand) {
|
10
|
+
UpdateInternalSquadCommand.url = api_1.REST_API.INTERNAL_SQUADS.UPDATE;
|
11
|
+
UpdateInternalSquadCommand.TSQ_url = UpdateInternalSquadCommand.url;
|
12
|
+
UpdateInternalSquadCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.INTERNAL_SQUADS_ROUTES.UPDATE, 'patch', 'Update internal squad');
|
13
|
+
UpdateInternalSquadCommand.RequestSchema = zod_1.z.object({
|
14
|
+
uuid: zod_1.z.string().uuid(),
|
15
|
+
inbounds: zod_1.z.array(zod_1.z.string().uuid()),
|
16
|
+
});
|
17
|
+
UpdateInternalSquadCommand.ResponseSchema = zod_1.z.object({
|
18
|
+
response: models_1.InternalSquadSchema,
|
19
|
+
});
|
20
|
+
})(UpdateInternalSquadCommand || (exports.UpdateInternalSquadCommand = UpdateInternalSquadCommand = {}));
|
@@ -40,35 +40,43 @@ export declare namespace DisableNodeCommand {
|
|
40
40
|
totalRam: z.ZodNullable<z.ZodString>;
|
41
41
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
42
42
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
43
|
-
|
43
|
+
activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
|
44
|
+
activeInbounds: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
44
45
|
uuid: z.ZodString;
|
46
|
+
profileUuid: z.ZodString;
|
45
47
|
tag: z.ZodString;
|
46
48
|
type: z.ZodString;
|
47
49
|
network: z.ZodNullable<z.ZodString>;
|
48
50
|
security: z.ZodNullable<z.ZodString>;
|
51
|
+
port: z.ZodNullable<z.ZodNumber>;
|
49
52
|
}, "strip", z.ZodTypeAny, {
|
50
53
|
type: string;
|
51
54
|
uuid: string;
|
55
|
+
profileUuid: string;
|
52
56
|
tag: string;
|
53
57
|
network: string | null;
|
54
58
|
security: string | null;
|
59
|
+
port: number | null;
|
55
60
|
}, {
|
56
61
|
type: string;
|
57
62
|
uuid: string;
|
63
|
+
profileUuid: string;
|
58
64
|
tag: string;
|
59
65
|
network: string | null;
|
60
66
|
security: string | null;
|
61
|
-
|
67
|
+
port: number | null;
|
68
|
+
}>, "many">>;
|
62
69
|
}, "strip", z.ZodTypeAny, {
|
63
70
|
uuid: string;
|
64
71
|
createdAt: Date;
|
65
72
|
updatedAt: Date;
|
66
|
-
|
73
|
+
name: string;
|
67
74
|
port: number | null;
|
75
|
+
countryCode: string;
|
76
|
+
trafficLimitBytes: number | null;
|
68
77
|
viewPosition: number;
|
69
78
|
address: string;
|
70
79
|
isDisabled: boolean;
|
71
|
-
name: string;
|
72
80
|
isConnected: boolean;
|
73
81
|
isConnecting: boolean;
|
74
82
|
isNodeOnline: boolean;
|
@@ -82,28 +90,31 @@ export declare namespace DisableNodeCommand {
|
|
82
90
|
trafficUsedBytes: number | null;
|
83
91
|
notifyPercent: number | null;
|
84
92
|
usersOnline: number | null;
|
85
|
-
countryCode: string;
|
86
93
|
consumptionMultiplier: number;
|
87
94
|
cpuCount: number | null;
|
88
95
|
cpuModel: string | null;
|
89
96
|
totalRam: string | null;
|
90
|
-
|
97
|
+
activeConfigProfileUuid: string | null;
|
98
|
+
activeInbounds: {
|
91
99
|
type: string;
|
92
100
|
uuid: string;
|
101
|
+
profileUuid: string;
|
93
102
|
tag: string;
|
94
103
|
network: string | null;
|
95
104
|
security: string | null;
|
96
|
-
|
105
|
+
port: number | null;
|
106
|
+
}[] | null;
|
97
107
|
}, {
|
98
108
|
uuid: string;
|
99
109
|
createdAt: string;
|
100
110
|
updatedAt: string;
|
101
|
-
|
111
|
+
name: string;
|
102
112
|
port: number | null;
|
113
|
+
countryCode: string;
|
114
|
+
trafficLimitBytes: number | null;
|
103
115
|
viewPosition: number;
|
104
116
|
address: string;
|
105
117
|
isDisabled: boolean;
|
106
|
-
name: string;
|
107
118
|
isConnected: boolean;
|
108
119
|
isConnecting: boolean;
|
109
120
|
isNodeOnline: boolean;
|
@@ -117,30 +128,33 @@ export declare namespace DisableNodeCommand {
|
|
117
128
|
trafficUsedBytes: number | null;
|
118
129
|
notifyPercent: number | null;
|
119
130
|
usersOnline: number | null;
|
120
|
-
countryCode: string;
|
121
131
|
consumptionMultiplier: number;
|
122
132
|
cpuCount: number | null;
|
123
133
|
cpuModel: string | null;
|
124
134
|
totalRam: string | null;
|
125
|
-
|
135
|
+
activeConfigProfileUuid: string | null;
|
136
|
+
activeInbounds: {
|
126
137
|
type: string;
|
127
138
|
uuid: string;
|
139
|
+
profileUuid: string;
|
128
140
|
tag: string;
|
129
141
|
network: string | null;
|
130
142
|
security: string | null;
|
131
|
-
|
143
|
+
port: number | null;
|
144
|
+
}[] | null;
|
132
145
|
}>;
|
133
146
|
}, "strip", z.ZodTypeAny, {
|
134
147
|
response: {
|
135
148
|
uuid: string;
|
136
149
|
createdAt: Date;
|
137
150
|
updatedAt: Date;
|
138
|
-
|
151
|
+
name: string;
|
139
152
|
port: number | null;
|
153
|
+
countryCode: string;
|
154
|
+
trafficLimitBytes: number | null;
|
140
155
|
viewPosition: number;
|
141
156
|
address: string;
|
142
157
|
isDisabled: boolean;
|
143
|
-
name: string;
|
144
158
|
isConnected: boolean;
|
145
159
|
isConnecting: boolean;
|
146
160
|
isNodeOnline: boolean;
|
@@ -154,30 +168,33 @@ export declare namespace DisableNodeCommand {
|
|
154
168
|
trafficUsedBytes: number | null;
|
155
169
|
notifyPercent: number | null;
|
156
170
|
usersOnline: number | null;
|
157
|
-
countryCode: string;
|
158
171
|
consumptionMultiplier: number;
|
159
172
|
cpuCount: number | null;
|
160
173
|
cpuModel: string | null;
|
161
174
|
totalRam: string | null;
|
162
|
-
|
175
|
+
activeConfigProfileUuid: string | null;
|
176
|
+
activeInbounds: {
|
163
177
|
type: string;
|
164
178
|
uuid: string;
|
179
|
+
profileUuid: string;
|
165
180
|
tag: string;
|
166
181
|
network: string | null;
|
167
182
|
security: string | null;
|
168
|
-
|
183
|
+
port: number | null;
|
184
|
+
}[] | null;
|
169
185
|
};
|
170
186
|
}, {
|
171
187
|
response: {
|
172
188
|
uuid: string;
|
173
189
|
createdAt: string;
|
174
190
|
updatedAt: string;
|
175
|
-
|
191
|
+
name: string;
|
176
192
|
port: number | null;
|
193
|
+
countryCode: string;
|
194
|
+
trafficLimitBytes: number | null;
|
177
195
|
viewPosition: number;
|
178
196
|
address: string;
|
179
197
|
isDisabled: boolean;
|
180
|
-
name: string;
|
181
198
|
isConnected: boolean;
|
182
199
|
isConnecting: boolean;
|
183
200
|
isNodeOnline: boolean;
|
@@ -191,18 +208,20 @@ export declare namespace DisableNodeCommand {
|
|
191
208
|
trafficUsedBytes: number | null;
|
192
209
|
notifyPercent: number | null;
|
193
210
|
usersOnline: number | null;
|
194
|
-
countryCode: string;
|
195
211
|
consumptionMultiplier: number;
|
196
212
|
cpuCount: number | null;
|
197
213
|
cpuModel: string | null;
|
198
214
|
totalRam: string | null;
|
199
|
-
|
215
|
+
activeConfigProfileUuid: string | null;
|
216
|
+
activeInbounds: {
|
200
217
|
type: string;
|
201
218
|
uuid: string;
|
219
|
+
profileUuid: string;
|
202
220
|
tag: string;
|
203
221
|
network: string | null;
|
204
222
|
security: string | null;
|
205
|
-
|
223
|
+
port: number | null;
|
224
|
+
}[] | null;
|
206
225
|
};
|
207
226
|
}>;
|
208
227
|
type Response = z.infer<typeof ResponseSchema>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"disable.command.d.ts","sourceRoot":"","sources":["../../../../../commands/nodes/actions/disable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,0BAAiC,CAAC;IAC3C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
1
|
+
{"version":3,"file":"disable.command.d.ts","sourceRoot":"","sources":["../../../../../commands/nodes/actions/disable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,0BAAiC,CAAC;IAC3C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
@@ -40,35 +40,43 @@ export declare namespace EnableNodeCommand {
|
|
40
40
|
totalRam: z.ZodNullable<z.ZodString>;
|
41
41
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
42
42
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
43
|
-
|
43
|
+
activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
|
44
|
+
activeInbounds: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
44
45
|
uuid: z.ZodString;
|
46
|
+
profileUuid: z.ZodString;
|
45
47
|
tag: z.ZodString;
|
46
48
|
type: z.ZodString;
|
47
49
|
network: z.ZodNullable<z.ZodString>;
|
48
50
|
security: z.ZodNullable<z.ZodString>;
|
51
|
+
port: z.ZodNullable<z.ZodNumber>;
|
49
52
|
}, "strip", z.ZodTypeAny, {
|
50
53
|
type: string;
|
51
54
|
uuid: string;
|
55
|
+
profileUuid: string;
|
52
56
|
tag: string;
|
53
57
|
network: string | null;
|
54
58
|
security: string | null;
|
59
|
+
port: number | null;
|
55
60
|
}, {
|
56
61
|
type: string;
|
57
62
|
uuid: string;
|
63
|
+
profileUuid: string;
|
58
64
|
tag: string;
|
59
65
|
network: string | null;
|
60
66
|
security: string | null;
|
61
|
-
|
67
|
+
port: number | null;
|
68
|
+
}>, "many">>;
|
62
69
|
}, "strip", z.ZodTypeAny, {
|
63
70
|
uuid: string;
|
64
71
|
createdAt: Date;
|
65
72
|
updatedAt: Date;
|
66
|
-
|
73
|
+
name: string;
|
67
74
|
port: number | null;
|
75
|
+
countryCode: string;
|
76
|
+
trafficLimitBytes: number | null;
|
68
77
|
viewPosition: number;
|
69
78
|
address: string;
|
70
79
|
isDisabled: boolean;
|
71
|
-
name: string;
|
72
80
|
isConnected: boolean;
|
73
81
|
isConnecting: boolean;
|
74
82
|
isNodeOnline: boolean;
|
@@ -82,28 +90,31 @@ export declare namespace EnableNodeCommand {
|
|
82
90
|
trafficUsedBytes: number | null;
|
83
91
|
notifyPercent: number | null;
|
84
92
|
usersOnline: number | null;
|
85
|
-
countryCode: string;
|
86
93
|
consumptionMultiplier: number;
|
87
94
|
cpuCount: number | null;
|
88
95
|
cpuModel: string | null;
|
89
96
|
totalRam: string | null;
|
90
|
-
|
97
|
+
activeConfigProfileUuid: string | null;
|
98
|
+
activeInbounds: {
|
91
99
|
type: string;
|
92
100
|
uuid: string;
|
101
|
+
profileUuid: string;
|
93
102
|
tag: string;
|
94
103
|
network: string | null;
|
95
104
|
security: string | null;
|
96
|
-
|
105
|
+
port: number | null;
|
106
|
+
}[] | null;
|
97
107
|
}, {
|
98
108
|
uuid: string;
|
99
109
|
createdAt: string;
|
100
110
|
updatedAt: string;
|
101
|
-
|
111
|
+
name: string;
|
102
112
|
port: number | null;
|
113
|
+
countryCode: string;
|
114
|
+
trafficLimitBytes: number | null;
|
103
115
|
viewPosition: number;
|
104
116
|
address: string;
|
105
117
|
isDisabled: boolean;
|
106
|
-
name: string;
|
107
118
|
isConnected: boolean;
|
108
119
|
isConnecting: boolean;
|
109
120
|
isNodeOnline: boolean;
|
@@ -117,30 +128,33 @@ export declare namespace EnableNodeCommand {
|
|
117
128
|
trafficUsedBytes: number | null;
|
118
129
|
notifyPercent: number | null;
|
119
130
|
usersOnline: number | null;
|
120
|
-
countryCode: string;
|
121
131
|
consumptionMultiplier: number;
|
122
132
|
cpuCount: number | null;
|
123
133
|
cpuModel: string | null;
|
124
134
|
totalRam: string | null;
|
125
|
-
|
135
|
+
activeConfigProfileUuid: string | null;
|
136
|
+
activeInbounds: {
|
126
137
|
type: string;
|
127
138
|
uuid: string;
|
139
|
+
profileUuid: string;
|
128
140
|
tag: string;
|
129
141
|
network: string | null;
|
130
142
|
security: string | null;
|
131
|
-
|
143
|
+
port: number | null;
|
144
|
+
}[] | null;
|
132
145
|
}>;
|
133
146
|
}, "strip", z.ZodTypeAny, {
|
134
147
|
response: {
|
135
148
|
uuid: string;
|
136
149
|
createdAt: Date;
|
137
150
|
updatedAt: Date;
|
138
|
-
|
151
|
+
name: string;
|
139
152
|
port: number | null;
|
153
|
+
countryCode: string;
|
154
|
+
trafficLimitBytes: number | null;
|
140
155
|
viewPosition: number;
|
141
156
|
address: string;
|
142
157
|
isDisabled: boolean;
|
143
|
-
name: string;
|
144
158
|
isConnected: boolean;
|
145
159
|
isConnecting: boolean;
|
146
160
|
isNodeOnline: boolean;
|
@@ -154,30 +168,33 @@ export declare namespace EnableNodeCommand {
|
|
154
168
|
trafficUsedBytes: number | null;
|
155
169
|
notifyPercent: number | null;
|
156
170
|
usersOnline: number | null;
|
157
|
-
countryCode: string;
|
158
171
|
consumptionMultiplier: number;
|
159
172
|
cpuCount: number | null;
|
160
173
|
cpuModel: string | null;
|
161
174
|
totalRam: string | null;
|
162
|
-
|
175
|
+
activeConfigProfileUuid: string | null;
|
176
|
+
activeInbounds: {
|
163
177
|
type: string;
|
164
178
|
uuid: string;
|
179
|
+
profileUuid: string;
|
165
180
|
tag: string;
|
166
181
|
network: string | null;
|
167
182
|
security: string | null;
|
168
|
-
|
183
|
+
port: number | null;
|
184
|
+
}[] | null;
|
169
185
|
};
|
170
186
|
}, {
|
171
187
|
response: {
|
172
188
|
uuid: string;
|
173
189
|
createdAt: string;
|
174
190
|
updatedAt: string;
|
175
|
-
|
191
|
+
name: string;
|
176
192
|
port: number | null;
|
193
|
+
countryCode: string;
|
194
|
+
trafficLimitBytes: number | null;
|
177
195
|
viewPosition: number;
|
178
196
|
address: string;
|
179
197
|
isDisabled: boolean;
|
180
|
-
name: string;
|
181
198
|
isConnected: boolean;
|
182
199
|
isConnecting: boolean;
|
183
200
|
isNodeOnline: boolean;
|
@@ -191,18 +208,20 @@ export declare namespace EnableNodeCommand {
|
|
191
208
|
trafficUsedBytes: number | null;
|
192
209
|
notifyPercent: number | null;
|
193
210
|
usersOnline: number | null;
|
194
|
-
countryCode: string;
|
195
211
|
consumptionMultiplier: number;
|
196
212
|
cpuCount: number | null;
|
197
213
|
cpuModel: string | null;
|
198
214
|
totalRam: string | null;
|
199
|
-
|
215
|
+
activeConfigProfileUuid: string | null;
|
216
|
+
activeInbounds: {
|
200
217
|
type: string;
|
201
218
|
uuid: string;
|
219
|
+
profileUuid: string;
|
202
220
|
tag: string;
|
203
221
|
network: string | null;
|
204
222
|
security: string | null;
|
205
|
-
|
223
|
+
port: number | null;
|
224
|
+
}[] | null;
|
206
225
|
};
|
207
226
|
}>;
|
208
227
|
type Response = z.infer<typeof ResponseSchema>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"enable.command.d.ts","sourceRoot":"","sources":["../../../../../commands/nodes/actions/enable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAAgC,CAAC;IAC1C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
1
|
+
{"version":3,"file":"enable.command.d.ts","sourceRoot":"","sources":["../../../../../commands/nodes/actions/enable.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,0BAAgC,CAAC;IAC1C,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|