accessflow-mcp-server 2.3.6 → 2.3.7-beta.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.
Files changed (33) hide show
  1. package/dist/schemas/apiSchemas.d.ts +1107 -0
  2. package/dist/schemas/apiSchemas.d.ts.map +1 -0
  3. package/dist/schemas/apiSchemas.js +231 -0
  4. package/dist/schemas/apiSchemas.js.map +1 -0
  5. package/dist/services/apiSchemas.d.ts +347 -0
  6. package/dist/services/apiSchemas.d.ts.map +1 -1
  7. package/dist/services/apiSchemas.js +18 -1
  8. package/dist/services/apiSchemas.js.map +1 -1
  9. package/dist/services/apiService.d.ts +3 -3
  10. package/dist/services/apiService.d.ts.map +1 -1
  11. package/dist/services/apiService.js +15 -5
  12. package/dist/services/apiService.js.map +1 -1
  13. package/dist/tools/getIssueRemediation.d.ts +5 -0
  14. package/dist/tools/getIssueRemediation.d.ts.map +1 -1
  15. package/dist/tools/getIssueRemediation.js +29 -21
  16. package/dist/tools/getIssueRemediation.js.map +1 -1
  17. package/dist/tools/getMostUrgentIssues.d.ts +11 -1
  18. package/dist/tools/getMostUrgentIssues.d.ts.map +1 -1
  19. package/dist/tools/getMostUrgentIssues.js +40 -19
  20. package/dist/tools/getMostUrgentIssues.js.map +1 -1
  21. package/dist/tools/submitFeedback.js +1 -1
  22. package/dist/tools/submitFeedback.js.map +1 -1
  23. package/dist/tools/toolRegistry.d.ts +14 -1
  24. package/dist/tools/toolRegistry.d.ts.map +1 -1
  25. package/dist/types/issues.d.ts +4 -1
  26. package/dist/types/issues.d.ts.map +1 -1
  27. package/dist/types/remediation.d.ts +1 -1
  28. package/dist/types/remediation.d.ts.map +1 -1
  29. package/dist/utils/remediation.d.ts +3 -3
  30. package/dist/utils/remediation.d.ts.map +1 -1
  31. package/dist/utils/remediation.js +2 -6
  32. package/dist/utils/remediation.js.map +1 -1
  33. package/package.json +1 -1
@@ -0,0 +1,1107 @@
1
+ /**
2
+ * Zod validation schemas for API responses
3
+ * These schemas match the server-side BasicIssueSchema and IssueSchema
4
+ */
5
+ import { z } from 'zod';
6
+ export declare const Device: z.ZodEnum<{
7
+ desktop: "desktop";
8
+ mobile: "mobile";
9
+ cross: "cross";
10
+ }>;
11
+ export declare const ResolutionType: z.ZodEnum<{
12
+ none: "none";
13
+ automatic: "automatic";
14
+ manual: "manual";
15
+ dismissed: "dismissed";
16
+ }>;
17
+ export declare const SeveritySchema: z.ZodEnum<{
18
+ extreme: "extreme";
19
+ high: "high";
20
+ medium: "medium";
21
+ low: "low";
22
+ }>;
23
+ export declare const WCAGLevel: z.ZodEnum<{
24
+ none: "none";
25
+ A: "A";
26
+ AA: "AA";
27
+ AAA: "AAA";
28
+ }>;
29
+ export declare const AltTextFeedbackSchema: z.ZodEnum<{
30
+ positive: "positive";
31
+ negative: "negative";
32
+ }>;
33
+ export declare const DismissedReason: z.ZodEnum<{
34
+ other: "other";
35
+ falsePositive: "falsePositive";
36
+ irrelevant: "irrelevant";
37
+ design: "design";
38
+ }>;
39
+ export declare const Criteria: z.ZodEnum<{
40
+ clickables: "clickables";
41
+ readability: "readability";
42
+ headings: "headings";
43
+ tables: "tables";
44
+ errors: "errors";
45
+ context: "context";
46
+ forms: "forms";
47
+ keyboard: "keyboard";
48
+ graphics: "graphics";
49
+ navigation: "navigation";
50
+ document: "document";
51
+ carousels: "carousels";
52
+ aria: "aria";
53
+ general: "general";
54
+ "interactive-content": "interactive-content";
55
+ landmarks: "landmarks";
56
+ lists: "lists";
57
+ metadata: "metadata";
58
+ tabs: "tabs";
59
+ breadcrumbs: "breadcrumbs";
60
+ dialogs: "dialogs";
61
+ "text-content": "text-content";
62
+ "moving-content": "moving-content";
63
+ }>;
64
+ export declare const DismissedReasonSchema: z.ZodOptional<z.ZodNullable<z.ZodObject<{
65
+ comment: z.ZodOptional<z.ZodString>;
66
+ type: z.ZodOptional<z.ZodEnum<{
67
+ other: "other";
68
+ falsePositive: "falsePositive";
69
+ irrelevant: "irrelevant";
70
+ design: "design";
71
+ }>>;
72
+ }, z.core.$strip>>>;
73
+ export declare const LastStatusChangeLogSchema: z.ZodOptional<z.ZodNullable<z.ZodObject<{
74
+ autoResolved: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
75
+ date: z.ZodOptional<z.ZodString>;
76
+ status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
77
+ none: "none";
78
+ automatic: "automatic";
79
+ manual: "manual";
80
+ dismissed: "dismissed";
81
+ }>>>;
82
+ userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
83
+ userName: z.ZodOptional<z.ZodString>;
84
+ }, z.core.$strip>>>;
85
+ export declare const AltTextSuggestionSchema: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
86
+ export declare const FalsePositiveAiValidationSchema: z.ZodObject<{
87
+ feedback: z.ZodDefault<z.ZodNullable<z.ZodObject<{
88
+ helpful: z.ZodBoolean;
89
+ userId: z.ZodString;
90
+ userText: z.ZodString;
91
+ }, z.core.$strip>>>;
92
+ type: z.ZodEnum<{
93
+ falsePositive: "falsePositive";
94
+ }>;
95
+ isFalsePositive: z.ZodBoolean;
96
+ reasoning: z.ZodString;
97
+ }, z.core.$strip>;
98
+ export declare const RuleSchema: z.ZodObject<{
99
+ addSROnlyCSS: z.ZodBoolean;
100
+ confidence: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
101
+ low: "low";
102
+ }>>>;
103
+ criteria: z.ZodEnum<{
104
+ clickables: "clickables";
105
+ readability: "readability";
106
+ headings: "headings";
107
+ tables: "tables";
108
+ errors: "errors";
109
+ context: "context";
110
+ forms: "forms";
111
+ keyboard: "keyboard";
112
+ graphics: "graphics";
113
+ navigation: "navigation";
114
+ document: "document";
115
+ carousels: "carousels";
116
+ aria: "aria";
117
+ general: "general";
118
+ "interactive-content": "interactive-content";
119
+ landmarks: "landmarks";
120
+ lists: "lists";
121
+ metadata: "metadata";
122
+ tabs: "tabs";
123
+ breadcrumbs: "breadcrumbs";
124
+ dialogs: "dialogs";
125
+ "text-content": "text-content";
126
+ "moving-content": "moving-content";
127
+ }>;
128
+ eligibleForAutoResolve: z.ZodReadonly<z.ZodDefault<z.ZodBoolean>>;
129
+ engineRules: z.ZodDefault<z.ZodArray<z.ZodString>>;
130
+ id: z.ZodString;
131
+ isAutoResolvable: z.ZodDefault<z.ZodBoolean>;
132
+ isEligibleForFalsePositiveAiValidation: z.ZodDefault<z.ZodBoolean>;
133
+ issueDescription: z.ZodString;
134
+ issueResolution: z.ZodString;
135
+ issueTutorialLink: z.ZodNullable<z.ZodString>;
136
+ issueWCAGLink: z.ZodOptional<z.ZodString>;
137
+ issueWCAGLinks: z.ZodDefault<z.ZodNullable<z.ZodArray<z.ZodString>>>;
138
+ name: z.ZodString;
139
+ severity: z.ZodEnum<{
140
+ extreme: "extreme";
141
+ high: "high";
142
+ medium: "medium";
143
+ low: "low";
144
+ }>;
145
+ shortCode: z.ZodString;
146
+ shortDescription: z.ZodString;
147
+ suggestedFix: z.ZodArray<z.ZodObject<{
148
+ suggestedFixHTML: z.ZodString;
149
+ suggestedFixKey: z.ZodString;
150
+ suggestedFixType: z.ZodEnum<{
151
+ attribute: "attribute";
152
+ srOnly: "srOnly";
153
+ tag: "tag";
154
+ removeAttribute: "removeAttribute";
155
+ }>;
156
+ suggestedFixValue: z.ZodString;
157
+ }, z.core.$strip>>;
158
+ WCAGLevel: z.ZodEnum<{
159
+ none: "none";
160
+ A: "A";
161
+ AA: "AA";
162
+ AAA: "AAA";
163
+ }>;
164
+ }, z.core.$strip>;
165
+ export declare const BasicIssueSchema: z.ZodObject<{
166
+ altTextFeedback: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
167
+ positive: "positive";
168
+ negative: "negative";
169
+ }>>>;
170
+ altTextSuggestions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
171
+ assignedUser: z.ZodNullable<z.ZodString>;
172
+ autoResolved: z.ZodOptional<z.ZodBoolean>;
173
+ autoResolvedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
174
+ autoResolvedDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
175
+ commentsCount: z.ZodNumber;
176
+ device: z.ZodEnum<{
177
+ desktop: "desktop";
178
+ mobile: "mobile";
179
+ cross: "cross";
180
+ }>;
181
+ dismissedBy: z.ZodDefault<z.ZodNullable<z.ZodString>>;
182
+ dismissedDate: z.ZodDefault<z.ZodNullable<z.ZodString>>;
183
+ dismissedReason: z.ZodDefault<z.ZodNullable<z.ZodObject<{
184
+ comment: z.ZodString;
185
+ type: z.ZodEnum<{
186
+ other: "other";
187
+ falsePositive: "falsePositive";
188
+ irrelevant: "irrelevant";
189
+ design: "design";
190
+ }>;
191
+ }, z.core.$strip>>>;
192
+ displayName: z.ZodDefault<z.ZodNullable<z.ZodString>>;
193
+ exported: z.ZodBoolean;
194
+ id: z.ZodString;
195
+ irrelevant: z.ZodBoolean;
196
+ lastStatusChangeLog: z.ZodDefault<z.ZodNullable<z.ZodObject<{
197
+ autoResolved: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
198
+ date: z.ZodString;
199
+ status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
200
+ none: "none";
201
+ automatic: "automatic";
202
+ manual: "manual";
203
+ dismissed: "dismissed";
204
+ }>>>;
205
+ userId: z.ZodNullable<z.ZodString>;
206
+ userName: z.ZodString;
207
+ }, z.core.$strip>>>;
208
+ name: z.ZodString;
209
+ offsetX: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
210
+ offsetXMobile: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
211
+ offsetY: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
212
+ offsetYMobile: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
213
+ relatedFunnelId: z.ZodNullable<z.ZodString>;
214
+ relatedRuleId: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
215
+ $oid: z.ZodString;
216
+ }, z.core.$strip>]>;
217
+ relatedWebpageId: z.ZodString;
218
+ resolution: z.ZodEnum<{
219
+ none: "none";
220
+ automatic: "automatic";
221
+ manual: "manual";
222
+ dismissed: "dismissed";
223
+ }>;
224
+ selector: z.ZodNullable<z.ZodString>;
225
+ severity: z.ZodEnum<{
226
+ extreme: "extreme";
227
+ high: "high";
228
+ medium: "medium";
229
+ low: "low";
230
+ }>;
231
+ siteOccurrences: z.ZodNumber;
232
+ src: z.ZodNullable<z.ZodString>;
233
+ templated: z.ZodBoolean;
234
+ WCAGLevel: z.ZodEnum<{
235
+ none: "none";
236
+ A: "A";
237
+ AA: "AA";
238
+ AAA: "AAA";
239
+ }>;
240
+ webpath: z.ZodString;
241
+ }, z.core.$strip>;
242
+ export declare const McpBasicIssueSchema: z.ZodObject<{
243
+ altTextFeedback: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
244
+ positive: "positive";
245
+ negative: "negative";
246
+ }>>>;
247
+ altTextSuggestions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
248
+ assignedUser: z.ZodNullable<z.ZodString>;
249
+ autoResolved: z.ZodOptional<z.ZodBoolean>;
250
+ autoResolvedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
251
+ autoResolvedDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
252
+ commentsCount: z.ZodNumber;
253
+ device: z.ZodEnum<{
254
+ desktop: "desktop";
255
+ mobile: "mobile";
256
+ cross: "cross";
257
+ }>;
258
+ dismissedBy: z.ZodDefault<z.ZodNullable<z.ZodString>>;
259
+ dismissedDate: z.ZodDefault<z.ZodNullable<z.ZodString>>;
260
+ dismissedReason: z.ZodDefault<z.ZodNullable<z.ZodObject<{
261
+ comment: z.ZodString;
262
+ type: z.ZodEnum<{
263
+ other: "other";
264
+ falsePositive: "falsePositive";
265
+ irrelevant: "irrelevant";
266
+ design: "design";
267
+ }>;
268
+ }, z.core.$strip>>>;
269
+ exported: z.ZodBoolean;
270
+ id: z.ZodString;
271
+ irrelevant: z.ZodBoolean;
272
+ lastStatusChangeLog: z.ZodDefault<z.ZodNullable<z.ZodObject<{
273
+ autoResolved: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
274
+ date: z.ZodString;
275
+ status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
276
+ none: "none";
277
+ automatic: "automatic";
278
+ manual: "manual";
279
+ dismissed: "dismissed";
280
+ }>>>;
281
+ userId: z.ZodNullable<z.ZodString>;
282
+ userName: z.ZodString;
283
+ }, z.core.$strip>>>;
284
+ name: z.ZodString;
285
+ offsetX: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
286
+ offsetXMobile: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
287
+ offsetY: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
288
+ offsetYMobile: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
289
+ relatedFunnelId: z.ZodNullable<z.ZodString>;
290
+ relatedRuleId: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
291
+ $oid: z.ZodString;
292
+ }, z.core.$strip>]>;
293
+ relatedWebpageId: z.ZodString;
294
+ resolution: z.ZodEnum<{
295
+ none: "none";
296
+ automatic: "automatic";
297
+ manual: "manual";
298
+ dismissed: "dismissed";
299
+ }>;
300
+ selector: z.ZodNullable<z.ZodString>;
301
+ severity: z.ZodEnum<{
302
+ extreme: "extreme";
303
+ high: "high";
304
+ medium: "medium";
305
+ low: "low";
306
+ }>;
307
+ siteOccurrences: z.ZodNumber;
308
+ src: z.ZodNullable<z.ZodString>;
309
+ templated: z.ZodBoolean;
310
+ WCAGLevel: z.ZodEnum<{
311
+ none: "none";
312
+ A: "A";
313
+ AA: "AA";
314
+ AAA: "AAA";
315
+ }>;
316
+ webpath: z.ZodString;
317
+ displayName: z.ZodString;
318
+ criteria: z.ZodEnum<{
319
+ clickables: "clickables";
320
+ readability: "readability";
321
+ headings: "headings";
322
+ tables: "tables";
323
+ errors: "errors";
324
+ context: "context";
325
+ forms: "forms";
326
+ keyboard: "keyboard";
327
+ graphics: "graphics";
328
+ navigation: "navigation";
329
+ document: "document";
330
+ carousels: "carousels";
331
+ aria: "aria";
332
+ general: "general";
333
+ "interactive-content": "interactive-content";
334
+ landmarks: "landmarks";
335
+ lists: "lists";
336
+ metadata: "metadata";
337
+ tabs: "tabs";
338
+ breadcrumbs: "breadcrumbs";
339
+ dialogs: "dialogs";
340
+ "text-content": "text-content";
341
+ "moving-content": "moving-content";
342
+ }>;
343
+ occurrences: z.ZodOptional<z.ZodNumber>;
344
+ }, z.core.$strip>;
345
+ export declare const AuditSource: z.ZodEnum<{
346
+ PLATFORM: "PLATFORM";
347
+ SDK: "SDK";
348
+ }>;
349
+ export declare const SdkIssueContextSchema: z.ZodObject<{
350
+ snippet: z.ZodDefault<z.ZodNullable<z.ZodString>>;
351
+ }, z.core.$strip>;
352
+ export declare const McpAuditIssueSchema: z.ZodObject<{
353
+ altTextFeedback: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
354
+ positive: "positive";
355
+ negative: "negative";
356
+ }>>>;
357
+ altTextSuggestions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
358
+ assignedUser: z.ZodNullable<z.ZodString>;
359
+ autoResolved: z.ZodOptional<z.ZodBoolean>;
360
+ autoResolvedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
361
+ autoResolvedDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
362
+ commentsCount: z.ZodNumber;
363
+ device: z.ZodEnum<{
364
+ desktop: "desktop";
365
+ mobile: "mobile";
366
+ cross: "cross";
367
+ }>;
368
+ dismissedBy: z.ZodDefault<z.ZodNullable<z.ZodString>>;
369
+ dismissedDate: z.ZodDefault<z.ZodNullable<z.ZodString>>;
370
+ dismissedReason: z.ZodDefault<z.ZodNullable<z.ZodObject<{
371
+ comment: z.ZodString;
372
+ type: z.ZodEnum<{
373
+ other: "other";
374
+ falsePositive: "falsePositive";
375
+ irrelevant: "irrelevant";
376
+ design: "design";
377
+ }>;
378
+ }, z.core.$strip>>>;
379
+ exported: z.ZodBoolean;
380
+ id: z.ZodString;
381
+ irrelevant: z.ZodBoolean;
382
+ lastStatusChangeLog: z.ZodDefault<z.ZodNullable<z.ZodObject<{
383
+ autoResolved: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
384
+ date: z.ZodString;
385
+ status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
386
+ none: "none";
387
+ automatic: "automatic";
388
+ manual: "manual";
389
+ dismissed: "dismissed";
390
+ }>>>;
391
+ userId: z.ZodNullable<z.ZodString>;
392
+ userName: z.ZodString;
393
+ }, z.core.$strip>>>;
394
+ name: z.ZodString;
395
+ offsetX: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
396
+ offsetXMobile: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
397
+ offsetY: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
398
+ offsetYMobile: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
399
+ relatedFunnelId: z.ZodNullable<z.ZodString>;
400
+ relatedRuleId: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
401
+ $oid: z.ZodString;
402
+ }, z.core.$strip>]>;
403
+ relatedWebpageId: z.ZodString;
404
+ resolution: z.ZodEnum<{
405
+ none: "none";
406
+ automatic: "automatic";
407
+ manual: "manual";
408
+ dismissed: "dismissed";
409
+ }>;
410
+ selector: z.ZodNullable<z.ZodString>;
411
+ severity: z.ZodEnum<{
412
+ extreme: "extreme";
413
+ high: "high";
414
+ medium: "medium";
415
+ low: "low";
416
+ }>;
417
+ siteOccurrences: z.ZodNumber;
418
+ src: z.ZodNullable<z.ZodString>;
419
+ templated: z.ZodBoolean;
420
+ WCAGLevel: z.ZodEnum<{
421
+ none: "none";
422
+ A: "A";
423
+ AA: "AA";
424
+ AAA: "AAA";
425
+ }>;
426
+ webpath: z.ZodString;
427
+ displayName: z.ZodString;
428
+ criteria: z.ZodEnum<{
429
+ clickables: "clickables";
430
+ readability: "readability";
431
+ headings: "headings";
432
+ tables: "tables";
433
+ errors: "errors";
434
+ context: "context";
435
+ forms: "forms";
436
+ keyboard: "keyboard";
437
+ graphics: "graphics";
438
+ navigation: "navigation";
439
+ document: "document";
440
+ carousels: "carousels";
441
+ aria: "aria";
442
+ general: "general";
443
+ "interactive-content": "interactive-content";
444
+ landmarks: "landmarks";
445
+ lists: "lists";
446
+ metadata: "metadata";
447
+ tabs: "tabs";
448
+ breadcrumbs: "breadcrumbs";
449
+ dialogs: "dialogs";
450
+ "text-content": "text-content";
451
+ "moving-content": "moving-content";
452
+ }>;
453
+ occurrences: z.ZodOptional<z.ZodNumber>;
454
+ sdkContext: z.ZodDefault<z.ZodNullable<z.ZodObject<{
455
+ snippet: z.ZodDefault<z.ZodNullable<z.ZodString>>;
456
+ }, z.core.$strip>>>;
457
+ }, z.core.$strip>;
458
+ export declare const IssueSchema: z.ZodObject<{
459
+ altTextFeedback: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
460
+ positive: "positive";
461
+ negative: "negative";
462
+ }>>>;
463
+ altTextSuggestions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
464
+ assignedUser: z.ZodNullable<z.ZodString>;
465
+ autoResolved: z.ZodOptional<z.ZodBoolean>;
466
+ autoResolvedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
467
+ autoResolvedDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
468
+ commentsCount: z.ZodNumber;
469
+ device: z.ZodEnum<{
470
+ desktop: "desktop";
471
+ mobile: "mobile";
472
+ cross: "cross";
473
+ }>;
474
+ dismissedBy: z.ZodDefault<z.ZodNullable<z.ZodString>>;
475
+ dismissedDate: z.ZodDefault<z.ZodNullable<z.ZodString>>;
476
+ dismissedReason: z.ZodDefault<z.ZodNullable<z.ZodObject<{
477
+ comment: z.ZodString;
478
+ type: z.ZodEnum<{
479
+ other: "other";
480
+ falsePositive: "falsePositive";
481
+ irrelevant: "irrelevant";
482
+ design: "design";
483
+ }>;
484
+ }, z.core.$strip>>>;
485
+ displayName: z.ZodDefault<z.ZodNullable<z.ZodString>>;
486
+ exported: z.ZodBoolean;
487
+ id: z.ZodString;
488
+ lastStatusChangeLog: z.ZodDefault<z.ZodNullable<z.ZodObject<{
489
+ autoResolved: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
490
+ date: z.ZodString;
491
+ status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
492
+ none: "none";
493
+ automatic: "automatic";
494
+ manual: "manual";
495
+ dismissed: "dismissed";
496
+ }>>>;
497
+ userId: z.ZodNullable<z.ZodString>;
498
+ userName: z.ZodString;
499
+ }, z.core.$strip>>>;
500
+ name: z.ZodString;
501
+ offsetX: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
502
+ offsetXMobile: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
503
+ offsetY: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
504
+ offsetYMobile: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
505
+ relatedFunnelId: z.ZodNullable<z.ZodString>;
506
+ relatedRuleId: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
507
+ $oid: z.ZodString;
508
+ }, z.core.$strip>]>;
509
+ relatedWebpageId: z.ZodString;
510
+ resolution: z.ZodEnum<{
511
+ none: "none";
512
+ automatic: "automatic";
513
+ manual: "manual";
514
+ dismissed: "dismissed";
515
+ }>;
516
+ selector: z.ZodNullable<z.ZodString>;
517
+ severity: z.ZodEnum<{
518
+ extreme: "extreme";
519
+ high: "high";
520
+ medium: "medium";
521
+ low: "low";
522
+ }>;
523
+ siteOccurrences: z.ZodNumber;
524
+ src: z.ZodNullable<z.ZodString>;
525
+ templated: z.ZodBoolean;
526
+ WCAGLevel: z.ZodEnum<{
527
+ none: "none";
528
+ A: "A";
529
+ AA: "AA";
530
+ AAA: "AAA";
531
+ }>;
532
+ webpath: z.ZodString;
533
+ aiValidations: z.ZodDefault<z.ZodArray<z.ZodObject<{
534
+ feedback: z.ZodDefault<z.ZodNullable<z.ZodObject<{
535
+ helpful: z.ZodBoolean;
536
+ userId: z.ZodString;
537
+ userText: z.ZodString;
538
+ }, z.core.$strip>>>;
539
+ type: z.ZodEnum<{
540
+ falsePositive: "falsePositive";
541
+ }>;
542
+ isFalsePositive: z.ZodBoolean;
543
+ reasoning: z.ZodString;
544
+ }, z.core.$strip>>>;
545
+ created: z.ZodString;
546
+ HTML: z.ZodString;
547
+ irrelevant: z.ZodBoolean;
548
+ issueScreenshotUrl: z.ZodNullable<z.ZodString>;
549
+ modified: z.ZodString;
550
+ occurrences: z.ZodNumber;
551
+ suggestionLabel: z.ZodString;
552
+ suggestionType: z.ZodString;
553
+ webpage: z.ZodNullable<z.ZodObject<{
554
+ id: z.ZodString;
555
+ mainpage: z.ZodBoolean;
556
+ webpath: z.ZodString;
557
+ }, z.core.$strip>>;
558
+ webpages: z.ZodOptional<z.ZodArray<z.ZodObject<{
559
+ id: z.ZodString;
560
+ name: z.ZodString;
561
+ webpath: z.ZodString;
562
+ }, z.core.$strip>>>;
563
+ }, z.core.$strip>;
564
+ export declare const McpDetailIssueSchema: z.ZodObject<{
565
+ altTextFeedback: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
566
+ positive: "positive";
567
+ negative: "negative";
568
+ }>>>;
569
+ altTextSuggestions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
570
+ assignedUser: z.ZodNullable<z.ZodString>;
571
+ autoResolved: z.ZodOptional<z.ZodBoolean>;
572
+ autoResolvedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
573
+ autoResolvedDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
574
+ commentsCount: z.ZodNumber;
575
+ device: z.ZodEnum<{
576
+ desktop: "desktop";
577
+ mobile: "mobile";
578
+ cross: "cross";
579
+ }>;
580
+ dismissedBy: z.ZodDefault<z.ZodNullable<z.ZodString>>;
581
+ dismissedDate: z.ZodDefault<z.ZodNullable<z.ZodString>>;
582
+ dismissedReason: z.ZodDefault<z.ZodNullable<z.ZodObject<{
583
+ comment: z.ZodString;
584
+ type: z.ZodEnum<{
585
+ other: "other";
586
+ falsePositive: "falsePositive";
587
+ irrelevant: "irrelevant";
588
+ design: "design";
589
+ }>;
590
+ }, z.core.$strip>>>;
591
+ exported: z.ZodBoolean;
592
+ id: z.ZodString;
593
+ lastStatusChangeLog: z.ZodDefault<z.ZodNullable<z.ZodObject<{
594
+ autoResolved: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
595
+ date: z.ZodString;
596
+ status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
597
+ none: "none";
598
+ automatic: "automatic";
599
+ manual: "manual";
600
+ dismissed: "dismissed";
601
+ }>>>;
602
+ userId: z.ZodNullable<z.ZodString>;
603
+ userName: z.ZodString;
604
+ }, z.core.$strip>>>;
605
+ name: z.ZodString;
606
+ offsetX: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
607
+ offsetXMobile: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
608
+ offsetY: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
609
+ offsetYMobile: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
610
+ relatedFunnelId: z.ZodNullable<z.ZodString>;
611
+ relatedRuleId: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
612
+ $oid: z.ZodString;
613
+ }, z.core.$strip>]>;
614
+ relatedWebpageId: z.ZodString;
615
+ resolution: z.ZodEnum<{
616
+ none: "none";
617
+ automatic: "automatic";
618
+ manual: "manual";
619
+ dismissed: "dismissed";
620
+ }>;
621
+ selector: z.ZodNullable<z.ZodString>;
622
+ severity: z.ZodEnum<{
623
+ extreme: "extreme";
624
+ high: "high";
625
+ medium: "medium";
626
+ low: "low";
627
+ }>;
628
+ siteOccurrences: z.ZodNumber;
629
+ src: z.ZodNullable<z.ZodString>;
630
+ templated: z.ZodBoolean;
631
+ WCAGLevel: z.ZodEnum<{
632
+ none: "none";
633
+ A: "A";
634
+ AA: "AA";
635
+ AAA: "AAA";
636
+ }>;
637
+ webpath: z.ZodString;
638
+ aiValidations: z.ZodDefault<z.ZodArray<z.ZodObject<{
639
+ feedback: z.ZodDefault<z.ZodNullable<z.ZodObject<{
640
+ helpful: z.ZodBoolean;
641
+ userId: z.ZodString;
642
+ userText: z.ZodString;
643
+ }, z.core.$strip>>>;
644
+ type: z.ZodEnum<{
645
+ falsePositive: "falsePositive";
646
+ }>;
647
+ isFalsePositive: z.ZodBoolean;
648
+ reasoning: z.ZodString;
649
+ }, z.core.$strip>>>;
650
+ created: z.ZodString;
651
+ HTML: z.ZodString;
652
+ irrelevant: z.ZodBoolean;
653
+ issueScreenshotUrl: z.ZodNullable<z.ZodString>;
654
+ modified: z.ZodString;
655
+ occurrences: z.ZodNumber;
656
+ suggestionLabel: z.ZodString;
657
+ suggestionType: z.ZodString;
658
+ webpage: z.ZodNullable<z.ZodObject<{
659
+ id: z.ZodString;
660
+ mainpage: z.ZodBoolean;
661
+ webpath: z.ZodString;
662
+ }, z.core.$strip>>;
663
+ webpages: z.ZodOptional<z.ZodArray<z.ZodObject<{
664
+ id: z.ZodString;
665
+ name: z.ZodString;
666
+ webpath: z.ZodString;
667
+ }, z.core.$strip>>>;
668
+ displayName: z.ZodString;
669
+ criteria: z.ZodEnum<{
670
+ clickables: "clickables";
671
+ readability: "readability";
672
+ headings: "headings";
673
+ tables: "tables";
674
+ errors: "errors";
675
+ context: "context";
676
+ forms: "forms";
677
+ keyboard: "keyboard";
678
+ graphics: "graphics";
679
+ navigation: "navigation";
680
+ document: "document";
681
+ carousels: "carousels";
682
+ aria: "aria";
683
+ general: "general";
684
+ "interactive-content": "interactive-content";
685
+ landmarks: "landmarks";
686
+ lists: "lists";
687
+ metadata: "metadata";
688
+ tabs: "tabs";
689
+ breadcrumbs: "breadcrumbs";
690
+ dialogs: "dialogs";
691
+ "text-content": "text-content";
692
+ "moving-content": "moving-content";
693
+ }>;
694
+ rule: z.ZodObject<{
695
+ addSROnlyCSS: z.ZodBoolean;
696
+ confidence: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
697
+ low: "low";
698
+ }>>>;
699
+ criteria: z.ZodEnum<{
700
+ clickables: "clickables";
701
+ readability: "readability";
702
+ headings: "headings";
703
+ tables: "tables";
704
+ errors: "errors";
705
+ context: "context";
706
+ forms: "forms";
707
+ keyboard: "keyboard";
708
+ graphics: "graphics";
709
+ navigation: "navigation";
710
+ document: "document";
711
+ carousels: "carousels";
712
+ aria: "aria";
713
+ general: "general";
714
+ "interactive-content": "interactive-content";
715
+ landmarks: "landmarks";
716
+ lists: "lists";
717
+ metadata: "metadata";
718
+ tabs: "tabs";
719
+ breadcrumbs: "breadcrumbs";
720
+ dialogs: "dialogs";
721
+ "text-content": "text-content";
722
+ "moving-content": "moving-content";
723
+ }>;
724
+ eligibleForAutoResolve: z.ZodReadonly<z.ZodDefault<z.ZodBoolean>>;
725
+ engineRules: z.ZodDefault<z.ZodArray<z.ZodString>>;
726
+ id: z.ZodString;
727
+ isAutoResolvable: z.ZodDefault<z.ZodBoolean>;
728
+ isEligibleForFalsePositiveAiValidation: z.ZodDefault<z.ZodBoolean>;
729
+ issueDescription: z.ZodString;
730
+ issueResolution: z.ZodString;
731
+ issueTutorialLink: z.ZodNullable<z.ZodString>;
732
+ issueWCAGLink: z.ZodOptional<z.ZodString>;
733
+ issueWCAGLinks: z.ZodDefault<z.ZodNullable<z.ZodArray<z.ZodString>>>;
734
+ name: z.ZodString;
735
+ severity: z.ZodEnum<{
736
+ extreme: "extreme";
737
+ high: "high";
738
+ medium: "medium";
739
+ low: "low";
740
+ }>;
741
+ shortCode: z.ZodString;
742
+ shortDescription: z.ZodString;
743
+ suggestedFix: z.ZodArray<z.ZodObject<{
744
+ suggestedFixHTML: z.ZodString;
745
+ suggestedFixKey: z.ZodString;
746
+ suggestedFixType: z.ZodEnum<{
747
+ attribute: "attribute";
748
+ srOnly: "srOnly";
749
+ tag: "tag";
750
+ removeAttribute: "removeAttribute";
751
+ }>;
752
+ suggestedFixValue: z.ZodString;
753
+ }, z.core.$strip>>;
754
+ WCAGLevel: z.ZodEnum<{
755
+ none: "none";
756
+ A: "A";
757
+ AA: "AA";
758
+ AAA: "AAA";
759
+ }>;
760
+ }, z.core.$strip>;
761
+ }, z.core.$strip>;
762
+ export declare const McpAuditDetailIssueSchema: z.ZodObject<{
763
+ altTextFeedback: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
764
+ positive: "positive";
765
+ negative: "negative";
766
+ }>>>;
767
+ altTextSuggestions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
768
+ assignedUser: z.ZodNullable<z.ZodString>;
769
+ autoResolved: z.ZodOptional<z.ZodBoolean>;
770
+ autoResolvedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
771
+ autoResolvedDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
772
+ commentsCount: z.ZodNumber;
773
+ device: z.ZodEnum<{
774
+ desktop: "desktop";
775
+ mobile: "mobile";
776
+ cross: "cross";
777
+ }>;
778
+ dismissedBy: z.ZodDefault<z.ZodNullable<z.ZodString>>;
779
+ dismissedDate: z.ZodDefault<z.ZodNullable<z.ZodString>>;
780
+ dismissedReason: z.ZodDefault<z.ZodNullable<z.ZodObject<{
781
+ comment: z.ZodString;
782
+ type: z.ZodEnum<{
783
+ other: "other";
784
+ falsePositive: "falsePositive";
785
+ irrelevant: "irrelevant";
786
+ design: "design";
787
+ }>;
788
+ }, z.core.$strip>>>;
789
+ exported: z.ZodBoolean;
790
+ id: z.ZodString;
791
+ lastStatusChangeLog: z.ZodDefault<z.ZodNullable<z.ZodObject<{
792
+ autoResolved: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
793
+ date: z.ZodString;
794
+ status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
795
+ none: "none";
796
+ automatic: "automatic";
797
+ manual: "manual";
798
+ dismissed: "dismissed";
799
+ }>>>;
800
+ userId: z.ZodNullable<z.ZodString>;
801
+ userName: z.ZodString;
802
+ }, z.core.$strip>>>;
803
+ name: z.ZodString;
804
+ offsetX: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
805
+ offsetXMobile: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
806
+ offsetY: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
807
+ offsetYMobile: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
808
+ relatedFunnelId: z.ZodNullable<z.ZodString>;
809
+ relatedRuleId: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
810
+ $oid: z.ZodString;
811
+ }, z.core.$strip>]>;
812
+ relatedWebpageId: z.ZodString;
813
+ resolution: z.ZodEnum<{
814
+ none: "none";
815
+ automatic: "automatic";
816
+ manual: "manual";
817
+ dismissed: "dismissed";
818
+ }>;
819
+ selector: z.ZodNullable<z.ZodString>;
820
+ severity: z.ZodEnum<{
821
+ extreme: "extreme";
822
+ high: "high";
823
+ medium: "medium";
824
+ low: "low";
825
+ }>;
826
+ siteOccurrences: z.ZodNumber;
827
+ src: z.ZodNullable<z.ZodString>;
828
+ templated: z.ZodBoolean;
829
+ WCAGLevel: z.ZodEnum<{
830
+ none: "none";
831
+ A: "A";
832
+ AA: "AA";
833
+ AAA: "AAA";
834
+ }>;
835
+ webpath: z.ZodString;
836
+ aiValidations: z.ZodDefault<z.ZodArray<z.ZodObject<{
837
+ feedback: z.ZodDefault<z.ZodNullable<z.ZodObject<{
838
+ helpful: z.ZodBoolean;
839
+ userId: z.ZodString;
840
+ userText: z.ZodString;
841
+ }, z.core.$strip>>>;
842
+ type: z.ZodEnum<{
843
+ falsePositive: "falsePositive";
844
+ }>;
845
+ isFalsePositive: z.ZodBoolean;
846
+ reasoning: z.ZodString;
847
+ }, z.core.$strip>>>;
848
+ created: z.ZodString;
849
+ HTML: z.ZodString;
850
+ irrelevant: z.ZodBoolean;
851
+ issueScreenshotUrl: z.ZodNullable<z.ZodString>;
852
+ modified: z.ZodString;
853
+ occurrences: z.ZodNumber;
854
+ suggestionLabel: z.ZodString;
855
+ suggestionType: z.ZodString;
856
+ webpage: z.ZodNullable<z.ZodObject<{
857
+ id: z.ZodString;
858
+ mainpage: z.ZodBoolean;
859
+ webpath: z.ZodString;
860
+ }, z.core.$strip>>;
861
+ webpages: z.ZodOptional<z.ZodArray<z.ZodObject<{
862
+ id: z.ZodString;
863
+ name: z.ZodString;
864
+ webpath: z.ZodString;
865
+ }, z.core.$strip>>>;
866
+ displayName: z.ZodString;
867
+ criteria: z.ZodEnum<{
868
+ clickables: "clickables";
869
+ readability: "readability";
870
+ headings: "headings";
871
+ tables: "tables";
872
+ errors: "errors";
873
+ context: "context";
874
+ forms: "forms";
875
+ keyboard: "keyboard";
876
+ graphics: "graphics";
877
+ navigation: "navigation";
878
+ document: "document";
879
+ carousels: "carousels";
880
+ aria: "aria";
881
+ general: "general";
882
+ "interactive-content": "interactive-content";
883
+ landmarks: "landmarks";
884
+ lists: "lists";
885
+ metadata: "metadata";
886
+ tabs: "tabs";
887
+ breadcrumbs: "breadcrumbs";
888
+ dialogs: "dialogs";
889
+ "text-content": "text-content";
890
+ "moving-content": "moving-content";
891
+ }>;
892
+ rule: z.ZodObject<{
893
+ addSROnlyCSS: z.ZodBoolean;
894
+ confidence: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
895
+ low: "low";
896
+ }>>>;
897
+ criteria: z.ZodEnum<{
898
+ clickables: "clickables";
899
+ readability: "readability";
900
+ headings: "headings";
901
+ tables: "tables";
902
+ errors: "errors";
903
+ context: "context";
904
+ forms: "forms";
905
+ keyboard: "keyboard";
906
+ graphics: "graphics";
907
+ navigation: "navigation";
908
+ document: "document";
909
+ carousels: "carousels";
910
+ aria: "aria";
911
+ general: "general";
912
+ "interactive-content": "interactive-content";
913
+ landmarks: "landmarks";
914
+ lists: "lists";
915
+ metadata: "metadata";
916
+ tabs: "tabs";
917
+ breadcrumbs: "breadcrumbs";
918
+ dialogs: "dialogs";
919
+ "text-content": "text-content";
920
+ "moving-content": "moving-content";
921
+ }>;
922
+ eligibleForAutoResolve: z.ZodReadonly<z.ZodDefault<z.ZodBoolean>>;
923
+ engineRules: z.ZodDefault<z.ZodArray<z.ZodString>>;
924
+ id: z.ZodString;
925
+ isAutoResolvable: z.ZodDefault<z.ZodBoolean>;
926
+ isEligibleForFalsePositiveAiValidation: z.ZodDefault<z.ZodBoolean>;
927
+ issueDescription: z.ZodString;
928
+ issueResolution: z.ZodString;
929
+ issueTutorialLink: z.ZodNullable<z.ZodString>;
930
+ issueWCAGLink: z.ZodOptional<z.ZodString>;
931
+ issueWCAGLinks: z.ZodDefault<z.ZodNullable<z.ZodArray<z.ZodString>>>;
932
+ name: z.ZodString;
933
+ severity: z.ZodEnum<{
934
+ extreme: "extreme";
935
+ high: "high";
936
+ medium: "medium";
937
+ low: "low";
938
+ }>;
939
+ shortCode: z.ZodString;
940
+ shortDescription: z.ZodString;
941
+ suggestedFix: z.ZodArray<z.ZodObject<{
942
+ suggestedFixHTML: z.ZodString;
943
+ suggestedFixKey: z.ZodString;
944
+ suggestedFixType: z.ZodEnum<{
945
+ attribute: "attribute";
946
+ srOnly: "srOnly";
947
+ tag: "tag";
948
+ removeAttribute: "removeAttribute";
949
+ }>;
950
+ suggestedFixValue: z.ZodString;
951
+ }, z.core.$strip>>;
952
+ WCAGLevel: z.ZodEnum<{
953
+ none: "none";
954
+ A: "A";
955
+ AA: "AA";
956
+ AAA: "AAA";
957
+ }>;
958
+ }, z.core.$strip>;
959
+ sdkContext: z.ZodDefault<z.ZodNullable<z.ZodObject<{
960
+ snippet: z.ZodDefault<z.ZodNullable<z.ZodString>>;
961
+ }, z.core.$strip>>>;
962
+ }, z.core.$strip>;
963
+ export declare const UrgentIssuesResponseSchema: z.ZodObject<{
964
+ issues: z.ZodArray<z.ZodObject<{
965
+ altTextFeedback: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
966
+ positive: "positive";
967
+ negative: "negative";
968
+ }>>>;
969
+ altTextSuggestions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
970
+ assignedUser: z.ZodNullable<z.ZodString>;
971
+ autoResolved: z.ZodOptional<z.ZodBoolean>;
972
+ autoResolvedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
973
+ autoResolvedDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
974
+ commentsCount: z.ZodNumber;
975
+ device: z.ZodEnum<{
976
+ desktop: "desktop";
977
+ mobile: "mobile";
978
+ cross: "cross";
979
+ }>;
980
+ dismissedBy: z.ZodDefault<z.ZodNullable<z.ZodString>>;
981
+ dismissedDate: z.ZodDefault<z.ZodNullable<z.ZodString>>;
982
+ dismissedReason: z.ZodDefault<z.ZodNullable<z.ZodObject<{
983
+ comment: z.ZodString;
984
+ type: z.ZodEnum<{
985
+ other: "other";
986
+ falsePositive: "falsePositive";
987
+ irrelevant: "irrelevant";
988
+ design: "design";
989
+ }>;
990
+ }, z.core.$strip>>>;
991
+ exported: z.ZodBoolean;
992
+ id: z.ZodString;
993
+ irrelevant: z.ZodBoolean;
994
+ lastStatusChangeLog: z.ZodDefault<z.ZodNullable<z.ZodObject<{
995
+ autoResolved: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
996
+ date: z.ZodString;
997
+ status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
998
+ none: "none";
999
+ automatic: "automatic";
1000
+ manual: "manual";
1001
+ dismissed: "dismissed";
1002
+ }>>>;
1003
+ userId: z.ZodNullable<z.ZodString>;
1004
+ userName: z.ZodString;
1005
+ }, z.core.$strip>>>;
1006
+ name: z.ZodString;
1007
+ offsetX: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
1008
+ offsetXMobile: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
1009
+ offsetY: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
1010
+ offsetYMobile: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
1011
+ relatedFunnelId: z.ZodNullable<z.ZodString>;
1012
+ relatedRuleId: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
1013
+ $oid: z.ZodString;
1014
+ }, z.core.$strip>]>;
1015
+ relatedWebpageId: z.ZodString;
1016
+ resolution: z.ZodEnum<{
1017
+ none: "none";
1018
+ automatic: "automatic";
1019
+ manual: "manual";
1020
+ dismissed: "dismissed";
1021
+ }>;
1022
+ selector: z.ZodNullable<z.ZodString>;
1023
+ severity: z.ZodEnum<{
1024
+ extreme: "extreme";
1025
+ high: "high";
1026
+ medium: "medium";
1027
+ low: "low";
1028
+ }>;
1029
+ siteOccurrences: z.ZodNumber;
1030
+ src: z.ZodNullable<z.ZodString>;
1031
+ templated: z.ZodBoolean;
1032
+ WCAGLevel: z.ZodEnum<{
1033
+ none: "none";
1034
+ A: "A";
1035
+ AA: "AA";
1036
+ AAA: "AAA";
1037
+ }>;
1038
+ webpath: z.ZodString;
1039
+ displayName: z.ZodString;
1040
+ criteria: z.ZodEnum<{
1041
+ clickables: "clickables";
1042
+ readability: "readability";
1043
+ headings: "headings";
1044
+ tables: "tables";
1045
+ errors: "errors";
1046
+ context: "context";
1047
+ forms: "forms";
1048
+ keyboard: "keyboard";
1049
+ graphics: "graphics";
1050
+ navigation: "navigation";
1051
+ document: "document";
1052
+ carousels: "carousels";
1053
+ aria: "aria";
1054
+ general: "general";
1055
+ "interactive-content": "interactive-content";
1056
+ landmarks: "landmarks";
1057
+ lists: "lists";
1058
+ metadata: "metadata";
1059
+ tabs: "tabs";
1060
+ breadcrumbs: "breadcrumbs";
1061
+ dialogs: "dialogs";
1062
+ "text-content": "text-content";
1063
+ "moving-content": "moving-content";
1064
+ }>;
1065
+ occurrences: z.ZodOptional<z.ZodNumber>;
1066
+ sdkContext: z.ZodDefault<z.ZodNullable<z.ZodObject<{
1067
+ snippet: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1068
+ }, z.core.$strip>>>;
1069
+ }, z.core.$strip>>;
1070
+ }, z.core.$strip>;
1071
+ export declare const ResolveIssueRequestSchema: z.ZodObject<{
1072
+ displayName: z.ZodString;
1073
+ }, z.core.$strip>;
1074
+ export declare const ResolveIssueResponseSchema: z.ZodObject<{
1075
+ success: z.ZodLiteral<true>;
1076
+ }, z.core.$strip>;
1077
+ export declare const FeedbackRating: z.ZodEnum<{
1078
+ very_helpful: "very_helpful";
1079
+ partially_helpful: "partially_helpful";
1080
+ not_helpful: "not_helpful";
1081
+ }>;
1082
+ export declare const SubmitFeedbackRequestSchema: z.ZodObject<{
1083
+ feedbackRating: z.ZodOptional<z.ZodEnum<{
1084
+ very_helpful: "very_helpful";
1085
+ partially_helpful: "partially_helpful";
1086
+ not_helpful: "not_helpful";
1087
+ }>>;
1088
+ suggestion: z.ZodOptional<z.ZodString>;
1089
+ }, z.core.$strip>;
1090
+ export declare const SubmitFeedbackResponseSchema: z.ZodObject<{
1091
+ success: z.ZodLiteral<true>;
1092
+ }, z.core.$strip>;
1093
+ export type Severity = z.infer<typeof SeveritySchema>;
1094
+ export type WCAGLevelType = z.infer<typeof WCAGLevel>;
1095
+ export type CriteriaType = z.infer<typeof Criteria>;
1096
+ export type ApiRule = z.infer<typeof RuleSchema>;
1097
+ export type ApiIssue = z.infer<typeof McpBasicIssueSchema>;
1098
+ export type ApiAuditIssue = z.infer<typeof McpAuditIssueSchema>;
1099
+ export type ApiSdkIssueContext = z.infer<typeof SdkIssueContextSchema>;
1100
+ export type AuditSourceType = z.infer<typeof AuditSource>;
1101
+ export type ApiUrgentIssuesResponse = z.infer<typeof UrgentIssuesResponseSchema>;
1102
+ export type ApiIssueRemediation = z.infer<typeof McpDetailIssueSchema>;
1103
+ export type ApiAuditIssueRemediation = z.infer<typeof McpAuditDetailIssueSchema>;
1104
+ export type FeedbackRatingType = z.infer<typeof FeedbackRating>;
1105
+ export type SubmitFeedbackRequest = z.infer<typeof SubmitFeedbackRequestSchema>;
1106
+ export type SubmitFeedbackResponse = z.infer<typeof SubmitFeedbackResponseSchema>;
1107
+ //# sourceMappingURL=apiSchemas.d.ts.map