@xenosystem/agent-sdk 0.8.12 → 0.8.13
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/artifacts/index.cjs +1 -1
- package/dist/artifacts/index.js +1 -1
- package/dist/artifacts/metafile-cjs.json +1 -1
- package/dist/artifacts/metafile-esm.json +1 -1
- package/dist/control-plane/index.cjs +1 -1
- package/dist/control-plane/index.js +1 -1
- package/dist/control-plane/metafile-cjs.json +1 -1
- package/dist/control-plane/metafile-esm.json +1 -1
- package/dist/electron/index.cjs +102 -102
- package/dist/electron/index.d.cts +2 -0
- package/dist/electron/index.d.ts +2 -0
- package/dist/electron/index.js +104 -104
- package/dist/electron/metafile-cjs.json +1 -1
- package/dist/electron/metafile-esm.json +1 -1
- package/dist/index.cjs +236 -236
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +251 -251
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/recipes/metafile-cjs.json +1 -1
- package/dist/recipes/metafile-esm.json +1 -1
- package/dist/research/metafile-cjs.json +1 -1
- package/dist/research/metafile-esm.json +1 -1
- package/dist/session/index.cjs +1 -1
- package/dist/session/index.js +1 -1
- package/dist/session/metafile-cjs.json +1 -1
- package/dist/session/metafile-esm.json +1 -1
- package/ownership/ownership-policy.json +273 -232
- package/package.json +209 -209
package/dist/index.d.cts
CHANGED
|
@@ -612,7 +612,7 @@ interface PolicyEnforcerConfig {
|
|
|
612
612
|
};
|
|
613
613
|
}
|
|
614
614
|
type AgentSandbox = PolicyEnforcerConfig;
|
|
615
|
-
declare const SDK_VERSION = "0.8.
|
|
615
|
+
declare const SDK_VERSION = "0.8.13";
|
|
616
616
|
type AuditRiskLevel = "none" | "low" | "medium" | "high" | "critical";
|
|
617
617
|
type AuditDecision = "allow" | "ask" | "deny";
|
|
618
618
|
type AuditStatus = "ok" | "error";
|
|
@@ -3476,6 +3476,8 @@ declare class PermissionEngine {
|
|
|
3476
3476
|
}>;
|
|
3477
3477
|
private finalizeDecision;
|
|
3478
3478
|
classifyAutoPermission(toolName: string, input: Record<string, unknown>): AutoPermissionDecision;
|
|
3479
|
+
private contentDigest;
|
|
3480
|
+
private hasShellComposition;
|
|
3479
3481
|
private getCacheKey;
|
|
3480
3482
|
private isPathInPersistentAllowedDirectory;
|
|
3481
3483
|
private normalizePersistentApprovalKey;
|
package/dist/index.d.ts
CHANGED
|
@@ -612,7 +612,7 @@ interface PolicyEnforcerConfig {
|
|
|
612
612
|
};
|
|
613
613
|
}
|
|
614
614
|
type AgentSandbox = PolicyEnforcerConfig;
|
|
615
|
-
declare const SDK_VERSION = "0.8.
|
|
615
|
+
declare const SDK_VERSION = "0.8.13";
|
|
616
616
|
type AuditRiskLevel = "none" | "low" | "medium" | "high" | "critical";
|
|
617
617
|
type AuditDecision = "allow" | "ask" | "deny";
|
|
618
618
|
type AuditStatus = "ok" | "error";
|
|
@@ -3476,6 +3476,8 @@ declare class PermissionEngine {
|
|
|
3476
3476
|
}>;
|
|
3477
3477
|
private finalizeDecision;
|
|
3478
3478
|
classifyAutoPermission(toolName: string, input: Record<string, unknown>): AutoPermissionDecision;
|
|
3479
|
+
private contentDigest;
|
|
3480
|
+
private hasShellComposition;
|
|
3479
3481
|
private getCacheKey;
|
|
3480
3482
|
private isPathInPersistentAllowedDirectory;
|
|
3481
3483
|
private normalizePersistentApprovalKey;
|