@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 +1 -1
- package/src/dto/agent-graph.ts +7 -0
package/package.json
CHANGED
package/src/dto/agent-graph.ts
CHANGED
|
@@ -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;
|