@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.
- package/package.json +1 -1
- package/src/org/types.ts +2 -0
package/package.json
CHANGED
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
|
/**
|