- Warning removal.
This commit is contained in:
parent
18b616f042
commit
f2f88139b9
4 changed files with 2470 additions and 7649 deletions
10006
package-lock.json
generated
10006
package-lock.json
generated
File diff suppressed because it is too large
Load diff
72
package.json
72
package.json
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "botlib",
|
||||
"version": "5.0.0",
|
||||
"name": "botlib-legacy",
|
||||
"version": "5.1.1",
|
||||
"description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp) and Libray packages (.gblib)",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index",
|
||||
|
@ -24,29 +24,65 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"async": "3.2.6",
|
||||
"botbuilder": "4.23.0",
|
||||
"botbuilder": "4.23.3",
|
||||
"botbuilder-adapter-facebook": "1.0.12",
|
||||
"botbuilder-ai": "4.23.0",
|
||||
"botbuilder-azure": "4.23.0",
|
||||
"botbuilder-dialogs": "4.23.0",
|
||||
"botframework-connector": "4.23.0",
|
||||
"chrono-node": "2.7.5",
|
||||
"botbuilder-ai": "4.23.3",
|
||||
"botbuilder-azure": "4.23.3",
|
||||
"botbuilder-dialogs": "4.23.3",
|
||||
"botframework-connector": "4.23.3",
|
||||
"chrono-node": "2.8.4",
|
||||
"dotenv-extended": "2.9.0",
|
||||
"iconv-lite": "0.6.3",
|
||||
"iconv-lite": "0.7.0",
|
||||
"ms": "2.1.3",
|
||||
"pragmatismo-io-framework": "1.1.1",
|
||||
"reflect-metadata": "0.2.2",
|
||||
"sequelize": "6.37.3",
|
||||
"sequelize-cli": "6.6.2",
|
||||
"sequelize": "6.37.7",
|
||||
"sequelize-cli": "6.6.3",
|
||||
"sequelize-typescript": "2.1.6",
|
||||
"underscore": "1.13.7",
|
||||
"winston": "3.14.2"
|
||||
"winston": "3.17.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/sequelize": "4.28.20",
|
||||
"@types/winston": "2.4.4",
|
||||
"ts-node": "10.9.2",
|
||||
"typedoc": "0.26.6",
|
||||
"typescript": "5.5.4"
|
||||
"typedoc": "0.28.13",
|
||||
"typescript": "5.9.2"
|
||||
},
|
||||
"overrides": {
|
||||
"lodash.trimend": "npm:lodash@4.17.21",
|
||||
"lodash.isequal": "npm:lodash@4.17.21",
|
||||
"node-domexception": "npm:whatwg-url@^11.0.0",
|
||||
"csv-database": {
|
||||
"fast-csv": "4.3.6"
|
||||
},
|
||||
"sequelize-typescript": {
|
||||
"glob": "~9.0.0"
|
||||
},
|
||||
"botbuilder-adapter-facebook": {
|
||||
"node-domexception": "npm:whatwg-url@^11.0.0"
|
||||
},
|
||||
"tough-cookie": "4.1.3",
|
||||
"phin": "3.7.1",
|
||||
"xmldom": "npm:@xmldom/xmldom@^0.8.10",
|
||||
"form-data": "2.5.5",
|
||||
"uuid": "9.0.1",
|
||||
"har-validator": "5.1.5",
|
||||
"request": "2.88.2",
|
||||
"yaeti": "npm:events@^3.3.0",
|
||||
"text-encoding": "npm:text-encoder-lite@^1.0.1",
|
||||
"docximager": {
|
||||
"xml2js": "^0.5.0"
|
||||
},
|
||||
"tar-fs": "3.1.0",
|
||||
"ws": "8.18.3",
|
||||
"xml2js": "^0.6.2",
|
||||
"inflight": "npm:lru-cache@^10.2.0",
|
||||
"rimraf": "6.0.1",
|
||||
"glob": "11.0.3",
|
||||
"fstream": "npm:fs-extra@^11.0.0",
|
||||
"puppeteer": "24.20.0",
|
||||
"fluent-ffmpeg": "npm:ffmpeg-static@^5.0.0",
|
||||
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz",
|
||||
"@nlpjs/xtables": {
|
||||
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -28,15 +28,14 @@
|
|||
| |
|
||||
\*****************************************************************************/
|
||||
|
||||
import { BotAdapter, UserState } from "botbuilder";
|
||||
import { DialogSet } from "botbuilder-dialogs";
|
||||
import { IGBInstance } from ".";
|
||||
import { IGBCoreService } from "./IGBCoreService";
|
||||
import { IGBConversationalService, IGBPackage } from ".";
|
||||
import { AzureText } from "pragmatismo-io-framework";
|
||||
import { IGBAdminService } from "./IGBAdminService";
|
||||
import { IGBDeployer } from "./IGBDeployer";
|
||||
import { IGBKBService } from "./IGBKBService";
|
||||
import { BotAdapter, UserState } from 'botbuilder';
|
||||
import { DialogSet } from 'botbuilder-dialogs';
|
||||
import { IGBInstance } from '.';
|
||||
import { IGBCoreService } from './IGBCoreService';
|
||||
import { IGBConversationalService, IGBPackage } from '.';
|
||||
import { IGBAdminService } from './IGBAdminService';
|
||||
import { IGBDeployer } from './IGBDeployer';
|
||||
import { IGBKBService } from './IGBKBService';
|
||||
|
||||
/** Minimal services for bot. */
|
||||
|
||||
|
@ -50,14 +49,12 @@ export class GBMinInstance {
|
|||
kbService: IGBKBService;
|
||||
adminService: IGBAdminService;
|
||||
deployService: IGBDeployer;
|
||||
textServices: AzureText;
|
||||
bot: BotAdapter;
|
||||
dialogs: DialogSet;
|
||||
userState: UserState;
|
||||
userProfile: any;
|
||||
whatsAppDirectLine: any;
|
||||
|
||||
|
||||
cbMap: {};
|
||||
scriptMap: {};
|
||||
sandBoxMap: {};
|
||||
|
|
|
@ -10,23 +10,11 @@
|
|||
"module": "commonjs",
|
||||
"moduleResolution": "node",
|
||||
"outDir": "./dist",
|
||||
"paths": {
|
||||
"pragmatismo-io-framework/*": [
|
||||
"node_modules/pragmatismo-io-framework/*"
|
||||
]
|
||||
},
|
||||
"paths": {},
|
||||
"sourceMap": true,
|
||||
"target": "es6",
|
||||
"typeRoots": [
|
||||
"node_modules/@types"
|
||||
]
|
||||
"typeRoots": ["node_modules/@types"]
|
||||
},
|
||||
"include": [
|
||||
"test/**/*",
|
||||
"src/**/*"
|
||||
],
|
||||
"exclude": [
|
||||
"dist",
|
||||
"node_modules"
|
||||
]
|
||||
}
|
||||
"include": ["test/**/*", "src/**/*"],
|
||||
"exclude": ["dist", "node_modules"]
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue