mirror of
https://github.com/hexastack/hexabot
synced 2025-02-23 12:59:14 +00:00
Merge pull request #671 from Hexastack/feat/zod-pattern
Feat: zod pattern
This commit is contained in:
commit
4fd5e7bf9c
@ -1,29 +1,42 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright © 2024 Hexastack. All rights reserved.
|
* Copyright © 2025 Hexastack. All rights reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
|
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
|
||||||
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
|
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
|
||||||
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
|
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import { z } from 'zod';
|
||||||
|
|
||||||
import { PayloadType } from './message';
|
import { PayloadType } from './message';
|
||||||
|
|
||||||
export interface PayloadPattern {
|
export const payloadPatternSchema = z.object({
|
||||||
label: string;
|
label: z.string(),
|
||||||
value: string;
|
value: z.string(),
|
||||||
// @todo : rename 'attachment' to 'attachments'
|
type: z.nativeEnum(PayloadType).optional(),
|
||||||
type?: PayloadType;
|
});
|
||||||
}
|
|
||||||
|
|
||||||
export type NlpPattern =
|
export type PayloadPattern = z.infer<typeof payloadPatternSchema>;
|
||||||
| {
|
|
||||||
entity: string;
|
|
||||||
match: 'entity';
|
|
||||||
}
|
|
||||||
| {
|
|
||||||
entity: string;
|
|
||||||
match: 'value';
|
|
||||||
value: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type Pattern = string | RegExp | PayloadPattern | NlpPattern[];
|
export const nlpPatternSchema = z.discriminatedUnion('match', [
|
||||||
|
z.object({
|
||||||
|
entity: z.string(),
|
||||||
|
match: z.literal('entity'),
|
||||||
|
}),
|
||||||
|
z.object({
|
||||||
|
entity: z.string(),
|
||||||
|
match: z.literal('value'),
|
||||||
|
value: z.string(),
|
||||||
|
}),
|
||||||
|
]);
|
||||||
|
|
||||||
|
export type NlpPattern = z.infer<typeof nlpPatternSchema>;
|
||||||
|
|
||||||
|
export const patternSchema = z.union([
|
||||||
|
z.string(),
|
||||||
|
z.instanceof(RegExp),
|
||||||
|
payloadPatternSchema,
|
||||||
|
z.array(nlpPatternSchema),
|
||||||
|
]);
|
||||||
|
|
||||||
|
export type Pattern = z.infer<typeof patternSchema>;
|
||||||
|
Loading…
Reference in New Issue
Block a user