Skip to content

Commit

Permalink
feat(AssistantV1, AssistantV2): Add cloudFunction and webAction to Di…
Browse files Browse the repository at this point in the history
…alogNodeAction.ActionType
  • Loading branch information
Anthony Oliveri committed Nov 2, 2018
1 parent 4a1c080 commit 16d3fc9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/AssistantV1/Models/DialogNodeAction.swift
Expand Up @@ -26,6 +26,8 @@ public struct DialogNodeAction: Codable {
public enum ActionType: String {
case client = "client"
case server = "server"
case cloudFunction = "cloud_function"
case webAction = "web_action"
}

/**
Expand Down
2 changes: 2 additions & 0 deletions Source/AssistantV2/Models/DialogNodeAction.swift
Expand Up @@ -26,6 +26,8 @@ public struct DialogNodeAction: Decodable {
public enum ActionType: String {
case client = "client"
case server = "server"
case webAction = "web-action"
case cloudFunction = "cloud-function"
}

/**
Expand Down

0 comments on commit 16d3fc9

Please sign in to comment.