@infineit-nestjs/core 1.0.1 → 1.0.3

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.
Files changed (31) hide show
  1. package/dist/types/constants/core.constant.d.ts +44 -0
  2. package/dist/types/constants/index.d.ts +1 -0
  3. package/dist/types/decorators/currentuser.decorator.d.ts +12 -0
  4. package/dist/types/decorators/index.d.ts +7 -0
  5. package/dist/types/decorators/number.string.validator.d.ts +5 -0
  6. package/dist/types/decorators/permissions.decorator.d.ts +5 -0
  7. package/dist/types/decorators/public.request.decorator.d.ts +5 -0
  8. package/dist/types/decorators/swagger.schema.d.ts +7 -0
  9. package/dist/types/decorators/transforms.decorator.d.ts +3 -0
  10. package/dist/types/decorators/uuid-param.decorator.d.ts +3 -0
  11. package/dist/types/errors/errors.d.ts +7 -0
  12. package/dist/types/errors/index.d.ts +1 -0
  13. package/dist/types/exceptions/file-not-image.exception.d.ts +7 -0
  14. package/dist/types/exceptions/http-error.filter.d.ts +7 -0
  15. package/dist/types/exceptions/index.d.ts +4 -0
  16. package/dist/types/exceptions/query.d.ts +5 -0
  17. package/dist/types/exceptions/user-not-found.exception.d.ts +7 -0
  18. package/dist/types/filters/all-exceptions.filter.d.ts +12 -0
  19. package/dist/types/filters/bad-request.filter.d.ts +11 -0
  20. package/dist/types/filters/constraint-errors.d.ts +3 -0
  21. package/dist/types/filters/http-exception.filter.d.ts +7 -0
  22. package/dist/types/filters/index.d.ts +8 -0
  23. package/dist/types/filters/prisma-exception.filter.d.ts +9 -0
  24. package/dist/types/filters/query-failed.filter.d.ts +10 -0
  25. package/dist/types/filters/query.d.ts +9 -0
  26. package/dist/types/filters/unprocessable-entity.filter.d.ts +10 -0
  27. package/dist/types/index.d.ts +23 -153
  28. package/dist/types/validators/field.validator.d.ts +5 -0
  29. package/dist/types/validators/filter.validator.d.ts +12 -0
  30. package/dist/types/validators/index.d.ts +2 -0
  31. package/package.json +57 -10
@@ -0,0 +1,44 @@
1
+ declare const HTTP_STATUS_MESSAGES: {
2
+ 200: string;
3
+ 201: string;
4
+ 202: string;
5
+ 203: string;
6
+ 204: string;
7
+ 205: string;
8
+ 206: string;
9
+ 301: string;
10
+ 302: string;
11
+ 304: string;
12
+ 307: string;
13
+ 308: string;
14
+ 400: string;
15
+ 401: string;
16
+ 403: string;
17
+ 404: string;
18
+ 405: string;
19
+ 406: string;
20
+ 409: string;
21
+ 413: string;
22
+ 414: string;
23
+ 415: string;
24
+ 422: string;
25
+ 429: string;
26
+ 500: string;
27
+ 501: string;
28
+ 502: string;
29
+ 503: string;
30
+ 504: string;
31
+ };
32
+ declare const RESPONSE_SERIALIZATION_META_KEY = "ResponseSerializationMetaKey";
33
+ declare const PUBLIC_ROUTE_KEY = "PUBLIC";
34
+ declare enum ActionType {
35
+ ADD = "add",
36
+ EDIT = "edit",
37
+ DELETE = "delete"
38
+ }
39
+ declare enum PermissionType {
40
+ include = "include",
41
+ exclude = "exclude"
42
+ }
43
+
44
+ export { ActionType, HTTP_STATUS_MESSAGES, PUBLIC_ROUTE_KEY, PermissionType, RESPONSE_SERIALIZATION_META_KEY };
@@ -0,0 +1 @@
1
+ export { ActionType, HTTP_STATUS_MESSAGES, PUBLIC_ROUTE_KEY, PermissionType, RESPONSE_SERIALIZATION_META_KEY } from './core.constant.js';
@@ -0,0 +1,12 @@
1
+ import * as _nestjs_common from '@nestjs/common';
2
+
3
+ declare const currentUser: (...dataOrPipes: ({
4
+ id_user: string;
5
+ first_name: string;
6
+ last_name: string;
7
+ email: string;
8
+ id_device: string;
9
+ serial: string;
10
+ } | _nestjs_common.PipeTransform<any, any> | _nestjs_common.Type<_nestjs_common.PipeTransform<any, any>>)[]) => ParameterDecorator;
11
+
12
+ export { currentUser };
@@ -0,0 +1,7 @@
1
+ export { currentUser } from './currentuser.decorator.js';
2
+ export { IsNumberStringOrNumber } from './number.string.validator.js';
3
+ export { Permissions } from './permissions.decorator.js';
4
+ export { publicRoute } from './public.request.decorator.js';
5
+ export { apiFile, apiMultiFile } from './swagger.schema.js';
6
+ export { ToNumber } from './transforms.decorator.js';
7
+ export { UUIDParam } from './uuid-param.decorator.js';
@@ -0,0 +1,5 @@
1
+ import { ValidationOptions } from 'class-validator';
2
+
3
+ declare function IsNumberStringOrNumber(validationOptions?: ValidationOptions): (object: object, propertyName: string) => void;
4
+
5
+ export { IsNumberStringOrNumber };
@@ -0,0 +1,5 @@
1
+ import * as _nestjs_common from '@nestjs/common';
2
+
3
+ declare const Permissions: (...permissions: string[]) => _nestjs_common.CustomDecorator<string>;
4
+
5
+ export { Permissions };
@@ -0,0 +1,5 @@
1
+ import { CustomDecorator } from '@nestjs/common';
2
+
3
+ declare const publicRoute: () => CustomDecorator<string>;
4
+
5
+ export { publicRoute };
@@ -0,0 +1,7 @@
1
+ declare const apiFile: (fileName?: string, options?: Partial<{
2
+ isRequired: boolean;
3
+ isArray: boolean;
4
+ }>) => MethodDecorator;
5
+ declare const apiMultiFile: (fileName?: string) => MethodDecorator;
6
+
7
+ export { apiFile, apiMultiFile };
@@ -0,0 +1,3 @@
1
+ declare function ToNumber(): (target: object, key: string) => void;
2
+
3
+ export { ToNumber };
@@ -0,0 +1,3 @@
1
+ declare const UUIDParam: (name: string, version?: "4" | "7", errorMessage?: string) => ParameterDecorator;
2
+
3
+ export { UUIDParam };
@@ -0,0 +1,7 @@
1
+ declare class MissingDataError extends Error {
2
+ field: string;
3
+ constructor(field: string);
4
+ formatFieldName(): string;
5
+ }
6
+
7
+ export { MissingDataError };
@@ -0,0 +1 @@
1
+ export { MissingDataError } from './errors.js';
@@ -0,0 +1,7 @@
1
+ import { BadRequestException } from '@nestjs/common';
2
+
3
+ declare class FileNotImageException extends BadRequestException {
4
+ constructor(message?: string | any, error?: string);
5
+ }
6
+
7
+ export { FileNotImageException };
@@ -0,0 +1,7 @@
1
+ import { ExceptionFilter, HttpException, ArgumentsHost } from '@nestjs/common';
2
+
3
+ declare class HttpErrorFilter implements ExceptionFilter {
4
+ catch(exception: HttpException, host: ArgumentsHost): void;
5
+ }
6
+
7
+ export { HttpErrorFilter };
@@ -0,0 +1,4 @@
1
+ export { FileNotImageException } from './file-not-image.exception.js';
2
+ export { HttpErrorFilter } from './http-error.filter.js';
3
+ export { Query as exceptionQuery } from './query.js';
4
+ export { UserNotFoundException } from './user-not-found.exception.js';
@@ -0,0 +1,5 @@
1
+ declare class Query {
2
+ addHttpQueryError(module: string, method: string, url: string, reqdata: string, resdata: string): unknown;
3
+ }
4
+
5
+ export { Query };
@@ -0,0 +1,7 @@
1
+ import { NotFoundException } from '@nestjs/common';
2
+
3
+ declare class UserNotFoundException extends NotFoundException {
4
+ constructor(error?: string);
5
+ }
6
+
7
+ export { UserNotFoundException };
@@ -0,0 +1,12 @@
1
+ import { ExceptionFilter, ArgumentsHost } from '@nestjs/common';
2
+ import { Reflector } from '@nestjs/core';
3
+ import { LoggerService } from '@infineit-nestjs/services';
4
+
5
+ declare class AllExceptionsFilter implements ExceptionFilter {
6
+ loggerService: LoggerService;
7
+ reflector: Reflector;
8
+ constructor(loggerService: LoggerService, reflector: Reflector);
9
+ catch(exception: unknown, host: ArgumentsHost): void;
10
+ }
11
+
12
+ export { AllExceptionsFilter };
@@ -0,0 +1,11 @@
1
+ import { ExceptionFilter, BadRequestException, ArgumentsHost } from '@nestjs/common';
2
+ import { Reflector } from '@nestjs/core';
3
+
4
+ declare class BadRequestExceptionFilter implements ExceptionFilter {
5
+ reflector: Reflector;
6
+ constructor(reflector: Reflector);
7
+ catch(exception: BadRequestException, host: ArgumentsHost): void;
8
+ private formatValidationErrors;
9
+ }
10
+
11
+ export { BadRequestExceptionFilter };
@@ -0,0 +1,3 @@
1
+ declare const constraintErrors: Record<string, string>;
2
+
3
+ export { constraintErrors };
@@ -0,0 +1,7 @@
1
+ import { ExceptionFilter, HttpException, ArgumentsHost } from '@nestjs/common';
2
+
3
+ declare class HttpExceptionFilter implements ExceptionFilter {
4
+ catch(exception: HttpException, host: ArgumentsHost): void;
5
+ }
6
+
7
+ export { HttpExceptionFilter };
@@ -0,0 +1,8 @@
1
+ export { AllExceptionsFilter } from './all-exceptions.filter.js';
2
+ export { BadRequestExceptionFilter } from './bad-request.filter.js';
3
+ export { constraintErrors } from './constraint-errors.js';
4
+ export { HttpExceptionFilter } from './http-exception.filter.js';
5
+ export { PrismaClientExceptionFilter } from './prisma-exception.filter.js';
6
+ export { QueryFailedFilter } from './query-failed.filter.js';
7
+ export { Query } from './query.js';
8
+ export { UnprocessableEntityFilter } from './unprocessable-entity.filter.js';
@@ -0,0 +1,9 @@
1
+ import { ArgumentsHost } from '@nestjs/common';
2
+ import { BaseExceptionFilter } from '@nestjs/core';
3
+ import { Prisma } from '@prisma/client';
4
+
5
+ declare class PrismaClientExceptionFilter extends BaseExceptionFilter {
6
+ catch(exception: Prisma.PrismaClientKnownRequestError, host: ArgumentsHost): void;
7
+ }
8
+
9
+ export { PrismaClientExceptionFilter };
@@ -0,0 +1,10 @@
1
+ import { ExceptionFilter, ArgumentsHost } from '@nestjs/common';
2
+ import { Reflector } from '@nestjs/core';
3
+
4
+ declare class QueryFailedFilter implements ExceptionFilter {
5
+ reflector: Reflector;
6
+ constructor(reflector: Reflector);
7
+ catch(exception: any, host: ArgumentsHost): void;
8
+ }
9
+
10
+ export { QueryFailedFilter };
@@ -0,0 +1,9 @@
1
+ declare class Query {
2
+ addQueryError(module: string, method: string, url: string, reqdata: string, resdata: string): {
3
+ name: string;
4
+ type: string;
5
+ syntax: () => string;
6
+ };
7
+ }
8
+
9
+ export { Query };
@@ -0,0 +1,10 @@
1
+ import { ExceptionFilter, UnprocessableEntityException, ArgumentsHost } from '@nestjs/common';
2
+ import { Reflector } from '@nestjs/core';
3
+
4
+ declare class UnprocessableEntityFilter implements ExceptionFilter {
5
+ private readonly reflector;
6
+ constructor(reflector: Reflector);
7
+ catch(exception: UnprocessableEntityException, host: ArgumentsHost): void;
8
+ }
9
+
10
+ export { UnprocessableEntityFilter };
@@ -1,153 +1,23 @@
1
- import * as _nestjs_common from '@nestjs/common';
2
- import { CustomDecorator, BadRequestException, ExceptionFilter, HttpException, ArgumentsHost, NotFoundException, UnprocessableEntityException } from '@nestjs/common';
3
- import { ValidationOptions, ValidatorConstraintInterface, ValidationArguments } from 'class-validator';
4
- import { Reflector, BaseExceptionFilter } from '@nestjs/core';
5
- import { LoggerService } from '@infineit-nestjs/services';
6
- import { Prisma } from '@prisma/client';
7
-
8
- declare const HTTP_STATUS_MESSAGES: {
9
- 200: string;
10
- 201: string;
11
- 202: string;
12
- 203: string;
13
- 204: string;
14
- 205: string;
15
- 206: string;
16
- 301: string;
17
- 302: string;
18
- 304: string;
19
- 307: string;
20
- 308: string;
21
- 400: string;
22
- 401: string;
23
- 403: string;
24
- 404: string;
25
- 405: string;
26
- 406: string;
27
- 409: string;
28
- 413: string;
29
- 414: string;
30
- 415: string;
31
- 422: string;
32
- 429: string;
33
- 500: string;
34
- 501: string;
35
- 502: string;
36
- 503: string;
37
- 504: string;
38
- };
39
- declare const RESPONSE_SERIALIZATION_META_KEY = "ResponseSerializationMetaKey";
40
- declare const PUBLIC_ROUTE_KEY = "PUBLIC";
41
- declare enum ActionType {
42
- ADD = "add",
43
- EDIT = "edit",
44
- DELETE = "delete"
45
- }
46
- declare enum PermissionType {
47
- include = "include",
48
- exclude = "exclude"
49
- }
50
-
51
- declare const currentUser: (...dataOrPipes: ({
52
- id_user: string;
53
- first_name: string;
54
- last_name: string;
55
- email: string;
56
- id_device: string;
57
- serial: string;
58
- } | _nestjs_common.PipeTransform<any, any> | _nestjs_common.Type<_nestjs_common.PipeTransform<any, any>>)[]) => ParameterDecorator;
59
-
60
- declare function IsNumberStringOrNumber(validationOptions?: ValidationOptions): (object: object, propertyName: string) => void;
61
-
62
- declare const Permissions: (...permissions: string[]) => _nestjs_common.CustomDecorator<string>;
63
-
64
- declare const publicRoute: () => CustomDecorator<string>;
65
-
66
- declare const apiFile: (fileName?: string, options?: Partial<{
67
- isRequired: boolean;
68
- isArray: boolean;
69
- }>) => MethodDecorator;
70
- declare const apiMultiFile: (fileName?: string) => MethodDecorator;
71
-
72
- declare function ToNumber(): (target: object, key: string) => void;
73
-
74
- declare const UUIDParam: (name: string, version?: "4" | "7", errorMessage?: string) => ParameterDecorator;
75
-
76
- declare class MissingDataError extends Error {
77
- field: string;
78
- constructor(field: string);
79
- formatFieldName(): string;
80
- }
81
-
82
- declare class FileNotImageException extends BadRequestException {
83
- constructor(message?: string | any, error?: string);
84
- }
85
-
86
- declare class HttpErrorFilter implements ExceptionFilter {
87
- catch(exception: HttpException, host: ArgumentsHost): void;
88
- }
89
-
90
- declare class Query$1 {
91
- addHttpQueryError(module: string, method: string, url: string, reqdata: string, resdata: string): unknown;
92
- }
93
-
94
- declare class UserNotFoundException extends NotFoundException {
95
- constructor(error?: string);
96
- }
97
-
98
- declare class AllExceptionsFilter implements ExceptionFilter {
99
- loggerService: LoggerService;
100
- reflector: Reflector;
101
- constructor(loggerService: LoggerService, reflector: Reflector);
102
- catch(exception: unknown, host: ArgumentsHost): void;
103
- }
104
-
105
- declare class BadRequestExceptionFilter implements ExceptionFilter {
106
- reflector: Reflector;
107
- constructor(reflector: Reflector);
108
- catch(exception: BadRequestException, host: ArgumentsHost): void;
109
- private formatValidationErrors;
110
- }
111
-
112
- declare const constraintErrors: Record<string, string>;
113
-
114
- declare class HttpExceptionFilter implements ExceptionFilter {
115
- catch(exception: HttpException, host: ArgumentsHost): void;
116
- }
117
-
118
- declare class PrismaClientExceptionFilter extends BaseExceptionFilter {
119
- catch(exception: Prisma.PrismaClientKnownRequestError, host: ArgumentsHost): void;
120
- }
121
-
122
- declare class QueryFailedFilter implements ExceptionFilter {
123
- reflector: Reflector;
124
- constructor(reflector: Reflector);
125
- catch(exception: any, host: ArgumentsHost): void;
126
- }
127
-
128
- declare class Query {
129
- addQueryError(module: string, method: string, url: string, reqdata: string, resdata: string): {
130
- name: string;
131
- type: string;
132
- syntax: () => string;
133
- };
134
- }
135
-
136
- declare class UnprocessableEntityFilter implements ExceptionFilter {
137
- private readonly reflector;
138
- constructor(reflector: Reflector);
139
- catch(exception: UnprocessableEntityException, host: ArgumentsHost): void;
140
- }
141
-
142
- declare function IsValidField(entity: any, validationOptions?: ValidationOptions): (object: object, propertyName: string) => void;
143
-
144
- declare class CommaSeparated implements ValidatorConstraintInterface {
145
- validate(propertyValue: string, args: ValidationArguments): boolean;
146
- defaultMessage(args: ValidationArguments): string;
147
- }
148
- declare class SortBy implements ValidatorConstraintInterface {
149
- validate(value: string, args: ValidationArguments): boolean;
150
- defaultMessage(args: ValidationArguments): string;
151
- }
152
-
153
- export { ActionType, AllExceptionsFilter, BadRequestExceptionFilter, CommaSeparated, FileNotImageException, HTTP_STATUS_MESSAGES, HttpErrorFilter, HttpExceptionFilter, IsNumberStringOrNumber, IsValidField, MissingDataError, PUBLIC_ROUTE_KEY, PermissionType, Permissions, PrismaClientExceptionFilter, Query, QueryFailedFilter, RESPONSE_SERIALIZATION_META_KEY, SortBy, ToNumber, UUIDParam, UnprocessableEntityFilter, UserNotFoundException, apiFile, apiMultiFile, constraintErrors, currentUser, Query$1 as exceptionQuery, publicRoute };
1
+ export { ActionType, HTTP_STATUS_MESSAGES, PUBLIC_ROUTE_KEY, PermissionType, RESPONSE_SERIALIZATION_META_KEY } from './constants/core.constant.js';
2
+ export { currentUser } from './decorators/currentuser.decorator.js';
3
+ export { IsNumberStringOrNumber } from './decorators/number.string.validator.js';
4
+ export { Permissions } from './decorators/permissions.decorator.js';
5
+ export { publicRoute } from './decorators/public.request.decorator.js';
6
+ export { apiFile, apiMultiFile } from './decorators/swagger.schema.js';
7
+ export { ToNumber } from './decorators/transforms.decorator.js';
8
+ export { UUIDParam } from './decorators/uuid-param.decorator.js';
9
+ export { MissingDataError } from './errors/errors.js';
10
+ export { FileNotImageException } from './exceptions/file-not-image.exception.js';
11
+ export { HttpErrorFilter } from './exceptions/http-error.filter.js';
12
+ export { Query as exceptionQuery } from './exceptions/query.js';
13
+ export { UserNotFoundException } from './exceptions/user-not-found.exception.js';
14
+ export { AllExceptionsFilter } from './filters/all-exceptions.filter.js';
15
+ export { BadRequestExceptionFilter } from './filters/bad-request.filter.js';
16
+ export { constraintErrors } from './filters/constraint-errors.js';
17
+ export { HttpExceptionFilter } from './filters/http-exception.filter.js';
18
+ export { PrismaClientExceptionFilter } from './filters/prisma-exception.filter.js';
19
+ export { QueryFailedFilter } from './filters/query-failed.filter.js';
20
+ export { Query } from './filters/query.js';
21
+ export { UnprocessableEntityFilter } from './filters/unprocessable-entity.filter.js';
22
+ export { IsValidField } from './validators/field.validator.js';
23
+ export { CommaSeparated, SortBy } from './validators/filter.validator.js';
@@ -0,0 +1,5 @@
1
+ import { ValidationOptions } from 'class-validator';
2
+
3
+ declare function IsValidField(entity: any, validationOptions?: ValidationOptions): (object: object, propertyName: string) => void;
4
+
5
+ export { IsValidField };
@@ -0,0 +1,12 @@
1
+ import { ValidatorConstraintInterface, ValidationArguments } from 'class-validator';
2
+
3
+ declare class CommaSeparated implements ValidatorConstraintInterface {
4
+ validate(propertyValue: string, args: ValidationArguments): boolean;
5
+ defaultMessage(args: ValidationArguments): string;
6
+ }
7
+ declare class SortBy implements ValidatorConstraintInterface {
8
+ validate(value: string, args: ValidationArguments): boolean;
9
+ defaultMessage(args: ValidationArguments): string;
10
+ }
11
+
12
+ export { CommaSeparated, SortBy };
@@ -0,0 +1,2 @@
1
+ export { IsValidField } from './field.validator.js';
2
+ export { CommaSeparated, SortBy } from './filter.validator.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infineit-nestjs/core",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "main": "./dist/cjs/index.js",
5
5
  "module": "./dist/es/index.mjs",
6
6
  "exports": {
@@ -10,20 +10,66 @@
10
10
  "require": "./dist/cjs/index.js",
11
11
  "default": "./dist/cjs/index.js"
12
12
  },
13
- "./decorators": {
14
- "types": "./dist/types/decorators/index.d.ts",
15
- "import": "./dist/es/decorators/index.mjs",
16
- "require": "./dist/cjsdecorators/index.js",
17
- "default": "./dist/cjs/decorators/index.js"
18
- },
19
13
  "./constants": {
20
14
  "types": "./dist/types/constants/index.d.ts",
21
15
  "import": "./dist/es/constants/index.mjs",
22
16
  "require": "./dist/cjs/constants/index.js",
23
17
  "default": "./dist/cjs/constants/index.js"
18
+ },
19
+ "./decorators": {
20
+ "types": "./dist/types/decorators/index.d.ts",
21
+ "import": "./dist/es/decorators/index.mjs",
22
+ "require": "./dist/cjs/decorators/index.js",
23
+ "default": "./dist/cjs/decorators/index.js"
24
+ },
25
+ "./errors": {
26
+ "types": "./dist/types/errors/index.d.ts",
27
+ "import": "./dist/es/errors/index.mjs",
28
+ "require": "./dist/cjs/errors/index.js",
29
+ "default": "./dist/cjs/errors/index.js"
30
+ },
31
+ "./exceptions": {
32
+ "types": "./dist/types/exceptions/index.d.ts",
33
+ "import": "./dist/es/exceptions/index.mjs",
34
+ "require": "./dist/cjs/exceptions/index.js",
35
+ "default": "./dist/cjs/exceptions/index.js"
36
+ },
37
+ "./filters": {
38
+ "types": "./dist/types/filters/index.d.ts",
39
+ "import": "./dist/es/filters/index.mjs",
40
+ "require": "./dist/cjs/filters/index.js",
41
+ "default": "./dist/cjs/filters/index.js"
42
+ },
43
+ "./validators": {
44
+ "types": "./dist/types/validators/index.d.ts",
45
+ "import": "./dist/es/validators/index.mjs",
46
+ "require": "./dist/cjs/validators/index.js",
47
+ "default": "./dist/cjs/validators/index.js"
24
48
  }
25
49
  },
26
50
  "types": "./dist/types/index.d.ts",
51
+ "typesVersions": {
52
+ "*": {
53
+ "constants": [
54
+ "dist/types/constants/index.d.ts"
55
+ ],
56
+ "decorators": [
57
+ "dist/types/decorators/index.d.ts"
58
+ ],
59
+ "errors": [
60
+ "dist/types/errors/index.d.ts"
61
+ ],
62
+ "exceptions": [
63
+ "dist/types/exceptions/index.d.ts"
64
+ ],
65
+ "filters": [
66
+ "dist/types/filters/index.d.ts"
67
+ ],
68
+ "validators": [
69
+ "dist/types/validators/index.d.ts"
70
+ ]
71
+ }
72
+ },
27
73
  "files": [
28
74
  "dist/",
29
75
  "README.md",
@@ -34,11 +80,11 @@
34
80
  ],
35
81
  "scripts": {
36
82
  "clean": "rimraf types dist lib",
37
- "build": "yarn clean && rollup -c",
83
+ "build": "yarn clean && rollup -c --verbose",
38
84
  "dev": "concurrently -c blue,red -n tsc,rollup --kill-others \"tsc --watch -p . --preserveWatchOutput\" \"rollup --config --watch --no-watch.clearScreen\""
39
85
  },
40
86
  "dependencies": {
41
- "@infineit-nestjs/services": "1.0.10",
87
+ "@infineit-nestjs/services": "1.0.12",
42
88
  "@nestjs/swagger": "^11.0.7"
43
89
  },
44
90
  "devDependencies": {
@@ -53,6 +99,7 @@
53
99
  "@types/terser": "^3.12.0",
54
100
  "rollup": "^4.34.8",
55
101
  "rollup-plugin-dts": "^6.1.1",
102
+ "rollup-plugin-multi-input": "^1.5.0",
56
103
  "rollup-plugin-peer-deps-external": "^2.2.4",
57
104
  "rollup-plugin-preserve-directives": "^0.4.0",
58
105
  "typescript": "^5.7.3"
@@ -66,5 +113,5 @@
66
113
  "publishConfig": {
67
114
  "access": "public"
68
115
  },
69
- "gitHead": "f6c679a861e4e90f2d4d7f7f0a9c4f847e6a7987"
116
+ "gitHead": "41949a3f4627ec7685e34e87a31d7d6292c58036"
70
117
  }