@lensmcp/protocol-types 1.17.4 → 1.18.0

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.
Files changed (2) hide show
  1. package/lib/resources.d.ts +30 -30
  2. package/package.json +1 -1
@@ -13,19 +13,19 @@ export declare const ResourceEnvelopeSchema: z.ZodObject<{
13
13
  }, z.core.$strip>;
14
14
  export type ResourceEnvelope = z.infer<typeof ResourceEnvelopeSchema>;
15
15
  export declare const AgentStatusKindSchema: z.ZodEnum<{
16
- starting: "starting";
17
- clean: "clean";
18
16
  warning: "warning";
17
+ clean: "clean";
19
18
  failing: "failing";
19
+ starting: "starting";
20
20
  }>;
21
21
  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
25
  error: "error";
26
- warning: "warning";
27
26
  debug: "debug";
28
27
  info: "info";
28
+ warning: "warning";
29
29
  fatal: "fatal";
30
30
  }>;
31
31
  title: z.ZodString;
@@ -45,37 +45,37 @@ export declare const AgentBlockingItemSchema: z.ZodObject<{
45
45
  export type AgentBlockingItem = z.infer<typeof AgentBlockingItemSchema>;
46
46
  export declare const AgentChecksSchema: z.ZodObject<{
47
47
  typecheck: z.ZodOptional<z.ZodEnum<{
48
+ unknown: "unknown";
48
49
  passed: "passed";
49
50
  failed: "failed";
50
- unknown: "unknown";
51
51
  }>>;
52
52
  lint: z.ZodOptional<z.ZodEnum<{
53
+ unknown: "unknown";
53
54
  passed: "passed";
54
55
  failed: "failed";
55
- unknown: "unknown";
56
56
  }>>;
57
57
  build: z.ZodOptional<z.ZodEnum<{
58
+ unknown: "unknown";
58
59
  passed: "passed";
59
60
  failed: "failed";
60
- unknown: "unknown";
61
61
  }>>;
62
62
  runtime: z.ZodOptional<z.ZodEnum<{
63
63
  warning: "warning";
64
+ unknown: "unknown";
64
65
  passed: "passed";
65
66
  failed: "failed";
66
- unknown: "unknown";
67
67
  }>>;
68
68
  visual: z.ZodOptional<z.ZodEnum<{
69
69
  warning: "warning";
70
+ unknown: "unknown";
70
71
  passed: "passed";
71
72
  failed: "failed";
72
- unknown: "unknown";
73
73
  }>>;
74
74
  memory: z.ZodOptional<z.ZodEnum<{
75
75
  warning: "warning";
76
+ unknown: "unknown";
76
77
  passed: "passed";
77
78
  failed: "failed";
78
- unknown: "unknown";
79
79
  }>>;
80
80
  }, z.core.$strip>;
81
81
  /**
@@ -109,10 +109,10 @@ export declare const AgentCurrentStatusSchema: z.ZodObject<{
109
109
  updatedAt: z.ZodOptional<z.ZodString>;
110
110
  sessionId: z.ZodString;
111
111
  status: z.ZodEnum<{
112
- starting: "starting";
113
- clean: "clean";
114
112
  warning: "warning";
113
+ clean: "clean";
115
114
  failing: "failing";
115
+ starting: "starting";
116
116
  }>;
117
117
  activeTab: z.ZodOptional<z.ZodString>;
118
118
  tabsWithIssues: z.ZodOptional<z.ZodArray<z.ZodString>>;
@@ -120,9 +120,9 @@ export declare const AgentCurrentStatusSchema: z.ZodObject<{
120
120
  source: z.ZodString;
121
121
  severity: z.ZodEnum<{
122
122
  error: "error";
123
- warning: "warning";
124
123
  debug: "debug";
125
124
  info: "info";
125
+ warning: "warning";
126
126
  fatal: "fatal";
127
127
  }>;
128
128
  title: z.ZodString;
@@ -143,9 +143,9 @@ export declare const AgentCurrentStatusSchema: z.ZodObject<{
143
143
  source: z.ZodString;
144
144
  severity: z.ZodEnum<{
145
145
  error: "error";
146
- warning: "warning";
147
146
  debug: "debug";
148
147
  info: "info";
148
+ warning: "warning";
149
149
  fatal: "fatal";
150
150
  }>;
151
151
  title: z.ZodString;
@@ -165,37 +165,37 @@ export declare const AgentCurrentStatusSchema: z.ZodObject<{
165
165
  suggestedReads: z.ZodArray<z.ZodString>;
166
166
  checks: z.ZodOptional<z.ZodObject<{
167
167
  typecheck: z.ZodOptional<z.ZodEnum<{
168
+ unknown: "unknown";
168
169
  passed: "passed";
169
170
  failed: "failed";
170
- unknown: "unknown";
171
171
  }>>;
172
172
  lint: z.ZodOptional<z.ZodEnum<{
173
+ unknown: "unknown";
173
174
  passed: "passed";
174
175
  failed: "failed";
175
- unknown: "unknown";
176
176
  }>>;
177
177
  build: z.ZodOptional<z.ZodEnum<{
178
+ unknown: "unknown";
178
179
  passed: "passed";
179
180
  failed: "failed";
180
- unknown: "unknown";
181
181
  }>>;
182
182
  runtime: z.ZodOptional<z.ZodEnum<{
183
183
  warning: "warning";
184
+ unknown: "unknown";
184
185
  passed: "passed";
185
186
  failed: "failed";
186
- unknown: "unknown";
187
187
  }>>;
188
188
  visual: z.ZodOptional<z.ZodEnum<{
189
189
  warning: "warning";
190
+ unknown: "unknown";
190
191
  passed: "passed";
191
192
  failed: "failed";
192
- unknown: "unknown";
193
193
  }>>;
194
194
  memory: z.ZodOptional<z.ZodEnum<{
195
195
  warning: "warning";
196
+ unknown: "unknown";
196
197
  passed: "passed";
197
198
  failed: "failed";
198
- unknown: "unknown";
199
199
  }>>;
200
200
  }, z.core.$strip>>;
201
201
  server: z.ZodOptional<z.ZodObject<{
@@ -300,9 +300,9 @@ declare const CheckEntrySchema: z.ZodObject<{
300
300
  rule: z.ZodOptional<z.ZodString>;
301
301
  severity: z.ZodOptional<z.ZodEnum<{
302
302
  error: "error";
303
- warning: "warning";
304
303
  debug: "debug";
305
304
  info: "info";
305
+ warning: "warning";
306
306
  fatal: "fatal";
307
307
  }>>;
308
308
  file: z.ZodOptional<z.ZodString>;
@@ -328,9 +328,9 @@ export declare const TypecheckCurrentSchema: z.ZodObject<{
328
328
  lastReportedAt: z.ZodNumber;
329
329
  lastRunStatus: z.ZodEnum<{
330
330
  error: "error";
331
+ running: "running";
331
332
  clean: "clean";
332
333
  failing: "failing";
333
- running: "running";
334
334
  }>;
335
335
  lastRunDurationMs: z.ZodOptional<z.ZodNumber>;
336
336
  errorCount: z.ZodNumber;
@@ -342,9 +342,9 @@ export declare const TypecheckCurrentSchema: z.ZodObject<{
342
342
  stale: z.ZodBoolean;
343
343
  detail: z.ZodString;
344
344
  status: z.ZodEnum<{
345
+ unknown: "unknown";
345
346
  clean: "clean";
346
347
  failing: "failing";
347
- unknown: "unknown";
348
348
  }>;
349
349
  errorCount: z.ZodNumber;
350
350
  lastRunAt: z.ZodOptional<z.ZodNumber>;
@@ -367,9 +367,9 @@ export declare const TypecheckErrorsSchema: z.ZodObject<{
367
367
  lastReportedAt: z.ZodNumber;
368
368
  lastRunStatus: z.ZodEnum<{
369
369
  error: "error";
370
+ running: "running";
370
371
  clean: "clean";
371
372
  failing: "failing";
372
- running: "running";
373
373
  }>;
374
374
  lastRunDurationMs: z.ZodOptional<z.ZodNumber>;
375
375
  errorCount: z.ZodNumber;
@@ -389,9 +389,9 @@ export declare const TypecheckErrorsSchema: z.ZodObject<{
389
389
  rule: z.ZodOptional<z.ZodString>;
390
390
  severity: z.ZodOptional<z.ZodEnum<{
391
391
  error: "error";
392
- warning: "warning";
393
392
  debug: "debug";
394
393
  info: "info";
394
+ warning: "warning";
395
395
  fatal: "fatal";
396
396
  }>>;
397
397
  file: z.ZodOptional<z.ZodString>;
@@ -418,9 +418,9 @@ export declare const LintCurrentSchema: z.ZodObject<{
418
418
  lastReportedAt: z.ZodNumber;
419
419
  lastRunStatus: z.ZodEnum<{
420
420
  error: "error";
421
+ running: "running";
421
422
  clean: "clean";
422
423
  failing: "failing";
423
- running: "running";
424
424
  }>;
425
425
  lastRunDurationMs: z.ZodOptional<z.ZodNumber>;
426
426
  errorCount: z.ZodNumber;
@@ -432,10 +432,10 @@ export declare const LintCurrentSchema: z.ZodObject<{
432
432
  stale: z.ZodBoolean;
433
433
  detail: z.ZodString;
434
434
  status: z.ZodEnum<{
435
- clean: "clean";
436
435
  warning: "warning";
437
- failing: "failing";
438
436
  unknown: "unknown";
437
+ clean: "clean";
438
+ failing: "failing";
439
439
  }>;
440
440
  errorCount: z.ZodNumber;
441
441
  warningCount: z.ZodNumber;
@@ -459,9 +459,9 @@ export declare const BuildCurrentSchema: z.ZodObject<{
459
459
  lastReportedAt: z.ZodNumber;
460
460
  lastRunStatus: z.ZodEnum<{
461
461
  error: "error";
462
+ running: "running";
462
463
  clean: "clean";
463
464
  failing: "failing";
464
- running: "running";
465
465
  }>;
466
466
  lastRunDurationMs: z.ZodOptional<z.ZodNumber>;
467
467
  errorCount: z.ZodNumber;
@@ -473,10 +473,10 @@ export declare const BuildCurrentSchema: z.ZodObject<{
473
473
  stale: z.ZodBoolean;
474
474
  detail: z.ZodString;
475
475
  status: z.ZodEnum<{
476
- clean: "clean";
477
476
  warning: "warning";
478
- failing: "failing";
479
477
  unknown: "unknown";
478
+ clean: "clean";
479
+ failing: "failing";
480
480
  }>;
481
481
  hmrUpdates: z.ZodNumber;
482
482
  }, z.core.$strip>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lensmcp/protocol-types",
3
- "version": "1.17.4",
3
+ "version": "1.18.0",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "module": "./index.js",