-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Revert breaking changes around BotFrameworkClient implementations (#1894) * change BotFrameworkClient to interface * postActivity property is now a Union type * fix breaking change in SkillHttpClient * fix private isEocComingFromParent in dialogHelper.ts * Fix AppCredentials compilation error in BotFrameworkAdapter (#1902) * implement different fixes for #1901 * loosen credentials reqs in BFHttpClient * rev on BotFrameworkAdapter AppCredentials fix * fix breaking change in createTokenApiClient * rename CoreAppCredentials * make appCredentials optional in oAuthPromptSettings * test: add typescript consumer test (#1904) Co-authored-by: stevengum <14935595+stevengum@users.noreply.github.com> Co-authored-by: Christopher Anderson <chrande@microsoft.com> Co-authored-by: Christopher Anderson <chrande@microsoft.com>
- Loading branch information
Showing
12 changed files
with
150 additions
and
51 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -313,3 +313,6 @@ package-lock.json | |
|
||
*.tsbuildinfo | ||
*.js.map | ||
|
||
consumer-test/**.js | ||
consumer-test/**.json |
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,27 @@ | ||
import * as l1 from '../libraries/adaptive-expressions'; | ||
import * as l2 from '../libraries/botbuilder'; | ||
import * as l3 from '../libraries/botbuilder-ai'; | ||
import * as l4 from '../libraries/botbuilder-applicationinsights'; | ||
import * as l5 from '../libraries/botbuilder-azure'; | ||
import * as l6 from '../libraries/botbuilder-core'; | ||
import * as l7 from '../libraries/botbuilder-dialogs'; | ||
import * as l8 from '../libraries/botbuilder-lg'; | ||
import * as l9 from '../libraries/botbuilder-testing'; | ||
import * as l10 from '../libraries/botframework-config'; | ||
import * as l11 from '../libraries/botframework-connector'; | ||
import * as l13 from '../libraries/botframework-schema'; | ||
import * as l14 from '../libraries/botframework-streaming'; | ||
|
||
console.log(Object.keys(l1)); | ||
console.log(Object.keys(l2)); | ||
console.log(Object.keys(l3)); | ||
console.log(Object.keys(l4)); | ||
console.log(Object.keys(l5)); | ||
console.log(Object.keys(l6)); | ||
console.log(Object.keys(l7)); | ||
console.log(Object.keys(l8)); | ||
console.log(Object.keys(l9)); | ||
console.log(Object.keys(l10)); | ||
console.log(Object.keys(l11)); | ||
console.log(Object.keys(l13)); | ||
console.log(Object.keys(l14)); |
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
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
Oops, something went wrong.