@steroidsjs/nest 1.6.7 → 1.7.1
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/infrastructure/applications/AppModule.d.ts +2 -0
- package/infrastructure/applications/AppModule.js +7 -0
- package/infrastructure/applications/AppModule.js.map +1 -0
- package/infrastructure/applications/BaseApplication.d.ts +8 -0
- package/infrastructure/applications/BaseApplication.js +24 -0
- package/infrastructure/applications/BaseApplication.js.map +1 -0
- package/infrastructure/applications/IAppModuleConfig.d.ts +17 -0
- package/infrastructure/applications/IAppModuleConfig.js +3 -0
- package/infrastructure/applications/IAppModuleConfig.js.map +1 -0
- package/infrastructure/applications/base/config.d.ts +10 -0
- package/infrastructure/applications/base/config.js +37 -0
- package/infrastructure/applications/base/config.js.map +1 -0
- package/infrastructure/applications/console/ConsoleApplication.d.ts +8 -0
- package/infrastructure/applications/console/ConsoleApplication.js +28 -0
- package/infrastructure/applications/console/ConsoleApplication.js.map +1 -0
- package/infrastructure/applications/console/IConsoleAppModuleConfig.d.ts +4 -0
- package/infrastructure/applications/console/IConsoleAppModuleConfig.js +3 -0
- package/infrastructure/applications/console/IConsoleAppModuleConfig.js.map +1 -0
- package/infrastructure/applications/console/config.d.ts +13 -0
- package/infrastructure/applications/console/config.js +26 -0
- package/infrastructure/applications/console/config.js.map +1 -0
- package/infrastructure/applications/rest/IRestAppModuleConfig.d.ts +8 -0
- package/infrastructure/applications/rest/IRestAppModuleConfig.js +3 -0
- package/infrastructure/applications/rest/IRestAppModuleConfig.js.map +1 -0
- package/infrastructure/applications/rest/RestApplication.d.ts +19 -0
- package/infrastructure/applications/rest/RestApplication.js +110 -0
- package/infrastructure/applications/rest/RestApplication.js.map +1 -0
- package/infrastructure/applications/rest/SchemaSerializer.d.ts +4 -0
- package/infrastructure/applications/rest/SchemaSerializer.js +12 -0
- package/infrastructure/applications/rest/SchemaSerializer.js.map +1 -0
- package/infrastructure/applications/rest/SentryExceptionFilter.d.ts +4 -0
- package/infrastructure/applications/rest/SentryExceptionFilter.js +64 -0
- package/infrastructure/applications/rest/SentryExceptionFilter.js.map +1 -0
- package/infrastructure/applications/rest/config.d.ts +18 -0
- package/infrastructure/applications/rest/config.js +17 -0
- package/infrastructure/applications/rest/config.js.map +1 -0
- package/infrastructure/applications/rest/exceptions/RequestExecutionException.d.ts +8 -0
- package/infrastructure/applications/rest/exceptions/RequestExecutionException.js +18 -0
- package/infrastructure/applications/rest/exceptions/RequestExecutionException.js.map +1 -0
- package/infrastructure/applications/rest/filters/RequestExecutionExceptionFilter.d.ts +5 -0
- package/infrastructure/applications/rest/filters/RequestExecutionExceptionFilter.js +30 -0
- package/infrastructure/applications/rest/filters/RequestExecutionExceptionFilter.js.map +1 -0
- package/infrastructure/applications/rest/filters/ValidationExceptionFilterCustom.d.ts +10 -0
- package/infrastructure/applications/rest/filters/ValidationExceptionFilterCustom.js +49 -0
- package/infrastructure/applications/rest/filters/ValidationExceptionFilterCustom.js.map +1 -0
- package/infrastructure/commands/MigrateCommand.js.map +1 -1
- package/infrastructure/commands/entity-generator/EntityCodeGenerateCommand.js.map +1 -1
- package/infrastructure/decorators/Computable.d.ts +1 -1
- package/infrastructure/decorators/Module.d.ts +9 -0
- package/infrastructure/decorators/Module.js +32 -0
- package/infrastructure/decorators/Module.js.map +1 -0
- package/infrastructure/decorators/Transform.d.ts +2 -2
- package/infrastructure/decorators/fields/BaseField.d.ts +2 -2
- package/infrastructure/decorators/fields/DateField.js +1 -1
- package/infrastructure/decorators/fields/DateField.js.map +1 -1
- package/infrastructure/decorators/fields/DecimalField.js +1 -1
- package/infrastructure/decorators/fields/DecimalField.js.map +1 -1
- package/infrastructure/decorators/fields/RelationField.d.ts +1 -1
- package/infrastructure/decorators/fields/index.d.ts +1 -1
- package/infrastructure/filters/UserExceptionFilter.js.map +1 -1
- package/infrastructure/filters/ValidationExceptionFilter.js.map +1 -1
- package/infrastructure/helpers/ModuleHelper.d.ts +10 -1
- package/infrastructure/helpers/ModuleHelper.js +27 -1
- package/infrastructure/helpers/ModuleHelper.js.map +1 -1
- package/infrastructure/helpers/typeORM/ConditionHelperTypeORM.d.ts +4 -4
- package/infrastructure/pipes/CreateDtoPipe.js.map +1 -1
- package/infrastructure/schemas/SearchSchema.js.map +1 -1
- package/infrastructure/tests/app/models/ArticleModel.js.map +1 -1
- package/infrastructure/tests/app/models/CommentModel.js.map +1 -1
- package/infrastructure/tests/app/models/FileModel.js.map +1 -1
- package/infrastructure/tests/app/models/ImageModel.js.map +1 -1
- package/infrastructure/tests/app/models/TagModel.js.map +1 -1
- package/infrastructure/tests/app/models/UserInfoModel.js.map +1 -1
- package/infrastructure/tests/app/models/UserModel.js.map +1 -1
- package/infrastructure/tests/app/repositories/ArticleRepository.js.map +1 -1
- package/infrastructure/tests/app/repositories/CommentRepository.js.map +1 -1
- package/infrastructure/tests/app/repositories/FileRepository.js.map +1 -1
- package/infrastructure/tests/app/repositories/ImageRepository.js.map +1 -1
- package/infrastructure/tests/app/repositories/TagRepository.js.map +1 -1
- package/infrastructure/tests/app/repositories/UserRepository.js.map +1 -1
- package/infrastructure/tests/app/schemas/ArticleSchema.js.map +1 -1
- package/infrastructure/tests/app/schemas/FileSchema.js.map +1 -1
- package/infrastructure/tests/app/schemas/ImageSchema.js.map +1 -1
- package/infrastructure/tests/app/schemas/UserInfoSchema.js.map +1 -1
- package/infrastructure/tests/app/schemas/UserSchema.js.map +1 -1
- package/infrastructure/tests/app/services/ArticleService.js.map +1 -1
- package/infrastructure/tests/app/services/CommentService.js.map +1 -1
- package/infrastructure/tests/app/services/FileService.js.map +1 -1
- package/infrastructure/tests/app/services/ImageService.js.map +1 -1
- package/infrastructure/tests/app/services/TagService.js.map +1 -1
- package/infrastructure/tests/app/services/UserService.js.map +1 -1
- package/infrastructure/tests/app/tables/ArticleTable.js.map +1 -1
- package/infrastructure/tests/app/tables/CommentTable.js.map +1 -1
- package/infrastructure/tests/app/tables/FileTable.js.map +1 -1
- package/infrastructure/tests/app/tables/ImageTable.js.map +1 -1
- package/infrastructure/tests/app/tables/TagTable.js.map +1 -1
- package/infrastructure/tests/app/tables/UserInfoTable.js.map +1 -1
- package/infrastructure/tests/app/tables/UserTable.js.map +1 -1
- package/infrastructure/tests/bootstrap.js +0 -6
- package/infrastructure/tests/bootstrap.js.map +1 -1
- package/package.json +25 -25
- package/tsconfig.tsbuildinfo +1 -1
- package/usecases/base/SearchQuery.d.ts +1 -1
- package/usecases/dtos/SearchInputDto.js.map +1 -1
- package/usecases/interfaces/ICrudRepository.d.ts +2 -2
- package/usecases/interfaces/IDeepPartial.d.ts +1 -1
- package/usecases/interfaces/IType.d.ts +3 -0
- package/usecases/interfaces/IType.js +3 -0
- package/usecases/interfaces/IType.js.map +1 -0
- package/usecases/services/CrudService.d.ts +4 -4
- package/usecases/services/CrudService.js.map +1 -1
- package/usecases/services/ReadService.d.ts +4 -4
- package/usecases/services/ReadService.js.map +1 -1
- package/usecases/validators/Validator.d.ts +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bootstrap.js","sourceRoot":"","sources":["../../../src/infrastructure/tests/bootstrap.ts"],"names":[],"mappings":";;;;;;;;;AAAA,2CAAsC;AACtC,uCAAyC;AACzC,2DAAuD;AAEvD,oFAA+E;AAC/E,0DAAqD;AACrD,0DAAqD;AACrD,+BAA0B;AAC1B,
|
|
1
|
+
{"version":3,"file":"bootstrap.js","sourceRoot":"","sources":["../../../src/infrastructure/tests/bootstrap.ts"],"names":[],"mappings":";;;;;;;;;AAAA,2CAAsC;AACtC,uCAAyC;AACzC,2DAAuD;AAEvD,oFAA+E;AAC/E,0DAAqD;AACrD,0DAAqD;AACrD,+BAA0B;AAC1B,2EAAsE;AACtE,wEAAmE;AA0BnE,IAAM,SAAS,GAAf,MAAM,SAAS;CACd,CAAA;AADK,SAAS;IAxBd,IAAA,eAAM,EAAC;QACJ,OAAO,EAAE;YACL,4BAAa,CAAC,YAAY,CAAC;gBACvB,UAAU,EAAE,GAAG,EAAE,CAAC,CAAC;oBACf,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,OAAO,CAAC,GAAG,CAAC,YAAY;oBAC9B,IAAI,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,YAAY,EAAE,EAAE,CAAC;oBAC5C,QAAQ,EAAE,OAAO,CAAC,GAAG,CAAC,gBAAgB;oBACtC,QAAQ,EAAE,OAAO,CAAC,GAAG,CAAC,gBAAgB;oBACtC,QAAQ,EAAE,OAAO,CAAC,GAAG,CAAC,gBAAgB;oBACtC,QAAQ,EAAE,CAAC,IAAA,WAAI,EAAC,SAAS,EAAE,sBAAsB,CAAC,CAAC;oBACnD,mBAAmB,EAAE,gBAAgB;oBACrC,WAAW,EAAE,IAAI;oBACjB,OAAO,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,WAAW,CAAgB;oBAChE,cAAc,EAAE,IAAI,+CAAsB,EAAE;iBACjB,CAAA;aAClC,CAAC;YACF,4BAAa,CAAC,UAAU,CAAC,2BAAY,CAAC,SAAS,CAAC,SAAS,GAAG,aAAa,CAAC,CAAC;SAC9E;QACD,SAAS,EAAE;YACP,GAAG,2BAAY,CAAC,SAAS,CAAC,SAAS,GAAG,mBAAmB,CAAC;YAC1D,GAAG,2BAAY,CAAC,SAAS,CAAC,SAAS,GAAG,eAAe,CAAC;SACzD;KACJ,CAAC;GACI,SAAS,CACd;AAEM,KAAK,UAAU,SAAS;IAC3B,MAAM,GAAG,GAAG,MAAM,kBAAW,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;IAEhD,GAAG,CAAC,cAAc,CAAC,IAAI,6BAAa,EAAE,CAAC,CAAC;IACxC,GAAG,CAAC,gBAAgB,CAAC,IAAI,qDAAyB,EAAE,EAAC,IAAI,yCAAmB,EAAE,CAAC,CAAC;IAChF,GAAG,CAAC,IAAI,EAAE,CAAC;IAEX,OAAO,GAAG,CAAC;AACf,CAAC;AARD,8BAQC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steroidsjs/nest",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"script": "nps",
|
|
6
6
|
"watch": "nps watch",
|
|
@@ -20,39 +20,39 @@
|
|
|
20
20
|
"url": "https://github.com/steroids/nest/issues"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@dbml/core": "^2.3.1",
|
|
24
|
-
"@nestjs/cli": "^8.2.2",
|
|
25
|
-
"@nestjs/common": "^8.4.1",
|
|
26
|
-
"@nestjs/config": "^1.2.0",
|
|
27
|
-
"@nestjs/core": "^8.4.1",
|
|
28
|
-
"@nestjs/platform-express": "^8.4.1",
|
|
29
|
-
"@nestjs/swagger": "^5.2.0",
|
|
30
23
|
"@steroidsjs/nest-typeorm": "^9.0.3",
|
|
31
24
|
"@steroidsjs/typeorm": "^0.3.11",
|
|
32
|
-
"
|
|
25
|
+
"pg": "^8.9.0",
|
|
26
|
+
"@dbml/core": "^2.4.4",
|
|
27
|
+
"@nestjs/cli": "^9.1.9",
|
|
28
|
+
"@nestjs/common": "^9.2.1",
|
|
29
|
+
"@nestjs/core": "^9.2.1",
|
|
30
|
+
"@nestjs/platform-express": "^9.2.1",
|
|
31
|
+
"@nestjs/swagger": "^6.1.4",
|
|
32
|
+
"@sqltools/formatter": "^1.2.5",
|
|
33
33
|
"bluebird": "^3.7.2",
|
|
34
34
|
"class-transformer": "^0.5.1",
|
|
35
|
-
"class-validator": "^0.
|
|
36
|
-
"date-fns": "^2.
|
|
37
|
-
"express": "^4.
|
|
35
|
+
"class-validator": "^0.14.0",
|
|
36
|
+
"date-fns": "^2.29.3",
|
|
37
|
+
"express": "^4.18.2",
|
|
38
38
|
"lodash": "^4.17.21",
|
|
39
|
-
"nestjs-command": "^3.1.
|
|
39
|
+
"nestjs-command": "^3.1.3",
|
|
40
40
|
"pluralize": "^8.0.0",
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
41
|
+
"uuid": "^9.0.0",
|
|
42
|
+
"@ntegral/nestjs-sentry": "^4.0.0",
|
|
43
|
+
"@sentry/node": "^7.34.0",
|
|
44
|
+
"@sentry/types": "^7.34.0"
|
|
44
45
|
},
|
|
45
46
|
"devDependencies": {
|
|
46
|
-
"@jest/globals": "^
|
|
47
|
-
"@types/jest": "^
|
|
48
|
-
"@types/node": "^18.
|
|
47
|
+
"@jest/globals": "^29.4.1",
|
|
48
|
+
"@types/jest": "^29.4.0",
|
|
49
|
+
"@types/node": "^18.11.18",
|
|
49
50
|
"copyfiles": "^2.4.1",
|
|
50
|
-
"jest": "^
|
|
51
|
+
"jest": "^29.4.1",
|
|
51
52
|
"nps": "^5.10.0",
|
|
52
|
-
"
|
|
53
|
-
"ts-
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"typescript": "^4.3.5"
|
|
53
|
+
"ts-jest": "^29.0.5",
|
|
54
|
+
"ts-node": "^10.9.1",
|
|
55
|
+
"tsconfig-paths": "^4.1.2",
|
|
56
|
+
"typescript": "^4.9.4"
|
|
57
57
|
}
|
|
58
58
|
}
|