feat(monorepo): migrate to typescript monorepo

This commit is contained in:
2025-11-07 17:09:29 +02:00
committed by BernardNganduDev
parent 3e09956f05
commit 075a388ccb
745 changed files with 2341 additions and 5082 deletions
@@ -0,0 +1,15 @@
meta {
name: account-confirm
type: http
seq: 8
}
get {
url: {{baseUrl}}/account/confirm/:token
body: none
auth: none
}
params:path {
token: WNg8QWMENL77hbCXXkrqyCtYLn5MV7ngEbSJledP9DB6V701LwDPfMJZdkn2
}
@@ -0,0 +1,15 @@
meta {
name: account-unlock
type: http
seq: 7
}
get {
url: {{baseUrl}}/account/unlock/:token
body: none
auth: none
}
params:path {
token: KFgBaXF4dxX4PtOMlrpjOoO6g1bkm6zAuvm8ocxC41LwJ27XQOHMn1J7V3kI
}
@@ -0,0 +1,18 @@
meta {
name: login
type: http
seq: 1
}
post {
url: {{baseUrl}}/login_check
body: json
auth: none
}
body:json {
{
"username": "bernard@devscast.tech",
"password": "#New--123pass@"
}
}
@@ -0,0 +1,15 @@
meta {
name: logout
type: http
seq: 10
}
post {
url: {{baseUrl}}/token/invalidate
body: none
auth: bearer
}
auth:bearer {
token:
}
@@ -0,0 +1,17 @@
meta {
name: password-request
type: http
seq: 3
}
post {
url: {{baseUrl}}/password/request
body: json
auth: none
}
body:json {
{
"email": "bernard@devscast.tech"
}
}
@@ -0,0 +1,22 @@
meta {
name: password-reset
type: http
seq: 4
}
post {
url: {{baseUrl}}/password/reset/:token
body: json
auth: none
}
params:path {
token: qCdtZkciu7C82LVlnZhjpogfYfxUbApkHdSQmJuFQhqaINHjU2bro5uMzuY3
}
body:json {
{
"password": "#New--123pass@",
"confirm": "#New--123pass@"
}
}
@@ -0,0 +1,23 @@
meta {
name: password-update
type: http
seq: 6
}
post {
url: {{baseUrl}}/password/update
body: json
auth: bearer
}
auth:bearer {
token: {{token}}
}
body:json {
{
"current": "#1231AZuu*---23213",
"password": "#New--123pass@",
"confirm": "#New--123pass@"
}
}
@@ -0,0 +1,17 @@
meta {
name: refresh-token
type: http
seq: 2
}
post {
url: {{baseUrl}}/token/refresh
body: json
auth: none
}
body:json {
{
"refresh_token": "{{refreshToken}}"
}
}
@@ -0,0 +1,19 @@
meta {
name: register
type: http
seq: 5
}
post {
url: {{baseUrl}}/register
body: json
auth: none
}
body:json {
{
"name": "bernard",
"email": "bernard@devscast.org",
"password": "#New--123pass@"
}
}
@@ -0,0 +1,15 @@
meta {
name: user-profile
type: http
seq: 9
}
get {
url: {{baseUrl}}/me
body: none
auth: bearer
}
auth:bearer {
token: {{token}}
}