@maxim_mazurok/gapi.client.dialogflow-v2beta1 0.12.20251013 → 0.12.20251101

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 +15 -3
  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://dialogflow.googleapis.com/$discovery/rest?version=v2beta1
12
- // Revision: 20251013
12
+ // Revision: 20251101
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -827,6 +827,8 @@ declare namespace gapi.client {
827
827
  secretVersionsForRequestHeaders?: {
828
828
  [P in string]: GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue;
829
829
  };
830
+ /** Optional. Configuration for service account authentication. */
831
+ serviceAccountAuthConfig?: GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig;
830
832
  /** Optional. Indicate the auth token type generated from the [Diglogflow service agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent). The generated token is sent in the Authorization header. */
831
833
  serviceAgentAuth?: string;
832
834
  /** Required. The webhook URI for receiving POST requests. It must use https protocol. */
@@ -852,6 +854,10 @@ declare namespace gapi.client {
852
854
  /** Required. The SecretManager secret version resource storing the header value. Format: `projects/{project}/secrets/{secret}/versions/{version}` */
853
855
  secretVersion?: string;
854
856
  }
857
+ interface GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig {
858
+ /** Required. The email address of the service account used to authenticate the webhook call. Dialogflow uses this service account to exchange an access token and the access token is then sent in the `Authorization` header of the webhook request. The service account must have the `roles/iam.serviceAccountTokenCreator` role granted to the [Dialogflow service agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent). */
859
+ serviceAccount?: string;
860
+ }
855
861
  interface GoogleCloudDialogflowCxV3beta1WebhookRequest {
856
862
  /** Always present. The unique identifier of the DetectIntentResponse that will be returned to the API caller. */
857
863
  detectIntentResponseId?: string;
@@ -1619,6 +1625,8 @@ declare namespace gapi.client {
1619
1625
  secretVersionsForRequestHeaders?: {
1620
1626
  [P in string]: GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue;
1621
1627
  };
1628
+ /** Optional. Configuration for service account authentication. */
1629
+ serviceAccountAuthConfig?: GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig;
1622
1630
  /** Optional. Indicate the auth token type generated from the [Diglogflow service agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent). The generated token is sent in the Authorization header. */
1623
1631
  serviceAgentAuth?: string;
1624
1632
  /** Required. The webhook URI for receiving POST requests. It must use https protocol. */
@@ -1644,6 +1652,10 @@ declare namespace gapi.client {
1644
1652
  /** Required. The SecretManager secret version resource storing the header value. Format: `projects/{project}/secrets/{secret}/versions/{version}` */
1645
1653
  secretVersion?: string;
1646
1654
  }
1655
+ interface GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig {
1656
+ /** Required. The email address of the service account used to authenticate the webhook call. Dialogflow uses this service account to exchange an access token and the access token is then sent in the `Authorization` header of the webhook request. The service account must have the `roles/iam.serviceAccountTokenCreator` role granted to the [Dialogflow service agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent). */
1657
+ serviceAccount?: string;
1658
+ }
1647
1659
  interface GoogleCloudDialogflowCxV3WebhookRequest {
1648
1660
  /** Always present. The unique identifier of the DetectIntentResponse that will be returned to the API caller. */
1649
1661
  detectIntentResponseId?: string;
@@ -4586,7 +4598,7 @@ declare namespace gapi.client {
4586
4598
  caCerts?: GoogleCloudDialogflowV2beta1ToolTLSConfigCACert[];
4587
4599
  }
4588
4600
  interface GoogleCloudDialogflowV2beta1ToolTLSConfigCACert {
4589
- /** Required. The allowed custom CA certificates (in DER format) for HTTPS verification. This overrides the default SSL trust store. If this is empty or unspecified, Dialogflow will use Google's default trust store to verify certificates. N.B. Make sure the HTTPS server certificates are signed with "subject alt name". For instance a certificate can be self-signed using the following command, openssl x509 -req -days 200 -in example.com.csr \ -signkey example.com.key \ -out example.com.crt \ -extfile <(printf "\nsubjectAltName='DNS:www.example.com'") */
4601
+ /** Required. The allowed custom CA certificates (in DER format) for HTTPS verification. This overrides the default SSL trust store. If this is empty or unspecified, Dialogflow will use Google's default trust store to verify certificates. N.B. Make sure the HTTPS server certificates are signed with "subject alt name". For instance a certificate can be self-signed using the following command, ``` openssl x509 -req -days 200 -in example.com.csr \ -signkey example.com.key \ -out example.com.crt \ -extfile <(printf "\nsubjectAltName='DNS:www.example.com'") ``` */
4590
4602
  cert?: string;
4591
4603
  /** Required. The name of the allowed custom CA certificates. This can be used to disambiguate the custom CA certificates. */
4592
4604
  displayName?: string;
@@ -17040,7 +17052,7 @@ declare namespace gapi.client {
17040
17052
  alt?: string;
17041
17053
  /** JSONP */
17042
17054
  callback?: string;
17043
- /** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage. */
17055
+ /** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage. */
17044
17056
  extraLocationTypes?: string | string[];
17045
17057
  /** Selector specifying which fields to include in a partial response. */
17046
17058
  fields?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.dialogflow-v2beta1",
3
- "version": "0.12.20251013",
3
+ "version": "0.12.20251101",
4
4
  "description": "TypeScript typings for Dialogflow API v2beta1",
5
5
  "repository": {
6
6
  "type": "git",