@lark-apaas/fullstack-nestjs-core 1.1.56 → 1.1.57-alpha.20260717073205
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.cjs +22 -63
- package/dist/index.d.cts +1 -26
- package/dist/index.d.ts +1 -26
- package/dist/index.js +22 -59
- package/package.json +4 -3
package/dist/index.cjs
CHANGED
|
@@ -14894,10 +14894,10 @@ var require_object_inspect = __commonJS({
|
|
|
14894
14894
|
}
|
|
14895
14895
|
if (!isDate(obj) && !isRegExp(obj)) {
|
|
14896
14896
|
var ys = arrObjKeys(obj, inspect);
|
|
14897
|
-
var
|
|
14897
|
+
var isPlainObject = gPO ? gPO(obj) === Object.prototype : obj instanceof Object || obj.constructor === Object;
|
|
14898
14898
|
var protoTag = obj instanceof Object ? "" : "null prototype";
|
|
14899
|
-
var stringTag = !
|
|
14900
|
-
var constructorTag =
|
|
14899
|
+
var stringTag = !isPlainObject && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice.call(toStr(obj), 8, -1) : protoTag ? "Object" : "";
|
|
14900
|
+
var constructorTag = isPlainObject || typeof obj.constructor !== "function" ? "" : obj.constructor.name ? obj.constructor.name + " " : "";
|
|
14901
14901
|
var tag = constructorTag + (stringTag || protoTag ? "[" + $join.call($concat.call([], stringTag || [], protoTag || []), ": ") + "] " : "");
|
|
14902
14902
|
if (ys.length === 0) {
|
|
14903
14903
|
return tag + "{}";
|
|
@@ -34423,11 +34423,7 @@ __export(index_exports, {
|
|
|
34423
34423
|
UserContextMiddleware: () => UserContextMiddleware,
|
|
34424
34424
|
ViewContextMiddleware: () => ViewContextMiddleware,
|
|
34425
34425
|
configureApp: () => configureApp,
|
|
34426
|
-
createLegacyPathRedirectMiddleware: () => createLegacyPathRedirectMiddleware
|
|
34427
|
-
safeEscape: () => safeEscape,
|
|
34428
|
-
safeEscapeDeep: () => safeEscapeDeep,
|
|
34429
|
-
safeStringParse: () => safeStringParse,
|
|
34430
|
-
safeStringify: () => safeStringify
|
|
34426
|
+
createLegacyPathRedirectMiddleware: () => createLegacyPathRedirectMiddleware
|
|
34431
34427
|
});
|
|
34432
34428
|
module.exports = __toCommonJS(index_exports);
|
|
34433
34429
|
|
|
@@ -34440,6 +34436,7 @@ var import_nestjs_observable = require("@lark-apaas/nestjs-observable");
|
|
|
34440
34436
|
var import_axios2 = require("@nestjs/axios");
|
|
34441
34437
|
var import_nestjs_logger2 = require("@lark-apaas/nestjs-logger");
|
|
34442
34438
|
var import_nestjs_datapaas = require("@lark-apaas/nestjs-datapaas");
|
|
34439
|
+
var import_nestjs = require("@lark-apaas/cache-service/nestjs");
|
|
34443
34440
|
var import_nestjs_authnpaas = require("@lark-apaas/nestjs-authnpaas");
|
|
34444
34441
|
var import_nestjs_http_forwarder = require("@lark-apaas/nestjs-http-forwarder");
|
|
34445
34442
|
var import_nestjs_trigger = require("@lark-apaas/nestjs-trigger");
|
|
@@ -34563,19 +34560,6 @@ var import_common3 = require("@nestjs/common");
|
|
|
34563
34560
|
var import_nestjs_common = require("@lark-apaas/nestjs-common");
|
|
34564
34561
|
|
|
34565
34562
|
// src/utils/safe-stringify.ts
|
|
34566
|
-
function safeStringify(obj) {
|
|
34567
|
-
const json2 = JSON.stringify(obj);
|
|
34568
|
-
return safeEscape(json2);
|
|
34569
|
-
}
|
|
34570
|
-
__name(safeStringify, "safeStringify");
|
|
34571
|
-
function safeStringParse(str, defaultValue = null) {
|
|
34572
|
-
try {
|
|
34573
|
-
return JSON.parse(str);
|
|
34574
|
-
} catch (e) {
|
|
34575
|
-
return defaultValue;
|
|
34576
|
-
}
|
|
34577
|
-
}
|
|
34578
|
-
__name(safeStringParse, "safeStringParse");
|
|
34579
34563
|
function safeEscape(s) {
|
|
34580
34564
|
return s.replace(/[<>&='"\n\r\u2028\u2029]/g, function(c) {
|
|
34581
34565
|
switch (c.charCodeAt(0)) {
|
|
@@ -34617,40 +34601,6 @@ function safeEscape(s) {
|
|
|
34617
34601
|
});
|
|
34618
34602
|
}
|
|
34619
34603
|
__name(safeEscape, "safeEscape");
|
|
34620
|
-
function safeEscapeDeep(value) {
|
|
34621
|
-
return safeEscapeDeepInner(value, /* @__PURE__ */ new WeakSet());
|
|
34622
|
-
}
|
|
34623
|
-
__name(safeEscapeDeep, "safeEscapeDeep");
|
|
34624
|
-
var plainProtos = /* @__PURE__ */ new Set([
|
|
34625
|
-
Object.prototype,
|
|
34626
|
-
null
|
|
34627
|
-
]);
|
|
34628
|
-
function isPlainObject(v) {
|
|
34629
|
-
if (v === null || typeof v !== "object") return false;
|
|
34630
|
-
return plainProtos.has(Object.getPrototypeOf(v));
|
|
34631
|
-
}
|
|
34632
|
-
__name(isPlainObject, "isPlainObject");
|
|
34633
|
-
function safeEscapeDeepInner(value, seen) {
|
|
34634
|
-
if (typeof value === "string") {
|
|
34635
|
-
return safeEscape(value);
|
|
34636
|
-
}
|
|
34637
|
-
if (Array.isArray(value)) {
|
|
34638
|
-
if (seen.has(value)) return value;
|
|
34639
|
-
seen.add(value);
|
|
34640
|
-
return value.map((v) => safeEscapeDeepInner(v, seen));
|
|
34641
|
-
}
|
|
34642
|
-
if (isPlainObject(value)) {
|
|
34643
|
-
if (seen.has(value)) return value;
|
|
34644
|
-
seen.add(value);
|
|
34645
|
-
const out = {};
|
|
34646
|
-
for (const k of Object.keys(value)) {
|
|
34647
|
-
out[k] = safeEscapeDeepInner(value[k], seen);
|
|
34648
|
-
}
|
|
34649
|
-
return out;
|
|
34650
|
-
}
|
|
34651
|
-
return value;
|
|
34652
|
-
}
|
|
34653
|
-
__name(safeEscapeDeepInner, "safeEscapeDeepInner");
|
|
34654
34604
|
|
|
34655
34605
|
// src/middlewares/view-context/middleware.ts
|
|
34656
34606
|
function _ts_decorate3(decorators, target, key, desc) {
|
|
@@ -34718,10 +34668,7 @@ var ViewContextMiddleware = class _ViewContextMiddleware {
|
|
|
34718
34668
|
tenantId,
|
|
34719
34669
|
environment,
|
|
34720
34670
|
showBadge: appInfo?.show_badge !== false,
|
|
34721
|
-
|
|
34722
|
-
// 用户输入 </script> / 引号 / 换行等会破坏下游 <script> raw 注入的 JSON.stringify 结果,
|
|
34723
|
-
// 深度 escape 所有 string 字段兜底;浏览器 JSON.parse 后仍还原为原字符串,前端无感。
|
|
34724
|
-
appPublished: appPublishedData ? safeEscapeDeep(appPublishedData) : null,
|
|
34671
|
+
appPublished: appPublishedData ?? null,
|
|
34725
34672
|
basename
|
|
34726
34673
|
};
|
|
34727
34674
|
res.locals = {
|
|
@@ -36456,6 +36403,22 @@ var PlatformModule = class _PlatformModule {
|
|
|
36456
36403
|
}, "useFactory")
|
|
36457
36404
|
})
|
|
36458
36405
|
],
|
|
36406
|
+
import_nestjs.NestjsCacheModule.forRootAsync({
|
|
36407
|
+
inject: [
|
|
36408
|
+
import_nestjs_logger2.AppLogger
|
|
36409
|
+
],
|
|
36410
|
+
useFactory: /* @__PURE__ */ __name((...args) => {
|
|
36411
|
+
const appLogger = args[0];
|
|
36412
|
+
const connectionString = process.env.MIAODA_CACHE_URL ?? "";
|
|
36413
|
+
if (!connectionString) {
|
|
36414
|
+
appLogger.warn("MIAODA_CACHE_URL is empty, cache-service will be effectively disabled until it is set.", "PlatformModule");
|
|
36415
|
+
}
|
|
36416
|
+
return {
|
|
36417
|
+
connectionString,
|
|
36418
|
+
connectionTokenFilePath: "/var/run/secrets/zti/credential"
|
|
36419
|
+
};
|
|
36420
|
+
}, "useFactory")
|
|
36421
|
+
}),
|
|
36459
36422
|
import_nestjs_authnpaas.AuthNPaasModule.forRoot(),
|
|
36460
36423
|
import_nestjs_authzpaas.AuthZPaasModule.forRoot({
|
|
36461
36424
|
...options.authz || {}
|
|
@@ -36675,10 +36638,6 @@ var import_nestjs_authzpaas2 = require("@lark-apaas/nestjs-authzpaas");
|
|
|
36675
36638
|
ViewContextMiddleware,
|
|
36676
36639
|
configureApp,
|
|
36677
36640
|
createLegacyPathRedirectMiddleware,
|
|
36678
|
-
safeEscape,
|
|
36679
|
-
safeEscapeDeep,
|
|
36680
|
-
safeStringParse,
|
|
36681
|
-
safeStringify,
|
|
36682
36641
|
...require("@lark-apaas/nestjs-authnpaas"),
|
|
36683
36642
|
...require("@lark-apaas/nestjs-capability"),
|
|
36684
36643
|
...require("@lark-apaas/nestjs-datapaas"),
|
package/dist/index.d.cts
CHANGED
|
@@ -411,29 +411,4 @@ declare class PlatformHttpClientService {
|
|
|
411
411
|
private registerInterceptorsForClient;
|
|
412
412
|
}
|
|
413
413
|
|
|
414
|
-
|
|
415
|
-
* 安全转义的 Json Stringify,模版渲染的 JSON 对象需要调用 safeStringify,而不是用原生的 JSON.stringify。
|
|
416
|
-
* 抄 gson 的实现: https://github.com/google/gson/blob/49ddab9eeb6cbac686711deca6001d40e8d8500d/gson/src/main/java/com/google/gson/stream/JsonWriter.java
|
|
417
|
-
* 将 json 的敏感字符转换为 unicode, 避免 xss
|
|
418
|
-
*/
|
|
419
|
-
declare function safeStringify(obj: any): string;
|
|
420
|
-
declare function safeStringParse<T>(str: string, defaultValue?: any): T;
|
|
421
|
-
declare function safeEscape(s: string): string;
|
|
422
|
-
/**
|
|
423
|
-
* 深度递归 safeEscape:仅处理 plain object / array / string,其他类型(number /
|
|
424
|
-
* boolean / null / undefined / Date / Map / Set / Buffer / class 实例 …)原样返回,
|
|
425
|
-
* 避免把非 plain 对象打散成 `{}`。命中循环引用时对已访问节点原样返回,不再递归。
|
|
426
|
-
*
|
|
427
|
-
* ⚠️ 用途约定:产物是**给 JS 源码字面量语境**用的(例如把整段结果作为
|
|
428
|
-
* `<script>window.x = ${result}</script>` 直接注入)。转义后的 `<` 是 6 个字面
|
|
429
|
-
* 字符(含反斜杠),依赖 JS 引擎在 parse 字符串字面量时把它解回 `<`。
|
|
430
|
-
*
|
|
431
|
-
* 若下游再对结果做一次 `JSON.stringify`(如 EJS `<%- JSON.stringify(...) %>`),
|
|
432
|
-
* `\` 会被 JSON 再次转义为 `\\` —— 这仍然能阻止 `</script>` 提前闭合 <script> 块
|
|
433
|
-
* (核心目标),但**浏览器端 JSON.parse 拿到的字符串会含字面 `<` 序列而非
|
|
434
|
-
* `<`**。这是 SDK 与下游的既有契约(现存 `safeEscape(appDescription)` 也是同样性质)。
|
|
435
|
-
* 前端如需还原可自行 `JSON.parse('"' + v + '"')`。
|
|
436
|
-
*/
|
|
437
|
-
declare function safeEscapeDeep<T>(value: T): T;
|
|
438
|
-
|
|
439
|
-
export { type ApiNotFoundResponse, CsrfMiddleware, CsrfTokenMiddleware, FileService, HtmlHotUpdateModule, HtmlHotUpdateService, type PlatformHttpClientOptions, PlatformHttpClientService, PlatformModule, type PlatformModuleOptions, StaticModule, UserContextMiddleware, ViewContextMiddleware, configureApp, createLegacyPathRedirectMiddleware, safeEscape, safeEscapeDeep, safeStringParse, safeStringify };
|
|
414
|
+
export { type ApiNotFoundResponse, CsrfMiddleware, CsrfTokenMiddleware, FileService, HtmlHotUpdateModule, HtmlHotUpdateService, type PlatformHttpClientOptions, PlatformHttpClientService, PlatformModule, type PlatformModuleOptions, StaticModule, UserContextMiddleware, ViewContextMiddleware, configureApp, createLegacyPathRedirectMiddleware };
|
package/dist/index.d.ts
CHANGED
|
@@ -411,29 +411,4 @@ declare class PlatformHttpClientService {
|
|
|
411
411
|
private registerInterceptorsForClient;
|
|
412
412
|
}
|
|
413
413
|
|
|
414
|
-
|
|
415
|
-
* 安全转义的 Json Stringify,模版渲染的 JSON 对象需要调用 safeStringify,而不是用原生的 JSON.stringify。
|
|
416
|
-
* 抄 gson 的实现: https://github.com/google/gson/blob/49ddab9eeb6cbac686711deca6001d40e8d8500d/gson/src/main/java/com/google/gson/stream/JsonWriter.java
|
|
417
|
-
* 将 json 的敏感字符转换为 unicode, 避免 xss
|
|
418
|
-
*/
|
|
419
|
-
declare function safeStringify(obj: any): string;
|
|
420
|
-
declare function safeStringParse<T>(str: string, defaultValue?: any): T;
|
|
421
|
-
declare function safeEscape(s: string): string;
|
|
422
|
-
/**
|
|
423
|
-
* 深度递归 safeEscape:仅处理 plain object / array / string,其他类型(number /
|
|
424
|
-
* boolean / null / undefined / Date / Map / Set / Buffer / class 实例 …)原样返回,
|
|
425
|
-
* 避免把非 plain 对象打散成 `{}`。命中循环引用时对已访问节点原样返回,不再递归。
|
|
426
|
-
*
|
|
427
|
-
* ⚠️ 用途约定:产物是**给 JS 源码字面量语境**用的(例如把整段结果作为
|
|
428
|
-
* `<script>window.x = ${result}</script>` 直接注入)。转义后的 `<` 是 6 个字面
|
|
429
|
-
* 字符(含反斜杠),依赖 JS 引擎在 parse 字符串字面量时把它解回 `<`。
|
|
430
|
-
*
|
|
431
|
-
* 若下游再对结果做一次 `JSON.stringify`(如 EJS `<%- JSON.stringify(...) %>`),
|
|
432
|
-
* `\` 会被 JSON 再次转义为 `\\` —— 这仍然能阻止 `</script>` 提前闭合 <script> 块
|
|
433
|
-
* (核心目标),但**浏览器端 JSON.parse 拿到的字符串会含字面 `<` 序列而非
|
|
434
|
-
* `<`**。这是 SDK 与下游的既有契约(现存 `safeEscape(appDescription)` 也是同样性质)。
|
|
435
|
-
* 前端如需还原可自行 `JSON.parse('"' + v + '"')`。
|
|
436
|
-
*/
|
|
437
|
-
declare function safeEscapeDeep<T>(value: T): T;
|
|
438
|
-
|
|
439
|
-
export { type ApiNotFoundResponse, CsrfMiddleware, CsrfTokenMiddleware, FileService, HtmlHotUpdateModule, HtmlHotUpdateService, type PlatformHttpClientOptions, PlatformHttpClientService, PlatformModule, type PlatformModuleOptions, StaticModule, UserContextMiddleware, ViewContextMiddleware, configureApp, createLegacyPathRedirectMiddleware, safeEscape, safeEscapeDeep, safeStringParse, safeStringify };
|
|
414
|
+
export { type ApiNotFoundResponse, CsrfMiddleware, CsrfTokenMiddleware, FileService, HtmlHotUpdateModule, HtmlHotUpdateService, type PlatformHttpClientOptions, PlatformHttpClientService, PlatformModule, type PlatformModuleOptions, StaticModule, UserContextMiddleware, ViewContextMiddleware, configureApp, createLegacyPathRedirectMiddleware };
|
package/dist/index.js
CHANGED
|
@@ -14893,10 +14893,10 @@ var require_object_inspect = __commonJS({
|
|
|
14893
14893
|
}
|
|
14894
14894
|
if (!isDate(obj) && !isRegExp(obj)) {
|
|
14895
14895
|
var ys = arrObjKeys(obj, inspect);
|
|
14896
|
-
var
|
|
14896
|
+
var isPlainObject = gPO ? gPO(obj) === Object.prototype : obj instanceof Object || obj.constructor === Object;
|
|
14897
14897
|
var protoTag = obj instanceof Object ? "" : "null prototype";
|
|
14898
|
-
var stringTag = !
|
|
14899
|
-
var constructorTag =
|
|
14898
|
+
var stringTag = !isPlainObject && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice.call(toStr(obj), 8, -1) : protoTag ? "Object" : "";
|
|
14899
|
+
var constructorTag = isPlainObject || typeof obj.constructor !== "function" ? "" : obj.constructor.name ? obj.constructor.name + " " : "";
|
|
14900
14900
|
var tag = constructorTag + (stringTag || protoTag ? "[" + $join.call($concat.call([], stringTag || [], protoTag || []), ": ") + "] " : "");
|
|
14901
14901
|
if (ys.length === 0) {
|
|
14902
14902
|
return tag + "{}";
|
|
@@ -34409,6 +34409,7 @@ import { NestjsObservableModule as ObservableModule, Observable, ObservableTrace
|
|
|
34409
34409
|
import { HttpModule } from "@nestjs/axios";
|
|
34410
34410
|
import { LoggerModule, AppLogger as AppLogger2, LoggerContextMiddleware } from "@lark-apaas/nestjs-logger";
|
|
34411
34411
|
import { DataPaasModule, SqlExecutionContextMiddleware } from "@lark-apaas/nestjs-datapaas";
|
|
34412
|
+
import { NestjsCacheModule } from "@lark-apaas/cache-service/nestjs";
|
|
34412
34413
|
import { AuthNPaasModule } from "@lark-apaas/nestjs-authnpaas";
|
|
34413
34414
|
import { HttpForwarderModule } from "@lark-apaas/nestjs-http-forwarder";
|
|
34414
34415
|
import { AutomationModule } from "@lark-apaas/nestjs-trigger";
|
|
@@ -34532,19 +34533,6 @@ import { Inject, Injectable as Injectable3, Logger } from "@nestjs/common";
|
|
|
34532
34533
|
import { PLATFORM_HTTP_CLIENT } from "@lark-apaas/nestjs-common";
|
|
34533
34534
|
|
|
34534
34535
|
// src/utils/safe-stringify.ts
|
|
34535
|
-
function safeStringify(obj) {
|
|
34536
|
-
const json2 = JSON.stringify(obj);
|
|
34537
|
-
return safeEscape(json2);
|
|
34538
|
-
}
|
|
34539
|
-
__name(safeStringify, "safeStringify");
|
|
34540
|
-
function safeStringParse(str, defaultValue = null) {
|
|
34541
|
-
try {
|
|
34542
|
-
return JSON.parse(str);
|
|
34543
|
-
} catch (e) {
|
|
34544
|
-
return defaultValue;
|
|
34545
|
-
}
|
|
34546
|
-
}
|
|
34547
|
-
__name(safeStringParse, "safeStringParse");
|
|
34548
34536
|
function safeEscape(s) {
|
|
34549
34537
|
return s.replace(/[<>&='"\n\r\u2028\u2029]/g, function(c) {
|
|
34550
34538
|
switch (c.charCodeAt(0)) {
|
|
@@ -34586,40 +34574,6 @@ function safeEscape(s) {
|
|
|
34586
34574
|
});
|
|
34587
34575
|
}
|
|
34588
34576
|
__name(safeEscape, "safeEscape");
|
|
34589
|
-
function safeEscapeDeep(value) {
|
|
34590
|
-
return safeEscapeDeepInner(value, /* @__PURE__ */ new WeakSet());
|
|
34591
|
-
}
|
|
34592
|
-
__name(safeEscapeDeep, "safeEscapeDeep");
|
|
34593
|
-
var plainProtos = /* @__PURE__ */ new Set([
|
|
34594
|
-
Object.prototype,
|
|
34595
|
-
null
|
|
34596
|
-
]);
|
|
34597
|
-
function isPlainObject(v) {
|
|
34598
|
-
if (v === null || typeof v !== "object") return false;
|
|
34599
|
-
return plainProtos.has(Object.getPrototypeOf(v));
|
|
34600
|
-
}
|
|
34601
|
-
__name(isPlainObject, "isPlainObject");
|
|
34602
|
-
function safeEscapeDeepInner(value, seen) {
|
|
34603
|
-
if (typeof value === "string") {
|
|
34604
|
-
return safeEscape(value);
|
|
34605
|
-
}
|
|
34606
|
-
if (Array.isArray(value)) {
|
|
34607
|
-
if (seen.has(value)) return value;
|
|
34608
|
-
seen.add(value);
|
|
34609
|
-
return value.map((v) => safeEscapeDeepInner(v, seen));
|
|
34610
|
-
}
|
|
34611
|
-
if (isPlainObject(value)) {
|
|
34612
|
-
if (seen.has(value)) return value;
|
|
34613
|
-
seen.add(value);
|
|
34614
|
-
const out = {};
|
|
34615
|
-
for (const k of Object.keys(value)) {
|
|
34616
|
-
out[k] = safeEscapeDeepInner(value[k], seen);
|
|
34617
|
-
}
|
|
34618
|
-
return out;
|
|
34619
|
-
}
|
|
34620
|
-
return value;
|
|
34621
|
-
}
|
|
34622
|
-
__name(safeEscapeDeepInner, "safeEscapeDeepInner");
|
|
34623
34577
|
|
|
34624
34578
|
// src/middlewares/view-context/middleware.ts
|
|
34625
34579
|
function _ts_decorate3(decorators, target, key, desc) {
|
|
@@ -34687,10 +34641,7 @@ var ViewContextMiddleware = class _ViewContextMiddleware {
|
|
|
34687
34641
|
tenantId,
|
|
34688
34642
|
environment,
|
|
34689
34643
|
showBadge: appInfo?.show_badge !== false,
|
|
34690
|
-
|
|
34691
|
-
// 用户输入 </script> / 引号 / 换行等会破坏下游 <script> raw 注入的 JSON.stringify 结果,
|
|
34692
|
-
// 深度 escape 所有 string 字段兜底;浏览器 JSON.parse 后仍还原为原字符串,前端无感。
|
|
34693
|
-
appPublished: appPublishedData ? safeEscapeDeep(appPublishedData) : null,
|
|
34644
|
+
appPublished: appPublishedData ?? null,
|
|
34694
34645
|
basename
|
|
34695
34646
|
};
|
|
34696
34647
|
res.locals = {
|
|
@@ -36425,6 +36376,22 @@ var PlatformModule = class _PlatformModule {
|
|
|
36425
36376
|
}, "useFactory")
|
|
36426
36377
|
})
|
|
36427
36378
|
],
|
|
36379
|
+
NestjsCacheModule.forRootAsync({
|
|
36380
|
+
inject: [
|
|
36381
|
+
AppLogger2
|
|
36382
|
+
],
|
|
36383
|
+
useFactory: /* @__PURE__ */ __name((...args) => {
|
|
36384
|
+
const appLogger = args[0];
|
|
36385
|
+
const connectionString = process.env.MIAODA_CACHE_URL ?? "";
|
|
36386
|
+
if (!connectionString) {
|
|
36387
|
+
appLogger.warn("MIAODA_CACHE_URL is empty, cache-service will be effectively disabled until it is set.", "PlatformModule");
|
|
36388
|
+
}
|
|
36389
|
+
return {
|
|
36390
|
+
connectionString,
|
|
36391
|
+
connectionTokenFilePath: "/var/run/secrets/zti/credential"
|
|
36392
|
+
};
|
|
36393
|
+
}, "useFactory")
|
|
36394
|
+
}),
|
|
36428
36395
|
AuthNPaasModule.forRoot(),
|
|
36429
36396
|
AuthZPaasModule.forRoot({
|
|
36430
36397
|
...options.authz || {}
|
|
@@ -36642,11 +36609,7 @@ export {
|
|
|
36642
36609
|
UserContextMiddleware,
|
|
36643
36610
|
ViewContextMiddleware,
|
|
36644
36611
|
configureApp,
|
|
36645
|
-
createLegacyPathRedirectMiddleware
|
|
36646
|
-
safeEscape,
|
|
36647
|
-
safeEscapeDeep,
|
|
36648
|
-
safeStringParse,
|
|
36649
|
-
safeStringify
|
|
36612
|
+
createLegacyPathRedirectMiddleware
|
|
36650
36613
|
};
|
|
36651
36614
|
/*! Bundled license information:
|
|
36652
36615
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lark-apaas/fullstack-nestjs-core",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.57-alpha.20260717073205",
|
|
4
4
|
"description": "FullStack Nestjs Core",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -39,10 +39,11 @@
|
|
|
39
39
|
"prepublishOnly": "npm run build"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
+
"@lark-apaas/cache-service": "0.1.1-alpha.20260717073203",
|
|
42
43
|
"@lark-apaas/file-service": "^0.1.2",
|
|
43
44
|
"@lark-apaas/http-client": "^0.1.7",
|
|
44
|
-
"@lark-apaas/nestjs-authnpaas": "^1.0.
|
|
45
|
-
"@lark-apaas/nestjs-authzpaas": "^0.1.
|
|
45
|
+
"@lark-apaas/nestjs-authnpaas": "^1.0.4",
|
|
46
|
+
"@lark-apaas/nestjs-authzpaas": "^0.1.9",
|
|
46
47
|
"@lark-apaas/nestjs-capability": "^0.1.14",
|
|
47
48
|
"@lark-apaas/nestjs-common": "^0.1.9",
|
|
48
49
|
"@lark-apaas/nestjs-datapaas": "^1.0.21",
|