Skip to content

Commit 19ed24b

Browse files
authored
Merge pull request #67 from chatbotkit/next
Release node-sdk
2 parents 5d9afb7 + 727f93b commit 19ed24b

File tree

113 files changed

+584
-472
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+584
-472
lines changed

.changeset/free-tires-lie.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@chatbotkit/sdk': minor
3+
---
4+
5+
New complete input parameters and response features.

.changeset/large-coins-greet.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'create-cbk-app': patch
3+
---
4+
5+
Version bump.

.changeset/mean-bees-hide.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@chatbotkit/cli': patch
3+
---
4+
5+
Correct handling of help command line flags when used with scripts.

.changeset/neat-jokes-deny.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@chatbotkit/agent': minor
3+
'@chatbotkit/cli': minor
4+
'@chatbotkit/sdk': minor
5+
---
6+
7+
API and stability improvements.

.changeset/sharp-times-sneeze.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@chatbotkit/cli': patch
3+
---
4+
5+
Fixed issues with finding the right imports when represented as non-strings.

.changeset/shiny-cycles-doubt.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@chatbotkit/agent': patch
3+
'@chatbotkit/cli': patch
4+
'@chatbotkit/sdk': patch
5+
---
6+
7+
Fixed lint and type checks.

.changeset/silver-crews-arrive.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@chatbotkit/sdk': patch
3+
---
4+
5+
Additional types and updated docs.

.changeset/ten-sides-sneeze.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@chatbotkit/cli': patch
3+
---
4+
5+
Fixed cli root detection.

.changeset/tidy-crabs-wish.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@chatbotkit/cli': minor
3+
---
4+
5+
Added a run command for cbk scripting support.

examples/vite/react/stateless-chat/bootstrap.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
/* eslint-disable @typescript-eslint/no-var-requires, no-console */
2-
const fs = require('fs')
3-
const cp = require('child_process')
4-
const packageJson = require('./package.json')
1+
/* eslint-disable no-console */
2+
import cp from 'child_process'
3+
import fs from 'fs'
4+
5+
const packageJson = JSON.parse(fs.readFileSync('./package.json', 'utf-8'))
56

67
for (const dep of Object.keys(packageJson.dependencies)) {
78
if (dep.startsWith('@chatbotkit/')) {

0 commit comments

Comments
 (0)