Compare commits

...

2 commits

Author SHA1 Message Date
6b8d30fb30 merge 2025-11-18 08:33:29 -03:00
c8bc47d515 build 2025-11-18 08:32:58 -03:00
7 changed files with 46 additions and 2 deletions

View file

@ -28,6 +28,7 @@ __reExport(index_exports, require("./local"), module.exports);
__reExport(index_exports, require("./logger"), module.exports); __reExport(index_exports, require("./logger"), module.exports);
__reExport(index_exports, require("./logger"), module.exports); __reExport(index_exports, require("./logger"), module.exports);
__reExport(index_exports, require("./postgres"), module.exports); __reExport(index_exports, require("./postgres"), module.exports);
__reExport(index_exports, require("./produtos"), module.exports);
__reExport(index_exports, require("./testes-de-variaveis"), module.exports); __reExport(index_exports, require("./testes-de-variaveis"), module.exports);
__reExport(index_exports, require("./texto_busca"), module.exports); __reExport(index_exports, require("./texto_busca"), module.exports);
__reExport(index_exports, require("./tipagemRotas"), module.exports); __reExport(index_exports, require("./tipagemRotas"), module.exports);
@ -50,6 +51,7 @@ __reExport(index_exports, require("./variaveisComuns"), module.exports);
...require("./logger"), ...require("./logger"),
...require("./logger"), ...require("./logger"),
...require("./postgres"), ...require("./postgres"),
...require("./produtos"),
...require("./testes-de-variaveis"), ...require("./testes-de-variaveis"),
...require("./texto_busca"), ...require("./texto_busca"),
...require("./tipagemRotas"), ...require("./tipagemRotas"),

32
dist-back/produtos.js Normal file
View file

@ -0,0 +1,32 @@
"use strict";
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var produtos_exports = {};
__export(produtos_exports, {
Produtos: () => Produtos
});
module.exports = __toCommonJS(produtos_exports);
var Produtos = /* @__PURE__ */ ((Produtos2) => {
Produtos2["e-licencie"] = "e-licencie";
Produtos2["gov.e-licencie"] = "gov.e-licencie";
return Produtos2;
})(Produtos || {});
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
Produtos
});

View file

@ -181,6 +181,11 @@ declare const objetoPg: (entrada: {
[k: string]: string | boolean | null | undefined | number; [k: string]: string | boolean | null | undefined | number;
}; };
declare enum Produtos {
"e-licencie" = "e-licencie",
"gov.e-licencie" = "gov.e-licencie"
}
declare const umaFuncao: () => string; declare const umaFuncao: () => string;
declare const umaVariavel = "Ol\u00E1 Mundo! (vari\u00E1vel)"; declare const umaVariavel = "Ol\u00E1 Mundo! (vari\u00E1vel)";
@ -311,4 +316,4 @@ declare const nomeVariavel: (v: {
[key: string]: any; [key: string]: any;
}) => string; }) => string;
export { TipagemRotas, type TipoLoggerSessao, aleatorio, cacheM, cacheMFixo, cacheMemoria, camposComuns, cdn_carro_de_boi, dayjsbr, defineCwd, erUuid, esperar, extensoes, graficos_pilao, type interfaceConsulta, localValor, logger, nomeVariavel, objetoPg, operadores, paraObjetoRegistroPg, pgObjeto, postLogger, siglas_unidades_medida, texto_busca, tipoArquivo, type tipoFiltro, type tipoLogger, type tipoLoggerLog, type tipoLokiObjeto, tipoUsuarioResiduos, tx, umaFuncao, umaVariavel, unidades_medida, uuid, uuidV3, uuidV4, uuid_null, validarUuid, verCacheM, zFiltro, zOperadores }; export { Produtos, TipagemRotas, type TipoLoggerSessao, aleatorio, cacheM, cacheMFixo, cacheMemoria, camposComuns, cdn_carro_de_boi, dayjsbr, defineCwd, erUuid, esperar, extensoes, graficos_pilao, type interfaceConsulta, localValor, logger, nomeVariavel, objetoPg, operadores, paraObjetoRegistroPg, pgObjeto, postLogger, siglas_unidades_medida, texto_busca, tipoArquivo, type tipoFiltro, type tipoLogger, type tipoLoggerLog, type tipoLokiObjeto, tipoUsuarioResiduos, tx, umaFuncao, umaVariavel, unidades_medida, uuid, uuidV3, uuidV4, uuid_null, validarUuid, verCacheM, zFiltro, zOperadores };

File diff suppressed because one or more lines are too long

Binary file not shown.

View file

@ -11,6 +11,7 @@ export * from "./local"
export * from "./logger" export * from "./logger"
export * from "./logger" export * from "./logger"
export * from "./postgres" export * from "./postgres"
export * from "./produtos"
export * from "./testes-de-variaveis" export * from "./testes-de-variaveis"
export * from "./texto_busca" export * from "./texto_busca"
export * from "./tipagemRotas" export * from "./tipagemRotas"

4
src/produtos.ts Normal file
View file

@ -0,0 +1,4 @@
export enum Produtos {
"e-licencie" = "e-licencie",
"gov.e-licencie" = "gov.e-licencie",
}