34 lines
591 B
TypeScript
34 lines
591 B
TypeScript
/**
|
|
* Documentación de referencia:
|
|
* https://pelion-help.iot-x.com/nos/en-US/Content/API/APIReference/API%20Reference.htm?tocpath=_____7
|
|
*
|
|
* TODO:
|
|
* - Control de errores más preciso
|
|
*
|
|
*/
|
|
import { NosHttpClient } from "infrastructure/NosHttpClient";
|
|
import { NosRepository } from "infrastructure/NOSRepository";
|
|
|
|
export class SimNosUsecases {
|
|
constructor(
|
|
private httpClient: NosHttpClient,
|
|
private nosRepository: NosRepository
|
|
) {
|
|
}
|
|
|
|
public activate() {
|
|
return (args: { iccid: string }) => {
|
|
|
|
}
|
|
}
|
|
|
|
public suspend() {
|
|
|
|
}
|
|
|
|
public terminate() {
|
|
|
|
}
|
|
|
|
}
|