@haechi-labs/henesis-cli
Version:
🚀 Command Line Interface tool to Utilize henesis
36 lines • 1 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
require("reflect-metadata");
class LoginRequest {
constructor(email, password) {
this.email = email;
this.password = password;
}
}
exports.LoginRequest = LoginRequest;
class LoginResponse {
constructor(email, name, organization, jwtToken) {
this.email = email;
this.name = name;
this.organization = organization;
this.jwtToken = jwtToken;
}
}
exports.LoginResponse = LoginResponse;
class ChangePassword {
constructor(password, newPassword) {
this.password = password;
this.newPassword = newPassword;
}
}
exports.ChangePassword = ChangePassword;
class DescribeResponse {
constructor(email, name, organization, clientId) {
this.email = email;
this.name = name;
this.organization = organization;
this.clientId = clientId;
}
}
exports.DescribeResponse = DescribeResponse;
//# sourceMappingURL=user.js.map