mirror of
https://github.com/vercel/chat.git
synced 2026-09-14 18:32:29 +08:00
75cadbf9aa
Extend the Twilio adapter with RCS webhook parsing, Content API integration, and card-to-template mapping with SMS fallback. --------- Co-authored-by: Ben Sabic <bensabic@users.noreply.github.com>
67 lines
1.5 KiB
JSON
67 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalEnv": [
|
|
"NODE_ENV",
|
|
"SLACK_BOT_TOKEN",
|
|
"SLACK_SIGNING_SECRET",
|
|
"TEAMS_APP_ID",
|
|
"TEAMS_APP_PASSWORD",
|
|
"TEAMS_APP_TENANT_ID",
|
|
"GOOGLE_CHAT_CREDENTIALS",
|
|
"GOOGLE_CHAT_PUBSUB_TOPIC",
|
|
"GOOGLE_CHAT_IMPERSONATE_USER",
|
|
"FACEBOOK_APP_SECRET",
|
|
"FACEBOOK_PAGE_ACCESS_TOKEN",
|
|
"FACEBOOK_VERIFY_TOKEN",
|
|
"WHATSAPP_ACCESS_TOKEN",
|
|
"WHATSAPP_APP_SECRET",
|
|
"WHATSAPP_PHONE_NUMBER_ID",
|
|
"WHATSAPP_VERIFY_TOKEN",
|
|
"TWILIO_ACCOUNT_SID",
|
|
"TWILIO_AUTH_TOKEN",
|
|
"TWILIO_PHONE_NUMBER",
|
|
"TWILIO_MESSAGING_SERVICE_SID",
|
|
"TWILIO_RCS_SENDER_ID",
|
|
"X_API_BASE_URL",
|
|
"X_CLIENT_ID",
|
|
"X_CLIENT_SECRET",
|
|
"X_CONSUMER_SECRET",
|
|
"X_ENCRYPTION_KEY",
|
|
"X_REFRESH_TOKEN",
|
|
"X_USER_ACCESS_TOKEN",
|
|
"X_USER_ID",
|
|
"X_USERNAME",
|
|
"XCHAT_BOT_TOKEN",
|
|
"XCHAT_PIN",
|
|
"X_ACCESS_TOKEN",
|
|
"X_BOT_USERNAME",
|
|
"X_VERIFY_SIGNATURES",
|
|
"X_DISABLE_WEBHOOK_VERIFICATION",
|
|
"X_SIGNING_KEY_VERSION",
|
|
"BOT_USERNAME",
|
|
"REDIS_URL",
|
|
"EDGE_CONFIG"
|
|
],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", "docs/**", ".next/**", "!.next/cache/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"test": {
|
|
"dependsOn": ["build"],
|
|
"outputs": []
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|