(params = {})
| 30 | } |
| 31 | |
| 32 | push(params = {}) { |
| 33 | if (this.requireJobName && !params.jobName) { |
| 34 | throw new Error('Missing jobName parameter'); |
| 35 | } |
| 36 | |
| 37 | return useGateway.call(this, 'PUT', params.jobName, params.groupings); |
| 38 | } |
| 39 | |
| 40 | delete(params = {}) { |
| 41 | if (this.requireJobName && !params.jobName) { |
no outgoing calls
no test coverage detected