.
This commit is contained in:
parent
1a2cd2ce56
commit
a435b0c6ae
17 changed files with 124 additions and 227 deletions
29
dist-import/pilao-de-dados/serie_registrar.d.ts
vendored
Normal file
29
dist-import/pilao-de-dados/serie_registrar.d.ts
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
import { type tipoResposta } from "p-respostas";
|
||||
import { z } from "zod";
|
||||
import { type zp_produto_conta } from "./_variaveis";
|
||||
export declare const zp_serie_registrar: z.ZodObject<{
|
||||
tabela: z.ZodString;
|
||||
identificador: z.ZodString;
|
||||
colanuEixoX: z.ZodString;
|
||||
colunaAgrupamento: z.ZodString;
|
||||
agregacao: z.ZodEnum<["contagem", "somatoria"]>;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
tabela: string;
|
||||
identificador: string;
|
||||
colanuEixoX: string;
|
||||
colunaAgrupamento: string;
|
||||
agregacao: "contagem" | "somatoria";
|
||||
}, {
|
||||
tabela: string;
|
||||
identificador: string;
|
||||
colanuEixoX: string;
|
||||
colunaAgrupamento: string;
|
||||
agregacao: "contagem" | "somatoria";
|
||||
}>;
|
||||
export declare const serie_registrar: ({ emDesenvolvimento, cliente: { conta, produto }, parametros: { agregacao, colanuEixoX, colunaAgrupamento, identificador, tabela, }, }: {
|
||||
emDesenvolvimento?: boolean | undefined | null;
|
||||
/** Identificação do cliente */
|
||||
cliente: z.infer<typeof zp_produto_conta>;
|
||||
/** Parametros da função */
|
||||
parametros: z.infer<typeof zp_serie_registrar>;
|
||||
}) => Promise<tipoResposta<true>>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue