@xenosystem/agent-sdk 0.9.16 → 0.9.19
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/automation/index.cjs +28 -2
- package/dist/automation/index.js +28 -2
- package/dist/automation/metafile-cjs.json +1 -1
- package/dist/automation/metafile-esm.json +1 -1
- package/dist/control-plane/index.cjs +1 -1
- package/dist/control-plane/index.js +1 -1
- package/dist/electron/index.cjs +170 -144
- package/dist/electron/index.js +167 -141
- package/dist/electron/metafile-cjs.json +1 -1
- package/dist/electron/metafile-esm.json +1 -1
- package/dist/index.cjs +348 -322
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +341 -315
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/session/index.cjs +10 -10
- package/dist/session/index.js +8 -8
- package/dist/session/metafile-cjs.json +1 -1
- package/dist/session/metafile-esm.json +1 -1
- package/ownership/ownership-policy.json +25 -1
- package/package.json +6 -3
package/dist/index.d.cts
CHANGED
|
@@ -644,7 +644,7 @@ interface PolicyEnforcerConfig {
|
|
|
644
644
|
};
|
|
645
645
|
}
|
|
646
646
|
type AgentSandbox = PolicyEnforcerConfig;
|
|
647
|
-
declare const SDK_VERSION = "0.9.
|
|
647
|
+
declare const SDK_VERSION = "0.9.19";
|
|
648
648
|
type AuditRiskLevel = "none" | "low" | "medium" | "high" | "critical";
|
|
649
649
|
type AuditDecision = "allow" | "ask" | "deny";
|
|
650
650
|
type AuditStatus = "ok" | "error";
|
package/dist/index.d.ts
CHANGED
|
@@ -644,7 +644,7 @@ interface PolicyEnforcerConfig {
|
|
|
644
644
|
};
|
|
645
645
|
}
|
|
646
646
|
type AgentSandbox = PolicyEnforcerConfig;
|
|
647
|
-
declare const SDK_VERSION = "0.9.
|
|
647
|
+
declare const SDK_VERSION = "0.9.19";
|
|
648
648
|
type AuditRiskLevel = "none" | "low" | "medium" | "high" | "critical";
|
|
649
649
|
type AuditDecision = "allow" | "ask" | "deny";
|
|
650
650
|
type AuditStatus = "ok" | "error";
|