Skip to content

Commit 385aa64

Browse files
committed
chore(assistant): regenerate assistant with last minute changes
1 parent 3d5027f commit 385aa64

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

assistant/v1.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1476,7 +1476,7 @@ class AssistantV1 extends BaseService {
14761476
* @param {Function} [callback] - The callback that handles the response.
14771477
* @returns {NodeJS.ReadableStream|void}
14781478
*/
1479-
public listEntityMentions(params: AssistantV1.ListEntityMentionsParams, callback?: AssistantV1.Callback<AssistantV1.EntityMentionCollection>): NodeJS.ReadableStream | void {
1479+
public listMentions(params: AssistantV1.ListMentionsParams, callback?: AssistantV1.Callback<AssistantV1.EntityMentionCollection>): NodeJS.ReadableStream | void {
14801480
const _params = extend({}, params);
14811481
const _callback = (callback) ? callback : () => { /* noop */ };
14821482
const requiredParams = ['workspace_id', 'entity'];
@@ -2977,8 +2977,8 @@ namespace AssistantV1 {
29772977
headers?: Object;
29782978
}
29792979

2980-
/** Parameters for the `listEntityMentions` operation. */
2981-
export interface ListEntityMentionsParams {
2980+
/** Parameters for the `listMentions` operation. */
2981+
export interface ListMentionsParams {
29822982
/** Unique identifier of the workspace. */
29832983
workspace_id: string;
29842984
/** The name of the entity. */
@@ -3630,8 +3630,6 @@ namespace AssistantV1 {
36303630
generic?: DialogNodeOutputGeneric[];
36313631
/** Options that modify how specified output is handled. */
36323632
modifiers?: DialogNodeOutputModifiers;
3633-
/** An object defining text responses in dialog nodes that do not use the `output.generic` object to define responses. New dialog nodes should use `output.generic`. For more information about how to specify dialog node output, see the [documentation](https://console.bluemix.net/docs/services/conversation/dialog-overview.html#complex). */
3634-
text?: Object;
36353633
}
36363634

36373635
/** DialogNodeOutputGeneric. */

0 commit comments

Comments
 (0)