fca-project 1.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.
Potentially problematic release.
This version of fca-project might be problematic. Click here for more details.
- package/fca-project-main/.gitattributes +2 -0
- package/fca-project-main/Extra/Database/index.js +469 -0
- package/fca-project-main/Extra/ExtraAddons.js +82 -0
- package/fca-project-main/Extra/ExtraFindUID.js +62 -0
- package/fca-project-main/Extra/ExtraGetThread.js +340 -0
- package/fca-project-main/Extra/ExtraScreenShot.js +430 -0
- package/fca-project-main/Extra/ExtraUptimeRobot.js +38 -0
- package/fca-project-main/Extra/Html/Classic/script.js +119 -0
- package/fca-project-main/Extra/Html/Classic/style.css +8 -0
- package/fca-project-main/Extra/Security/AES_256_GCM/index.js +0 -0
- package/fca-project-main/Extra/Security/Base/Step_1.js +6 -0
- package/fca-project-main/Extra/Security/Base/Step_2.js +22 -0
- package/fca-project-main/Extra/Security/Base/Step_3.js +22 -0
- package/fca-project-main/Extra/Security/Base/index.js +173 -0
- package/fca-project-main/Extra/Security/Index.js +5 -0
- package/fca-project-main/Extra/Security/Step_1.js +6 -0
- package/fca-project-main/Extra/Security/Step_2.js +22 -0
- package/fca-project-main/Extra/Security/Step_3.js +22 -0
- package/fca-project-main/Extra/Src/Change_Environment.js +24 -0
- package/fca-project-main/Extra/Src/Check_Update.js +67 -0
- package/fca-project-main/Extra/Src/History.js +115 -0
- package/fca-project-main/Extra/Src/Instant_Update.js +65 -0
- package/fca-project-main/Extra/Src/Last-Run.js +65 -0
- package/fca-project-main/Extra/Src/Premium.js +81 -0
- package/fca-project-main/Extra/Src/Release_Memory.js +41 -0
- package/fca-project-main/Extra/Src/Websocket.js +213 -0
- package/fca-project-main/Extra/Src/image/checkmate.jpg +0 -0
- package/fca-project-main/Extra/Src/uuid.js +137 -0
- package/fca-project-main/Func/AcceptAgreement.js +31 -0
- package/fca-project-main/Func/ClearCache.js +64 -0
- package/fca-project-main/Func/ReportV1.js +54 -0
- package/fca-project-main/LICENSE +21 -0
- package/fca-project-main/Language/index.json +216 -0
- package/fca-project-main/Main.js +1211 -0
- package/fca-project-main/README.md +147 -0
- package/fca-project-main/SECURITY.md +18 -0
- package/fca-project-main/broadcast.js +40 -0
- package/fca-project-main/index.js +386 -0
- package/fca-project-main/logger.js +66 -0
- package/fca-project-main/package.json +92 -0
- package/fca-project-main/src/Dev_Project_Data.js +125 -0
- package/fca-project-main/src/Premium.js +25 -0
- package/fca-project-main/src/Screenshot.js +83 -0
- package/fca-project-main/src/addExternalModule.js +16 -0
- package/fca-project-main/src/addUserToGroup.js +79 -0
- package/fca-project-main/src/changeAdminStatus.js +79 -0
- package/fca-project-main/src/changeArchivedStatus.js +41 -0
- package/fca-project-main/src/changeAvt.js +85 -0
- package/fca-project-main/src/changeBio.js +65 -0
- package/fca-project-main/src/changeBlockedStatus.js +36 -0
- package/fca-project-main/src/changeGroupImage.js +106 -0
- package/fca-project-main/src/changeNickname.js +45 -0
- package/fca-project-main/src/changeThreadColor.js +62 -0
- package/fca-project-main/src/changeThreadEmoji.js +42 -0
- package/fca-project-main/src/createNewGroup.js +70 -0
- package/fca-project-main/src/createPoll.js +60 -0
- package/fca-project-main/src/deleteMessage.js +45 -0
- package/fca-project-main/src/deleteThread.js +43 -0
- package/fca-project-main/src/forwardAttachment.js +48 -0
- package/fca-project-main/src/getAccessToken.js +28 -0
- package/fca-project-main/src/getCurrentUserID.js +7 -0
- package/fca-project-main/src/getEmojiUrl.js +27 -0
- package/fca-project-main/src/getFriendsList.js +73 -0
- package/fca-project-main/src/getMessage.js +80 -0
- package/fca-project-main/src/getThreadHistory.js +537 -0
- package/fca-project-main/src/getThreadInfo.js +425 -0
- package/fca-project-main/src/getThreadList.js +213 -0
- package/fca-project-main/src/getThreadMain.js +220 -0
- package/fca-project-main/src/getThreadPictures.js +59 -0
- package/fca-project-main/src/getUID.js +59 -0
- package/fca-project-main/src/getUserID.js +62 -0
- package/fca-project-main/src/getUserInfo.js +113 -0
- package/fca-project-main/src/getUserInfoMain.js +65 -0
- package/fca-project-main/src/getUserInfoV2.js +32 -0
- package/fca-project-main/src/getUserInfoV3.js +63 -0
- package/fca-project-main/src/getUserInfoV4.js +55 -0
- package/fca-project-main/src/getUserInfoV5.js +61 -0
- package/fca-project-main/src/handleFriendRequest.js +46 -0
- package/fca-project-main/src/handleMessageRequest.js +49 -0
- package/fca-project-main/src/httpGet.js +49 -0
- package/fca-project-main/src/httpPost.js +48 -0
- package/fca-project-main/src/httpPostFormData.js +41 -0
- package/fca-project-main/src/listenMqtt.js +787 -0
- package/fca-project-main/src/logout.js +68 -0
- package/fca-project-main/src/markAsDelivered.js +48 -0
- package/fca-project-main/src/markAsRead.js +70 -0
- package/fca-project-main/src/markAsReadAll.js +43 -0
- package/fca-project-main/src/markAsSeen.js +51 -0
- package/fca-project-main/src/muteThread.js +47 -0
- package/fca-project-main/src/removeUserFromGroup.js +49 -0
- package/fca-project-main/src/resolvePhotoUrl.js +37 -0
- package/fca-project-main/src/searchForThread.js +43 -0
- package/fca-project-main/src/sendMessage.js +379 -0
- package/fca-project-main/src/sendTypingIndicator.js +80 -0
- package/fca-project-main/src/setMessageReaction.js +109 -0
- package/fca-project-main/src/setPostReaction.js +102 -0
- package/fca-project-main/src/setTitle.js +74 -0
- package/fca-project-main/src/threadColors.js +39 -0
- package/fca-project-main/src/unfriend.js +43 -0
- package/fca-project-main/src/unsendMessage.js +40 -0
- package/fca-project-main/test/Database_Test.js +4 -0
- package/fca-project-main/test/Db2.js +530 -0
- package/fca-project-main/test/Project_Database/A_README.md +1 -0
- package/fca-project-main/test/Project_Database/Database.db +0 -0
- package/fca-project-main/test/data/shareAttach.js +146 -0
- package/fca-project-main/test/data/something.mov +0 -0
- package/fca-project-main/test/data/test.png +0 -0
- package/fca-project-main/test/data/test.txt +7 -0
- package/fca-project-main/test/env/.env +0 -0
- package/fca-project-main/test/example-config.json +18 -0
- package/fca-project-main/test/example-db.db +0 -0
- package/fca-project-main/test/memoryleak.js +18 -0
- package/fca-project-main/test/test-page.js +140 -0
- package/fca-project-main/test/test.js +385 -0
- package/fca-project-main/test/testv2.js +18 -0
- package/fca-project-main/utils.js +1683 -0
- package/package.json +22 -0
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "fca-project",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "fca được phát triển bởi tntxtrick",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/KanzuXHorizon/Fca-Horizon-Remastered.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"project"
|
|
15
|
+
],
|
|
16
|
+
"author": "tntxtrick",
|
|
17
|
+
"license": "ISC",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/KanzuXHorizon/Fca-Horizon-Remastered/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/KanzuXHorizon/Fca-Horizon-Remastered#readme"
|
|
22
|
+
}
|