build
This commit is contained in:
parent
d54a31dbc9
commit
07c29cde18
8 changed files with 36 additions and 36 deletions
20
dist-require/pilao-de-dados/index.d.ts
vendored
20
dist-require/pilao-de-dados/index.d.ts
vendored
|
|
@ -109,7 +109,7 @@ export declare const pPilao: {
|
|||
rotulo: string;
|
||||
tabela: (_: {
|
||||
tabela: string;
|
||||
colunas?: string[] | undefined;
|
||||
colunas: string[];
|
||||
filtros?: {
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
|
|
@ -119,7 +119,7 @@ export declare const pPilao: {
|
|||
}) => string;
|
||||
descricao: (_: {
|
||||
tabela: string;
|
||||
colunas?: string[] | undefined;
|
||||
colunas: string[];
|
||||
filtros?: {
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
|
|
@ -133,11 +133,11 @@ export declare const pPilao: {
|
|||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros"]>>;
|
||||
order: number;
|
||||
};
|
||||
colunas?: {
|
||||
colunas: {
|
||||
rotulo: string;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros"]>>;
|
||||
order: number;
|
||||
} | undefined;
|
||||
};
|
||||
filtros?: {
|
||||
rotulo: string;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros"]>>;
|
||||
|
|
@ -228,7 +228,7 @@ export declare const pPilao: {
|
|||
}>;
|
||||
z_tabela: import("zod").ZodObject<{
|
||||
tabela: import("zod").ZodString;
|
||||
colunas: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
||||
colunas: import("zod").ZodArray<import("zod").ZodString, "many">;
|
||||
filtros: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
||||
coluna: import("zod").ZodString;
|
||||
valor: import("zod").ZodAny;
|
||||
|
|
@ -245,7 +245,7 @@ export declare const pPilao: {
|
|||
descricao_pelo_usuario: import("zod").ZodOptional<import("zod").ZodString>;
|
||||
}, "strip", import("zod").ZodTypeAny, {
|
||||
tabela: string;
|
||||
colunas?: string[] | undefined;
|
||||
colunas: string[];
|
||||
filtros?: {
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
|
|
@ -254,7 +254,7 @@ export declare const pPilao: {
|
|||
descricao_pelo_usuario?: string | undefined;
|
||||
}, {
|
||||
tabela: string;
|
||||
colunas?: string[] | undefined;
|
||||
colunas: string[];
|
||||
filtros?: {
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
|
|
@ -447,7 +447,7 @@ export declare const pPilao: {
|
|||
}>;
|
||||
z_tabela: import("zod").ZodObject<{
|
||||
tabela: import("zod").ZodString;
|
||||
colunas: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
||||
colunas: import("zod").ZodArray<import("zod").ZodString, "many">;
|
||||
filtros: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
||||
coluna: import("zod").ZodString;
|
||||
valor: import("zod").ZodAny;
|
||||
|
|
@ -464,7 +464,7 @@ export declare const pPilao: {
|
|||
descricao_pelo_usuario: import("zod").ZodOptional<import("zod").ZodString>;
|
||||
}, "strip", import("zod").ZodTypeAny, {
|
||||
tabela: string;
|
||||
colunas?: string[] | undefined;
|
||||
colunas: string[];
|
||||
filtros?: {
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
|
|
@ -473,7 +473,7 @@ export declare const pPilao: {
|
|||
descricao_pelo_usuario?: string | undefined;
|
||||
}, {
|
||||
tabela: string;
|
||||
colunas?: string[] | undefined;
|
||||
colunas: string[];
|
||||
filtros?: {
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue