Skip to content

Commit

Permalink
Bumps botframework-config in the main package to 4.4.0 (#1521)
Browse files Browse the repository at this point in the history
  • Loading branch information
cwhitten authored May 6, 2019
1 parent add1f1c commit 972a4e7
Show file tree
Hide file tree
Showing 4 changed files with 101 additions and 7 deletions.
101 changes: 97 additions & 4 deletions packages/app/main/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/app/main/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
"@bfemulator/sdk-shared": "^1.0.0",
"applicationinsights": "^1.0.8",
"base64url": "2.0.0",
"botframework-config": "4.0.0-preview1.3.4",
"botframework-config": "4.4.0",
"botframework-schema": "^4.3.4",
"chatdown": "^1.0.10",
"chokidar": "^2.0.2",
Expand Down
1 change: 1 addition & 0 deletions packages/app/main/src/services/luisApiService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ export class LuisApi {
type: luisModel.activeVersion === 'Dispatch' ? ServiceTypes.Dispatch : ServiceTypes.Luis,
version: luisModel.activeVersion,
region: luisModel.region,
getEndpoint: () => luisModel.region,
};
}
) as ILuisService[];
Expand Down
4 changes: 2 additions & 2 deletions packages/app/main/src/services/qnaApiService.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ describe('The QnaApiService happy path', () => {
expect(result.services).toEqual([
{
endpointKey: 'primary-endpoint-key-1',
hostname: 'https://localhost',
hostname: 'https://localhost/qnamaker',
id: '1234',
kbId: '1234',
name: 'HIThere#1',
Expand All @@ -293,7 +293,7 @@ describe('The QnaApiService happy path', () => {
},
{
endpointKey: 'primary-endpoint-key-2',
hostname: 'https://localhost',
hostname: 'https://localhost/qnamaker',
id: '9876543',
kbId: '9876543',
name: 'HIThere#2',
Expand Down

0 comments on commit 972a4e7

Please sign in to comment.