@fnlb-project/fnbr 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +68 -0
- package/dist/enums/Enums.d.ts +251 -0
- package/dist/enums/Enums.js +202 -0
- package/dist/enums/Enums.js.map +1 -0
- package/dist/index.d.ts +92 -0
- package/dist/index.js +194 -0
- package/dist/index.js.map +1 -0
- package/dist/resources/AuthClients.d.ts +39 -0
- package/dist/resources/AuthClients.js +41 -0
- package/dist/resources/AuthClients.js.map +1 -0
- package/dist/resources/BaseItemRating.json +5203 -0
- package/dist/resources/Endpoints.d.ts +58 -0
- package/dist/resources/Endpoints.js +71 -0
- package/dist/resources/Endpoints.js.map +1 -0
- package/dist/resources/HomebaseRatingMapping.json +255 -0
- package/dist/resources/PowerLevelCurves.d.ts +111 -0
- package/dist/resources/PowerLevelCurves.js +21 -0
- package/dist/resources/PowerLevelCurves.js.map +1 -0
- package/dist/resources/SurvivorItemRating.json +9343 -0
- package/dist/resources/constants.d.ts +2 -0
- package/dist/resources/constants.js +11 -0
- package/dist/resources/constants.js.map +1 -0
- package/dist/resources/defaultPartyMemberMeta.json +28 -0
- package/dist/resources/defaultPartyMeta.json +38 -0
- package/dist/resources/enums.d.ts +12 -0
- package/dist/resources/enums.js +18 -0
- package/dist/resources/enums.js.map +1 -0
- package/dist/resources/httpResponses.d.ts +773 -0
- package/dist/resources/httpResponses.js +3 -0
- package/dist/resources/httpResponses.js.map +1 -0
- package/dist/resources/structs.d.ts +1310 -0
- package/dist/resources/structs.js +3 -0
- package/dist/resources/structs.js.map +1 -0
- package/dist/src/Base.d.ts +15 -0
- package/dist/src/Base.js +15 -0
- package/dist/src/Base.js.map +1 -0
- package/dist/src/Client.d.ts +341 -0
- package/dist/src/Client.js +1043 -0
- package/dist/src/Client.js.map +1 -0
- package/dist/src/auth/Auth.d.ts +66 -0
- package/dist/src/auth/Auth.js +249 -0
- package/dist/src/auth/Auth.js.map +1 -0
- package/dist/src/auth/AuthSession.d.ts +41 -0
- package/dist/src/auth/AuthSession.js +25 -0
- package/dist/src/auth/AuthSession.js.map +1 -0
- package/dist/src/auth/EOSAuthSession.d.ts +19 -0
- package/dist/src/auth/EOSAuthSession.js +80 -0
- package/dist/src/auth/EOSAuthSession.js.map +1 -0
- package/dist/src/auth/FortniteAuthSession.d.ts +53 -0
- package/dist/src/auth/FortniteAuthSession.js +107 -0
- package/dist/src/auth/FortniteAuthSession.js.map +1 -0
- package/dist/src/auth/FortniteClientCredentialsAuthSession.d.ts +18 -0
- package/dist/src/auth/FortniteClientCredentialsAuthSession.js +88 -0
- package/dist/src/auth/FortniteClientCredentialsAuthSession.js.map +1 -0
- package/dist/src/auth/LauncherAuthSession.d.ts +23 -0
- package/dist/src/auth/LauncherAuthSession.js +120 -0
- package/dist/src/auth/LauncherAuthSession.js.map +1 -0
- package/dist/src/exceptions/AuthenticationMissingError.d.ts +15 -0
- package/dist/src/exceptions/AuthenticationMissingError.js +18 -0
- package/dist/src/exceptions/AuthenticationMissingError.js.map +1 -0
- package/dist/src/exceptions/CreativeIslandNotFoundError.d.ts +14 -0
- package/dist/src/exceptions/CreativeIslandNotFoundError.js +18 -0
- package/dist/src/exceptions/CreativeIslandNotFoundError.js.map +1 -0
- package/dist/src/exceptions/CreatorCodeNotFoundError.d.ts +14 -0
- package/dist/src/exceptions/CreatorCodeNotFoundError.js +18 -0
- package/dist/src/exceptions/CreatorCodeNotFoundError.js.map +1 -0
- package/dist/src/exceptions/DuplicateFriendshipError.d.ts +14 -0
- package/dist/src/exceptions/DuplicateFriendshipError.js +18 -0
- package/dist/src/exceptions/DuplicateFriendshipError.js.map +1 -0
- package/dist/src/exceptions/EpicgamesAPIError.d.ts +42 -0
- package/dist/src/exceptions/EpicgamesAPIError.js +27 -0
- package/dist/src/exceptions/EpicgamesAPIError.js.map +1 -0
- package/dist/src/exceptions/EventTimeoutError.d.ts +19 -0
- package/dist/src/exceptions/EventTimeoutError.js +20 -0
- package/dist/src/exceptions/EventTimeoutError.js.map +1 -0
- package/dist/src/exceptions/FriendNotFoundError.d.ts +14 -0
- package/dist/src/exceptions/FriendNotFoundError.js +18 -0
- package/dist/src/exceptions/FriendNotFoundError.js.map +1 -0
- package/dist/src/exceptions/FriendshipRequestAlreadySentError.d.ts +14 -0
- package/dist/src/exceptions/FriendshipRequestAlreadySentError.js +18 -0
- package/dist/src/exceptions/FriendshipRequestAlreadySentError.js.map +1 -0
- package/dist/src/exceptions/InviteeFriendshipRequestLimitExceededError.d.ts +14 -0
- package/dist/src/exceptions/InviteeFriendshipRequestLimitExceededError.js +18 -0
- package/dist/src/exceptions/InviteeFriendshipRequestLimitExceededError.js.map +1 -0
- package/dist/src/exceptions/InviteeFriendshipSettingsError.d.ts +14 -0
- package/dist/src/exceptions/InviteeFriendshipSettingsError.js +18 -0
- package/dist/src/exceptions/InviteeFriendshipSettingsError.js.map +1 -0
- package/dist/src/exceptions/InviteeFriendshipsLimitExceededError.d.ts +14 -0
- package/dist/src/exceptions/InviteeFriendshipsLimitExceededError.js +18 -0
- package/dist/src/exceptions/InviteeFriendshipsLimitExceededError.js.map +1 -0
- package/dist/src/exceptions/InviterFriendshipsLimitExceededError.d.ts +14 -0
- package/dist/src/exceptions/InviterFriendshipsLimitExceededError.js +18 -0
- package/dist/src/exceptions/InviterFriendshipsLimitExceededError.js.map +1 -0
- package/dist/src/exceptions/MatchNotFoundError.d.ts +14 -0
- package/dist/src/exceptions/MatchNotFoundError.js +18 -0
- package/dist/src/exceptions/MatchNotFoundError.js.map +1 -0
- package/dist/src/exceptions/OfferNotFoundError.d.ts +14 -0
- package/dist/src/exceptions/OfferNotFoundError.js +18 -0
- package/dist/src/exceptions/OfferNotFoundError.js.map +1 -0
- package/dist/src/exceptions/PartyAlreadyJoinedError.d.ts +7 -0
- package/dist/src/exceptions/PartyAlreadyJoinedError.js +14 -0
- package/dist/src/exceptions/PartyAlreadyJoinedError.js.map +1 -0
- package/dist/src/exceptions/PartyInvitationExpiredError.d.ts +7 -0
- package/dist/src/exceptions/PartyInvitationExpiredError.js +14 -0
- package/dist/src/exceptions/PartyInvitationExpiredError.js.map +1 -0
- package/dist/src/exceptions/PartyMaxSizeReachedError.d.ts +7 -0
- package/dist/src/exceptions/PartyMaxSizeReachedError.js +14 -0
- package/dist/src/exceptions/PartyMaxSizeReachedError.js.map +1 -0
- package/dist/src/exceptions/PartyMemberNotFoundError.d.ts +14 -0
- package/dist/src/exceptions/PartyMemberNotFoundError.js +18 -0
- package/dist/src/exceptions/PartyMemberNotFoundError.js.map +1 -0
- package/dist/src/exceptions/PartyNotFoundError.d.ts +7 -0
- package/dist/src/exceptions/PartyNotFoundError.js +14 -0
- package/dist/src/exceptions/PartyNotFoundError.js.map +1 -0
- package/dist/src/exceptions/PartyPermissionError.d.ts +7 -0
- package/dist/src/exceptions/PartyPermissionError.js +14 -0
- package/dist/src/exceptions/PartyPermissionError.js.map +1 -0
- package/dist/src/exceptions/SendMessageError.d.ts +27 -0
- package/dist/src/exceptions/SendMessageError.js +21 -0
- package/dist/src/exceptions/SendMessageError.js.map +1 -0
- package/dist/src/exceptions/StatsPrivacyError.d.ts +14 -0
- package/dist/src/exceptions/StatsPrivacyError.js +18 -0
- package/dist/src/exceptions/StatsPrivacyError.js.map +1 -0
- package/dist/src/exceptions/StompConnectionError.d.ts +14 -0
- package/dist/src/exceptions/StompConnectionError.js +18 -0
- package/dist/src/exceptions/StompConnectionError.js.map +1 -0
- package/dist/src/exceptions/UserNotFoundError.d.ts +14 -0
- package/dist/src/exceptions/UserNotFoundError.js +18 -0
- package/dist/src/exceptions/UserNotFoundError.js.map +1 -0
- package/dist/src/exceptions/XMPPConnectionError.d.ts +19 -0
- package/dist/src/exceptions/XMPPConnectionError.js +19 -0
- package/dist/src/exceptions/XMPPConnectionError.js.map +1 -0
- package/dist/src/exceptions/XMPPConnectionTimeoutError.d.ts +14 -0
- package/dist/src/exceptions/XMPPConnectionTimeoutError.js +18 -0
- package/dist/src/exceptions/XMPPConnectionTimeoutError.js.map +1 -0
- package/dist/src/http/HTTP.d.ts +40 -0
- package/dist/src/http/HTTP.js +124 -0
- package/dist/src/http/HTTP.js.map +1 -0
- package/dist/src/managers/ChatManager.d.ts +27 -0
- package/dist/src/managers/ChatManager.js +71 -0
- package/dist/src/managers/ChatManager.js.map +1 -0
- package/dist/src/managers/FriendManager.d.ts +66 -0
- package/dist/src/managers/FriendManager.js +175 -0
- package/dist/src/managers/FriendManager.js.map +1 -0
- package/dist/src/managers/STWManager.d.ts +29 -0
- package/dist/src/managers/STWManager.js +80 -0
- package/dist/src/managers/STWManager.js.map +1 -0
- package/dist/src/managers/TournamentManager.d.ts +51 -0
- package/dist/src/managers/TournamentManager.js +182 -0
- package/dist/src/managers/TournamentManager.js.map +1 -0
- package/dist/src/managers/UserManager.d.ts +78 -0
- package/dist/src/managers/UserManager.js +216 -0
- package/dist/src/managers/UserManager.js.map +1 -0
- package/dist/src/stomp/EOSConnect.d.ts +43 -0
- package/dist/src/stomp/EOSConnect.js +175 -0
- package/dist/src/stomp/EOSConnect.js.map +1 -0
- package/dist/src/structures/Avatar.d.ts +27 -0
- package/dist/src/structures/Avatar.js +22 -0
- package/dist/src/structures/Avatar.js.map +1 -0
- package/dist/src/structures/BaseMessage.d.ts +34 -0
- package/dist/src/structures/BaseMessage.js +22 -0
- package/dist/src/structures/BaseMessage.js.map +1 -0
- package/dist/src/structures/CreatorCode.d.ts +31 -0
- package/dist/src/structures/CreatorCode.js +22 -0
- package/dist/src/structures/CreatorCode.js.map +1 -0
- package/dist/src/structures/EpicgamesServerStatus.d.ts +52 -0
- package/dist/src/structures/EpicgamesServerStatus.js +31 -0
- package/dist/src/structures/EpicgamesServerStatus.js.map +1 -0
- package/dist/src/structures/EpicgamesServerStatusComponent.d.ts +67 -0
- package/dist/src/structures/EpicgamesServerStatusComponent.js +37 -0
- package/dist/src/structures/EpicgamesServerStatusComponent.js.map +1 -0
- package/dist/src/structures/EpicgamesServerStatusIncident.d.ts +58 -0
- package/dist/src/structures/EpicgamesServerStatusIncident.js +36 -0
- package/dist/src/structures/EpicgamesServerStatusIncident.js.map +1 -0
- package/dist/src/structures/EpicgamesServerStatusScheduledMainteance.d.ts +21 -0
- package/dist/src/structures/EpicgamesServerStatusScheduledMainteance.js +20 -0
- package/dist/src/structures/EpicgamesServerStatusScheduledMainteance.js.map +1 -0
- package/dist/src/structures/EventTokens.d.ts +32 -0
- package/dist/src/structures/EventTokens.js +45 -0
- package/dist/src/structures/EventTokens.js.map +1 -0
- package/dist/src/structures/FortniteServerStatus.d.ts +46 -0
- package/dist/src/structures/FortniteServerStatus.js +26 -0
- package/dist/src/structures/FortniteServerStatus.js.map +1 -0
- package/dist/src/structures/GlobalProfile.d.ts +36 -0
- package/dist/src/structures/GlobalProfile.js +25 -0
- package/dist/src/structures/GlobalProfile.js.map +1 -0
- package/dist/src/structures/Image.d.ts +36 -0
- package/dist/src/structures/Image.js +38 -0
- package/dist/src/structures/Image.js.map +1 -0
- package/dist/src/structures/NewsMessage.d.ts +56 -0
- package/dist/src/structures/NewsMessage.js +45 -0
- package/dist/src/structures/NewsMessage.js.map +1 -0
- package/dist/src/structures/NewsMessageVideo.d.ts +47 -0
- package/dist/src/structures/NewsMessageVideo.js +32 -0
- package/dist/src/structures/NewsMessageVideo.js.map +1 -0
- package/dist/src/structures/RadioStation.d.ts +31 -0
- package/dist/src/structures/RadioStation.js +33 -0
- package/dist/src/structures/RadioStation.js.map +1 -0
- package/dist/src/structures/Stats.d.ts +45 -0
- package/dist/src/structures/Stats.js +109 -0
- package/dist/src/structures/Stats.js.map +1 -0
- package/dist/src/structures/Tournament.d.ts +86 -0
- package/dist/src/structures/Tournament.js +64 -0
- package/dist/src/structures/Tournament.js.map +1 -0
- package/dist/src/structures/TournamentWindow.d.ts +124 -0
- package/dist/src/structures/TournamentWindow.js +52 -0
- package/dist/src/structures/TournamentWindow.js.map +1 -0
- package/dist/src/structures/friend/BaseFriendMessage.d.ts +32 -0
- package/dist/src/structures/friend/BaseFriendMessage.js +28 -0
- package/dist/src/structures/friend/BaseFriendMessage.js.map +1 -0
- package/dist/src/structures/friend/BasePendingFriend.d.ts +22 -0
- package/dist/src/structures/friend/BasePendingFriend.js +22 -0
- package/dist/src/structures/friend/BasePendingFriend.js.map +1 -0
- package/dist/src/structures/friend/Friend.d.ts +106 -0
- package/dist/src/structures/friend/Friend.js +97 -0
- package/dist/src/structures/friend/Friend.js.map +1 -0
- package/dist/src/structures/friend/FriendPresence.d.ts +84 -0
- package/dist/src/structures/friend/FriendPresence.js +48 -0
- package/dist/src/structures/friend/FriendPresence.js.map +1 -0
- package/dist/src/structures/friend/IncomingPendingFriend.d.ts +27 -0
- package/dist/src/structures/friend/IncomingPendingFriend.js +36 -0
- package/dist/src/structures/friend/IncomingPendingFriend.js.map +1 -0
- package/dist/src/structures/friend/OutgoingPendingFriend.d.ts +17 -0
- package/dist/src/structures/friend/OutgoingPendingFriend.js +24 -0
- package/dist/src/structures/friend/OutgoingPendingFriend.js.map +1 -0
- package/dist/src/structures/friend/ReceivedFriendMessage.d.ts +27 -0
- package/dist/src/structures/friend/ReceivedFriendMessage.js +27 -0
- package/dist/src/structures/friend/ReceivedFriendMessage.js.map +1 -0
- package/dist/src/structures/friend/SentFriendMessage.d.ts +21 -0
- package/dist/src/structures/friend/SentFriendMessage.js +19 -0
- package/dist/src/structures/friend/SentFriendMessage.js.map +1 -0
- package/dist/src/structures/party/BasePartyInvitation.d.ts +48 -0
- package/dist/src/structures/party/BasePartyInvitation.js +33 -0
- package/dist/src/structures/party/BasePartyInvitation.js.map +1 -0
- package/dist/src/structures/party/BasePartyJoinRequest.d.ts +37 -0
- package/dist/src/structures/party/BasePartyJoinRequest.js +30 -0
- package/dist/src/structures/party/BasePartyJoinRequest.js.map +1 -0
- package/dist/src/structures/party/ClientParty.d.ts +162 -0
- package/dist/src/structures/party/ClientParty.js +412 -0
- package/dist/src/structures/party/ClientParty.js.map +1 -0
- package/dist/src/structures/party/ClientPartyMember.d.ts +144 -0
- package/dist/src/structures/party/ClientPartyMember.js +463 -0
- package/dist/src/structures/party/ClientPartyMember.js.map +1 -0
- package/dist/src/structures/party/ClientPartyMemberMeta.d.ts +18 -0
- package/dist/src/structures/party/ClientPartyMemberMeta.js +54 -0
- package/dist/src/structures/party/ClientPartyMemberMeta.js.map +1 -0
- package/dist/src/structures/party/ClientPartyMeta.d.ts +23 -0
- package/dist/src/structures/party/ClientPartyMeta.js +59 -0
- package/dist/src/structures/party/ClientPartyMeta.js.map +1 -0
- package/dist/src/structures/party/Party.d.ts +95 -0
- package/dist/src/structures/party/Party.js +200 -0
- package/dist/src/structures/party/Party.js.map +1 -0
- package/dist/src/structures/party/PartyChat.d.ts +73 -0
- package/dist/src/structures/party/PartyChat.js +76 -0
- package/dist/src/structures/party/PartyChat.js.map +1 -0
- package/dist/src/structures/party/PartyMember.d.ts +139 -0
- package/dist/src/structures/party/PartyMember.js +201 -0
- package/dist/src/structures/party/PartyMember.js.map +1 -0
- package/dist/src/structures/party/PartyMemberConfirmation.d.ts +43 -0
- package/dist/src/structures/party/PartyMemberConfirmation.js +53 -0
- package/dist/src/structures/party/PartyMemberConfirmation.js.map +1 -0
- package/dist/src/structures/party/PartyMemberMeta.d.ts +76 -0
- package/dist/src/structures/party/PartyMemberMeta.js +145 -0
- package/dist/src/structures/party/PartyMemberMeta.js.map +1 -0
- package/dist/src/structures/party/PartyMessage.d.ts +30 -0
- package/dist/src/structures/party/PartyMessage.js +28 -0
- package/dist/src/structures/party/PartyMessage.js.map +1 -0
- package/dist/src/structures/party/PartyMeta.d.ts +24 -0
- package/dist/src/structures/party/PartyMeta.js +43 -0
- package/dist/src/structures/party/PartyMeta.js.map +1 -0
- package/dist/src/structures/party/PresenceParty.d.ts +66 -0
- package/dist/src/structures/party/PresenceParty.js +49 -0
- package/dist/src/structures/party/PresenceParty.js.map +1 -0
- package/dist/src/structures/party/ReceivedPartyInvitation.d.ts +33 -0
- package/dist/src/structures/party/ReceivedPartyInvitation.js +54 -0
- package/dist/src/structures/party/ReceivedPartyInvitation.js.map +1 -0
- package/dist/src/structures/party/ReceivedPartyJoinRequest.d.ts +26 -0
- package/dist/src/structures/party/ReceivedPartyJoinRequest.js +31 -0
- package/dist/src/structures/party/ReceivedPartyJoinRequest.js.map +1 -0
- package/dist/src/structures/party/SentPartyInvitation.d.ts +27 -0
- package/dist/src/structures/party/SentPartyInvitation.js +39 -0
- package/dist/src/structures/party/SentPartyInvitation.js.map +1 -0
- package/dist/src/structures/party/SentPartyJoinRequest.d.ts +19 -0
- package/dist/src/structures/party/SentPartyJoinRequest.js +22 -0
- package/dist/src/structures/party/SentPartyJoinRequest.js.map +1 -0
- package/dist/src/structures/stw/STWHero.d.ts +61 -0
- package/dist/src/structures/stw/STWHero.js +38 -0
- package/dist/src/structures/stw/STWHero.js.map +1 -0
- package/dist/src/structures/stw/STWHeroLoadout.d.ts +44 -0
- package/dist/src/structures/stw/STWHeroLoadout.js +34 -0
- package/dist/src/structures/stw/STWHeroLoadout.js.map +1 -0
- package/dist/src/structures/stw/STWItem.d.ts +31 -0
- package/dist/src/structures/stw/STWItem.js +23 -0
- package/dist/src/structures/stw/STWItem.js.map +1 -0
- package/dist/src/structures/stw/STWLocker.d.ts +32 -0
- package/dist/src/structures/stw/STWLocker.js +26 -0
- package/dist/src/structures/stw/STWLocker.js.map +1 -0
- package/dist/src/structures/stw/STWMeleeWeaponSchematic.d.ts +14 -0
- package/dist/src/structures/stw/STWMeleeWeaponSchematic.js +15 -0
- package/dist/src/structures/stw/STWMeleeWeaponSchematic.js.map +1 -0
- package/dist/src/structures/stw/STWNewsMessage.d.ts +42 -0
- package/dist/src/structures/stw/STWNewsMessage.js +27 -0
- package/dist/src/structures/stw/STWNewsMessage.js.map +1 -0
- package/dist/src/structures/stw/STWProfile.d.ts +132 -0
- package/dist/src/structures/stw/STWProfile.js +283 -0
- package/dist/src/structures/stw/STWProfile.js.map +1 -0
- package/dist/src/structures/stw/STWRangedWeaponSchematic.d.ts +14 -0
- package/dist/src/structures/stw/STWRangedWeaponSchematic.js +15 -0
- package/dist/src/structures/stw/STWRangedWeaponSchematic.js.map +1 -0
- package/dist/src/structures/stw/STWResource.d.ts +27 -0
- package/dist/src/structures/stw/STWResource.js +22 -0
- package/dist/src/structures/stw/STWResource.js.map +1 -0
- package/dist/src/structures/stw/STWSchematic.d.ts +72 -0
- package/dist/src/structures/stw/STWSchematic.js +40 -0
- package/dist/src/structures/stw/STWSchematic.js.map +1 -0
- package/dist/src/structures/stw/STWStats.d.ts +103 -0
- package/dist/src/structures/stw/STWStats.js +85 -0
- package/dist/src/structures/stw/STWStats.js.map +1 -0
- package/dist/src/structures/stw/STWSurvivor.d.ts +104 -0
- package/dist/src/structures/stw/STWSurvivor.js +76 -0
- package/dist/src/structures/stw/STWSurvivor.js.map +1 -0
- package/dist/src/structures/stw/STWTeamPerk.d.ts +19 -0
- package/dist/src/structures/stw/STWTeamPerk.js +20 -0
- package/dist/src/structures/stw/STWTeamPerk.js.map +1 -0
- package/dist/src/structures/stw/STWTrapSchematic.d.ts +15 -0
- package/dist/src/structures/stw/STWTrapSchematic.js +16 -0
- package/dist/src/structures/stw/STWTrapSchematic.js.map +1 -0
- package/dist/src/structures/stw/STWWeaponSchematic.d.ts +15 -0
- package/dist/src/structures/stw/STWWeaponSchematic.js +16 -0
- package/dist/src/structures/stw/STWWeaponSchematic.js.map +1 -0
- package/dist/src/structures/user/BlockedUser.d.ts +13 -0
- package/dist/src/structures/user/BlockedUser.js +19 -0
- package/dist/src/structures/user/BlockedUser.js.map +1 -0
- package/dist/src/structures/user/ClientUser.d.ts +78 -0
- package/dist/src/structures/user/ClientUser.js +34 -0
- package/dist/src/structures/user/ClientUser.js.map +1 -0
- package/dist/src/structures/user/User.d.ts +98 -0
- package/dist/src/structures/user/User.js +130 -0
- package/dist/src/structures/user/User.js.map +1 -0
- package/dist/src/structures/user/UserSearchResult.d.ts +31 -0
- package/dist/src/structures/user/UserSearchResult.js +23 -0
- package/dist/src/structures/user/UserSearchResult.js.map +1 -0
- package/dist/src/util/AsyncLock.d.ts +28 -0
- package/dist/src/util/AsyncLock.js +44 -0
- package/dist/src/util/AsyncLock.js.map +1 -0
- package/dist/src/util/BinaryWriter.d.ts +79 -0
- package/dist/src/util/BinaryWriter.js +136 -0
- package/dist/src/util/BinaryWriter.js.map +1 -0
- package/dist/src/util/CurveTable.d.ts +24 -0
- package/dist/src/util/CurveTable.js +37 -0
- package/dist/src/util/CurveTable.js.map +1 -0
- package/dist/src/util/Meta.d.ts +41 -0
- package/dist/src/util/Meta.js +73 -0
- package/dist/src/util/Meta.js.map +1 -0
- package/dist/src/util/Util.d.ts +162 -0
- package/dist/src/util/Util.js +539 -0
- package/dist/src/util/Util.js.map +1 -0
- package/dist/src/xmpp/XMPP.d.ts +100 -0
- package/dist/src/xmpp/XMPP.js +702 -0
- package/dist/src/xmpp/XMPP.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +66 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020-2023 Nils S.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
<a href="https://fnbr.js.org"><img align="left" src="https://fnbr.js.org/static/logo-square.png" height=128 width=128 /></a>
|
|
2
|
+
|
|
3
|
+
[](https://github.com/fnbrjs/fnbr.js/actions/workflows/ci.yml)
|
|
4
|
+
[](https://npmjs.com/package/fnbr)
|
|
5
|
+
[](https://npmjs.com/package/fnbr)
|
|
6
|
+
[](https://github.com/fnbrjs/fnbr.js/blob/master/LICENSE)
|
|
7
|
+
[](https://discord.gg/j5xZ54RJvR)
|
|
8
|
+
|
|
9
|
+
An object-oriented, stable, fast and actively maintained library to interact with Epic Games' Fortnite HTTP and XMPP services. Inspired by [discord.js](https://github.com/discordjs/discord.js), [fortnitepy](https://github.com/Terbau/fortnitepy) and [epicgames-fortnite-client](https://github.com/SzymonLisowiec/node-epicgames-fortnite-client).
|
|
10
|
+
|
|
11
|
+
<br />
|
|
12
|
+
<hr />
|
|
13
|
+
|
|
14
|
+
<h2>Installation</h2>
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
npm install fnbr
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
<h2>Usage example</h2>
|
|
21
|
+
|
|
22
|
+
```javascript
|
|
23
|
+
const { Client } = require('fnbr');
|
|
24
|
+
|
|
25
|
+
const client = new Client();
|
|
26
|
+
|
|
27
|
+
client.on('friend:message', (message) => {
|
|
28
|
+
console.log(`Message from ${message.author.displayName}: ${message.content}`);
|
|
29
|
+
if (message.content.toLowerCase().startsWith('ping')) {
|
|
30
|
+
message.reply('Pong!');
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
client.on('ready', () => {
|
|
35
|
+
console.log(`Logged in as ${client.user.self.displayName}`);
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
client.login();
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
<h2>Links</h2>
|
|
42
|
+
|
|
43
|
+
- [NPM](https://npmjs.com/package/fnbr)
|
|
44
|
+
- [Docs](https://fnbr.js.org)
|
|
45
|
+
- [Discord](https://discord.gg/j5xZ54RJvR)
|
|
46
|
+
|
|
47
|
+
<h2>License</h2>
|
|
48
|
+
MIT License
|
|
49
|
+
|
|
50
|
+
Copyright (c) 2020-2024 Nils S.
|
|
51
|
+
|
|
52
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
53
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
54
|
+
in the Software without restriction, including without limitation the rights
|
|
55
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
56
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
57
|
+
furnished to do so, subject to the following conditions:
|
|
58
|
+
|
|
59
|
+
The above copyright notice and this permission notice shall be included in all
|
|
60
|
+
copies or substantial portions of the Software.
|
|
61
|
+
|
|
62
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
63
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
64
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
65
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
66
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
67
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
68
|
+
SOFTWARE.
|
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
import type { PartyPrivacy as IPartyPrivacy, Platform as IPlatform, PresenceOnlineType as IPresenceOnlineType, STWHeroType as ISTWHeroType, STWSchematicRangedSubType as ISTWSchematicRangedSubType, STWSchematicMeleeSubType as ISTWSchematicMeleeSubType, STWSchematicTrapSubType as ISTWSchematicTrapSubType, STWSchematicAlterationRarity as ISTWSchematicAlterationRarity, STWSchematicEvoType as ISTWSchematicEvoType } from '../resources/structs';
|
|
2
|
+
export interface IPartyPrivacyEnum {
|
|
3
|
+
PUBLIC: IPartyPrivacy;
|
|
4
|
+
FRIENDS_ALLOW_FRIENDS_OF_FRIENDS: IPartyPrivacy;
|
|
5
|
+
FRIENDS: IPartyPrivacy;
|
|
6
|
+
PRIVATE_ALLOW_FRIENDS_OF_FRIENDS: IPartyPrivacy;
|
|
7
|
+
PRIVATE: IPartyPrivacy;
|
|
8
|
+
}
|
|
9
|
+
export interface IPlatformEnum {
|
|
10
|
+
WINDOWS: IPlatform;
|
|
11
|
+
MAC: IPlatform;
|
|
12
|
+
PLAYSTATION: IPlatform;
|
|
13
|
+
XBOX: IPlatform;
|
|
14
|
+
SWITCH: IPlatform;
|
|
15
|
+
IOS: IPlatform;
|
|
16
|
+
ANDROID: IPlatform;
|
|
17
|
+
XBOX_SERIES_X: IPlatform;
|
|
18
|
+
PLAYSTATION_5: IPlatform;
|
|
19
|
+
}
|
|
20
|
+
export interface PlaylistEnum {
|
|
21
|
+
SOLO: 'playlist_defaultsolo';
|
|
22
|
+
DUO: 'playlist_defaultduo';
|
|
23
|
+
TRIOS: 'playlist_trios';
|
|
24
|
+
SQUAD: 'playlist_defaultsquad';
|
|
25
|
+
CREATIVE: 'playlist_playgroundv2';
|
|
26
|
+
LEGO: 'playlist_juno';
|
|
27
|
+
ROCKET_RACING: 'playlist_delmar';
|
|
28
|
+
FESTIVAL: 'playlist_sparksrhythm';
|
|
29
|
+
}
|
|
30
|
+
export interface IPresenceOnlineTypeEnum {
|
|
31
|
+
ONLINE: IPresenceOnlineType;
|
|
32
|
+
CHAT: IPresenceOnlineType;
|
|
33
|
+
AWAY: IPresenceOnlineType;
|
|
34
|
+
EXTENDED_AWAY: IPresenceOnlineType;
|
|
35
|
+
DO_NOT_DISTURB: IPresenceOnlineType;
|
|
36
|
+
}
|
|
37
|
+
export interface ISTWHeroTypeEnum {
|
|
38
|
+
SOLDIER: ISTWHeroType;
|
|
39
|
+
CONSTRUCTOR: ISTWHeroType;
|
|
40
|
+
OUTLANDER: ISTWHeroType;
|
|
41
|
+
NINJA: ISTWHeroType;
|
|
42
|
+
}
|
|
43
|
+
export interface ISTWSchematicTypeEnum {
|
|
44
|
+
RANGED_WEAPON: 'ranged';
|
|
45
|
+
MELEE_WEAPON: 'melee';
|
|
46
|
+
TRAP: 'trap';
|
|
47
|
+
OTHER: 'other';
|
|
48
|
+
}
|
|
49
|
+
export interface ISTWSchematicSubTypeEnum {
|
|
50
|
+
ASSAULT: ISTWSchematicRangedSubType;
|
|
51
|
+
LAUNCHER: ISTWSchematicRangedSubType;
|
|
52
|
+
PISTOL: ISTWSchematicRangedSubType;
|
|
53
|
+
SHOTGUN: ISTWSchematicRangedSubType;
|
|
54
|
+
SMG: ISTWSchematicRangedSubType;
|
|
55
|
+
SNIPER: ISTWSchematicRangedSubType;
|
|
56
|
+
CLUB: ISTWSchematicMeleeSubType;
|
|
57
|
+
HARDWARE: ISTWSchematicMeleeSubType;
|
|
58
|
+
AXE: ISTWSchematicMeleeSubType;
|
|
59
|
+
SCYTHE: ISTWSchematicMeleeSubType;
|
|
60
|
+
SWORD: ISTWSchematicMeleeSubType;
|
|
61
|
+
SPEAR: ISTWSchematicMeleeSubType;
|
|
62
|
+
CEILING_TRAP: ISTWSchematicTrapSubType;
|
|
63
|
+
FLOOR_TRAP: ISTWSchematicTrapSubType;
|
|
64
|
+
WALL_TRAP: ISTWSchematicTrapSubType;
|
|
65
|
+
}
|
|
66
|
+
export interface ISTWSchematicAlterationRarityEnum {
|
|
67
|
+
COMMON: ISTWSchematicAlterationRarity;
|
|
68
|
+
UNCOMMON: ISTWSchematicAlterationRarity;
|
|
69
|
+
RARE: ISTWSchematicAlterationRarity;
|
|
70
|
+
EPIC: ISTWSchematicAlterationRarity;
|
|
71
|
+
LEGENDARY: ISTWSchematicAlterationRarity;
|
|
72
|
+
}
|
|
73
|
+
export interface ISTWSchematicEvoTypeEnum {
|
|
74
|
+
ORE: ISTWSchematicEvoType;
|
|
75
|
+
CRYSTAL: ISTWSchematicEvoType;
|
|
76
|
+
}
|
|
77
|
+
export declare const PartyPrivacy: Readonly<IPartyPrivacyEnum>;
|
|
78
|
+
export declare const Platform: Readonly<IPlatformEnum>;
|
|
79
|
+
export declare const Playlist: Readonly<PlaylistEnum>;
|
|
80
|
+
export declare const Language: Readonly<{
|
|
81
|
+
ARABIC: "ar";
|
|
82
|
+
GERMAN: "de";
|
|
83
|
+
ENGLISH: "en";
|
|
84
|
+
SPANISH: "es";
|
|
85
|
+
FRENCH: "fr";
|
|
86
|
+
ITALIAN: "it";
|
|
87
|
+
JAPANESE: "ja";
|
|
88
|
+
POLISH: "pl";
|
|
89
|
+
RUSSIAN: "ru";
|
|
90
|
+
TURKISH: "tr";
|
|
91
|
+
}>;
|
|
92
|
+
export declare const Gamemode: Readonly<{
|
|
93
|
+
BATTLE_ROYALE: "battleroyale";
|
|
94
|
+
CREATIVE: "creative";
|
|
95
|
+
SAVE_THE_WORLD: "savetheworld";
|
|
96
|
+
}>;
|
|
97
|
+
export declare const DefaultSkin: Readonly<{
|
|
98
|
+
FEMALE_1: "CID_556_Athena_Commando_F_RebirthDefaultA";
|
|
99
|
+
FEMALE_2: "CID_557_Athena_Commando_F_RebirthDefaultB";
|
|
100
|
+
FEMALE_3: "CID_558_Athena_Commando_F_RebirthDefaultC";
|
|
101
|
+
FEMALE_4: "CID_559_Athena_Commando_F_RebirthDefaultD";
|
|
102
|
+
MALE_1: "CID_560_Athena_Commando_M_RebirthDefaultA";
|
|
103
|
+
MALE_2: "CID_561_Athena_Commando_M_RebirthDefaultB";
|
|
104
|
+
MALE_3: "CID_562_Athena_Commando_M_RebirthDefaultC";
|
|
105
|
+
MALE_4: "CID_563_Athena_Commando_M_RebirthDefaultD";
|
|
106
|
+
}>;
|
|
107
|
+
export declare const SeasonStart: Readonly<{
|
|
108
|
+
CH1_S1: 1508889601;
|
|
109
|
+
CH1_S2: 1513209601;
|
|
110
|
+
CH1_S3: 1519257601;
|
|
111
|
+
CH1_S4: 1525132801;
|
|
112
|
+
CH1_S5: 1531353601;
|
|
113
|
+
CH1_S6: 1538006401;
|
|
114
|
+
CH1_S7: 1544054401;
|
|
115
|
+
CH1_S8: 1551312001;
|
|
116
|
+
CH1_S9: 1557360001;
|
|
117
|
+
CH1_S10: 1564617601;
|
|
118
|
+
CH2_S1: 1571097601;
|
|
119
|
+
CH2_S2: 1582156801;
|
|
120
|
+
CH2_S3: 1592352001;
|
|
121
|
+
CH2_S4: 1598486401;
|
|
122
|
+
CH2_S5: 1606867201;
|
|
123
|
+
CH2_S6: 1615852801;
|
|
124
|
+
CH2_S7: 1623110401;
|
|
125
|
+
CH2_S8: 1631491201;
|
|
126
|
+
CH3_S1: 1638662401;
|
|
127
|
+
}>;
|
|
128
|
+
export declare const SeasonEnd: Readonly<{
|
|
129
|
+
CH1_S1: 1513123200;
|
|
130
|
+
CH1_S2: 1519171200;
|
|
131
|
+
CH1_S3: 1525046400;
|
|
132
|
+
CH1_S4: 1531353600;
|
|
133
|
+
CH1_S5: 1538006400;
|
|
134
|
+
CH1_S6: 1544054400;
|
|
135
|
+
CH1_S7: 1551312000;
|
|
136
|
+
CH1_S8: 1557360000;
|
|
137
|
+
CH1_S9: 1564617600;
|
|
138
|
+
CH1_S10: 1570924800;
|
|
139
|
+
CH2_S1: 1582156800;
|
|
140
|
+
CH2_S2: 1592352000;
|
|
141
|
+
CH2_S3: 1598486400;
|
|
142
|
+
CH2_S4: 1606867200;
|
|
143
|
+
CH2_S5: 1615852800;
|
|
144
|
+
CH2_S6: 1623110400;
|
|
145
|
+
CH2_S7: 1631491200;
|
|
146
|
+
CH2_S8: 1638662400;
|
|
147
|
+
}>;
|
|
148
|
+
export declare const STWLeadSynergy: Readonly<{
|
|
149
|
+
trainingteam: "IsTrainer";
|
|
150
|
+
fireteamalpha: "IsSoldier";
|
|
151
|
+
closeassaultsquad: "IsMartialArtist";
|
|
152
|
+
thethinktank: "IsInventor";
|
|
153
|
+
emtsquad: "IsDoctor";
|
|
154
|
+
corpsofengineering: "IsEngineer";
|
|
155
|
+
scoutingparty: "IsExplorer";
|
|
156
|
+
gadgeteers: "IsGadgeteer";
|
|
157
|
+
}>;
|
|
158
|
+
export declare const PresenceOnlineType: Readonly<IPresenceOnlineTypeEnum>;
|
|
159
|
+
export declare const STWHeroType: Readonly<ISTWHeroTypeEnum>;
|
|
160
|
+
export declare const STWSchematicSubType: Readonly<ISTWSchematicSubTypeEnum>;
|
|
161
|
+
export declare const STWSchematicAlterationRarity: Readonly<ISTWSchematicAlterationRarityEnum>;
|
|
162
|
+
export declare const STWSchematicEvoType: Readonly<ISTWSchematicEvoTypeEnum>;
|
|
163
|
+
declare const _default: Readonly<{
|
|
164
|
+
PartyPrivacy: Readonly<IPartyPrivacyEnum>;
|
|
165
|
+
Platform: Readonly<IPlatformEnum>;
|
|
166
|
+
Playlist: Readonly<PlaylistEnum>;
|
|
167
|
+
Language: Readonly<{
|
|
168
|
+
ARABIC: "ar";
|
|
169
|
+
GERMAN: "de";
|
|
170
|
+
ENGLISH: "en";
|
|
171
|
+
SPANISH: "es";
|
|
172
|
+
FRENCH: "fr";
|
|
173
|
+
ITALIAN: "it";
|
|
174
|
+
JAPANESE: "ja";
|
|
175
|
+
POLISH: "pl";
|
|
176
|
+
RUSSIAN: "ru";
|
|
177
|
+
TURKISH: "tr";
|
|
178
|
+
}>;
|
|
179
|
+
Gamemode: Readonly<{
|
|
180
|
+
BATTLE_ROYALE: "battleroyale";
|
|
181
|
+
CREATIVE: "creative";
|
|
182
|
+
SAVE_THE_WORLD: "savetheworld";
|
|
183
|
+
}>;
|
|
184
|
+
DefaultSkin: Readonly<{
|
|
185
|
+
FEMALE_1: "CID_556_Athena_Commando_F_RebirthDefaultA";
|
|
186
|
+
FEMALE_2: "CID_557_Athena_Commando_F_RebirthDefaultB";
|
|
187
|
+
FEMALE_3: "CID_558_Athena_Commando_F_RebirthDefaultC";
|
|
188
|
+
FEMALE_4: "CID_559_Athena_Commando_F_RebirthDefaultD";
|
|
189
|
+
MALE_1: "CID_560_Athena_Commando_M_RebirthDefaultA";
|
|
190
|
+
MALE_2: "CID_561_Athena_Commando_M_RebirthDefaultB";
|
|
191
|
+
MALE_3: "CID_562_Athena_Commando_M_RebirthDefaultC";
|
|
192
|
+
MALE_4: "CID_563_Athena_Commando_M_RebirthDefaultD";
|
|
193
|
+
}>;
|
|
194
|
+
SeasonStart: Readonly<{
|
|
195
|
+
CH1_S1: 1508889601;
|
|
196
|
+
CH1_S2: 1513209601;
|
|
197
|
+
CH1_S3: 1519257601;
|
|
198
|
+
CH1_S4: 1525132801;
|
|
199
|
+
CH1_S5: 1531353601;
|
|
200
|
+
CH1_S6: 1538006401;
|
|
201
|
+
CH1_S7: 1544054401;
|
|
202
|
+
CH1_S8: 1551312001;
|
|
203
|
+
CH1_S9: 1557360001;
|
|
204
|
+
CH1_S10: 1564617601;
|
|
205
|
+
CH2_S1: 1571097601;
|
|
206
|
+
CH2_S2: 1582156801;
|
|
207
|
+
CH2_S3: 1592352001;
|
|
208
|
+
CH2_S4: 1598486401;
|
|
209
|
+
CH2_S5: 1606867201;
|
|
210
|
+
CH2_S6: 1615852801;
|
|
211
|
+
CH2_S7: 1623110401;
|
|
212
|
+
CH2_S8: 1631491201;
|
|
213
|
+
CH3_S1: 1638662401;
|
|
214
|
+
}>;
|
|
215
|
+
SeasonEnd: Readonly<{
|
|
216
|
+
CH1_S1: 1513123200;
|
|
217
|
+
CH1_S2: 1519171200;
|
|
218
|
+
CH1_S3: 1525046400;
|
|
219
|
+
CH1_S4: 1531353600;
|
|
220
|
+
CH1_S5: 1538006400;
|
|
221
|
+
CH1_S6: 1544054400;
|
|
222
|
+
CH1_S7: 1551312000;
|
|
223
|
+
CH1_S8: 1557360000;
|
|
224
|
+
CH1_S9: 1564617600;
|
|
225
|
+
CH1_S10: 1570924800;
|
|
226
|
+
CH2_S1: 1582156800;
|
|
227
|
+
CH2_S2: 1592352000;
|
|
228
|
+
CH2_S3: 1598486400;
|
|
229
|
+
CH2_S4: 1606867200;
|
|
230
|
+
CH2_S5: 1615852800;
|
|
231
|
+
CH2_S6: 1623110400;
|
|
232
|
+
CH2_S7: 1631491200;
|
|
233
|
+
CH2_S8: 1638662400;
|
|
234
|
+
}>;
|
|
235
|
+
STWLeadSynergy: Readonly<{
|
|
236
|
+
trainingteam: "IsTrainer";
|
|
237
|
+
fireteamalpha: "IsSoldier";
|
|
238
|
+
closeassaultsquad: "IsMartialArtist";
|
|
239
|
+
thethinktank: "IsInventor";
|
|
240
|
+
emtsquad: "IsDoctor";
|
|
241
|
+
corpsofengineering: "IsEngineer";
|
|
242
|
+
scoutingparty: "IsExplorer";
|
|
243
|
+
gadgeteers: "IsGadgeteer";
|
|
244
|
+
}>;
|
|
245
|
+
PresenceOnlineType: Readonly<IPresenceOnlineTypeEnum>;
|
|
246
|
+
STWHeroType: Readonly<ISTWHeroTypeEnum>;
|
|
247
|
+
STWSchematicSubType: Readonly<ISTWSchematicSubTypeEnum>;
|
|
248
|
+
STWSchematicAlterationRarity: Readonly<ISTWSchematicAlterationRarityEnum>;
|
|
249
|
+
STWSchematicEvoType: Readonly<ISTWSchematicEvoTypeEnum>;
|
|
250
|
+
}>;
|
|
251
|
+
export default _default;
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.STWSchematicEvoType = exports.STWSchematicAlterationRarity = exports.STWSchematicSubType = exports.STWHeroType = exports.PresenceOnlineType = exports.STWLeadSynergy = exports.SeasonEnd = exports.SeasonStart = exports.DefaultSkin = exports.Gamemode = exports.Language = exports.Playlist = exports.Platform = exports.PartyPrivacy = void 0;
|
|
4
|
+
exports.PartyPrivacy = Object.freeze({
|
|
5
|
+
PUBLIC: {
|
|
6
|
+
partyType: 'Public',
|
|
7
|
+
inviteRestriction: 'AnyMember',
|
|
8
|
+
onlyLeaderFriendsCanJoin: false,
|
|
9
|
+
presencePermission: 'Anyone',
|
|
10
|
+
invitePermission: 'Anyone',
|
|
11
|
+
acceptingMembers: true,
|
|
12
|
+
},
|
|
13
|
+
FRIENDS_ALLOW_FRIENDS_OF_FRIENDS: {
|
|
14
|
+
partyType: 'FriendsOnly',
|
|
15
|
+
inviteRestriction: 'AnyMember',
|
|
16
|
+
onlyLeaderFriendsCanJoin: false,
|
|
17
|
+
presencePermission: 'Anyone',
|
|
18
|
+
invitePermission: 'AnyMember',
|
|
19
|
+
acceptingMembers: true,
|
|
20
|
+
},
|
|
21
|
+
FRIENDS: {
|
|
22
|
+
partyType: 'FriendsOnly',
|
|
23
|
+
inviteRestriction: 'LeaderOnly',
|
|
24
|
+
onlyLeaderFriendsCanJoin: true,
|
|
25
|
+
presencePermission: 'Leader',
|
|
26
|
+
invitePermission: 'Leader',
|
|
27
|
+
acceptingMembers: false,
|
|
28
|
+
},
|
|
29
|
+
PRIVATE_ALLOW_FRIENDS_OF_FRIENDS: {
|
|
30
|
+
partyType: 'Private',
|
|
31
|
+
inviteRestriction: 'AnyMember',
|
|
32
|
+
onlyLeaderFriendsCanJoin: false,
|
|
33
|
+
presencePermission: 'Noone',
|
|
34
|
+
invitePermission: 'AnyMember',
|
|
35
|
+
acceptingMembers: false,
|
|
36
|
+
},
|
|
37
|
+
PRIVATE: {
|
|
38
|
+
partyType: 'Private',
|
|
39
|
+
inviteRestriction: 'LeaderOnly',
|
|
40
|
+
onlyLeaderFriendsCanJoin: true,
|
|
41
|
+
presencePermission: 'Noone',
|
|
42
|
+
invitePermission: 'Leader',
|
|
43
|
+
acceptingMembers: false,
|
|
44
|
+
},
|
|
45
|
+
});
|
|
46
|
+
exports.Platform = Object.freeze({
|
|
47
|
+
WINDOWS: 'WIN',
|
|
48
|
+
MAC: 'MAC',
|
|
49
|
+
PLAYSTATION: 'PSN',
|
|
50
|
+
XBOX: 'XBL',
|
|
51
|
+
SWITCH: 'SWT',
|
|
52
|
+
IOS: 'IOS',
|
|
53
|
+
ANDROID: 'AND',
|
|
54
|
+
XBOX_SERIES_X: 'XSX',
|
|
55
|
+
PLAYSTATION_5: 'PS5',
|
|
56
|
+
});
|
|
57
|
+
exports.Playlist = Object.freeze({
|
|
58
|
+
SOLO: 'playlist_defaultsolo',
|
|
59
|
+
DUO: 'playlist_defaultduo',
|
|
60
|
+
TRIOS: 'playlist_trios',
|
|
61
|
+
SQUAD: 'playlist_defaultsquad',
|
|
62
|
+
CREATIVE: 'playlist_playgroundv2',
|
|
63
|
+
LEGO: 'playlist_juno',
|
|
64
|
+
ROCKET_RACING: 'playlist_delmar',
|
|
65
|
+
FESTIVAL: 'playlist_sparksrhythm',
|
|
66
|
+
});
|
|
67
|
+
exports.Language = Object.freeze({
|
|
68
|
+
ARABIC: 'ar',
|
|
69
|
+
GERMAN: 'de',
|
|
70
|
+
ENGLISH: 'en',
|
|
71
|
+
SPANISH: 'es',
|
|
72
|
+
FRENCH: 'fr',
|
|
73
|
+
ITALIAN: 'it',
|
|
74
|
+
JAPANESE: 'ja',
|
|
75
|
+
POLISH: 'pl',
|
|
76
|
+
RUSSIAN: 'ru',
|
|
77
|
+
TURKISH: 'tr',
|
|
78
|
+
});
|
|
79
|
+
exports.Gamemode = Object.freeze({
|
|
80
|
+
BATTLE_ROYALE: 'battleroyale',
|
|
81
|
+
CREATIVE: 'creative',
|
|
82
|
+
SAVE_THE_WORLD: 'savetheworld',
|
|
83
|
+
});
|
|
84
|
+
exports.DefaultSkin = Object.freeze({
|
|
85
|
+
FEMALE_1: 'CID_556_Athena_Commando_F_RebirthDefaultA',
|
|
86
|
+
FEMALE_2: 'CID_557_Athena_Commando_F_RebirthDefaultB',
|
|
87
|
+
FEMALE_3: 'CID_558_Athena_Commando_F_RebirthDefaultC',
|
|
88
|
+
FEMALE_4: 'CID_559_Athena_Commando_F_RebirthDefaultD',
|
|
89
|
+
MALE_1: 'CID_560_Athena_Commando_M_RebirthDefaultA',
|
|
90
|
+
MALE_2: 'CID_561_Athena_Commando_M_RebirthDefaultB',
|
|
91
|
+
MALE_3: 'CID_562_Athena_Commando_M_RebirthDefaultC',
|
|
92
|
+
MALE_4: 'CID_563_Athena_Commando_M_RebirthDefaultD',
|
|
93
|
+
});
|
|
94
|
+
exports.SeasonStart = Object.freeze({
|
|
95
|
+
CH1_S1: 1508889601,
|
|
96
|
+
CH1_S2: 1513209601,
|
|
97
|
+
CH1_S3: 1519257601,
|
|
98
|
+
CH1_S4: 1525132801,
|
|
99
|
+
CH1_S5: 1531353601,
|
|
100
|
+
CH1_S6: 1538006401,
|
|
101
|
+
CH1_S7: 1544054401,
|
|
102
|
+
CH1_S8: 1551312001,
|
|
103
|
+
CH1_S9: 1557360001,
|
|
104
|
+
CH1_S10: 1564617601,
|
|
105
|
+
CH2_S1: 1571097601,
|
|
106
|
+
CH2_S2: 1582156801,
|
|
107
|
+
CH2_S3: 1592352001,
|
|
108
|
+
CH2_S4: 1598486401,
|
|
109
|
+
CH2_S5: 1606867201,
|
|
110
|
+
CH2_S6: 1615852801,
|
|
111
|
+
CH2_S7: 1623110401,
|
|
112
|
+
CH2_S8: 1631491201,
|
|
113
|
+
CH3_S1: 1638662401,
|
|
114
|
+
});
|
|
115
|
+
exports.SeasonEnd = Object.freeze({
|
|
116
|
+
CH1_S1: 1513123200,
|
|
117
|
+
CH1_S2: 1519171200,
|
|
118
|
+
CH1_S3: 1525046400,
|
|
119
|
+
CH1_S4: 1531353600,
|
|
120
|
+
CH1_S5: 1538006400,
|
|
121
|
+
CH1_S6: 1544054400,
|
|
122
|
+
CH1_S7: 1551312000,
|
|
123
|
+
CH1_S8: 1557360000,
|
|
124
|
+
CH1_S9: 1564617600,
|
|
125
|
+
CH1_S10: 1570924800,
|
|
126
|
+
CH2_S1: 1582156800,
|
|
127
|
+
CH2_S2: 1592352000,
|
|
128
|
+
CH2_S3: 1598486400,
|
|
129
|
+
CH2_S4: 1606867200,
|
|
130
|
+
CH2_S5: 1615852800,
|
|
131
|
+
CH2_S6: 1623110400,
|
|
132
|
+
CH2_S7: 1631491200,
|
|
133
|
+
CH2_S8: 1638662400,
|
|
134
|
+
});
|
|
135
|
+
exports.STWLeadSynergy = Object.freeze({
|
|
136
|
+
trainingteam: 'IsTrainer',
|
|
137
|
+
fireteamalpha: 'IsSoldier',
|
|
138
|
+
closeassaultsquad: 'IsMartialArtist',
|
|
139
|
+
thethinktank: 'IsInventor',
|
|
140
|
+
emtsquad: 'IsDoctor',
|
|
141
|
+
corpsofengineering: 'IsEngineer',
|
|
142
|
+
scoutingparty: 'IsExplorer',
|
|
143
|
+
gadgeteers: 'IsGadgeteer',
|
|
144
|
+
});
|
|
145
|
+
exports.PresenceOnlineType = Object.freeze({
|
|
146
|
+
ONLINE: 'online',
|
|
147
|
+
CHAT: 'chat',
|
|
148
|
+
AWAY: 'away',
|
|
149
|
+
EXTENDED_AWAY: 'xa',
|
|
150
|
+
DO_NOT_DISTURB: 'dnd',
|
|
151
|
+
});
|
|
152
|
+
exports.STWHeroType = Object.freeze({
|
|
153
|
+
SOLDIER: 'commando',
|
|
154
|
+
CONSTRUCTOR: 'constructor',
|
|
155
|
+
OUTLANDER: 'outlander',
|
|
156
|
+
NINJA: 'ninja',
|
|
157
|
+
});
|
|
158
|
+
exports.STWSchematicSubType = Object.freeze({
|
|
159
|
+
ASSAULT: 'assault',
|
|
160
|
+
LAUNCHER: 'launcher',
|
|
161
|
+
PISTOL: 'pistol',
|
|
162
|
+
SHOTGUN: 'shotgun',
|
|
163
|
+
SMG: 'smg',
|
|
164
|
+
SNIPER: 'sniper',
|
|
165
|
+
CLUB: 'blunt',
|
|
166
|
+
HARDWARE: 'blunt_hammer',
|
|
167
|
+
AXE: 'edged_axe',
|
|
168
|
+
SCYTHE: 'edged_scythe',
|
|
169
|
+
SWORD: 'edged_sword',
|
|
170
|
+
SPEAR: 'piercing_spear',
|
|
171
|
+
CEILING_TRAP: 'ceiling',
|
|
172
|
+
FLOOR_TRAP: 'floor',
|
|
173
|
+
WALL_TRAP: 'wall',
|
|
174
|
+
});
|
|
175
|
+
exports.STWSchematicAlterationRarity = Object.freeze({
|
|
176
|
+
COMMON: 'common',
|
|
177
|
+
UNCOMMON: 'uncommon',
|
|
178
|
+
RARE: 'rare',
|
|
179
|
+
EPIC: 'epic',
|
|
180
|
+
LEGENDARY: 'legendary',
|
|
181
|
+
});
|
|
182
|
+
exports.STWSchematicEvoType = Object.freeze({
|
|
183
|
+
ORE: 'ore',
|
|
184
|
+
CRYSTAL: 'crystal',
|
|
185
|
+
});
|
|
186
|
+
exports.default = Object.freeze({
|
|
187
|
+
PartyPrivacy: exports.PartyPrivacy,
|
|
188
|
+
Platform: exports.Platform,
|
|
189
|
+
Playlist: exports.Playlist,
|
|
190
|
+
Language: exports.Language,
|
|
191
|
+
Gamemode: exports.Gamemode,
|
|
192
|
+
DefaultSkin: exports.DefaultSkin,
|
|
193
|
+
SeasonStart: exports.SeasonStart,
|
|
194
|
+
SeasonEnd: exports.SeasonEnd,
|
|
195
|
+
STWLeadSynergy: exports.STWLeadSynergy,
|
|
196
|
+
PresenceOnlineType: exports.PresenceOnlineType,
|
|
197
|
+
STWHeroType: exports.STWHeroType,
|
|
198
|
+
STWSchematicSubType: exports.STWSchematicSubType,
|
|
199
|
+
STWSchematicAlterationRarity: exports.STWSchematicAlterationRarity,
|
|
200
|
+
STWSchematicEvoType: exports.STWSchematicEvoType,
|
|
201
|
+
});
|
|
202
|
+
//# sourceMappingURL=Enums.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Enums.js","sourceRoot":"","sources":["../../enums/Enums.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
export { default as Client } from './src/Client';
|
|
2
|
+
export { default as Enums } from './enums/Enums';
|
|
3
|
+
export * from './resources/structs';
|
|
4
|
+
export { default as Endpoints } from './resources/Endpoints';
|
|
5
|
+
export { default as AuthenticationMissingError } from './src/exceptions/AuthenticationMissingError';
|
|
6
|
+
export { default as CreativeIslandNotFoundError } from './src/exceptions/CreativeIslandNotFoundError';
|
|
7
|
+
export { default as CreatorCodeNotFoundError } from './src/exceptions/CreatorCodeNotFoundError';
|
|
8
|
+
export { default as DuplicateFriendshipError } from './src/exceptions/DuplicateFriendshipError';
|
|
9
|
+
export { default as EpicgamesAPIError } from './src/exceptions/EpicgamesAPIError';
|
|
10
|
+
export { default as EventTimeoutError } from './src/exceptions/EventTimeoutError';
|
|
11
|
+
export { default as FriendNotFoundError } from './src/exceptions/FriendNotFoundError';
|
|
12
|
+
export { default as FriendshipRequestAlreadySentError } from './src/exceptions/FriendshipRequestAlreadySentError';
|
|
13
|
+
export { default as InviteeFriendshipRequestLimitExceededError } from './src/exceptions/InviteeFriendshipRequestLimitExceededError';
|
|
14
|
+
export { default as InviteeFriendshipSettingsError } from './src/exceptions/InviteeFriendshipSettingsError';
|
|
15
|
+
export { default as InviteeFriendshipsLimitExceededError } from './src/exceptions/InviteeFriendshipsLimitExceededError';
|
|
16
|
+
export { default as InviterFriendshipsLimitExceededError } from './src/exceptions/InviterFriendshipsLimitExceededError';
|
|
17
|
+
export { default as MatchNotFoundError } from './src/exceptions/MatchNotFoundError';
|
|
18
|
+
export { default as OfferNotFoundError } from './src/exceptions/OfferNotFoundError';
|
|
19
|
+
export { default as PartyAlreadyJoinedError } from './src/exceptions/PartyAlreadyJoinedError';
|
|
20
|
+
export { default as PartyInvitationExpiredError } from './src/exceptions/PartyInvitationExpiredError';
|
|
21
|
+
export { default as PartyMaxSizeReachedError } from './src/exceptions/PartyMaxSizeReachedError';
|
|
22
|
+
export { default as PartyMemberNotFoundError } from './src/exceptions/PartyMemberNotFoundError';
|
|
23
|
+
export { default as PartyNotFoundError } from './src/exceptions/PartyNotFoundError';
|
|
24
|
+
export { default as PartyPermissionError } from './src/exceptions/PartyPermissionError';
|
|
25
|
+
export { default as SendMessageError } from './src/exceptions/SendMessageError';
|
|
26
|
+
export { default as StatsPrivacyError } from './src/exceptions/StatsPrivacyError';
|
|
27
|
+
export { default as StompConnectionError } from './src/exceptions/StompConnectionError';
|
|
28
|
+
export { default as UserNotFoundError } from './src/exceptions/UserNotFoundError';
|
|
29
|
+
export { default as XMPPConnectionError } from './src/exceptions/XMPPConnectionError';
|
|
30
|
+
export { default as XMPPConnectionTimeoutError } from './src/exceptions/XMPPConnectionTimeoutError';
|
|
31
|
+
export { default as Avatar } from './src/structures/Avatar';
|
|
32
|
+
export { default as BaseMessage } from './src/structures/BaseMessage';
|
|
33
|
+
export { default as CreatorCode } from './src/structures/CreatorCode';
|
|
34
|
+
export { default as EpicgamesServerStatus } from './src/structures/EpicgamesServerStatus';
|
|
35
|
+
export { default as EpicgamesServerStatusComponent } from './src/structures/EpicgamesServerStatusComponent';
|
|
36
|
+
export { default as EpicgamesServerStatusIncident } from './src/structures/EpicgamesServerStatusIncident';
|
|
37
|
+
export { default as EpicgamesServerStatusScheduledMainteance } from './src/structures/EpicgamesServerStatusScheduledMainteance';
|
|
38
|
+
export { default as EventTokens } from './src/structures/EventTokens';
|
|
39
|
+
export { default as FortniteServerStatus } from './src/structures/FortniteServerStatus';
|
|
40
|
+
export { default as GlobalProfile } from './src/structures/GlobalProfile';
|
|
41
|
+
export { default as Image } from './src/structures/Image';
|
|
42
|
+
export { default as NewsMessage } from './src/structures/NewsMessage';
|
|
43
|
+
export { default as NewsMessageVideo } from './src/structures/NewsMessageVideo';
|
|
44
|
+
export { default as RadioStation } from './src/structures/RadioStation';
|
|
45
|
+
export { default as Stats } from './src/structures/Stats';
|
|
46
|
+
export { default as Tournament } from './src/structures/Tournament';
|
|
47
|
+
export { default as TournamentWindow } from './src/structures/TournamentWindow';
|
|
48
|
+
export { default as BaseFriendMessage } from './src/structures/friend/BaseFriendMessage';
|
|
49
|
+
export { default as BasePendingFriend } from './src/structures/friend/BasePendingFriend';
|
|
50
|
+
export { default as Friend } from './src/structures/friend/Friend';
|
|
51
|
+
export { default as FriendPresence } from './src/structures/friend/FriendPresence';
|
|
52
|
+
export { default as IncomingPendingFriend } from './src/structures/friend/IncomingPendingFriend';
|
|
53
|
+
export { default as OutgoingPendingFriend } from './src/structures/friend/OutgoingPendingFriend';
|
|
54
|
+
export { default as ReceivedFriendMessage } from './src/structures/friend/ReceivedFriendMessage';
|
|
55
|
+
export { default as SentFriendMessage } from './src/structures/friend/SentFriendMessage';
|
|
56
|
+
export { default as BasePartyInvitation } from './src/structures/party/BasePartyInvitation';
|
|
57
|
+
export { default as BasePartyJoinRequest } from './src/structures/party/BasePartyJoinRequest';
|
|
58
|
+
export { default as ClientParty } from './src/structures/party/ClientParty';
|
|
59
|
+
export { default as ClientPartyMember } from './src/structures/party/ClientPartyMember';
|
|
60
|
+
export { default as ClientPartyMemberMeta } from './src/structures/party/ClientPartyMemberMeta';
|
|
61
|
+
export { default as ClientPartyMeta } from './src/structures/party/ClientPartyMeta';
|
|
62
|
+
export { default as Party } from './src/structures/party/Party';
|
|
63
|
+
export { default as PartyChat } from './src/structures/party/PartyChat';
|
|
64
|
+
export { default as PartyMember } from './src/structures/party/PartyMember';
|
|
65
|
+
export { default as PartyMemberConfirmation } from './src/structures/party/PartyMemberConfirmation';
|
|
66
|
+
export { default as PartyMemberMeta } from './src/structures/party/PartyMemberMeta';
|
|
67
|
+
export { default as PartyMessage } from './src/structures/party/PartyMessage';
|
|
68
|
+
export { default as PartyMeta } from './src/structures/party/PartyMeta';
|
|
69
|
+
export { default as PresenceParty } from './src/structures/party/PresenceParty';
|
|
70
|
+
export { default as ReceivedPartyInvitation } from './src/structures/party/ReceivedPartyInvitation';
|
|
71
|
+
export { default as ReceivedPartyJoinRequest } from './src/structures/party/ReceivedPartyJoinRequest';
|
|
72
|
+
export { default as SentPartyInvitation } from './src/structures/party/SentPartyInvitation';
|
|
73
|
+
export { default as SentPartyJoinRequest } from './src/structures/party/SentPartyJoinRequest';
|
|
74
|
+
export { default as STWHero } from './src/structures/stw/STWHero';
|
|
75
|
+
export { default as STWHeroLoadout } from './src/structures/stw/STWHeroLoadout';
|
|
76
|
+
export { default as STWItem } from './src/structures/stw/STWItem';
|
|
77
|
+
export { default as STWLocker } from './src/structures/stw/STWLocker';
|
|
78
|
+
export { default as STWMeleeWeaponSchematic } from './src/structures/stw/STWMeleeWeaponSchematic';
|
|
79
|
+
export { default as STWNewsMessage } from './src/structures/stw/STWNewsMessage';
|
|
80
|
+
export { default as STWProfile } from './src/structures/stw/STWProfile';
|
|
81
|
+
export { default as STWRangedWeaponSchematic } from './src/structures/stw/STWRangedWeaponSchematic';
|
|
82
|
+
export { default as STWResource } from './src/structures/stw/STWResource';
|
|
83
|
+
export { default as STWSchematic } from './src/structures/stw/STWSchematic';
|
|
84
|
+
export { default as STWStats } from './src/structures/stw/STWStats';
|
|
85
|
+
export { default as STWSurvivor } from './src/structures/stw/STWSurvivor';
|
|
86
|
+
export { default as STWTeamPerk } from './src/structures/stw/STWTeamPerk';
|
|
87
|
+
export { default as STWTrapSchematic } from './src/structures/stw/STWTrapSchematic';
|
|
88
|
+
export { default as STWWeaponSchematic } from './src/structures/stw/STWWeaponSchematic';
|
|
89
|
+
export { default as BlockedUser } from './src/structures/user/BlockedUser';
|
|
90
|
+
export { default as ClientUser } from './src/structures/user/ClientUser';
|
|
91
|
+
export { default as User } from './src/structures/user/User';
|
|
92
|
+
export { default as UserSearchResult } from './src/structures/user/UserSearchResult';
|