()
| 31 | } |
| 32 | |
| 33 | export function initDeployStats(): DeployStats { |
| 34 | return { |
| 35 | numBuildErrors: 0, |
| 36 | numBuildWarnings: new Map<string, number>(), |
| 37 | numServiceCreated: 0, |
| 38 | numSchemaMigrated: 0, |
| 39 | numConnectorUpdatedBeforeSchema: 0, |
| 40 | numConnectorUpdatedAfterSchema: 0, |
| 41 | numSchemaSkippedDueToPendingCreate: 0, |
| 42 | numSchemaSqlDiffs: 0, |
| 43 | numSchemaInvalidConnectors: 0, |
| 44 | }; |
| 45 | } |
| 46 | |
| 47 | export function deployStatsParams(stats: DeployStats): AnalyticsParams { |
| 48 | const buildWarnings: AnalyticsParams = {}; |
no outgoing calls
no test coverage detected
searching dependent graphs…