build
This commit is contained in:
parent
921d5b3418
commit
1de446f80d
14 changed files with 182 additions and 198 deletions
2
dist-require/index.d.ts
vendored
2
dist-require/index.d.ts
vendored
|
|
@ -1 +1 @@
|
|||
export declare const testeDrivers: () => void;
|
||||
export * from "./tokenQuipo";
|
||||
|
|
|
|||
|
|
@ -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
21
dist-require/tokenQuipo.d.ts
vendored
Normal 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>;
|
||||
11
dist-require/tokenQuipo.js
Normal file
11
dist-require/tokenQuipo.js
Normal 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(),
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue