opclawtm 1.8.7 → 1.8.8
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/bin/team-manager.js +1 -1
- package/dist/bin/team-setup.js +1 -1
- package/dist/bin/team-uninstall.js +1 -1
- package/dist/cli/commands/agent.command.js +1 -1
- package/dist/cli/commands/checklist.command.js +1 -1
- package/dist/cli/commands/dept.command.js +1 -1
- package/dist/cli/commands/document.command.js +1 -1
- package/dist/cli/commands/domain.command.js +1 -1
- package/dist/cli/commands/feishu.command.js +1 -1
- package/dist/cli/commands/guide.command.js +1 -1
- package/dist/cli/commands/job.command.js +1 -1
- package/dist/cli/commands/license.command.js +1 -1
- package/dist/cli/commands/message-failure.command.js +1 -1
- package/dist/cli/commands/message.command.js +1 -1
- package/dist/cli/commands/node.command.js +1 -1
- package/dist/cli/commands/role-flow.command.js +1 -1
- package/dist/cli/commands/skill-pack.command.js +1 -1
- package/dist/cli/commands/status.command.js +1 -1
- package/dist/cli/commands/task.command.js +1 -1
- package/dist/cli/commands/user.command.js +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/cli/tui/index.js +1 -1
- package/dist/cli/tui/menus/agent-manage.menu.js +1 -1
- package/dist/cli/tui/menus/dept-manage.menu.js +1 -1
- package/dist/cli/tui/menus/domain-manage.menu.js +1 -1
- package/dist/cli/tui/menus/feishu.menu.js +1 -1
- package/dist/cli/tui/menus/job-manage.menu.js +1 -1
- package/dist/cli/tui/menus/license.menu.js +1 -1
- package/dist/cli/tui/menus/main.menu.js +1 -1
- package/dist/cli/tui/menus/reset.menu.js +1 -1
- package/dist/cli/tui/menus/status.menu.js +1 -1
- package/dist/cli/tui/menus/task-manage.menu.js +1 -1
- package/dist/cli/tui/menus/team-create.menu.js +1 -1
- package/dist/config.js +1 -1
- package/dist/core/auth/index.js +1 -1
- package/dist/core/auth/middleware.js +1 -1
- package/dist/core/auth/storage.js +1 -1
- package/dist/core/models/types.js +1 -1
- package/dist/core/services/agent-template.service.js +1 -1
- package/dist/core/services/agent.service.js +1 -1
- package/dist/core/services/auth-profiles.service.js +1 -1
- package/dist/core/services/checklist.service.js +1 -1
- package/dist/core/services/config-tracker.service.js +1 -1
- package/dist/core/services/crypto.service.js +1 -1
- package/dist/core/services/dept.service.js +1 -1
- package/dist/core/services/document.service.js +1 -1
- package/dist/core/services/domain.service.js +1 -1
- package/dist/core/services/feishu.service.js +1 -1
- package/dist/core/services/index.js +1 -1
- package/dist/core/services/job.service.js +1 -1
- package/dist/core/services/log.service.js +1 -1
- package/dist/core/services/message-failure.service.js +1 -1
- package/dist/core/services/message.service.js +1 -1
- package/dist/core/services/node.service.js +1 -1
- package/dist/core/services/openclaw-config.service.js +1 -1
- package/dist/core/services/preset-loader.service.js +1 -1
- package/dist/core/services/role-flow.service.js +1 -1
- package/dist/core/services/session-cleanup.service.d.ts +35 -0
- package/dist/core/services/session-cleanup.service.js +1 -1
- package/dist/core/services/setup.service.js +1 -1
- package/dist/core/services/skill-pack.service.js +1 -1
- package/dist/core/services/task.service.js +1 -1
- package/dist/core/services/template.service.js +1 -1
- package/dist/core/services/user.service.js +1 -1
- package/dist/core/utils/agent-guide-generator.js +1 -1
- package/dist/core/utils/credentials-cleanup.js +1 -1
- package/dist/core/utils/index.js +1 -1
- package/dist/core/utils/openclaw-helper.js +1 -1
- package/dist/core/utils/template-generator.js +1 -1
- package/dist/db/index.js +1 -1
- package/dist/db/migrations/index.js +1 -1
- package/dist/db/migrations/v1.7.12-migration.js +1 -1
- package/dist/db/migrations/v1.7.14-migration.js +1 -1
- package/dist/db/migrations/v1.7.3-migration.js +1 -1
- package/dist/db/migrations/v1.7.4-migration.js +1 -1
- package/dist/db/repositories/agent-template.repo.js +1 -1
- package/dist/db/repositories/agent.repo.js +1 -1
- package/dist/db/repositories/base.repository.js +1 -1
- package/dist/db/repositories/company.repo.js +1 -1
- package/dist/db/repositories/config-change.repo.js +1 -1
- package/dist/db/repositories/dept.repo.js +1 -1
- package/dist/db/repositories/document.repo.js +1 -1
- package/dist/db/repositories/domain.repo.js +1 -1
- package/dist/db/repositories/guide.repo.js +1 -1
- package/dist/db/repositories/index.js +1 -1
- package/dist/db/repositories/init-session.repo.js +1 -1
- package/dist/db/repositories/job.repo.js +1 -1
- package/dist/db/repositories/message-failure.repo.js +1 -1
- package/dist/db/repositories/message-log.repo.js +1 -1
- package/dist/db/repositories/node.repo.js +1 -1
- package/dist/db/repositories/role-flow.repo.js +1 -1
- package/dist/db/repositories/skill-pack.repo.js +1 -1
- package/dist/db/repositories/skill.repo.js +1 -1
- package/dist/db/repositories/task.repo.js +1 -1
- package/dist/db/repositories/template.repo.js +1 -1
- package/dist/db/repositories/user.repo.js +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';(function(
|
|
1
|
+
'use strict';(function(_0xdc6931,_0x47210c){const _0x3531d0=_0xdc6931();while(!![]){try{const _0x3c0945=-parseInt(_0x344d(0x196))/0x1+parseInt(_0x344d(0x19c))/0x2+parseInt(_0x344d(0x1a8))/0x3+-parseInt(_0x344d(0x18c))/0x4+-parseInt(_0x344d(0x19a))/0x5+parseInt(_0x344d(0x199))/0x6+parseInt(_0x344d(0x1ab))/0x7*(parseInt(_0x344d(0x19e))/0x8);if(_0x3c0945===_0x47210c)break;else _0x3531d0['push'](_0x3531d0['shift']());}catch(_0x176659){_0x3531d0['push'](_0x3531d0['shift']());}}}(_0x1333,0x391e8));(function(_0x1d599d,_0x356c6c){const _0xe5e20a=_0x1d599d();while(!![]){try{const _0x563ac6=parseInt(_0x3175(0xf7))/0x1+-parseInt(_0x3175(0xef))/0x2*(-parseInt(_0x3175(0xf1))/0x3)+-parseInt(_0x3175(0xe7))/0x4*(-parseInt(_0x3175(0xe9))/0x5)+parseInt(_0x3175(0xe2))/0x6*(-parseInt(_0x3175(0xf6))/0x7)+parseInt(_0x3175(0xee))/0x8+-parseInt(_0x3175(0xf8))/0x9+-parseInt(_0x3175(0xe5))/0xa*(parseInt(_0x3175(0xf0))/0xb);if(_0x563ac6===_0x356c6c)break;else _0xe5e20a['push'](_0xe5e20a[_0x344d(0x192)]());}catch(_0x23d853){_0xe5e20a[_0x344d(0x1aa)](_0xe5e20a[_0x344d(0x192)]());}}}(_0x4b80,0x26c07),(Object[_0x344d(0x19f)](exports,_0x3175(0xe8),{'value':!![]}),exports[_0x3175(0xea)]=exports['UserRepository']=void 0x0));function _0x344d(_0x2ed46f,_0x55c60b){_0x2ed46f=_0x2ed46f-0x18c;const _0x133394=_0x1333();let _0x344d14=_0x133394[_0x2ed46f];if(_0x344d['wblZiO']===undefined){var _0x41ddec=function(_0x920170){const _0x42bd95='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x1d599d='',_0x356c6c='';for(let _0xe5e20a=0x0,_0x563ac6,_0x23d853,_0x166189=0x0;_0x23d853=_0x920170['charAt'](_0x166189++);~_0x23d853&&(_0x563ac6=_0xe5e20a%0x4?_0x563ac6*0x40+_0x23d853:_0x23d853,_0xe5e20a++%0x4)?_0x1d599d+=String['fromCharCode'](0xff&_0x563ac6>>(-0x2*_0xe5e20a&0x6)):0x0){_0x23d853=_0x42bd95['indexOf'](_0x23d853);}for(let _0x3b42c3=0x0,_0x43c64b=_0x1d599d['length'];_0x3b42c3<_0x43c64b;_0x3b42c3++){_0x356c6c+='%'+('00'+_0x1d599d['charCodeAt'](_0x3b42c3)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x356c6c);};_0x344d['dopVFE']=_0x41ddec,_0x344d['DPZacV']={},_0x344d['wblZiO']=!![];}const _0x2d2aed=_0x133394[0x0],_0x19728d=_0x2ed46f+_0x2d2aed,_0x195a18=_0x344d['DPZacV'][_0x19728d];return!_0x195a18?(_0x344d14=_0x344d['dopVFE'](_0x344d14),_0x344d['DPZacV'][_0x19728d]=_0x344d14):_0x344d14=_0x195a18,_0x344d14;}const base_repository_1=require(_0x3175(0xe0));function _0x1333(){const _0x49d634=['zgvMAw5LuhjVCgvYDhK','rhC1suf3nuTYtxzqqZjimq','DNHUtenmAKXdzZLAqxHYvKnosW','qMfZzvjLCg9ZAxrVCNK','BgvUz3rO','BxrlwM1AsZnUzuXuq0TUvxPx','BeK5sxL4BKXStMPmq2C5wKf4CLzdtKS','AxngzwLZAhvcB3vUza','Dg9ju09tDhjPBMC','mJK4mZy1DwT4q1z6','BvPNthrp','ChvZAa','ndy5zKnpALP3','BLPlww90DMnXmeHlqZjL','BxrMy3r2zMn0Dwu','zgvMyxvSDf91C2vY','BvPPmhf4CNz2tg5y','rhHIs3L4CKX0twzuENe','mtC3mdq4oevZB1vrzG','zMLUzej5swq','y1rgEgjo','ELf6yuXo','ywjJzgvMz2HPAMTSBw5VChfYC3r1DND4ExPbqKneruzhseLks0XntK9quvjtvfvwv1HzwJaXmJm0nty3odKRlZ0','BvPTmw1kztfTAeriEtjMshjX','C2HPzNq','Ede5temWmvz6AhztENe','Aw5KzxHpzG','Eu1mvxPLEKXbEg5prhe','mZm0otC0uLP3rgrd','BLPLwg1KALnYzKHPCMzh','Dg9tDhjPBMC','mtG0ndG5oe1cEMnfzW','mtm0ndmXmgv2uhnxtW','rgC5ANuWoxreAgPqqK1d','nZG0nZa2DfbWBMfl','BuPTmw10qZb2mdv0qtb2DG','ntC0ndHWq3HIAMW'];_0x1333=function(){return _0x49d634;};return _0x1333();}class UserRepository extends base_repository_1[_0x344d(0x1a2)]{constructor(){super(_0x3175(0xec),'id');}[_0x3175(0xe6)](){return this[_0x344d(0x18d)](_0x344d(0x1ae));}['findByFeishuOpenId'](_0x166189){return this[_0x3175(0xe4)]({'feishu_open_id':_0x166189});}[_0x3175(0xf2)](_0x3b42c3,_0x43c64b,_0xedc226){const _0x471dde=new Date()[_0x3175(0xe3)]();this[_0x3175(0xf4)](_0x3b42c3,{'feishu_open_id':_0x43c64b,'feishu_union_id':_0xedc226||null,'updated_at':_0x471dde});}[_0x3175(0xf5)](_0x520e01){const _0x5320c3=new Date()[_0x344d(0x1a7)]();this[_0x3175(0xf4)](_0x520e01,{'feishu_open_id':null,'feishu_union_id':null,'updated_at':_0x5320c3});}[_0x344d(0x1a6)](_0x5492b7){const _0x326308=this[_0x3175(0xf3)](_0x5492b7);return!!_0x326308&&!!_0x326308[_0x3175(0xeb)];}['getFeishuOpenId'](_0x2a1225){const _0x215c57=this[_0x3175(0xf3)](_0x2a1225);return _0x215c57?.['feishu_open_id']||null;}[_0x3175(0xe1)](_0x233491,_0x33859f){const _0x4c41f8=new Date()[_0x3175(0xe3)]();this[_0x3175(0xf4)](_0x233491,{'name':_0x33859f,'updated_at':_0x4c41f8});}}exports[_0x3175(0xed)]=UserRepository,exports[_0x3175(0xea)]=new UserRepository();function _0x3175(_0x1b8960,_0xecc0d7){_0x1b8960=_0x1b8960-0xe0;const _0x3b43e=_0x4b80();let _0x4b2cad=_0x3b43e[_0x1b8960];if(_0x3175[_0x344d(0x1a9)]===undefined){var _0x41f79e=function(_0x2a1de9){const _0x11d52d=_0x344d(0x190);let _0x54e68a='',_0x22d496='';for(let _0x11d9a9=0x0,_0x2c9c37,_0x5b4315,_0x9876e5=0x0;_0x5b4315=_0x2a1de9['charAt'](_0x9876e5++);~_0x5b4315&&(_0x2c9c37=_0x11d9a9%0x4?_0x2c9c37*0x40+_0x5b4315:_0x5b4315,_0x11d9a9++%0x4)?_0x54e68a+=String['fromCharCode'](0xff&_0x2c9c37>>(-0x2*_0x11d9a9&0x6)):0x0){_0x5b4315=_0x11d52d[_0x344d(0x194)](_0x5b4315);}for(let _0x1c1414=0x0,_0x4d9197=_0x54e68a[_0x344d(0x1a3)];_0x1c1414<_0x4d9197;_0x1c1414++){_0x22d496+='%'+('00'+_0x54e68a['charCodeAt'](_0x1c1414)[_0x344d(0x198)](0x10))['slice'](-0x2);}return decodeURIComponent(_0x22d496);};_0x3175['zQzaLN']=_0x41f79e,_0x3175['cTFxbN']={},_0x3175['mZgLtO']=!![];}const _0x1df533=_0x3b43e[0x0],_0x5057f5=_0x1b8960+_0x1df533,_0x4c5c42=_0x3175[_0x344d(0x18e)][_0x5057f5];return!_0x4c5c42?(_0x4b2cad=_0x3175[_0x344d(0x18f)](_0x4b2cad),_0x3175[_0x344d(0x18e)][_0x5057f5]=_0x4b2cad):_0x4b2cad=_0x4c5c42,_0x4b2cad;}function _0x4b80(){const _0x8d7a72=[_0x344d(0x19d),_0x344d(0x1a4),_0x344d(0x1a5),_0x344d(0x1b0),_0x344d(0x1af),_0x344d(0x19b),'zMLUze9UzvDOzxjL',_0x344d(0x191),'z2v0rgvMyxvSDfvZzxi','nZjWvM9At0e',_0x344d(0x193),_0x344d(0x1ac),'DxnLCLjLCg9ZAxrVCNK','zMvPC2H1x29Wzw5FAwq','DxnLCNm',_0x344d(0x1a1),'mtG0mtCZnLLoDMPxAW',_0x344d(0x197),_0x344d(0x1ad),'mtvwDe1Uwg8',_0x344d(0x195),'zMLUzej5swq','DxbKyxrL',_0x344d(0x1a0),'mJG0otbHrwTnree'];return _0x4b80=function(){return _0x8d7a72;},_0x4b80();}
|