kakaoforge 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.
- package/LICENSE +33 -0
- package/README.md +772 -0
- package/dist/auth/crypto.d.ts +4 -0
- package/dist/auth/crypto.js +69 -0
- package/dist/auth/login.d.ts +53 -0
- package/dist/auth/login.js +559 -0
- package/dist/crypto/v2sl.d.ts +14 -0
- package/dist/crypto/v2sl.js +118 -0
- package/dist/db/kakao-db.d.ts +51 -0
- package/dist/db/kakao-db.js +194 -0
- package/dist/db/kakao-schema-secondary.d.ts +2 -0
- package/dist/db/kakao-schema-secondary.js +57 -0
- package/dist/db/kakao-schema.d.ts +2 -0
- package/dist/db/kakao-schema.js +236 -0
- package/dist/db/kakao-secondary-db.d.ts +9 -0
- package/dist/db/kakao-secondary-db.js +69 -0
- package/dist/index.d.ts +634 -0
- package/dist/index.js +5181 -0
- package/dist/net/booking-client.d.ts +38 -0
- package/dist/net/booking-client.js +202 -0
- package/dist/net/brewery-client.d.ts +148 -0
- package/dist/net/brewery-client.js +419 -0
- package/dist/net/bubble-client.d.ts +45 -0
- package/dist/net/bubble-client.js +64 -0
- package/dist/net/calendar-client.d.ts +41 -0
- package/dist/net/calendar-client.js +80 -0
- package/dist/net/carriage-client.d.ts +56 -0
- package/dist/net/carriage-client.js +426 -0
- package/dist/net/loco-stream.d.ts +9 -0
- package/dist/net/loco-stream.js +39 -0
- package/dist/net/ticket-client.d.ts +11 -0
- package/dist/net/ticket-client.js +30 -0
- package/dist/net/upload-client.d.ts +18 -0
- package/dist/net/upload-client.js +209 -0
- package/dist/protocol/loco-packet.d.ts +19 -0
- package/dist/protocol/loco-packet.js +54 -0
- package/dist/types/attachments.d.ts +17 -0
- package/dist/types/attachments.js +14 -0
- package/dist/types/member-type.d.ts +8 -0
- package/dist/types/member-type.js +10 -0
- package/dist/types/message.d.ts +14 -0
- package/dist/types/message.js +16 -0
- package/dist/types/reaction.d.ts +10 -0
- package/dist/types/reaction.js +12 -0
- package/dist/util/client-msg-id.d.ts +1 -0
- package/dist/util/client-msg-id.js +48 -0
- package/dist/util/media.d.ts +6 -0
- package/dist/util/media.js +173 -0
- package/package.json +40 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
KakaoForge Non-Commercial / No Abuse License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 aodjo (https://junx.dev/)
|
|
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 use,
|
|
7
|
+
copy, modify, and distribute the Software for non-commercial purposes only,
|
|
8
|
+
subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
1. Non-Commercial Use Only
|
|
11
|
+
- Commercial use is prohibited. "Commercial use" means any use by or on
|
|
12
|
+
behalf of a commercial entity, any use primarily intended for commercial
|
|
13
|
+
advantage or monetary compensation, or offering the Software as a service.
|
|
14
|
+
|
|
15
|
+
2. No Abuse / Harmful Use
|
|
16
|
+
- You may not use the Software for abusive or harmful purposes, including
|
|
17
|
+
spam, harassment, phishing, credential theft, or unauthorized access.
|
|
18
|
+
|
|
19
|
+
3. Attribution
|
|
20
|
+
- This license notice must be included in all copies or substantial
|
|
21
|
+
portions of the Software.
|
|
22
|
+
|
|
23
|
+
4. Termination
|
|
24
|
+
- Any violation of this license terminates your rights to use the Software
|
|
25
|
+
immediately.
|
|
26
|
+
|
|
27
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
28
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
29
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
30
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
31
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
32
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
33
|
+
SOFTWARE.
|