stfca 1.0.0 → 1.0.1

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-MIT CHANGED
@@ -1,4 +1,4 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 ST | Sheikh Tamim (@sheikhtamimlover/fca-unofficial)
3
+ Copyright (c) 2025 ST | Sheikh Tamim (stfca)
4
4
 
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
- # @sheikhtamimlover/fca-unofficial
1
+ # stfca
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/@sheikhtamimlover/fca-unofficial.svg)](https://www.npmjs.com/package/@sheikhtamimlover/fca-unofficial)
4
- [![npm downloads](https://img.shields.io/npm/dm/@sheikhtamimlover/fca-unofficial.svg)](https://www.npmjs.com/package/@sheikhtamimlover/fca-unofficial)
3
+ [![npm version](https://img.shields.io/npm/v/stfca.svg)](https://www.npmjs.com/package/stfca)
4
+ [![npm downloads](https://img.shields.io/npm/dm/stfca.svg)](https://www.npmjs.com/package/stfca)
5
5
 
6
6
  > **Unofficial Facebook Chat API for Node.js** - Interact with Facebook Messenger programmatically
7
7
 
@@ -22,7 +22,7 @@
22
22
 
23
23
  Facebook now has an [official API for chat bots](https://developers.facebook.com/docs/messenger-platform), however it's only available for Facebook Pages.
24
24
 
25
- `@sheikhtamimlover/fca-unofficial` is the only API that allows you to automate chat functionalities on a **user account** by emulating the browser. This means:
25
+ `stfca` is the only API that allows you to automate chat functionalities on a **user account** by emulating the browser. This means:
26
26
 
27
27
  - Making the exact same GET/POST requests as a browser
28
28
  - Does not work with auth tokens
@@ -31,7 +31,7 @@ Facebook now has an [official API for chat bots](https://developers.facebook.com
31
31
  ## 📦 Installation
32
32
 
33
33
  ```bash
34
- npm install @sheikhtamimlover/fca-unofficial@latest
34
+ npm install stfca@latest
35
35
  ```
36
36
 
37
37
  ## 🚀 Basic Usage
@@ -39,7 +39,7 @@ npm install @sheikhtamimlover/fca-unofficial@latest
39
39
  ### 1. Login and Simple Echo Bot
40
40
 
41
41
  ```javascript
42
- const login = require("@sheikhtamimlover/fca-unofficial");
42
+ const login = require("stfca");
43
43
 
44
44
  login({ appState: [] }, (err, api) => {
45
45
  if (err) return console.error(err);
@@ -56,7 +56,7 @@ login({ appState: [] }, (err, api) => {
56
56
  ### 2. Send Text Message
57
57
 
58
58
  ```javascript
59
- const login = require("@sheikhtamimlover/fca-unofficial");
59
+ const login = require("stfca");
60
60
 
61
61
  login({ appState: [] }, (err, api) => {
62
62
  if (err) {
@@ -79,7 +79,7 @@ login({ appState: [] }, (err, api) => {
79
79
  ### 3. Send File/Image
80
80
 
81
81
  ```javascript
82
- const login = require("@sheikhtamimlover/fca-unofficial");
82
+ const login = require("stfca");
83
83
  const fs = require("fs");
84
84
 
85
85
  login({ appState: [] }, (err, api) => {
@@ -127,7 +127,7 @@ login({ appState: [] }, (err, api) => {
127
127
 
128
128
  ```javascript
129
129
  const fs = require("fs");
130
- const login = require("@sheikhtamimlover/fca-unofficial");
130
+ const login = require("stfca");
131
131
 
132
132
  const credentials = { appState: [] };
133
133
 
@@ -151,7 +151,7 @@ login(credentials, (err, api) => {
151
151
 
152
152
  ```javascript
153
153
  const fs = require("fs");
154
- const login = require("@sheikhtamimlover/fca-unofficial");
154
+ const login = require("stfca");
155
155
 
156
156
  login(
157
157
  { appState: JSON.parse(fs.readFileSync("appstate.json", "utf8")) },
@@ -175,7 +175,7 @@ login(
175
175
 
176
176
  ```javascript
177
177
  const fs = require("fs");
178
- const login = require("@sheikhtamimlover/fca-unofficial");
178
+ const login = require("stfca");
179
179
 
180
180
  login(
181
181
  { appState: JSON.parse(fs.readFileSync("appstate.json", "utf8")) },
@@ -316,7 +316,7 @@ If this project is helpful, please give it a ⭐ on GitHub!
316
316
 
317
317
  ## 🔗 Links
318
318
 
319
- - [NPM Package](https://www.npmjs.com/package/@sheikhtamimlover/fca-unofficial)
319
+ - [NPM Package](https://www.npmjs.com/package/stfca)
320
320
  - [GitHub Repository](https://github.com/sheikhtamimlover/fca-unofficial)
321
321
  - [Issue Tracker](https://github.com/sheikhtamimlover/fca-unofficial/issues)
322
322
 
package/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  // Origin: NOCOM-BOT/mod_fbmsg_legacy
2
2
 
3
- declare module '@sheikhtamimlover/fca-unofficial' {
3
+ declare module 'stfca' {
4
4
  import type { Readable, Duplex, Transform } from "stream";
5
5
  import type EventEmitter from "events";
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stfca",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Unofficial Facebook Chat API for Node.js",
5
5
  "main": "index.js",
6
6
  "scripts": {