in packages/lks-core/src/LinearKintoneSync.ts [29:41]
async handle(webhook: Webhook) {
let result;
console.log("--- Call handle() ---");
try {
result = await this.handler.execCallback(webhook, this.apps);
} catch (e) {
if (e instanceof KintoneRestAPIError) {
e.headers = {};
}
throw e;
}
return result;
}