feat: implement create functionality for WapServers across server, sysadmin, and CLI layers
This commit is contained in:
@@ -33,6 +33,16 @@ export type UpdateWapServerParams = {
|
||||
active?: boolean;
|
||||
};
|
||||
|
||||
export type CreateWapServerParams = {
|
||||
name: string;
|
||||
ipv4: string;
|
||||
port: number;
|
||||
maxBots: number;
|
||||
ipv6?: string;
|
||||
description?: string;
|
||||
active?: boolean;
|
||||
};
|
||||
|
||||
export type PaginateWapServerParams = FindWapServerParams & {
|
||||
page: number;
|
||||
limit: number;
|
||||
|
||||
Reference in New Issue
Block a user