@maxim_mazurok/gapi.client.discoveryengine-v1alpha 0.0.20230803 → 0.0.20230811
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 +17 -1
- package/package.json +1 -1
- package/tests.ts +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:
|
|
12
|
+
// Revision: 20230811
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -601,9 +601,15 @@ declare namespace gapi.client {
|
|
|
601
601
|
*/
|
|
602
602
|
exactMatch?:
|
|
603
603
|
boolean;
|
|
604
|
+
/** Output only. Failure reason. */
|
|
605
|
+
failureReason?:
|
|
606
|
+
GoogleCloudDiscoveryengineV1alphaTargetSiteFailureReason;
|
|
604
607
|
/** Output only. This is system-generated based on the provided_uri_pattern. */
|
|
605
608
|
generatedUriPattern?:
|
|
606
609
|
string;
|
|
610
|
+
/** Output only. Indexing status. */
|
|
611
|
+
indexingStatus?:
|
|
612
|
+
string;
|
|
607
613
|
/**
|
|
608
614
|
* Output only. The fully qualified resource name of the target site.
|
|
609
615
|
* `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/siteSearchEngine/targetSites/{target_site}` The `target_site_id` is system-generated.
|
|
@@ -623,6 +629,16 @@ declare namespace gapi.client {
|
|
|
623
629
|
updateTime?:
|
|
624
630
|
string;
|
|
625
631
|
}
|
|
632
|
+
interface GoogleCloudDiscoveryengineV1alphaTargetSiteFailureReason {
|
|
633
|
+
/** Failed due to insufficient quota. */
|
|
634
|
+
quotaFailure?:
|
|
635
|
+
GoogleCloudDiscoveryengineV1alphaTargetSiteFailureReasonQuotaFailure;
|
|
636
|
+
}
|
|
637
|
+
interface GoogleCloudDiscoveryengineV1alphaTargetSiteFailureReasonQuotaFailure {
|
|
638
|
+
/** This number is an estimation on how much total quota this project needs to successfully complete indexing. */
|
|
639
|
+
totalRequiredQuota?:
|
|
640
|
+
string;
|
|
641
|
+
}
|
|
626
642
|
interface GoogleCloudDiscoveryengineV1alphaTransactionInfo {
|
|
627
643
|
/**
|
|
628
644
|
* All the costs associated with the products. These can be manufacturing costs, shipping expenses not borne by the end user, or any other costs, such that: * Profit = value - tax -
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230811
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|