Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added plugin-twilio this can send message using sms or whatsapp #1822

Closed
wants to merge 24 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
1cb3af7
added plugin-twilio this can send message using sms or whatsapp
juanc07 Jan 4, 2025
f068a62
remove hello action in index.ts
juanc07 Jan 4, 2025
e34e5ae
added plugin-twilio to agent
juanc07 Jan 4, 2025
026c821
added check gated the plugin-twilio in agent runtime only add it when…
juanc07 Jan 5, 2025
7be0584
Merge branch 'develop' into feature/plugin-twilio
odilitime Jan 5, 2025
d2ce806
update repo from develop and fix conflict
juanc07 Jan 5, 2025
7370922
added core from main
juanc07 Jan 5, 2025
4ca602c
added prune before installing in integrationTests.yaml file
juanc07 Jan 5, 2025
4a35293
modify the package.json of elizaos/core added require ./dist/index.js…
juanc07 Jan 5, 2025
d8dec47
use node version 20 for integration test yaml
juanc07 Jan 5, 2025
ee05362
use node version 23.5.0 for integration test yaml
juanc07 Jan 5, 2025
535c755
modify exports package.json of core and plugin-node
juanc07 Jan 5, 2025
7da65a8
added pnpm build command before post install in plugin node
juanc07 Jan 5, 2025
9d7d15f
use plugin-node from main
juanc07 Jan 5, 2025
04f1e3c
test remove post install js call
juanc07 Jan 5, 2025
350a2ec
increase version of plugin-node
juanc07 Jan 5, 2025
b220182
change node version integrationTest.yaml to 23.3.0
juanc07 Jan 5, 2025
8a2be86
do some cleaning and rebuild
juanc07 Jan 5, 2025
15895d2
pmpm-lock changes
juanc07 Jan 5, 2025
74b6562
added todo in code
juanc07 Jan 5, 2025
9583616
applied fix from develop branch
juanc07 Jan 5, 2025
52ff515
get changes from develop and fix conflict
juanc07 Jan 6, 2025
30a250a
fixed pnpm-lock file
juanc07 Jan 6, 2025
aebb861
merged branch with develop branch
juanc07 Jan 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
modify exports package.json of core and plugin-node
  • Loading branch information
juanc07 committed Jan 5, 2025
commit 535c75572f1855fcf98bc0c6e33a29d68e71d6b5
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -9,9 +9,9 @@
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
3 changes: 2 additions & 1 deletion packages/plugin-node/package.json
Original file line number Diff line number Diff line change
@@ -9,8 +9,9 @@
"./package.json": "./package.json",
".": {
"import": {
"@elizaos/source": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
}
Loading