new(all): Moving versions.

This commit is contained in:
Rodrigo Rodriguez 2022-02-04 18:41:38 -03:00
parent c90c08bd67
commit 25c502874f
5 changed files with 1375 additions and 3454 deletions

4808
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{ {
"name": "botlib", "name": "botlib",
"version": "1.9.5", "version": "1.10.1",
"description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp) and Libray packages (.gblib)", "description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp) and Libray packages (.gblib)",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index", "types": "dist/index",
@ -24,18 +24,21 @@
}, },
"dependencies": { "dependencies": {
"async": "3.2.2", "async": "3.2.2",
"botbuilder": "4.14.1", "botbuilder": "4.11.0",
"botbuilder-ai": "4.14.1", "botbuilder-adapter-facebook": "1.0.11",
"botbuilder-ai": "4.11.0",
"botbuilder-dialogs": "4.11.0",
"botframework-connector": "4.11.0",
"botbuilder-azure": "4.14.1", "botbuilder-azure": "4.14.1",
"botbuilder-dialogs": "4.14.1",
"chrono-node": "2.3.2", "chrono-node": "2.3.2",
"dotenv-extended": "2.9.0", "dotenv-extended": "2.9.0",
"iconv-lite": "0.6.3", "iconv-lite": "0.6.3",
"ms": "2.1.3", "ms": "2.1.3",
"pragmatismo-io-framework": "1.0.20", "pragmatismo-io-framework": "1.0.20",
"reflect-metadata": "0.1.13", "reflect-metadata": "0.1.13",
"sequelize": "5.21.5", "sequelize": "6.5.0",
"sequelize-typescript": "1.1.0", "sequelize-cli": "6.2.0",
"sequelize-typescript": "2.1.0",
"underscore": "1.13.1", "underscore": "1.13.1",
"winston": "3.3.3" "winston": "3.3.3"
}, },

View file

@ -32,7 +32,7 @@
import { BotAdapter, UserState } from "botbuilder"; import { BotAdapter, UserState } from "botbuilder";
import { DialogSet } from "botbuilder-dialogs"; import { DialogSet } from "botbuilder-dialogs";
import { IGBInstance } from "./IGBinstance"; import { IGBInstance } from ".";
import { IGBCoreService } from "./IGBCoreService"; import { IGBCoreService } from "./IGBCoreService";
import { IGBConversationalService, IGBPackage } from "."; import { IGBConversationalService, IGBPackage } from ".";
import { AzureText } from "pragmatismo-io-framework"; import { AzureText } from "pragmatismo-io-framework";

View file

@ -32,7 +32,7 @@
"use strict"; "use strict";
import { IGBInstance } from "./IGBinstance"; import { IGBInstance } from ".";
import { GBMinInstance } from "./GBMinInstance"; import { GBMinInstance } from "./GBMinInstance";
export interface IGBAdminService { export interface IGBAdminService {

View file

@ -32,7 +32,7 @@
"use strict"; "use strict";
import { IGBInstance } from "./IGBinstance"; import { IGBInstance } from ".";
import { GBMinInstance } from "./GBMinInstance"; import { GBMinInstance } from "./GBMinInstance";
export interface IGBDeployer { export interface IGBDeployer {