whatsapp-cloud 0.0.10 → 0.0.11

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 (95) hide show
  1. package/.changeset/README.md +8 -0
  2. package/.changeset/config.json +11 -0
  3. package/.github/workflows/main.yml +21 -0
  4. package/.github/workflows/publish.yml +33 -0
  5. package/CHANGELOG.md +65 -0
  6. package/agent_docs/DESIGN.md +707 -0
  7. package/agent_docs/INCOMING_MESSAGES_BRAINSTORM.md +500 -0
  8. package/agent_docs/MESSAGES_NAMESPACE_ANALYSIS.md +368 -0
  9. package/agent_docs/NAMING_DECISION.md +78 -0
  10. package/agent_docs/STRUCTURE.md +711 -0
  11. package/agent_docs/messages-namespace-design.md +357 -0
  12. package/cloud-api-docs/webhooks/endpoint.md +112 -0
  13. package/cloud-api-docs/webhooks/overview.md +154 -0
  14. package/dist/index.cjs +1399 -0
  15. package/dist/index.d.cts +1229 -0
  16. package/dist/index.d.mts +2 -0
  17. package/dist/index.d.ts +1229 -0
  18. package/dist/index.js +1332 -0
  19. package/dist/index.mjs +1332 -0
  20. package/docs/DEVELOPMENT.md +154 -0
  21. package/docs/webhooks.md +104 -0
  22. package/package.json +1 -4
  23. package/src/client/HttpClient.ts +190 -0
  24. package/src/client/WhatsAppClient.ts +61 -0
  25. package/src/client/index.ts +2 -0
  26. package/src/errors.ts +58 -0
  27. package/src/examples/main.ts +9 -0
  28. package/src/examples/template.ts +134 -0
  29. package/src/index.ts +23 -0
  30. package/src/schemas/accounts/index.ts +1 -0
  31. package/src/schemas/accounts/phone-number.ts +20 -0
  32. package/src/schemas/business/account.ts +43 -0
  33. package/src/schemas/business/index.ts +2 -0
  34. package/src/schemas/client.ts +50 -0
  35. package/src/schemas/debug.ts +25 -0
  36. package/src/schemas/index.ts +7 -0
  37. package/src/schemas/messages/index.ts +2 -0
  38. package/src/schemas/messages/request.ts +82 -0
  39. package/src/schemas/messages/response.ts +19 -0
  40. package/src/schemas/templates/component.ts +190 -0
  41. package/src/schemas/templates/index.ts +4 -0
  42. package/src/schemas/templates/request.ts +83 -0
  43. package/src/schemas/templates/response.ts +54 -0
  44. package/src/schemas/webhooks/incoming-message.ts +72 -0
  45. package/src/schemas/webhooks/index.ts +3 -0
  46. package/src/schemas/webhooks/payload.ts +56 -0
  47. package/src/services/accounts/AccountsClient.ts +34 -0
  48. package/src/services/accounts/AccountsService.ts +45 -0
  49. package/src/services/accounts/index.ts +2 -0
  50. package/src/services/accounts/methods/list-phone-numbers.ts +15 -0
  51. package/src/services/business/BusinessClient.ts +34 -0
  52. package/src/services/business/BusinessService.ts +45 -0
  53. package/src/services/business/index.ts +3 -0
  54. package/src/services/business/methods/list-accounts.ts +17 -0
  55. package/src/services/index.ts +2 -0
  56. package/src/services/messages/MessagesClient.ts +34 -0
  57. package/src/services/messages/MessagesService.ts +97 -0
  58. package/src/services/messages/index.ts +8 -0
  59. package/src/services/messages/methods/send-image.ts +33 -0
  60. package/src/services/messages/methods/send-location.ts +32 -0
  61. package/src/services/messages/methods/send-reaction.ts +33 -0
  62. package/src/services/messages/methods/send-text.ts +32 -0
  63. package/src/services/messages/utils/build-message-payload.ts +32 -0
  64. package/src/services/templates/TemplatesClient.ts +35 -0
  65. package/src/services/templates/TemplatesService.ts +117 -0
  66. package/src/services/templates/index.ts +3 -0
  67. package/src/services/templates/methods/create.ts +29 -0
  68. package/src/services/templates/methods/delete.ts +38 -0
  69. package/src/services/templates/methods/get.ts +22 -0
  70. package/src/services/templates/methods/list.ts +37 -0
  71. package/src/services/templates/methods/update.ts +34 -0
  72. package/src/services/webhooks/WebhooksService.ts +265 -0
  73. package/src/services/webhooks/index.ts +3 -0
  74. package/src/services/webhooks/utils/extract-messages.ts +25 -0
  75. package/src/services/webhooks/utils/extract-statuses.ts +25 -0
  76. package/src/services/webhooks/utils/verify.ts +29 -0
  77. package/src/types/accounts/index.ts +1 -0
  78. package/src/types/accounts/phone-number.ts +9 -0
  79. package/src/types/business/account.ts +10 -0
  80. package/src/types/business/index.ts +2 -0
  81. package/src/types/client.ts +8 -0
  82. package/src/types/debug.ts +8 -0
  83. package/src/types/index.ts +7 -0
  84. package/src/types/messages/index.ts +2 -0
  85. package/src/types/messages/request.ts +27 -0
  86. package/src/types/messages/response.ts +7 -0
  87. package/src/types/templates/component.ts +45 -0
  88. package/src/types/templates/index.ts +4 -0
  89. package/src/types/templates/request.ts +27 -0
  90. package/src/types/templates/response.ts +39 -0
  91. package/src/types/webhooks/incoming-message.ts +27 -0
  92. package/src/types/webhooks/index.ts +3 -0
  93. package/src/types/webhooks/payload.ts +8 -0
  94. package/src/utils/zod-error.ts +28 -0
  95. package/tsconfig.json +47 -0
@@ -0,0 +1,8 @@
1
+ # Changesets
2
+
3
+ Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4
+ with multi-package repos, or single-package repos to help you version and publish your code. You can
5
+ find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6
+
7
+ We have a quick list of common questions to get you started engaging with this project in
8
+ [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
@@ -0,0 +1,11 @@
1
+ {
2
+ "$schema": "https://unpkg.com/@changesets/config@3.1.2/schema.json",
3
+ "changelog": "@changesets/cli/changelog",
4
+ "commit": false,
5
+ "fixed": [],
6
+ "linked": [],
7
+ "access": "public",
8
+ "baseBranch": "main",
9
+ "updateInternalDependencies": "patch",
10
+ "ignore": []
11
+ }
@@ -0,0 +1,21 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - "**"
7
+
8
+ jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ - uses: pnpm/action-setup@v2
14
+ with:
15
+ version: 10.24.0
16
+ - uses: actions/setup-node@v3
17
+ with:
18
+ node-version: 22
19
+ cache: "pnpm"
20
+ - run: pnpm install --frozen-lockfile
21
+ - run: pnpm run lint && pnpm run build
@@ -0,0 +1,33 @@
1
+ name: Publish
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - "main"
7
+
8
+ concurrency: ${{ github.workflow }}-${{ github.ref }}
9
+
10
+ jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ - uses: pnpm/action-setup@v2
16
+ with:
17
+ version: 10.24.0
18
+ - uses: actions/setup-node@v3
19
+ with:
20
+ node-version: 22
21
+ cache: "pnpm"
22
+ - run: pnpm install --frozen-lockfile
23
+ - name: Setup npm authentication for pnpm
24
+ run: |
25
+ echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > $HOME/.npmrc
26
+ - name: Create Release Pull Request or Publish
27
+ id: changesets
28
+ uses: changesets/action@v1
29
+ with:
30
+ publish: pnpm publish
31
+ env:
32
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
33
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package/CHANGELOG.md ADDED
@@ -0,0 +1,65 @@
1
+ # whatzapp
2
+
3
+ ## 0.0.11
4
+
5
+ ### Patch Changes
6
+
7
+ - 396eeee: add dist
8
+
9
+ ## 0.0.10
10
+
11
+ ### Patch Changes
12
+
13
+ - a1b2ac1: add dist
14
+
15
+ ## 0.0.9
16
+
17
+ ### Patch Changes
18
+
19
+ - 80b7d80: bump version
20
+
21
+ ## 0.0.7
22
+
23
+ ### Patch Changes
24
+
25
+ - 2024d31: add audio and image handler
26
+ - f2501c2: add template types
27
+
28
+ ## 0.0.6
29
+
30
+ ### Patch Changes
31
+
32
+ - a46c084: export types
33
+ - 175d774: add webhooks namespace
34
+
35
+ ## 0.0.5
36
+
37
+ ### Patch Changes
38
+
39
+ - baf823b: added templates namespace
40
+
41
+ ## 0.0.4
42
+
43
+ ### Patch Changes
44
+
45
+ - b1f5fa8: add readme
46
+ - a752277: add business namespace
47
+
48
+ ## 0.0.3
49
+
50
+ ### Patch Changes
51
+
52
+ - a86dcaf: add cloud
53
+
54
+ ## 0.0.3
55
+
56
+ ### Patch Changes
57
+
58
+ - 4e05f92: rename to sdk
59
+
60
+ ## 0.0.2
61
+
62
+ ### Patch Changes
63
+
64
+ - e136a20: initialized project
65
+ - 5db0ff7: make public