@remnawave/backend-contract 0.7.26 → 2.0.0-alpha.10
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 +3 -2
- package/build/backend/api/controllers/index.d.ts.map +1 -1
- package/build/backend/api/controllers/index.js +3 -2
- 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 +22 -0
- 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 +2 -2
- package/build/backend/api/controllers/users.d.ts.map +1 -1
- package/build/backend/api/controllers/users.js +2 -2
- package/build/backend/api/routes.d.ts +32 -16
- package/build/backend/api/routes.d.ts.map +1 -1
- package/build/backend/api/routes.js +32 -16
- package/build/backend/commands/config-profiles/create-config-profile.command.d.ts +161 -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 +93 -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 +154 -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 +203 -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 +101 -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/config-profiles/index.js +23 -0
- package/build/backend/commands/config-profiles/update-config-profile.command.d.ts +161 -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 +9 -2
- 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 +3 -2
- package/build/backend/commands/index.d.ts.map +1 -1
- package/build/backend/commands/index.js +3 -2
- 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-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-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 +6 -0
- package/build/backend/commands/infra-billing/index.d.ts.map +1 -0
- package/build/backend/commands/{inbounds/bulk → infra-billing}/index.js +5 -4
- 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/create-internal-squad.command.d.ts +145 -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 +142 -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 +187 -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 +145 -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 +184 -22
- package/build/backend/commands/nodes/actions/disable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/enable.command.d.ts +184 -22
- package/build/backend/commands/nodes/actions/enable.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/actions/reorder.command.d.ts +260 -24
- package/build/backend/commands/nodes/actions/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.d.ts +199 -31
- package/build/backend/commands/nodes/create.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/create.command.js +5 -3
- package/build/backend/commands/nodes/get-all.command.d.ts +184 -22
- package/build/backend/commands/nodes/get-all.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/get-one.command.d.ts +184 -22
- 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/stats/get-realtime-usage.command.d.ts +4 -4
- package/build/backend/commands/nodes/update.command.d.ts +275 -33
- package/build/backend/commands/nodes/update.command.d.ts.map +1 -1
- package/build/backend/commands/nodes/update.command.js +5 -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-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-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/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/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 +115 -0
- package/build/backend/constants/errors/errors.d.ts.map +1 -1
- package/build/backend/constants/errors/errors.js +115 -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} +11 -2
- package/build/backend/models/config-profile-inbounds.schema.d.ts.map +1 -0
- package/build/{frontend/models/inbounds.schema.js → backend/models/config-profile-inbounds.schema.js} +5 -2
- package/build/backend/models/config-profile.schema.d.ts +92 -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 +5 -2
- package/build/backend/models/index.d.ts.map +1 -1
- package/build/backend/models/index.js +5 -2
- package/build/backend/models/infra-provider.schema.d.ts +65 -0
- package/build/backend/models/infra-provider.schema.d.ts.map +1 -0
- package/build/backend/models/infra-provider.schema.js +27 -0
- package/build/backend/models/internal-squad.schema.d.ts +84 -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 +130 -12
- package/build/backend/models/nodes.schema.d.ts.map +1 -1
- package/build/backend/models/nodes.schema.js +6 -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 +3 -2
- package/build/frontend/api/controllers/infra-billing.js +22 -0
- package/build/frontend/api/controllers/internal-squads.js +11 -0
- package/build/frontend/api/controllers/users.js +2 -2
- package/build/frontend/api/routes.js +32 -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/config-profiles/index.js +23 -0
- 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 +9 -2
- package/build/frontend/commands/hosts/update.command.js +7 -1
- package/build/frontend/commands/index.js +3 -2
- package/build/frontend/commands/infra-billing/create-infra-provider.command.js +24 -0
- package/build/frontend/commands/infra-billing/delete-infra-provider-by-uuid.command.js +20 -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/{inbounds/bulk → infra-billing}/index.js +5 -4
- package/build/frontend/commands/infra-billing/update-infra-provider.command.js +26 -0
- 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 +5 -3
- package/build/frontend/commands/nodes/update.command.js +5 -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/get-user-accessible-nodes.command.js +31 -0
- package/build/frontend/commands/users/index.js +1 -0
- package/build/frontend/commands/users/update-user.command.js +5 -5
- package/build/frontend/constants/errors/errors.js +115 -0
- package/build/frontend/models/base-internal-squad.schema.js +8 -0
- package/build/{backend/models/inbounds.schema.js → frontend/models/config-profile-inbounds.schema.js} +5 -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 +5 -2
- package/build/frontend/models/infra-provider.schema.js +27 -0
- package/build/frontend/models/internal-squad.schema.js +22 -0
- package/build/frontend/models/nodes.schema.js +6 -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
@@ -27,35 +27,110 @@ export declare const NodesSchema: z.ZodObject<{
|
|
27
27
|
totalRam: z.ZodNullable<z.ZodString>;
|
28
28
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
29
29
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
30
|
-
|
30
|
+
activeConfigProfileUuid: z.ZodNullable<z.ZodString>;
|
31
|
+
activeInbounds: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
31
32
|
uuid: z.ZodString;
|
33
|
+
profileUuid: z.ZodString;
|
32
34
|
tag: z.ZodString;
|
33
35
|
type: z.ZodString;
|
34
36
|
network: z.ZodNullable<z.ZodString>;
|
35
37
|
security: z.ZodNullable<z.ZodString>;
|
38
|
+
port: z.ZodNullable<z.ZodNumber>;
|
39
|
+
rawInbound: z.ZodNullable<z.ZodUnknown>;
|
36
40
|
}, "strip", z.ZodTypeAny, {
|
37
41
|
type: string;
|
38
42
|
uuid: string;
|
43
|
+
profileUuid: string;
|
39
44
|
tag: string;
|
40
45
|
network: string | null;
|
41
46
|
security: string | null;
|
47
|
+
port: number | null;
|
48
|
+
rawInbound?: unknown;
|
42
49
|
}, {
|
43
50
|
type: string;
|
44
51
|
uuid: string;
|
52
|
+
profileUuid: string;
|
45
53
|
tag: string;
|
46
54
|
network: string | null;
|
47
55
|
security: string | null;
|
48
|
-
|
56
|
+
port: number | null;
|
57
|
+
rawInbound?: unknown;
|
58
|
+
}>, "many">>;
|
59
|
+
providerUuid: z.ZodNullable<z.ZodString>;
|
60
|
+
provider: z.ZodNullable<z.ZodObject<{
|
61
|
+
uuid: z.ZodString;
|
62
|
+
name: z.ZodString;
|
63
|
+
faviconLink: z.ZodNullable<z.ZodString>;
|
64
|
+
loginUrl: z.ZodNullable<z.ZodString>;
|
65
|
+
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
66
|
+
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
67
|
+
billingHistory: z.ZodObject<{
|
68
|
+
totalAmount: z.ZodNumber;
|
69
|
+
totalBills: z.ZodNumber;
|
70
|
+
}, "strip", z.ZodTypeAny, {
|
71
|
+
totalAmount: number;
|
72
|
+
totalBills: number;
|
73
|
+
}, {
|
74
|
+
totalAmount: number;
|
75
|
+
totalBills: number;
|
76
|
+
}>;
|
77
|
+
billingNodes: z.ZodArray<z.ZodObject<{
|
78
|
+
nodeUuid: z.ZodString;
|
79
|
+
name: z.ZodString;
|
80
|
+
countryCode: z.ZodString;
|
81
|
+
}, "strip", z.ZodTypeAny, {
|
82
|
+
name: string;
|
83
|
+
countryCode: string;
|
84
|
+
nodeUuid: string;
|
85
|
+
}, {
|
86
|
+
name: string;
|
87
|
+
countryCode: string;
|
88
|
+
nodeUuid: string;
|
89
|
+
}>, "many">;
|
90
|
+
}, "strip", z.ZodTypeAny, {
|
91
|
+
uuid: string;
|
92
|
+
createdAt: Date;
|
93
|
+
updatedAt: Date;
|
94
|
+
name: string;
|
95
|
+
faviconLink: string | null;
|
96
|
+
loginUrl: string | null;
|
97
|
+
billingHistory: {
|
98
|
+
totalAmount: number;
|
99
|
+
totalBills: number;
|
100
|
+
};
|
101
|
+
billingNodes: {
|
102
|
+
name: string;
|
103
|
+
countryCode: string;
|
104
|
+
nodeUuid: string;
|
105
|
+
}[];
|
106
|
+
}, {
|
107
|
+
uuid: string;
|
108
|
+
createdAt: string;
|
109
|
+
updatedAt: string;
|
110
|
+
name: string;
|
111
|
+
faviconLink: string | null;
|
112
|
+
loginUrl: string | null;
|
113
|
+
billingHistory: {
|
114
|
+
totalAmount: number;
|
115
|
+
totalBills: number;
|
116
|
+
};
|
117
|
+
billingNodes: {
|
118
|
+
name: string;
|
119
|
+
countryCode: string;
|
120
|
+
nodeUuid: string;
|
121
|
+
}[];
|
122
|
+
}>>;
|
49
123
|
}, "strip", z.ZodTypeAny, {
|
50
124
|
uuid: string;
|
51
125
|
createdAt: Date;
|
52
126
|
updatedAt: Date;
|
53
|
-
|
127
|
+
name: string;
|
54
128
|
port: number | null;
|
129
|
+
countryCode: string;
|
130
|
+
trafficLimitBytes: number | null;
|
55
131
|
viewPosition: number;
|
56
132
|
address: string;
|
57
133
|
isDisabled: boolean;
|
58
|
-
name: string;
|
59
134
|
isConnected: boolean;
|
60
135
|
isConnecting: boolean;
|
61
136
|
isNodeOnline: boolean;
|
@@ -69,28 +144,50 @@ export declare const NodesSchema: z.ZodObject<{
|
|
69
144
|
trafficUsedBytes: number | null;
|
70
145
|
notifyPercent: number | null;
|
71
146
|
usersOnline: number | null;
|
72
|
-
countryCode: string;
|
73
147
|
consumptionMultiplier: number;
|
74
148
|
cpuCount: number | null;
|
75
149
|
cpuModel: string | null;
|
76
150
|
totalRam: string | null;
|
77
|
-
|
151
|
+
activeConfigProfileUuid: string | null;
|
152
|
+
activeInbounds: {
|
78
153
|
type: string;
|
79
154
|
uuid: string;
|
155
|
+
profileUuid: string;
|
80
156
|
tag: string;
|
81
157
|
network: string | null;
|
82
158
|
security: string | null;
|
83
|
-
|
159
|
+
port: number | null;
|
160
|
+
rawInbound?: unknown;
|
161
|
+
}[] | null;
|
162
|
+
providerUuid: string | null;
|
163
|
+
provider: {
|
164
|
+
uuid: string;
|
165
|
+
createdAt: Date;
|
166
|
+
updatedAt: Date;
|
167
|
+
name: string;
|
168
|
+
faviconLink: string | null;
|
169
|
+
loginUrl: string | null;
|
170
|
+
billingHistory: {
|
171
|
+
totalAmount: number;
|
172
|
+
totalBills: number;
|
173
|
+
};
|
174
|
+
billingNodes: {
|
175
|
+
name: string;
|
176
|
+
countryCode: string;
|
177
|
+
nodeUuid: string;
|
178
|
+
}[];
|
179
|
+
} | null;
|
84
180
|
}, {
|
85
181
|
uuid: string;
|
86
182
|
createdAt: string;
|
87
183
|
updatedAt: string;
|
88
|
-
|
184
|
+
name: string;
|
89
185
|
port: number | null;
|
186
|
+
countryCode: string;
|
187
|
+
trafficLimitBytes: number | null;
|
90
188
|
viewPosition: number;
|
91
189
|
address: string;
|
92
190
|
isDisabled: boolean;
|
93
|
-
name: string;
|
94
191
|
isConnected: boolean;
|
95
192
|
isConnecting: boolean;
|
96
193
|
isNodeOnline: boolean;
|
@@ -104,17 +201,38 @@ export declare const NodesSchema: z.ZodObject<{
|
|
104
201
|
trafficUsedBytes: number | null;
|
105
202
|
notifyPercent: number | null;
|
106
203
|
usersOnline: number | null;
|
107
|
-
countryCode: string;
|
108
204
|
consumptionMultiplier: number;
|
109
205
|
cpuCount: number | null;
|
110
206
|
cpuModel: string | null;
|
111
207
|
totalRam: string | null;
|
112
|
-
|
208
|
+
activeConfigProfileUuid: string | null;
|
209
|
+
activeInbounds: {
|
113
210
|
type: string;
|
114
211
|
uuid: string;
|
212
|
+
profileUuid: string;
|
115
213
|
tag: string;
|
116
214
|
network: string | null;
|
117
215
|
security: string | null;
|
118
|
-
|
216
|
+
port: number | null;
|
217
|
+
rawInbound?: unknown;
|
218
|
+
}[] | null;
|
219
|
+
providerUuid: string | null;
|
220
|
+
provider: {
|
221
|
+
uuid: string;
|
222
|
+
createdAt: string;
|
223
|
+
updatedAt: string;
|
224
|
+
name: string;
|
225
|
+
faviconLink: string | null;
|
226
|
+
loginUrl: string | null;
|
227
|
+
billingHistory: {
|
228
|
+
totalAmount: number;
|
229
|
+
totalBills: number;
|
230
|
+
};
|
231
|
+
billingNodes: {
|
232
|
+
name: string;
|
233
|
+
countryCode: string;
|
234
|
+
nodeUuid: string;
|
235
|
+
}[];
|
236
|
+
} | null;
|
119
237
|
}>;
|
120
238
|
//# sourceMappingURL=nodes.schema.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"nodes.schema.d.ts","sourceRoot":"","sources":["../../../models/nodes.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
1
|
+
{"version":3,"file":"nodes.schema.d.ts","sourceRoot":"","sources":["../../../models/nodes.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgDtB,CAAC"}
|
@@ -2,7 +2,8 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.NodesSchema = void 0;
|
4
4
|
const zod_1 = require("zod");
|
5
|
-
const
|
5
|
+
const config_profile_inbounds_schema_1 = require("./config-profile-inbounds.schema");
|
6
|
+
const infra_provider_schema_1 = require("./infra-provider.schema");
|
6
7
|
exports.NodesSchema = zod_1.z.object({
|
7
8
|
uuid: zod_1.z.string().uuid(),
|
8
9
|
name: zod_1.z.string(),
|
@@ -40,5 +41,8 @@ exports.NodesSchema = zod_1.z.object({
|
|
40
41
|
.string()
|
41
42
|
.datetime()
|
42
43
|
.transform((str) => new Date(str)),
|
43
|
-
|
44
|
+
activeConfigProfileUuid: zod_1.z.nullable(zod_1.z.string().uuid()),
|
45
|
+
activeInbounds: zod_1.z.nullable(zod_1.z.array(config_profile_inbounds_schema_1.ConfigProfileInboundsSchema)),
|
46
|
+
providerUuid: zod_1.z.nullable(zod_1.z.string().uuid()),
|
47
|
+
provider: zod_1.z.nullable(infra_provider_schema_1.InfraProviderSchema),
|
44
48
|
});
|
@@ -1,7 +1,6 @@
|
|
1
1
|
import { z } from 'zod';
|
2
2
|
export declare const UsersSchema: z.ZodObject<{
|
3
3
|
uuid: z.ZodString;
|
4
|
-
subscriptionUuid: z.ZodString;
|
5
4
|
shortUuid: z.ZodString;
|
6
5
|
username: z.ZodString;
|
7
6
|
status: z.ZodDefault<z.ZodNativeEnum<{
|
@@ -37,24 +36,15 @@ export declare const UsersSchema: z.ZodObject<{
|
|
37
36
|
lastTriggeredThreshold: z.ZodDefault<z.ZodNumber>;
|
38
37
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
39
38
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
40
|
-
|
39
|
+
activeInternalSquads: z.ZodArray<z.ZodObject<{
|
41
40
|
uuid: z.ZodString;
|
42
|
-
|
43
|
-
type: z.ZodString;
|
44
|
-
network: z.ZodNullable<z.ZodString>;
|
45
|
-
security: z.ZodNullable<z.ZodString>;
|
41
|
+
name: z.ZodString;
|
46
42
|
}, "strip", z.ZodTypeAny, {
|
47
|
-
type: string;
|
48
43
|
uuid: string;
|
49
|
-
|
50
|
-
network: string | null;
|
51
|
-
security: string | null;
|
44
|
+
name: string;
|
52
45
|
}, {
|
53
|
-
type: string;
|
54
46
|
uuid: string;
|
55
|
-
|
56
|
-
network: string | null;
|
57
|
-
security: string | null;
|
47
|
+
name: string;
|
58
48
|
}>, "many">;
|
59
49
|
}, "strip", z.ZodTypeAny, {
|
60
50
|
status: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE";
|
@@ -63,7 +53,6 @@ export declare const UsersSchema: z.ZodObject<{
|
|
63
53
|
updatedAt: Date;
|
64
54
|
username: string;
|
65
55
|
tag: string | null;
|
66
|
-
subscriptionUuid: string;
|
67
56
|
shortUuid: string;
|
68
57
|
usedTrafficBytes: number;
|
69
58
|
lifetimeUsedTrafficBytes: number;
|
@@ -84,12 +73,9 @@ export declare const UsersSchema: z.ZodObject<{
|
|
84
73
|
hwidDeviceLimit: number | null;
|
85
74
|
firstConnectedAt: Date | null;
|
86
75
|
lastTriggeredThreshold: number;
|
87
|
-
|
88
|
-
type: string;
|
76
|
+
activeInternalSquads: {
|
89
77
|
uuid: string;
|
90
|
-
|
91
|
-
network: string | null;
|
92
|
-
security: string | null;
|
78
|
+
name: string;
|
93
79
|
}[];
|
94
80
|
}, {
|
95
81
|
uuid: string;
|
@@ -97,7 +83,6 @@ export declare const UsersSchema: z.ZodObject<{
|
|
97
83
|
updatedAt: string;
|
98
84
|
username: string;
|
99
85
|
tag: string | null;
|
100
|
-
subscriptionUuid: string;
|
101
86
|
shortUuid: string;
|
102
87
|
usedTrafficBytes: number;
|
103
88
|
lifetimeUsedTrafficBytes: number;
|
@@ -115,12 +100,9 @@ export declare const UsersSchema: z.ZodObject<{
|
|
115
100
|
email: string | null;
|
116
101
|
hwidDeviceLimit: number | null;
|
117
102
|
firstConnectedAt: string | null;
|
118
|
-
|
119
|
-
type: string;
|
103
|
+
activeInternalSquads: {
|
120
104
|
uuid: string;
|
121
|
-
|
122
|
-
network: string | null;
|
123
|
-
security: string | null;
|
105
|
+
name: string;
|
124
106
|
}[];
|
125
107
|
status?: "DISABLED" | "LIMITED" | "EXPIRED" | "ACTIVE" | undefined;
|
126
108
|
trafficLimitBytes?: number | undefined;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"users.schema.d.ts","sourceRoot":"","sources":["../../../models/users.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,WAAW
|
1
|
+
{"version":3,"file":"users.schema.d.ts","sourceRoot":"","sources":["../../../models/users.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+EtB,CAAC"}
|
@@ -2,11 +2,10 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.UsersSchema = void 0;
|
4
4
|
const zod_1 = require("zod");
|
5
|
+
const base_internal_squad_schema_1 = require("./base-internal-squad.schema");
|
5
6
|
const constants_1 = require("../constants");
|
6
|
-
const inbounds_schema_1 = require("./inbounds.schema");
|
7
7
|
exports.UsersSchema = zod_1.z.object({
|
8
8
|
uuid: zod_1.z.string().uuid(),
|
9
|
-
subscriptionUuid: zod_1.z.string().uuid(),
|
10
9
|
shortUuid: zod_1.z.string(),
|
11
10
|
username: zod_1.z.string(),
|
12
11
|
status: zod_1.z.nativeEnum(constants_1.USERS_STATUS).default(constants_1.USERS_STATUS.ACTIVE),
|
@@ -60,5 +59,5 @@ exports.UsersSchema = zod_1.z.object({
|
|
60
59
|
.string()
|
61
60
|
.datetime()
|
62
61
|
.transform((str) => new Date(str)),
|
63
|
-
|
62
|
+
activeInternalSquads: zod_1.z.array(base_internal_squad_schema_1.BaseInternalSquadSchema),
|
64
63
|
});
|
@@ -0,0 +1,13 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.CONFIG_PROFILES_ROUTES = exports.CONFIG_PROFILES_CONTROLLER = void 0;
|
4
|
+
exports.CONFIG_PROFILES_CONTROLLER = 'config-profiles';
|
5
|
+
exports.CONFIG_PROFILES_ROUTES = {
|
6
|
+
GET: '', // Get list of all config profiles // get
|
7
|
+
CREATE: '', // Create new config profile // post
|
8
|
+
UPDATE: '', // Update config profile by uuid // patch
|
9
|
+
GET_BY_UUID: (uuid) => `${uuid}`, // Get config profile by uuid // get
|
10
|
+
DELETE: (uuid) => `${uuid}`, // Delete config profile by uuid // delete
|
11
|
+
GET_INBOUNDS_BY_PROFILE_UUID: (uuid) => `${uuid}/inbounds`, // Get list of all inbounds by config profile uuid // get
|
12
|
+
GET_ALL_INBOUNDS: 'inbounds', // Get list of all inbounds // get
|
13
|
+
};
|
@@ -16,9 +16,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
17
|
__exportStar(require("./api-tokens"), exports);
|
18
18
|
__exportStar(require("./auth"), exports);
|
19
|
+
__exportStar(require("./config-profiles"), exports);
|
19
20
|
__exportStar(require("./hosts"), exports);
|
20
21
|
__exportStar(require("./hwid"), exports);
|
21
|
-
__exportStar(require("./
|
22
|
+
__exportStar(require("./infra-billing"), exports);
|
23
|
+
__exportStar(require("./internal-squads"), exports);
|
22
24
|
__exportStar(require("./keygen"), exports);
|
23
25
|
__exportStar(require("./nodes"), exports);
|
24
26
|
__exportStar(require("./subscription"), exports);
|
@@ -27,4 +29,3 @@ __exportStar(require("./subscription-template"), exports);
|
|
27
29
|
__exportStar(require("./subscriptions"), exports);
|
28
30
|
__exportStar(require("./system"), exports);
|
29
31
|
__exportStar(require("./users"), exports);
|
30
|
-
__exportStar(require("./xray"), exports);
|
@@ -0,0 +1,22 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.INFRA_BILLING_ROUTES = exports.INFRA_BILLING_CONTROLLER = void 0;
|
4
|
+
exports.INFRA_BILLING_CONTROLLER = 'infra-billing';
|
5
|
+
exports.INFRA_BILLING_ROUTES = {
|
6
|
+
GET_PROVIDERS: 'providers', // Get list of all providers // get
|
7
|
+
CREATE_PROVIDER: 'providers', // Create new provider // post
|
8
|
+
UPDATE_PROVIDER: 'providers', // Update provider by uuid // patch
|
9
|
+
DELETE_PROVIDER: (uuid) => `providers/${uuid}`, // Delete provider by uuid // delete
|
10
|
+
GET_PROVIDER_BY_UUID: (uuid) => `providers/${uuid}`, // Get provider by uuid // get
|
11
|
+
GET_BILLING_NODES: 'nodes', // Get list of all nodes billing // get
|
12
|
+
CREATE_BILLING_NODE: 'nodes', // Create new node billing // post
|
13
|
+
UPDATE_BILLING_NODE: (uuid) => `nodes/${uuid}`, // Update node billing by uuid // patch
|
14
|
+
DELETE_BILLING_NODE: (uuid) => `nodes/${uuid}`, // Delete node billing by uuid // delete
|
15
|
+
GET_BILLING_HISTORY: 'history', // Get list of all nodes billing history // get
|
16
|
+
CREATE_BILLING_HISTORY: 'history', // Create new node billing history // post
|
17
|
+
DELETE_BILLING_HISTORY: (uuid) => `history/${uuid}`, // Delete node billing history by uuid // delete
|
18
|
+
// GET_BILLING_HISTORY_BY_NODE_UUID: (nodeUuid: string) => `history/${nodeUuid}`, // Get list of all nodes billing history by node uuid // get
|
19
|
+
// GET_BILLING_HISTORY_BY_PROVIDER_UUID: (providerUuid: string) => `history/${providerUuid}`, // Get list of all nodes billing history by provider uuid // get
|
20
|
+
// GET_BILLING_HISTORY_BY_NODE_UUID_AND_PROVIDER_UUID: (nodeUuid: string, providerUuid: string) =>
|
21
|
+
// `history/${nodeUuid}/${providerUuid}`, // Get list of all nodes billing history by node uuid and provider uuid // get
|
22
|
+
};
|
@@ -0,0 +1,11 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.INTERNAL_SQUADS_ROUTES = exports.INTERNAL_SQUADS_CONTROLLER = void 0;
|
4
|
+
exports.INTERNAL_SQUADS_CONTROLLER = 'internal-squads';
|
5
|
+
exports.INTERNAL_SQUADS_ROUTES = {
|
6
|
+
GET: '', // Get list of all internal squads // get
|
7
|
+
CREATE: '', // Create new internal squad // post
|
8
|
+
UPDATE: '', // Update internal squad by uuid // patch
|
9
|
+
GET_BY_UUID: (uuid) => `${uuid}`, // Get internal squad by uuid // get
|
10
|
+
DELETE: (uuid) => `${uuid}`, // Delete internal squad by uuid // delete
|
11
|
+
};
|
@@ -9,11 +9,11 @@ exports.USERS_ROUTES = {
|
|
9
9
|
GET: '',
|
10
10
|
DELETE: (uuid) => `${uuid}`,
|
11
11
|
GET_BY_UUID: (uuid) => `${uuid}`,
|
12
|
+
ACCESSIBLE_NODES: (uuid) => `${uuid}/accessible-nodes`,
|
12
13
|
ACTIONS: {
|
13
14
|
ENABLE: (uuid) => `${uuid}/${exports.USERS_ACTIONS_ROUTE}/enable`,
|
14
15
|
DISABLE: (uuid) => `${uuid}/${exports.USERS_ACTIONS_ROUTE}/disable`,
|
15
16
|
RESET_TRAFFIC: (uuid) => `${uuid}/${exports.USERS_ACTIONS_ROUTE}/reset-traffic`,
|
16
|
-
ACTIVATE_ALL_INBOUNDS: (uuid) => `${uuid}/${exports.USERS_ACTIONS_ROUTE}/activate-all-inbounds`,
|
17
17
|
REVOKE_SUBSCRIPTION: (uuid) => `${uuid}/${exports.USERS_ACTIONS_ROUTE}/revoke`,
|
18
18
|
},
|
19
19
|
GET_BY: {
|
@@ -30,7 +30,7 @@ exports.USERS_ROUTES = {
|
|
30
30
|
RESET_TRAFFIC: 'bulk/reset-traffic',
|
31
31
|
REVOKE_SUBSCRIPTION: 'bulk/revoke-subscription',
|
32
32
|
DELETE: 'bulk/delete',
|
33
|
-
|
33
|
+
UPDATE_SQUADS: 'bulk/update-squads',
|
34
34
|
ALL: {
|
35
35
|
UPDATE: 'bulk/all/update',
|
36
36
|
RESET_TRAFFIC: 'bulk/all/reset-traffic',
|
@@ -74,31 +74,17 @@ exports.REST_API = {
|
|
74
74
|
USAGE_REALTIME: `${exports.ROOT}/${CONTROLLERS.NODES_CONTROLLER}/${CONTROLLERS.NODES_ROUTES.STATS.USAGE_REALTIME}`,
|
75
75
|
},
|
76
76
|
},
|
77
|
-
XRAY: {
|
78
|
-
GET: `${exports.ROOT}/${CONTROLLERS.XRAY_CONTROLLER}/${CONTROLLERS.XRAY_ROUTES.GET}`,
|
79
|
-
UPDATE: `${exports.ROOT}/${CONTROLLERS.XRAY_CONTROLLER}/${CONTROLLERS.XRAY_ROUTES.UPDATE}`,
|
80
|
-
},
|
81
|
-
INBOUNDS: {
|
82
|
-
GET_INBOUNDS: `${exports.ROOT}/${CONTROLLERS.INBOUNDS_CONTROLLER}/${CONTROLLERS.INBOUNDS_ROUTES.GET_INBOUNDS}`,
|
83
|
-
GET_FULL_INBOUNDS: `${exports.ROOT}/${CONTROLLERS.INBOUNDS_CONTROLLER}/${CONTROLLERS.INBOUNDS_ROUTES.GET_FULL_INBOUNDS}`,
|
84
|
-
BULK: {
|
85
|
-
ADD_INBOUND_TO_USERS: `${exports.ROOT}/${CONTROLLERS.INBOUNDS_CONTROLLER}/${CONTROLLERS.INBOUNDS_ROUTES.BULK.ADD_INBOUND_TO_USERS}`,
|
86
|
-
REMOVE_INBOUND_FROM_USERS: `${exports.ROOT}/${CONTROLLERS.INBOUNDS_CONTROLLER}/${CONTROLLERS.INBOUNDS_ROUTES.BULK.REMOVE_INBOUND_FROM_USERS}`,
|
87
|
-
ADD_INBOUND_TO_NODES: `${exports.ROOT}/${CONTROLLERS.INBOUNDS_CONTROLLER}/${CONTROLLERS.INBOUNDS_ROUTES.BULK.ADD_INBOUND_TO_NODES}`,
|
88
|
-
REMOVE_INBOUND_FROM_NODES: `${exports.ROOT}/${CONTROLLERS.INBOUNDS_CONTROLLER}/${CONTROLLERS.INBOUNDS_ROUTES.BULK.REMOVE_INBOUND_FROM_NODES}`,
|
89
|
-
},
|
90
|
-
},
|
91
77
|
USERS: {
|
92
78
|
CREATE: `${exports.ROOT}/${CONTROLLERS.USERS_CONTROLLER}/${CONTROLLERS.USERS_ROUTES.CREATE}`,
|
93
79
|
UPDATE: `${exports.ROOT}/${CONTROLLERS.USERS_CONTROLLER}/${CONTROLLERS.USERS_ROUTES.UPDATE}`,
|
94
80
|
GET: `${exports.ROOT}/${CONTROLLERS.USERS_CONTROLLER}/${CONTROLLERS.USERS_ROUTES.GET}`,
|
95
81
|
DELETE: (uuid) => `${exports.ROOT}/${CONTROLLERS.USERS_CONTROLLER}/${CONTROLLERS.USERS_ROUTES.DELETE(uuid)}`,
|
96
82
|
GET_BY_UUID: (uuid) => `${exports.ROOT}/${CONTROLLERS.USERS_CONTROLLER}/${CONTROLLERS.USERS_ROUTES.GET_BY_UUID(uuid)}`,
|
83
|
+
ACCESSIBLE_NODES: (uuid) => `${exports.ROOT}/${CONTROLLERS.USERS_CONTROLLER}/${CONTROLLERS.USERS_ROUTES.ACCESSIBLE_NODES(uuid)}`,
|
97
84
|
ACTIONS: {
|
98
85
|
DISABLE: (uuid) => `${exports.ROOT}/${CONTROLLERS.USERS_CONTROLLER}/${CONTROLLERS.USERS_ROUTES.ACTIONS.DISABLE(uuid)}`,
|
99
86
|
ENABLE: (uuid) => `${exports.ROOT}/${CONTROLLERS.USERS_CONTROLLER}/${CONTROLLERS.USERS_ROUTES.ACTIONS.ENABLE(uuid)}`,
|
100
87
|
RESET_TRAFFIC: (uuid) => `${exports.ROOT}/${CONTROLLERS.USERS_CONTROLLER}/${CONTROLLERS.USERS_ROUTES.ACTIONS.RESET_TRAFFIC(uuid)}`,
|
101
|
-
ACTIVATE_ALL_INBOUNDS: (uuid) => `${exports.ROOT}/${CONTROLLERS.USERS_CONTROLLER}/${CONTROLLERS.USERS_ROUTES.ACTIONS.ACTIVATE_ALL_INBOUNDS(uuid)}`,
|
102
88
|
REVOKE_SUBSCRIPTION: (uuid) => `${exports.ROOT}/${CONTROLLERS.USERS_CONTROLLER}/${CONTROLLERS.USERS_ROUTES.ACTIONS.REVOKE_SUBSCRIPTION(uuid)}`,
|
103
89
|
},
|
104
90
|
GET_BY: {
|
@@ -115,7 +101,7 @@ exports.REST_API = {
|
|
115
101
|
RESET_TRAFFIC: `${exports.ROOT}/${CONTROLLERS.USERS_CONTROLLER}/${CONTROLLERS.USERS_ROUTES.BULK.RESET_TRAFFIC}`,
|
116
102
|
REVOKE_SUBSCRIPTION: `${exports.ROOT}/${CONTROLLERS.USERS_CONTROLLER}/${CONTROLLERS.USERS_ROUTES.BULK.REVOKE_SUBSCRIPTION}`,
|
117
103
|
DELETE: `${exports.ROOT}/${CONTROLLERS.USERS_CONTROLLER}/${CONTROLLERS.USERS_ROUTES.BULK.DELETE}`,
|
118
|
-
|
104
|
+
UPDATE_SQUADS: `${exports.ROOT}/${CONTROLLERS.USERS_CONTROLLER}/${CONTROLLERS.USERS_ROUTES.BULK.UPDATE_SQUADS}`,
|
119
105
|
ALL: {
|
120
106
|
UPDATE: `${exports.ROOT}/${CONTROLLERS.USERS_CONTROLLER}/${CONTROLLERS.USERS_ROUTES.BULK.ALL.UPDATE}`,
|
121
107
|
RESET_TRAFFIC: `${exports.ROOT}/${CONTROLLERS.USERS_CONTROLLER}/${CONTROLLERS.USERS_ROUTES.BULK.ALL.RESET_TRAFFIC}`,
|
@@ -177,4 +163,34 @@ exports.REST_API = {
|
|
177
163
|
USERNAME: (username) => `${exports.ROOT}/${CONTROLLERS.SUBSCRIPTIONS_CONTROLLER}/${CONTROLLERS.SUBSCRIPTIONS_ROUTES.GET_BY.USERNAME(username)}`,
|
178
164
|
},
|
179
165
|
},
|
166
|
+
CONFIG_PROFILES: {
|
167
|
+
GET: `${exports.ROOT}/${CONTROLLERS.CONFIG_PROFILES_CONTROLLER}/${CONTROLLERS.CONFIG_PROFILES_ROUTES.GET}`,
|
168
|
+
CREATE: `${exports.ROOT}/${CONTROLLERS.CONFIG_PROFILES_CONTROLLER}/${CONTROLLERS.CONFIG_PROFILES_ROUTES.CREATE}`,
|
169
|
+
UPDATE: `${exports.ROOT}/${CONTROLLERS.CONFIG_PROFILES_CONTROLLER}/${CONTROLLERS.CONFIG_PROFILES_ROUTES.UPDATE}`,
|
170
|
+
GET_BY_UUID: (uuid) => `${exports.ROOT}/${CONTROLLERS.CONFIG_PROFILES_CONTROLLER}/${CONTROLLERS.CONFIG_PROFILES_ROUTES.GET_BY_UUID(uuid)}`,
|
171
|
+
DELETE: (uuid) => `${exports.ROOT}/${CONTROLLERS.CONFIG_PROFILES_CONTROLLER}/${CONTROLLERS.CONFIG_PROFILES_ROUTES.DELETE(uuid)}`,
|
172
|
+
GET_INBOUNDS_BY_PROFILE_UUID: (uuid) => `${exports.ROOT}/${CONTROLLERS.CONFIG_PROFILES_CONTROLLER}/${CONTROLLERS.CONFIG_PROFILES_ROUTES.GET_INBOUNDS_BY_PROFILE_UUID(uuid)}`,
|
173
|
+
GET_ALL_INBOUNDS: `${exports.ROOT}/${CONTROLLERS.CONFIG_PROFILES_CONTROLLER}/${CONTROLLERS.CONFIG_PROFILES_ROUTES.GET_ALL_INBOUNDS}`,
|
174
|
+
},
|
175
|
+
INTERNAL_SQUADS: {
|
176
|
+
GET: `${exports.ROOT}/${CONTROLLERS.INTERNAL_SQUADS_CONTROLLER}/${CONTROLLERS.INTERNAL_SQUADS_ROUTES.GET}`,
|
177
|
+
CREATE: `${exports.ROOT}/${CONTROLLERS.INTERNAL_SQUADS_CONTROLLER}/${CONTROLLERS.INTERNAL_SQUADS_ROUTES.CREATE}`,
|
178
|
+
UPDATE: `${exports.ROOT}/${CONTROLLERS.INTERNAL_SQUADS_CONTROLLER}/${CONTROLLERS.INTERNAL_SQUADS_ROUTES.UPDATE}`,
|
179
|
+
GET_BY_UUID: (uuid) => `${exports.ROOT}/${CONTROLLERS.INTERNAL_SQUADS_CONTROLLER}/${CONTROLLERS.INTERNAL_SQUADS_ROUTES.GET_BY_UUID(uuid)}`,
|
180
|
+
DELETE: (uuid) => `${exports.ROOT}/${CONTROLLERS.INTERNAL_SQUADS_CONTROLLER}/${CONTROLLERS.INTERNAL_SQUADS_ROUTES.DELETE(uuid)}`,
|
181
|
+
},
|
182
|
+
INFRA_BILLING: {
|
183
|
+
GET_PROVIDERS: `${exports.ROOT}/${CONTROLLERS.INFRA_BILLING_CONTROLLER}/${CONTROLLERS.INFRA_BILLING_ROUTES.GET_PROVIDERS}`,
|
184
|
+
CREATE_PROVIDER: `${exports.ROOT}/${CONTROLLERS.INFRA_BILLING_CONTROLLER}/${CONTROLLERS.INFRA_BILLING_ROUTES.CREATE_PROVIDER}`,
|
185
|
+
UPDATE_PROVIDER: `${exports.ROOT}/${CONTROLLERS.INFRA_BILLING_CONTROLLER}/${CONTROLLERS.INFRA_BILLING_ROUTES.UPDATE_PROVIDER}`,
|
186
|
+
DELETE_PROVIDER: (uuid) => `${exports.ROOT}/${CONTROLLERS.INFRA_BILLING_CONTROLLER}/${CONTROLLERS.INFRA_BILLING_ROUTES.DELETE_PROVIDER(uuid)}`,
|
187
|
+
GET_PROVIDER_BY_UUID: (uuid) => `${exports.ROOT}/${CONTROLLERS.INFRA_BILLING_CONTROLLER}/${CONTROLLERS.INFRA_BILLING_ROUTES.GET_PROVIDER_BY_UUID(uuid)}`,
|
188
|
+
GET_BILLING_NODES: `${exports.ROOT}/${CONTROLLERS.INFRA_BILLING_CONTROLLER}/${CONTROLLERS.INFRA_BILLING_ROUTES.GET_BILLING_NODES}`,
|
189
|
+
CREATE_BILLING_NODE: `${exports.ROOT}/${CONTROLLERS.INFRA_BILLING_CONTROLLER}/${CONTROLLERS.INFRA_BILLING_ROUTES.CREATE_BILLING_NODE}`,
|
190
|
+
UPDATE_BILLING_NODE: (uuid) => `${exports.ROOT}/${CONTROLLERS.INFRA_BILLING_CONTROLLER}/${CONTROLLERS.INFRA_BILLING_ROUTES.UPDATE_BILLING_NODE(uuid)}`,
|
191
|
+
DELETE_BILLING_NODE: (uuid) => `${exports.ROOT}/${CONTROLLERS.INFRA_BILLING_CONTROLLER}/${CONTROLLERS.INFRA_BILLING_ROUTES.DELETE_BILLING_NODE(uuid)}`,
|
192
|
+
GET_BILLING_HISTORY: `${exports.ROOT}/${CONTROLLERS.INFRA_BILLING_CONTROLLER}/${CONTROLLERS.INFRA_BILLING_ROUTES.GET_BILLING_HISTORY}`,
|
193
|
+
CREATE_BILLING_HISTORY: `${exports.ROOT}/${CONTROLLERS.INFRA_BILLING_CONTROLLER}/${CONTROLLERS.INFRA_BILLING_ROUTES.CREATE_BILLING_HISTORY}`,
|
194
|
+
DELETE_BILLING_HISTORY: (uuid) => `${exports.ROOT}/${CONTROLLERS.INFRA_BILLING_CONTROLLER}/${CONTROLLERS.INFRA_BILLING_ROUTES.DELETE_BILLING_HISTORY(uuid)}`,
|
195
|
+
},
|
180
196
|
};
|
@@ -0,0 +1,24 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.CreateConfigProfileCommand = 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 CreateConfigProfileCommand;
|
9
|
+
(function (CreateConfigProfileCommand) {
|
10
|
+
CreateConfigProfileCommand.url = api_1.REST_API.CONFIG_PROFILES.CREATE;
|
11
|
+
CreateConfigProfileCommand.TSQ_url = CreateConfigProfileCommand.url;
|
12
|
+
CreateConfigProfileCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.CONFIG_PROFILES_ROUTES.CREATE, 'post', 'Create config profile');
|
13
|
+
CreateConfigProfileCommand.RequestSchema = zod_1.z.object({
|
14
|
+
name: zod_1.z
|
15
|
+
.string()
|
16
|
+
.min(2, 'Name must be at least 2 characters')
|
17
|
+
.max(20, 'Name must be less than 20 characters')
|
18
|
+
.regex(/^[A-Za-z0-9_-]+$/, 'Name can only contain letters, numbers, underscores and dashes'),
|
19
|
+
config: zod_1.z.object({}).passthrough(),
|
20
|
+
});
|
21
|
+
CreateConfigProfileCommand.ResponseSchema = zod_1.z.object({
|
22
|
+
response: models_1.ConfigProfileSchema,
|
23
|
+
});
|
24
|
+
})(CreateConfigProfileCommand || (exports.CreateConfigProfileCommand = CreateConfigProfileCommand = {}));
|
@@ -0,0 +1,20 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.DeleteConfigProfileCommand = void 0;
|
4
|
+
const zod_1 = require("zod");
|
5
|
+
const api_1 = require("../../api");
|
6
|
+
const constants_1 = require("../../constants");
|
7
|
+
var DeleteConfigProfileCommand;
|
8
|
+
(function (DeleteConfigProfileCommand) {
|
9
|
+
DeleteConfigProfileCommand.url = api_1.REST_API.CONFIG_PROFILES.DELETE;
|
10
|
+
DeleteConfigProfileCommand.TSQ_url = DeleteConfigProfileCommand.url(':uuid');
|
11
|
+
DeleteConfigProfileCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.CONFIG_PROFILES_ROUTES.DELETE(':uuid'), 'delete', 'Delete config profile');
|
12
|
+
DeleteConfigProfileCommand.RequestSchema = zod_1.z.object({
|
13
|
+
uuid: zod_1.z.string().uuid(),
|
14
|
+
});
|
15
|
+
DeleteConfigProfileCommand.ResponseSchema = zod_1.z.object({
|
16
|
+
response: zod_1.z.object({
|
17
|
+
isDeleted: zod_1.z.boolean(),
|
18
|
+
}),
|
19
|
+
});
|
20
|
+
})(DeleteConfigProfileCommand || (exports.DeleteConfigProfileCommand = DeleteConfigProfileCommand = {}));
|
@@ -0,0 +1,19 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.GetAllInboundsCommand = void 0;
|
4
|
+
const zod_1 = require("zod");
|
5
|
+
const api_1 = require("../../api");
|
6
|
+
const models_1 = require("../../models");
|
7
|
+
const constants_1 = require("../../constants");
|
8
|
+
var GetAllInboundsCommand;
|
9
|
+
(function (GetAllInboundsCommand) {
|
10
|
+
GetAllInboundsCommand.url = api_1.REST_API.CONFIG_PROFILES.GET_ALL_INBOUNDS;
|
11
|
+
GetAllInboundsCommand.TSQ_url = GetAllInboundsCommand.url;
|
12
|
+
GetAllInboundsCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.CONFIG_PROFILES_ROUTES.GET_ALL_INBOUNDS, 'get', 'Get all inbounds from all config profiles');
|
13
|
+
GetAllInboundsCommand.ResponseSchema = zod_1.z.object({
|
14
|
+
response: zod_1.z.object({
|
15
|
+
total: zod_1.z.number(),
|
16
|
+
inbounds: zod_1.z.array(models_1.ConfigProfileInboundsSchema),
|
17
|
+
}),
|
18
|
+
});
|
19
|
+
})(GetAllInboundsCommand || (exports.GetAllInboundsCommand = GetAllInboundsCommand = {}));
|
@@ -0,0 +1,19 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.GetConfigProfileByUuidCommand = 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 GetConfigProfileByUuidCommand;
|
9
|
+
(function (GetConfigProfileByUuidCommand) {
|
10
|
+
GetConfigProfileByUuidCommand.url = api_1.REST_API.CONFIG_PROFILES.GET_BY_UUID;
|
11
|
+
GetConfigProfileByUuidCommand.TSQ_url = GetConfigProfileByUuidCommand.url(':uuid');
|
12
|
+
GetConfigProfileByUuidCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.CONFIG_PROFILES_ROUTES.GET_BY_UUID(':uuid'), 'get', 'Get config profile by uuid');
|
13
|
+
GetConfigProfileByUuidCommand.RequestSchema = zod_1.z.object({
|
14
|
+
uuid: zod_1.z.string().uuid(),
|
15
|
+
});
|
16
|
+
GetConfigProfileByUuidCommand.ResponseSchema = zod_1.z.object({
|
17
|
+
response: models_1.ConfigProfileSchema,
|
18
|
+
});
|
19
|
+
})(GetConfigProfileByUuidCommand || (exports.GetConfigProfileByUuidCommand = GetConfigProfileByUuidCommand = {}));
|
@@ -0,0 +1,19 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.GetConfigProfilesCommand = 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 GetConfigProfilesCommand;
|
9
|
+
(function (GetConfigProfilesCommand) {
|
10
|
+
GetConfigProfilesCommand.url = api_1.REST_API.CONFIG_PROFILES.GET;
|
11
|
+
GetConfigProfilesCommand.TSQ_url = GetConfigProfilesCommand.url;
|
12
|
+
GetConfigProfilesCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.CONFIG_PROFILES_ROUTES.GET, 'get', 'Get config profiles');
|
13
|
+
GetConfigProfilesCommand.ResponseSchema = zod_1.z.object({
|
14
|
+
response: zod_1.z.object({
|
15
|
+
total: zod_1.z.number(),
|
16
|
+
configProfiles: zod_1.z.array(models_1.ConfigProfileSchema),
|
17
|
+
}),
|
18
|
+
});
|
19
|
+
})(GetConfigProfilesCommand || (exports.GetConfigProfilesCommand = GetConfigProfilesCommand = {}));
|
@@ -0,0 +1,22 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.GetInboundsByProfileUuidCommand = void 0;
|
4
|
+
const zod_1 = require("zod");
|
5
|
+
const api_1 = require("../../api");
|
6
|
+
const models_1 = require("../../models");
|
7
|
+
const constants_1 = require("../../constants");
|
8
|
+
var GetInboundsByProfileUuidCommand;
|
9
|
+
(function (GetInboundsByProfileUuidCommand) {
|
10
|
+
GetInboundsByProfileUuidCommand.url = api_1.REST_API.CONFIG_PROFILES.GET_INBOUNDS_BY_PROFILE_UUID;
|
11
|
+
GetInboundsByProfileUuidCommand.TSQ_url = GetInboundsByProfileUuidCommand.url(':uuid');
|
12
|
+
GetInboundsByProfileUuidCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.CONFIG_PROFILES_ROUTES.GET_INBOUNDS_BY_PROFILE_UUID(':uuid'), 'get', 'Get inbounds by profile uuid');
|
13
|
+
GetInboundsByProfileUuidCommand.RequestSchema = zod_1.z.object({
|
14
|
+
uuid: zod_1.z.string().uuid(),
|
15
|
+
});
|
16
|
+
GetInboundsByProfileUuidCommand.ResponseSchema = zod_1.z.object({
|
17
|
+
response: zod_1.z.object({
|
18
|
+
total: zod_1.z.number(),
|
19
|
+
inbounds: zod_1.z.array(models_1.ConfigProfileInboundsSchema),
|
20
|
+
}),
|
21
|
+
});
|
22
|
+
})(GetInboundsByProfileUuidCommand || (exports.GetInboundsByProfileUuidCommand = GetInboundsByProfileUuidCommand = {}));
|