This repository was archived by the owner on Jun 7, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,18 @@ All notable changes to this project are documented in this file.
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
6
and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
+ ## [0.0.5-Alpha] - 2023-04-11
9
+ ### Added
10
+ - Two-step verification API.
11
+ - Docs file names match pascal/camel case for each of the APIs.
12
+ - Docs for missing types.
13
+ - Fix for incorrect parameter name for language object.
14
+
15
+ ### Removed
16
+ - Dotenv to be a dev only dependency.
17
+ - Typos from docs.
18
+ - Unnecessary extra nesting for interactive messages requests.
19
+
8
20
## [0.0.4-Alpha] - 2023-04-05
9
21
10
22
### Added
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " whatsapp" ,
3
- "version" : " 0.0.4 -Alpha" ,
3
+ "version" : " 0.0.5 -Alpha" ,
4
4
"description" : " SDK for interfacing with WhatsApp Business Platform in Typescript or Node.js using the Cloud API, hosted by Meta." ,
5
5
"main" : " ./build/index.js" ,
6
6
"types" : " ./build/index.d.ts" ,
16
16
" src"
17
17
],
18
18
"type" : " commonjs" ,
19
+ "engines" : {
20
+ "node" : " >=16.19.1"
21
+ },
19
22
"scripts" : {
20
23
"start" : " ts-node -r tsconfig-paths/register ./src/WhatsApp.ts" ,
21
24
"prebuild" : " run-s create-version-file" ,
Original file line number Diff line number Diff line change 8
8
9
9
import { semanticVersionString } from './types/version' ;
10
10
11
- export const SDKVersion : semanticVersionString = '0.0.4 -Alpha' ;
11
+ export const SDKVersion : semanticVersionString = '0.0.5 -Alpha' ;
You can’t perform that action at this time.
0 commit comments