Skip to content

Commit

Permalink
fix(all): Automated build errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Jul 1, 2022
1 parent ce2b484 commit 55ff686
Show file tree
Hide file tree
Showing 9 changed files with 579 additions and 33,790 deletions.
34,345 changes: 568 additions & 33,777 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"type": "git",
"url": "https://github.com/GeneralBots/BotServer.git"
},

"scripts": {
"clean": "shx rm -rf node_modules/ dist/ docs/reference",
"tslint": "tslint --fix ./src/*.ts ./packages/**/*.ts -t verbose -e ./packages/default.gbui/**/* -e ./packages/**/*.gbdialog/**/*",
Expand Down Expand Up @@ -155,7 +154,6 @@
"travis-deploy-once": "5.0.11",
"ts-node": "10.0.0",
"tslint": "6.1.2",
"tslint-microsoft-contrib": "6.2.0",
"typedoc": "^0.22.17"
},
"eslintConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/basic.gblib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ export class GBBasicPackage implements IGBPackage {
GBLog.verbose(`onExchangeData called.`);
}
public async loadBot(min: GBMinInstance): Promise<void> {

}
}
2 changes: 1 addition & 1 deletion packages/customer-satisfaction.gbapp/strings.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const Messages = {
'en-US': {

about_suggestions: 'Suggestions are welcomed and improve my quality...',
what_about_service: 'What about my service?',
glad_you_liked: 'I\'m glad you liked. I\'m here for you.',
Expand Down
4 changes: 2 additions & 2 deletions packages/hubspot.gblib/strings.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export const Messages = {
'en-US': {

},
'pt-BR': {

}
};
4 changes: 2 additions & 2 deletions packages/kb.gbapp/strings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const Messages = {
lets_search: query =>
`Lets search for ${query}... What do you want to know?`,
see_faq: 'Please take a look at the FAQ I\'ve prepared for you. You can click on them to get the answer.',

ask_first_time: 'What are you looking for?'
},
'pt-BR': {
Expand All @@ -27,7 +27,7 @@ export const Messages = {
`Let's search about ${query}... What do you want to know?`,
see_faq:
'Veja algumas perguntas mais frequentes logo na tela. Clique numa delas para eu responder.',

ask_first_time: 'Como eu posso ajudar?'
}
};
2 changes: 1 addition & 1 deletion packages/security.gbapp/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class GBSecurityPackage implements IGBPackage {
public sysPackages: IGBPackage[];
public async getDialogs(min: GBMinInstance) {

let out = [
const out = [
ProfileDialog.getNameDialog(min),
ProfileDialog.getEmailDialog(min),
ProfileDialog.getMobileDialog(min),
Expand Down
4 changes: 2 additions & 2 deletions packages/teams.gblib/strings.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export const Messages = {
'en-US': {

},
'pt-BR': {

}
};
4 changes: 2 additions & 2 deletions src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,14 +209,14 @@ export class GBServer {
})();
};
if (process.env.CERTIFICATE_PFX) {
var options = {
let options = {
passphrase: process.env.CERTIFICATE_PASSPHRASE,
pfx: fs.readFileSync(process.env.CERTIFICATE_PFX)
};
const httpsServer = https.createServer(options, server).listen(port, mainCallback);

if (process.env.CERTIFICATE2_PFX) {
var options = {
let options = {
passphrase: process.env.CERTIFICATE2_PASSPHRASE,
pfx: fs.readFileSync(process.env.CERTIFICATE2_PFX)
};
Expand Down

0 comments on commit 55ff686

Please sign in to comment.