@handlebar/governance-schema 0.0.6-dev.4 → 0.0.6-dev.5
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 +2 -2
- package/dist/audit/run-metrics.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/audit/events.d.ts
CHANGED
|
@@ -192,7 +192,7 @@ export declare const ToolResultEventSchema: z.ZodObject<{
|
|
|
192
192
|
duration_ms: "duration_ms";
|
|
193
193
|
records_in: "records_in";
|
|
194
194
|
records_out: "records_out";
|
|
195
|
-
}
|
|
195
|
+
}> & z.core.$partial, z.ZodObject<{
|
|
196
196
|
value: z.ZodNumber;
|
|
197
197
|
unit: z.ZodOptional<z.ZodString>;
|
|
198
198
|
}, z.core.$strip>>;
|
|
@@ -471,7 +471,7 @@ export declare const AuditEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
471
471
|
duration_ms: "duration_ms";
|
|
472
472
|
records_in: "records_in";
|
|
473
473
|
records_out: "records_out";
|
|
474
|
-
}
|
|
474
|
+
}> & z.core.$partial, z.ZodObject<{
|
|
475
475
|
value: z.ZodNumber;
|
|
476
476
|
unit: z.ZodOptional<z.ZodString>;
|
|
477
477
|
}, z.core.$strip>>;
|
|
@@ -14,7 +14,7 @@ export declare const AgentMetrics: z.ZodObject<{
|
|
|
14
14
|
duration_ms: "duration_ms";
|
|
15
15
|
records_in: "records_in";
|
|
16
16
|
records_out: "records_out";
|
|
17
|
-
}
|
|
17
|
+
}> & z.core.$partial, z.ZodObject<{
|
|
18
18
|
value: z.ZodNumber;
|
|
19
19
|
unit: z.ZodOptional<z.ZodString>;
|
|
20
20
|
}, z.core.$strip>>;
|
package/dist/index.js
CHANGED
|
@@ -12668,7 +12668,7 @@ var AgentMetricInfo = exports_external.object({
|
|
|
12668
12668
|
value: exports_external.number(),
|
|
12669
12669
|
unit: exports_external.string().min(1).max(64).optional()
|
|
12670
12670
|
});
|
|
12671
|
-
var InbuiltAgentMetrics = exports_external.
|
|
12671
|
+
var InbuiltAgentMetrics = exports_external.partialRecord(InbuiltAgentMetricKind, AgentMetricInfo);
|
|
12672
12672
|
var CustomAgentMetrics = exports_external.record(CustomAgentMetricKind, AgentMetricInfo);
|
|
12673
12673
|
var AgentMetrics = exports_external.object({
|
|
12674
12674
|
inbuilt: InbuiltAgentMetrics,
|