(
key: IntegrationTaskKey,
params: L.ProjectUpdatesQueryVariables = {}
)
| 1400 | } |
| 1401 | |
| 1402 | projectUpdates( |
| 1403 | key: IntegrationTaskKey, |
| 1404 | params: L.ProjectUpdatesQueryVariables = {} |
| 1405 | ): LinearReturnType<ProjectUpdateConnection> { |
| 1406 | return this.runTask( |
| 1407 | key, |
| 1408 | async (client) => { |
| 1409 | const edges = await client.projectUpdates(params); |
| 1410 | return serializeLinearOutput(edges); |
| 1411 | }, |
| 1412 | { |
| 1413 | name: "Get ProjectUpdates", |
| 1414 | params, |
| 1415 | properties: queryProperties(params), |
| 1416 | } |
| 1417 | ); |
| 1418 | } |
| 1419 | |
| 1420 | createProjectUpdate( |
| 1421 | key: IntegrationTaskKey, |
nothing calls this directly
no test coverage detected