0.1.1 • Published 2 years ago

@highoutput/support v0.1.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

support

TODO: description

Usage

import { SupportServer } from '@highoutput-library/support';

const app = express();

const supportServer = new SupportServer({
  notionDatabaseId: faker.git.commitSha(),
  notionAccessToken: faker.git.commitSha(),
  prefix: '/support',
  project: 'HER',
});

app.use(supportServer.expressMiddleware());

app.listen(8080);

Add support message to notion

// POST localhost:8080/support/messages

{
  "emailAddress": "alres.arena2019@gmail.com",
  "message": "this is a test message",
  "details": {
    "category": "others",
  },
}