( service: any, connections: Record<string, unknown> )
| 51 | } |
| 52 | |
| 53 | export const generateUpdateVarsObject = ( |
| 54 | service: any, |
| 55 | connections: Record<string, unknown> |
| 56 | ): { filter: { id: { eq: string } }; set: Record<string, unknown> } => ({ |
| 57 | filter: { |
| 58 | id: { eq: service.id }, |
| 59 | }, |
| 60 | set: { |
| 61 | ...connections, |
| 62 | }, |
| 63 | }) |
no outgoing calls
no test coverage detected