Skip to content

Commit c4ac40f

Browse files
authored
Merge pull request #12 from chatbotkit/next
Next
2 parents 2e5a8dd + 1700a6e commit c4ac40f

84 files changed

Lines changed: 27354 additions & 14203 deletions

File tree

Some content is hidden

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

.husky/pre-commit

Lines changed: 0 additions & 4 deletions
This file was deleted.

examples/sdk/esm/gpt4-chatbot-stream-with-functions.js

Lines changed: 0 additions & 118 deletions
This file was deleted.

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
"lint": "run-s lint:*",
2121
"lint:all": "turbo run lint",
2222
"preinstall": "npx only-allow pnpm",
23-
"prepare": "husky install",
2423
"prepare-changes": "changeset",
2524
"publish-changes": "turbo run lint check build test && changeset version && changeset publish",
2625
"test": "turbo run test"
@@ -37,7 +36,6 @@
3736
"eslint": "^8.38.0",
3837
"eslint-config-prettier": "^8.8.0",
3938
"format-package": "^7.0.0",
40-
"husky": "^8.0.3",
4139
"npm-run-all": "^4.1.5",
4240
"prettier": "^2.8.7",
4341
"rimraf": "^5.0.5",

packages/cli/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @chatbotkit/cli
22

3+
## 1.20.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [1fbe1f3]
8+
- @chatbotkit/sdk@1.20.0
9+
310
## 1.19.0
411

512
### Minor Changes

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chatbotkit/cli",
3-
"version": "1.19.0",
3+
"version": "1.20.0",
44
"description": "ChatBotKit command line tools",
55
"license": "ISC",
66
"engines": {

packages/cli/types/solution/index.d.ts

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -81,30 +81,30 @@ export const BotResourceConfigSchema: z.ZodObject<{
8181
moderation: z.ZodOptional<z.ZodBoolean>;
8282
privacy: z.ZodOptional<z.ZodBoolean>;
8383
}, "strip", z.ZodTypeAny, {
84-
backstory?: string | undefined;
8584
model?: string | undefined;
85+
backstory?: string | undefined;
8686
datasetId?: string | undefined;
8787
skillsetId?: string | undefined;
88-
moderation?: boolean | undefined;
8988
privacy?: boolean | undefined;
89+
moderation?: boolean | undefined;
9090
}, {
91-
backstory?: string | undefined;
9291
model?: string | undefined;
92+
backstory?: string | undefined;
9393
datasetId?: string | undefined;
9494
skillsetId?: string | undefined;
95-
moderation?: boolean | undefined;
9695
privacy?: boolean | undefined;
96+
moderation?: boolean | undefined;
9797
}>;
9898
}, "strip", z.ZodTypeAny, {
9999
type: "bot";
100100
name: string;
101101
properties: {
102-
backstory?: string | undefined;
103102
model?: string | undefined;
103+
backstory?: string | undefined;
104104
datasetId?: string | undefined;
105105
skillsetId?: string | undefined;
106-
moderation?: boolean | undefined;
107106
privacy?: boolean | undefined;
107+
moderation?: boolean | undefined;
108108
};
109109
slug?: string | undefined;
110110
id?: string | undefined;
@@ -113,12 +113,12 @@ export const BotResourceConfigSchema: z.ZodObject<{
113113
type: "bot";
114114
name: string;
115115
properties: {
116-
backstory?: string | undefined;
117116
model?: string | undefined;
117+
backstory?: string | undefined;
118118
datasetId?: string | undefined;
119119
skillsetId?: string | undefined;
120-
moderation?: boolean | undefined;
121120
privacy?: boolean | undefined;
121+
moderation?: boolean | undefined;
122122
};
123123
slug?: string | undefined;
124124
id?: string | undefined;
@@ -261,30 +261,30 @@ export const ResourceConfigSchema: z.ZodUnion<[z.ZodObject<{
261261
moderation: z.ZodOptional<z.ZodBoolean>;
262262
privacy: z.ZodOptional<z.ZodBoolean>;
263263
}, "strip", z.ZodTypeAny, {
264-
backstory?: string | undefined;
265264
model?: string | undefined;
265+
backstory?: string | undefined;
266266
datasetId?: string | undefined;
267267
skillsetId?: string | undefined;
268-
moderation?: boolean | undefined;
269268
privacy?: boolean | undefined;
269+
moderation?: boolean | undefined;
270270
}, {
271-
backstory?: string | undefined;
272271
model?: string | undefined;
272+
backstory?: string | undefined;
273273
datasetId?: string | undefined;
274274
skillsetId?: string | undefined;
275-
moderation?: boolean | undefined;
276275
privacy?: boolean | undefined;
276+
moderation?: boolean | undefined;
277277
}>;
278278
}, "strip", z.ZodTypeAny, {
279279
type: "bot";
280280
name: string;
281281
properties: {
282-
backstory?: string | undefined;
283282
model?: string | undefined;
283+
backstory?: string | undefined;
284284
datasetId?: string | undefined;
285285
skillsetId?: string | undefined;
286-
moderation?: boolean | undefined;
287286
privacy?: boolean | undefined;
287+
moderation?: boolean | undefined;
288288
};
289289
slug?: string | undefined;
290290
id?: string | undefined;
@@ -293,12 +293,12 @@ export const ResourceConfigSchema: z.ZodUnion<[z.ZodObject<{
293293
type: "bot";
294294
name: string;
295295
properties: {
296-
backstory?: string | undefined;
297296
model?: string | undefined;
297+
backstory?: string | undefined;
298298
datasetId?: string | undefined;
299299
skillsetId?: string | undefined;
300-
moderation?: boolean | undefined;
301300
privacy?: boolean | undefined;
301+
moderation?: boolean | undefined;
302302
};
303303
slug?: string | undefined;
304304
id?: string | undefined;
@@ -427,30 +427,30 @@ export const SolutionConfigSchema: z.ZodObject<{
427427
moderation: z.ZodOptional<z.ZodBoolean>;
428428
privacy: z.ZodOptional<z.ZodBoolean>;
429429
}, "strip", z.ZodTypeAny, {
430-
backstory?: string | undefined;
431430
model?: string | undefined;
431+
backstory?: string | undefined;
432432
datasetId?: string | undefined;
433433
skillsetId?: string | undefined;
434-
moderation?: boolean | undefined;
435434
privacy?: boolean | undefined;
435+
moderation?: boolean | undefined;
436436
}, {
437-
backstory?: string | undefined;
438437
model?: string | undefined;
438+
backstory?: string | undefined;
439439
datasetId?: string | undefined;
440440
skillsetId?: string | undefined;
441-
moderation?: boolean | undefined;
442441
privacy?: boolean | undefined;
442+
moderation?: boolean | undefined;
443443
}>;
444444
}, "strip", z.ZodTypeAny, {
445445
type: "bot";
446446
name: string;
447447
properties: {
448-
backstory?: string | undefined;
449448
model?: string | undefined;
449+
backstory?: string | undefined;
450450
datasetId?: string | undefined;
451451
skillsetId?: string | undefined;
452-
moderation?: boolean | undefined;
453452
privacy?: boolean | undefined;
453+
moderation?: boolean | undefined;
454454
};
455455
slug?: string | undefined;
456456
id?: string | undefined;
@@ -459,12 +459,12 @@ export const SolutionConfigSchema: z.ZodObject<{
459459
type: "bot";
460460
name: string;
461461
properties: {
462-
backstory?: string | undefined;
463462
model?: string | undefined;
463+
backstory?: string | undefined;
464464
datasetId?: string | undefined;
465465
skillsetId?: string | undefined;
466-
moderation?: boolean | undefined;
467466
privacy?: boolean | undefined;
467+
moderation?: boolean | undefined;
468468
};
469469
slug?: string | undefined;
470470
id?: string | undefined;
@@ -579,12 +579,12 @@ export const SolutionConfigSchema: z.ZodObject<{
579579
type: "bot";
580580
name: string;
581581
properties: {
582-
backstory?: string | undefined;
583582
model?: string | undefined;
583+
backstory?: string | undefined;
584584
datasetId?: string | undefined;
585585
skillsetId?: string | undefined;
586-
moderation?: boolean | undefined;
587586
privacy?: boolean | undefined;
587+
moderation?: boolean | undefined;
588588
};
589589
slug?: string | undefined;
590590
id?: string | undefined;
@@ -627,12 +627,12 @@ export const SolutionConfigSchema: z.ZodObject<{
627627
type: "bot";
628628
name: string;
629629
properties: {
630-
backstory?: string | undefined;
631630
model?: string | undefined;
631+
backstory?: string | undefined;
632632
datasetId?: string | undefined;
633633
skillsetId?: string | undefined;
634-
moderation?: boolean | undefined;
635634
privacy?: boolean | undefined;
635+
moderation?: boolean | undefined;
636636
};
637637
slug?: string | undefined;
638638
id?: string | undefined;
@@ -686,12 +686,12 @@ export class Resource {
686686
type: "bot";
687687
name: string;
688688
properties: {
689-
backstory?: string | undefined;
690689
model?: string | undefined;
690+
backstory?: string | undefined;
691691
datasetId?: string | undefined;
692692
skillsetId?: string | undefined;
693-
moderation?: boolean | undefined;
694693
privacy?: boolean | undefined;
694+
moderation?: boolean | undefined;
695695
};
696696
slug?: string | undefined;
697697
id?: string | undefined;
@@ -838,12 +838,12 @@ export class Solution {
838838
type: "bot";
839839
name: string;
840840
properties: {
841-
backstory?: string | undefined;
842841
model?: string | undefined;
842+
backstory?: string | undefined;
843843
datasetId?: string | undefined;
844844
skillsetId?: string | undefined;
845-
moderation?: boolean | undefined;
846845
privacy?: boolean | undefined;
846+
moderation?: boolean | undefined;
847847
};
848848
slug?: string | undefined;
849849
id?: string | undefined;

packages/nextauth/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @chatbotkit/nextauth
22

3+
## 1.20.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [1fbe1f3]
8+
- @chatbotkit/sdk@1.20.0
9+
310
## 1.19.0
411

512
### Minor Changes

packages/nextauth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chatbotkit/nextauth",
3-
"version": "1.19.0",
3+
"version": "1.20.0",
44
"description": "ChatBotKit adapter for NextAuth.js to make conversational AI bots with authentication and authorization",
55
"license": "ISC",
66
"engines": {

0 commit comments

Comments
 (0)