forked from microsoft/BotFramework-Composer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update create new bot templates (microsoft#418)
* Update templates 1. Update the three templates 2. fix todo bot lg refer issue. * copy full dir when create new\save as bot * main -> Main * main->Main * Fix E2E * Fix E2E * Fix E2E
- Loading branch information
Showing
50 changed files
with
12,103 additions
and
748 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3,834 changes: 3,834 additions & 0 deletions
3,834
Composer/packages/server/assets/projects/EchoBot/.schemas/sdk.schema
Large diffs are not rendered by default.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
Composer/packages/server/assets/projects/EchoBot/EchoBot.botproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"services": [], | ||
"schemas": { | ||
"editor": ".schemas/editor.schema", | ||
"sdk": ".schemas/sdk.schema" | ||
}, | ||
"entry": "Main.dialog" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
12 changes: 0 additions & 12 deletions
12
Composer/packages/server/assets/projects/EchoBot/bot.botproj
This file was deleted.
Oops, something went wrong.
Empty file.
134 changes: 134 additions & 0 deletions
134
Composer/packages/server/assets/projects/EmptyBot/.schemas/editor.schema
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
{ | ||
"fieldTemplateOverrides": { | ||
"BaseField": { | ||
"title": false, | ||
"description": false | ||
}, | ||
"RulesField": { | ||
"title": "Tasks", | ||
"description": "Tasks describe the capabilities of the bot/dialog." | ||
}, | ||
"StepsField": { | ||
"description": "Steps describe the process involved in code to accomplish the functionality of the dialog." | ||
} | ||
}, | ||
"SDKOverrides": { | ||
"Microsoft.AdaptiveDialog": { | ||
"title": "AdaptiveDialog" | ||
}, | ||
"Microsoft.BeginDialog": { | ||
"title": "BeginDialog" | ||
}, | ||
"Microsoft.CancelAllDialogs": { | ||
"title": "CancelAllDialogs" | ||
}, | ||
"Microsoft.ChoiceInput": { | ||
"title": "ChoiceInput" | ||
}, | ||
"Microsoft.ConditionalSelector": { | ||
"title": "ConditionalSelector" | ||
}, | ||
"Microsoft.ConfirmInput": { | ||
"title": "ConfirmInput" | ||
}, | ||
"Microsoft.DebugBreak": { | ||
"title": "DebugBreak" | ||
}, | ||
"Microsoft.DeleteProperty": { | ||
"title": "DeleteProperty" | ||
}, | ||
"Microsoft.EditArray": { | ||
"title": "EditArray" | ||
}, | ||
"Microsoft.EmitEvent": { | ||
"title": "EmitEvent" | ||
}, | ||
"Microsoft.EndDialog": { | ||
"title": "EndDialog" | ||
}, | ||
"Microsoft.EndTurn": { | ||
"title": "EndTurn" | ||
}, | ||
"Microsoft.EventRule": { | ||
"title": "EventRule" | ||
}, | ||
"Microsoft.FirstSelector": { | ||
"title": "FirstSelector" | ||
}, | ||
"Microsoft.HttpRequest": { | ||
"title": "HttpRequest" | ||
}, | ||
"Microsoft.IfCondition": { | ||
"title": "IfCondition" | ||
}, | ||
"Microsoft.InitProperty": { | ||
"title": "InitProperty" | ||
}, | ||
"Microsoft.IntentRule": { | ||
"title": "IntentRule" | ||
}, | ||
"Microsoft.LanguagePolicy": { | ||
"title": "LanguagePolicy" | ||
}, | ||
"Microsoft.LogStep": { | ||
"title": "LogStep" | ||
}, | ||
"Microsoft.LuisRecognizer": { | ||
"title": "Language Understanding", | ||
"description": "To understand what the user says, your dialog needs a 'Recognizer', that includes example words and sentences that users may use" | ||
}, | ||
"Microsoft.MostSpecificSelector": { | ||
"title": "MostSpecificSelector" | ||
}, | ||
"Microsoft.MultiLanguageRecognizer": { | ||
"title": "Language Understanding", | ||
"description": "To understand what the user says, your dialog needs a 'Recognizer', that includes example words and sentences that users may use" | ||
}, | ||
"Microsoft.NumberInput": { | ||
"title": "NumberInput" | ||
}, | ||
"Microsoft.QnAMakerDialog": { | ||
"title": "QnAMakerDialog" | ||
}, | ||
"Microsoft.RandomSelector": { | ||
"title": "RandomSelector" | ||
}, | ||
"Microsoft.RegexRecognizer": { | ||
"title": false, | ||
"description": false | ||
}, | ||
"Microsoft.RepeatDialog": { | ||
"title": "RepeatDialog" | ||
}, | ||
"Microsoft.ReplaceDialog": { | ||
"title": "ReplaceDialog" | ||
}, | ||
"Microsoft.Rule": { | ||
"title": "Rule" | ||
}, | ||
"Microsoft.SaveEntity": { | ||
"title": "SaveEntity" | ||
}, | ||
"Microsoft.SendActivity": { | ||
"title": "SendActivity" | ||
}, | ||
"Microsoft.SetProperty": { | ||
"title": "SetProperty" | ||
}, | ||
"Microsoft.SwitchCondition": { | ||
"title": "SwitchCondition" | ||
}, | ||
"Microsoft.TextInput": { | ||
"title": "TextInput" | ||
}, | ||
"Microsoft.TraceActivity": { | ||
"title": "TraceActivity" | ||
}, | ||
"Microsoft.TrueSelector": { | ||
"title": "TrueSelector" | ||
}, | ||
"Microsoft.UnknownIntentRule": { | ||
"title": "UnknownIntentRule" | ||
} | ||
} | ||
} |
Oops, something went wrong.