Packages updated.
This commit is contained in:
		
							parent
							
								
									d019ebaef1
								
							
						
					
					
						commit
						e4176b9f0d
					
				
					 7 changed files with 12379 additions and 1162 deletions
				
			
		
							
								
								
									
										12
									
								
								VERSION.md
									
										
									
									
									
								
							
							
						
						
									
										12
									
								
								VERSION.md
									
										
									
									
									
								
							| 
						 | 
				
			
			@ -1,9 +1,14 @@
 | 
			
		|||
# Release History
 | 
			
		||||
 | 
			
		||||
## Version 0.0.27
 | 
			
		||||
 | 
			
		||||
- FIX: Packages updated.
 | 
			
		||||
 | 
			
		||||
## Version 0.0.26
 | 
			
		||||
- Update of dependencies versions (package.json).
 | 
			
		||||
- If a bot package's name begins with '.', then it is ignored.
 | 
			
		||||
- Created DATABASE_LOGGING environment parameter.
 | 
			
		||||
 | 
			
		||||
- FIX: Packages updated.
 | 
			
		||||
- NEW: If a bot package's name begins with '.', then it is ignored.
 | 
			
		||||
- NEW: Created DATABASE_LOGGING environment parameter.
 | 
			
		||||
 | 
			
		||||
## Version 0.0.25
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -41,5 +46,6 @@
 | 
			
		|||
- NEW: Added support for Whatsapp external service key on bot instance model.
 | 
			
		||||
 | 
			
		||||
## Version 0.0.18
 | 
			
		||||
 | 
			
		||||
- FIX: .gbapp files now correctly loaded before other package types so custom models can be used to sync DB.
 | 
			
		||||
- NEW: Removed Boot Package feature. Now every .gbot found on deploy folders are deployed on startup.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1 +1 @@
 | 
			
		|||
package-lock=false
 | 
			
		||||
package-lock=true
 | 
			
		||||
							
								
								
									
										11671
									
								
								deploy/default.gbui/package-lock.json
									
										
									
										generated
									
									
									
										Normal file
									
								
							
							
						
						
									
										11671
									
								
								deploy/default.gbui/package-lock.json
									
										
									
										generated
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load diff
											
										
									
								
							| 
						 | 
				
			
			@ -1,22 +1,24 @@
 | 
			
		|||
{
 | 
			
		||||
  "name": "default.gbui",
 | 
			
		||||
  "version": "0.0.9",
 | 
			
		||||
  "version": "0.0.10",
 | 
			
		||||
  "private": true,
 | 
			
		||||
  "homepage": ".",
 | 
			
		||||
  "homepage": "http://www.generalbot.com",
 | 
			
		||||
  "dependencies": {
 | 
			
		||||
    "@fortawesome/fontawesome": "^1.1.3",
 | 
			
		||||
    "@fortawesome/fontawesome-free-solid": "^5.0.6",
 | 
			
		||||
    "@fortawesome/react-fontawesome": "0.1.0-3",
 | 
			
		||||
    "botframework-webchat": "^0.11.4",
 | 
			
		||||
    "deep-extend": "0.5.0",
 | 
			
		||||
    "fetch": "1.1.0",
 | 
			
		||||
    "react": "^15.6.1",
 | 
			
		||||
    "react-dom": "^15.6.1",
 | 
			
		||||
    "@fortawesome/fontawesome": "^1.1.8",
 | 
			
		||||
    "@fortawesome/fontawesome-free-solid": "^5.0.13",
 | 
			
		||||
    "@fortawesome/fontawesome-svg-core": "^1.2.0-14",
 | 
			
		||||
    "@fortawesome/react-fontawesome": "0.1.0-11",
 | 
			
		||||
    "ajv": "^6.5.0",
 | 
			
		||||
    "botframework-webchat": "^0.13.1",
 | 
			
		||||
    "deep-extend": "^0.6.0",
 | 
			
		||||
    "fetch": "^1.1.0",
 | 
			
		||||
    "react": "^16.4.0",
 | 
			
		||||
    "react-dom": "^16.4.0",
 | 
			
		||||
    "react-helmet": "^5.2.0",
 | 
			
		||||
    "react-player": "1.2.1",
 | 
			
		||||
    "react-player": "^1.6.2",
 | 
			
		||||
    "react-powerbi": "^0.1.7",
 | 
			
		||||
    "react-scripts": "^1.1.1",
 | 
			
		||||
    "react-transition-group": "^2.3.0-beta.0",
 | 
			
		||||
    "react-scripts": "^1.1.4",
 | 
			
		||||
    "react-transition-group": "^2.3.1",
 | 
			
		||||
    "url-join": "^4.0.0"
 | 
			
		||||
  },
 | 
			
		||||
  "scripts": {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -33,9 +33,8 @@
 | 
			
		|||
"use strict";
 | 
			
		||||
 | 
			
		||||
import { KBService } from './../services/KBService';
 | 
			
		||||
import { IGBDialog } from  "botlib";
 | 
			
		||||
import { IGBDialog } from "botlib";
 | 
			
		||||
import { Prompts, UniversalBot, Session, ListStyle } from "botbuilder";
 | 
			
		||||
import UrlJoin from "urljoin";
 | 
			
		||||
import { GBMinInstance } from "botlib";
 | 
			
		||||
 | 
			
		||||
export class FaqDialog extends IGBDialog {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										1778
									
								
								package-lock.json
									
										
									
										generated
									
									
									
								
							
							
						
						
									
										1778
									
								
								package-lock.json
									
										
									
										generated
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load diff
											
										
									
								
							
							
								
								
									
										47
									
								
								package.json
									
										
									
									
									
								
							
							
						
						
									
										47
									
								
								package.json
									
										
									
									
									
								
							| 
						 | 
				
			
			@ -1,21 +1,21 @@
 | 
			
		|||
{
 | 
			
		||||
  "name": "botserver",
 | 
			
		||||
  "version": "0.0.26",
 | 
			
		||||
  "version": "0.0.27",
 | 
			
		||||
  "description": "General Bot Community Edition open-core server.",
 | 
			
		||||
  "main": "./src/app.ts",
 | 
			
		||||
  "homepage": "http://www.generalbot.com",
 | 
			
		||||
  "contributors": [
 | 
			
		||||
    "Rodrigo Rodriguez <me@rodrigorodriguez.com>",
 | 
			
		||||
    "Jorge Ramos <jramos@pobox.com>"
 | 
			
		||||
  ],
 | 
			
		||||
  "license": "AGPL-3.0",
 | 
			
		||||
  "main": "./src/app.ts",
 | 
			
		||||
  "preferGlobal": true,
 | 
			
		||||
  "bin": {
 | 
			
		||||
    "gbot": "./dist/src/app.js"
 | 
			
		||||
  },
 | 
			
		||||
  "homepage": "http://www.generalbot.com",
 | 
			
		||||
  "repository": {
 | 
			
		||||
    "type": "git",
 | 
			
		||||
    "url": "https://github.com/pragmatismo-io/BotServer"
 | 
			
		||||
    "url": "https://github.com/pragmatismo-io/BotServer.git"
 | 
			
		||||
  },
 | 
			
		||||
  "scripts": {
 | 
			
		||||
    "clean": "rimraf dist",
 | 
			
		||||
| 
						 | 
				
			
			@ -30,25 +30,18 @@
 | 
			
		|||
    "node": ">=8.9.4"
 | 
			
		||||
  },
 | 
			
		||||
  "dependencies": {
 | 
			
		||||
    "@types/azure": "^0.9.19",
 | 
			
		||||
    "@types/chai": "4.1.3",
 | 
			
		||||
    "@types/mocha": "5.2.0",
 | 
			
		||||
    "@types/url-join": "^0.8.2",
 | 
			
		||||
    "async": "^2.6.0",
 | 
			
		||||
    "body-parser": "^1.18.2",
 | 
			
		||||
    "async": "^2.6.1",
 | 
			
		||||
    "body-parser": "^1.18.3",
 | 
			
		||||
    "botbuilder": "^3.15.0",
 | 
			
		||||
    "botlib": "^0.0.24",
 | 
			
		||||
    "chai": "^4.1.2",
 | 
			
		||||
    "chokidar": "^2.0.2",
 | 
			
		||||
    "botlib": "^0.0.25",
 | 
			
		||||
    "chokidar": "^2.0.3",
 | 
			
		||||
    "csv-parse": "^2.4.0",
 | 
			
		||||
    "dotenv-extended": "^2.0.2",
 | 
			
		||||
    "express": "^4.16.2",
 | 
			
		||||
    "fs-extra": "^6.0.1",
 | 
			
		||||
    "fs-walk": "0.0.2",
 | 
			
		||||
    "fs-walk": "^0.0.2",
 | 
			
		||||
    "marked": "^0.3.12",
 | 
			
		||||
    "mocha": "^5.1.1",
 | 
			
		||||
    "mocha-typescript": "^1.1.12",
 | 
			
		||||
    "pragmatismo-io-framework": "^1.0.12",
 | 
			
		||||
    "pragmatismo-io-framework": "^1.0.14",
 | 
			
		||||
    "reflect-metadata": "^0.1.12",
 | 
			
		||||
    "request-promise-native": "^1.0.5",
 | 
			
		||||
    "sequelize": "^4.37.10",
 | 
			
		||||
| 
						 | 
				
			
			@ -56,11 +49,21 @@
 | 
			
		|||
    "sqlite3": "^4.0.0",
 | 
			
		||||
    "swagger-client": "^2.1.18",
 | 
			
		||||
    "tedious": "^2.1.1",
 | 
			
		||||
    "ts-node": "6.0.3",
 | 
			
		||||
    "typedoc": "^0.11.1",
 | 
			
		||||
    "typescript": "2.8.3",
 | 
			
		||||
    "url-join": "^4.0.0",
 | 
			
		||||
    "wait-until": "0.0.2",
 | 
			
		||||
    "winston": "^2.4.0"
 | 
			
		||||
    "wait-until": "^0.0.2",
 | 
			
		||||
    "winston": "^2.4.2"
 | 
			
		||||
  },
 | 
			
		||||
  "devDependencies": {
 | 
			
		||||
    "@types/chai": "^4.1.3",
 | 
			
		||||
    "@types/mocha": "^5.2.0",
 | 
			
		||||
    "@types/sequelize": "^4.27.20",
 | 
			
		||||
    "@types/url-join": "^0.8.2",
 | 
			
		||||
    "@types/winston": "^2.3.9",
 | 
			
		||||
    "chai": "^4.1.2",
 | 
			
		||||
    "mocha": "^5.2.0",
 | 
			
		||||
    "mocha-typescript": "^1.1.14",
 | 
			
		||||
    "ts-node": "^6.0.5",
 | 
			
		||||
    "typedoc": "^0.11.1",
 | 
			
		||||
    "typescript": "^2.8.3"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue