@tndhuy/create-app 1.2.7 → 1.2.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
|
@@ -25,7 +25,8 @@ export class TransformInterceptor<T> implements NestInterceptor<T, unknown> {
|
|
|
25
25
|
context.getClass(),
|
|
26
26
|
]);
|
|
27
27
|
|
|
28
|
-
//
|
|
28
|
+
// If not explicitly marked as Public API (or similar decorator), return RAW data
|
|
29
|
+
// This allows internal/system calls to remain untouched while Public APIs are standardized.
|
|
29
30
|
if (!isPublic) {
|
|
30
31
|
return next.handle();
|
|
31
32
|
}
|
|
@@ -25,7 +25,8 @@ export class TransformInterceptor<T> implements NestInterceptor<T, unknown> {
|
|
|
25
25
|
context.getClass(),
|
|
26
26
|
]);
|
|
27
27
|
|
|
28
|
-
//
|
|
28
|
+
// If not explicitly marked as Public API (or similar decorator), return RAW data
|
|
29
|
+
// This allows internal/system calls to remain untouched while Public APIs are standardized.
|
|
29
30
|
if (!isPublic) {
|
|
30
31
|
return next.handle();
|
|
31
32
|
}
|