( update: boolean, uuid: string, code: string, url: string, source: InstallSource, metadata: SCMetadata, options: any )
| 69 | }; |
| 70 | |
| 71 | export const createTempCodeEntry = async ( |
| 72 | update: boolean, |
| 73 | uuid: string, |
| 74 | code: string, |
| 75 | url: string, |
| 76 | source: InstallSource, |
| 77 | metadata: SCMetadata, |
| 78 | options: any |
| 79 | ) => { |
| 80 | await saveTempCode(uuid, code); |
| 81 | const si = [update, createScriptInfo(uuid, "", url, source, metadata), options]; |
| 82 | return si; |
| 83 | }; |
| 84 | |
| 85 | export const createScriptInfoLocal = async ( |
| 86 | uuid: string, |
no test coverage detected