@chatbotkit/cli 1.29.1 â 1.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/cjs/command/api/conversation/index.cjs +4 -2
- package/dist/cjs/command/api/dataset/index.cjs +5 -3
- package/dist/cjs/command/api/index.cjs +16 -14
- package/dist/cjs/command/api/integration/index.cjs +18 -16
- package/dist/cjs/command/api/partner/index.cjs +4 -2
- package/dist/cjs/command/api/platform/index.cjs +4 -2
- package/dist/cjs/command/api/skillset/index.cjs +4 -2
- package/dist/cjs/command/chat/index.cjs +4 -2
- package/dist/cjs/command/solution/index.cjs +4 -2
- package/dist/cjs/command/solution/resource/index.cjs +5 -3
- package/dist/cjs/index.cjs +8 -6
- package/dist/cjs/input.cjs +4 -2
- package/dist/cjs/output.cjs +5 -3
- package/dist/cjs/solution/index.cjs +7 -4
- package/dist/esm/solution/index.d.ts +12 -6
- package/dist/esm/solution/index.js +1 -0
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -11,13 +11,13 @@ A powerful command-line interface for ChatBotKit that provides both API manageme
|
|
|
11
11
|
|
|
12
12
|
## Why ChatBotKit?
|
|
13
13
|
|
|
14
|
-
**Build lighter, future-proof AI agents.** When you build with ChatBotKit, the heavy lifting happens on our servers
|
|
14
|
+
**Build lighter, future-proof AI agents.** When you build with ChatBotKit, the heavy lifting happens on our servers-not in your application. This architectural advantage delivers:
|
|
15
15
|
|
|
16
16
|
- ðŠķ **Lightweight Agents**: Your agents stay lean because complex AI processing, model orchestration, and tool execution happen server-side. Less code in your app means faster load times and simpler maintenance.
|
|
17
17
|
|
|
18
18
|
- ðĄïļ **Robust & Streamlined**: Server-side processing provides a more reliable experience with built-in error handling, automatic retries, and consistent behavior across all platforms.
|
|
19
19
|
|
|
20
|
-
- ð **Backward & Forward Compatible**: As AI technology evolves
|
|
20
|
+
- ð **Backward & Forward Compatible**: As AI technology evolves-new models, new capabilities, new paradigms-your agents automatically benefit. No code changes required on your end.
|
|
21
21
|
|
|
22
22
|
- ðŪ **Future-Proof**: Agents you build today will remain capable tomorrow. When we add support for new AI models or capabilities, your existing agents gain those powers without any updates to your codebase.
|
|
23
23
|
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.command = exports.conversationList = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
7
|
const env_js_1 = require("../../../env.cjs");
|
|
6
8
|
const output_js_1 = require("../../../output.cjs");
|
|
7
|
-
const index_js_1 =
|
|
9
|
+
const index_js_1 = __importDefault(require("./message/index.cjs"));
|
|
8
10
|
const index_js_2 = require("@chatbotkit/sdk/conversation/index.js");
|
|
9
11
|
const commander_1 = require("commander");
|
|
10
12
|
function getClient() {
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.command = exports.datasetDelete = exports.datasetFetch = exports.datasetList = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
7
|
const env_js_1 = require("../../../env.cjs");
|
|
6
8
|
const output_js_1 = require("../../../output.cjs");
|
|
7
|
-
const index_js_1 =
|
|
8
|
-
const index_js_2 =
|
|
9
|
+
const index_js_1 = __importDefault(require("./file/index.cjs"));
|
|
10
|
+
const index_js_2 = __importDefault(require("./record/index.cjs"));
|
|
9
11
|
const index_js_3 = require("@chatbotkit/sdk/dataset/index.js");
|
|
10
12
|
const commander_1 = require("commander");
|
|
11
13
|
function getClient() {
|
|
@@ -1,21 +1,23 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.command = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
7
|
const output_js_1 = require("../../output.cjs");
|
|
6
|
-
const index_js_1 =
|
|
7
|
-
const index_js_2 =
|
|
8
|
-
const index_js_3 =
|
|
9
|
-
const index_js_4 =
|
|
10
|
-
const index_js_5 =
|
|
11
|
-
const index_js_6 =
|
|
12
|
-
const index_js_7 =
|
|
13
|
-
const index_js_8 =
|
|
14
|
-
const index_js_9 =
|
|
15
|
-
const index_js_10 =
|
|
16
|
-
const index_js_11 =
|
|
17
|
-
const index_js_12 =
|
|
18
|
-
const index_js_13 =
|
|
8
|
+
const index_js_1 = __importDefault(require("./blueprint/index.cjs"));
|
|
9
|
+
const index_js_2 = __importDefault(require("./bot/index.cjs"));
|
|
10
|
+
const index_js_3 = __importDefault(require("./contact/index.cjs"));
|
|
11
|
+
const index_js_4 = __importDefault(require("./conversation/index.cjs"));
|
|
12
|
+
const index_js_5 = __importDefault(require("./dataset/index.cjs"));
|
|
13
|
+
const index_js_6 = __importDefault(require("./file/index.cjs"));
|
|
14
|
+
const index_js_7 = __importDefault(require("./integration/index.cjs"));
|
|
15
|
+
const index_js_8 = __importDefault(require("./memory/index.cjs"));
|
|
16
|
+
const index_js_9 = __importDefault(require("./partner/index.cjs"));
|
|
17
|
+
const index_js_10 = __importDefault(require("./platform/index.cjs"));
|
|
18
|
+
const index_js_11 = __importDefault(require("./secret/index.cjs"));
|
|
19
|
+
const index_js_12 = __importDefault(require("./skillset/index.cjs"));
|
|
20
|
+
const index_js_13 = __importDefault(require("./team/index.cjs"));
|
|
19
21
|
const commander_1 = require("commander");
|
|
20
22
|
const commands = {
|
|
21
23
|
blueprint: index_js_1.default,
|
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.command = void 0;
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const
|
|
12
|
-
const
|
|
13
|
-
const
|
|
14
|
-
const
|
|
15
|
-
const
|
|
16
|
-
const
|
|
17
|
-
const
|
|
18
|
-
const
|
|
19
|
-
const index_js_15 = tslib_1.__importDefault(require("./widget/index.cjs"));
|
|
7
|
+
const index_js_1 = __importDefault(require("./discord/index.cjs"));
|
|
8
|
+
const index_js_2 = __importDefault(require("./email/index.cjs"));
|
|
9
|
+
const index_js_3 = __importDefault(require("./extract/index.cjs"));
|
|
10
|
+
const index_js_4 = __importDefault(require("./instagram/index.cjs"));
|
|
11
|
+
const index_js_5 = __importDefault(require("./mcpserver/index.cjs"));
|
|
12
|
+
const index_js_6 = __importDefault(require("./messenger/index.cjs"));
|
|
13
|
+
const index_js_7 = __importDefault(require("./notion/index.cjs"));
|
|
14
|
+
const index_js_8 = __importDefault(require("./sitemap/index.cjs"));
|
|
15
|
+
const index_js_9 = __importDefault(require("./slack/index.cjs"));
|
|
16
|
+
const index_js_10 = __importDefault(require("./support/index.cjs"));
|
|
17
|
+
const index_js_11 = __importDefault(require("./telegram/index.cjs"));
|
|
18
|
+
const index_js_12 = __importDefault(require("./trigger/index.cjs"));
|
|
19
|
+
const index_js_13 = __importDefault(require("./twilio/index.cjs"));
|
|
20
|
+
const index_js_14 = __importDefault(require("./whatsapp/index.cjs"));
|
|
21
|
+
const index_js_15 = __importDefault(require("./widget/index.cjs"));
|
|
20
22
|
const commander_1 = require("commander");
|
|
21
23
|
const commands = {
|
|
22
24
|
widget: index_js_15.default,
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.command = void 0;
|
|
4
|
-
const
|
|
5
|
-
const index_js_1 = tslib_1.__importDefault(require("./user/index.cjs"));
|
|
7
|
+
const index_js_1 = __importDefault(require("./user/index.cjs"));
|
|
6
8
|
const commander_1 = require("commander");
|
|
7
9
|
const commands = {
|
|
8
10
|
user: index_js_1.default,
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.command = void 0;
|
|
4
|
-
const
|
|
5
|
-
const index_js_1 = tslib_1.__importDefault(require("./model/index.cjs"));
|
|
7
|
+
const index_js_1 = __importDefault(require("./model/index.cjs"));
|
|
6
8
|
const commander_1 = require("commander");
|
|
7
9
|
const commands = {
|
|
8
10
|
model: index_js_1.default,
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.command = exports.skillsetDelete = exports.skillsetFetch = exports.skillsetList = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
7
|
const env_js_1 = require("../../../env.cjs");
|
|
6
8
|
const output_js_1 = require("../../../output.cjs");
|
|
7
|
-
const index_js_1 =
|
|
9
|
+
const index_js_1 = __importDefault(require("./ability/index.cjs"));
|
|
8
10
|
const index_js_2 = require("@chatbotkit/sdk/skillset/index.js");
|
|
9
11
|
const commander_1 = require("commander");
|
|
10
12
|
function getClient() {
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.command = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
7
|
const env_js_1 = require("../../env.cjs");
|
|
6
8
|
const spinner_js_1 = require("../../spinner.cjs");
|
|
7
9
|
const tools_js_1 = require("../../tools.cjs");
|
|
8
10
|
const agent_1 = require("@chatbotkit/agent");
|
|
9
11
|
const sdk_1 = require("@chatbotkit/sdk");
|
|
10
12
|
const commander_1 = require("commander");
|
|
11
|
-
const promises_1 =
|
|
13
|
+
const promises_1 = __importDefault(require("readline/promises"));
|
|
12
14
|
function getClient() {
|
|
13
15
|
return new sdk_1.ChatBotKit({
|
|
14
16
|
secret: (0, env_js_1.getSECRET)(),
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.command = exports.solutionSync = exports.solutionDelete = exports.solutionCreate = exports.solutionList = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
7
|
const input_js_1 = require("../../input.cjs");
|
|
6
8
|
const output_js_1 = require("../../output.cjs");
|
|
7
9
|
const index_js_1 = require("../../solution/index.cjs");
|
|
8
|
-
const index_js_2 =
|
|
10
|
+
const index_js_2 = __importDefault(require("./resource/index.cjs"));
|
|
9
11
|
const commander_1 = require("commander");
|
|
10
12
|
exports.solutionList = new commander_1.Command()
|
|
11
13
|
.name('list')
|
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.command = exports.resourceDelete = exports.resourceCreate = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
7
|
const input_js_1 = require("../../../input.cjs");
|
|
6
8
|
const output_js_1 = require("../../../output.cjs");
|
|
7
9
|
const index_js_1 = require("../../../solution/index.cjs");
|
|
8
10
|
const commander_1 = require("commander");
|
|
9
|
-
const promises_1 =
|
|
10
|
-
const node_path_1 =
|
|
11
|
+
const promises_1 = __importDefault(require("node:fs/promises"));
|
|
12
|
+
const node_path_1 = __importDefault(require("node:path"));
|
|
11
13
|
exports.resourceCreate = new commander_1.Command()
|
|
12
14
|
.name('create')
|
|
13
15
|
.description('Create a new resource')
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.Argument = exports.Option = exports.Command = void 0;
|
|
4
7
|
exports.default = cbk;
|
|
5
|
-
const tslib_1 = require("tslib");
|
|
6
8
|
const color_js_1 = require("./color.cjs");
|
|
7
|
-
const index_js_1 =
|
|
8
|
-
const index_js_2 =
|
|
9
|
-
const index_js_3 =
|
|
10
|
-
const index_js_4 =
|
|
11
|
-
const index_js_5 =
|
|
9
|
+
const index_js_1 = __importDefault(require("./command/agent/index.cjs"));
|
|
10
|
+
const index_js_2 = __importDefault(require("./command/api/index.cjs"));
|
|
11
|
+
const index_js_3 = __importDefault(require("./command/chat/index.cjs"));
|
|
12
|
+
const index_js_4 = __importDefault(require("./command/run/index.cjs"));
|
|
13
|
+
const index_js_5 = __importDefault(require("./command/solution/index.cjs"));
|
|
12
14
|
const commander_1 = require("commander");
|
|
13
15
|
Object.defineProperty(exports, "Argument", { enumerable: true, get: function () { return commander_1.Argument; } });
|
|
14
16
|
Object.defineProperty(exports, "Command", { enumerable: true, get: function () { return commander_1.Command; } });
|
package/dist/cjs/input.cjs
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.confirm = confirm;
|
|
4
7
|
exports.prompt = prompt;
|
|
5
8
|
exports.select = select;
|
|
6
|
-
const
|
|
7
|
-
const readline_1 = tslib_1.__importDefault(require("readline"));
|
|
9
|
+
const readline_1 = __importDefault(require("readline"));
|
|
8
10
|
async function confirm(question) {
|
|
9
11
|
const rl = readline_1.default.createInterface({
|
|
10
12
|
input: process.stdin,
|
package/dist/cjs/output.cjs
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.CommandError = exports.config = void 0;
|
|
4
7
|
exports.print = print;
|
|
5
8
|
exports.printError = printError;
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const util_1 = tslib_1.__importDefault(require("util"));
|
|
9
|
+
const js_yaml_1 = __importDefault(require("js-yaml"));
|
|
10
|
+
const util_1 = __importDefault(require("util"));
|
|
9
11
|
exports.config = {
|
|
10
12
|
output: 'yaml',
|
|
11
13
|
};
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
6
|
exports.ArrayBackedObject = exports.Solution = exports.TwilioIntegrationResource = exports.McpServerIntegrationResource = exports.ExtractIntegrationResource = exports.SupportIntegrationResource = exports.TriggerIntegrationResource = exports.EmailIntegrationResource = exports.NotionIntegrationResource = exports.MessengerIntegrationResource = exports.WhatsAppIntegrationResource = exports.TelegramIntegrationResource = exports.DiscordIntegrationResource = exports.SlackIntegrationResource = exports.SitemapIntegrationResource = exports.WidgetIntegrationResource = exports.SkillsetResource = exports.SecretResource = exports.FileResource = exports.DatasetResource = exports.BotResource = exports.BlueprintResource = exports.Resource = exports.SolutionConfigSchema = exports.ResourceConfigSchema = exports.TwilioIntegrationResourceConfigSchema = exports.McpServerIntegrationResourceConfigSchema = exports.ExtractIntegrationResourceConfigSchema = exports.SupportIntegrationResourceConfigSchema = exports.TriggerIntegrationResourceConfigSchema = exports.EmailIntegrationResourceConfigSchema = exports.NotionIntegrationResourceConfigSchema = exports.MessengerIntegrationResourceConfigSchema = exports.WhatsAppIntegrationResourceConfigSchema = exports.TelegramIntegrationResourceConfigSchema = exports.DiscordIntegrationResourceConfigSchema = exports.SlackIntegrationResourceConfigSchema = exports.SitemapIntegrationResourceConfigSchema = exports.WidgetIntegrationResourceConfigSchema = exports.SkillsetResourceConfigSchema = exports.SecretResourceConfigSchema = exports.FileResourceConfigSchema = exports.DatasetResourceConfigSchema = exports.BotResourceConfigSchema = exports.BlueprintResourceConfigSchema = exports.BasicResourceConfigSchema = void 0;
|
|
4
7
|
exports.getSolutionFolderPath = getSolutionFolderPath;
|
|
@@ -7,12 +10,11 @@ exports.getSolutionFilePath = getSolutionFilePath;
|
|
|
7
10
|
exports.getSolutionFileNameAndPath = getSolutionFileNameAndPath;
|
|
8
11
|
exports.replaceEnvVars = replaceEnvVars;
|
|
9
12
|
exports.getArrayBackedObject = getArrayBackedObject;
|
|
10
|
-
const tslib_1 = require("tslib");
|
|
11
13
|
const env_js_1 = require("../env.cjs");
|
|
12
14
|
const output_js_1 = require("../output.cjs");
|
|
13
|
-
const sdk_1 =
|
|
14
|
-
const promises_1 =
|
|
15
|
-
const node_path_1 =
|
|
15
|
+
const sdk_1 = __importDefault(require("@chatbotkit/sdk"));
|
|
16
|
+
const promises_1 = __importDefault(require("node:fs/promises"));
|
|
17
|
+
const node_path_1 = __importDefault(require("node:path"));
|
|
16
18
|
const zod_1 = require("zod");
|
|
17
19
|
function getSolutionFolderPath() {
|
|
18
20
|
const folderPath = node_path_1.default.join('.chatbotkit', 'solutions');
|
|
@@ -368,6 +370,7 @@ exports.McpServerIntegrationResourceConfigSchema = exports.BasicResourceConfigSc
|
|
|
368
370
|
meta: zod_1.z.record(zod_1.z.unknown()).optional(),
|
|
369
371
|
blueprintId: zod_1.z.string().optional(),
|
|
370
372
|
skillsetId: zod_1.z.string().optional(),
|
|
373
|
+
oAuthConnectionId: zod_1.z.string().optional(),
|
|
371
374
|
}),
|
|
372
375
|
});
|
|
373
376
|
exports.TwilioIntegrationResourceConfigSchema = exports.BasicResourceConfigSchema.extend({
|
|
@@ -252,7 +252,7 @@ export const ResourceConfigSchema: z.ZodUnion<[ResourceConfigSchemaFor<"blueprin
|
|
|
252
252
|
blueprintId?: string;
|
|
253
253
|
botId?: string;
|
|
254
254
|
authenticate?: boolean;
|
|
255
|
-
triggerSchedule?:
|
|
255
|
+
triggerSchedule?: string | null;
|
|
256
256
|
sessionDuration?: number;
|
|
257
257
|
maxIterations?: number;
|
|
258
258
|
maxTime?: number;
|
|
@@ -286,6 +286,7 @@ export const ResourceConfigSchema: z.ZodUnion<[ResourceConfigSchemaFor<"blueprin
|
|
|
286
286
|
};
|
|
287
287
|
blueprintId?: string;
|
|
288
288
|
skillsetId?: string;
|
|
289
|
+
oAuthConnectionId?: string;
|
|
289
290
|
}>, ResourceConfigSchemaFor<"twilioIntegration", {
|
|
290
291
|
name?: string;
|
|
291
292
|
description?: string;
|
|
@@ -512,7 +513,7 @@ export const SolutionConfigSchema: z.ZodObject<{
|
|
|
512
513
|
blueprintId?: string;
|
|
513
514
|
botId?: string;
|
|
514
515
|
authenticate?: boolean;
|
|
515
|
-
triggerSchedule?:
|
|
516
|
+
triggerSchedule?: string | null;
|
|
516
517
|
sessionDuration?: number;
|
|
517
518
|
maxIterations?: number;
|
|
518
519
|
maxTime?: number;
|
|
@@ -546,6 +547,7 @@ export const SolutionConfigSchema: z.ZodObject<{
|
|
|
546
547
|
};
|
|
547
548
|
blueprintId?: string;
|
|
548
549
|
skillsetId?: string;
|
|
550
|
+
oAuthConnectionId?: string;
|
|
549
551
|
}>, ResourceConfigSchemaFor<"twilioIntegration", {
|
|
550
552
|
name?: string;
|
|
551
553
|
description?: string;
|
|
@@ -866,7 +868,7 @@ export const SolutionConfigSchema: z.ZodObject<{
|
|
|
866
868
|
blueprintId?: string | undefined;
|
|
867
869
|
sessionDuration?: number | undefined;
|
|
868
870
|
authenticate?: boolean | undefined;
|
|
869
|
-
triggerSchedule?:
|
|
871
|
+
triggerSchedule?: string | null | undefined;
|
|
870
872
|
maxTime?: number | undefined;
|
|
871
873
|
};
|
|
872
874
|
slug?: string | undefined;
|
|
@@ -913,6 +915,7 @@ export const SolutionConfigSchema: z.ZodObject<{
|
|
|
913
915
|
[key: string]: unknown;
|
|
914
916
|
} | undefined;
|
|
915
917
|
blueprintId?: string | undefined;
|
|
918
|
+
oAuthConnectionId?: string | undefined;
|
|
916
919
|
};
|
|
917
920
|
slug?: string | undefined;
|
|
918
921
|
id?: string | undefined;
|
|
@@ -1241,7 +1244,7 @@ export const SolutionConfigSchema: z.ZodObject<{
|
|
|
1241
1244
|
blueprintId?: string | undefined;
|
|
1242
1245
|
sessionDuration?: number | undefined;
|
|
1243
1246
|
authenticate?: boolean | undefined;
|
|
1244
|
-
triggerSchedule?:
|
|
1247
|
+
triggerSchedule?: string | null | undefined;
|
|
1245
1248
|
maxTime?: number | undefined;
|
|
1246
1249
|
};
|
|
1247
1250
|
slug?: string | undefined;
|
|
@@ -1288,6 +1291,7 @@ export const SolutionConfigSchema: z.ZodObject<{
|
|
|
1288
1291
|
[key: string]: unknown;
|
|
1289
1292
|
} | undefined;
|
|
1290
1293
|
blueprintId?: string | undefined;
|
|
1294
|
+
oAuthConnectionId?: string | undefined;
|
|
1291
1295
|
};
|
|
1292
1296
|
slug?: string | undefined;
|
|
1293
1297
|
id?: string | undefined;
|
|
@@ -1617,7 +1621,7 @@ export class Resource {
|
|
|
1617
1621
|
blueprintId?: string | undefined;
|
|
1618
1622
|
sessionDuration?: number | undefined;
|
|
1619
1623
|
authenticate?: boolean | undefined;
|
|
1620
|
-
triggerSchedule?:
|
|
1624
|
+
triggerSchedule?: string | null | undefined;
|
|
1621
1625
|
maxTime?: number | undefined;
|
|
1622
1626
|
};
|
|
1623
1627
|
slug?: string | undefined;
|
|
@@ -1664,6 +1668,7 @@ export class Resource {
|
|
|
1664
1668
|
[key: string]: unknown;
|
|
1665
1669
|
} | undefined;
|
|
1666
1670
|
blueprintId?: string | undefined;
|
|
1671
|
+
oAuthConnectionId?: string | undefined;
|
|
1667
1672
|
};
|
|
1668
1673
|
slug?: string | undefined;
|
|
1669
1674
|
id?: string | undefined;
|
|
@@ -2073,7 +2078,7 @@ export class Solution {
|
|
|
2073
2078
|
blueprintId?: string | undefined;
|
|
2074
2079
|
sessionDuration?: number | undefined;
|
|
2075
2080
|
authenticate?: boolean | undefined;
|
|
2076
|
-
triggerSchedule?:
|
|
2081
|
+
triggerSchedule?: string | null | undefined;
|
|
2077
2082
|
maxTime?: number | undefined;
|
|
2078
2083
|
};
|
|
2079
2084
|
slug?: string | undefined;
|
|
@@ -2120,6 +2125,7 @@ export class Solution {
|
|
|
2120
2125
|
[key: string]: unknown;
|
|
2121
2126
|
} | undefined;
|
|
2122
2127
|
blueprintId?: string | undefined;
|
|
2128
|
+
oAuthConnectionId?: string | undefined;
|
|
2123
2129
|
};
|
|
2124
2130
|
slug?: string | undefined;
|
|
2125
2131
|
id?: string | undefined;
|
|
@@ -358,6 +358,7 @@ export const McpServerIntegrationResourceConfigSchema = BasicResourceConfigSchem
|
|
|
358
358
|
meta: z.record(z.unknown()).optional(),
|
|
359
359
|
blueprintId: z.string().optional(),
|
|
360
360
|
skillsetId: z.string().optional(),
|
|
361
|
+
oAuthConnectionId: z.string().optional(),
|
|
361
362
|
}),
|
|
362
363
|
});
|
|
363
364
|
export const TwilioIntegrationResourceConfigSchema = BasicResourceConfigSchema.extend({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chatbotkit/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.30.0",
|
|
4
4
|
"description": "ChatBotKit command line tools",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"engines": {
|
|
@@ -1462,10 +1462,9 @@
|
|
|
1462
1462
|
"commander": "^11.1.0",
|
|
1463
1463
|
"dotenv": "^16.4.5",
|
|
1464
1464
|
"js-yaml": "^4.1.0",
|
|
1465
|
-
"tslib": "^2.6.2",
|
|
1466
1465
|
"zod": "^3.25.76",
|
|
1467
|
-
"@chatbotkit/agent": "1.
|
|
1468
|
-
"@chatbotkit/sdk": "1.
|
|
1466
|
+
"@chatbotkit/agent": "1.30.0",
|
|
1467
|
+
"@chatbotkit/sdk": "1.30.0"
|
|
1469
1468
|
},
|
|
1470
1469
|
"devDependencies": {
|
|
1471
1470
|
"@types/js-yaml": "^4.0.9",
|