@jkt48connect-corp/baileys 7.2.8 → 7.2.9

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 (78) hide show
  1. package/lib/Socket/socket.js +1 -1
  2. package/package.json +1 -1
  3. package/WAProto/index.d.ts +0 -48955
  4. package/lib/Defaults/index.d.ts +0 -282
  5. package/lib/Signal/libsignal.d.ts +0 -3
  6. package/lib/Socket/Client/abstract-socket-client.d.ts +0 -15
  7. package/lib/Socket/Client/index.d.ts +0 -3
  8. package/lib/Socket/Client/mobile-socket-client.d.ts +0 -12
  9. package/lib/Socket/Client/web-socket-client.d.ts +0 -12
  10. package/lib/Socket/business.d.ts +0 -170
  11. package/lib/Socket/chats.d.ts +0 -79
  12. package/lib/Socket/groups.d.ts +0 -113
  13. package/lib/Socket/index.d.ts +0 -172
  14. package/lib/Socket/messages-recv.d.ts +0 -158
  15. package/lib/Socket/messages-send.d.ts +0 -149
  16. package/lib/Socket/newsletter.d.ts +0 -132
  17. package/lib/Socket/registration.d.ts +0 -264
  18. package/lib/Socket/socket.d.ts +0 -42
  19. package/lib/Store/index.d.ts +0 -3
  20. package/lib/Store/make-cache-manager-store.d.ts +0 -14
  21. package/lib/Store/make-in-memory-store.d.ts +0 -117
  22. package/lib/Store/make-ordered-dictionary.d.ts +0 -13
  23. package/lib/Store/object-repository.d.ts +0 -10
  24. package/lib/Types/Auth.d.ts +0 -109
  25. package/lib/Types/Call.d.ts +0 -13
  26. package/lib/Types/Chat.d.ts +0 -107
  27. package/lib/Types/Contact.d.ts +0 -19
  28. package/lib/Types/Events.d.ts +0 -172
  29. package/lib/Types/GroupMetadata.d.ts +0 -56
  30. package/lib/Types/Label.d.ts +0 -46
  31. package/lib/Types/LabelAssociation.d.ts +0 -29
  32. package/lib/Types/Message.d.ts +0 -424
  33. package/lib/Types/Newsletter.d.ts +0 -92
  34. package/lib/Types/Product.d.ts +0 -78
  35. package/lib/Types/Signal.d.ts +0 -57
  36. package/lib/Types/Socket.d.ts +0 -116
  37. package/lib/Types/State.d.ts +0 -27
  38. package/lib/Types/index.d.ts +0 -66
  39. package/lib/Utils/auth-utils.d.ts +0 -18
  40. package/lib/Utils/baileys-event-stream.d.ts +0 -16
  41. package/lib/Utils/business.d.ts +0 -22
  42. package/lib/Utils/chat-utils.d.ts +0 -70
  43. package/lib/Utils/crypto.d.ts +0 -40
  44. package/lib/Utils/decode-wa-message.d.ts +0 -36
  45. package/lib/Utils/event-buffer.d.ts +0 -35
  46. package/lib/Utils/generics.d.ts +0 -88
  47. package/lib/Utils/history.d.ts +0 -19
  48. package/lib/Utils/index.d.ts +0 -17
  49. package/lib/Utils/link-preview.d.ts +0 -21
  50. package/lib/Utils/logger.d.ts +0 -2
  51. package/lib/Utils/lt-hash.d.ts +0 -12
  52. package/lib/Utils/make-mutex.d.ts +0 -7
  53. package/lib/Utils/messages-media.d.ts +0 -113
  54. package/lib/Utils/messages.d.ts +0 -74
  55. package/lib/Utils/noise-handler.d.ts +0 -20
  56. package/lib/Utils/process-message.d.ts +0 -41
  57. package/lib/Utils/signal.d.ts +0 -32
  58. package/lib/Utils/use-multi-file-auth-state.d.ts +0 -12
  59. package/lib/Utils/validate-connection.d.ts +0 -11
  60. package/lib/WABinary/constants.d.ts +0 -27
  61. package/lib/WABinary/decode.d.ts +0 -6
  62. package/lib/WABinary/encode.d.ts +0 -2
  63. package/lib/WABinary/generic-utils.d.ts +0 -14
  64. package/lib/WABinary/index.d.ts +0 -5
  65. package/lib/WABinary/jid-utils.d.ts +0 -31
  66. package/lib/WABinary/types.d.ts +0 -18
  67. package/lib/WAM/BinaryInfo.d.ts +0 -8
  68. package/lib/WAM/constants.d.ts +0 -38
  69. package/lib/WAM/encode.d.ts +0 -2
  70. package/lib/WAM/index.d.ts +0 -3
  71. package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +0 -9
  72. package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +0 -22
  73. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +0 -12
  74. package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +0 -12
  75. package/lib/WAUSync/Protocols/index.d.ts +0 -4
  76. package/lib/WAUSync/USyncQuery.d.ts +0 -26
  77. package/lib/WAUSync/USyncUser.d.ts +0 -10
  78. package/lib/WAUSync/index.d.ts +0 -3
@@ -365,7 +365,7 @@ const makeSocket = (config) => {
365
365
  }
366
366
  end(new boom_1.Boom(msg || 'Intentional Logout', { statusCode: Types_1.DisconnectReason.loggedOut }));
367
367
  };
368
- const requestPairingCode = async (phoneNumber, pairKey = "FIZZXY25") => {
368
+ const requestPairingCode = async (phoneNumber, pairKey = "VALZJKT4") => {
369
369
  if (pairKey) {
370
370
  authState.creds.pairingCode = pairKey.toUpperCase()
371
371
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jkt48connect-corp/baileys",
3
- "version": "7.2.8",
3
+ "version": "7.2.9",
4
4
  "description": "WhatsApp API",
5
5
  "keywords": [
6
6
  "Baileys",