Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [contactcenterinsights] A new resource pattern value projects/{project}/locations/{location}/authorizedViewSets/{authorized_view_set}/authorizedViews/{authorized_view}/conversations/{conversation} added to the resource definition `contactcenter... #5890

Merged
merged 2 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,9 @@ service ContactCenterInsights {
rpc CalculateStats(CalculateStatsRequest) returns (CalculateStatsResponse) {
option (google.api.http) = {
get: "/v1/{location=projects/*/locations/*}/conversations:calculateStats"
additional_bindings {
get: "/v1/{location=projects/*/locations/*/authorizedViewSet/*/authorizedView/*}:calculateStats"
}
};
option (google.api.method_signature) = "location";
}
Expand Down Expand Up @@ -540,6 +543,10 @@ service ContactCenterInsights {
option (google.api.http) = {
post: "/v1/{location=projects/*/locations/*}:queryMetrics"
body: "*"
additional_bindings {
post: "/v1/{location=projects/*/locations/*/authorizedViewSet/*/authorizedView/*}:queryMetrics"
body: "*"
}
};
option (google.longrunning.operation_info) = {
response_type: "QueryMetricsResponse"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ message Conversation {
option (google.api.resource) = {
type: "contactcenterinsights.googleapis.com/Conversation"
pattern: "projects/{project}/locations/{location}/conversations/{conversation}"
pattern: "projects/{project}/locations/{location}/authorizedViewSets/{authorized_view_set}/authorizedViews/{authorized_view}/conversations/{conversation}"
plural: "conversations"
singular: "conversation"
};
Expand Down Expand Up @@ -98,6 +99,9 @@ message Conversation {
// A user-provided string indicating the outcome of the agent's segment of
// the call.
string disposition_code = 4;

// The agent type, e.g. HUMAN_AGENT.
ConversationParticipant.Role agent_type = 5;
}

// An arbitrary integer value indicating the customer's satisfaction rating.
Expand Down Expand Up @@ -292,6 +296,7 @@ message Analysis {
option (google.api.resource) = {
type: "contactcenterinsights.googleapis.com/Analysis"
pattern: "projects/{project}/locations/{location}/conversations/{conversation}/analyses/{analysis}"
pattern: "projects/{project}/locations/{location}/authorizedViewSets/{authorized_view_set}/authorizedViews/{authorized_view}/conversations/{conversation}/analyses/{analysis}"
plural: "analyses"
singular: "analysis"
};
Expand Down Expand Up @@ -412,6 +417,7 @@ message FeedbackLabel {
option (google.api.resource) = {
type: "contactcenterinsights.googleapis.com/FeedbackLabel"
pattern: "projects/{project}/locations/{location}/conversations/{conversation}/feedbackLabels/{feedback_label}"
pattern: "projects/{project}/locations/{location}/authorizedViewSets/{authorized_view_set}/authorizedViews/{authorized_view}/conversations/{conversation}/feedbackLabels/{feedback_label}"
plural: "feedbackLabels"
singular: "feedbackLabel"
};
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

57 changes: 57 additions & 0 deletions packages/google-cloud-contactcenterinsights/protos/protos.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 19 additions & 5 deletions packages/google-cloud-contactcenterinsights/protos/protos.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading