This commit is contained in:
Luiz H. R. Silva 2024-06-03 13:34:13 -03:00
parent 921d5b3418
commit 1de446f80d
14 changed files with 182 additions and 198 deletions

View file

@ -1 +1 @@
export declare const testeDrivers: () => void;
export * from "./tokenQuipo";

View file

@ -1,5 +1,17 @@
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.testeDrivers = void 0;
const testeDrivers = () => console.log("Drivers conectado");
exports.testeDrivers = testeDrivers;
__exportStar(require("./tokenQuipo"), exports);

21
dist-require/tokenQuipo.d.ts vendored Normal file
View file

@ -0,0 +1,21 @@
import { z } from "zod";
export declare const ztokenQuipo: z.ZodObject<{
provedor: z.ZodString;
codigo_usuario: z.ZodString;
codigo_prefeitura: z.ZodString;
tipo_acesso: z.ZodString;
nome: z.ZodString;
}, "strip", z.ZodTypeAny, {
provedor: string;
codigo_usuario: string;
codigo_prefeitura: string;
tipo_acesso: string;
nome: string;
}, {
provedor: string;
codigo_usuario: string;
codigo_prefeitura: string;
tipo_acesso: string;
nome: string;
}>;
export type titoTokenQuipo = z.infer<typeof ztokenQuipo>;

View file

@ -0,0 +1,11 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ztokenQuipo = void 0;
const zod_1 = require("zod");
exports.ztokenQuipo = zod_1.z.object({
provedor: zod_1.z.string(),
codigo_usuario: zod_1.z.string(),
codigo_prefeitura: zod_1.z.string(),
tipo_acesso: zod_1.z.string(),
nome: zod_1.z.string(),
});