.
This commit is contained in:
parent
d8a5a12387
commit
b799294b0e
24 changed files with 90 additions and 70 deletions
26
dist-import/pilao-de-dados/index.d.ts
vendored
26
dist-import/pilao-de-dados/index.d.ts
vendored
|
|
@ -1,5 +1,5 @@
|
|||
import { tiposColunas } from "./_variaveis";
|
||||
export { tiposColunas };
|
||||
import { tiposSeriesAgregacoes } from "./_variaveis";
|
||||
export { tiposSeriesAgregacoes };
|
||||
export declare const pPilao: {
|
||||
registrar_base_dados: ({ emDesenvolvimento, cliente: { conta, produto }, parametros: { colunas, tabela }, }: {
|
||||
emDesenvolvimento?: boolean | null | undefined;
|
||||
|
|
@ -11,7 +11,7 @@ export declare const pPilao: {
|
|||
tabela: string;
|
||||
colunas: {
|
||||
coluna: string;
|
||||
tipo: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero";
|
||||
tipo: "contagem" | "somatoria";
|
||||
}[];
|
||||
};
|
||||
}) => Promise<import("p-respostas").tipoResposta<true>>;
|
||||
|
|
@ -19,25 +19,25 @@ export declare const pPilao: {
|
|||
tabela: import("zod").ZodString;
|
||||
colunas: import("zod").ZodArray<import("zod").ZodObject<{
|
||||
coluna: import("zod").ZodString;
|
||||
tipo: import("zod").ZodEnum<["texto", "numero", "confirmacao", "lista_texto", "lista_numero"]>;
|
||||
tipo: import("zod").ZodEnum<["contagem", "somatoria"]>;
|
||||
}, "strip", import("zod").ZodTypeAny, {
|
||||
coluna: string;
|
||||
tipo: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero";
|
||||
tipo: "contagem" | "somatoria";
|
||||
}, {
|
||||
coluna: string;
|
||||
tipo: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero";
|
||||
tipo: "contagem" | "somatoria";
|
||||
}>, "many">;
|
||||
}, "strip", import("zod").ZodTypeAny, {
|
||||
tabela: string;
|
||||
colunas: {
|
||||
coluna: string;
|
||||
tipo: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero";
|
||||
tipo: "contagem" | "somatoria";
|
||||
}[];
|
||||
}, {
|
||||
tabela: string;
|
||||
colunas: {
|
||||
coluna: string;
|
||||
tipo: "texto" | "numero" | "confirmacao" | "lista_texto" | "lista_numero";
|
||||
tipo: "contagem" | "somatoria";
|
||||
}[];
|
||||
}>;
|
||||
enviar_registros: ({ emDesenvolvimento, cliente: { conta, produto }, parametros: { registros, tabela }, }: {
|
||||
|
|
@ -72,7 +72,7 @@ export declare const pPilao: {
|
|||
identificador: string;
|
||||
colanuEixoX: string;
|
||||
colunaAgrupamento: string;
|
||||
agregacao: "contagem";
|
||||
agregacao: "contagem" | "somatoria";
|
||||
};
|
||||
}) => Promise<import("p-respostas").tipoResposta<true>>;
|
||||
zp_registrar_serie: import("zod").ZodObject<{
|
||||
|
|
@ -80,19 +80,19 @@ export declare const pPilao: {
|
|||
identificador: import("zod").ZodString;
|
||||
colanuEixoX: import("zod").ZodString;
|
||||
colunaAgrupamento: import("zod").ZodString;
|
||||
agregacao: import("zod").ZodEnum<["contagem"]>;
|
||||
agregacao: import("zod").ZodEnum<["contagem", "somatoria"]>;
|
||||
}, "strip", import("zod").ZodTypeAny, {
|
||||
tabela: string;
|
||||
identificador: string;
|
||||
colanuEixoX: string;
|
||||
colunaAgrupamento: string;
|
||||
agregacao: "contagem";
|
||||
agregacao: "contagem" | "somatoria";
|
||||
}, {
|
||||
tabela: string;
|
||||
identificador: string;
|
||||
colanuEixoX: string;
|
||||
colunaAgrupamento: string;
|
||||
agregacao: "contagem";
|
||||
agregacao: "contagem" | "somatoria";
|
||||
}>;
|
||||
consultar_serie: ({ emDesenvolvimento, parametros: { identificador }, cliente: { conta, produto }, }: {
|
||||
emDesenvolvimento?: boolean | null | undefined;
|
||||
|
|
@ -112,7 +112,7 @@ export declare const pPilao: {
|
|||
identificador: string;
|
||||
colanuEixoX: string;
|
||||
colunaAgrupamento: string;
|
||||
agregacao: "contagem";
|
||||
agregacao: "contagem" | "somatoria";
|
||||
};
|
||||
}>>;
|
||||
url: () => string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue