@botpress/runtime 1.7.5 → 1.7.7
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/dist/define-config.d.ts +18 -18
- package/dist/definition.js +561 -561
- package/dist/definition.js.map +3 -3
- package/dist/internal.js +561 -561
- package/dist/internal.js.map +3 -3
- package/dist/library.js +561 -561
- package/dist/library.js.map +3 -3
- package/dist/primitives/data-sources/source-base.d.ts +49 -49
- package/dist/primitives/data-sources/source-directory.d.ts +23 -23
- package/dist/primitives/data-sources/source-directory.d.ts.map +1 -1
- package/dist/primitives/data-sources/source-table.d.ts +24 -24
- package/dist/primitives/data-sources/source-website.d.ts +31 -31
- package/dist/primitives/index.d.ts +23 -23
- package/dist/primitives/workflow-instance.d.ts +4 -4
- package/dist/runtime/actions/computed-columns.d.ts +10 -10
- package/dist/runtime/actions/index.d.ts +10 -10
- package/dist/runtime/chat/components.d.ts +76 -76
- package/dist/runtime/chat/transcript.d.ts +10 -10
- package/dist/runtime/events.d.ts +21 -21
- package/dist/runtime/tracked-state-schema.d.ts +7 -7
- package/dist/runtime/workflows/knowledge-indexing.d.ts +21 -21
- package/dist/runtime.js +561 -561
- package/dist/runtime.js.map +3 -3
- package/package.json +3 -3
package/dist/define-config.d.ts
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
import { Autonomous } from './runtime/autonomous';
|
|
2
2
|
import { z } from '@botpress/sdk';
|
|
3
|
-
declare const configSchema: import("@
|
|
4
|
-
name: import("@
|
|
5
|
-
description: import("@
|
|
6
|
-
user: import("@
|
|
7
|
-
state: import("@
|
|
3
|
+
declare const configSchema: import("@botpress/sdk").ZodObject<{
|
|
4
|
+
name: import("@botpress/sdk").ZodOptional<import("@botpress/sdk").ZodString>;
|
|
5
|
+
description: import("@botpress/sdk").ZodOptional<import("@botpress/sdk").ZodString>;
|
|
6
|
+
user: import("@botpress/sdk").ZodOptional<import("@botpress/sdk").ZodObject<{
|
|
7
|
+
state: import("@botpress/sdk").ZodOptional<z.Schema<z.Schema<any, import("@botpress/sdk").ZodTypeDef, any>, import("@botpress/sdk").ZodTypeDef, z.Schema<any, import("@botpress/sdk").ZodTypeDef, any>>>;
|
|
8
8
|
}, "strip", {
|
|
9
|
-
state?: z.Schema<any, import("@
|
|
9
|
+
state?: z.Schema<any, import("@botpress/sdk").ZodTypeDef, any> | undefined;
|
|
10
10
|
}, {
|
|
11
|
-
state?: z.Schema<any, import("@
|
|
11
|
+
state?: z.Schema<any, import("@botpress/sdk").ZodTypeDef, any> | undefined;
|
|
12
12
|
}>>;
|
|
13
|
-
bot: import("@
|
|
14
|
-
state: import("@
|
|
13
|
+
bot: import("@botpress/sdk").ZodOptional<import("@botpress/sdk").ZodObject<{
|
|
14
|
+
state: import("@botpress/sdk").ZodOptional<z.Schema<z.Schema<any, import("@botpress/sdk").ZodTypeDef, any>, import("@botpress/sdk").ZodTypeDef, z.Schema<any, import("@botpress/sdk").ZodTypeDef, any>>>;
|
|
15
15
|
}, "strip", {
|
|
16
|
-
state?: z.Schema<any, import("@
|
|
16
|
+
state?: z.Schema<any, import("@botpress/sdk").ZodTypeDef, any> | undefined;
|
|
17
17
|
}, {
|
|
18
|
-
state?: z.Schema<any, import("@
|
|
18
|
+
state?: z.Schema<any, import("@botpress/sdk").ZodTypeDef, any> | undefined;
|
|
19
19
|
}>>;
|
|
20
|
-
defaultModels: z.ZodTransformer<import("@
|
|
21
|
-
zai: z.Schema<Autonomous.Model | Autonomous.Model[], import("@
|
|
22
|
-
autonomous: z.Schema<Autonomous.Model | Autonomous.Model[], import("@
|
|
20
|
+
defaultModels: z.ZodTransformer<import("@botpress/sdk").ZodOptional<import("@botpress/sdk").ZodObject<{
|
|
21
|
+
zai: z.Schema<Autonomous.Model | Autonomous.Model[], import("@botpress/sdk").ZodTypeDef, Autonomous.Model | Autonomous.Model[]>;
|
|
22
|
+
autonomous: z.Schema<Autonomous.Model | Autonomous.Model[], import("@botpress/sdk").ZodTypeDef, Autonomous.Model | Autonomous.Model[]>;
|
|
23
23
|
}, "strip", {
|
|
24
24
|
zai: Autonomous.Model | Autonomous.Model[];
|
|
25
25
|
autonomous: Autonomous.Model | Autonomous.Model[];
|
|
@@ -41,19 +41,19 @@ declare const configSchema: import("@bpinternal/zui").ZodObject<{
|
|
|
41
41
|
description?: string | undefined;
|
|
42
42
|
name?: string | undefined;
|
|
43
43
|
user?: {
|
|
44
|
-
state?: z.Schema<any, import("@
|
|
44
|
+
state?: z.Schema<any, import("@botpress/sdk").ZodTypeDef, any> | undefined;
|
|
45
45
|
} | undefined;
|
|
46
46
|
bot?: {
|
|
47
|
-
state?: z.Schema<any, import("@
|
|
47
|
+
state?: z.Schema<any, import("@botpress/sdk").ZodTypeDef, any> | undefined;
|
|
48
48
|
} | undefined;
|
|
49
49
|
}, {
|
|
50
50
|
description?: string | undefined;
|
|
51
51
|
name?: string | undefined;
|
|
52
52
|
user?: {
|
|
53
|
-
state?: z.Schema<any, import("@
|
|
53
|
+
state?: z.Schema<any, import("@botpress/sdk").ZodTypeDef, any> | undefined;
|
|
54
54
|
} | undefined;
|
|
55
55
|
bot?: {
|
|
56
|
-
state?: z.Schema<any, import("@
|
|
56
|
+
state?: z.Schema<any, import("@botpress/sdk").ZodTypeDef, any> | undefined;
|
|
57
57
|
} | undefined;
|
|
58
58
|
defaultModels?: {
|
|
59
59
|
zai: Autonomous.Model | Autonomous.Model[];
|