opclawtm 2.0.6 → 2.0.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.d.ts +17 -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/sync.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.d.ts +16 -0
- package/dist/core/models/types.js +1 -1
- package/dist/core/preset-data-hash.enc +1 -1
- package/dist/core/preset-data.enc +1 -1
- package/dist/core/preset-version.txt +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.d.ts +15 -0
- 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.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/migrations/v1.9.13-migration.js +1 -1
- package/dist/db/migrations/v1.9.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.d.ts +4 -0
- 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
- package/resources/preset-data-hash.enc +1 -1
- package/resources/preset-data.enc +1 -1
- package/resources/preset-version.txt +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';(function(
|
|
1
|
+
'use strict';(function(_0x4f2600,_0x101a69){var _0x2f1dbb=_0x4f2600();while(!![]){try{var _0x3f121a=parseInt(_0x10f7(0xcc))/0x1*(parseInt(_0x10f7(0xbd))/0x2)+parseInt(_0x10f7(0xe3))/0x3*(parseInt(_0x10f7(0xe2))/0x4)+-parseInt(_0x10f7(0xe0))/0x5*(-parseInt(_0x10f7(0xd1))/0x6)+parseInt(_0x10f7(0xc7))/0x7*(-parseInt(_0x10f7(0xbb))/0x8)+parseInt(_0x10f7(0xe7))/0x9+parseInt(_0x10f7(0xc6))/0xa*(parseInt(_0x10f7(0xd7))/0xb)+-parseInt(_0x10f7(0xc2))/0xc*(parseInt(_0x10f7(0xc9))/0xd);if(_0x3f121a===_0x101a69)break;else _0x2f1dbb['push'](_0x2f1dbb['shift']());}catch(_0x41b2b8){_0x2f1dbb['push'](_0x2f1dbb['shift']());}}}(_0x367e,0x4c264));function _0x367e(){var _0x1a4446=['ChvZAa','BxrTmM1ArZvUtxPQqMHYqxjx','y2HHCKf0','mZe3mte1oxHSEwvKAa','y2HHCKnVzgvbDa','rgC5DerOALbctum','nde3odm5mKLOuNvtBW','C2HPzNq','mLLjyLLXDW','qJjYmxDNotbcDKqWEJfIsurlnvfcCq','BuP1mw9KztjUthPYC2viv3fh','Dg9tDhjPBMC','BxrTwM10CK5XDZL1CZbL','mJi2mJmXmMXwwfn2rW','BKPdmNL3rdrcmJLx','qNHYmw5Nmuf5DKHvDe5PwKv0ALfdDwPy','qKPPweqZDK1cteWXExe','nJq3nZiWwuL0Ewfq','n2vNEvvKwa','qK5YsuvOs1HZzLaWrhrh','mtn3yMD3Avi','BtfmwNyZBNzdyq','ExDQsNPNDK16mKHqqu1uu0j3nvzdAgzzqZnYmurordrfEfbICuTUzxj1EMHZzuXRCZbyBNrloxf1DMP0DMz2D3yXshP3sMfyBuPTmg50EtnVzeTsBfOW','nZK4mxvnCwfryq','Bxrlv3znnvvXs0Ht','re56zhz3CNC','qNHYthD3ouTXwMPLBwzYDhfAyMv5rW','BxrTng10Atj1AeXwCMvQvG','mtjUCePNAfC','De5eCNv3CKO','BvPYvhKWshvdDKS','wvr1CuLN','B3r5mg50BLL3s1HvENzd','C2XPy2u','mtfPuuLtz3C','uhHrrMH2','Ede5temWmvz6AhztENe','q2H2wKfH','twXHtw1M','BxrHmM50qZvTsMj5rwDMCKnlrW','EK5QvKj1BK95EgPKqJjYta','qxC1s3P4shb6rW','BgvUz3rO','otCXnte1sfrtENzH','D3vQzNPose0','odm2mdKYCLfwrhH1','m2nAEvrYzW'];_0x367e=function(){return _0x1a4446;};return _0x367e();}(function(_0x357de6,_0x423572){var _0x283d56=_0x357de6();while(!![]){try{var _0x493da5=-parseInt(_0x2265(0x1cd))/0x1*(parseInt(_0x2265(0x1c2))/0x2)+-parseInt(_0x2265(0x1b6))/0x3*(parseInt(_0x2265(0x1ca))/0x4)+-parseInt(_0x2265(0x1c5))/0x5+-parseInt(_0x2265(0x1d3))/0x6*(parseInt(_0x2265(0x1d0))/0x7)+-parseInt(_0x2265(0x1c8))/0x8+parseInt(_0x2265(0x1bc))/0x9*(-parseInt(_0x2265(0x1c9))/0xa)+parseInt(_0x2265(0x1c4))/0xb*(parseInt(_0x2265(0x1d1))/0xc);if(_0x493da5===_0x423572)break;else _0x283d56[_0x10f7(0xe4)](_0x283d56['shift']());}catch(_0x50c4bf){_0x283d56[_0x10f7(0xe4)](_0x283d56[_0x10f7(0xbc)]());}}}(_0x174f,0x1c2e9),function(_0x259d1c,_0x2a8e38){var _0x1f476c=_0x259d1c();while(!![]){try{var _0x4bc807=parseInt(_0x520e(0x16c))/0x1*(-parseInt(_0x520e(0x163))/0x2)+-parseInt(_0x520e(0x162))/0x3*(-parseInt(_0x520e(0x167))/0x4)+parseInt(_0x520e(0x165))/0x5+-parseInt(_0x520e(0x16b))/0x6+parseInt(_0x520e(0x166))/0x7*(-parseInt(_0x520e(0x164))/0x8)+-parseInt(_0x520e(0x168))/0x9+parseInt(_0x520e(0x169))/0xa;if(_0x4bc807===_0x2a8e38)break;else _0x1f476c[_0x2265(0x1be)](_0x1f476c[_0x2265(0x1b7)]());}catch(_0x4acbfb){_0x1f476c['push'](_0x1f476c[_0x2265(0x1b7)]());}}}(_0xb949,0x53577));function _0x2265(_0x14416c,_0x45ddb8){_0x14416c=_0x14416c-0x1b6;var _0x3367ca=_0x174f(),_0x5c768a=_0x3367ca[_0x14416c];if(_0x2265[_0x10f7(0xd8)]===undefined){var _0xd58068=function(_0x1f89b4){var _0x197f4='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=',_0x55eed4='',_0x1e36b0='';for(var _0x13f8fe=0x0,_0x13620a,_0x120526,_0x546435=0x0;_0x120526=_0x1f89b4[_0x10f7(0xe6)](_0x546435++);~_0x120526&&(_0x13620a=_0x13f8fe%0x4?_0x13620a*0x40+_0x120526:_0x120526,_0x13f8fe++%0x4)?_0x55eed4+=String['fromCharCode'](0xff&_0x13620a>>(-0x2*_0x13f8fe&0x6)):0x0){_0x120526=_0x197f4['indexOf'](_0x120526);}for(var _0x308c5a=0x0,_0x1b639e=_0x55eed4[_0x10f7(0xdf)];_0x308c5a<_0x1b639e;_0x308c5a++){_0x1e36b0+='%'+('00'+_0x55eed4[_0x10f7(0xe8)](_0x308c5a)[_0x10f7(0xc0)](0x10))[_0x10f7(0xd6)](-0x2);}return decodeURIComponent(_0x1e36b0);};_0x2265[_0x10f7(0xdb)]=_0xd58068,_0x2265[_0x10f7(0xd4)]={},_0x2265[_0x10f7(0xd8)]=!![];}var _0x2ab3b1=_0x3367ca[0x0],_0x3ea59e=_0x14416c+_0x2ab3b1,_0x4be8b1=_0x2265[_0x10f7(0xd4)][_0x3ea59e];return!_0x4be8b1?(_0x5c768a=_0x2265[_0x10f7(0xdb)](_0x5c768a),_0x2265['YTuqIg'][_0x3ea59e]=_0x5c768a):_0x5c768a=_0x4be8b1,_0x5c768a;}function _0x520e(_0x4321b1,_0x11942d){_0x4321b1=_0x4321b1-0x162;var _0x4f602e=_0xb949(),_0x4e85f4=_0x4f602e[_0x4321b1];if(_0x520e[_0x2265(0x1ce)]===undefined){var _0x4690da=function(_0x175609){var _0x17b407=_0x2265(0x1c0),_0x43a526='',_0x4be5c2='';for(var _0x300f5c=0x0,_0x30718c,_0x402854,_0x3cdb3c=0x0;_0x402854=_0x175609[_0x2265(0x1b9)](_0x3cdb3c++);~_0x402854&&(_0x30718c=_0x300f5c%0x4?_0x30718c*0x40+_0x402854:_0x402854,_0x300f5c++%0x4)?_0x43a526+=String[_0x2265(0x1c3)](0xff&_0x30718c>>(-0x2*_0x300f5c&0x6)):0x0){_0x402854=_0x17b407[_0x2265(0x1cc)](_0x402854);}for(var _0x395a6e=0x0,_0x1911bb=_0x43a526['length'];_0x395a6e<_0x1911bb;_0x395a6e++){_0x4be5c2+='%'+('00'+_0x43a526[_0x2265(0x1bd)](_0x395a6e)[_0x2265(0x1b8)](0x10))[_0x10f7(0xd6)](-0x2);}return decodeURIComponent(_0x4be5c2);};_0x520e[_0x2265(0x1bf)]=_0x4690da,_0x520e[_0x2265(0x1c1)]={},_0x520e['NwQQdc']=!![];}var _0x5b48=_0x4f602e[0x0],_0x324846=_0x4321b1+_0x5b48,_0x120382=_0x520e[_0x2265(0x1c1)][_0x324846];return!_0x120382?(_0x4e85f4=_0x520e[_0x2265(0x1bf)](_0x4e85f4),_0x520e[_0x2265(0x1c1)][_0x324846]=_0x4e85f4):_0x4e85f4=_0x120382,_0x4e85f4;}function _0x10f7(_0x4d6542,_0x2f6d38){_0x4d6542=_0x4d6542-0xba;var _0x367eee=_0x367e();var _0x10f7fc=_0x367eee[_0x4d6542];if(_0x10f7['CukriK']===undefined){var _0x5509ef=function(_0xe6ecea){var _0x9ae336='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var _0x357de6='',_0x423572='';for(var _0x283d56=0x0,_0x493da5,_0x50c4bf,_0x259d1c=0x0;_0x50c4bf=_0xe6ecea['charAt'](_0x259d1c++);~_0x50c4bf&&(_0x493da5=_0x283d56%0x4?_0x493da5*0x40+_0x50c4bf:_0x50c4bf,_0x283d56++%0x4)?_0x357de6+=String['fromCharCode'](0xff&_0x493da5>>(-0x2*_0x283d56&0x6)):0x0){_0x50c4bf=_0x9ae336['indexOf'](_0x50c4bf);}for(var _0x2a8e38=0x0,_0x1f476c=_0x357de6['length'];_0x2a8e38<_0x1f476c;_0x2a8e38++){_0x423572+='%'+('00'+_0x357de6['charCodeAt'](_0x2a8e38)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x423572);};_0x10f7['yBTjRh']=_0x5509ef,_0x10f7['rqycfP']={},_0x10f7['CukriK']=!![];}var _0x5ddedd=_0x367eee[0x0],_0x10adc6=_0x4d6542+_0x5ddedd,_0x18b043=_0x10f7['rqycfP'][_0x10adc6];return!_0x18b043?(_0x10f7fc=_0x10f7['yBTjRh'](_0x10f7fc),_0x10f7['rqycfP'][_0x10adc6]=_0x10f7fc):_0x10f7fc=_0x18b043,_0x10f7fc;}function _0xb949(){var _0x33da0c=[_0x2265(0x1cb),_0x10f7(0xdc),_0x2265(0x1d4),_0x10f7(0xbf),'mteXodfPvNbhthu',_0x10f7(0xca),_0x2265(0x1bb),_0x2265(0x1d2),_0x2265(0x1c6),_0x2265(0x1cf),_0x2265(0x1c7)];return _0xb949=function(){return _0x33da0c;},_0xb949();}function _0x174f(){var _0x3da26b=['EMD2tuf3nuX1AgPwq2D2wurOsW','mta3n3jpA0HPCa','C2HPzNq',_0x10f7(0xba),'y2HHCKf0',_0x10f7(0xd9),_0x10f7(0xc8),_0x10f7(0xd5),'y2HHCKnVzgvbDa',_0x10f7(0xda),_0x10f7(0xe1),_0x10f7(0xcb),_0x10f7(0xce),_0x10f7(0xd3),_0x10f7(0xdd),'mte4mZGYqvHjz2TU','otmWmJaWwK9sEvfr',_0x10f7(0xbe),_0x10f7(0xcf),_0x10f7(0xe5),_0x10f7(0xcd),_0x10f7(0xc3),'BxrdwM5KyvPcD0HMExD2za',_0x10f7(0xde),_0x10f7(0xc1),_0x10f7(0xd2),_0x10f7(0xc5),'mJHtB1bewM4','mte3nMLPA1zUta',_0x10f7(0xc4),_0x10f7(0xd0)];return _0x174f=function(){return _0x3da26b;},_0x174f();}Object[_0x520e(0x16a)](exports,_0x2265(0x1ba),{'value':!![]});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
YFR/7X5jTeulAs1/L2MjEuyw23MTtfxbSXNn3VHtvFwCgQZVEo2IIz5wk9kHFDyl1fNIIcUMfKUqhBJarIUbxkTQ+j1R1vD6RvhS2BfDzy9mt49DAMrBaMoyKkOJzQH/0uxiaAPI87YPiWWQHrwNTtDAuiBaEldmQkraq6mbKn0=
|