Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@great-detail/whatsapp

Package Overview
Dependencies
Maintainers
0
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@great-detail/whatsapp - npm Package Versions

23
10

7.0.9

Diff

Changelog

Source

7.0.9

Patch Changes

  • 0b0122a: Return x-hub-signature-256 header alongside event notification return
  • da9832f: Update Documentation for Fastify Raw Body Parsing
  • 5669c73: Explicitly set UTF-8 encoding in signature calculation
domwebber
published 7.0.8 •

Changelog

Source

7.0.8

Patch Changes

  • 4acedc2: Correct prefixUrl construction for graph version selection
domwebber
published 7.0.7 •

Changelog

Source

7.0.7

Patch Changes

  • ec11904: Export MessageType enum as non-type
domwebber
published 7.0.6 •

Changelog

Source

7.0.6

Patch Changes

  • feebb70: Add Phone Numbers' APIs
domwebber
published 7.0.5 •

Changelog

Source

7.0.5

Patch Changes

  • dfaf6eb: Add CLI command: message text
domwebber
published 7.0.4 •

Changelog

Source

7.0.4

Patch Changes

  • 500e6e8: Add user_id to Webhook Event Notification contacts object
  • 9d5d62a: Add Business Profile APIs
domwebber
published 7.0.3 •

Changelog

Source

7.0.3

Patch Changes

  • effa7c1: Add createSubscription and listSubscriptions SubscribedApps APIs
domwebber
published 7.0.2 •

Changelog

Source

7.0.2

Patch Changes

  • 6d6b234: Offload authentication to use-case
domwebber
published 7.0.1 •

Changelog

Source

7.0.1

Patch Changes

  • 564a24d: Add request method check for webhook event notification processing
domwebber
published 7.0.0 •

Changelog

Source

7.0.0

Major Changes

  • 685b4de: Refactor & Rewrite SDK.

    Before:

    import CloudAPI from "@great-detail/whatsapp";
    
    const sdk = new CloudAPI();
    const message = sdk
      .message({ phoneNumberID: "123...809" })
      .text({ body: "Hello" }, { toNumber: "1234567890" });
    const sendReceipt = await message.send();
    

    After:

    import Client from "@great-detail/whatsapp";
    
    const sdk = new Client();
    const message = await sdk.message.createMessage({
      phoneNumberID: "123...809",
      to: "1234567890",
      type: "text",
      text: {
        body: "Hello",
      },
    });
    
23
10
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc