bambi
This commit is contained in:
parent
4c2fc54be1
commit
064523b2bd
6 changed files with 64 additions and 52 deletions
|
|
@ -33,7 +33,7 @@ __export(consulta_exports, {
|
||||||
zOperadores: () => zOperadores
|
zOperadores: () => zOperadores
|
||||||
});
|
});
|
||||||
module.exports = __toCommonJS(consulta_exports);
|
module.exports = __toCommonJS(consulta_exports);
|
||||||
var import_zod = __toESM(require("zod"));
|
var import_zod = __toESM(require("zod"), 1);
|
||||||
var operadores = /* @__PURE__ */ ((operadores2) => {
|
var operadores = /* @__PURE__ */ ((operadores2) => {
|
||||||
operadores2["="] = "=";
|
operadores2["="] = "=";
|
||||||
operadores2["!="] = "!=";
|
operadores2["!="] = "!=";
|
||||||
|
|
|
||||||
|
|
@ -31,16 +31,16 @@ __export(dayjs_exports, {
|
||||||
dayjsbr: () => import_dayjs.default
|
dayjsbr: () => import_dayjs.default
|
||||||
});
|
});
|
||||||
module.exports = __toCommonJS(dayjs_exports);
|
module.exports = __toCommonJS(dayjs_exports);
|
||||||
var import_dayjs = __toESM(require("dayjs"));
|
var import_dayjs = __toESM(require("dayjs"), 1);
|
||||||
var import_pt_br = require("dayjs/locale/pt-br");
|
var import_pt_br = require("dayjs/locale/pt-br");
|
||||||
var import_duration = __toESM(require("dayjs/plugin/duration"));
|
var import_duration = __toESM(require("dayjs/plugin/duration"), 1);
|
||||||
var import_isSameOrAfter = __toESM(require("dayjs/plugin/isSameOrAfter"));
|
var import_isSameOrAfter = __toESM(require("dayjs/plugin/isSameOrAfter"), 1);
|
||||||
var import_isSameOrBefore = __toESM(require("dayjs/plugin/isSameOrBefore"));
|
var import_isSameOrBefore = __toESM(require("dayjs/plugin/isSameOrBefore"), 1);
|
||||||
var import_minMax = __toESM(require("dayjs/plugin/minMax"));
|
var import_minMax = __toESM(require("dayjs/plugin/minMax"), 1);
|
||||||
var import_relativeTime = __toESM(require("dayjs/plugin/relativeTime"));
|
var import_relativeTime = __toESM(require("dayjs/plugin/relativeTime"), 1);
|
||||||
var import_timezone = __toESM(require("dayjs/plugin/timezone"));
|
var import_timezone = __toESM(require("dayjs/plugin/timezone"), 1);
|
||||||
var import_utc = __toESM(require("dayjs/plugin/utc"));
|
var import_utc = __toESM(require("dayjs/plugin/utc"), 1);
|
||||||
var import_weekOfYear = __toESM(require("dayjs/plugin/weekOfYear"));
|
var import_weekOfYear = __toESM(require("dayjs/plugin/weekOfYear"), 1);
|
||||||
import_dayjs.default.extend(import_utc.default);
|
import_dayjs.default.extend(import_utc.default);
|
||||||
import_dayjs.default.extend(import_timezone.default);
|
import_dayjs.default.extend(import_timezone.default);
|
||||||
import_dayjs.default.extend(import_weekOfYear.default);
|
import_dayjs.default.extend(import_weekOfYear.default);
|
||||||
|
|
|
||||||
|
|
@ -21,8 +21,8 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
||||||
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
||||||
mod
|
mod
|
||||||
));
|
));
|
||||||
var import_node_fs = __toESM(require("node:fs"));
|
var import_node_fs = __toESM(require("node:fs"), 1);
|
||||||
var import_node_path = __toESM(require("node:path"));
|
var import_node_path = __toESM(require("node:path"), 1);
|
||||||
const mesclar = (entrada, novo) => {
|
const mesclar = (entrada, novo) => {
|
||||||
const saida = { ...entrada || {} };
|
const saida = { ...entrada || {} };
|
||||||
for (const [k, v] of Object.entries(novo)) {
|
for (const [k, v] of Object.entries(novo)) {
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ __export(logger_exports, {
|
||||||
postLogger: () => postLogger
|
postLogger: () => postLogger
|
||||||
});
|
});
|
||||||
module.exports = __toCommonJS(logger_exports);
|
module.exports = __toCommonJS(logger_exports);
|
||||||
var import_cross_fetch = __toESM(require("cross-fetch"));
|
var import_cross_fetch = __toESM(require("cross-fetch"), 1);
|
||||||
var import_variaveisComuns = require("./variaveisComuns");
|
var import_variaveisComuns = require("./variaveisComuns");
|
||||||
const LOKI_BASE_URL = "https://log.idz.one";
|
const LOKI_BASE_URL = "https://log.idz.one";
|
||||||
const LOKI_ENDPOINT = "/loki/api/v1/push";
|
const LOKI_ENDPOINT = "/loki/api/v1/push";
|
||||||
|
|
|
||||||
90
package.json
90
package.json
|
|
@ -1,41 +1,53 @@
|
||||||
{
|
{
|
||||||
"name": "p-comuns",
|
"name": "p-comuns",
|
||||||
"version": "0.247.0",
|
"version": "0.248.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "./dist-back/index.js",
|
"type": "module",
|
||||||
"module": "./dist-front/index.mjs",
|
"main": "./dist-back/index.cjs",
|
||||||
"types": "./dist-front/index.d.mts",
|
"module": "./dist-front/index.mjs",
|
||||||
"exports": {
|
"types": "./dist-front/index.d.ts",
|
||||||
".": {
|
"files": [
|
||||||
"types": "./dist-front/index.d.mts",
|
"dist-front",
|
||||||
"import": "./dist-front/index.mjs",
|
"dist-back",
|
||||||
"require": "./dist-back/index.js"
|
"package.json",
|
||||||
},
|
"README.md"
|
||||||
"./package.json": "./package.json"
|
],
|
||||||
},
|
"exports": {
|
||||||
"scripts": {
|
".": {
|
||||||
"biome": "pnpm exec biome check --write",
|
"types": "./dist-front/index.d.ts",
|
||||||
"check": "pnpm run biome && npx tsc --noEmit",
|
"node": {
|
||||||
"build": "npm --no-git-tag-version version minor && pnpm run biome && tsup --config ./tsup/tsup.config.ts",
|
"import": "./dist-back/index.mjs",
|
||||||
"teste": "npx vitest run src/testes/TipagemRotas.test.ts"
|
"require": "./dist-back/index.cjs"
|
||||||
},
|
},
|
||||||
"author": {
|
"import": "./dist-front/index.mjs",
|
||||||
"name": "AZTECA SOFTWARE LTDA",
|
"require": "./dist-back/index.cjs",
|
||||||
"email": "ti@e-licencie.com.br",
|
"default": "./dist-front/index.mjs"
|
||||||
"url": "https://e-licencie.com.br"
|
},
|
||||||
},
|
"./package.json": "./package.json"
|
||||||
"license": "ISC",
|
},
|
||||||
"dependencies": {
|
"scripts": {
|
||||||
"cross-fetch": "4.1.0",
|
"biome": "pnpm exec biome check --write",
|
||||||
"dayjs": "^1.11.18",
|
"check": "pnpm run biome && npx tsc --noEmit",
|
||||||
"uuid": "^11.1.0",
|
"build": "npm --no-git-tag-version version minor && pnpm run biome && tsup --config ./tsup/tsup.config.ts",
|
||||||
"zod": "4.1.4"
|
"teste": "npx vitest run src/testes/TipagemRotas.test.ts"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"author": {
|
||||||
"@biomejs/biome": "2.1.4",
|
"name": "AZTECA SOFTWARE LTDA",
|
||||||
"@types/node": "^20.19.22",
|
"email": "ti@e-licencie.com.br",
|
||||||
"tsup": "8.5.0",
|
"url": "https://e-licencie.com.br"
|
||||||
"typescript": "~5.9.3",
|
},
|
||||||
"vitest": "^3.2.4"
|
"license": "ISC",
|
||||||
}
|
"dependencies": {
|
||||||
|
"cross-fetch": "4.1.0",
|
||||||
|
"dayjs": "^1.11.18",
|
||||||
|
"uuid": "^11.1.0",
|
||||||
|
"zod": "4.1.4"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@biomejs/biome": "2.1.4",
|
||||||
|
"@types/node": "^20.19.22",
|
||||||
|
"tsup": "8.5.0",
|
||||||
|
"typescript": "~5.9.3",
|
||||||
|
"vitest": "^3.2.4"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue