@open-mercato/enterprise 0.6.6-develop.6352.1.8eee7e1399 → 0.6.6-develop.6353.1.efc82affea
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/modules/record_locks/index.js +0 -1
- package/dist/modules/record_locks/index.js.map +2 -2
- package/dist/modules/security/index.js +0 -10
- package/dist/modules/security/index.js.map +2 -2
- package/package.json +5 -5
- package/src/modules/record_locks/index.ts +0 -2
- package/src/modules/security/index.ts +0 -11
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/modules/record_locks/index.ts"],
|
|
4
|
-
"sourcesContent": ["import
|
|
5
|
-
"mappings": "
|
|
4
|
+
"sourcesContent": ["import type { ModuleInfo } from '@open-mercato/shared/modules/registry'\n\nexport const metadata: ModuleInfo = {\n name: 'record_locks',\n title: 'Record Locking',\n version: '0.1.0',\n description: 'Optimistic and pessimistic record locking with conflict resolution.',\n author: 'Open Mercato Team',\n license: 'Proprietary',\n}\n\nexport { features } from './acl'\n"],
|
|
5
|
+
"mappings": "AAEO,MAAM,WAAuB;AAAA,EAClC,MAAM;AAAA,EACN,OAAO;AAAA,EACP,SAAS;AAAA,EACT,aAAa;AAAA,EACb,QAAQ;AAAA,EACR,SAAS;AACX;AAEA,SAAS,gBAAgB;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
import "./commands/changePassword.js";
|
|
2
|
-
import "./commands/createEnforcementPolicy.js";
|
|
3
|
-
import "./commands/updateEnforcementPolicy.js";
|
|
4
|
-
import "./commands/deleteEnforcementPolicy.js";
|
|
5
|
-
import "./commands/removeMfaMethod.js";
|
|
6
|
-
import "./commands/regenerateRecoveryCodes.js";
|
|
7
|
-
import "./commands/resetUserMfa.js";
|
|
8
|
-
import "./commands/createSudoConfig.js";
|
|
9
|
-
import "./commands/updateSudoConfig.js";
|
|
10
|
-
import "./commands/deleteSudoConfig.js";
|
|
11
1
|
const metadata = {
|
|
12
2
|
id: "security",
|
|
13
3
|
version: "0.1.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/modules/security/index.ts"],
|
|
4
|
-
"sourcesContent": ["
|
|
5
|
-
"mappings": "
|
|
4
|
+
"sourcesContent": ["export const metadata = {\n id: 'security',\n version: '0.1.0',\n enterprise: true,\n title: 'Security',\n} as const\n\nexport { features } from './acl'\nexport {\n ChallengeMethod,\n SudoChallengeMethodUsed,\n} from './data/constants'\nexport type {\n MfaProviderComponents,\n MfaProviderInterface,\n MfaProviderSetup,\n MfaProviderUser,\n MfaSetupComponentProps,\n MfaVerifyComponentProps,\n} from './lib/mfa-provider-interface'\nexport type {\n SecurityMfaProviderEntry,\n SecuritySudoTarget,\n SecuritySudoTargetEntry,\n} from './lib/module-security-registry'\nexport { requireSudo, SudoRequiredError, isSudoRequiredError } from './lib/sudo-middleware'\nexport { useSudoChallenge } from './components/hooks/useSudoChallenge'\nexport { SudoProvider, withSudoProtection } from './components/SudoProvider'\n"],
|
|
5
|
+
"mappings": "AAAO,MAAM,WAAW;AAAA,EACtB,IAAI;AAAA,EACJ,SAAS;AAAA,EACT,YAAY;AAAA,EACZ,OAAO;AACT;AAEA,SAAS,gBAAgB;AACzB;AAAA,EACE;AAAA,EACA;AAAA,OACK;AAcP,SAAS,aAAa,mBAAmB,2BAA2B;AACpE,SAAS,wBAAwB;AACjC,SAAS,cAAc,0BAA0B;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-mercato/enterprise",
|
|
3
|
-
"version": "0.6.6-develop.
|
|
3
|
+
"version": "0.6.6-develop.6353.1.efc82affea",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@open-mercato/core": "0.6.6-develop.
|
|
69
|
-
"@open-mercato/ui": "0.6.6-develop.
|
|
68
|
+
"@open-mercato/core": "0.6.6-develop.6353.1.efc82affea",
|
|
69
|
+
"@open-mercato/ui": "0.6.6-develop.6353.1.efc82affea",
|
|
70
70
|
"@simplewebauthn/browser": "^13.3.0",
|
|
71
71
|
"@simplewebauthn/server": "^13.3.1",
|
|
72
72
|
"@simplewebauthn/types": "^12.0.0",
|
|
@@ -76,12 +76,12 @@
|
|
|
76
76
|
"qrcode": "^1.5.4"
|
|
77
77
|
},
|
|
78
78
|
"peerDependencies": {
|
|
79
|
-
"@open-mercato/shared": "0.6.6-develop.
|
|
79
|
+
"@open-mercato/shared": "0.6.6-develop.6353.1.efc82affea",
|
|
80
80
|
"react": "^19.0.0",
|
|
81
81
|
"react-dom": "^19.0.0"
|
|
82
82
|
},
|
|
83
83
|
"devDependencies": {
|
|
84
|
-
"@open-mercato/shared": "0.6.6-develop.
|
|
84
|
+
"@open-mercato/shared": "0.6.6-develop.6353.1.efc82affea",
|
|
85
85
|
"@types/jest": "^30.0.0",
|
|
86
86
|
"@types/react": "^19.2.17",
|
|
87
87
|
"@types/react-dom": "^19.2.3",
|
|
@@ -1,14 +1,3 @@
|
|
|
1
|
-
import './commands/changePassword'
|
|
2
|
-
import './commands/createEnforcementPolicy'
|
|
3
|
-
import './commands/updateEnforcementPolicy'
|
|
4
|
-
import './commands/deleteEnforcementPolicy'
|
|
5
|
-
import './commands/removeMfaMethod'
|
|
6
|
-
import './commands/regenerateRecoveryCodes'
|
|
7
|
-
import './commands/resetUserMfa'
|
|
8
|
-
import './commands/createSudoConfig'
|
|
9
|
-
import './commands/updateSudoConfig'
|
|
10
|
-
import './commands/deleteSudoConfig'
|
|
11
|
-
|
|
12
1
|
export const metadata = {
|
|
13
2
|
id: 'security',
|
|
14
3
|
version: '0.1.0',
|