| 112 | export type AnyRequest = ApiCall | Withdrawal; |
| 113 | |
| 114 | export interface ApiCallTemplate { |
| 115 | readonly airnodeAddress: string; |
| 116 | readonly endpointId: string; |
| 117 | readonly encodedParameters: string; |
| 118 | readonly id: string; |
| 119 | } |
| 120 | |
| 121 | export interface ApiCallTemplatesById { |
| 122 | readonly [id: string]: ApiCallTemplate; |
nothing calls this directly
no outgoing calls
no test coverage detected