This commit is contained in:
Luiz H. R. Silva 2024-06-06 19:03:52 -03:00
parent 9d1a3b2a6f
commit bb7411a5f5
11 changed files with 59 additions and 47 deletions

View file

@ -1,7 +1,7 @@
export var chave_produtos;
(function (chave_produtos) {
chave_produtos["suporte"] = "suporte";
chave_produtos["betha-meio-ambiente"] = "betha-meio-ambiente";
chave_produtos["e-licencie-gov"] = "e-licencie-gov";
chave_produtos["e-licencie"] = "e-licencie";
})(chave_produtos || (chave_produtos = {}));
import { z } from "zod";
export const chave_produto = z.enum([
"suporte",
"betha-meio-ambiente",
"e-licencie-gov",
"e-licencie",
]);