@botpress/runtime 1.7.8 → 1.7.9
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 +19 -19
- package/dist/definition.js +1 -1
- package/dist/definition.js.map +1 -1
- package/dist/internal.js +1 -1
- package/dist/internal.js.map +1 -1
- package/dist/library.js +1 -1
- package/dist/library.js.map +1 -1
- 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 +1 -1
- package/dist/runtime.js.map +1 -1
- package/package.json +1 -1
package/dist/define-config.d.ts
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
import { Autonomous } from './runtime/autonomous';
|
|
2
2
|
import { z } from '@botpress/sdk';
|
|
3
3
|
import type { Dependencies } from './_types/dependencies';
|
|
4
|
-
declare const configSchema: import("@
|
|
5
|
-
name: import("@
|
|
6
|
-
description: import("@
|
|
7
|
-
user: import("@
|
|
8
|
-
state: import("@
|
|
4
|
+
declare const configSchema: import("@bpinternal/zui").ZodObject<{
|
|
5
|
+
name: import("@bpinternal/zui").ZodOptional<import("@bpinternal/zui").ZodString>;
|
|
6
|
+
description: import("@bpinternal/zui").ZodOptional<import("@bpinternal/zui").ZodString>;
|
|
7
|
+
user: import("@bpinternal/zui").ZodOptional<import("@bpinternal/zui").ZodObject<{
|
|
8
|
+
state: import("@bpinternal/zui").ZodOptional<z.Schema<z.Schema<any, import("@bpinternal/zui").ZodTypeDef, any>, import("@bpinternal/zui").ZodTypeDef, z.Schema<any, import("@bpinternal/zui").ZodTypeDef, any>>>;
|
|
9
9
|
}, "strip", {
|
|
10
|
-
state?: z.Schema<any, import("@
|
|
10
|
+
state?: z.Schema<any, import("@bpinternal/zui").ZodTypeDef, any> | undefined;
|
|
11
11
|
}, {
|
|
12
|
-
state?: z.Schema<any, import("@
|
|
12
|
+
state?: z.Schema<any, import("@bpinternal/zui").ZodTypeDef, any> | undefined;
|
|
13
13
|
}>>;
|
|
14
|
-
bot: import("@
|
|
15
|
-
state: import("@
|
|
14
|
+
bot: import("@bpinternal/zui").ZodOptional<import("@bpinternal/zui").ZodObject<{
|
|
15
|
+
state: import("@bpinternal/zui").ZodOptional<z.Schema<z.Schema<any, import("@bpinternal/zui").ZodTypeDef, any>, import("@bpinternal/zui").ZodTypeDef, z.Schema<any, import("@bpinternal/zui").ZodTypeDef, any>>>;
|
|
16
16
|
}, "strip", {
|
|
17
|
-
state?: z.Schema<any, import("@
|
|
17
|
+
state?: z.Schema<any, import("@bpinternal/zui").ZodTypeDef, any> | undefined;
|
|
18
18
|
}, {
|
|
19
|
-
state?: z.Schema<any, import("@
|
|
19
|
+
state?: z.Schema<any, import("@bpinternal/zui").ZodTypeDef, any> | undefined;
|
|
20
20
|
}>>;
|
|
21
|
-
defaultModels: z.ZodTransformer<import("@
|
|
22
|
-
zai: z.Schema<Autonomous.Model | Autonomous.Model[], import("@
|
|
23
|
-
autonomous: z.Schema<Autonomous.Model | Autonomous.Model[], import("@
|
|
21
|
+
defaultModels: z.ZodTransformer<import("@bpinternal/zui").ZodOptional<import("@bpinternal/zui").ZodObject<{
|
|
22
|
+
zai: z.Schema<Autonomous.Model | Autonomous.Model[], import("@bpinternal/zui").ZodTypeDef, Autonomous.Model | Autonomous.Model[]>;
|
|
23
|
+
autonomous: z.Schema<Autonomous.Model | Autonomous.Model[], import("@bpinternal/zui").ZodTypeDef, Autonomous.Model | Autonomous.Model[]>;
|
|
24
24
|
}, "strip", {
|
|
25
25
|
zai: Autonomous.Model | Autonomous.Model[];
|
|
26
26
|
autonomous: Autonomous.Model | Autonomous.Model[];
|
|
@@ -34,7 +34,7 @@ declare const configSchema: import("@botpress/sdk").ZodObject<{
|
|
|
34
34
|
zai: Autonomous.Model | Autonomous.Model[];
|
|
35
35
|
autonomous: Autonomous.Model | Autonomous.Model[];
|
|
36
36
|
} | undefined>;
|
|
37
|
-
dependencies: z.Schema<Dependencies, import("@
|
|
37
|
+
dependencies: z.Schema<Dependencies, import("@bpinternal/zui").ZodTypeDef, Dependencies>;
|
|
38
38
|
}, "strip", {
|
|
39
39
|
defaultModels: {
|
|
40
40
|
zai: Autonomous.Model | Autonomous.Model[];
|
|
@@ -44,20 +44,20 @@ declare const configSchema: import("@botpress/sdk").ZodObject<{
|
|
|
44
44
|
description?: string | undefined;
|
|
45
45
|
name?: string | undefined;
|
|
46
46
|
user?: {
|
|
47
|
-
state?: z.Schema<any, import("@
|
|
47
|
+
state?: z.Schema<any, import("@bpinternal/zui").ZodTypeDef, any> | undefined;
|
|
48
48
|
} | undefined;
|
|
49
49
|
bot?: {
|
|
50
|
-
state?: z.Schema<any, import("@
|
|
50
|
+
state?: z.Schema<any, import("@bpinternal/zui").ZodTypeDef, any> | undefined;
|
|
51
51
|
} | undefined;
|
|
52
52
|
}, {
|
|
53
53
|
dependencies: Dependencies;
|
|
54
54
|
description?: string | undefined;
|
|
55
55
|
name?: string | undefined;
|
|
56
56
|
user?: {
|
|
57
|
-
state?: z.Schema<any, import("@
|
|
57
|
+
state?: z.Schema<any, import("@bpinternal/zui").ZodTypeDef, any> | undefined;
|
|
58
58
|
} | undefined;
|
|
59
59
|
bot?: {
|
|
60
|
-
state?: z.Schema<any, import("@
|
|
60
|
+
state?: z.Schema<any, import("@bpinternal/zui").ZodTypeDef, any> | undefined;
|
|
61
61
|
} | undefined;
|
|
62
62
|
defaultModels?: {
|
|
63
63
|
zai: Autonomous.Model | Autonomous.Model[];
|
package/dist/definition.js
CHANGED
|
@@ -48,7 +48,7 @@ var init_define_BUILD = __esm({
|
|
|
48
48
|
var define_PACKAGE_VERSIONS_default;
|
|
49
49
|
var init_define_PACKAGE_VERSIONS = __esm({
|
|
50
50
|
"<define:__PACKAGE_VERSIONS__>"() {
|
|
51
|
-
define_PACKAGE_VERSIONS_default = { runtime: "1.7.
|
|
51
|
+
define_PACKAGE_VERSIONS_default = { runtime: "1.7.9", adk: "1.7.9", sdk: "4.19.0", llmz: "0.0.31", zai: "2.5.0", cognitive: "0.2.0" };
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
54
|
|