Skip to content

Commit 21283bc

Browse files
committed
feat(AssistantV1): change default URL
1 parent 0570cdb commit 21283bc

File tree

6 files changed

+6
-125
lines changed

6 files changed

+6
-125
lines changed

Scripts/Services/Assistant/V1/AssistantService.cs

Lines changed: 1 addition & 101 deletions
Large diffs are not rendered by default.

Scripts/Services/Assistant/V1/Model/DialogNodeOutputGeneric.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ public class DialogNodeOutputGeneric
2929
/// The type of response returned by the dialog node. The specified response type must be supported by the
3030
/// client application or channel.
3131
///
32-
/// **Note:** The **search_skill** response type is available only for Plus and Premium users, and is used only
33-
/// by the v2 runtime API.
32+
/// **Note:** The **search_skill** response type is used only by the v2 runtime API.
3433
/// </summary>
3534
public class ResponseTypeValue
3635
{
@@ -119,8 +118,7 @@ public class QueryTypeValue
119118
/// The type of response returned by the dialog node. The specified response type must be supported by the
120119
/// client application or channel.
121120
///
122-
/// **Note:** The **search_skill** response type is available only for Plus and Premium users, and is used only
123-
/// by the v2 runtime API.
121+
/// **Note:** The **search_skill** response type is used only by the v2 runtime API.
124122
/// Constants for possible values can be found using DialogNodeOutputGeneric.ResponseTypeValue
125123
/// </summary>
126124
[JsonProperty("response_type", NullValueHandling = NullValueHandling.Ignore)]

Scripts/Services/Assistant/V1/Model/DialogSuggestionResponseGeneric.cs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ public class DialogSuggestionResponseGeneric
2929
/// The type of response returned by the dialog node. The specified response type must be supported by the
3030
/// client application or channel.
3131
///
32-
/// **Note:** The **suggestion** response type is part of the disambiguation feature, which is only available
33-
/// for Plus and Premium users. The **search_skill** response type is available only for Plus and Premium users,
34-
/// and is used only by the v2 runtime API.
32+
/// **Note:** The **search_skill** response type is is used only by the v2 runtime API.
3533
/// </summary>
3634
public class ResponseTypeValue
3735
{
@@ -82,9 +80,7 @@ public class PreferenceValue
8280
/// The type of response returned by the dialog node. The specified response type must be supported by the
8381
/// client application or channel.
8482
///
85-
/// **Note:** The **suggestion** response type is part of the disambiguation feature, which is only available
86-
/// for Plus and Premium users. The **search_skill** response type is available only for Plus and Premium users,
87-
/// and is used only by the v2 runtime API.
83+
/// **Note:** The **search_skill** response type is is used only by the v2 runtime API.
8884
/// Constants for possible values can be found using DialogSuggestionResponseGeneric.ResponseTypeValue
8985
/// </summary>
9086
[JsonProperty("response_type", NullValueHandling = NullValueHandling.Ignore)]

Scripts/Services/Assistant/V1/Model/RuntimeResponseGeneric.cs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ public class RuntimeResponseGeneric
2828
/// <summary>
2929
/// The type of response returned by the dialog node. The specified response type must be supported by the
3030
/// client application or channel.
31-
///
32-
/// **Note:** The **suggestion** response type is part of the disambiguation feature, which is only available
33-
/// for Plus and Premium users.
3431
/// </summary>
3532
public class ResponseTypeValue
3633
{
@@ -80,9 +77,6 @@ public class PreferenceValue
8077
/// <summary>
8178
/// The type of response returned by the dialog node. The specified response type must be supported by the
8279
/// client application or channel.
83-
///
84-
/// **Note:** The **suggestion** response type is part of the disambiguation feature, which is only available
85-
/// for Plus and Premium users.
8680
/// Constants for possible values can be found using RuntimeResponseGeneric.ResponseTypeValue
8781
/// </summary>
8882
[JsonProperty("response_type", NullValueHandling = NullValueHandling.Ignore)]
@@ -146,9 +140,6 @@ public class PreferenceValue
146140
public string DialogNode { get; set; }
147141
/// <summary>
148142
/// An array of objects describing the possible matching dialog nodes from which the user can choose.
149-
///
150-
/// **Note:** The **suggestions** property is part of the disambiguation feature, which is only available for
151-
/// Plus and Premium users.
152143
/// </summary>
153144
[JsonProperty("suggestions", NullValueHandling = NullValueHandling.Ignore)]
154145
public List<DialogSuggestion> Suggestions { get; set; }

Scripts/Services/Assistant/V1/Model/WorkspaceSystemSettings.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ public class WorkspaceSystemSettings
3232
public WorkspaceSystemSettingsTooling Tooling { get; set; }
3333
/// <summary>
3434
/// Workspace settings related to the disambiguation feature.
35-
///
36-
/// **Note:** This feature is available only to Plus and Premium users.
3735
/// </summary>
3836
[JsonProperty("disambiguation", NullValueHandling = NullValueHandling.Ignore)]
3937
public WorkspaceSystemSettingsDisambiguation Disambiguation { get; set; }

Scripts/Services/Assistant/V1/Model/WorkspaceSystemSettingsDisambiguation.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2018, 2019 IBM Corp. All Rights Reserved.
2+
* (C) Copyright IBM Corp. 2018, 2020.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -21,8 +21,6 @@ namespace IBM.Watson.Assistant.V1.Model
2121
{
2222
/// <summary>
2323
/// Workspace settings related to the disambiguation feature.
24-
///
25-
/// **Note:** This feature is available only to Plus and Premium users.
2624
/// </summary>
2725
public class WorkspaceSystemSettingsDisambiguation
2826
{

0 commit comments

Comments
 (0)