@crossworks/client-types 0.232.186 → 0.232.187

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": "@crossworks/client-types",
3
- "version": "0.232.186",
3
+ "version": "0.232.187",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -132,6 +132,13 @@ export interface ToolGroupIntegrationDTO {
132
132
  tokenExpiresAt?: string;
133
133
  connectedAt?: string;
134
134
  lastError?: string;
135
+ /** Pre-registered OAuth app, for servers without dynamic registration
136
+ * (Microsoft Entra ID). `microsoft` borrows the Settings → Microsoft
137
+ * app; `manual` is an app registered by hand (its id is `clientId`, its
138
+ * secret stays vault-sealed). Absent = the connector registers itself. */
139
+ client?: { source: 'microsoft' } | { source: 'manual'; authorizationServer?: string };
140
+ /** Scope asked for at authorization; absent = the server's own choice. */
141
+ scope?: string;
135
142
  };
136
143
  lastSyncAt?: string;
137
144
  toolCount?: number;