feat: portal redesign, pricing catalog, partner-staff invites

- portal: new admin/ and partner/ surfaces with full component library
  (AppLauncher, Avatar, Badge, Card, Modal, Tabs, etc.), composables,
  layouts, partner-routing middleware, and supporting server APIs
- pricing: Price schema/module with operator CRUD, pricing.vue catalog UI,
  Subscription extended with cycle/currency/perSeatAmount/seats snapshots
  for stable MRR aggregation
- partner staff: User.partnerId, invite-partner-user DTO and flow,
  /partners/:slug/users endpoints, InvitePartnerUserModal, shared
  dezky-partner-staff Authentik group
- /me: partner-aware endpoint returning user + partner context so portal
  can route between end-user and partner-admin surfaces
- tenant: seats field for portfolio displays and future MRR calculations
- operator: pricing page, signed-out page, useMe/useToast composables,
  ToastStack
This commit is contained in:
Ronni Baslund
2026-05-28 20:00:33 +02:00
parent be430179d9
commit 0bd4e5498e
144 changed files with 22110 additions and 209 deletions
@@ -0,0 +1,16 @@
import { IsEmail, IsString, MaxLength, MinLength } from 'class-validator'
// Operator-only: invite someone at a partner organization. Mirrors
// InviteOperatorDto in shape — body is just identity. The partner is
// resolved from the URL slug (POST /partners/:slug/users) so it never
// appears in the body. The created user is added to the
// dezky-partner-staff Authentik group and has User.partnerId set to the
// partner's _id; future partner-portal scope guards use that to allow
// access only to the partner's own data.
export class InvitePartnerUserDto {
@IsString() @MinLength(2) @MaxLength(120)
name!: string
@IsEmail() @MaxLength(254)
email!: string
}