StandardXtreamProfile: {
    id: string;
    username: string;
    password: string;
    status: string;
    activeConnections: number;
    maxConnections: number;
    isTrial: boolean;
    createdAt: Date;
    expiresAt: Date;
}

Standardized Xtream profile information

This type represents the complete user profile information in a standardized format

Type declaration

  • id: string

    The unique identifier for the profile (username)

  • username: string

    The username of the account

  • password: string

    The password of the account

  • status: string

    Account status (e.g., "Active")

  • activeConnections: number

    Number of active connections currently used

  • maxConnections: number

    Maximum allowed concurrent connections

  • isTrial: boolean

    Flag indicating if the account is a trial

  • createdAt: Date

    The date when the account was created

  • expiresAt: Date

    The expiration date of the account