Skip to content

Commit c26ac4e

Browse files
add nonComplete flag (#226)
1 parent ed31d8b commit c26ac4e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/logic/api/runtimeEnvironments.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const _ = require('lodash');
22
const { sendHttpRequest } = require('./helper');
33
const RuntimeEnvironments = require('../entities/RuntimeEnvironments');
44

5-
const _extractFieldsForRuntimeEnvironmentEntity = runtimeEnv => _.pick(runtimeEnv, 'version', 'metadata', 'environmentCertPath', 'runtimeScheduler', 'dockerDaemonScheduler', 'history', 'extends', 'description', 'isPublic', 'isDefault', 'accountId', 'plan', 'accounts');
5+
const _extractFieldsForRuntimeEnvironmentEntity = runtimeEnv => _.pick(runtimeEnv, 'version', 'metadata', 'environmentCertPath', 'runtimeScheduler', 'dockerDaemonScheduler', 'history', 'extends', 'description', 'isPublic', 'isDefault', 'accountId', 'plan', 'accounts', 'nonComplete');
66

77
// Account
88
const getAllRuntimeEnvironmentsForAccount = async (options) => {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codefresh",
3-
"version": "0.8.80",
3+
"version": "0.8.81",
44
"description": "Codefresh command line utility",
55
"main": "index.js",
66
"preferGlobal": true,

0 commit comments

Comments
 (0)