@handlebar/governance-schema 0.0.2 → 0.0.3
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/audit/events.d.ts +5 -5
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/audit/events.d.ts
CHANGED
|
@@ -58,7 +58,7 @@ export declare const RunStartedEventSchema: z.ZodObject<{
|
|
|
58
58
|
}, z.core.$strip>;
|
|
59
59
|
}, z.core.$strip>;
|
|
60
60
|
export declare const HitlMetaSchema: z.ZodObject<{
|
|
61
|
-
|
|
61
|
+
hitlActionId: z.ZodOptional<z.ZodString>;
|
|
62
62
|
fingerprint: z.ZodOptional<z.ZodString>;
|
|
63
63
|
status: z.ZodOptional<z.ZodEnum<{
|
|
64
64
|
none: "none";
|
|
@@ -114,7 +114,7 @@ export declare const ToolDecisionEventSchema: z.ZodObject<{
|
|
|
114
114
|
sizeBytesApprox: z.ZodOptional<z.ZodNumber>;
|
|
115
115
|
}, z.core.$strip>>;
|
|
116
116
|
hitl: z.ZodOptional<z.ZodObject<{
|
|
117
|
-
|
|
117
|
+
hitlActionId: z.ZodOptional<z.ZodString>;
|
|
118
118
|
fingerprint: z.ZodOptional<z.ZodString>;
|
|
119
119
|
status: z.ZodOptional<z.ZodEnum<{
|
|
120
120
|
none: "none";
|
|
@@ -160,7 +160,7 @@ export declare const ToolResultEventSchema: z.ZodObject<{
|
|
|
160
160
|
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
161
161
|
}, z.core.$strip>;
|
|
162
162
|
hitl: z.ZodOptional<z.ZodObject<{
|
|
163
|
-
|
|
163
|
+
hitlActionId: z.ZodOptional<z.ZodString>;
|
|
164
164
|
fingerprint: z.ZodOptional<z.ZodString>;
|
|
165
165
|
status: z.ZodOptional<z.ZodEnum<{
|
|
166
166
|
none: "none";
|
|
@@ -368,7 +368,7 @@ export declare const AuditEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
368
368
|
sizeBytesApprox: z.ZodOptional<z.ZodNumber>;
|
|
369
369
|
}, z.core.$strip>>;
|
|
370
370
|
hitl: z.ZodOptional<z.ZodObject<{
|
|
371
|
-
|
|
371
|
+
hitlActionId: z.ZodOptional<z.ZodString>;
|
|
372
372
|
fingerprint: z.ZodOptional<z.ZodString>;
|
|
373
373
|
status: z.ZodOptional<z.ZodEnum<{
|
|
374
374
|
none: "none";
|
|
@@ -413,7 +413,7 @@ export declare const AuditEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
413
413
|
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
414
414
|
}, z.core.$strip>;
|
|
415
415
|
hitl: z.ZodOptional<z.ZodObject<{
|
|
416
|
-
|
|
416
|
+
hitlActionId: z.ZodOptional<z.ZodString>;
|
|
417
417
|
fingerprint: z.ZodOptional<z.ZodString>;
|
|
418
418
|
status: z.ZodOptional<z.ZodEnum<{
|
|
419
419
|
none: "none";
|
package/dist/index.js
CHANGED
|
@@ -12663,7 +12663,7 @@ var ToolIdentitySchema = exports_external.object({
|
|
|
12663
12663
|
});
|
|
12664
12664
|
var ToolArgsSchema = exports_external.record(exports_external.string(), exports_external.unknown());
|
|
12665
12665
|
var HitlMetaSchema = exports_external.object({
|
|
12666
|
-
|
|
12666
|
+
hitlActionId: exports_external.string().optional(),
|
|
12667
12667
|
fingerprint: exports_external.string().optional(),
|
|
12668
12668
|
status: exports_external.enum(["none", "pending", "approved", "denied"]).optional()
|
|
12669
12669
|
});
|