Skip to content

Commit b51af0b

Browse files
committed
chore: Bump package dependencies
1 parent 86493ac commit b51af0b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/examples/input_validation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const MyChatBot = () => {
1919
start: {
2020
message: "Hey there, please enter your age!",
2121
path: "try_again",
22-
validateInput: (userInput: string) => {
22+
validateTextInput: (userInput: string) => {
2323
if (typeof userInput === "string" && !Number.isNaN(Number(userInput))) {
2424
return {success: true};
2525
}

package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@google/generative-ai": "^0.2.1",
2424
"@mdx-js/react": "^3.0.1",
2525
"@rcb-plugins/html-renderer": "^0.1.0",
26-
"@rcb-plugins/input-validator": "^0.1.1",
26+
"@rcb-plugins/input-validator": "^0.2.0",
2727
"@rcb-plugins/markdown-renderer": "^0.1.1",
2828
"clsx": "^1.2.1",
2929
"openai": "^4.47.1",

0 commit comments

Comments
 (0)