Modelo de activacion de sim con token automatico

This commit is contained in:
2026-01-28 13:42:27 +01:00
parent ad217a277b
commit ca75f00e22
10 changed files with 184 additions and 38 deletions

View File

@@ -0,0 +1,12 @@
import { JWTService } from "aplication/JWT.service"
import { HttpClient } from "#shared/infrastructure/HTTPClient"
// TODO: mover a shared/infrastructure para usar en el resto de servicios
export const httpInstance = new HttpClient({
baseURL: "https://api-getway.objenious.com/ws/",
headers: {
"content-type": "application/x-www-form-urlencoded"
},
jwtManager: new JWTService()
})