@claudexor/schema 3.8.0 → 3.8.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/agent-capabilities.d.ts +16 -16
- package/dist/config.d.ts +20 -20
- package/dist/control-harness-list.d.ts +18 -18
- package/dist/control-operation-responses.d.ts +16 -13
- package/dist/control-operation-responses.d.ts.map +1 -1
- package/dist/control-run-detail.d.ts +33 -46
- package/dist/control-run-detail.d.ts.map +1 -1
- package/dist/control-run-detail.js +10 -19
- package/dist/control-run-detail.js.map +1 -1
- package/dist/control-run-execution.d.ts +16 -0
- package/dist/control-run-execution.d.ts.map +1 -0
- package/dist/control-run-execution.js +19 -0
- package/dist/control-run-execution.js.map +1 -0
- package/dist/control-run-failure.d.ts +4 -4
- package/dist/control-run-failure.d.ts.map +1 -1
- package/dist/control-run-failure.js +6 -4
- package/dist/control-run-failure.js.map +1 -1
- package/dist/control-run-retry.d.ts +21 -0
- package/dist/control-run-retry.d.ts.map +1 -1
- package/dist/control-run-retry.js +6 -0
- package/dist/control-run-retry.js.map +1 -1
- package/dist/control-trust.d.ts +13 -13
- package/dist/control.d.ts +365 -36
- package/dist/control.d.ts.map +1 -1
- package/dist/control.js +12 -18
- package/dist/control.js.map +1 -1
- package/dist/credential-profile-snapshot.d.ts +78 -36
- package/dist/credential-profile-snapshot.d.ts.map +1 -1
- package/dist/credential-profile.d.ts +44 -0
- package/dist/credential-profile.d.ts.map +1 -1
- package/dist/credential-profile.js +11 -0
- package/dist/credential-profile.js.map +1 -1
- package/dist/harness-confinement.d.ts +37 -30
- package/dist/harness-confinement.d.ts.map +1 -1
- package/dist/harness-confinement.js +18 -26
- package/dist/harness-confinement.js.map +1 -1
- package/dist/harness.d.ts +18 -48
- package/dist/harness.d.ts.map +1 -1
- package/dist/harness.js +1 -6
- package/dist/harness.js.map +1 -1
- package/dist/mcp-run-result.d.ts +10 -10
- package/dist/primitives.d.ts +6 -1
- package/dist/primitives.d.ts.map +1 -1
- package/dist/primitives.js +8 -2
- package/dist/primitives.js.map +1 -1
- package/dist/readiness.d.ts +14 -14
- package/dist/run-strategy.d.ts +51 -3
- package/dist/run-strategy.d.ts.map +1 -1
- package/dist/run-strategy.js +58 -2
- package/dist/run-strategy.js.map +1 -1
- package/dist/task.d.ts +641 -19
- package/dist/task.d.ts.map +1 -1
- package/dist/task.js +40 -5
- package/dist/task.js.map +1 -1
- package/dist/telemetry.d.ts +2 -2
- package/dist/telemetry.js +3 -3
- package/dist/telemetry.js.map +1 -1
- package/dist/thread.d.ts +1 -1
- package/dist/thread.js +2 -2
- package/dist/thread.js.map +1 -1
- package/generated/AgentCapabilityCatalog.schema.json +1 -2
- package/generated/ControlCredentialProfileCreateResponse.schema.json +9 -0
- package/generated/ControlCredentialProfileUpdateResponse.schema.json +9 -0
- package/generated/ControlCredentialProfilesQueryResponse.schema.json +12 -3
- package/generated/ControlCredentialProfilesResponse.schema.json +9 -0
- package/generated/ControlCredentialProfilesSnapshotResponse.schema.json +12 -3
- package/generated/ControlHarnessListResponse.schema.json +3 -3
- package/generated/ControlRunAgainDraft.schema.json +20 -3
- package/generated/ControlRunDetail.schema.json +10 -8
- package/generated/ControlRunListResponse.schema.json +6 -4
- package/generated/ControlRunStartRequest.schema.json +5 -2
- package/generated/ControlRunSummary.schema.json +6 -4
- package/generated/ControlThread.schema.json +3 -3
- package/generated/ControlThreadCreateRequest.schema.json +0 -1
- package/generated/ControlThreadDetail.schema.json +3 -3
- package/generated/ControlThreadListResponse.schema.json +3 -3
- package/generated/ControlThreadTurnRequest.schema.json +0 -1
- package/generated/ControlThreadUpdateRequest.schema.json +1 -2
- package/generated/ControlTrustListResponse.schema.json +0 -1
- package/generated/ControlTrustState.schema.json +0 -1
- package/generated/ControlTrustUpdateRequest.schema.json +0 -1
- package/generated/CredentialProfileStatus.schema.json +9 -0
- package/generated/HarnessManifest.schema.json +3 -3
- package/generated/HarnessStatusDto.schema.json +3 -3
- package/generated/McpRunHandleResult.schema.json +4 -2
- package/generated/McpRunToolResult.schema.json +4 -2
- package/generated/RunFailure.schema.json +4 -2
- package/generated/RunTelemetry.schema.json +5 -5
- package/generated/TaskContract.schema.json +8 -8
- package/generated/Thread.schema.json +3 -3
- package/generated/TrustConfig.schema.json +0 -2
- package/package.json +2 -2
package/dist/control-trust.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export declare const ControlTrustUpdateRequest: z.ZodEffects<z.ZodObject<{
|
|
|
24
24
|
cwd?: string | undefined;
|
|
25
25
|
envAllowlist?: string[] | undefined;
|
|
26
26
|
}>>;
|
|
27
|
-
grantAccessProfile: z.ZodOptional<z.ZodEnum<["readonly", "workspace_write", "full", "
|
|
27
|
+
grantAccessProfile: z.ZodOptional<z.ZodEnum<["readonly", "workspace_write", "full", "inherit_native"]>>;
|
|
28
28
|
revokeTestCommandDigest: z.ZodOptional<z.ZodString>;
|
|
29
29
|
}, "strict", z.ZodTypeAny, {
|
|
30
30
|
repoRoot: string;
|
|
@@ -36,7 +36,7 @@ export declare const ControlTrustUpdateRequest: z.ZodEffects<z.ZodObject<{
|
|
|
36
36
|
cwd?: string | undefined;
|
|
37
37
|
envAllowlist: string[];
|
|
38
38
|
} | undefined;
|
|
39
|
-
grantAccessProfile?: "
|
|
39
|
+
grantAccessProfile?: "full" | "inherit_native" | "readonly" | "workspace_write" | undefined;
|
|
40
40
|
revokeTestCommandDigest?: string | undefined;
|
|
41
41
|
}, {
|
|
42
42
|
repoRoot: string;
|
|
@@ -48,7 +48,7 @@ export declare const ControlTrustUpdateRequest: z.ZodEffects<z.ZodObject<{
|
|
|
48
48
|
cwd?: string | undefined;
|
|
49
49
|
envAllowlist?: string[] | undefined;
|
|
50
50
|
} | undefined;
|
|
51
|
-
grantAccessProfile?: "
|
|
51
|
+
grantAccessProfile?: "full" | "inherit_native" | "readonly" | "workspace_write" | undefined;
|
|
52
52
|
revokeTestCommandDigest?: string | undefined;
|
|
53
53
|
}>, {
|
|
54
54
|
repoRoot: string;
|
|
@@ -60,7 +60,7 @@ export declare const ControlTrustUpdateRequest: z.ZodEffects<z.ZodObject<{
|
|
|
60
60
|
cwd?: string | undefined;
|
|
61
61
|
envAllowlist: string[];
|
|
62
62
|
} | undefined;
|
|
63
|
-
grantAccessProfile?: "
|
|
63
|
+
grantAccessProfile?: "full" | "inherit_native" | "readonly" | "workspace_write" | undefined;
|
|
64
64
|
revokeTestCommandDigest?: string | undefined;
|
|
65
65
|
}, {
|
|
66
66
|
repoRoot: string;
|
|
@@ -72,7 +72,7 @@ export declare const ControlTrustUpdateRequest: z.ZodEffects<z.ZodObject<{
|
|
|
72
72
|
cwd?: string | undefined;
|
|
73
73
|
envAllowlist?: string[] | undefined;
|
|
74
74
|
} | undefined;
|
|
75
|
-
grantAccessProfile?: "
|
|
75
|
+
grantAccessProfile?: "full" | "inherit_native" | "readonly" | "workspace_write" | undefined;
|
|
76
76
|
revokeTestCommandDigest?: string | undefined;
|
|
77
77
|
}>;
|
|
78
78
|
export type ControlTrustUpdateRequest = z.infer<typeof ControlTrustUpdateRequest>;
|
|
@@ -83,19 +83,19 @@ export declare const ControlTrustState: z.ZodObject<{
|
|
|
83
83
|
/** The user-level trust file backing this state (path disclosure, no content). */
|
|
84
84
|
path: z.ZodString;
|
|
85
85
|
allowFullAccess: z.ZodBoolean;
|
|
86
|
-
accessDefault: z.ZodEnum<["readonly", "workspace_write", "full", "
|
|
86
|
+
accessDefault: z.ZodEnum<["readonly", "workspace_write", "full", "inherit_native"]>;
|
|
87
87
|
testCommandGrantCount: z.ZodDefault<z.ZodNumber>;
|
|
88
88
|
}, "strip", z.ZodTypeAny, {
|
|
89
89
|
repoRoot: string | null;
|
|
90
90
|
path: string;
|
|
91
91
|
allowFullAccess: boolean;
|
|
92
|
-
accessDefault: "
|
|
92
|
+
accessDefault: "full" | "inherit_native" | "readonly" | "workspace_write";
|
|
93
93
|
testCommandGrantCount: number;
|
|
94
94
|
}, {
|
|
95
95
|
repoRoot: string | null;
|
|
96
96
|
path: string;
|
|
97
97
|
allowFullAccess: boolean;
|
|
98
|
-
accessDefault: "
|
|
98
|
+
accessDefault: "full" | "inherit_native" | "readonly" | "workspace_write";
|
|
99
99
|
testCommandGrantCount?: number | undefined;
|
|
100
100
|
}>;
|
|
101
101
|
export type ControlTrustState = z.infer<typeof ControlTrustState>;
|
|
@@ -107,19 +107,19 @@ export declare const ControlTrustListResponse: z.ZodObject<{
|
|
|
107
107
|
/** The user-level trust file backing this state (path disclosure, no content). */
|
|
108
108
|
path: z.ZodString;
|
|
109
109
|
allowFullAccess: z.ZodBoolean;
|
|
110
|
-
accessDefault: z.ZodEnum<["readonly", "workspace_write", "full", "
|
|
110
|
+
accessDefault: z.ZodEnum<["readonly", "workspace_write", "full", "inherit_native"]>;
|
|
111
111
|
testCommandGrantCount: z.ZodDefault<z.ZodNumber>;
|
|
112
112
|
}, "strip", z.ZodTypeAny, {
|
|
113
113
|
repoRoot: string | null;
|
|
114
114
|
path: string;
|
|
115
115
|
allowFullAccess: boolean;
|
|
116
|
-
accessDefault: "
|
|
116
|
+
accessDefault: "full" | "inherit_native" | "readonly" | "workspace_write";
|
|
117
117
|
testCommandGrantCount: number;
|
|
118
118
|
}, {
|
|
119
119
|
repoRoot: string | null;
|
|
120
120
|
path: string;
|
|
121
121
|
allowFullAccess: boolean;
|
|
122
|
-
accessDefault: "
|
|
122
|
+
accessDefault: "full" | "inherit_native" | "readonly" | "workspace_write";
|
|
123
123
|
testCommandGrantCount?: number | undefined;
|
|
124
124
|
}>, "many">;
|
|
125
125
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -127,7 +127,7 @@ export declare const ControlTrustListResponse: z.ZodObject<{
|
|
|
127
127
|
repoRoot: string | null;
|
|
128
128
|
path: string;
|
|
129
129
|
allowFullAccess: boolean;
|
|
130
|
-
accessDefault: "
|
|
130
|
+
accessDefault: "full" | "inherit_native" | "readonly" | "workspace_write";
|
|
131
131
|
testCommandGrantCount: number;
|
|
132
132
|
}[];
|
|
133
133
|
}, {
|
|
@@ -135,7 +135,7 @@ export declare const ControlTrustListResponse: z.ZodObject<{
|
|
|
135
135
|
repoRoot: string | null;
|
|
136
136
|
path: string;
|
|
137
137
|
allowFullAccess: boolean;
|
|
138
|
-
accessDefault: "
|
|
138
|
+
accessDefault: "full" | "inherit_native" | "readonly" | "workspace_write";
|
|
139
139
|
testCommandGrantCount?: number | undefined;
|
|
140
140
|
}[];
|
|
141
141
|
}>;
|