( baseUrl: string, userApiKey: string, input: MetadataProgressUpdateInput[], )
| 191 | } |
| 192 | |
| 193 | export async function progressUpdate( |
| 194 | baseUrl: string, |
| 195 | userApiKey: string, |
| 196 | input: MetadataProgressUpdateInput[], |
| 197 | ) { |
| 198 | const client = getGraphqlClient(baseUrl); |
| 199 | const { deployBulkMetadataProgressUpdate } = await client.request( |
| 200 | DeployBulkMetadataProgressUpdateDocument, |
| 201 | { input }, |
| 202 | { Authorization: `Bearer ${userApiKey}` }, |
| 203 | ); |
| 204 | return deployBulkMetadataProgressUpdate; |
| 205 | } |
| 206 | |
| 207 | export async function addEntitiesToCollection( |
| 208 | baseUrl: string, |
no test coverage detected