Skip to content

Commit

Permalink
Added documentation URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Bot-Dev-RPA committed Oct 4, 2023
1 parent 2920475 commit aec06f4
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ configure(allprojects) {
testNgVersion = '6.14.3'
loggerVersion = '2.20.0'
jnaVersion = '5.3.1'
version '3.0.0'
version '3.0.1'
}
group "$groupName"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
return_label = "[[GenerateRandomPassword.action.return_label]]",
node_label = "[[GenerateRandomPassword.action.node_label]]", return_type = DataType.CREDENTIAL,
return_required = true, allowed_agent_targets = AllowedTarget.HEADLESS,
documentation_url = "")
documentation_url = "https://github.com/A360-Tools/Credentials/blob/main/src/main/docs/GenerateRandomPassword.md")
public class GenerateRandomPassword {
private static final Messages MESSAGES = MessagesFactory
.getMessages("com.automationanywhere.botcommand.messages.messages");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
@CommandPkg(label = "[[GetCredential.label]]", description = "[[GetCredential.description]]", icon = "credential.svg",
name = "GetCred", return_label = "[[GetCredential.action.return_label]]",
node_label = "[[GetCredential.action.node_label]]", return_type = DataType.STRING, return_required = true,
allowed_agent_targets = AllowedTarget.HEADLESS, documentation_url = "")
allowed_agent_targets = AllowedTarget.HEADLESS, documentation_url = "https://github.com/A360-Tools/Credentials/blob/main/src/main/docs/GetCredential.md")
public class GetCredential {
private static final Messages MESSAGES = MessagesFactory
.getMessages("com.automationanywhere.botcommand.messages.messages");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
node_label = "[[GetDynamicCred.node_label]]",
return_label = "[[GetDynamicCred.return_label]]", return_required = true,
allowed_agent_targets = AllowedTarget.HEADLESS,
documentation_url = "",
documentation_url = "https://github.com/A360-Tools/Credentials/blob/main/src/main/docs/GetDynamicCredential.md",
return_type = DataType.CREDENTIAL)
public class GetDynamicCredential {
private static final Messages MESSAGES = MessagesFactory.getMessages("com.automationanywhere.botcommand.messages.messages");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
node_label = "[[GetDynamicCredAttributes.node_label]]",
return_label = "[[GetDynamicCredAttributes.return_label]]", return_Direct = true, return_required = true,
allowed_agent_targets = AllowedTarget.HEADLESS,
documentation_url = "",
documentation_url = "https://github.com/A360-Tools/Credentials/blob/main/src/main/docs/GetDynamicCredentialAttributes.md",
return_type = DataType.DICTIONARY, return_sub_type = DataType.STRING)
public class GetDynamicCredentialAttributes {
private static final Messages MESSAGES = MessagesFactory.getMessages("com.automationanywhere.botcommand.messages.messages");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
@CommandPkg(label = "[[GetToken.label]]", description = "[[GetToken.description]]", icon = "credential.svg", name = "GetToken",
return_label = "[[GetToken.return.label]]", node_label = "[[GetToken.node.label]]", return_type = DataType.STRING, return_required = true,
allowed_agent_targets = AllowedTarget.HEADLESS,
documentation_url = "")
documentation_url = "https://github.com/A360-Tools/Credentials/blob/main/src/main/docs/GetToken.md")
public class GetToken {
private static final Messages MESSAGES = MessagesFactory
.getMessages("com.automationanywhere.botcommand.messages.messages");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
icon = "credential.svg", name = "UpdateDynamicCred",
node_label = "[[UpdateDynamicCred.node_label]]",
allowed_agent_targets = AllowedTarget.HEADLESS,
documentation_url = "")
documentation_url = "https://github.com/A360-Tools/Credentials/blob/main/src/main/docs/UpdateDynamicCredential.md")
public class UpdateDynamicCredential {
private static final Messages MESSAGES = MessagesFactory.getMessages("com.automationanywhere.botcommand.messages.messages");

Expand Down

0 comments on commit aec06f4

Please sign in to comment.