Resolução do desafio por um completo iniciante em backend
Algumas rotas fazem uso de uma proto autenticação através do header "Authorization".
const AuthorizationHeader = {
Authorization: "email:pass"
}
lista as rotas
o método GET utiliza parâmetros de busca, enquanto POST e PUT utilizam o body da requisição
// GET & PUT
interface IUserDTO {
id?: string
document?: string,
type?: "COMMON" | "MERCHANT",
name?: string,
lastname?: string,
email?: string,
pass?: string,
balance?: number
}
// POST
interface ICreateUserDTO {
document: string,
type: "COMMON" | "MERCHANT",
name: string,
email: string,
pass: string,
lastname?: string,
}
os métodos GET e DELETE utilizam parâmetros de busca, enquanto o método POST utiliza o body da requisição
// POST
interface ICreateTransactionDTO {
sender: string
receiver: string
amount: number
}
// DELETE
interface IReverseTransactionDTO {
id: string
}
// GET
interface IGetTransactionDTO extends IGetUser {
transactionId?: string
}
HOST, PORT, USER, PASS (credenciais do provedor de email)
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov