| 89 | // TODO: refactor these types such that there is user facing "ApiCall" which will get merged with |
| 90 | // template and internal type that is the result of those two being merged. |
| 91 | export interface ApiCall { |
| 92 | readonly requestCount: string; |
| 93 | readonly chainId: string; |
| 94 | readonly requesterAddress: string; |
| 95 | readonly templateId: string | null; |
| 96 | readonly fulfillAddress: string; |
| 97 | readonly fulfillFunctionId: string; |
| 98 | readonly endpointId: string | null; |
| 99 | readonly encodedParameters: string; |
| 100 | readonly parameters: ApiCallParameters; |
| 101 | readonly type: ApiCallType; |
| 102 | readonly template?: ApiCallTemplate; |
| 103 | } |
| 104 | |
| 105 | export type ApiCallWithResponse = ApiCall & RegularApiCallResponse; |
| 106 |
nothing calls this directly
no outgoing calls
no test coverage detected