@maxim_mazurok/gapi.client.discoveryengine-v1beta 0.0.20241014 → 0.0.20241020

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 +61 -37
  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=v1beta
12
- // Revision: 20241014
12
+ // Revision: 20241020
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -82,12 +82,19 @@ declare namespace gapi.client {
82
82
  /** Human-readable name of a function or method—for example, `google.cloud.discoveryengine.v1alpha.RecommendationService.Recommend`. */
83
83
  functionName?: string;
84
84
  }
85
+ interface GoogleCloudDiscoveryengineV1AdvancedSiteSearchConfig {}
85
86
  interface GoogleCloudDiscoveryengineV1alphaAclConfig {
86
87
  /** Identity provider config. */
87
88
  idpConfig?: GoogleCloudDiscoveryengineV1alphaIdpConfig;
88
89
  /** Immutable. The full resource name of the acl configuration. Format: `projects/{project}/locations/{location}/aclConfig`. This field must be a UTF-8 encoded string with a length limit of 1024 characters. */
89
90
  name?: string;
90
91
  }
92
+ interface GoogleCloudDiscoveryengineV1alphaAdvancedSiteSearchConfig {
93
+ /** If set true, automatic refresh is disabled for the DataStore. */
94
+ disableAutomaticRefresh?: boolean;
95
+ /** If set true, initial indexing is disabled for the DataStore. */
96
+ disableInitialIndex?: boolean;
97
+ }
91
98
  interface GoogleCloudDiscoveryengineV1alphaAnswer {
92
99
  /** Additional answer-skipped reasons. This provides the reason for ignored cases. If nothing is skipped, this field is not set. */
93
100
  answerSkippedReasons?: string[];
@@ -217,7 +224,7 @@ declare namespace gapi.client {
217
224
  document?: string;
218
225
  /** If citation_type is DOCUMENT_LEVEL_CITATION, populate document level snippets. */
219
226
  snippetInfo?: GoogleCloudDiscoveryengineV1alphaAnswerStepActionObservationSearchResultSnippetInfo[];
220
- /** Data representation. The structured JSON data for the document. It's populated from the struct data from the Document, or the Chunk in search result. . */
227
+ /** Data representation. The structured JSON data for the document. It's populated from the struct data from the Document, or the Chunk in search result. */
221
228
  structData?: {[P in string]: any};
222
229
  /** Title. */
223
230
  title?: string;
@@ -269,7 +276,9 @@ declare namespace gapi.client {
269
276
  interface GoogleCloudDiscoveryengineV1alphaCondition {
270
277
  /** Range of time(s) specifying when condition is active. Maximum of 10 time ranges. */
271
278
  activeTimeRange?: GoogleCloudDiscoveryengineV1alphaConditionTimeRange[];
272
- /** Search only A list of terms to match the query on. Maximum of 10 query terms. */
279
+ /** Optional. Query regex to match the whole search query. Cannot be set when Condition.query_terms is set. This is currently supporting promotion use case. */
280
+ queryRegex?: string;
281
+ /** Search only A list of terms to match the query on. Cannot be set when Condition.query_regex is set. Maximum of 10 query terms. */
273
282
  queryTerms?: GoogleCloudDiscoveryengineV1alphaConditionQueryTerm[];
274
283
  }
275
284
  interface GoogleCloudDiscoveryengineV1alphaConditionQueryTerm {
@@ -358,7 +367,7 @@ declare namespace gapi.client {
358
367
  enableSearchAdaptor?: boolean;
359
368
  }
360
369
  interface GoogleCloudDiscoveryengineV1alphaCustomTuningModel {
361
- /** Timestamp the Model was created at. */
370
+ /** Deprecated: Timestamp the Model was created at. */
362
371
  createTime?: string;
363
372
  /** The display name of the model. */
364
373
  displayName?: string;
@@ -378,6 +387,8 @@ declare namespace gapi.client {
378
387
  interface GoogleCloudDiscoveryengineV1alphaDataStore {
379
388
  /** Immutable. Whether data in the DataStore has ACL information. If set to `true`, the source data must have ACL. ACL will be ingested when data is ingested by DocumentService.ImportDocuments methods. When ACL is enabled for the DataStore, Document can't be accessed by calling DocumentService.GetDocument or DocumentService.ListDocuments. Currently ACL is only supported in `GENERIC` industry vertical with non-`PUBLIC_WEBSITE` content config. */
380
389
  aclEnabled?: boolean;
390
+ /** Optional. Configuration for advanced site search. */
391
+ advancedSiteSearchConfig?: GoogleCloudDiscoveryengineV1alphaAdvancedSiteSearchConfig;
381
392
  /** Output only. Data size estimation for billing. */
382
393
  billingEstimation?: GoogleCloudDiscoveryengineV1alphaDataStoreBillingEstimation;
383
394
  /** Output only. CMEK-related information for the DataStore. */
@@ -405,7 +416,7 @@ declare namespace gapi.client {
405
416
  /** Optional. Configuration for Natural Language Query Understanding. */
406
417
  naturalLanguageQueryUnderstandingConfig?: GoogleCloudDiscoveryengineV1alphaNaturalLanguageQueryUnderstandingConfig;
407
418
  /** Optional. Stores serving config at DataStore level. */
408
- servingConfigDataStore?: GoogleCloudDiscoveryengineV1alphaServingConfigDataStore;
419
+ servingConfigDataStore?: GoogleCloudDiscoveryengineV1alphaDataStoreServingConfigDataStore;
409
420
  /** The solutions that the data store enrolls. Available solutions for each industry_vertical: * `MEDIA`: `SOLUTION_TYPE_RECOMMENDATION` and `SOLUTION_TYPE_SEARCH`. * `SITE_SEARCH`: `SOLUTION_TYPE_SEARCH` is automatically enrolled. Other solutions cannot be enrolled. */
410
421
  solutionTypes?: string[];
411
422
  /** The start schema to use for this DataStore when provisioning it. If unset, a default vertical specialized schema will be used. This field is only used by CreateDataStore API, and will be ignored if used in other APIs. This field will be omitted from all API responses including CreateDataStore API. To retrieve a schema of a DataStore, use SchemaService.GetSchema API instead. The provided schema will be validated against certain rules on schema. Learn more from [this doc](https://cloud.google.com/generative-ai-app-builder/docs/provide-schema). */
@@ -427,6 +438,10 @@ declare namespace gapi.client {
427
438
  /** Last updated timestamp for websites. */
428
439
  websiteDataUpdateTime?: string;
429
440
  }
441
+ interface GoogleCloudDiscoveryengineV1alphaDataStoreServingConfigDataStore {
442
+ /** If set true, the DataStore will not be available for serving search requests. */
443
+ disabledForServing?: boolean;
444
+ }
430
445
  interface GoogleCloudDiscoveryengineV1alphaDeleteDataStoreMetadata {
431
446
  /** Operation create time. */
432
447
  createTime?: string;
@@ -900,8 +915,10 @@ declare namespace gapi.client {
900
915
  interface GoogleCloudDiscoveryengineV1alphaRecrawlUrisMetadata {
901
916
  /** Operation create time. */
902
917
  createTime?: string;
903
- /** Unique URIs in the request that don't match any TargetSite in the DataStore, only match TargetSites that haven't been fully indexed, or match a TargetSite with type EXCLUDE. */
918
+ /** Unique URIs in the request that have invalid format. Sample limited to 1000. */
904
919
  invalidUris?: string[];
920
+ /** Total number of unique URIs in the request that have invalid format. */
921
+ invalidUrisCount?: number;
905
922
  /** Total number of URIs that have yet to be crawled. */
906
923
  pendingCount?: number;
907
924
  /** Total number of URIs that were rejected due to insufficient indexing resources. */
@@ -910,6 +927,10 @@ declare namespace gapi.client {
910
927
  successCount?: number;
911
928
  /** Operation last update time. If the operation is done, this is also the finish time. */
912
929
  updateTime?: string;
930
+ /** Unique URIs in the request that don't match any TargetSite in the DataStore, only match TargetSites that haven't been fully indexed, or match a TargetSite with type EXCLUDE. Sample limited to 1000. */
931
+ urisNotMatchingTargetSites?: string[];
932
+ /** Total number of URIs that don't match any TargetSites. */
933
+ urisNotMatchingTargetSitesCount?: number;
913
934
  /** Total number of unique URIs in the request that are not in invalid_uris. */
914
935
  validUrisCount?: number;
915
936
  }
@@ -1181,10 +1202,6 @@ declare namespace gapi.client {
1181
1202
  /** The mode under which spell correction replaces the original search query. Defaults to Mode.AUTO. */
1182
1203
  mode?: string;
1183
1204
  }
1184
- interface GoogleCloudDiscoveryengineV1alphaServingConfigDataStore {
1185
- /** If set true, the DataStore will not be available for serving search requests. */
1186
- disabledForServing?: boolean;
1187
- }
1188
1205
  interface GoogleCloudDiscoveryengineV1alphaSession {
1189
1206
  /** Output only. The time the session finished. */
1190
1207
  endTime?: string;
@@ -1315,6 +1332,7 @@ declare namespace gapi.client {
1315
1332
  /** TargetSites created. */
1316
1333
  targetSites?: GoogleCloudDiscoveryengineV1TargetSite[];
1317
1334
  }
1335
+ interface GoogleCloudDiscoveryengineV1betaAdvancedSiteSearchConfig {}
1318
1336
  interface GoogleCloudDiscoveryengineV1betaAlloyDbSource {
1319
1337
  /** Required. The AlloyDB cluster to copy the data from with a length limit of 256 characters. */
1320
1338
  clusterId?: string;
@@ -1616,7 +1634,7 @@ declare namespace gapi.client {
1616
1634
  document?: string;
1617
1635
  /** If citation_type is DOCUMENT_LEVEL_CITATION, populate document level snippets. */
1618
1636
  snippetInfo?: GoogleCloudDiscoveryengineV1betaAnswerStepActionObservationSearchResultSnippetInfo[];
1619
- /** Data representation. The structured JSON data for the document. It's populated from the struct data from the Document, or the Chunk in search result. . */
1637
+ /** Data representation. The structured JSON data for the document. It's populated from the struct data from the Document, or the Chunk in search result. */
1620
1638
  structData?: {[P in string]: any};
1621
1639
  /** Title. */
1622
1640
  title?: string;
@@ -1670,7 +1688,7 @@ declare namespace gapi.client {
1670
1688
  state?: string;
1671
1689
  }
1672
1690
  interface GoogleCloudDiscoveryengineV1betaBatchGetDocumentsMetadataResponseDocumentMetadataMatcherValue {
1673
- /** Required. Format: projects/{project}/locations/{location}/datasets/{dataset}/fhirStores/{fhir_store}/fhir/{resource_type}/{fhir_resource_id} */
1691
+ /** Format: projects/{project}/locations/{location}/datasets/{dataset}/fhirStores/{fhir_store}/fhir/{resource_type}/{fhir_resource_id} */
1674
1692
  fhirResource?: string;
1675
1693
  /** If match by URI, the URI of the Document. */
1676
1694
  uri?: string;
@@ -1729,7 +1747,7 @@ declare namespace gapi.client {
1729
1747
  tableId?: string;
1730
1748
  }
1731
1749
  interface GoogleCloudDiscoveryengineV1betaCheckGroundingRequest {
1732
- /** Answer candidate to check. Can have a maximum length of 1024 characters. */
1750
+ /** Answer candidate to check. It can have a maximum length of 4096 tokens. */
1733
1751
  answerCandidate?: string;
1734
1752
  /** List of facts for the grounding check. We support up to 200 facts. */
1735
1753
  facts?: GoogleCloudDiscoveryengineV1betaGroundingFact[];
@@ -1740,7 +1758,7 @@ declare namespace gapi.client {
1740
1758
  }
1741
1759
  interface GoogleCloudDiscoveryengineV1betaCheckGroundingResponse {
1742
1760
  /** List of facts cited across all claims in the answer candidate. These are derived from the facts supplied in the request. */
1743
- citedChunks?: GoogleCloudDiscoveryengineV1betaFactChunk[];
1761
+ citedChunks?: GoogleCloudDiscoveryengineV1betaCheckGroundingResponseFactChunk[];
1744
1762
  /** Claim texts and citation info across all claims in the answer candidate. */
1745
1763
  claims?: GoogleCloudDiscoveryengineV1betaCheckGroundingResponseClaim[];
1746
1764
  /** The support score for the input answer candidate. Higher the score, higher is the fraction of claims that are supported by the provided facts. This is always set when a response is returned. */
@@ -1758,6 +1776,12 @@ declare namespace gapi.client {
1758
1776
  /** Position indicating the start of the claim in the answer candidate, measured in bytes. */
1759
1777
  startPos?: number;
1760
1778
  }
1779
+ interface GoogleCloudDiscoveryengineV1betaCheckGroundingResponseFactChunk {
1780
+ /** Text content of the fact chunk. Can be at most 10K characters long. */
1781
+ chunkText?: string;
1782
+ /** Source from which this fact chunk was retrieved. For a fact chunk retrieved from inline facts, this field will contain the index of the specific fact from which this chunk was retrieved. */
1783
+ source?: string;
1784
+ }
1761
1785
  interface GoogleCloudDiscoveryengineV1betaCheckGroundingSpec {
1762
1786
  /** The threshold (in [0,1]) used for determining whether a fact must be cited for a claim in the answer candidate. Choosing a higher threshold will lead to fewer but very strong citations, while choosing a lower threshold may lead to more but somewhat weaker citations. If unset, the threshold will default to 0.6. */
1763
1787
  citationThreshold?: number;
@@ -1865,7 +1889,9 @@ declare namespace gapi.client {
1865
1889
  interface GoogleCloudDiscoveryengineV1betaCondition {
1866
1890
  /** Range of time(s) specifying when condition is active. Maximum of 10 time ranges. */
1867
1891
  activeTimeRange?: GoogleCloudDiscoveryengineV1betaConditionTimeRange[];
1868
- /** Search only A list of terms to match the query on. Maximum of 10 query terms. */
1892
+ /** Optional. Query regex to match the whole search query. Cannot be set when Condition.query_terms is set. This is currently supporting promotion use case. */
1893
+ queryRegex?: string;
1894
+ /** Search only A list of terms to match the query on. Cannot be set when Condition.query_regex is set. Maximum of 10 query terms. */
1869
1895
  queryTerms?: GoogleCloudDiscoveryengineV1betaConditionQueryTerm[];
1870
1896
  }
1871
1897
  interface GoogleCloudDiscoveryengineV1betaConditionQueryTerm {
@@ -2018,7 +2044,7 @@ declare namespace gapi.client {
2018
2044
  text?: string[];
2019
2045
  }
2020
2046
  interface GoogleCloudDiscoveryengineV1betaCustomTuningModel {
2021
- /** Timestamp the Model was created at. */
2047
+ /** Deprecated: Timestamp the Model was created at. */
2022
2048
  createTime?: string;
2023
2049
  /** The display name of the model. */
2024
2050
  displayName?: string;
@@ -2036,6 +2062,8 @@ declare namespace gapi.client {
2036
2062
  trainingStartTime?: string;
2037
2063
  }
2038
2064
  interface GoogleCloudDiscoveryengineV1betaDataStore {
2065
+ /** Optional. Configuration for advanced site search. */
2066
+ advancedSiteSearchConfig?: any;
2039
2067
  /** Output only. Data size estimation for billing. */
2040
2068
  billingEstimation?: GoogleCloudDiscoveryengineV1betaDataStoreBillingEstimation;
2041
2069
  /** Output only. CMEK-related information for the DataStore. */
@@ -2061,7 +2089,7 @@ declare namespace gapi.client {
2061
2089
  /** Optional. Configuration for Natural Language Query Understanding. */
2062
2090
  naturalLanguageQueryUnderstandingConfig?: GoogleCloudDiscoveryengineV1betaNaturalLanguageQueryUnderstandingConfig;
2063
2091
  /** Optional. Stores serving config at DataStore level. */
2064
- servingConfigDataStore?: GoogleCloudDiscoveryengineV1betaServingConfigDataStore;
2092
+ servingConfigDataStore?: GoogleCloudDiscoveryengineV1betaDataStoreServingConfigDataStore;
2065
2093
  /** The solutions that the data store enrolls. Available solutions for each industry_vertical: * `MEDIA`: `SOLUTION_TYPE_RECOMMENDATION` and `SOLUTION_TYPE_SEARCH`. * `SITE_SEARCH`: `SOLUTION_TYPE_SEARCH` is automatically enrolled. Other solutions cannot be enrolled. */
2066
2094
  solutionTypes?: string[];
2067
2095
  /** The start schema to use for this DataStore when provisioning it. If unset, a default vertical specialized schema will be used. This field is only used by CreateDataStore API, and will be ignored if used in other APIs. This field will be omitted from all API responses including CreateDataStore API. To retrieve a schema of a DataStore, use SchemaService.GetSchema API instead. The provided schema will be validated against certain rules on schema. Learn more from [this doc](https://cloud.google.com/generative-ai-app-builder/docs/provide-schema). */
@@ -2083,6 +2111,10 @@ declare namespace gapi.client {
2083
2111
  /** Last updated timestamp for websites. */
2084
2112
  websiteDataUpdateTime?: string;
2085
2113
  }
2114
+ interface GoogleCloudDiscoveryengineV1betaDataStoreServingConfigDataStore {
2115
+ /** If set true, the DataStore will not be available for serving search requests. */
2116
+ disabledForServing?: boolean;
2117
+ }
2086
2118
  interface GoogleCloudDiscoveryengineV1betaDeleteDataStoreMetadata {
2087
2119
  /** Operation create time. */
2088
2120
  createTime?: string;
@@ -2303,16 +2335,6 @@ declare namespace gapi.client {
2303
2335
  /** Required. The full resource name of the SampleQuerySet used for the evaluation, in the format of `projects/{project}/locations/{location}/sampleQuerySets/{sampleQuerySet}`. */
2304
2336
  sampleQuerySet?: string;
2305
2337
  }
2306
- interface GoogleCloudDiscoveryengineV1betaFactChunk {
2307
- /** Text content of the fact chunk. Can be at most 10K characters long. */
2308
- chunkText?: string;
2309
- /** The index of this chunk. Currently, only used for the streaming mode. */
2310
- index?: number;
2311
- /** Source from which this fact chunk was retrieved. If it was retrieved from the GroundingFacts provided in the request then this field will contain the index of the specific fact from which this chunk was retrieved. */
2312
- source?: string;
2313
- /** More fine-grained information for the source reference. */
2314
- sourceMetadata?: {[P in string]: string};
2315
- }
2316
2338
  interface GoogleCloudDiscoveryengineV1betaFetchDomainVerificationStatusResponse {
2317
2339
  /** A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
2318
2340
  nextPageToken?: string;
@@ -3409,10 +3431,6 @@ declare namespace gapi.client {
3409
3431
  /** Output only. ServingConfig updated timestamp. */
3410
3432
  updateTime?: string;
3411
3433
  }
3412
- interface GoogleCloudDiscoveryengineV1betaServingConfigDataStore {
3413
- /** If set true, the DataStore will not be available for serving search requests. */
3414
- disabledForServing?: boolean;
3415
- }
3416
3434
  interface GoogleCloudDiscoveryengineV1betaServingConfigGenericConfig {
3417
3435
  /** Specifies the expected behavior of content search. Only valid for content-search enabled data store. */
3418
3436
  contentSearchSpec?: GoogleCloudDiscoveryengineV1betaSearchRequestContentSearchSpec;
@@ -3424,6 +3442,8 @@ declare namespace gapi.client {
3424
3442
  contentWatchedPercentageThreshold?: number;
3425
3443
  /** Specifies the content watched minutes threshold for demotion. */
3426
3444
  contentWatchedSecondsThreshold?: number;
3445
+ /** Optional. Specifies the number of days to look back for demoting watched content. If set to zero or unset, defaults to the maximum of 365 days. */
3446
+ demoteContentWatchedPastDays?: number;
3427
3447
  /** Specifies the event type used for demoting recommendation result. Currently supported values: * `view-item`: Item viewed. * `media-play`: Start/resume watching a video, playing a song, etc. * `media-complete`: Finished or stopped midway through a video, song, etc. If unset, watch history demotion will not be applied. Content freshness demotion will still be applied. */
3428
3448
  demotionEventType?: string;
3429
3449
  }
@@ -3658,7 +3678,9 @@ declare namespace gapi.client {
3658
3678
  interface GoogleCloudDiscoveryengineV1Condition {
3659
3679
  /** Range of time(s) specifying when condition is active. Maximum of 10 time ranges. */
3660
3680
  activeTimeRange?: GoogleCloudDiscoveryengineV1ConditionTimeRange[];
3661
- /** Search only A list of terms to match the query on. Maximum of 10 query terms. */
3681
+ /** Optional. Query regex to match the whole search query. Cannot be set when Condition.query_terms is set. This is currently supporting promotion use case. */
3682
+ queryRegex?: string;
3683
+ /** Search only A list of terms to match the query on. Cannot be set when Condition.query_regex is set. Maximum of 10 query terms. */
3662
3684
  queryTerms?: GoogleCloudDiscoveryengineV1ConditionQueryTerm[];
3663
3685
  }
3664
3686
  interface GoogleCloudDiscoveryengineV1ConditionQueryTerm {
@@ -3742,6 +3764,8 @@ declare namespace gapi.client {
3742
3764
  updateTime?: string;
3743
3765
  }
3744
3766
  interface GoogleCloudDiscoveryengineV1DataStore {
3767
+ /** Optional. Configuration for advanced site search. */
3768
+ advancedSiteSearchConfig?: any;
3745
3769
  /** Output only. Data size estimation for billing. */
3746
3770
  billingEstimation?: GoogleCloudDiscoveryengineV1DataStoreBillingEstimation;
3747
3771
  /** Output only. CMEK-related information for the DataStore. */
@@ -3763,7 +3787,7 @@ declare namespace gapi.client {
3763
3787
  /** Immutable. The full resource name of the data store. Format: `projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}`. This field must be a UTF-8 encoded string with a length limit of 1024 characters. */
3764
3788
  name?: string;
3765
3789
  /** Optional. Stores serving config at DataStore level. */
3766
- servingConfigDataStore?: GoogleCloudDiscoveryengineV1ServingConfigDataStore;
3790
+ servingConfigDataStore?: GoogleCloudDiscoveryengineV1DataStoreServingConfigDataStore;
3767
3791
  /** The solutions that the data store enrolls. Available solutions for each industry_vertical: * `MEDIA`: `SOLUTION_TYPE_RECOMMENDATION` and `SOLUTION_TYPE_SEARCH`. * `SITE_SEARCH`: `SOLUTION_TYPE_SEARCH` is automatically enrolled. Other solutions cannot be enrolled. */
3768
3792
  solutionTypes?: string[];
3769
3793
  /** The start schema to use for this DataStore when provisioning it. If unset, a default vertical specialized schema will be used. This field is only used by CreateDataStore API, and will be ignored if used in other APIs. This field will be omitted from all API responses including CreateDataStore API. To retrieve a schema of a DataStore, use SchemaService.GetSchema API instead. The provided schema will be validated against certain rules on schema. Learn more from [this doc](https://cloud.google.com/generative-ai-app-builder/docs/provide-schema). */
@@ -3785,6 +3809,10 @@ declare namespace gapi.client {
3785
3809
  /** Last updated timestamp for websites. */
3786
3810
  websiteDataUpdateTime?: string;
3787
3811
  }
3812
+ interface GoogleCloudDiscoveryengineV1DataStoreServingConfigDataStore {
3813
+ /** If set true, the DataStore will not be available for serving search requests. */
3814
+ disabledForServing?: boolean;
3815
+ }
3788
3816
  interface GoogleCloudDiscoveryengineV1DeleteDataStoreMetadata {
3789
3817
  /** Operation create time. */
3790
3818
  createTime?: string;
@@ -4064,10 +4092,6 @@ declare namespace gapi.client {
4064
4092
  /** The structured representation of the schema. */
4065
4093
  structSchema?: {[P in string]: any};
4066
4094
  }
4067
- interface GoogleCloudDiscoveryengineV1ServingConfigDataStore {
4068
- /** If set true, the DataStore will not be available for serving search requests. */
4069
- disabledForServing?: boolean;
4070
- }
4071
4095
  interface GoogleCloudDiscoveryengineV1SiteVerificationInfo {
4072
4096
  /** Site verification state indicating the ownership and validity. */
4073
4097
  siteVerificationState?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.discoveryengine-v1beta",
3
- "version": "0.0.20241014",
3
+ "version": "0.0.20241020",
4
4
  "description": "TypeScript typings for Discovery Engine API v1beta",
5
5
  "repository": {
6
6
  "type": "git",