()
| 134 | } |
| 135 | |
| 136 | serialize() { |
| 137 | const result = {}; |
| 138 | for (const key in APIS) { |
| 139 | result[key] = { |
| 140 | type: APIS[key].type, |
| 141 | input: APIS[key].input.toJSON(), |
| 142 | }; |
| 143 | } |
| 144 | return result; |
| 145 | } |
| 146 | |
| 147 | async execute( |
| 148 | context: ApiExecutionContext, callOrName: ApiCall<ApiType, any, any> | string, |
no outgoing calls
no test coverage detected