@maxim_mazurok/gapi.client.discoveryengine-v1alpha 0.3.20260705 → 0.3.20260712

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/index.d.ts +72 -18
  2. 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://discoveryengine.googleapis.com/$discovery/rest?version=v1alpha
12
- // Revision: 20260705
12
+ // Revision: 20260712
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -1657,7 +1657,8 @@ declare namespace gapi.client {
1657
1657
  | 'SUBSCRIPTION_TIER_EDU_EMERGING'
1658
1658
  | 'SUBSCRIPTION_TIER_EDU_PRO_EMERGING'
1659
1659
  | 'SUBSCRIPTION_TIER_FRONTLINE_STARTER'
1660
- | 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY';
1660
+ | 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
1661
+ | 'SUBSCRIPTION_TIER_EDU_GOV_EMERGING';
1661
1662
  }
1662
1663
  interface GoogleCloudDiscoveryengineV1alphaBranch {
1663
1664
  /** Output only. Statistics describing a branch. This field is not populated in BranchView.BRANCH_VIEW_BASIC view. */
@@ -2552,6 +2553,8 @@ declare namespace gapi.client {
2552
2553
  federatedSearchConfig?: GoogleCloudDiscoveryengineV1alphaDataStoreFederatedSearchConfig;
2553
2554
  /** Optional. Configuration for `HEALTHCARE_FHIR` vertical. */
2554
2555
  healthcareFhirConfig?: GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig;
2556
+ /** Output only. Provides the icon URI of the data store's connector source, if this is a connector-backed data store. Empty for data stores without an associated connector source. In DataStoreService.ListDataStores and DataStoreService.GetDataStore, this is only populated when DataStoreView.DATA_STORE_VIEW_FULL is requested via ListDataStoresRequest.view or GetDataStoreRequest.view respectively. */
2557
+ iconUri?: string;
2555
2558
  /** Immutable. The fully qualified resource name of the associated IdentityMappingStore. This field can only be set for acl_enabled DataStores with `THIRD_PARTY` or `GSUITE` IdP. Format: `projects/{project}/locations/{location}/identityMappingStores/{identity_mapping_store}`. */
2556
2559
  identityMappingStore?: string;
2557
2560
  /** Output only. Data store level identity provider config. */
@@ -3114,7 +3117,8 @@ declare namespace gapi.client {
3114
3117
  | 'SUBSCRIPTION_TIER_EDU_EMERGING'
3115
3118
  | 'SUBSCRIPTION_TIER_EDU_PRO_EMERGING'
3116
3119
  | 'SUBSCRIPTION_TIER_FRONTLINE_STARTER'
3117
- | 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY';
3120
+ | 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
3121
+ | 'SUBSCRIPTION_TIER_EDU_GOV_EMERGING';
3118
3122
  /** The add-on that this search engine enables. */
3119
3123
  searchAddOns?: 'SEARCH_ADD_ON_UNSPECIFIED' | 'SEARCH_ADD_ON_LLM'[];
3120
3124
  /** The search feature tier of this engine. Different tiers might have different pricing. To learn more, check the pricing documentation. Defaults to SearchTier.SEARCH_TIER_STANDARD if not specified. */
@@ -3792,6 +3796,8 @@ declare namespace gapi.client {
3792
3796
  freeTrial?: boolean;
3793
3797
  /** Output only. Whether the license config is for Gemini bundle. */
3794
3798
  geminiBundle?: boolean;
3799
+ /** Optional. Timestamp of the most recent user-initiated update (seat count change or subscription term change). Unlike `update_time`, this field is only stamped when a customer explicitly updates the license (e.g. via the UI), and is not touched by system-driven writes (subscription pipeline, BALC propagation, etc.). */
3800
+ lastUserUpdateTime?: string;
3795
3801
  /** Required. Number of licenses purchased. */
3796
3802
  licenseCount?: string;
3797
3803
  /** Immutable. Identifier. The fully qualified resource name of the license config. Format: `projects/{project}/locations/{location}/licenseConfigs/{license_config}` */
@@ -3829,7 +3835,8 @@ declare namespace gapi.client {
3829
3835
  | 'SUBSCRIPTION_TIER_EDU_EMERGING'
3830
3836
  | 'SUBSCRIPTION_TIER_EDU_PRO_EMERGING'
3831
3837
  | 'SUBSCRIPTION_TIER_FRONTLINE_STARTER'
3832
- | 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY';
3838
+ | 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
3839
+ | 'SUBSCRIPTION_TIER_EDU_GOV_EMERGING';
3833
3840
  }
3834
3841
  interface GoogleCloudDiscoveryengineV1alphaLicenseConfigUsageStats {
3835
3842
  /** Required. The LicenseConfig name. */
@@ -5322,6 +5329,8 @@ declare namespace gapi.client {
5322
5329
  };
5323
5330
  /** Optional. A set of ranking signals associated with the result. */
5324
5331
  rankSignals?: GoogleCloudDiscoveryengineV1alphaSearchResponseSearchResultRankSignals;
5332
+ /** Optional. A set of signals used by the relevance filter meant for use to fine-tune the relevance filter thresholds. */
5333
+ retrievalSignals?: GoogleCloudDiscoveryengineV1alphaSearchResponseSearchResultRetrievalSignals;
5325
5334
  }
5326
5335
  interface GoogleCloudDiscoveryengineV1alphaSearchResponseSearchResultRankSignals {
5327
5336
  /** Optional. Combined custom boosts for a doc. */
@@ -5351,6 +5360,13 @@ declare namespace gapi.client {
5351
5360
  /** Optional. Float value representing the ranking signal (e.g. 1.25 for BM25). */
5352
5361
  value?: number;
5353
5362
  }
5363
+ interface GoogleCloudDiscoveryengineV1alphaSearchResponseSearchResultRetrievalSignals {
5364
+ /** Optional. Indicates how the result was retrieved. */
5365
+ retrievalSources?:
5366
+ 'RETRIEVAL_SOURCE_UNSPECIFIED' | 'KEYWORD_SEARCH' | 'SEMANTIC_SEARCH'[];
5367
+ /** Optional. Relevance score used by the filter when semantic_relevance_threshold is set. */
5368
+ semanticRelevanceScore?: number;
5369
+ }
5354
5370
  interface GoogleCloudDiscoveryengineV1alphaSearchResponseSessionInfo {
5355
5371
  /** Name of the session. If the auto-session mode is used (when SearchRequest.session ends with "-"), this field holds the newly generated session name. */
5356
5372
  name?: string;
@@ -6004,7 +6020,9 @@ declare namespace gapi.client {
6004
6020
  allowPublicAccess?: boolean;
6005
6021
  /** Optional. Output only. Describes the assistant settings of the widget. */
6006
6022
  assistantSettings?: GoogleCloudDiscoveryengineV1alphaWidgetConfigAssistantSettings;
6007
- /** Output only. Collection components that lists all collections and child data stores associated with the widget config, those data sources can be used for filtering in widget service APIs, users can return results that from selected data sources. */
6023
+ /** Output only. The batch authorization statuses for the widget's connectors. */
6024
+ batchAuthStatuses?: GoogleCloudDiscoveryengineV1alphaWidgetConfigBatchAuthStatus[];
6025
+ /** Output only. Collection components that lists all collections and child data stores associated with the widget config, those data sources can be used for filtering in widget service APIs, users can return results that from selected data sources. For SaaS / Business engines, when `LookupWidgetConfig` is called with `view = WITH_AVAILABLE_CONNECTORS`, this list is additionally augmented with synthetic placeholder entries for connectors the caller may attach but has not yet attached (see `CollectionComponent` for the placeholder contract). The frontend can therefore render a unified list of already-attached and available-to-attach sources by iterating this single field. For Enterprise engines and for the default `view`, only already-attached connectors are returned (today's behavior). */
6008
6026
  collectionComponents?: GoogleCloudDiscoveryengineV1alphaWidgetConfigCollectionComponent[];
6009
6027
  /** Output only. Unique obfuscated identifier of a WidgetConfig. */
6010
6028
  configId?: string;
@@ -6117,6 +6135,14 @@ declare namespace gapi.client {
6117
6135
  | 'WEB_GROUNDING_TYPE_GOOGLE_SEARCH'
6118
6136
  | 'WEB_GROUNDING_TYPE_ENTERPRISE_WEB_SEARCH';
6119
6137
  }
6138
+ interface GoogleCloudDiscoveryengineV1alphaWidgetConfigBatchAuthStatus {
6139
+ /** Output only. The batch authorization group the placeholder belongs to. */
6140
+ batchAuthorizationGroup?: string;
6141
+ /** Output only. The current authorization state for this connector. */
6142
+ connectorAuthState?: GoogleCloudDiscoveryengineV1alphaWidgetConfigConnectorAuthState;
6143
+ /** Output only. It is the batch authorization group placeholder full resource name. This is not a real data connector (not existed in DataConnector table in spanner). It's a resource name existing only in the connector_authorization in the user table. E.g. projects/{project}/locations/{location}/collections/oauth_placeholder_google_workspace/dataStores/dataConnector. */
6144
+ placeholder?: string;
6145
+ }
6120
6146
  interface GoogleCloudDiscoveryengineV1alphaWidgetConfigCollectionComponent {
6121
6147
  /** Output only. The auth uri of the connector source. */
6122
6148
  connectorAuthState?: GoogleCloudDiscoveryengineV1alphaWidgetConfigConnectorAuthState;
@@ -6130,13 +6156,13 @@ declare namespace gapi.client {
6130
6156
  dataStoreComponents?: GoogleCloudDiscoveryengineV1alphaWidgetConfigDataStoreComponent[];
6131
6157
  /** The display name of the collection. */
6132
6158
  displayName?: string;
6133
- /** Output only. the identifier of the collection, used for widget service. For now it refers to collection_id, in the future we will migrate the field to encrypted collection name UUID. */
6159
+ /** Output only. the identifier of the collection, used for widget service. For now it refers to collection_id, in the future we will migrate the field to encrypted collection name UUID. For synthetic placeholder entries (see message-level comment) this is a synthetic placeholder id, not a real collection_id. */
6134
6160
  id?: string;
6135
- /** The name of the collection. It should be collection resource name. Format: `projects/{project}/locations/{location}/collections/{collection_id}`. For APIs under WidgetService, such as WidgetService.LookupWidgetConfig, the project number and location part is erased in this field. */
6161
+ /** The name of the collection. It should be collection resource name. Format: `projects/{project}/locations/{location}/collections/{collection_id}`. For APIs under WidgetService, such as WidgetService.LookupWidgetConfig, the project number and location part is erased in this field. For synthetic placeholder entries (see message-level comment) this carries a synthetic placeholder collection id that does not correspond to a real collection. Callers must not attempt to resolve / GET this resource until the user authorizes the connector. */
6136
6162
  name?: string;
6137
6163
  }
6138
6164
  interface GoogleCloudDiscoveryengineV1alphaWidgetConfigConnectorAuthState {
6139
- /** Output only. The authorization uri for the data connector. */
6165
+ /** Output only. The authorization uri for the data connector. For synthetic placeholder `CollectionComponent` entries (returned by `LookupWidgetConfig` with `view = WITH_AVAILABLE_CONNECTORS` on SaaS / Business engines), this field is left empty. The widget should call `WidgetService.WidgetBuildAuthorizationUrl` on the user's "Connect" click to obtain a freshly-built authorization URL. */
6140
6166
  authorizationUri?: string;
6141
6167
  /** Output only. The authorization state of the data connector. */
6142
6168
  authState?:
@@ -7172,7 +7198,8 @@ declare namespace gapi.client {
7172
7198
  | 'SUBSCRIPTION_TIER_EDU_EMERGING'
7173
7199
  | 'SUBSCRIPTION_TIER_EDU_PRO_EMERGING'
7174
7200
  | 'SUBSCRIPTION_TIER_FRONTLINE_STARTER'
7175
- | 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY';
7201
+ | 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
7202
+ | 'SUBSCRIPTION_TIER_EDU_GOV_EMERGING';
7176
7203
  /** The add-on that this search engine enables. */
7177
7204
  searchAddOns?: 'SEARCH_ADD_ON_UNSPECIFIED' | 'SEARCH_ADD_ON_LLM'[];
7178
7205
  /** The search feature tier of this engine. Different tiers might have different pricing. To learn more, check the pricing documentation. Defaults to SearchTier.SEARCH_TIER_STANDARD if not specified. */
@@ -7363,6 +7390,8 @@ declare namespace gapi.client {
7363
7390
  freeTrial?: boolean;
7364
7391
  /** Output only. Whether the license config is for Gemini bundle. */
7365
7392
  geminiBundle?: boolean;
7393
+ /** Optional. Timestamp of the most recent user-initiated update (seat count change or subscription term change). Unlike `update_time`, this field is only stamped when a customer explicitly updates the license (e.g. via the UI), and is not touched by system-driven writes (subscription pipeline, BALC propagation, etc.). */
7394
+ lastUserUpdateTime?: string;
7366
7395
  /** Required. Number of licenses purchased. */
7367
7396
  licenseCount?: string;
7368
7397
  /** Immutable. Identifier. The fully qualified resource name of the license config. Format: `projects/{project}/locations/{location}/licenseConfigs/{license_config}` */
@@ -7400,7 +7429,8 @@ declare namespace gapi.client {
7400
7429
  | 'SUBSCRIPTION_TIER_EDU_EMERGING'
7401
7430
  | 'SUBSCRIPTION_TIER_EDU_PRO_EMERGING'
7402
7431
  | 'SUBSCRIPTION_TIER_FRONTLINE_STARTER'
7403
- | 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY';
7432
+ | 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
7433
+ | 'SUBSCRIPTION_TIER_EDU_GOV_EMERGING';
7404
7434
  }
7405
7435
  interface GoogleCloudDiscoveryengineV1betaNaturalLanguageQueryUnderstandingConfig {
7406
7436
  /** Mode of Natural Language Query Understanding. If this field is unset, the behavior defaults to NaturalLanguageQueryUnderstandingConfig.Mode.DISABLED. */
@@ -8954,7 +8984,8 @@ declare namespace gapi.client {
8954
8984
  | 'SUBSCRIPTION_TIER_EDU_EMERGING'
8955
8985
  | 'SUBSCRIPTION_TIER_EDU_PRO_EMERGING'
8956
8986
  | 'SUBSCRIPTION_TIER_FRONTLINE_STARTER'
8957
- | 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY';
8987
+ | 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
8988
+ | 'SUBSCRIPTION_TIER_EDU_GOV_EMERGING';
8958
8989
  /** The add-on that this search engine enables. */
8959
8990
  searchAddOns?: 'SEARCH_ADD_ON_UNSPECIFIED' | 'SEARCH_ADD_ON_LLM'[];
8960
8991
  /** The search feature tier of this engine. Different tiers might have different pricing. To learn more, check the pricing documentation. Defaults to SearchTier.SEARCH_TIER_STANDARD if not specified. */
@@ -9084,6 +9115,8 @@ declare namespace gapi.client {
9084
9115
  freeTrial?: boolean;
9085
9116
  /** Output only. Whether the license config is for Gemini bundle. */
9086
9117
  geminiBundle?: boolean;
9118
+ /** Optional. Timestamp of the most recent user-initiated update (seat count change or subscription term change). Unlike `update_time`, this field is only stamped when a customer explicitly updates the license (e.g. via the UI), and is not touched by system-driven writes (subscription pipeline, BALC propagation, etc.). */
9119
+ lastUserUpdateTime?: string;
9087
9120
  /** Required. Number of licenses purchased. */
9088
9121
  licenseCount?: string;
9089
9122
  /** Immutable. Identifier. The fully qualified resource name of the license config. Format: `projects/{project}/locations/{location}/licenseConfigs/{license_config}` */
@@ -9121,7 +9154,8 @@ declare namespace gapi.client {
9121
9154
  | 'SUBSCRIPTION_TIER_EDU_EMERGING'
9122
9155
  | 'SUBSCRIPTION_TIER_EDU_PRO_EMERGING'
9123
9156
  | 'SUBSCRIPTION_TIER_FRONTLINE_STARTER'
9124
- | 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY';
9157
+ | 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
9158
+ | 'SUBSCRIPTION_TIER_EDU_GOV_EMERGING';
9125
9159
  }
9126
9160
  interface GoogleCloudDiscoveryengineV1NaturalLanguageQueryUnderstandingConfig {
9127
9161
  /** Mode of Natural Language Query Understanding. If this field is unset, the behavior defaults to NaturalLanguageQueryUnderstandingConfig.Mode.DISABLED. */
@@ -14926,6 +14960,11 @@ declare namespace gapi.client {
14926
14960
  upload_protocol?: string;
14927
14961
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14928
14962
  uploadType?: string;
14963
+ /** Optional. The view to apply to the returned DataStore. Defaults to DataStoreView.DATA_STORE_VIEW_BASIC if unspecified. DataStoreView.DATA_STORE_VIEW_FULL additionally populates DataStore.icon_uri for a connector-backed data store. Resolving the connector icon requires extra lookups, so request it only when the caller renders the icon. */
14964
+ view?:
14965
+ | 'DATA_STORE_VIEW_UNSPECIFIED'
14966
+ | 'DATA_STORE_VIEW_BASIC'
14967
+ | 'DATA_STORE_VIEW_FULL';
14929
14968
  }): Request<GoogleCloudDiscoveryengineV1alphaDataStore>;
14930
14969
  /** Gets a CompletionConfig */
14931
14970
  getCompletionConfig(request?: {
@@ -15040,6 +15079,11 @@ declare namespace gapi.client {
15040
15079
  upload_protocol?: string;
15041
15080
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15042
15081
  uploadType?: string;
15082
+ /** Optional. The view to apply to the returned DataStores. Defaults to DataStoreView.DATA_STORE_VIEW_BASIC if unspecified. DataStoreView.DATA_STORE_VIEW_FULL additionally populates DataStore.icon_uri for connector-backed data stores. Resolving connector icons requires extra lookups, so request it only when the caller renders the icons. */
15083
+ view?:
15084
+ | 'DATA_STORE_VIEW_UNSPECIFIED'
15085
+ | 'DATA_STORE_VIEW_BASIC'
15086
+ | 'DATA_STORE_VIEW_FULL';
15043
15087
  }): Request<GoogleCloudDiscoveryengineV1alphaListDataStoresResponse>;
15044
15088
  /** Updates a DataStore */
15045
15089
  patch(request: {
@@ -15339,7 +15383,7 @@ declare namespace gapi.client {
15339
15383
  },
15340
15384
  body: GoogleCloudDiscoveryengineV1alphaCompletionConfig,
15341
15385
  ): Request<GoogleCloudDiscoveryengineV1alphaCompletionConfig>;
15342
- /** Updates the DocumentProcessingConfig. DocumentProcessingConfig is a singleon resource of DataStore. It's empty when DataStore is created. The first call to this method will set up DocumentProcessingConfig. */
15386
+ /** Updates the DocumentProcessingConfig. DocumentProcessingConfig is a singleton resource of DataStore. It's empty when DataStore is created. The first call to this method will set up DocumentProcessingConfig. The `update_mask` query parameter is not supported; if it is set the request returns an error. To update mutable fields, omit `update_mask` and send the full DocumentProcessingConfig as the request body. The entire resource is overwritten, so include all values you want to retain. For example, to update the layout parser, set DocumentProcessingConfig.default_parsing_config (or DocumentProcessingConfig.parsing_config_overrides) and omit `update_mask`. Some fields, such as DocumentProcessingConfig.chunking_config, are immutable and return an error if changed. */
15343
15387
  updateDocumentProcessingConfig(request: {
15344
15388
  /** V1 error format. */
15345
15389
  '$.xgafv'?: '1' | '2';
@@ -15361,7 +15405,7 @@ declare namespace gapi.client {
15361
15405
  prettyPrint?: boolean;
15362
15406
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
15363
15407
  quotaUser?: string;
15364
- /** Indicates which fields in the provided DocumentProcessingConfig to update. The following are the only supported fields: * DocumentProcessingConfig.ocr_config If not set, all supported fields are updated. */
15408
+ /** Not supported. If `update_mask` is set, the request returns an `UnsupportedFieldError`. To update mutable fields, omit `update_mask`; the full DocumentProcessingConfig in the request body then overwrites the existing resource. See the method description for details. */
15365
15409
  updateMask?: string;
15366
15410
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15367
15411
  upload_protocol?: string;
@@ -15392,7 +15436,7 @@ declare namespace gapi.client {
15392
15436
  prettyPrint?: boolean;
15393
15437
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
15394
15438
  quotaUser?: string;
15395
- /** Indicates which fields in the provided DocumentProcessingConfig to update. The following are the only supported fields: * DocumentProcessingConfig.ocr_config If not set, all supported fields are updated. */
15439
+ /** Not supported. If `update_mask` is set, the request returns an `UnsupportedFieldError`. To update mutable fields, omit `update_mask`; the full DocumentProcessingConfig in the request body then overwrites the existing resource. See the method description for details. */
15396
15440
  updateMask?: string;
15397
15441
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15398
15442
  upload_protocol?: string;
@@ -23008,6 +23052,11 @@ declare namespace gapi.client {
23008
23052
  upload_protocol?: string;
23009
23053
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23010
23054
  uploadType?: string;
23055
+ /** Optional. The view to apply to the returned DataStore. Defaults to DataStoreView.DATA_STORE_VIEW_BASIC if unspecified. DataStoreView.DATA_STORE_VIEW_FULL additionally populates DataStore.icon_uri for a connector-backed data store. Resolving the connector icon requires extra lookups, so request it only when the caller renders the icon. */
23056
+ view?:
23057
+ | 'DATA_STORE_VIEW_UNSPECIFIED'
23058
+ | 'DATA_STORE_VIEW_BASIC'
23059
+ | 'DATA_STORE_VIEW_FULL';
23011
23060
  }): Request<GoogleCloudDiscoveryengineV1alphaDataStore>;
23012
23061
  /** Gets a CompletionConfig */
23013
23062
  getCompletionConfig(request?: {
@@ -23122,6 +23171,11 @@ declare namespace gapi.client {
23122
23171
  upload_protocol?: string;
23123
23172
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23124
23173
  uploadType?: string;
23174
+ /** Optional. The view to apply to the returned DataStores. Defaults to DataStoreView.DATA_STORE_VIEW_BASIC if unspecified. DataStoreView.DATA_STORE_VIEW_FULL additionally populates DataStore.icon_uri for connector-backed data stores. Resolving connector icons requires extra lookups, so request it only when the caller renders the icons. */
23175
+ view?:
23176
+ | 'DATA_STORE_VIEW_UNSPECIFIED'
23177
+ | 'DATA_STORE_VIEW_BASIC'
23178
+ | 'DATA_STORE_VIEW_FULL';
23125
23179
  }): Request<GoogleCloudDiscoveryengineV1alphaListDataStoresResponse>;
23126
23180
  /** Updates a DataStore */
23127
23181
  patch(request: {
@@ -23363,7 +23417,7 @@ declare namespace gapi.client {
23363
23417
  },
23364
23418
  body: GoogleCloudDiscoveryengineV1alphaCompletionConfig,
23365
23419
  ): Request<GoogleCloudDiscoveryengineV1alphaCompletionConfig>;
23366
- /** Updates the DocumentProcessingConfig. DocumentProcessingConfig is a singleon resource of DataStore. It's empty when DataStore is created. The first call to this method will set up DocumentProcessingConfig. */
23420
+ /** Updates the DocumentProcessingConfig. DocumentProcessingConfig is a singleton resource of DataStore. It's empty when DataStore is created. The first call to this method will set up DocumentProcessingConfig. The `update_mask` query parameter is not supported; if it is set the request returns an error. To update mutable fields, omit `update_mask` and send the full DocumentProcessingConfig as the request body. The entire resource is overwritten, so include all values you want to retain. For example, to update the layout parser, set DocumentProcessingConfig.default_parsing_config (or DocumentProcessingConfig.parsing_config_overrides) and omit `update_mask`. Some fields, such as DocumentProcessingConfig.chunking_config, are immutable and return an error if changed. */
23367
23421
  updateDocumentProcessingConfig(request: {
23368
23422
  /** V1 error format. */
23369
23423
  '$.xgafv'?: '1' | '2';
@@ -23385,7 +23439,7 @@ declare namespace gapi.client {
23385
23439
  prettyPrint?: boolean;
23386
23440
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
23387
23441
  quotaUser?: string;
23388
- /** Indicates which fields in the provided DocumentProcessingConfig to update. The following are the only supported fields: * DocumentProcessingConfig.ocr_config If not set, all supported fields are updated. */
23442
+ /** Not supported. If `update_mask` is set, the request returns an `UnsupportedFieldError`. To update mutable fields, omit `update_mask`; the full DocumentProcessingConfig in the request body then overwrites the existing resource. See the method description for details. */
23389
23443
  updateMask?: string;
23390
23444
  /** Upload protocol for media (e.g. "raw", "multipart"). */
23391
23445
  upload_protocol?: string;
@@ -23416,7 +23470,7 @@ declare namespace gapi.client {
23416
23470
  prettyPrint?: boolean;
23417
23471
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
23418
23472
  quotaUser?: string;
23419
- /** Indicates which fields in the provided DocumentProcessingConfig to update. The following are the only supported fields: * DocumentProcessingConfig.ocr_config If not set, all supported fields are updated. */
23473
+ /** Not supported. If `update_mask` is set, the request returns an `UnsupportedFieldError`. To update mutable fields, omit `update_mask`; the full DocumentProcessingConfig in the request body then overwrites the existing resource. See the method description for details. */
23420
23474
  updateMask?: string;
23421
23475
  /** Upload protocol for media (e.g. "raw", "multipart"). */
23422
23476
  upload_protocol?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.discoveryengine-v1alpha",
3
- "version": "0.3.20260705",
3
+ "version": "0.3.20260712",
4
4
  "description": "TypeScript typings for Discovery Engine API v1alpha",
5
5
  "repository": {
6
6
  "type": "git",