paraviewweb
Advanced tools
Comparing version 1.2.6 to 1.2.7
{ | ||
"name": "paraviewweb", | ||
"version": "1.2.6", | ||
"version": "1.2.7", | ||
"description": "Web framework for building interactive visualization relying on VTK or ParaView to produce visualization data", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -15,3 +15,3 @@ export default function({client, filterQuery, mustContain, busy, encodeQueryAsString}) { | ||
return missingKeys ? busy(client._.post('/collection' + encodeQueryAsString(params))) : promise; | ||
return missingKeys ? promise : busy(client._.post('/collection' + encodeQueryAsString(params))); | ||
}, | ||
@@ -32,3 +32,3 @@ | ||
return missingKeys ? busy(client._.put(`/collection/${collection._id}${encodeQueryAsString(params)}`)) : promise; | ||
return missingKeys ? promise : busy(client._.put(`/collection/${collection._id}${encodeQueryAsString(params)}`)); | ||
}, | ||
@@ -45,5 +45,5 @@ | ||
return missingKeys ? busy(client._.put(`/collection/${collection._id}/access${encodeQueryAsString(params)}`)) : promise; | ||
return missingKeys ? promise : busy(client._.put(`/collection/${collection._id}/access${encodeQueryAsString(params)}`)); | ||
}, | ||
}; | ||
} |
@@ -95,3 +95,3 @@ function noTransform(data) { | ||
return missingKeys ? busy(client._.put(`/file/${file._id}${encodeQueryAsString(params)}`)) : promise; | ||
return missingKeys ? promise : busy(client._.put(`/file/${file._id}${encodeQueryAsString(params)}`)); | ||
}, | ||
@@ -104,5 +104,5 @@ | ||
return missingKeys ? busy(client._.post(`/file${encodeQueryAsString(params)}`)) : promise; | ||
return missingKeys ? promise : busy(client._.post(`/file${encodeQueryAsString(params)}`)); | ||
}, | ||
}; | ||
} |
@@ -20,3 +20,3 @@ function jsonToString(data) { | ||
return missingKeys ? busy(client._.post(`/folder${encodeQueryAsString(params)}`)) : promise; | ||
return missingKeys ? promise : busy(client._.post(`/folder${encodeQueryAsString(params)}`)); | ||
}, | ||
@@ -41,3 +41,3 @@ | ||
return missingKeys ? busy(client._.put(`/folder/${folder._id}${encodeQueryAsString(params)}`)) : promise; | ||
return missingKeys ? promise : busy(client._.put(`/folder/${folder._id}${encodeQueryAsString(params)}`)); | ||
}, | ||
@@ -58,5 +58,5 @@ | ||
return missingKeys ? busy(client._.put(`/folder/${folder._id}/access${encodeQueryAsString(params)}`)) : promise; | ||
return missingKeys ? promise : busy(client._.put(`/folder/${folder._id}/access${encodeQueryAsString(params)}`)); | ||
}, | ||
}; | ||
} |
@@ -18,3 +18,3 @@ export default function({client, filterQuery, mustContain, busy, encodeQueryAsString}) { | ||
return missingKeys ? busy(client._.post('/group' + encodeQueryAsString(params))) : promise; | ||
return missingKeys ? promise : busy(client._.post('/group' + encodeQueryAsString(params))); | ||
}, | ||
@@ -35,3 +35,3 @@ | ||
return missingKeys ? busy(client._.put(`/group/${group._id}${encodeQueryAsString(params)}`)) : promise; | ||
return missingKeys ? promise : busy(client._.put(`/group/${group._id}${encodeQueryAsString(params)}`)); | ||
}, | ||
@@ -51,3 +51,3 @@ | ||
return missingKeys ? busy(client._.post(`/group/${id}/invitation${encodeQueryAsString(params)}`)) : promise; | ||
return missingKeys ? promise : busy(client._.post(`/group/${id}/invitation${encodeQueryAsString(params)}`)); | ||
}, | ||
@@ -54,0 +54,0 @@ |
@@ -58,3 +58,3 @@ function jsonToString(data) { | ||
return missingKeys ? busy(client._.put(`/item/${item._id}${encodeQueryAsString(params)}`)) : promise; | ||
return missingKeys ? promise : busy(client._.put(`/item/${item._id}${encodeQueryAsString(params)}`)); | ||
}, | ||
@@ -68,5 +68,5 @@ | ||
return missingKeys ? busy(client._.post(`/item/${id}/copy${encodeQueryAsString(params)}`)) : promise; | ||
return missingKeys ? promise : busy(client._.post(`/item/${id}/copy${encodeQueryAsString(params)}`)); | ||
}, | ||
}; | ||
} |
@@ -17,5 +17,61 @@ # HpcCloudEndpoints | ||
## aws | ||
## clusters | ||
### listClusters(params) | ||
### createCluster(cluster) | ||
### getCluster(id) | ||
### updateCluster(cluster) | ||
### deleteCluster(id) | ||
### submitJob(clusterId, jobId) | ||
### getClusterLogs(taskId, offset=0) | ||
### startCluster(id) | ||
### provisionCluster(id, params) | ||
### getClusterStatus(id) | ||
### terminateCluster(id) | ||
## jobs | ||
### getJobs(offset, limit) | ||
### createJob(params) | ||
### getJob(id) | ||
### updateJob(id, params) | ||
### deleteJob(id) | ||
### getJobLog(id, offset) | ||
### getJobOutput(id, path, offset) | ||
### getJobStatus(id) | ||
### terminateJob(id) | ||
## projects | ||
### listProjects() | ||
### createProject(project) | ||
### getProject(id) | ||
### updateProject(project) | ||
### deleteProject(id) | ||
### shareProject(id) | ||
### listSimulations(projectId) | ||
### createSimulation(projectId, simualtion) | ||
## simulations | ||
### getSimulation(id) | ||
### editSimulation(simulation) | ||
### deleteSimulation(id) | ||
### cloneSimulation(id, {name='Cloned simulation'}) | ||
### downloadSimulation(id) | ||
### getSimulationStep(id, name) | ||
### updateSimulationStep(id, name, step) | ||
## taskflows | ||
### createTaskflow(taskFlowClass) | ||
### getTaskflow(id, path) | ||
### updateTaskflow(id, params) | ||
### deleteTaskflow(id) | ||
### startTaskflow(id, cluster) | ||
### getTaskflowStatus(id) | ||
### getTaskflowTasks(id) | ||
### createNewTaskForTaskflow(id, params) | ||
### endTaskflow(id) | ||
## tasks | ||
### getTask(id) | ||
### updateTask(id, updates) | ||
### getTaskLog(id) | ||
### getTaskStatus(id) |
@@ -70,2 +70,7 @@ import deepClone from 'mout/src/lang/deepClone'; | ||
//PUT /clusters/{id}/provision Provision a cluster with ansible | ||
provisionCluster(id, params) { | ||
return busy(client._.put(`/clusters/${id}/provision`, params)); | ||
}, | ||
// put /clusters/{id}/start | ||
@@ -72,0 +77,0 @@ // Start a cluster (ec2 only) |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3056997
25525