@maxim_mazurok/gapi.client.dialogflow-v2beta1 0.0.20241216 → 0.0.20250103
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 +27 -1
- 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:
|
|
12
|
+
// Revision: 20250103
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -2026,6 +2026,8 @@ declare namespace gapi.client {
|
|
|
2026
2026
|
phoneNumber?: GoogleCloudDialogflowV2beta1ConversationPhoneNumber;
|
|
2027
2027
|
/** Output only. The time the conversation was started. */
|
|
2028
2028
|
startTime?: string;
|
|
2029
|
+
/** Output only. The telephony connection information. */
|
|
2030
|
+
telephonyConnectionInfo?: GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfo;
|
|
2029
2031
|
}
|
|
2030
2032
|
interface GoogleCloudDialogflowV2beta1ConversationContext {
|
|
2031
2033
|
/** Optional. List of message transcripts in the conversation. */
|
|
@@ -2044,6 +2046,8 @@ declare namespace gapi.client {
|
|
|
2044
2046
|
type?: string;
|
|
2045
2047
|
}
|
|
2046
2048
|
interface GoogleCloudDialogflowV2beta1ConversationPhoneNumber {
|
|
2049
|
+
/** Output only. Desired country code for the phone number. */
|
|
2050
|
+
countryCode?: number;
|
|
2047
2051
|
/** Output only. The phone number to connect to this conversation. */
|
|
2048
2052
|
phoneNumber?: string;
|
|
2049
2053
|
}
|
|
@@ -2081,6 +2085,28 @@ declare namespace gapi.client {
|
|
|
2081
2085
|
/** Output only. Update time of the conversation profile. */
|
|
2082
2086
|
updateTime?: string;
|
|
2083
2087
|
}
|
|
2088
|
+
interface GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfo {
|
|
2089
|
+
/** Output only. The number dialed to connect this call in E.164 format. */
|
|
2090
|
+
dialedNumber?: string;
|
|
2091
|
+
/** Output only. The mime content from the initial SIP INVITE. */
|
|
2092
|
+
extraMimeContents?: GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfoMimeContent[];
|
|
2093
|
+
/** Optional. SDP of the call. It's initially the SDP answer to the endpoint, but maybe later updated for the purpose of making the link active, etc. */
|
|
2094
|
+
sdp?: string;
|
|
2095
|
+
/** Output only. The SIP headers from the initial SIP INVITE. */
|
|
2096
|
+
sipHeaders?: GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfoSipHeader[];
|
|
2097
|
+
}
|
|
2098
|
+
interface GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfoMimeContent {
|
|
2099
|
+
/** Optional. The content payload. */
|
|
2100
|
+
content?: string;
|
|
2101
|
+
/** Optional. The mime type of the content. */
|
|
2102
|
+
mimeType?: string;
|
|
2103
|
+
}
|
|
2104
|
+
interface GoogleCloudDialogflowV2beta1ConversationTelephonyConnectionInfoSipHeader {
|
|
2105
|
+
/** Optional. The name of the header. */
|
|
2106
|
+
name?: string;
|
|
2107
|
+
/** Optional. The value of the header. */
|
|
2108
|
+
value?: string;
|
|
2109
|
+
}
|
|
2084
2110
|
interface GoogleCloudDialogflowV2beta1CreateMessageRequest {
|
|
2085
2111
|
/** Required. The message to create. Message.participant is required. */
|
|
2086
2112
|
message?: GoogleCloudDialogflowV2beta1Message;
|