@lobb-js/core 0.31.8 → 0.31.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lobb-js/core",
3
3
  "license": "UNLICENSED",
4
- "version": "0.31.8",
4
+ "version": "0.31.9",
5
5
  "type": "module",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -23,7 +23,6 @@
23
23
  "cron-validator": "^1.4.0",
24
24
  "hono": "^4.7.0",
25
25
  "just-diff": "^6.0.2",
26
- "lodash": "^4.17.21",
27
26
  "mingo": "^6.4.15",
28
27
  "nunjucks": "^3.2.4",
29
28
  "openapi-types": "^12.1.3",
@@ -34,16 +33,17 @@
34
33
  "validator": "^13.12.0",
35
34
  "zod": "^3.24.2",
36
35
  "zod-to-json-schema": "^3.24.6",
37
- "zod-to-ts": "^1.2.0"
36
+ "zod-to-ts": "^1.2.0",
37
+ "lodash-es": "^4.17.21"
38
38
  },
39
39
  "devDependencies": {
40
40
  "lucide-svelte": "latest",
41
- "@types/lodash": "^4.17.0",
42
41
  "@types/nunjucks": "^3.2.6",
43
42
  "@types/pg": "^8.11.0",
44
43
  "@types/pg-format": "^1.0.5",
45
44
  "@types/qs": "^6.9.0",
46
45
  "@types/validator": "^13.12.0",
47
- "bun-types": "latest"
46
+ "bun-types": "latest",
47
+ "@types/lodash-es": "^4.17.12"
48
48
  }
49
49
  }
@@ -1,4 +1,4 @@
1
- import _ from "lodash";
1
+ import * as _ from "lodash-es";
2
2
  import type { Context, Next } from "hono";
3
3
  import { LobbError } from "../LobbError.ts";
4
4
  import { Lobb } from "../Lobb.ts";
@@ -5,7 +5,7 @@ import { Hono } from "hono";
5
5
  import { apiReference } from "@scalar/hono-api-reference";
6
6
  import { LobbError } from "../LobbError.ts";
7
7
  import { metaRoutePathDescription } from "./meta/route.ts";
8
- import _ from "lodash";
8
+ import * as _ from "lodash-es";
9
9
  import { Lobb } from "../Lobb.ts";
10
10
 
11
11
  export function getOpenApiRoute() {
@@ -9,7 +9,7 @@ import type { CollectionField } from "../types/index.ts";
9
9
  import type { Extension } from "../types/index.ts";
10
10
  import type { RelationsConfig, RegularRelation } from "../types/index.ts";
11
11
 
12
- import _ from "lodash";
12
+ import * as _ from "lodash-es";
13
13
  import { coreCollections } from "../coreCollections/index.ts";
14
14
  import { LobbError } from "../LobbError.ts";
15
15
  import { validateConfig } from "./validations.ts";
@@ -1,6 +1,6 @@
1
1
  import type { FindAllParamsOutput } from "../../../types/index.ts";
2
2
  import format from "pg-format";
3
- import _ from "lodash";
3
+ import * as _ from "lodash-es";
4
4
  import { LobbError } from "../../../LobbError.ts";
5
5
  import { basicFilterOperatorsSchema } from "../../../types/index.ts";
6
6
  import { ZodError } from "zod";
@@ -5,7 +5,7 @@ import type { Workflow } from "../workflows/WorkflowSystem.ts";
5
5
  import { Hono } from "hono";
6
6
  import { getDashboardRoute } from "./dashboardRoute.ts";
7
7
  import { LobbError } from "../LobbError.ts";
8
- import _ from "lodash";
8
+ import * as _ from "lodash-es";
9
9
  import { Lobb } from "../Lobb.ts";
10
10
 
11
11
  export class ExtensionSystem {
@@ -3,7 +3,7 @@ import type { ApiCollectionAction } from "../types/index.ts";
3
3
  import type { CollectionConfig, CollectionsConfig } from "../types/index.ts";
4
4
  import type { PoolClient } from "pg";
5
5
 
6
- import _ from "lodash";
6
+ import * as _ from "lodash-es";
7
7
  import nunjucks from "nunjucks";
8
8
  import { transform } from "sucrase";
9
9
  import { LobbError } from "../LobbError.ts";