@maxim_mazurok/gapi.client.discoveryengine-v1 0.0.20250121 → 0.0.20250125

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 +68 -4
  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=v1
12
- // Revision: 20250121
12
+ // Revision: 20250125
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -636,6 +636,8 @@ declare namespace gapi.client {
636
636
  displayName?: string;
637
637
  /** Configuration for Document understanding and enrichment. */
638
638
  documentProcessingConfig?: GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfig;
639
+ /** Optional. Configuration for `HEALTHCARE_FHIR` vertical. */
640
+ healthcareFhirConfig?: GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig;
639
641
  /** Output only. Data store level identity provider config. */
640
642
  idpConfig?: GoogleCloudDiscoveryengineV1alphaIdpConfig;
641
643
  /** Immutable. The industry vertical that the data store registers. */
@@ -966,6 +968,20 @@ declare namespace gapi.client {
966
968
  /** Document data keyed by URI pattern. For example: document_data_map = { "www.url1.com/*": { "Categories": ["category1", "category2"] }, "www.url2.com/*": { "Categories": ["category3"] } } */
967
969
  documentDataMap?: {[P in string]: {[P in string]: any}};
968
970
  }
971
+ interface GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig {
972
+ /** Whether to enable configurable schema for `HEALTHCARE_FHIR` vertical. If set to `true`, the predefined healthcare fhir schema can be extended for more customized searching and filtering. */
973
+ enableConfigurableSchema?: boolean;
974
+ /** Whether to enable static indexing for `HEALTHCARE_FHIR` batch ingestion. If set to `true`, the batch ingestion will be processed in a static indexing mode which is slower but more capable of handling larger volume. */
975
+ enableStaticIndexingForBatchIngestion?: boolean;
976
+ }
977
+ interface GoogleCloudDiscoveryengineV1alphaIdentityMappingEntryOperationMetadata {
978
+ /** The number of IdentityMappingEntries that failed to be processed. */
979
+ failureCount?: string;
980
+ /** The number of IdentityMappingEntries that were successfully processed. */
981
+ successCount?: string;
982
+ /** The total number of IdentityMappingEntries that were processed. */
983
+ totalCount?: string;
984
+ }
969
985
  interface GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig {
970
986
  /** Optional. The UTC time when the next data sync is expected to start for the Data Connector. Customers are only able to specify the hour and minute to schedule the data sync. This is utilized when the data connector has a refresh interval greater than 1 day. */
971
987
  nextSyncTime?: GoogleTypeDateTime;
@@ -1020,6 +1036,10 @@ declare namespace gapi.client {
1020
1036
  /** Cloud Storage prefix for import errors. This must be an empty, existing Cloud Storage directory. Import errors are written to sharded files in this directory, one per line, as a JSON-encoded `google.rpc.Status` message. */
1021
1037
  gcsPrefix?: string;
1022
1038
  }
1039
+ interface GoogleCloudDiscoveryengineV1alphaImportIdentityMappingsResponse {
1040
+ /** A sample of errors encountered while processing the request. */
1041
+ errorSamples?: GoogleRpcStatus[];
1042
+ }
1023
1043
  interface GoogleCloudDiscoveryengineV1alphaImportSampleQueriesMetadata {
1024
1044
  /** ImportSampleQueries operation create time. */
1025
1045
  createTime?: string;
@@ -1246,6 +1266,10 @@ declare namespace gapi.client {
1246
1266
  invalidUris?: string[];
1247
1267
  /** Total number of unique URIs in the request that have invalid format. */
1248
1268
  invalidUrisCount?: number;
1269
+ /** URIs that have no index meta tag. Sample limited to 1000. */
1270
+ noindexUris?: string[];
1271
+ /** Total number of URIs that have no index meta tag. */
1272
+ noindexUrisCount?: number;
1249
1273
  /** Total number of URIs that have yet to be crawled. */
1250
1274
  pendingCount?: number;
1251
1275
  /** Total number of URIs that were rejected due to insufficient indexing resources. */
@@ -1388,7 +1412,7 @@ declare namespace gapi.client {
1388
1412
  sessionSpec?: GoogleCloudDiscoveryengineV1alphaSearchRequestSessionSpec;
1389
1413
  /** The spell correction specification that specifies the mode under which spell correction takes effect. */
1390
1414
  spellCorrectionSpec?: GoogleCloudDiscoveryengineV1alphaSearchRequestSpellCorrectionSpec;
1391
- /** Information about the end user. Highly recommended for analytics. UserInfo.user_agent is used to deduce `device_type` for analytics. */
1415
+ /** Information about the end user. Highly recommended for analytics and personalization. UserInfo.user_agent is used to deduce `device_type` for analytics. */
1392
1416
  userInfo?: GoogleCloudDiscoveryengineV1alphaUserInfo;
1393
1417
  /** The user labels applied to a resource must meet the following requirements: * Each resource can have multiple labels, up to a maximum of 64. * Each label must be a key-value pair. * Keys have a minimum length of 1 character and a maximum length of 63 characters and cannot be empty. Values can be empty and have a maximum length of 63 characters. * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. All characters must use UTF-8 encoding, and international characters are allowed. * The key portion of a label must be unique. However, you can use the same key with multiple resources. * Keys must start with a lowercase letter or international character. See [Google Cloud Document](https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements) for more details. */
1394
1418
  userLabels?: {[P in string]: string};
@@ -2291,6 +2315,8 @@ declare namespace gapi.client {
2291
2315
  displayName?: string;
2292
2316
  /** Configuration for Document understanding and enrichment. */
2293
2317
  documentProcessingConfig?: GoogleCloudDiscoveryengineV1betaDocumentProcessingConfig;
2318
+ /** Optional. Configuration for `HEALTHCARE_FHIR` vertical. */
2319
+ healthcareFhirConfig?: GoogleCloudDiscoveryengineV1betaHealthcareFhirConfig;
2294
2320
  /** Immutable. The industry vertical that the data store registers. */
2295
2321
  industryVertical?: string;
2296
2322
  /** Optional. If set, this DataStore is an Infobot FAQ DataStore. */
@@ -2510,6 +2536,20 @@ declare namespace gapi.client {
2510
2536
  /** The Sitemap. */
2511
2537
  sitemap?: GoogleCloudDiscoveryengineV1betaSitemap;
2512
2538
  }
2539
+ interface GoogleCloudDiscoveryengineV1betaHealthcareFhirConfig {
2540
+ /** Whether to enable configurable schema for `HEALTHCARE_FHIR` vertical. If set to `true`, the predefined healthcare fhir schema can be extended for more customized searching and filtering. */
2541
+ enableConfigurableSchema?: boolean;
2542
+ /** Whether to enable static indexing for `HEALTHCARE_FHIR` batch ingestion. If set to `true`, the batch ingestion will be processed in a static indexing mode which is slower but more capable of handling larger volume. */
2543
+ enableStaticIndexingForBatchIngestion?: boolean;
2544
+ }
2545
+ interface GoogleCloudDiscoveryengineV1betaIdentityMappingEntryOperationMetadata {
2546
+ /** The number of IdentityMappingEntries that failed to be processed. */
2547
+ failureCount?: string;
2548
+ /** The number of IdentityMappingEntries that were successfully processed. */
2549
+ successCount?: string;
2550
+ /** The total number of IdentityMappingEntries that were processed. */
2551
+ totalCount?: string;
2552
+ }
2513
2553
  interface GoogleCloudDiscoveryengineV1betaImportCompletionSuggestionsMetadata {
2514
2554
  /** Operation create time. */
2515
2555
  createTime?: string;
@@ -2548,6 +2588,10 @@ declare namespace gapi.client {
2548
2588
  /** Cloud Storage prefix for import errors. This must be an empty, existing Cloud Storage directory. Import errors are written to sharded files in this directory, one per line, as a JSON-encoded `google.rpc.Status` message. */
2549
2589
  gcsPrefix?: string;
2550
2590
  }
2591
+ interface GoogleCloudDiscoveryengineV1betaImportIdentityMappingsResponse {
2592
+ /** A sample of errors encountered while processing the request. */
2593
+ errorSamples?: GoogleRpcStatus[];
2594
+ }
2551
2595
  interface GoogleCloudDiscoveryengineV1betaImportSampleQueriesMetadata {
2552
2596
  /** ImportSampleQueries operation create time. */
2553
2597
  createTime?: string;
@@ -2780,7 +2824,7 @@ declare namespace gapi.client {
2780
2824
  sessionSpec?: GoogleCloudDiscoveryengineV1betaSearchRequestSessionSpec;
2781
2825
  /** The spell correction specification that specifies the mode under which spell correction takes effect. */
2782
2826
  spellCorrectionSpec?: GoogleCloudDiscoveryengineV1betaSearchRequestSpellCorrectionSpec;
2783
- /** Information about the end user. Highly recommended for analytics. UserInfo.user_agent is used to deduce `device_type` for analytics. */
2827
+ /** Information about the end user. Highly recommended for analytics and personalization. UserInfo.user_agent is used to deduce `device_type` for analytics. */
2784
2828
  userInfo?: GoogleCloudDiscoveryengineV1betaUserInfo;
2785
2829
  /** The user labels applied to a resource must meet the following requirements: * Each resource can have multiple labels, up to a maximum of 64. * Each label must be a key-value pair. * Keys have a minimum length of 1 character and a maximum length of 63 characters and cannot be empty. Values can be empty and have a maximum length of 63 characters. * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. All characters must use UTF-8 encoding, and international characters are allowed. * The key portion of a label must be unique. However, you can use the same key with multiple resources. * Keys must start with a lowercase letter or international character. See [Google Cloud Document](https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements) for more details. */
2786
2830
  userLabels?: {[P in string]: string};
@@ -3453,6 +3497,8 @@ declare namespace gapi.client {
3453
3497
  displayName?: string;
3454
3498
  /** Configuration for Document understanding and enrichment. */
3455
3499
  documentProcessingConfig?: GoogleCloudDiscoveryengineV1DocumentProcessingConfig;
3500
+ /** Optional. Configuration for `HEALTHCARE_FHIR` vertical. */
3501
+ healthcareFhirConfig?: GoogleCloudDiscoveryengineV1HealthcareFhirConfig;
3456
3502
  /** Immutable. The industry vertical that the data store registers. */
3457
3503
  industryVertical?: string;
3458
3504
  /** Optional. If set, this DataStore is an Infobot FAQ DataStore. */
@@ -3872,6 +3918,20 @@ declare namespace gapi.client {
3872
3918
  /** Text content of the fact. Can be at most 10K characters long. */
3873
3919
  factText?: string;
3874
3920
  }
3921
+ interface GoogleCloudDiscoveryengineV1HealthcareFhirConfig {
3922
+ /** Whether to enable configurable schema for `HEALTHCARE_FHIR` vertical. If set to `true`, the predefined healthcare fhir schema can be extended for more customized searching and filtering. */
3923
+ enableConfigurableSchema?: boolean;
3924
+ /** Whether to enable static indexing for `HEALTHCARE_FHIR` batch ingestion. If set to `true`, the batch ingestion will be processed in a static indexing mode which is slower but more capable of handling larger volume. */
3925
+ enableStaticIndexingForBatchIngestion?: boolean;
3926
+ }
3927
+ interface GoogleCloudDiscoveryengineV1IdentityMappingEntryOperationMetadata {
3928
+ /** The number of IdentityMappingEntries that failed to be processed. */
3929
+ failureCount?: string;
3930
+ /** The number of IdentityMappingEntries that were successfully processed. */
3931
+ successCount?: string;
3932
+ /** The total number of IdentityMappingEntries that were processed. */
3933
+ totalCount?: string;
3934
+ }
3875
3935
  interface GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsMetadata {
3876
3936
  /** Operation create time. */
3877
3937
  createTime?: string;
@@ -3960,6 +4020,10 @@ declare namespace gapi.client {
3960
4020
  /** Cloud Storage prefix for import errors. This must be an empty, existing Cloud Storage directory. Import errors are written to sharded files in this directory, one per line, as a JSON-encoded `google.rpc.Status` message. */
3961
4021
  gcsPrefix?: string;
3962
4022
  }
4023
+ interface GoogleCloudDiscoveryengineV1ImportIdentityMappingsResponse {
4024
+ /** A sample of errors encountered while processing the request. */
4025
+ errorSamples?: GoogleRpcStatus[];
4026
+ }
3963
4027
  interface GoogleCloudDiscoveryengineV1ImportSuggestionDenyListEntriesMetadata {
3964
4028
  /** Operation create time. */
3965
4029
  createTime?: string;
@@ -4374,7 +4438,7 @@ declare namespace gapi.client {
4374
4438
  sessionSpec?: GoogleCloudDiscoveryengineV1SearchRequestSessionSpec;
4375
4439
  /** The spell correction specification that specifies the mode under which spell correction takes effect. */
4376
4440
  spellCorrectionSpec?: GoogleCloudDiscoveryengineV1SearchRequestSpellCorrectionSpec;
4377
- /** Information about the end user. Highly recommended for analytics. UserInfo.user_agent is used to deduce `device_type` for analytics. */
4441
+ /** Information about the end user. Highly recommended for analytics and personalization. UserInfo.user_agent is used to deduce `device_type` for analytics. */
4378
4442
  userInfo?: GoogleCloudDiscoveryengineV1UserInfo;
4379
4443
  /** The user labels applied to a resource must meet the following requirements: * Each resource can have multiple labels, up to a maximum of 64. * Each label must be a key-value pair. * Keys have a minimum length of 1 character and a maximum length of 63 characters and cannot be empty. Values can be empty and have a maximum length of 63 characters. * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. All characters must use UTF-8 encoding, and international characters are allowed. * The key portion of a label must be unique. However, you can use the same key with multiple resources. * Keys must start with a lowercase letter or international character. See [Google Cloud Document](https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements) for more details. */
4380
4444
  userLabels?: {[P in string]: string};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.discoveryengine-v1",
3
- "version": "0.0.20250121",
3
+ "version": "0.0.20250125",
4
4
  "description": "TypeScript typings for Discovery Engine API v1",
5
5
  "repository": {
6
6
  "type": "git",