opclawtm 2.0.0 → 2.0.1
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.d.ts +9 -0
- package/dist/cli/commands/sync.command.js +1 -0
- 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/preset-version.txt +1 -0
- 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.d.ts +9 -0
- 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/dist/db/schema.sql +12 -0
- package/package.json +3 -3
- package/resources/preset-data-hash.enc +1 -1
- package/resources/preset-data.enc +1 -1
- package/resources/preset-version.txt +1 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';(function(
|
|
1
|
+
'use strict';(function(_0x5a4b09,_0x303f20){var _0x2cdb57=_0x5a4b09();while(!![]){try{var _0x70978f=-parseInt(_0x3190(0x129))/0x1+-parseInt(_0x3190(0x136))/0x2*(parseInt(_0x3190(0x131))/0x3)+-parseInt(_0x3190(0x126))/0x4+parseInt(_0x3190(0x12c))/0x5+parseInt(_0x3190(0x13a))/0x6+-parseInt(_0x3190(0x140))/0x7+parseInt(_0x3190(0x12b))/0x8*(parseInt(_0x3190(0x132))/0x9);if(_0x70978f===_0x303f20)break;else _0x2cdb57['push'](_0x2cdb57['shift']());}catch(_0xe258f1){_0x2cdb57['push'](_0x2cdb57['shift']());}}}(_0x1629,0x3815e));function _0x1629(){var _0x4d144f=['t1jdsuHH','C2HPzNq','mte2mtmYmvbvzgD4ra','nZe4otu2sLbsqufw','ChvZAa','B2r1ww9KztfTs1HyDgzMBKnx','zNjVBunOyxjdB2rL','mK9XEgTSAG','BgvUz3rO','BKPLwM9KCtnUD25lqJfeuxPH','x19LC01VzhvSzq','mtu5ode3mK1uDM5yDa','Aw5KzxHpzG','y2HHCKf0','q0LoChnU','Bxr5mujosfbZDwy0','B3HmExj4thrZrW','mJuZmtiWExHSvez3','zMvIz1Lu','BvPdmg5ABvHUs0XyrwDmwxrX','BuPhmg5kDtb2tKriD3ziwq','ywjJzgvMz2HPAMTSBw5VChfYC3r1DND4ExPbqKneruzhseLks0XntK9quvjtvfvwv1HzwJaXmJm0nty3odKRlZ0','BxrXnw9KCtbds2zUExD6Aq','EMD2tuf3nuX1AgPwq2D2wurOsW','BxDeCNzLAMz1yq','nJq4ndi0vwrXz25t','BJjMAKrLnvPcyq','BuPPwhj1otj2txPA','nde3mdC4qwfIALzI','B2rXmw1Ks1D1zMPJEJfmua','nZj2tgXmBgm','mtiZndi5nw5wt1r2CW','y2HHCKnVzgvbDa','C2XPy2u'];_0x1629=function(){return _0x4d144f;};return _0x1629();}(function(_0x2d7999,_0x462f56){var _0x38f226=_0x2d7999();while(!![]){try{var _0x2b58be=parseInt(_0x160c(0x103))/0x1*(parseInt(_0x160c(0xfd))/0x2)+parseInt(_0x160c(0x107))/0x3*(parseInt(_0x160c(0x108))/0x4)+-parseInt(_0x160c(0xfc))/0x5+parseInt(_0x160c(0x102))/0x6*(parseInt(_0x160c(0x100))/0x7)+-parseInt(_0x160c(0xff))/0x8*(parseInt(_0x160c(0x105))/0x9)+-parseInt(_0x160c(0x101))/0xa*(-parseInt(_0x160c(0x104))/0xb)+parseInt(_0x160c(0xfe))/0xc*(parseInt(_0x160c(0x109))/0xd);if(_0x2b58be===_0x462f56)break;else _0x38f226[_0x3190(0x133)](_0x38f226[_0x3190(0x130)]());}catch(_0x63c7cf){_0x38f226['push'](_0x38f226[_0x3190(0x130)]());}}}(_0x12ae,0xc6de5),Object[_0x160c(0x106)](exports,_0x3190(0x139),{'value':!![]}));function _0x3190(_0x4f3e0f,_0x13b63e){_0x4f3e0f=_0x4f3e0f-0x121;var _0x162999=_0x1629();var _0x3190f7=_0x162999[_0x4f3e0f];if(_0x3190['DPKQfb']===undefined){var _0x34e0a3=function(_0x3cd74b){var _0x5c787c='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var _0x2d7999='',_0x462f56='';for(var _0x38f226=0x0,_0x2b58be,_0x63c7cf,_0x3048dc=0x0;_0x63c7cf=_0x3cd74b['charAt'](_0x3048dc++);~_0x63c7cf&&(_0x2b58be=_0x38f226%0x4?_0x2b58be*0x40+_0x63c7cf:_0x63c7cf,_0x38f226++%0x4)?_0x2d7999+=String['fromCharCode'](0xff&_0x2b58be>>(-0x2*_0x38f226&0x6)):0x0){_0x63c7cf=_0x5c787c['indexOf'](_0x63c7cf);}for(var _0x34410d=0x0,_0xe18819=_0x2d7999['length'];_0x34410d<_0xe18819;_0x34410d++){_0x462f56+='%'+('00'+_0x2d7999['charCodeAt'](_0x34410d)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x462f56);};_0x3190['tGRQtT']=_0x34e0a3,_0x3190['zOPoKX']={},_0x3190['DPKQfb']=!![];}var _0x3f10d2=_0x162999[0x0],_0x2c0679=_0x4f3e0f+_0x3f10d2,_0x328251=_0x3190['zOPoKX'][_0x2c0679];return!_0x328251?(_0x3190f7=_0x3190['tGRQtT'](_0x3190f7),_0x3190['zOPoKX'][_0x2c0679]=_0x3190f7):_0x3190f7=_0x328251,_0x3190f7;}function _0x160c(_0x3048dc,_0x34410d){_0x3048dc=_0x3048dc-0xfc;var _0xe18819=_0x12ae(),_0x18dbf9=_0xe18819[_0x3048dc];if(_0x160c[_0x3190(0x141)]===undefined){var _0x2ecafe=function(_0x410ea4){var _0x5d4b91=_0x3190(0x122),_0x3dcda5='',_0x14450e='';for(var _0x200d38=0x0,_0x16c2a3,_0x10ffd3,_0x5aa48a=0x0;_0x10ffd3=_0x410ea4[_0x3190(0x13c)](_0x5aa48a++);~_0x10ffd3&&(_0x16c2a3=_0x200d38%0x4?_0x16c2a3*0x40+_0x10ffd3:_0x10ffd3,_0x200d38++%0x4)?_0x3dcda5+=String[_0x3190(0x135)](0xff&_0x16c2a3>>(-0x2*_0x200d38&0x6)):0x0){_0x10ffd3=_0x5d4b91[_0x3190(0x13b)](_0x10ffd3);}for(var _0x57847e=0x0,_0x3f4b06=_0x3dcda5[_0x3190(0x137)];_0x57847e<_0x3f4b06;_0x57847e++){_0x14450e+='%'+('00'+_0x3dcda5[_0x3190(0x12d)](_0x57847e)['toString'](0x10))[_0x3190(0x12e)](-0x2);}return decodeURIComponent(_0x14450e);};_0x160c[_0x3190(0x13d)]=_0x2ecafe,_0x160c[_0x3190(0x12f)]={},_0x160c[_0x3190(0x141)]=!![];}var _0xc8ece9=_0xe18819[0x0],_0x398340=_0x3048dc+_0xc8ece9,_0x548d99=_0x160c[_0x3190(0x12f)][_0x398340];return!_0x548d99?(_0x18dbf9=_0x160c['CINpsn'](_0x18dbf9),_0x160c[_0x3190(0x12f)][_0x398340]=_0x18dbf9):_0x18dbf9=_0x548d99,_0x18dbf9;}function _0x12ae(){var _0x2fea4f=[_0x3190(0x13f),_0x3190(0x124),'m2rlte5VDa',_0x3190(0x142),_0x3190(0x128),_0x3190(0x138),_0x3190(0x121),_0x3190(0x123),_0x3190(0x134),_0x3190(0x127),_0x3190(0x12a),'mZi5nti1nfLxyNvYrW',_0x3190(0x125),_0x3190(0x13e)];return _0x12ae=function(){return _0x2fea4f;},_0x12ae();}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
5AaBM91Y1PFROILAEZqT8EUpGWnQdwQP7yxCj1ehNrAUV4qwmyCNaeqVRbKaQWUlimUyqeeaB9N6CNfX4UNk+Fm6Fggf/M7p5N4B/aIvqMjXq3MqVK8wBiZ0Zx9LGGeuckpT7Pz2SF2gUkyedu0Nrk5hPp1MX1egAafYfJEscLQ=
|