@lensmcp/protocol-types 1.16.2 → 1.16.4
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/lib/event.d.ts +2 -2
- package/lib/resources.d.ts +3 -3
- package/package.json +1 -1
package/lib/event.d.ts
CHANGED
|
@@ -45,10 +45,10 @@ export declare const EventCategorySchema: z.ZodEnum<{
|
|
|
45
45
|
}>;
|
|
46
46
|
export type EventCategory = z.infer<typeof EventCategorySchema>;
|
|
47
47
|
export declare const SeveritySchema: z.ZodEnum<{
|
|
48
|
+
error: "error";
|
|
48
49
|
debug: "debug";
|
|
49
50
|
info: "info";
|
|
50
51
|
warning: "warning";
|
|
51
|
-
error: "error";
|
|
52
52
|
fatal: "fatal";
|
|
53
53
|
}>;
|
|
54
54
|
export type Severity = z.infer<typeof SeveritySchema>;
|
|
@@ -100,10 +100,10 @@ export declare const BaseEventSchema: z.ZodObject<{
|
|
|
100
100
|
cluster: "cluster";
|
|
101
101
|
}>;
|
|
102
102
|
severity: z.ZodEnum<{
|
|
103
|
+
error: "error";
|
|
103
104
|
debug: "debug";
|
|
104
105
|
info: "info";
|
|
105
106
|
warning: "warning";
|
|
106
|
-
error: "error";
|
|
107
107
|
fatal: "fatal";
|
|
108
108
|
}>;
|
|
109
109
|
context: z.ZodObject<{
|
package/lib/resources.d.ts
CHANGED
|
@@ -22,10 +22,10 @@ export type AgentStatusKind = z.infer<typeof AgentStatusKindSchema>;
|
|
|
22
22
|
export declare const AgentBlockingItemSchema: z.ZodObject<{
|
|
23
23
|
source: z.ZodString;
|
|
24
24
|
severity: z.ZodEnum<{
|
|
25
|
+
error: "error";
|
|
25
26
|
debug: "debug";
|
|
26
27
|
info: "info";
|
|
27
28
|
warning: "warning";
|
|
28
|
-
error: "error";
|
|
29
29
|
fatal: "fatal";
|
|
30
30
|
}>;
|
|
31
31
|
title: z.ZodString;
|
|
@@ -95,10 +95,10 @@ export declare const AgentCurrentStatusSchema: z.ZodObject<{
|
|
|
95
95
|
blocking: z.ZodArray<z.ZodObject<{
|
|
96
96
|
source: z.ZodString;
|
|
97
97
|
severity: z.ZodEnum<{
|
|
98
|
+
error: "error";
|
|
98
99
|
debug: "debug";
|
|
99
100
|
info: "info";
|
|
100
101
|
warning: "warning";
|
|
101
|
-
error: "error";
|
|
102
102
|
fatal: "fatal";
|
|
103
103
|
}>;
|
|
104
104
|
title: z.ZodString;
|
|
@@ -118,10 +118,10 @@ export declare const AgentCurrentStatusSchema: z.ZodObject<{
|
|
|
118
118
|
warnings: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
119
119
|
source: z.ZodString;
|
|
120
120
|
severity: z.ZodEnum<{
|
|
121
|
+
error: "error";
|
|
121
122
|
debug: "debug";
|
|
122
123
|
info: "info";
|
|
123
124
|
warning: "warning";
|
|
124
|
-
error: "error";
|
|
125
125
|
fatal: "fatal";
|
|
126
126
|
}>;
|
|
127
127
|
title: z.ZodString;
|