@vulog/aima-document 1.2.38 → 1.2.39

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/dist/index.d.cts CHANGED
@@ -64,7 +64,9 @@ type DocumentSummary = {
64
64
  };
65
65
  declare const personalInformationDocumentTypes: readonly ["DOCUMENT_NUMBER_1"];
66
66
  type PersonalInformationDocumentType = (typeof personalInformationDocumentTypes)[number];
67
- declare const personalInformationDocumentTypeSchema: z.ZodEnum<["DOCUMENT_NUMBER_1"]>;
67
+ declare const personalInformationDocumentTypeSchema: z.ZodEnum<{
68
+ DOCUMENT_NUMBER_1: "DOCUMENT_NUMBER_1";
69
+ }>;
68
70
  type PersonalInformationDocument = {
69
71
  fleetId: string;
70
72
  userId: string;
package/dist/index.d.mts CHANGED
@@ -64,7 +64,9 @@ type DocumentSummary = {
64
64
  };
65
65
  declare const personalInformationDocumentTypes: readonly ["DOCUMENT_NUMBER_1"];
66
66
  type PersonalInformationDocumentType = (typeof personalInformationDocumentTypes)[number];
67
- declare const personalInformationDocumentTypeSchema: z.ZodEnum<["DOCUMENT_NUMBER_1"]>;
67
+ declare const personalInformationDocumentTypeSchema: z.ZodEnum<{
68
+ DOCUMENT_NUMBER_1: "DOCUMENT_NUMBER_1";
69
+ }>;
68
70
  type PersonalInformationDocument = {
69
71
  fleetId: string;
70
72
  userId: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vulog/aima-document",
3
3
  "type": "module",
4
- "version": "1.2.38",
4
+ "version": "1.2.39",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.cts",
@@ -32,11 +32,11 @@
32
32
  "author": "Vulog",
33
33
  "license": "MIT",
34
34
  "dependencies": {
35
- "@vulog/aima-client": "1.2.38",
36
- "@vulog/aima-core": "1.2.38"
35
+ "@vulog/aima-client": "1.2.39",
36
+ "@vulog/aima-core": "1.2.39"
37
37
  },
38
38
  "peerDependencies": {
39
- "zod": "^3.25.76"
39
+ "zod": "^4.3.6"
40
40
  },
41
41
  "description": ""
42
- }
42
+ }
package/tsconfig.json CHANGED
@@ -1,15 +1,8 @@
1
1
  {
2
+ "extends": "../../tsconfig.base.json",
2
3
  "include": ["src"],
3
4
  "exclude": ["**/*.test.ts"],
4
5
  "compilerOptions": {
5
- "module": "esnext",
6
- "target": "esnext",
7
- "lib": ["esnext"],
8
- "declaration": true,
9
- "strict": true,
10
- "moduleResolution": "node",
11
- "skipLibCheck": true,
12
- "esModuleInterop": true,
13
6
  "outDir": "dist",
14
7
  "rootDir": "src"
15
8
  }
package/vitest.config.ts CHANGED
@@ -1,8 +1 @@
1
- import { defineConfig } from 'vitest/config';
2
-
3
- export default defineConfig({
4
- test: {
5
- globals: true,
6
- environment: 'node',
7
- },
8
- });
1
+ export { default } from '../../vitest.config.base.ts';