mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-02-22 16:42:00 +00:00
- Introduced wallet payment option in verifyPayment function to allow users to pay using their wallet balance. - Added new BlockDeviceDialog component for managing device blocking and unblocking actions. - Updated DeviceCard component to display device status and integrate blocking functionality. - Refactored DevicesTable to utilize DeviceCard for better UI representation of devices. - Implemented Wallet component to manage wallet balance and top-up functionality. - Enhanced API routes and Prisma schema to support wallet transactions and device blocking reasons. - Improved overall user experience with responsive design adjustments and new UI elements. These changes improve user control over payments and device management, enhancing the overall functionality of the application.
51 lines
750 B
TypeScript
51 lines
750 B
TypeScript
export type PaymentType = {
|
|
numberOfMonths: number;
|
|
userId: string;
|
|
deviceIds: string[];
|
|
amount: number;
|
|
paid: boolean;
|
|
};
|
|
|
|
export type TopupType = {
|
|
amount: number;
|
|
userId: string;
|
|
paid: boolean;
|
|
};
|
|
|
|
interface IpAddress {
|
|
ip: string;
|
|
mask: number;
|
|
}
|
|
|
|
interface Ipv6Address {
|
|
ip: string;
|
|
prefix: number;
|
|
}
|
|
|
|
export interface MacAddress {
|
|
ruleId?: number;
|
|
name: string;
|
|
macAddress: string;
|
|
}
|
|
|
|
export interface GroupProfile {
|
|
groupId: string;
|
|
site?: string;
|
|
name: string;
|
|
buildIn?: boolean;
|
|
ipList?: IpAddress[];
|
|
ipv6List?: Ipv6Address[];
|
|
macAddressList?: MacAddress[];
|
|
count: number;
|
|
type: number;
|
|
resource: number;
|
|
}
|
|
|
|
export interface OmadaResponse {
|
|
errorCode: number;
|
|
msg: string;
|
|
result: {
|
|
data: GroupProfile[];
|
|
};
|
|
}
|