|
1 | | -/* |
2 | | - * meta-messenger.js |
3 | | - * Unofficial Meta Messenger Chat API for Node.js |
4 | | - * |
5 | | - * Copyright (c) 2026 Yumi Team and contributors |
6 | | - * |
7 | | - * This program is free software: you can redistribute it and/or modify |
8 | | - * it under the terms of the GNU Affero General Public License as published by |
9 | | - * the Free Software Foundation, either version 3 of the License, or |
10 | | - * (at your option) any later version. |
11 | | - * |
12 | | - * This program is distributed in the hope that it will be useful, |
13 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | | - * GNU Affero General Public License for more details. |
16 | | - * |
17 | | - * You should have received a copy of the GNU Affero General Public License |
18 | | - * along with this program. If not, see <https://www.gnu.org/licenses/>. |
19 | | - */ |
20 | | - |
| 1 | +/* |
| 2 | + * meta-messenger.js |
| 3 | + * Unofficial Meta Messenger Chat API for Node.js |
| 4 | + * |
| 5 | + * Copyright (c) 2026 Yumi Team and contributors |
| 6 | + * |
| 7 | + * This program is free software: you can redistribute it and/or modify |
| 8 | + * it under the terms of the GNU Affero General Public License as published by |
| 9 | + * the Free Software Foundation, either version 3 of the License, or |
| 10 | + * (at your option) any later version. |
| 11 | + * |
| 12 | + * This program is distributed in the hope that it will be useful, |
| 13 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | + * GNU Affero General Public License for more details. |
| 16 | + * |
| 17 | + * You should have received a copy of the GNU Affero General Public License |
| 18 | + * along with this program. If not, see <https://www.gnu.org/licenses/>. |
| 19 | + */ |
| 20 | + |
21 | 21 | /** |
22 | 22 | * meta-messenger.js - TypeScript wrapper for Facebook Messenger with E2EE support |
23 | 23 | * |
|
58 | 58 | * @packageDocumentation |
59 | 59 | */ |
60 | 60 |
|
61 | | -export type { ClientEventMap } from "./client.js"; |
62 | | -export { Client } from "./client.js"; |
63 | | -export { UIDLogin } from "./login.js"; |
| 61 | +export type { ClientEventMap } from "./client.js"; |
| 62 | +export { Client } from "./client.js"; |
| 63 | +export { UIDLogin } from "./login.js"; |
64 | 64 | export { |
65 | 65 | type Attachment, |
66 | 66 | type AttachmentType, |
@@ -100,10 +100,10 @@ export { |
100 | 100 | type UploadMediaResult, |
101 | 101 | type User, |
102 | 102 | type UserInfo, |
103 | | -} from "./types.js"; |
| 103 | +} from "./types.js"; |
104 | 104 | export { type CookieObject, extractUrlFromLPHP, isThumbsUpSticker, THUMBS_UP_STICKER_IDS, Utils } from "./utils.js"; |
105 | 105 |
|
106 | | -import { Client } from "./client.js"; |
| 106 | +import { Client } from "./client.js"; |
107 | 107 | import type { ClientOptions, Cookies } from "./types.js"; |
108 | 108 |
|
109 | 109 | /** |
|
0 commit comments