@capawesome/cli
Version:
The Capawesome Cloud Command Line Interface (CLI) to manage Live Updates and more.
55 lines (54 loc) • 2.56 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const http_client_1 = __importDefault(require("../utils/http-client"));
const authorization_service_1 = __importDefault(require("./authorization-service"));
class AppsServiceImpl {
constructor(httpClient) {
this.httpClient = httpClient;
}
create(dto) {
return __awaiter(this, void 0, void 0, function* () {
const params = new URLSearchParams({ organizationId: dto.organizationId });
const response = yield this.httpClient.post(`/v1/apps?${params.toString()}`, dto, {
headers: {
Authorization: `Bearer ${authorization_service_1.default.getCurrentAuthorizationToken()}`,
},
});
return response.data;
});
}
delete(dto) {
return __awaiter(this, void 0, void 0, function* () {
yield this.httpClient.delete(`/v1/apps/${dto.id}`, {
headers: {
Authorization: `Bearer ${authorization_service_1.default.getCurrentAuthorizationToken()}`,
},
});
});
}
findAll(dto) {
return __awaiter(this, void 0, void 0, function* () {
const params = new URLSearchParams({ organizationId: dto.organizationId });
const response = yield this.httpClient.get(`/v1/apps?${params.toString()}`, {
headers: {
Authorization: `Bearer ${authorization_service_1.default.getCurrentAuthorizationToken()}`,
},
});
return response.data;
});
}
}
const appsService = new AppsServiceImpl(http_client_1.default);
exports.default = appsService;