@decaf-ts/for-nest 0.11.2-refactor.4 → 0.11.2-refactor.5
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/for-nest.cjs +8 -268
- package/dist/for-nest.js +9 -269
- package/lib/cjs/controllers.cjs +4 -6
- package/lib/cjs/decaf-model/FromModelController.cjs +116 -305
- package/lib/cjs/decaf-model/decorators/ApiOperationFromModel.cjs +2 -2
- package/lib/cjs/events-module/utils.cjs +2 -2
- package/lib/cjs/factory/NestBootstraper.cjs +3 -4
- package/lib/cjs/index.cjs +2 -2
- package/lib/cjs/request/DecafRequestContext.cjs +2 -3
- package/lib/cjs/request/DecafResponseInterceptor.cjs +5 -3
- package/lib/cjs/swagger-types.cjs +2 -2
- package/lib/cjs/types.cjs +2 -2
- package/lib/cjs/webhooks/DecafWebhookModule.cjs +3 -2
- package/lib/cjs/webhooks/controllers.cjs +50 -55
- package/lib/esm/controllers.js +3 -5
- package/lib/esm/decaf-model/FromModelController.js +117 -306
- package/lib/esm/decaf-model/decorators/ApiOperationFromModel.js +1 -1
- package/lib/esm/events-module/utils.js +1 -1
- package/lib/esm/factory/NestBootstraper.js +2 -3
- package/lib/esm/index.js +2 -2
- package/lib/esm/request/DecafRequestContext.js +1 -2
- package/lib/esm/request/DecafResponseInterceptor.js +4 -2
- package/lib/esm/swagger-types.js +1 -1
- package/lib/esm/types.js +1 -1
- package/lib/esm/webhooks/DecafWebhookModule.js +2 -1
- package/lib/esm/webhooks/controllers.js +49 -54
- package/lib/types/decaf-model/FromModelController.d.cts +0 -11
- package/lib/types/decaf-model/FromModelController.d.mts +0 -11
- package/lib/types/index.d.cts +2 -2
- package/lib/types/index.d.mts +2 -2
- package/package.json +7 -1
package/lib/types/index.d.cts
CHANGED
|
@@ -48,12 +48,12 @@ export declare const VERSION = "0.11.2-refactor.4";
|
|
|
48
48
|
* the placeholder with the actual commit hash at publish time.
|
|
49
49
|
* @const COMMIT
|
|
50
50
|
*/
|
|
51
|
-
export declare const COMMIT = "
|
|
51
|
+
export declare const COMMIT = "1b4f98c";
|
|
52
52
|
/**
|
|
53
53
|
* @description Represents the full version string of the module.
|
|
54
54
|
* @summary Stores the semver version and commit hash for the package.
|
|
55
55
|
* The build replaces the placeholder with the actual `<version>-<commit>` value at publish time.
|
|
56
56
|
* @const FULL_VERSION
|
|
57
57
|
*/
|
|
58
|
-
export declare const FULL_VERSION = "0.11.2-refactor.4-
|
|
58
|
+
export declare const FULL_VERSION = "0.11.2-refactor.4-1b4f98c";
|
|
59
59
|
export declare const PACKAGE_NAME = "@decaf-ts/for-nest";
|
package/lib/types/index.d.mts
CHANGED
|
@@ -48,12 +48,12 @@ export declare const VERSION = "0.11.2-refactor.4";
|
|
|
48
48
|
* the placeholder with the actual commit hash at publish time.
|
|
49
49
|
* @const COMMIT
|
|
50
50
|
*/
|
|
51
|
-
export declare const COMMIT = "
|
|
51
|
+
export declare const COMMIT = "1b4f98c";
|
|
52
52
|
/**
|
|
53
53
|
* @description Represents the full version string of the module.
|
|
54
54
|
* @summary Stores the semver version and commit hash for the package.
|
|
55
55
|
* The build replaces the placeholder with the actual `<version>-<commit>` value at publish time.
|
|
56
56
|
* @const FULL_VERSION
|
|
57
57
|
*/
|
|
58
|
-
export declare const FULL_VERSION = "0.11.2-refactor.4-
|
|
58
|
+
export declare const FULL_VERSION = "0.11.2-refactor.4-1b4f98c";
|
|
59
59
|
export declare const PACKAGE_NAME = "@decaf-ts/for-nest";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decaf-ts/for-nest",
|
|
3
|
-
"version": "0.11.2-refactor.
|
|
3
|
+
"version": "0.11.2-refactor.5",
|
|
4
4
|
"description": "NestJS decaf integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -164,6 +164,12 @@
|
|
|
164
164
|
"jsrsasign": "^11.1.0"
|
|
165
165
|
},
|
|
166
166
|
"ajv": "^8.17.2",
|
|
167
|
+
"@eslint/eslintrc": {
|
|
168
|
+
"ajv": "^6.14.0"
|
|
169
|
+
},
|
|
170
|
+
"eslint": {
|
|
171
|
+
"ajv": "^6.14.0"
|
|
172
|
+
},
|
|
167
173
|
"multer": "^2.1.2",
|
|
168
174
|
"js-yaml": "^4.2.0"
|
|
169
175
|
}
|