@company-semantics/contracts 0.73.0 → 0.74.0

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/org/types.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@company-semantics/contracts",
3
- "version": "0.73.0",
3
+ "version": "0.74.0",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
package/src/org/types.ts CHANGED
@@ -254,6 +254,8 @@ export interface ProviderSuggestion {
254
254
  suggestedProvider: 'google' | 'microsoft' | null;
255
255
  confidence: 'high' | 'low';
256
256
  reason: string;
257
+ /** The verified domain that triggered the suggestion (for pre-filling provider inputs). */
258
+ detectedDomain?: string;
257
259
  }
258
260
 
259
261
  /**