@maxim_mazurok/gapi.client.developerconnect-v1 0.1.20260813 → 0.1.20260824
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/index.d.ts +16 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://developerconnect.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260824
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -285,6 +285,12 @@ declare namespace gapi.client {
|
|
|
285
285
|
/** The repositories that the user can access with this account connector. */
|
|
286
286
|
userRepos?: UserRepository[];
|
|
287
287
|
}
|
|
288
|
+
interface FieldVisibility {
|
|
289
|
+
/** The visibility restriction labels for this field (comma-separated). */
|
|
290
|
+
restriction?: string;
|
|
291
|
+
/** The name of the parameter in the input_schema or output_schema. */
|
|
292
|
+
selector?: string;
|
|
293
|
+
}
|
|
288
294
|
interface FinishOAuthResponse {
|
|
289
295
|
/** The error resulted from exchanging OAuth tokens from the service provider. */
|
|
290
296
|
exchangeError?: ExchangeError;
|
|
@@ -547,6 +553,15 @@ declare namespace gapi.client {
|
|
|
547
553
|
/** Resource name for the location, which may vary between implementations. For example: `"projects/example-project/locations/us-east1"` */
|
|
548
554
|
name?: string;
|
|
549
555
|
}
|
|
556
|
+
interface McpToolVisibility {
|
|
557
|
+
/** A list of field-level visibility restrictions. */
|
|
558
|
+
fieldVisibility?: FieldVisibility[];
|
|
559
|
+
/** The strategy used to enforce visibility restrictions. DO NOT USE. This field is not yet implemented. */
|
|
560
|
+
visibilityEnforcementStrategy?:
|
|
561
|
+
'VISIBILITY_ENFORCEMENT_STRATEGY_UNSPECIFIED' | 'COMBINE' | 'OVERRIDE';
|
|
562
|
+
/** The visibility restriction labels for the tool itself (e.g., "PRODUCER_DEFINED_PREVIEW"). Multiple labels can be provided as a comma-separated string. */
|
|
563
|
+
visibilityRestriction?: string;
|
|
564
|
+
}
|
|
550
565
|
interface OAuthCredential {
|
|
551
566
|
/** Required. A SecretManager resource containing the OAuth token that authorizes the connection. Format: `projects/*/secrets/*/versions/*` or `projects/*/locations/*/secrets/*/versions/*` (if regional secrets are supported in that location). */
|
|
552
567
|
oauthTokenSecretVersion?: string;
|