@company-semantics/contracts 0.83.0 → 0.83.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@company-semantics/contracts",
3
- "version": "0.83.0",
3
+ "version": "0.83.1",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
@@ -98,6 +98,7 @@ export interface ExecutionEventMetadataMap {
98
98
 
99
99
  // Compile-time exhaustiveness check: this line errors if
100
100
  // ExecutionEventMetadataMap keys don't match ExecutionEventType
101
- type _ExhaustivenessCheck = {
101
+ // Exported to avoid noUnusedLocals errors in consumer repos
102
+ export type _ExhaustivenessCheck = {
102
103
  [K in ExecutionEventType]: ExecutionEventMetadataMap[K];
103
104
  };