shellphone.app/app/api/ddd.ts

43 lines
1.1 KiB
TypeScript
Raw Normal View History

import { BlitzApiRequest, BlitzApiResponse } from "blitz";
2021-07-31 14:33:18 +00:00
import db from "db";
2021-08-01 07:40:18 +00:00
import twilio from "twilio";
2021-07-31 14:33:18 +00:00
export default async function ddd(req: BlitzApiRequest, res: BlitzApiResponse) {
2021-08-01 11:21:49 +00:00
await Promise.all([
2021-07-31 14:33:18 +00:00
db.message.deleteMany(),
db.phoneCall.deleteMany(),
db.phoneNumber.deleteMany(),
db.customer.deleteMany(),
]);
2021-07-31 14:33:18 +00:00
2021-08-01 11:21:49 +00:00
await db.user.deleteMany();
2021-08-01 07:40:18 +00:00
const accountSid = "ACa886d066be0832990d1cf43fb1d53362";
const authToken = "8696a59a64b94bb4eba3548ed815953b";
/*const ddd = await twilio(accountSid, authToken)
.lookups
.v1
// .phoneNumbers("+33613370787")
.phoneNumbers("+33476982071")
.fetch();*/
2021-08-01 10:36:32 +00:00
/*try {
2021-08-01 07:40:18 +00:00
await twilio(accountSid, authToken).messages.create({
body: "content",
to: "+213744123789",
from: "+33757592025",
});
} catch (error) {
console.log(error.code);
console.log(error.moreInfo);
console.log(error.details);
// console.log(JSON.stringify(Object.keys(error)));
2021-08-01 10:36:32 +00:00
}*/
2021-08-01 11:21:49 +00:00
/*const ddd = await twilio(accountSid, authToken).messages.create({
2021-08-01 10:36:32 +00:00
body: "content",
to: "+33757592025",
from: "+33757592722",
2021-08-01 11:21:49 +00:00
});*/
2021-07-31 14:33:18 +00:00
2021-08-01 11:21:49 +00:00
res.status(200).end();
2021-07-31 14:33:18 +00:00
}