🆙 added missing AvailableCommands

This commit is contained in:
DuckieTM
2026-03-21 12:15:25 +01:00
parent f198fbfb99
commit 569e0ff67b
9 changed files with 64 additions and 1 deletions
@@ -7,6 +7,7 @@ export class IncomingHeader
public static ACHIEVEMENT_LIST = 305;
public static AUTHENTICATED = 2491;
public static AUTHENTICATION = -1;
public static AVAILABLE_COMMANDS = 4050;
public static AVAILABILITY_STATUS = 2033;
public static BUILDERS_CLUB_EXPIRED = 1452;
public static CLUB_OFFERS = 2405;
@@ -0,0 +1,16 @@
import { IMessageEvent } from '@nitrots/api';
import { MessageEvent } from '@nitrots/events';
import { AvailableCommandsParser } from '../../parser';
export class AvailableCommandsEvent extends MessageEvent implements IMessageEvent
{
constructor(callBack: Function)
{
super(callBack, AvailableCommandsParser);
}
public getParser(): AvailableCommandsParser
{
return this.parser as AvailableCommandsParser;
}
}
@@ -0,0 +1 @@
export * from './AvailableCommandsEvent';
@@ -8,6 +8,7 @@ export * from './camera';
export * from './campaign';
export * from './catalog';
export * from './client';
export * from './commands';
export * from './competition';
export * from './crafting';
export * from './desktop';