update sth
This commit is contained in:
		@@ -352,6 +352,7 @@ class WebSocketManager extends EventEmitter {
 | 
			
		||||
    } else if (packet) {
 | 
			
		||||
      /* Debug mode */
 | 
			
		||||
      // console.log(`Unhandled packet: ${packet.t}`, packet);
 | 
			
		||||
      this.client.emit(Events.UNHANDLED_PACKET, packet, shard);
 | 
			
		||||
    }
 | 
			
		||||
    return true;
 | 
			
		||||
  }
 | 
			
		||||
 
 | 
			
		||||
@@ -195,7 +195,7 @@ class MessagePayload {
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      const webembeds = this.options.embeds.filter(
 | 
			
		||||
        (e) => !(e instanceof MessageEmbed),
 | 
			
		||||
        (e) => e instanceof WebEmbed,
 | 
			
		||||
      );
 | 
			
		||||
      this.options.embeds = this.options.embeds.filter(e => e instanceof MessageEmbed);
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -21,6 +21,10 @@ class WebEmbed {
 | 
			
		||||
		 */
 | 
			
		||||
		this.hidden = data.hidden ?? false;
 | 
			
		||||
	}
 | 
			
		||||
	/**
 | 
			
		||||
	 * @private
 | 
			
		||||
	 * @param {object} data 
 | 
			
		||||
	 */
 | 
			
		||||
	_setup(data) {
 | 
			
		||||
        /**
 | 
			
		||||
         * Type image of this embed
 | 
			
		||||
 
 | 
			
		||||
@@ -373,6 +373,8 @@ exports.Events = {
 | 
			
		||||
	GUILD_SCHEDULED_EVENT_USER_REMOVE: 'guildScheduledEventUserRemove',
 | 
			
		||||
	RELATIONSHIP_ADD: 'relationshipAdd',
 | 
			
		||||
	RELATIONSHIP_REMOVE: 'relationshipRemove',
 | 
			
		||||
	/* Add */
 | 
			
		||||
	UNHANDLED_PACKET: 'unhandledPacket',
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
exports.ShardEvents = {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										10
									
								
								typings/index.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										10
									
								
								typings/index.d.ts
									
									
									
									
										vendored
									
									
								
							@@ -44,6 +44,7 @@ import {
 | 
			
		||||
  APISelectMenuComponent,
 | 
			
		||||
  APITemplateSerializedSourceGuild,
 | 
			
		||||
  APIUser,
 | 
			
		||||
  GatewayOpcodes,
 | 
			
		||||
  GatewayVoiceServerUpdateDispatchData,
 | 
			
		||||
  GatewayVoiceStateUpdateDispatchData,
 | 
			
		||||
  RESTPostAPIApplicationCommandsJSONBody,
 | 
			
		||||
@@ -4149,12 +4150,16 @@ export interface ClientEvents extends BaseClientEvents {
 | 
			
		||||
    id: Snowflake,
 | 
			
		||||
    type: RelationshipType,
 | 
			
		||||
    user: User,
 | 
			
		||||
  ]
 | 
			
		||||
  ];
 | 
			
		||||
  relationshipRemove: [
 | 
			
		||||
    id: Snowflake,
 | 
			
		||||
    type: RelationshipType,
 | 
			
		||||
    user: User,
 | 
			
		||||
  ]
 | 
			
		||||
  ];
 | 
			
		||||
  unhandledPacket: [
 | 
			
		||||
    packet: { op: GatewayOpcodes | number, d?: any, s?: number, t?: string },
 | 
			
		||||
    shard: WebSocketShard,
 | 
			
		||||
  ];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export interface ClientFetchInviteOptions {
 | 
			
		||||
@@ -4407,6 +4412,7 @@ export interface ConstantsEvents {
 | 
			
		||||
  GUILD_SCHEDULED_EVENT_USER_REMOVE: 'guildScheduledEventUserRemove',
 | 
			
		||||
  RELATIONSHIP_ADD: 'relationshipAdd',
 | 
			
		||||
  RELATIONSHIP_REMOVE: 'relationshipRemove',
 | 
			
		||||
  UNHANDLED_PACKET: 'unhandledPacket',
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export interface ConstantsOpcodes {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user