@botpress/sdk 4.15.1 → 4.15.2
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/.turbo/turbo-build.log +5 -5
- package/dist/bot/definition.d.ts +2 -2
- package/dist/bot/definition.test.d.ts +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +2 -2
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +2 -2
- package/dist/plugin/definition.d.ts +2 -2
- package/package.json +1 -1
|
@@ -32,13 +32,13 @@ export type ActionDefinition<TAction extends BaseActions[string] = BaseActions[s
|
|
|
32
32
|
};
|
|
33
33
|
}>;
|
|
34
34
|
export type RecurringEventDefinition<TEvents extends BaseEvents = BaseEvents> = {
|
|
35
|
-
[K in keyof TEvents]:
|
|
35
|
+
[K in keyof TEvents]: {
|
|
36
36
|
type: K;
|
|
37
37
|
payload: z.infer<TEvents[K]>;
|
|
38
38
|
schedule: {
|
|
39
39
|
cron: string;
|
|
40
40
|
};
|
|
41
|
-
}
|
|
41
|
+
};
|
|
42
42
|
}[keyof TEvents];
|
|
43
43
|
export type ZuiSchemaWithEntityReferences<TInterfaces extends BaseInterfaces, TReturnType extends ZuiObjectOrRefSchema> = ((props: {
|
|
44
44
|
entities: {
|