├── .gitignore ├── LICENSE.md ├── README.md ├── docs ├── assets │ ├── css │ │ ├── main.css │ │ └── main.css.map │ ├── images │ │ ├── icons.png │ │ ├── icons@2x.png │ │ ├── widgets.png │ │ └── widgets@2x.png │ └── js │ │ ├── main.js │ │ └── search.js ├── classes │ ├── apierror.html │ ├── attachmentnotfounderror.html │ ├── attachmenturlmissingerror.html │ ├── authapierror.html │ ├── client.html │ ├── randomintgenerator.html │ └── uploadapierror.html ├── globals.html ├── index.html └── interfaces │ ├── addthreadadminsevent.html │ ├── advertxma.html │ ├── attachment.html │ ├── audioattachment.html │ ├── authtokens.html │ ├── changethreadiconevent.html │ ├── changethreadnicknameevent.html │ ├── changethreadthemeevent.html │ ├── clientevents.html │ ├── clientoptions.html │ ├── deliveryreceiptevent.html │ ├── deviceid.html │ ├── event.html │ ├── eventreminderxma.html │ ├── externalurlxma.html │ ├── fileattachment.html │ ├── groupxma.html │ ├── imageattachment.html │ ├── instagramxma.html │ ├── leaderboardupdatexma.html │ ├── lightweightactionxma.html │ ├── livelocationxma.html │ ├── locationxma.html │ ├── messageevent.html │ ├── montagexma.html │ ├── pagexma.html │ ├── participantleftgroupthreadevent.html │ ├── participantsaddedtogroupthreadevent.html │ ├── plancreateevent.html │ ├── plandeleteevent.html │ ├── planevent.html │ ├── planguest.html │ ├── planrsvpevent.html │ ├── planupdatelocationevent.html │ ├── planupdatetimeevent.html │ ├── planupdatetitleevent.html │ ├── pollcreateevent.html │ ├── pollevent.html │ ├── polloption.html │ ├── pollupdatevoteevent.html │ ├── productxma.html │ ├── readreceiptevent.html │ ├── session.html │ ├── storyxma.html │ ├── thread.html │ ├── threadnameevent.html │ ├── unavailablexma.html │ ├── user.html │ ├── videoattachment.html │ └── xmaattachment.html ├── package.json ├── src ├── Client.ts ├── ClientEvents.ts ├── FacebookDeviceId.ts ├── RandomIntGenerator.ts ├── http │ ├── BaseHttpApi.ts │ ├── GraphQLRequest.ts │ ├── HttpApi.ts │ └── HttpApiRequest.ts ├── index.ts ├── mqtt │ ├── MqttApi.ts │ ├── MqttConnection.ts │ ├── MqttMessage.ts │ ├── MqttPacket.ts │ ├── MqttTypes.ts │ ├── PacketReader.ts │ ├── messages │ │ ├── Connect.ts │ │ ├── Message.ts │ │ ├── MessageTypes.ts │ │ ├── Ping.ts │ │ ├── Publish.ts │ │ ├── PublishAck.ts │ │ ├── PublishRecorded.ts │ │ ├── Subscribe.ts │ │ └── Unsubscribe.ts │ └── payloads │ │ ├── ConnectPayload.ts │ │ ├── Payload.ts │ │ ├── PresenceStatePayload.ts │ │ ├── ReadReceiptPayload.ts │ │ ├── ThreadKey.ts │ │ ├── TypingStatePayload.ts │ │ └── index.ts └── types │ ├── Attachment.ts │ ├── AuthTokens.ts │ ├── DeviceId.ts │ ├── Errors.ts │ ├── Events.ts │ ├── FacebookCapFlags.ts │ ├── Message.ts │ ├── Session.ts │ ├── Thread.ts │ ├── User.ts │ ├── attachments │ ├── FileAttachment.ts │ ├── XMAAttachment.ts │ ├── parseAttachments.ts │ ├── parseBlobAttachment.ts │ ├── parseFileAttachment.ts │ └── parseXMAAttachment.ts │ ├── events │ ├── PlanEvents.ts │ ├── PollEvents.ts │ ├── ThreadCustomizationEvents.ts │ ├── ThreadEvents.ts │ ├── parseAdminMessage.ts │ ├── parseDeltaEvent.ts │ ├── parsePlanEvent.ts │ └── parsePollEvent.ts │ ├── message │ ├── parseDeltaMessage.ts │ └── parseThreadMessage.ts │ ├── thread │ └── parseThread.ts │ └── user │ └── parseUser.ts ├── test ├── deviceIds.ts ├── mqqtConnection.ts └── thriftTests.ts ├── tsconfig.json ├── tslint.json └── typedoc.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/README.md -------------------------------------------------------------------------------- /docs/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/assets/css/main.css -------------------------------------------------------------------------------- /docs/assets/css/main.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/assets/css/main.css.map -------------------------------------------------------------------------------- /docs/assets/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/assets/images/icons.png -------------------------------------------------------------------------------- /docs/assets/images/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/assets/images/icons@2x.png -------------------------------------------------------------------------------- /docs/assets/images/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/assets/images/widgets.png -------------------------------------------------------------------------------- /docs/assets/images/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/assets/images/widgets@2x.png -------------------------------------------------------------------------------- /docs/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/assets/js/main.js -------------------------------------------------------------------------------- /docs/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/assets/js/search.js -------------------------------------------------------------------------------- /docs/classes/apierror.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/classes/apierror.html -------------------------------------------------------------------------------- /docs/classes/attachmentnotfounderror.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/classes/attachmentnotfounderror.html -------------------------------------------------------------------------------- /docs/classes/attachmenturlmissingerror.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/classes/attachmenturlmissingerror.html -------------------------------------------------------------------------------- /docs/classes/authapierror.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/classes/authapierror.html -------------------------------------------------------------------------------- /docs/classes/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/classes/client.html -------------------------------------------------------------------------------- /docs/classes/randomintgenerator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/classes/randomintgenerator.html -------------------------------------------------------------------------------- /docs/classes/uploadapierror.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/classes/uploadapierror.html -------------------------------------------------------------------------------- /docs/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/globals.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/interfaces/addthreadadminsevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/addthreadadminsevent.html -------------------------------------------------------------------------------- /docs/interfaces/advertxma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/advertxma.html -------------------------------------------------------------------------------- /docs/interfaces/attachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/attachment.html -------------------------------------------------------------------------------- /docs/interfaces/audioattachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/audioattachment.html -------------------------------------------------------------------------------- /docs/interfaces/authtokens.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/authtokens.html -------------------------------------------------------------------------------- /docs/interfaces/changethreadiconevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/changethreadiconevent.html -------------------------------------------------------------------------------- /docs/interfaces/changethreadnicknameevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/changethreadnicknameevent.html -------------------------------------------------------------------------------- /docs/interfaces/changethreadthemeevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/changethreadthemeevent.html -------------------------------------------------------------------------------- /docs/interfaces/clientevents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/clientevents.html -------------------------------------------------------------------------------- /docs/interfaces/clientoptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/clientoptions.html -------------------------------------------------------------------------------- /docs/interfaces/deliveryreceiptevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/deliveryreceiptevent.html -------------------------------------------------------------------------------- /docs/interfaces/deviceid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/deviceid.html -------------------------------------------------------------------------------- /docs/interfaces/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/event.html -------------------------------------------------------------------------------- /docs/interfaces/eventreminderxma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/eventreminderxma.html -------------------------------------------------------------------------------- /docs/interfaces/externalurlxma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/externalurlxma.html -------------------------------------------------------------------------------- /docs/interfaces/fileattachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/fileattachment.html -------------------------------------------------------------------------------- /docs/interfaces/groupxma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/groupxma.html -------------------------------------------------------------------------------- /docs/interfaces/imageattachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/imageattachment.html -------------------------------------------------------------------------------- /docs/interfaces/instagramxma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/instagramxma.html -------------------------------------------------------------------------------- /docs/interfaces/leaderboardupdatexma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/leaderboardupdatexma.html -------------------------------------------------------------------------------- /docs/interfaces/lightweightactionxma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/lightweightactionxma.html -------------------------------------------------------------------------------- /docs/interfaces/livelocationxma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/livelocationxma.html -------------------------------------------------------------------------------- /docs/interfaces/locationxma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/locationxma.html -------------------------------------------------------------------------------- /docs/interfaces/messageevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/messageevent.html -------------------------------------------------------------------------------- /docs/interfaces/montagexma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/montagexma.html -------------------------------------------------------------------------------- /docs/interfaces/pagexma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/pagexma.html -------------------------------------------------------------------------------- /docs/interfaces/participantleftgroupthreadevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/participantleftgroupthreadevent.html -------------------------------------------------------------------------------- /docs/interfaces/participantsaddedtogroupthreadevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/participantsaddedtogroupthreadevent.html -------------------------------------------------------------------------------- /docs/interfaces/plancreateevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/plancreateevent.html -------------------------------------------------------------------------------- /docs/interfaces/plandeleteevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/plandeleteevent.html -------------------------------------------------------------------------------- /docs/interfaces/planevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/planevent.html -------------------------------------------------------------------------------- /docs/interfaces/planguest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/planguest.html -------------------------------------------------------------------------------- /docs/interfaces/planrsvpevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/planrsvpevent.html -------------------------------------------------------------------------------- /docs/interfaces/planupdatelocationevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/planupdatelocationevent.html -------------------------------------------------------------------------------- /docs/interfaces/planupdatetimeevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/planupdatetimeevent.html -------------------------------------------------------------------------------- /docs/interfaces/planupdatetitleevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/planupdatetitleevent.html -------------------------------------------------------------------------------- /docs/interfaces/pollcreateevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/pollcreateevent.html -------------------------------------------------------------------------------- /docs/interfaces/pollevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/pollevent.html -------------------------------------------------------------------------------- /docs/interfaces/polloption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/polloption.html -------------------------------------------------------------------------------- /docs/interfaces/pollupdatevoteevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/pollupdatevoteevent.html -------------------------------------------------------------------------------- /docs/interfaces/productxma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/productxma.html -------------------------------------------------------------------------------- /docs/interfaces/readreceiptevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/readreceiptevent.html -------------------------------------------------------------------------------- /docs/interfaces/session.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/session.html -------------------------------------------------------------------------------- /docs/interfaces/storyxma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/storyxma.html -------------------------------------------------------------------------------- /docs/interfaces/thread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/thread.html -------------------------------------------------------------------------------- /docs/interfaces/threadnameevent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/threadnameevent.html -------------------------------------------------------------------------------- /docs/interfaces/unavailablexma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/unavailablexma.html -------------------------------------------------------------------------------- /docs/interfaces/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/user.html -------------------------------------------------------------------------------- /docs/interfaces/videoattachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/videoattachment.html -------------------------------------------------------------------------------- /docs/interfaces/xmaattachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/docs/interfaces/xmaattachment.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/package.json -------------------------------------------------------------------------------- /src/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/Client.ts -------------------------------------------------------------------------------- /src/ClientEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/ClientEvents.ts -------------------------------------------------------------------------------- /src/FacebookDeviceId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/FacebookDeviceId.ts -------------------------------------------------------------------------------- /src/RandomIntGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/RandomIntGenerator.ts -------------------------------------------------------------------------------- /src/http/BaseHttpApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/http/BaseHttpApi.ts -------------------------------------------------------------------------------- /src/http/GraphQLRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/http/GraphQLRequest.ts -------------------------------------------------------------------------------- /src/http/HttpApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/http/HttpApi.ts -------------------------------------------------------------------------------- /src/http/HttpApiRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/http/HttpApiRequest.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/mqtt/MqttApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/MqttApi.ts -------------------------------------------------------------------------------- /src/mqtt/MqttConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/MqttConnection.ts -------------------------------------------------------------------------------- /src/mqtt/MqttMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/MqttMessage.ts -------------------------------------------------------------------------------- /src/mqtt/MqttPacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/MqttPacket.ts -------------------------------------------------------------------------------- /src/mqtt/MqttTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/MqttTypes.ts -------------------------------------------------------------------------------- /src/mqtt/PacketReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/PacketReader.ts -------------------------------------------------------------------------------- /src/mqtt/messages/Connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/messages/Connect.ts -------------------------------------------------------------------------------- /src/mqtt/messages/Message.ts: -------------------------------------------------------------------------------- 1 | export default interface Message {} 2 | -------------------------------------------------------------------------------- /src/mqtt/messages/MessageTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/messages/MessageTypes.ts -------------------------------------------------------------------------------- /src/mqtt/messages/Ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/messages/Ping.ts -------------------------------------------------------------------------------- /src/mqtt/messages/Publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/messages/Publish.ts -------------------------------------------------------------------------------- /src/mqtt/messages/PublishAck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/messages/PublishAck.ts -------------------------------------------------------------------------------- /src/mqtt/messages/PublishRecorded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/messages/PublishRecorded.ts -------------------------------------------------------------------------------- /src/mqtt/messages/Subscribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/messages/Subscribe.ts -------------------------------------------------------------------------------- /src/mqtt/messages/Unsubscribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/messages/Unsubscribe.ts -------------------------------------------------------------------------------- /src/mqtt/payloads/ConnectPayload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/payloads/ConnectPayload.ts -------------------------------------------------------------------------------- /src/mqtt/payloads/Payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/payloads/Payload.ts -------------------------------------------------------------------------------- /src/mqtt/payloads/PresenceStatePayload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/payloads/PresenceStatePayload.ts -------------------------------------------------------------------------------- /src/mqtt/payloads/ReadReceiptPayload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/payloads/ReadReceiptPayload.ts -------------------------------------------------------------------------------- /src/mqtt/payloads/ThreadKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/payloads/ThreadKey.ts -------------------------------------------------------------------------------- /src/mqtt/payloads/TypingStatePayload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/payloads/TypingStatePayload.ts -------------------------------------------------------------------------------- /src/mqtt/payloads/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/mqtt/payloads/index.ts -------------------------------------------------------------------------------- /src/types/Attachment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/Attachment.ts -------------------------------------------------------------------------------- /src/types/AuthTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/AuthTokens.ts -------------------------------------------------------------------------------- /src/types/DeviceId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/DeviceId.ts -------------------------------------------------------------------------------- /src/types/Errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/Errors.ts -------------------------------------------------------------------------------- /src/types/Events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/Events.ts -------------------------------------------------------------------------------- /src/types/FacebookCapFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/FacebookCapFlags.ts -------------------------------------------------------------------------------- /src/types/Message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/Message.ts -------------------------------------------------------------------------------- /src/types/Session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/Session.ts -------------------------------------------------------------------------------- /src/types/Thread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/Thread.ts -------------------------------------------------------------------------------- /src/types/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/User.ts -------------------------------------------------------------------------------- /src/types/attachments/FileAttachment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/attachments/FileAttachment.ts -------------------------------------------------------------------------------- /src/types/attachments/XMAAttachment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/attachments/XMAAttachment.ts -------------------------------------------------------------------------------- /src/types/attachments/parseAttachments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/attachments/parseAttachments.ts -------------------------------------------------------------------------------- /src/types/attachments/parseBlobAttachment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/attachments/parseBlobAttachment.ts -------------------------------------------------------------------------------- /src/types/attachments/parseFileAttachment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/attachments/parseFileAttachment.ts -------------------------------------------------------------------------------- /src/types/attachments/parseXMAAttachment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/attachments/parseXMAAttachment.ts -------------------------------------------------------------------------------- /src/types/events/PlanEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/events/PlanEvents.ts -------------------------------------------------------------------------------- /src/types/events/PollEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/events/PollEvents.ts -------------------------------------------------------------------------------- /src/types/events/ThreadCustomizationEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/events/ThreadCustomizationEvents.ts -------------------------------------------------------------------------------- /src/types/events/ThreadEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/events/ThreadEvents.ts -------------------------------------------------------------------------------- /src/types/events/parseAdminMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/events/parseAdminMessage.ts -------------------------------------------------------------------------------- /src/types/events/parseDeltaEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/events/parseDeltaEvent.ts -------------------------------------------------------------------------------- /src/types/events/parsePlanEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/events/parsePlanEvent.ts -------------------------------------------------------------------------------- /src/types/events/parsePollEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/events/parsePollEvent.ts -------------------------------------------------------------------------------- /src/types/message/parseDeltaMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/message/parseDeltaMessage.ts -------------------------------------------------------------------------------- /src/types/message/parseThreadMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/message/parseThreadMessage.ts -------------------------------------------------------------------------------- /src/types/thread/parseThread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/thread/parseThread.ts -------------------------------------------------------------------------------- /src/types/user/parseUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/src/types/user/parseUser.ts -------------------------------------------------------------------------------- /test/deviceIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/test/deviceIds.ts -------------------------------------------------------------------------------- /test/mqqtConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/test/mqqtConnection.ts -------------------------------------------------------------------------------- /test/thriftTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/test/thriftTests.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "tslint-config-standard" 3 | } 4 | -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatPlug/libfb-js/HEAD/typedoc.json --------------------------------------------------------------------------------