opclawtm 2.0.7 → 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.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.js +1 -1
- package/dist/core/preset-data-hash.enc +1 -1
- package/dist/core/preset-data.enc +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.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.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
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';(function(
|
|
1
|
+
'use strict';(function(_0x3a2c9f,_0x17d286){const _0x4f462f=_0x3a2c9f();while(!![]){try{const _0x66fc1c=parseInt(_0x2aa6(0x104))/0x1*(parseInt(_0x2aa6(0xcd))/0x2)+-parseInt(_0x2aa6(0xd2))/0x3*(-parseInt(_0x2aa6(0x103))/0x4)+parseInt(_0x2aa6(0xdc))/0x5*(parseInt(_0x2aa6(0xf8))/0x6)+parseInt(_0x2aa6(0xfe))/0x7+-parseInt(_0x2aa6(0xf0))/0x8+parseInt(_0x2aa6(0xe9))/0x9+parseInt(_0x2aa6(0xee))/0xa*(-parseInt(_0x2aa6(0xfd))/0xb);if(_0x66fc1c===_0x17d286)break;else _0x4f462f['push'](_0x4f462f['shift']());}catch(_0x4d456c){_0x4f462f['push'](_0x4f462f['shift']());}}}(_0x2477,0xdfbe4));function _0x2477(){const _0x551a87=['ChvZAa','BxrPww90EvLfzZvNEMDYtq','y2HHCKnVzgvbDa','mJK5mJrst2H6qMG','mNbbyLzQAa','BNrHm29KrZvUDMzzqNDiBNjH','BxrHmg9KDvPUzMjLqwHUzenh','EtjisenlBLz6z3zIrge','qKPUsxyZCJnYAeWZq3e','Aw5KzxHpzG','BNr1mM5kEMLfAhz6EK1P','ruPQmM1OAK5esZe1rwH6DhjNEJj3tLa0qxe','qNHYwhyYmwTYwMjvEJbyuNjOsgvcmgzi','EK1mvxPLAJvZD3e','qNHYmw5NmuT6DKXuEK01AKqWvg1dtMPi','mta0ndKYnKPhuvfmqG','rhHIs3L4CKW','EK5QvKj1BK95EgPKqJjYta','rhHIs3L4CKX0twzuENe','ruPQmM1OAM5etgjKBuThwerKBKL0zwPSDgvt','nJK5y2XZAxPj','q3DevxflmuK','qMvlnxn4tdrcs1HtDe1qBxeYqZv3s2y0q0X6zhrluW','tLzjv2Xs','BgvUz3rO','rhC1suf3nuTYtxzqqZjimq','ywjJzgvMz2HPAMTSBw5VChfYC3r1DND4ExPbqKneruzhseLks0XntK9quvjtvfvwv1HzwJaXmJm0nty3odKRlZ0','q2H2wKfH','C2HPzNq','qxC1s3P4shb6rW','odu5otq0mfPIBxLlzW','rgzivKn3BNC','vLnhzgrf','qNzqBhD3nuTdDKWYCZn6BKnAALL3rW','qJj2ww54zJrbs0GZq3e','rxuXBxz4ueXfs1HIrwC1ChjOzq','BvPPnhP3ovzds25Q','CMHivxrLBM9cCq','qNvqzhD3nwT5DgjIBwD6AKrkAK1ZrW','q3uXtxDoudjbs1HKELPmqxf4sfL2s25VC1C','qZjiuhPoCq','EMD2txL4DLnezJKXqZj2wq','ru1emNr1zJnUDvGXqwDqD3eYrdj3DxjpC1C','ntaXnZy3mwThuLL4qG','BuPlmw90EtvUD3jPqZi5vxfx','C2XPy2u','Dg9tDhjPBMC','BxriuKiWCLv5mem','ntbvzMrKAxi','DNHUtenmAKXdzZLAqxHYvKnosW','nZaYmJm2mefXA0zwsW','CMDdnufoDvDVEhjLqwDqCxflmwq','rgC5DerOALbctum','qZjyuhKYDq','BuPdng5ACtbUDvbwEMzqwKjx','qK1YAg13mwT5Dg5uqwH6nKvnqZfUs3zy','EK1mvxPLAJvYtxzqqZjimxqZyKXcs0Xl','EK12uemYsdf4mJLxENC1rKf3Cq','nM5rqMHuyW','BtjeBKnnAK5brW','rwrLnxrLBvDTDNO2qwH6Devozq','BxrXm21AztbUz1b0q01UA3DH','CxHivxOZudn0zLbIqwH6sNfkBJj2Efbi','odG4mJa3muffCxzJsa','ntm2mZaYmNbzBLPdsW','zNjVBunOyxjdB2rL'];_0x2477=function(){return _0x551a87;};return _0x2477();}function _0x12a5(_0x3b52ca,_0x32ec49){_0x3b52ca=_0x3b52ca-0x173;const _0x3103e0=_0x4f69();let _0x5ddac3=_0x3103e0[_0x3b52ca];if(_0x12a5[_0x2aa6(0xde)]===undefined){var _0x5edf74=function(_0x29801f){const _0x20bfb2=_0x2aa6(0xd8);let _0x16ba45='',_0x102d73='';for(let _0x497f24=0x0,_0x2ac51f,_0x362d27,_0x502056=0x0;_0x362d27=_0x29801f['charAt'](_0x502056++);~_0x362d27&&(_0x2ac51f=_0x497f24%0x4?_0x2ac51f*0x40+_0x362d27:_0x362d27,_0x497f24++%0x4)?_0x16ba45+=String[_0x2aa6(0xff)](0xff&_0x2ac51f>>(-0x2*_0x497f24&0x6)):0x0){_0x362d27=_0x20bfb2[_0x2aa6(0x109)](_0x362d27);}for(let _0x7e6433=0x0,_0x14e043=_0x16ba45[_0x2aa6(0xd6)];_0x7e6433<_0x14e043;_0x7e6433++){_0x102d73+='%'+('00'+_0x16ba45[_0x2aa6(0x102)](_0x7e6433)[_0x2aa6(0xec)](0x10))[_0x2aa6(0xeb)](-0x2);}return decodeURIComponent(_0x102d73);};_0x12a5['wJyfvB']=_0x5edf74,_0x12a5[_0x2aa6(0xd5)]={},_0x12a5[_0x2aa6(0xde)]=!![];}const _0x3cc2f3=_0x3103e0[0x0],_0x4ffe3e=_0x3b52ca+_0x3cc2f3,_0x52cea3=_0x12a5[_0x2aa6(0xd5)][_0x4ffe3e];return!_0x52cea3?(_0x5ddac3=_0x12a5['wJyfvB'](_0x5ddac3),_0x12a5['NVIWlR'][_0x4ffe3e]=_0x5ddac3):_0x5ddac3=_0x52cea3,_0x5ddac3;}(function(_0x1987b7,_0x2dd675){const _0x3148de=_0x1987b7();while(!![]){try{const _0x26a52a=parseInt(_0x12a5(0x196))/0x1+parseInt(_0x12a5(0x18d))/0x2+parseInt(_0x12a5(0x189))/0x3+-parseInt(_0x12a5(0x181))/0x4+-parseInt(_0x12a5(0x191))/0x5*(-parseInt(_0x12a5(0x177))/0x6)+-parseInt(_0x12a5(0x193))/0x7*(parseInt(_0x12a5(0x17a))/0x8)+-parseInt(_0x12a5(0x18c))/0x9*(parseInt(_0x12a5(0x178))/0xa);if(_0x26a52a===_0x2dd675)break;else _0x3148de[_0x2aa6(0x100)](_0x3148de[_0x2aa6(0xda)]());}catch(_0x1740a4){_0x3148de[_0x2aa6(0x100)](_0x3148de['shift']());}}}(_0x4f69,0xdb701),function(_0x1d9203,_0x2df3a3){const _0x35d851=_0x1d9203();while(!![]){try{const _0x177380=parseInt(_0x4974(0x203))/0x1+parseInt(_0x4974(0x209))/0x2+parseInt(_0x4974(0x20a))/0x3*(-parseInt(_0x4974(0x1f7))/0x4)+parseInt(_0x4974(0x1f5))/0x5+-parseInt(_0x4974(0x1fc))/0x6*(parseInt(_0x4974(0x206))/0x7)+parseInt(_0x4974(0x201))/0x8*(-parseInt(_0x4974(0x1fb))/0x9)+parseInt(_0x4974(0x1f4))/0xa;if(_0x177380===_0x2df3a3)break;else _0x35d851[_0x12a5(0x17c)](_0x35d851[_0x12a5(0x18a)]());}catch(_0x443d44){_0x35d851[_0x12a5(0x17c)](_0x35d851[_0x2aa6(0xda)]());}}}(_0x5268,0x3c9a2));function _0x4974(_0x53778a,_0x17d560){_0x53778a=_0x53778a-0x1f4;const _0x59ce9e=_0x5268();let _0x205981=_0x59ce9e[_0x53778a];if(_0x4974[_0x12a5(0x199)]===undefined){var _0xdc1312=function(_0x54925c){const _0x1182e2=_0x12a5(0x175);let _0xcc7176='',_0x3f963f='';for(let _0xa047bf=0x0,_0x540c3c,_0x30af8d,_0x501b0f=0x0;_0x30af8d=_0x54925c[_0x12a5(0x19d)](_0x501b0f++);~_0x30af8d&&(_0x540c3c=_0xa047bf%0x4?_0x540c3c*0x40+_0x30af8d:_0x30af8d,_0xa047bf++%0x4)?_0xcc7176+=String[_0x12a5(0x190)](0xff&_0x540c3c>>(-0x2*_0xa047bf&0x6)):0x0){_0x30af8d=_0x1182e2[_0x12a5(0x198)](_0x30af8d);}for(let _0x4a3c02=0x0,_0xfb695e=_0xcc7176[_0x2aa6(0xd6)];_0x4a3c02<_0xfb695e;_0x4a3c02++){_0x3f963f+='%'+('00'+_0xcc7176[_0x12a5(0x17d)](_0x4a3c02)[_0x12a5(0x186)](0x10))[_0x12a5(0x188)](-0x2);}return decodeURIComponent(_0x3f963f);};_0x4974[_0x12a5(0x18f)]=_0xdc1312,_0x4974[_0x12a5(0x19b)]={},_0x4974[_0x12a5(0x199)]=!![];}const _0x17d6ff=_0x59ce9e[0x0],_0x4839a7=_0x53778a+_0x17d6ff,_0x188fb1=_0x4974[_0x12a5(0x19b)][_0x4839a7];return!_0x188fb1?(_0x205981=_0x4974[_0x12a5(0x18f)](_0x205981),_0x4974[_0x12a5(0x19b)][_0x4839a7]=_0x205981):_0x205981=_0x188fb1,_0x205981;}function _0x4f69(){const _0x38ccdb=[_0x2aa6(0xf3),_0x2aa6(0x105),_0x2aa6(0xe6),_0x2aa6(0xe5),'ouvTwKz1vG',_0x2aa6(0x106),'rhHUtenmAKXdzZLAqxHYvKnosW',_0x2aa6(0xd3),_0x2aa6(0xcf),_0x2aa6(0xf4),_0x2aa6(0xfc),_0x2aa6(0x101),_0x2aa6(0xe4),_0x2aa6(0xf5),'mtC3mZy0n2Pjt2vusW',_0x2aa6(0xe8),_0x2aa6(0xdb),'BKTUzLDI',_0x2aa6(0xe3),_0x2aa6(0xdd),_0x2aa6(0xe0),'y2HHCKf0',_0x2aa6(0xca),_0x2aa6(0xfa),'ywjJzgvMz2HPAMTSBw5VChfYC3r1DND4ExPbqKneruzhseLks0XntK9quvjtvfvwv1HzwJaXmJm0nty3odKRlZ0',_0x2aa6(0xd4),_0x2aa6(0xed),'mZy3nJaZnZbRwKHLrMu',_0x2aa6(0xcc),_0x2aa6(0xe2),_0x2aa6(0xdf),_0x2aa6(0xd9),_0x2aa6(0x107),_0x2aa6(0xe1),_0x2aa6(0xc9),_0x2aa6(0xd0),_0x2aa6(0xfb),_0x2aa6(0x108),_0x2aa6(0xf1),_0x2aa6(0xd1),_0x2aa6(0xcb),_0x2aa6(0xf2),'zMLUze9UzvDOzxjL'];return _0x4f69=function(){return _0x38ccdb;},_0x4f69();}function _0x2aa6(_0x5363d4,_0x3a190d){_0x5363d4=_0x5363d4-0xc8;const _0x2477cc=_0x2477();let _0x2aa699=_0x2477cc[_0x5363d4];if(_0x2aa6['qNYMLc']===undefined){var _0x36a75d=function(_0xcb557a){const _0x19c553='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x3b52ca='',_0x32ec49='';for(let _0x3103e0=0x0,_0x5ddac3,_0x5edf74,_0x3cc2f3=0x0;_0x5edf74=_0xcb557a['charAt'](_0x3cc2f3++);~_0x5edf74&&(_0x5ddac3=_0x3103e0%0x4?_0x5ddac3*0x40+_0x5edf74:_0x5edf74,_0x3103e0++%0x4)?_0x3b52ca+=String['fromCharCode'](0xff&_0x5ddac3>>(-0x2*_0x3103e0&0x6)):0x0){_0x5edf74=_0x19c553['indexOf'](_0x5edf74);}for(let _0x4ffe3e=0x0,_0x52cea3=_0x3b52ca['length'];_0x4ffe3e<_0x52cea3;_0x4ffe3e++){_0x32ec49+='%'+('00'+_0x3b52ca['charCodeAt'](_0x4ffe3e)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x32ec49);};_0x2aa6['ZehSdW']=_0x36a75d,_0x2aa6['cVtsiF']={},_0x2aa6['qNYMLc']=!![];}const _0x53c48b=_0x2477cc[0x0],_0x34bc3b=_0x5363d4+_0x53c48b,_0x431551=_0x2aa6['cVtsiF'][_0x34bc3b];return!_0x431551?(_0x2aa699=_0x2aa6['ZehSdW'](_0x2aa699),_0x2aa6['cVtsiF'][_0x34bc3b]=_0x2aa699):_0x2aa699=_0x431551,_0x2aa699;}function _0x5268(){const _0x27451f=[_0x12a5(0x197),_0x12a5(0x192),_0x2aa6(0xd7),_0x2aa6(0xe7),_0x2aa6(0xf7),_0x12a5(0x195),_0x12a5(0x179),_0x12a5(0x174),_0x12a5(0x173),_0x12a5(0x19a),_0x12a5(0x18b),_0x2aa6(0xf6),_0x2aa6(0xea),_0x12a5(0x17b),_0x12a5(0x183),_0x12a5(0x17f),_0x2aa6(0xcb),_0x12a5(0x17e),_0x12a5(0x19c),_0x12a5(0x176),_0x2aa6(0xc8),_0x2aa6(0xef),_0x12a5(0x18e),_0x12a5(0x182),_0x12a5(0x184),_0x2aa6(0xce),_0x12a5(0x194),_0x2aa6(0xf9)];return _0x5268=function(){return _0x27451f;},_0x5268();}Object[_0x4974(0x20b)](exports,_0x4974(0x1f6),{'value':!![]}),exports[_0x4974(0x205)]=exports[_0x4974(0x204)]=void 0x0;const base_repository_1=require(_0x4974(0x202));class UserRepository extends base_repository_1[_0x4974(0x1f9)]{constructor(){super(_0x4974(0x1f8),'id');}[_0x4974(0x1fe)](){return this[_0x4974(0x1ff)](_0x4974(0x20e));}[_0x4974(0x1fa)](_0x1e5116){return this[_0x12a5(0x187)]({'feishu_open_id':_0x1e5116});}[_0x4974(0x200)](_0x50ff03,_0x4ef7fb,_0x112a07){const _0x264d97=new Date()[_0x4974(0x1fd)]();this[_0x4974(0x208)](_0x50ff03,{'feishu_open_id':_0x4ef7fb,'feishu_union_id':_0x112a07||null,'updated_at':_0x264d97});}[_0x4974(0x20d)](_0x635cab){const _0x3c164b=new Date()[_0x4974(0x1fd)]();this[_0x4974(0x208)](_0x635cab,{'feishu_open_id':null,'feishu_union_id':null,'updated_at':_0x3c164b});}[_0x4974(0x20c)](_0x5543b3){const _0x2b1502=this[_0x12a5(0x185)](_0x5543b3);return!!_0x2b1502&&!!_0x2b1502[_0x4974(0x20f)];}[_0x4974(0x207)](_0x297088){const _0x306c7b=this[_0x4974(0x1ff)](_0x297088);return _0x306c7b?.[_0x4974(0x20f)]||null;}[_0x12a5(0x180)](_0xf56bd7,_0x40e752){const _0xf58b8b=new Date()[_0x4974(0x1fd)]();this[_0x4974(0x208)](_0xf56bd7,{'name':_0x40e752,'updated_at':_0xf58b8b});}}exports[_0x4974(0x204)]=UserRepository,exports[_0x4974(0x205)]=new UserRepository();
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
YFR/7X5jTeulAs1/L2MjEuyw23MTtfxbSXNn3VHtvFwCgQZVEo2IIz5wk9kHFDyl1fNIIcUMfKUqhBJarIUbxkTQ+j1R1vD6RvhS2BfDzy9mt49DAMrBaMoyKkOJzQH/0uxiaAPI87YPiWWQHrwNTtDAuiBaEldmQkraq6mbKn0=
|