@lark-apaas/nestjs-capability 0.1.5 → 0.1.7
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/README.md +2 -0
- package/dist/index.cjs +262 -122
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +65 -2
- package/dist/index.d.ts +65 -2
- package/dist/index.js +236 -97
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -101,6 +101,7 @@ const result = await this.capabilityService
|
|
|
101
101
|
userId: 'custom-user-id',
|
|
102
102
|
tenantId: 'custom-tenant-id',
|
|
103
103
|
appId: 'custom-app-id',
|
|
104
|
+
isSystemAccount: false,
|
|
104
105
|
},
|
|
105
106
|
});
|
|
106
107
|
|
|
@@ -426,6 +427,7 @@ interface PluginActionContext {
|
|
|
426
427
|
userId: string; // 用户 ID
|
|
427
428
|
tenantId: string; // 租户 ID
|
|
428
429
|
appId: string; // 应用 ID
|
|
430
|
+
isSystemAccount: boolean; // 是否为系统账号
|
|
429
431
|
};
|
|
430
432
|
isDebug: boolean; // 是否为调试模式
|
|
431
433
|
}
|