build
This commit is contained in:
parent
4c2d82c073
commit
75309db4ef
8 changed files with 114 additions and 29 deletions
52
dist-import/pilao-de-dados/index.d.ts
vendored
52
dist-import/pilao-de-dados/index.d.ts
vendored
|
|
@ -33,27 +33,27 @@ export declare const pPilao: {
|
|||
campos: {
|
||||
tabela: {
|
||||
rotulo: string;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros"]>>;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros", "ordem"]>>;
|
||||
order: number;
|
||||
};
|
||||
colanuEixoX: {
|
||||
rotulo: string;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros"]>>;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros", "ordem"]>>;
|
||||
order: number;
|
||||
};
|
||||
colunaAgrupamento?: {
|
||||
rotulo: string;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros"]>>;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros", "ordem"]>>;
|
||||
order: number;
|
||||
} | undefined;
|
||||
filtros?: {
|
||||
rotulo: string;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros"]>>;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros", "ordem"]>>;
|
||||
order: number;
|
||||
} | undefined;
|
||||
descricao_pelo_usuario?: {
|
||||
rotulo: string;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros"]>>;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros", "ordem"]>>;
|
||||
order: number;
|
||||
} | undefined;
|
||||
};
|
||||
|
|
@ -84,22 +84,22 @@ export declare const pPilao: {
|
|||
campos: {
|
||||
tabela: {
|
||||
rotulo: string;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros"]>>;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros", "ordem"]>>;
|
||||
order: number;
|
||||
};
|
||||
classes: {
|
||||
rotulo: string;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros"]>>;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros", "ordem"]>>;
|
||||
order: number;
|
||||
};
|
||||
filtros?: {
|
||||
rotulo: string;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros"]>>;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros", "ordem"]>>;
|
||||
order: number;
|
||||
} | undefined;
|
||||
descricao_pelo_usuario?: {
|
||||
rotulo: string;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros"]>>;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros", "ordem"]>>;
|
||||
order: number;
|
||||
} | undefined;
|
||||
};
|
||||
|
|
@ -116,6 +116,8 @@ export declare const pPilao: {
|
|||
valor?: any;
|
||||
}[] | undefined;
|
||||
descricao_pelo_usuario?: string | undefined;
|
||||
coluna_ordem?: string | undefined;
|
||||
direcao_ordem?: "1" | "asc" | "desc" | "-1" | undefined;
|
||||
}) => string;
|
||||
descricao: (_: {
|
||||
tabela: string;
|
||||
|
|
@ -126,26 +128,38 @@ export declare const pPilao: {
|
|||
valor?: any;
|
||||
}[] | undefined;
|
||||
descricao_pelo_usuario?: string | undefined;
|
||||
coluna_ordem?: string | undefined;
|
||||
direcao_ordem?: "1" | "asc" | "desc" | "-1" | undefined;
|
||||
}) => string;
|
||||
campos: {
|
||||
tabela: {
|
||||
rotulo: string;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros"]>>;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros", "ordem"]>>;
|
||||
order: number;
|
||||
};
|
||||
colunas: {
|
||||
rotulo: string;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros"]>>;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros", "ordem"]>>;
|
||||
order: number;
|
||||
};
|
||||
filtros?: {
|
||||
rotulo: string;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros"]>>;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros", "ordem"]>>;
|
||||
order: number;
|
||||
} | undefined;
|
||||
descricao_pelo_usuario?: {
|
||||
rotulo: string;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros"]>>;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros", "ordem"]>>;
|
||||
order: number;
|
||||
} | undefined;
|
||||
coluna_ordem?: {
|
||||
rotulo: string;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros", "ordem"]>>;
|
||||
order: number;
|
||||
} | undefined;
|
||||
direcao_ordem?: {
|
||||
rotulo: string;
|
||||
tipo_campo: import("zod").TypeOf<import("zod").ZodEnum<["tabela", "coluna", "texto", "lista_colunas", "lista_filtros", "ordem"]>>;
|
||||
order: number;
|
||||
} | undefined;
|
||||
};
|
||||
|
|
@ -229,6 +243,8 @@ export declare const pPilao: {
|
|||
z_tabela: import("zod").ZodObject<{
|
||||
tabela: import("zod").ZodString;
|
||||
colunas: import("zod").ZodArray<import("zod").ZodString, "many">;
|
||||
coluna_ordem: import("zod").ZodOptional<import("zod").ZodString>;
|
||||
direcao_ordem: import("zod").ZodOptional<import("zod").ZodEnum<["asc", "desc", "1", "-1"]>>;
|
||||
filtros: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
||||
coluna: import("zod").ZodString;
|
||||
valor: import("zod").ZodAny;
|
||||
|
|
@ -252,6 +268,8 @@ export declare const pPilao: {
|
|||
valor?: any;
|
||||
}[] | undefined;
|
||||
descricao_pelo_usuario?: string | undefined;
|
||||
coluna_ordem?: string | undefined;
|
||||
direcao_ordem?: "1" | "asc" | "desc" | "-1" | undefined;
|
||||
}, {
|
||||
tabela: string;
|
||||
colunas: string[];
|
||||
|
|
@ -261,6 +279,8 @@ export declare const pPilao: {
|
|||
valor?: any;
|
||||
}[] | undefined;
|
||||
descricao_pelo_usuario?: string | undefined;
|
||||
coluna_ordem?: string | undefined;
|
||||
direcao_ordem?: "1" | "asc" | "desc" | "-1" | undefined;
|
||||
}>;
|
||||
zp_registrar_base_dados: import("zod").ZodObject<{
|
||||
tabela: import("zod").ZodString;
|
||||
|
|
@ -450,6 +470,8 @@ export declare const pPilao: {
|
|||
z_tabela: import("zod").ZodObject<{
|
||||
tabela: import("zod").ZodString;
|
||||
colunas: import("zod").ZodArray<import("zod").ZodString, "many">;
|
||||
coluna_ordem: import("zod").ZodOptional<import("zod").ZodString>;
|
||||
direcao_ordem: import("zod").ZodOptional<import("zod").ZodEnum<["asc", "desc", "1", "-1"]>>;
|
||||
filtros: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
||||
coluna: import("zod").ZodString;
|
||||
valor: import("zod").ZodAny;
|
||||
|
|
@ -473,6 +495,8 @@ export declare const pPilao: {
|
|||
valor?: any;
|
||||
}[] | undefined;
|
||||
descricao_pelo_usuario?: string | undefined;
|
||||
coluna_ordem?: string | undefined;
|
||||
direcao_ordem?: "1" | "asc" | "desc" | "-1" | undefined;
|
||||
}, {
|
||||
tabela: string;
|
||||
colunas: string[];
|
||||
|
|
@ -482,6 +506,8 @@ export declare const pPilao: {
|
|||
valor?: any;
|
||||
}[] | undefined;
|
||||
descricao_pelo_usuario?: string | undefined;
|
||||
coluna_ordem?: string | undefined;
|
||||
direcao_ordem?: "1" | "asc" | "desc" | "-1" | undefined;
|
||||
}>;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue