@agent-vm/agent-portal-sdk 0.0.142 → 0.0.144
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/contract-fixtures/portable-contracts/gateway/managed-agent-projection-long-namespace-name.fixture.json +5 -5
- package/contract-fixtures/portable-contracts/gateway/managed-agent-projection-namespace-names-code-point-order.fixture.json +5 -5
- package/contract-fixtures/portable-contracts/gateway/managed-agent-projection-namespace-names-code-point-reverse.fixture.json +2 -2
- package/contract-fixtures/portable-contracts/gateway/managed-agent-projection-namespace-names-duplicate.fixture.json +2 -2
- package/contract-fixtures/portable-contracts/gateway/managed-agent-projection-namespace-names-unsorted.fixture.json +2 -2
- package/contract-fixtures/portable-contracts/gateway/managed-agent-projection-old-authority-rejected.fixture.json +2 -2
- package/contract-fixtures/portable-contracts/gateway/managed-agent-projection-self-root-rejected.fixture.json +2 -2
- package/contract-fixtures/portable-contracts/gateway/managed-agent-projection-work-root-rejected.fixture.json +2 -2
- package/dist/adapter-boundary/index.d.ts +1 -1
- package/dist/adapter-boundary/index.js +1 -1
- package/dist/{adapter-boundary-BIagsTUH.js → adapter-boundary-CuGmOM0c.js} +1 -3
- package/dist/adapter-boundary-CuGmOM0c.js.map +1 -0
- package/dist/cli/tool-portal.js +1 -1
- package/dist/contracts/index.d.ts +1 -1
- package/dist/contracts/index.js +1 -1
- package/dist/{contracts-mBPxCxoG.js → contracts-X9wWs2lP.js} +5 -8
- package/dist/{contracts-mBPxCxoG.js.map → contracts-X9wWs2lP.js.map} +1 -1
- package/dist/gateway-runtime-client/index.d.ts +1 -1
- package/dist/gateway-runtime-client/index.js +1 -1
- package/dist/{index-Badq9e6i.d.ts → index-DwxCTubj.d.ts} +1 -4
- package/dist/index-DwxCTubj.d.ts.map +1 -0
- package/dist/{index-tmZkznV6.d.ts → index-ksJ4wmQG.d.ts} +12 -33
- package/dist/{index-tmZkznV6.d.ts.map → index-ksJ4wmQG.d.ts.map} +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +3 -3
- package/dist/portable-contracts/index.js +1 -1
- package/dist/{portable-contracts-CKeFnjAA.js → portable-contracts-BJEMMNwI.js} +2 -2
- package/dist/{portable-contracts-CKeFnjAA.js.map → portable-contracts-BJEMMNwI.js.map} +1 -1
- package/package.json +1 -1
- package/portable-contract-schema-manifest.json +25 -65
- package/contract-fixtures/portable-contracts/gateway/managed-agent-projection-openclaw-valid.fixture.json +0 -33
- package/dist/adapter-boundary-BIagsTUH.js.map +0 -1
- package/dist/index-Badq9e6i.d.ts.map +0 -1
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"caseId": "gateway-managed-agent-projection-openclaw-valid",
|
|
3
|
-
"schemaId": "gateway.managed-agent-projection",
|
|
4
|
-
"tags": ["accepted", "managed-agent-projection", "openclaw"],
|
|
5
|
-
"input": {
|
|
6
|
-
"agentId": "agent-a",
|
|
7
|
-
"frameworkIdentity": {
|
|
8
|
-
"agentId": "agent-a",
|
|
9
|
-
"kind": "openclaw"
|
|
10
|
-
},
|
|
11
|
-
"profileAssignmentRevision": "profile-assignment-a",
|
|
12
|
-
"toolPortalNamespaces": [],
|
|
13
|
-
"toolPortalProfileId": "engineering"
|
|
14
|
-
},
|
|
15
|
-
"expectation": {
|
|
16
|
-
"kind": "accepted",
|
|
17
|
-
"normalized": {
|
|
18
|
-
"agentId": "agent-a",
|
|
19
|
-
"frameworkIdentity": {
|
|
20
|
-
"agentId": "agent-a",
|
|
21
|
-
"kind": "openclaw"
|
|
22
|
-
},
|
|
23
|
-
"profileAssignmentRevision": "profile-assignment-a",
|
|
24
|
-
"toolPortalNamespaces": [],
|
|
25
|
-
"toolPortalProfileId": "engineering"
|
|
26
|
-
},
|
|
27
|
-
"canonicalJson": "{\"agentId\":\"agent-a\",\"frameworkIdentity\":{\"agentId\":\"agent-a\",\"kind\":\"openclaw\"},\"profileAssignmentRevision\":\"profile-assignment-a\",\"toolPortalNamespaces\":[],\"toolPortalProfileId\":\"engineering\"}",
|
|
28
|
-
"refinementIdentities": [
|
|
29
|
-
"gateway.managed-agent-projection.namespaces",
|
|
30
|
-
"portal.namespace-discovery.summary-code-points"
|
|
31
|
-
]
|
|
32
|
-
}
|
|
33
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"adapter-boundary-BIagsTUH.js","names":[],"sources":["../src/adapter-boundary/models/portal-adapter-envelope-schema.ts"],"sourcesContent":["import { z } from 'zod';\n\nexport const TrustedAgentScopeSchema = z\n\t.object({\n\t\tagentId: z.string().min(1),\n\t\tprofileId: z.string().min(1),\n\t\tsource: z.enum(['mcp-portal', 'tool-portal', 'openclaw-plugin', 'controller']),\n\t\tuserId: z.string().min(1).optional(),\n\t})\n\t.strict();\n\nexport type TrustedAgentScope = z.infer<typeof TrustedAgentScopeSchema>;\n\nexport const PortalAdapterEnvelopeSchema = z\n\t.object({\n\t\tadapter: z.enum(['mcp-provider', 'tool-portal', 'openclaw-plugin', 'cli', 'sdk', 'http-api']),\n\t\tauditCorrelationId: z.string().min(1).optional(),\n\t\ttrustedScope: TrustedAgentScopeSchema,\n\t})\n\t.strict();\n\nexport type PortalAdapterEnvelope = z.infer<typeof PortalAdapterEnvelopeSchema>;\n"],"mappings":";;AAEA,MAAa,0BAA0B,EACrC,OAAO;CACP,SAAS,EAAE,QAAQ,CAAC,IAAI,EAAE;CAC1B,WAAW,EAAE,QAAQ,CAAC,IAAI,EAAE;CAC5B,QAAQ,EAAE,KAAK;EAAC;EAAc;EAAe;EAAmB;EAAa,CAAC;CAC9E,QAAQ,EAAE,QAAQ,CAAC,IAAI,EAAE,CAAC,UAAU;CACpC,CAAC,CACD,QAAQ;AAIV,MAAa,8BAA8B,EACzC,OAAO;CACP,SAAS,EAAE,KAAK;EAAC;EAAgB;EAAe;EAAmB;EAAO;EAAO;EAAW,CAAC;CAC7F,oBAAoB,EAAE,QAAQ,CAAC,IAAI,EAAE,CAAC,UAAU;CAChD,cAAc;CACd,CAAC,CACD,QAAQ"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index-Badq9e6i.d.ts","names":[],"sources":["../src/adapter-boundary/models/portal-adapter-envelope-schema.ts"],"mappings":";;;cAEa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;KASxB,iBAAA,GAAoB,CAAA,CAAE,KAAA,QAAa,uBAAA;AAAA,cAElC,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;KAQ5B,qBAAA,GAAwB,CAAA,CAAE,KAAA,QAAa,2BAAA"}
|