-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: media manager, error response schema parsings and other minor fi…
…xes (#28)
- Loading branch information
1 parent
533406d
commit 6feec43
Showing
34 changed files
with
425 additions
and
4,968 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ errors.log | |
.eslintrc.js | ||
packages/** | ||
apps/** | ||
template/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,5 @@ cache | |
docs.json | ||
docs.api.json | ||
docs/** | ||
temp/** | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
template/ | ||
.eslintrc.js | ||
.eslintrc.json | ||
dist/ | ||
build/ | ||
node_modules/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": ["@wapijs/eslint-config/config.node.js"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 24 additions & 22 deletions
46
packages/create-wapi-app/template/typescript/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/package.json", | ||
"name": "[REPLACE_ME]", | ||
"version": "0.1.0", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"lint": "prettier --check . && eslint --ext .js,.mjs,.cjs --format=pretty src", | ||
"format": "prettier --write . && eslint --ext .js,.mjs,.cjs --fix --format=pretty src", | ||
"start": "node --require dotenv/config src/index.js", | ||
"deploy": "node --require dotenv/config src/util/deploy.js" | ||
}, | ||
"dependencies": { | ||
"@wapijs/wapi.js": "^0.0.2", | ||
"dotenv": "^16.3.1" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^8.53.0", | ||
"eslint-config-neon": "^0.1.57", | ||
"eslint-formatter-pretty": "^5.0.0", | ||
"prettier": "^3.1.0", | ||
"zod": "^3.22.4" | ||
} | ||
"$schema": "https://json.schemastore.org/package.json", | ||
"name": "my-whatsapp-bot", | ||
"version": "0.1.0", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"lint": "prettier --check . && eslint --ext .js,.mjs,.cjs --format=pretty src", | ||
"format": "prettier --write . && eslint --ext .js,.mjs,.cjs --fix --format=pretty src", | ||
"start": "pnpm build && node dist/index.js", | ||
"build": "tsc -p ./tsconfig.json" | ||
}, | ||
"dependencies": { | ||
"@wapijs/wapi.js": "^0.0.7", | ||
"dotenv": "^16.3.1" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^20.5.9", | ||
"eslint": "^8.53.0", | ||
"eslint-config-neon": "^0.1.57", | ||
"eslint-formatter-pretty": "^5.0.0", | ||
"prettier": "^3.1.0", | ||
"typescript": "5.4.5", | ||
"zod": "^3.22.4" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.