dots-wrapper
Version:
Digital Ocean v2 api wrapper - javascript - typescript - nodejs
10 lines • 436 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.listAppDeployments = void 0;
const listAppDeployments = ({ httpClient, }) => ({ app_id, page = 1, per_page = 25, }) => {
const url = `/apps/${app_id}/deployments`;
const params = { page, per_page };
return httpClient.get(url, { params });
};
exports.listAppDeployments = listAppDeployments;
//# sourceMappingURL=list-app-deployments.js.map