@chatbotkit/cli 1.25.0 → 1.26.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.
@@ -632,10 +632,10 @@ export const SolutionConfigSchema: z.ZodObject<{
632
632
  } | {
633
633
  type: "widgetIntegration";
634
634
  properties: {
635
+ stream?: boolean | undefined;
635
636
  attachments?: boolean | undefined;
636
637
  botId?: string | undefined;
637
638
  tools?: boolean | undefined;
638
- stream?: boolean | undefined;
639
639
  name?: string | undefined;
640
640
  description?: string | undefined;
641
641
  meta?: {
@@ -992,10 +992,10 @@ export const SolutionConfigSchema: z.ZodObject<{
992
992
  } | {
993
993
  type: "widgetIntegration";
994
994
  properties: {
995
+ stream?: boolean | undefined;
995
996
  attachments?: boolean | undefined;
996
997
  botId?: string | undefined;
997
998
  tools?: boolean | undefined;
998
- stream?: boolean | undefined;
999
999
  name?: string | undefined;
1000
1000
  description?: string | undefined;
1001
1001
  meta?: {
@@ -1353,10 +1353,10 @@ export class Resource {
1353
1353
  } | {
1354
1354
  type: "widgetIntegration";
1355
1355
  properties: {
1356
+ stream?: boolean | undefined;
1356
1357
  attachments?: boolean | undefined;
1357
1358
  botId?: string | undefined;
1358
1359
  tools?: boolean | undefined;
1359
- stream?: boolean | undefined;
1360
1360
  name?: string | undefined;
1361
1361
  description?: string | undefined;
1362
1362
  meta?: {
@@ -1794,10 +1794,10 @@ export class Solution {
1794
1794
  } | {
1795
1795
  type: "widgetIntegration";
1796
1796
  properties: {
1797
+ stream?: boolean | undefined;
1797
1798
  attachments?: boolean | undefined;
1798
1799
  botId?: string | undefined;
1799
1800
  tools?: boolean | undefined;
1800
- stream?: boolean | undefined;
1801
1801
  name?: string | undefined;
1802
1802
  description?: string | undefined;
1803
1803
  meta?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chatbotkit/cli",
3
- "version": "1.25.0",
3
+ "version": "1.26.0",
4
4
  "description": "ChatBotKit command line tools",
5
5
  "license": "ISC",
6
6
  "engines": {
@@ -537,27 +537,6 @@
537
537
  },
538
538
  "./package.json": "./package.json"
539
539
  },
540
- "types": "./dist/cjs/index.d.ts",
541
- "dependencies": {
542
- "commander": "^11.1.0",
543
- "dotenv": "^16.4.5",
544
- "js-yaml": "^4.1.0",
545
- "tslib": "^2.6.2",
546
- "zod": "^3.25.76",
547
- "@chatbotkit/agent": "1.25.0",
548
- "@chatbotkit/sdk": "1.25.0"
549
- },
550
- "devDependencies": {
551
- "@types/js-yaml": "^4.0.9",
552
- "npm-run-all": "^4.1.5",
553
- "typedoc": "^0.28.14",
554
- "typedoc-plugin-markdown": "^4.9.0",
555
- "typedoc-plugin-mdn-links": "^5.0.10",
556
- "typescript": "^5.9"
557
- },
558
- "files": [
559
- "dist/**"
560
- ],
561
540
  "scripts": {
562
541
  "build": "run-s build:*",
563
542
  "build:01-cjs": "tsc -p tsconfig.cjs.json",
@@ -578,6 +557,29 @@
578
557
  "clean:types": "rimraf types",
579
558
  "dev": "node bin/cbk.js",
580
559
  "lint": "eslint .",
560
+ "postpack": "node ../../scripts/create-standard-exports.js",
561
+ "prepack": "node ../../scripts/create-dist-exports.js",
581
562
  "test": "true"
582
- }
583
- }
563
+ },
564
+ "types": "./dist/cjs/index.d.ts",
565
+ "dependencies": {
566
+ "@chatbotkit/agent": "workspace:*",
567
+ "@chatbotkit/sdk": "workspace:*",
568
+ "commander": "^11.1.0",
569
+ "dotenv": "^16.4.5",
570
+ "js-yaml": "^4.1.0",
571
+ "tslib": "^2.6.2",
572
+ "zod": "^3.25.76"
573
+ },
574
+ "devDependencies": {
575
+ "@types/js-yaml": "^4.0.9",
576
+ "npm-run-all": "^4.1.5",
577
+ "typedoc": "^0.28.14",
578
+ "typedoc-plugin-markdown": "^4.9.0",
579
+ "typedoc-plugin-mdn-links": "^5.0.10",
580
+ "typescript": "^5.9"
581
+ },
582
+ "files": [
583
+ "dist/**"
584
+ ]
585
+ }