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.
Files changed (49) hide show
  1. package/LICENSE +33 -0
  2. package/README.md +772 -0
  3. package/dist/auth/crypto.d.ts +4 -0
  4. package/dist/auth/crypto.js +69 -0
  5. package/dist/auth/login.d.ts +53 -0
  6. package/dist/auth/login.js +559 -0
  7. package/dist/crypto/v2sl.d.ts +14 -0
  8. package/dist/crypto/v2sl.js +118 -0
  9. package/dist/db/kakao-db.d.ts +51 -0
  10. package/dist/db/kakao-db.js +194 -0
  11. package/dist/db/kakao-schema-secondary.d.ts +2 -0
  12. package/dist/db/kakao-schema-secondary.js +57 -0
  13. package/dist/db/kakao-schema.d.ts +2 -0
  14. package/dist/db/kakao-schema.js +236 -0
  15. package/dist/db/kakao-secondary-db.d.ts +9 -0
  16. package/dist/db/kakao-secondary-db.js +69 -0
  17. package/dist/index.d.ts +634 -0
  18. package/dist/index.js +5181 -0
  19. package/dist/net/booking-client.d.ts +38 -0
  20. package/dist/net/booking-client.js +202 -0
  21. package/dist/net/brewery-client.d.ts +148 -0
  22. package/dist/net/brewery-client.js +419 -0
  23. package/dist/net/bubble-client.d.ts +45 -0
  24. package/dist/net/bubble-client.js +64 -0
  25. package/dist/net/calendar-client.d.ts +41 -0
  26. package/dist/net/calendar-client.js +80 -0
  27. package/dist/net/carriage-client.d.ts +56 -0
  28. package/dist/net/carriage-client.js +426 -0
  29. package/dist/net/loco-stream.d.ts +9 -0
  30. package/dist/net/loco-stream.js +39 -0
  31. package/dist/net/ticket-client.d.ts +11 -0
  32. package/dist/net/ticket-client.js +30 -0
  33. package/dist/net/upload-client.d.ts +18 -0
  34. package/dist/net/upload-client.js +209 -0
  35. package/dist/protocol/loco-packet.d.ts +19 -0
  36. package/dist/protocol/loco-packet.js +54 -0
  37. package/dist/types/attachments.d.ts +17 -0
  38. package/dist/types/attachments.js +14 -0
  39. package/dist/types/member-type.d.ts +8 -0
  40. package/dist/types/member-type.js +10 -0
  41. package/dist/types/message.d.ts +14 -0
  42. package/dist/types/message.js +16 -0
  43. package/dist/types/reaction.d.ts +10 -0
  44. package/dist/types/reaction.js +12 -0
  45. package/dist/util/client-msg-id.d.ts +1 -0
  46. package/dist/util/client-msg-id.js +48 -0
  47. package/dist/util/media.d.ts +6 -0
  48. package/dist/util/media.js +173 -0
  49. 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.