build
This commit is contained in:
parent
7032eb1329
commit
78773e8943
8 changed files with 16 additions and 16 deletions
|
|
@ -6,7 +6,7 @@ export declare const zp_serie_registrar: z.ZodObject<{
|
|||
colanuEixoX: z.ZodString;
|
||||
colunaAgrupamento: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
||||
agregacao: z.ZodEnum<["contagem", "somatoria"]>;
|
||||
filtro: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
||||
filtros: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
||||
coluna: z.ZodString;
|
||||
valor: z.ZodString;
|
||||
operador: z.ZodEnum<["=", "!=", ">", "<", ">=", "<=", "∩"]>;
|
||||
|
|
@ -24,7 +24,7 @@ export declare const zp_serie_registrar: z.ZodObject<{
|
|||
colanuEixoX: string;
|
||||
agregacao: "contagem" | "somatoria";
|
||||
colunaAgrupamento?: string[] | undefined;
|
||||
filtro?: {
|
||||
filtros?: {
|
||||
valor: string;
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
|
|
@ -34,7 +34,7 @@ export declare const zp_serie_registrar: z.ZodObject<{
|
|||
colanuEixoX: string;
|
||||
agregacao: "contagem" | "somatoria";
|
||||
colunaAgrupamento?: string[] | undefined;
|
||||
filtro?: {
|
||||
filtros?: {
|
||||
valor: string;
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ export const zp_serie_registrar = z.object({
|
|||
colanuEixoX: z.string(),
|
||||
colunaAgrupamento: z.string().array().optional(),
|
||||
agregacao: tiposSeriesAgregacoes,
|
||||
filtro: filtro.array().optional(),
|
||||
filtros: filtro.array().optional(),
|
||||
});
|
||||
export const serie_consultar = (cliente) => (parametros) => {
|
||||
const dados = async () => {
|
||||
|
|
|
|||
6
dist-import/pilao-de-dados/index.d.ts
vendored
6
dist-import/pilao-de-dados/index.d.ts
vendored
|
|
@ -61,7 +61,7 @@ export declare const pPilao: {
|
|||
colanuEixoX: import("zod").ZodString;
|
||||
colunaAgrupamento: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
||||
agregacao: import("zod").ZodEnum<["contagem", "somatoria"]>;
|
||||
filtro: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
||||
filtros: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
||||
coluna: import("zod").ZodString;
|
||||
valor: import("zod").ZodString;
|
||||
operador: import("zod").ZodEnum<["=", "!=", ">", "<", ">=", "<=", "∩"]>;
|
||||
|
|
@ -79,7 +79,7 @@ export declare const pPilao: {
|
|||
colanuEixoX: string;
|
||||
agregacao: "contagem" | "somatoria";
|
||||
colunaAgrupamento?: string[] | undefined;
|
||||
filtro?: {
|
||||
filtros?: {
|
||||
valor: string;
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
|
|
@ -89,7 +89,7 @@ export declare const pPilao: {
|
|||
colanuEixoX: string;
|
||||
agregacao: "contagem" | "somatoria";
|
||||
colunaAgrupamento?: string[] | undefined;
|
||||
filtro?: {
|
||||
filtros?: {
|
||||
valor: string;
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ export declare const zp_serie_registrar: z.ZodObject<{
|
|||
colanuEixoX: z.ZodString;
|
||||
colunaAgrupamento: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
||||
agregacao: z.ZodEnum<["contagem", "somatoria"]>;
|
||||
filtro: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
||||
filtros: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
||||
coluna: z.ZodString;
|
||||
valor: z.ZodString;
|
||||
operador: z.ZodEnum<["=", "!=", ">", "<", ">=", "<=", "∩"]>;
|
||||
|
|
@ -24,7 +24,7 @@ export declare const zp_serie_registrar: z.ZodObject<{
|
|||
colanuEixoX: string;
|
||||
agregacao: "contagem" | "somatoria";
|
||||
colunaAgrupamento?: string[] | undefined;
|
||||
filtro?: {
|
||||
filtros?: {
|
||||
valor: string;
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
|
|
@ -34,7 +34,7 @@ export declare const zp_serie_registrar: z.ZodObject<{
|
|||
colanuEixoX: string;
|
||||
agregacao: "contagem" | "somatoria";
|
||||
colunaAgrupamento?: string[] | undefined;
|
||||
filtro?: {
|
||||
filtros?: {
|
||||
valor: string;
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ exports.zp_serie_registrar = zod_1.z.object({
|
|||
colanuEixoX: zod_1.z.string(),
|
||||
colunaAgrupamento: zod_1.z.string().array().optional(),
|
||||
agregacao: variaveis_1.tiposSeriesAgregacoes,
|
||||
filtro: filtro.array().optional(),
|
||||
filtros: filtro.array().optional(),
|
||||
});
|
||||
const serie_consultar = (cliente) => (parametros) => {
|
||||
const dados = async () => {
|
||||
|
|
|
|||
6
dist-require/pilao-de-dados/index.d.ts
vendored
6
dist-require/pilao-de-dados/index.d.ts
vendored
|
|
@ -61,7 +61,7 @@ export declare const pPilao: {
|
|||
colanuEixoX: import("zod").ZodString;
|
||||
colunaAgrupamento: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
||||
agregacao: import("zod").ZodEnum<["contagem", "somatoria"]>;
|
||||
filtro: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
||||
filtros: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
||||
coluna: import("zod").ZodString;
|
||||
valor: import("zod").ZodString;
|
||||
operador: import("zod").ZodEnum<["=", "!=", ">", "<", ">=", "<=", "∩"]>;
|
||||
|
|
@ -79,7 +79,7 @@ export declare const pPilao: {
|
|||
colanuEixoX: string;
|
||||
agregacao: "contagem" | "somatoria";
|
||||
colunaAgrupamento?: string[] | undefined;
|
||||
filtro?: {
|
||||
filtros?: {
|
||||
valor: string;
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
|
|
@ -89,7 +89,7 @@ export declare const pPilao: {
|
|||
colanuEixoX: string;
|
||||
agregacao: "contagem" | "somatoria";
|
||||
colunaAgrupamento?: string[] | undefined;
|
||||
filtro?: {
|
||||
filtros?: {
|
||||
valor: string;
|
||||
coluna: string;
|
||||
operador: "=" | "!=" | ">" | "<" | ">=" | "<=" | "∩";
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "p-drives",
|
||||
"version": "0.114.0",
|
||||
"version": "0.115.0",
|
||||
"description": "",
|
||||
"main": "src/index.ts",
|
||||
"exports": {
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ export const zp_serie_registrar = z.object({
|
|||
colanuEixoX: z.string(),
|
||||
colunaAgrupamento: z.string().array().optional(),
|
||||
agregacao: tiposSeriesAgregacoes,
|
||||
filtro: filtro.array().optional(),
|
||||
filtros: filtro.array().optional(),
|
||||
})
|
||||
|
||||
export const serie_consultar =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue