@growth-labs/conformance 0.3.1 → 0.5.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.
- package/CHANGELOG.md +66 -0
- package/README.md +45 -1
- package/dist/endpoint.d.ts +21 -0
- package/dist/endpoint.d.ts.map +1 -0
- package/dist/endpoint.js +225 -0
- package/dist/endpoint.js.map +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/runner.js +71 -5
- package/dist/runner.js.map +1 -1
- package/dist/schema.d.ts +255 -142
- package/dist/schema.d.ts.map +1 -1
- package/dist/schema.js +23 -3
- package/dist/schema.js.map +1 -1
- package/fixtures/negative/required-negative-fixtures.json +49 -0
- package/package.json +5 -1
- package/src/endpoint.ts +279 -0
- package/src/index.ts +4 -0
- package/src/runner.ts +81 -5
- package/src/schema.ts +27 -3
package/dist/schema.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export declare const REQUIRED_NEGATIVE_FIXTURE_CODES: {
|
|
|
23
23
|
readonly 'missing-max-image-preview-large': "metadata.robots.missing_max_image_preview_large";
|
|
24
24
|
readonly 'crawler-public-cache-key-collision': "cache.crawler_public_key_collision";
|
|
25
25
|
readonly 'runtime-canonical-override-not-applied': "metadata.canonical.runtime_override_not_applied";
|
|
26
|
+
readonly 'llms-runtime-static-shadow': "publication.surface.static_shadow";
|
|
26
27
|
};
|
|
27
28
|
export type RequiredNegativeFixtureId = keyof typeof REQUIRED_NEGATIVE_FIXTURE_CODES;
|
|
28
29
|
export type RequiredNegativeFindingCode = (typeof REQUIRED_NEGATIVE_FIXTURE_CODES)[RequiredNegativeFixtureId];
|
|
@@ -45,12 +46,26 @@ export declare const surfaceResponseSchema: z.ZodObject<{
|
|
|
45
46
|
html?: string | undefined;
|
|
46
47
|
body?: string | undefined;
|
|
47
48
|
}, {
|
|
48
|
-
url?: string | undefined;
|
|
49
49
|
status?: number | undefined;
|
|
50
|
+
url?: string | undefined;
|
|
50
51
|
headers?: Record<string, string | string[]> | undefined;
|
|
51
52
|
html?: string | undefined;
|
|
52
53
|
body?: string | undefined;
|
|
53
54
|
}>;
|
|
55
|
+
export declare const publicationSurfaceOwnerSchema: z.ZodEnum<["runtime", "static", "na"]>;
|
|
56
|
+
export declare const publicationSurfaceOwnerReceiptSchema: z.ZodObject<{
|
|
57
|
+
collector: z.ZodString;
|
|
58
|
+
observedAt: z.ZodOptional<z.ZodString>;
|
|
59
|
+
signalHash: z.ZodString;
|
|
60
|
+
}, "strip", z.ZodTypeAny, {
|
|
61
|
+
collector: string;
|
|
62
|
+
signalHash: string;
|
|
63
|
+
observedAt?: string | undefined;
|
|
64
|
+
}, {
|
|
65
|
+
collector: string;
|
|
66
|
+
signalHash: string;
|
|
67
|
+
observedAt?: string | undefined;
|
|
68
|
+
}>;
|
|
54
69
|
export declare const publicationSurfaceSchema: z.ZodObject<{
|
|
55
70
|
name: z.ZodString;
|
|
56
71
|
status: z.ZodEnum<["present", "missing", "na"]>;
|
|
@@ -60,24 +75,62 @@ export declare const publicationSurfaceSchema: z.ZodObject<{
|
|
|
60
75
|
bodyBytes: z.ZodOptional<z.ZodNumber>;
|
|
61
76
|
capabilityBoundary: z.ZodOptional<z.ZodString>;
|
|
62
77
|
evidence: z.ZodOptional<z.ZodString>;
|
|
78
|
+
intendedOwner: z.ZodOptional<z.ZodEnum<["runtime", "static", "na"]>>;
|
|
79
|
+
observedOwner: z.ZodOptional<z.ZodEnum<["runtime", "static", "na"]>>;
|
|
80
|
+
ownerReceipt: z.ZodOptional<z.ZodObject<{
|
|
81
|
+
collector: z.ZodString;
|
|
82
|
+
observedAt: z.ZodOptional<z.ZodString>;
|
|
83
|
+
signalHash: z.ZodString;
|
|
84
|
+
}, "strip", z.ZodTypeAny, {
|
|
85
|
+
collector: string;
|
|
86
|
+
signalHash: string;
|
|
87
|
+
observedAt?: string | undefined;
|
|
88
|
+
}, {
|
|
89
|
+
collector: string;
|
|
90
|
+
signalHash: string;
|
|
91
|
+
observedAt?: string | undefined;
|
|
92
|
+
}>>;
|
|
93
|
+
staticEntryCount: z.ZodOptional<z.ZodNumber>;
|
|
94
|
+
observedCount: z.ZodOptional<z.ZodNumber>;
|
|
95
|
+
minimumCount: z.ZodOptional<z.ZodNumber>;
|
|
63
96
|
}, "strip", z.ZodTypeAny, {
|
|
64
|
-
name: string;
|
|
65
97
|
status: "na" | "present" | "missing";
|
|
98
|
+
name: string;
|
|
66
99
|
url?: string | undefined;
|
|
67
100
|
httpStatus?: number | undefined;
|
|
68
101
|
contentType?: string | undefined;
|
|
69
102
|
bodyBytes?: number | undefined;
|
|
70
103
|
capabilityBoundary?: string | undefined;
|
|
71
104
|
evidence?: string | undefined;
|
|
105
|
+
intendedOwner?: "static" | "na" | "runtime" | undefined;
|
|
106
|
+
observedOwner?: "static" | "na" | "runtime" | undefined;
|
|
107
|
+
ownerReceipt?: {
|
|
108
|
+
collector: string;
|
|
109
|
+
signalHash: string;
|
|
110
|
+
observedAt?: string | undefined;
|
|
111
|
+
} | undefined;
|
|
112
|
+
staticEntryCount?: number | undefined;
|
|
113
|
+
observedCount?: number | undefined;
|
|
114
|
+
minimumCount?: number | undefined;
|
|
72
115
|
}, {
|
|
73
|
-
name: string;
|
|
74
116
|
status: "na" | "present" | "missing";
|
|
117
|
+
name: string;
|
|
75
118
|
url?: string | undefined;
|
|
76
119
|
httpStatus?: number | undefined;
|
|
77
120
|
contentType?: string | undefined;
|
|
78
121
|
bodyBytes?: number | undefined;
|
|
79
122
|
capabilityBoundary?: string | undefined;
|
|
80
123
|
evidence?: string | undefined;
|
|
124
|
+
intendedOwner?: "static" | "na" | "runtime" | undefined;
|
|
125
|
+
observedOwner?: "static" | "na" | "runtime" | undefined;
|
|
126
|
+
ownerReceipt?: {
|
|
127
|
+
collector: string;
|
|
128
|
+
signalHash: string;
|
|
129
|
+
observedAt?: string | undefined;
|
|
130
|
+
} | undefined;
|
|
131
|
+
staticEntryCount?: number | undefined;
|
|
132
|
+
observedCount?: number | undefined;
|
|
133
|
+
minimumCount?: number | undefined;
|
|
81
134
|
}>;
|
|
82
135
|
export declare const cacheVariantSchema: z.ZodObject<{
|
|
83
136
|
audience: z.ZodEnum<["public", "crawler", "subscriber", "member", "admin", "private"]>;
|
|
@@ -104,42 +157,42 @@ export declare const cacheVariantSchema: z.ZodObject<{
|
|
|
104
157
|
export declare const securityFunctionalProbeReceiptSchema: z.ZodObject<{
|
|
105
158
|
name: z.ZodString;
|
|
106
159
|
status: z.ZodEnum<["pass", "fail", "na"]>;
|
|
107
|
-
checkedAt: z.
|
|
160
|
+
checkedAt: z.ZodString;
|
|
108
161
|
evidence: z.ZodOptional<z.ZodString>;
|
|
109
162
|
capabilityBoundary: z.ZodOptional<z.ZodString>;
|
|
110
163
|
}, "strip", z.ZodTypeAny, {
|
|
111
|
-
name: string;
|
|
112
164
|
status: "pass" | "fail" | "na";
|
|
165
|
+
name: string;
|
|
166
|
+
checkedAt: string;
|
|
113
167
|
capabilityBoundary?: string | undefined;
|
|
114
168
|
evidence?: string | undefined;
|
|
115
|
-
checkedAt?: string | undefined;
|
|
116
169
|
}, {
|
|
117
|
-
name: string;
|
|
118
170
|
status: "pass" | "fail" | "na";
|
|
171
|
+
name: string;
|
|
172
|
+
checkedAt: string;
|
|
119
173
|
capabilityBoundary?: string | undefined;
|
|
120
174
|
evidence?: string | undefined;
|
|
121
|
-
checkedAt?: string | undefined;
|
|
122
175
|
}>;
|
|
123
176
|
export declare const cspReportReceiptSchema: z.ZodObject<{
|
|
124
177
|
name: z.ZodString;
|
|
125
178
|
status: z.ZodEnum<["pass", "fail", "na"]>;
|
|
126
|
-
checkedAt: z.
|
|
179
|
+
checkedAt: z.ZodString;
|
|
127
180
|
evidence: z.ZodOptional<z.ZodString>;
|
|
128
181
|
endpoint: z.ZodOptional<z.ZodString>;
|
|
129
182
|
capabilityBoundary: z.ZodOptional<z.ZodString>;
|
|
130
183
|
}, "strip", z.ZodTypeAny, {
|
|
131
|
-
name: string;
|
|
132
184
|
status: "pass" | "fail" | "na";
|
|
185
|
+
name: string;
|
|
186
|
+
checkedAt: string;
|
|
133
187
|
capabilityBoundary?: string | undefined;
|
|
134
188
|
evidence?: string | undefined;
|
|
135
|
-
checkedAt?: string | undefined;
|
|
136
189
|
endpoint?: string | undefined;
|
|
137
190
|
}, {
|
|
138
|
-
name: string;
|
|
139
191
|
status: "pass" | "fail" | "na";
|
|
192
|
+
name: string;
|
|
193
|
+
checkedAt: string;
|
|
140
194
|
capabilityBoundary?: string | undefined;
|
|
141
195
|
evidence?: string | undefined;
|
|
142
|
-
checkedAt?: string | undefined;
|
|
143
196
|
endpoint?: string | undefined;
|
|
144
197
|
}>;
|
|
145
198
|
export declare const inlineStyleAttributeInventorySchema: z.ZodObject<{
|
|
@@ -174,42 +227,42 @@ export declare const securityReceiptsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
174
227
|
functionalProbes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
175
228
|
name: z.ZodString;
|
|
176
229
|
status: z.ZodEnum<["pass", "fail", "na"]>;
|
|
177
|
-
checkedAt: z.
|
|
230
|
+
checkedAt: z.ZodString;
|
|
178
231
|
evidence: z.ZodOptional<z.ZodString>;
|
|
179
232
|
capabilityBoundary: z.ZodOptional<z.ZodString>;
|
|
180
233
|
}, "strip", z.ZodTypeAny, {
|
|
181
|
-
name: string;
|
|
182
234
|
status: "pass" | "fail" | "na";
|
|
235
|
+
name: string;
|
|
236
|
+
checkedAt: string;
|
|
183
237
|
capabilityBoundary?: string | undefined;
|
|
184
238
|
evidence?: string | undefined;
|
|
185
|
-
checkedAt?: string | undefined;
|
|
186
239
|
}, {
|
|
187
|
-
name: string;
|
|
188
240
|
status: "pass" | "fail" | "na";
|
|
241
|
+
name: string;
|
|
242
|
+
checkedAt: string;
|
|
189
243
|
capabilityBoundary?: string | undefined;
|
|
190
244
|
evidence?: string | undefined;
|
|
191
|
-
checkedAt?: string | undefined;
|
|
192
245
|
}>, "many">>;
|
|
193
246
|
cspReports: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
194
247
|
name: z.ZodString;
|
|
195
248
|
status: z.ZodEnum<["pass", "fail", "na"]>;
|
|
196
|
-
checkedAt: z.
|
|
249
|
+
checkedAt: z.ZodString;
|
|
197
250
|
evidence: z.ZodOptional<z.ZodString>;
|
|
198
251
|
endpoint: z.ZodOptional<z.ZodString>;
|
|
199
252
|
capabilityBoundary: z.ZodOptional<z.ZodString>;
|
|
200
253
|
}, "strip", z.ZodTypeAny, {
|
|
201
|
-
name: string;
|
|
202
254
|
status: "pass" | "fail" | "na";
|
|
255
|
+
name: string;
|
|
256
|
+
checkedAt: string;
|
|
203
257
|
capabilityBoundary?: string | undefined;
|
|
204
258
|
evidence?: string | undefined;
|
|
205
|
-
checkedAt?: string | undefined;
|
|
206
259
|
endpoint?: string | undefined;
|
|
207
260
|
}, {
|
|
208
|
-
name: string;
|
|
209
261
|
status: "pass" | "fail" | "na";
|
|
262
|
+
name: string;
|
|
263
|
+
checkedAt: string;
|
|
210
264
|
capabilityBoundary?: string | undefined;
|
|
211
265
|
evidence?: string | undefined;
|
|
212
|
-
checkedAt?: string | undefined;
|
|
213
266
|
endpoint?: string | undefined;
|
|
214
267
|
}>, "many">>;
|
|
215
268
|
inlineStyleAttributes: z.ZodOptional<z.ZodObject<{
|
|
@@ -242,18 +295,18 @@ export declare const securityReceiptsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
242
295
|
}>>;
|
|
243
296
|
}, "strip", z.ZodTypeAny, {
|
|
244
297
|
functionalProbes: {
|
|
245
|
-
name: string;
|
|
246
298
|
status: "pass" | "fail" | "na";
|
|
299
|
+
name: string;
|
|
300
|
+
checkedAt: string;
|
|
247
301
|
capabilityBoundary?: string | undefined;
|
|
248
302
|
evidence?: string | undefined;
|
|
249
|
-
checkedAt?: string | undefined;
|
|
250
303
|
}[];
|
|
251
304
|
cspReports: {
|
|
252
|
-
name: string;
|
|
253
305
|
status: "pass" | "fail" | "na";
|
|
306
|
+
name: string;
|
|
307
|
+
checkedAt: string;
|
|
254
308
|
capabilityBoundary?: string | undefined;
|
|
255
309
|
evidence?: string | undefined;
|
|
256
|
-
checkedAt?: string | undefined;
|
|
257
310
|
endpoint?: string | undefined;
|
|
258
311
|
}[];
|
|
259
312
|
inlineStyleAttributes?: {
|
|
@@ -266,18 +319,18 @@ export declare const securityReceiptsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
266
319
|
} | undefined;
|
|
267
320
|
}, {
|
|
268
321
|
functionalProbes?: {
|
|
269
|
-
name: string;
|
|
270
322
|
status: "pass" | "fail" | "na";
|
|
323
|
+
name: string;
|
|
324
|
+
checkedAt: string;
|
|
271
325
|
capabilityBoundary?: string | undefined;
|
|
272
326
|
evidence?: string | undefined;
|
|
273
|
-
checkedAt?: string | undefined;
|
|
274
327
|
}[] | undefined;
|
|
275
328
|
cspReports?: {
|
|
276
|
-
name: string;
|
|
277
329
|
status: "pass" | "fail" | "na";
|
|
330
|
+
name: string;
|
|
331
|
+
checkedAt: string;
|
|
278
332
|
capabilityBoundary?: string | undefined;
|
|
279
333
|
evidence?: string | undefined;
|
|
280
|
-
checkedAt?: string | undefined;
|
|
281
334
|
endpoint?: string | undefined;
|
|
282
335
|
}[] | undefined;
|
|
283
336
|
inlineStyleAttributes?: {
|
|
@@ -368,8 +421,8 @@ export declare const conformanceFixtureSchema: z.ZodObject<{
|
|
|
368
421
|
html?: string | undefined;
|
|
369
422
|
body?: string | undefined;
|
|
370
423
|
}, {
|
|
371
|
-
url?: string | undefined;
|
|
372
424
|
status?: number | undefined;
|
|
425
|
+
url?: string | undefined;
|
|
373
426
|
headers?: Record<string, string | string[]> | undefined;
|
|
374
427
|
html?: string | undefined;
|
|
375
428
|
body?: string | undefined;
|
|
@@ -420,24 +473,62 @@ export declare const conformanceFixtureSchema: z.ZodObject<{
|
|
|
420
473
|
bodyBytes: z.ZodOptional<z.ZodNumber>;
|
|
421
474
|
capabilityBoundary: z.ZodOptional<z.ZodString>;
|
|
422
475
|
evidence: z.ZodOptional<z.ZodString>;
|
|
476
|
+
intendedOwner: z.ZodOptional<z.ZodEnum<["runtime", "static", "na"]>>;
|
|
477
|
+
observedOwner: z.ZodOptional<z.ZodEnum<["runtime", "static", "na"]>>;
|
|
478
|
+
ownerReceipt: z.ZodOptional<z.ZodObject<{
|
|
479
|
+
collector: z.ZodString;
|
|
480
|
+
observedAt: z.ZodOptional<z.ZodString>;
|
|
481
|
+
signalHash: z.ZodString;
|
|
482
|
+
}, "strip", z.ZodTypeAny, {
|
|
483
|
+
collector: string;
|
|
484
|
+
signalHash: string;
|
|
485
|
+
observedAt?: string | undefined;
|
|
486
|
+
}, {
|
|
487
|
+
collector: string;
|
|
488
|
+
signalHash: string;
|
|
489
|
+
observedAt?: string | undefined;
|
|
490
|
+
}>>;
|
|
491
|
+
staticEntryCount: z.ZodOptional<z.ZodNumber>;
|
|
492
|
+
observedCount: z.ZodOptional<z.ZodNumber>;
|
|
493
|
+
minimumCount: z.ZodOptional<z.ZodNumber>;
|
|
423
494
|
}, "strip", z.ZodTypeAny, {
|
|
424
|
-
name: string;
|
|
425
495
|
status: "na" | "present" | "missing";
|
|
496
|
+
name: string;
|
|
426
497
|
url?: string | undefined;
|
|
427
498
|
httpStatus?: number | undefined;
|
|
428
499
|
contentType?: string | undefined;
|
|
429
500
|
bodyBytes?: number | undefined;
|
|
430
501
|
capabilityBoundary?: string | undefined;
|
|
431
502
|
evidence?: string | undefined;
|
|
503
|
+
intendedOwner?: "static" | "na" | "runtime" | undefined;
|
|
504
|
+
observedOwner?: "static" | "na" | "runtime" | undefined;
|
|
505
|
+
ownerReceipt?: {
|
|
506
|
+
collector: string;
|
|
507
|
+
signalHash: string;
|
|
508
|
+
observedAt?: string | undefined;
|
|
509
|
+
} | undefined;
|
|
510
|
+
staticEntryCount?: number | undefined;
|
|
511
|
+
observedCount?: number | undefined;
|
|
512
|
+
minimumCount?: number | undefined;
|
|
432
513
|
}, {
|
|
433
|
-
name: string;
|
|
434
514
|
status: "na" | "present" | "missing";
|
|
515
|
+
name: string;
|
|
435
516
|
url?: string | undefined;
|
|
436
517
|
httpStatus?: number | undefined;
|
|
437
518
|
contentType?: string | undefined;
|
|
438
519
|
bodyBytes?: number | undefined;
|
|
439
520
|
capabilityBoundary?: string | undefined;
|
|
440
521
|
evidence?: string | undefined;
|
|
522
|
+
intendedOwner?: "static" | "na" | "runtime" | undefined;
|
|
523
|
+
observedOwner?: "static" | "na" | "runtime" | undefined;
|
|
524
|
+
ownerReceipt?: {
|
|
525
|
+
collector: string;
|
|
526
|
+
signalHash: string;
|
|
527
|
+
observedAt?: string | undefined;
|
|
528
|
+
} | undefined;
|
|
529
|
+
staticEntryCount?: number | undefined;
|
|
530
|
+
observedCount?: number | undefined;
|
|
531
|
+
minimumCount?: number | undefined;
|
|
441
532
|
}>, "many">>;
|
|
442
533
|
cacheVariants: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
443
534
|
audience: z.ZodEnum<["public", "crawler", "subscriber", "member", "admin", "private"]>;
|
|
@@ -465,42 +556,42 @@ export declare const conformanceFixtureSchema: z.ZodObject<{
|
|
|
465
556
|
functionalProbes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
466
557
|
name: z.ZodString;
|
|
467
558
|
status: z.ZodEnum<["pass", "fail", "na"]>;
|
|
468
|
-
checkedAt: z.
|
|
559
|
+
checkedAt: z.ZodString;
|
|
469
560
|
evidence: z.ZodOptional<z.ZodString>;
|
|
470
561
|
capabilityBoundary: z.ZodOptional<z.ZodString>;
|
|
471
562
|
}, "strip", z.ZodTypeAny, {
|
|
472
|
-
name: string;
|
|
473
563
|
status: "pass" | "fail" | "na";
|
|
564
|
+
name: string;
|
|
565
|
+
checkedAt: string;
|
|
474
566
|
capabilityBoundary?: string | undefined;
|
|
475
567
|
evidence?: string | undefined;
|
|
476
|
-
checkedAt?: string | undefined;
|
|
477
568
|
}, {
|
|
478
|
-
name: string;
|
|
479
569
|
status: "pass" | "fail" | "na";
|
|
570
|
+
name: string;
|
|
571
|
+
checkedAt: string;
|
|
480
572
|
capabilityBoundary?: string | undefined;
|
|
481
573
|
evidence?: string | undefined;
|
|
482
|
-
checkedAt?: string | undefined;
|
|
483
574
|
}>, "many">>;
|
|
484
575
|
cspReports: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
485
576
|
name: z.ZodString;
|
|
486
577
|
status: z.ZodEnum<["pass", "fail", "na"]>;
|
|
487
|
-
checkedAt: z.
|
|
578
|
+
checkedAt: z.ZodString;
|
|
488
579
|
evidence: z.ZodOptional<z.ZodString>;
|
|
489
580
|
endpoint: z.ZodOptional<z.ZodString>;
|
|
490
581
|
capabilityBoundary: z.ZodOptional<z.ZodString>;
|
|
491
582
|
}, "strip", z.ZodTypeAny, {
|
|
492
|
-
name: string;
|
|
493
583
|
status: "pass" | "fail" | "na";
|
|
584
|
+
name: string;
|
|
585
|
+
checkedAt: string;
|
|
494
586
|
capabilityBoundary?: string | undefined;
|
|
495
587
|
evidence?: string | undefined;
|
|
496
|
-
checkedAt?: string | undefined;
|
|
497
588
|
endpoint?: string | undefined;
|
|
498
589
|
}, {
|
|
499
|
-
name: string;
|
|
500
590
|
status: "pass" | "fail" | "na";
|
|
591
|
+
name: string;
|
|
592
|
+
checkedAt: string;
|
|
501
593
|
capabilityBoundary?: string | undefined;
|
|
502
594
|
evidence?: string | undefined;
|
|
503
|
-
checkedAt?: string | undefined;
|
|
504
595
|
endpoint?: string | undefined;
|
|
505
596
|
}>, "many">>;
|
|
506
597
|
inlineStyleAttributes: z.ZodOptional<z.ZodObject<{
|
|
@@ -533,18 +624,18 @@ export declare const conformanceFixtureSchema: z.ZodObject<{
|
|
|
533
624
|
}>>;
|
|
534
625
|
}, "strip", z.ZodTypeAny, {
|
|
535
626
|
functionalProbes: {
|
|
536
|
-
name: string;
|
|
537
627
|
status: "pass" | "fail" | "na";
|
|
628
|
+
name: string;
|
|
629
|
+
checkedAt: string;
|
|
538
630
|
capabilityBoundary?: string | undefined;
|
|
539
631
|
evidence?: string | undefined;
|
|
540
|
-
checkedAt?: string | undefined;
|
|
541
632
|
}[];
|
|
542
633
|
cspReports: {
|
|
543
|
-
name: string;
|
|
544
634
|
status: "pass" | "fail" | "na";
|
|
635
|
+
name: string;
|
|
636
|
+
checkedAt: string;
|
|
545
637
|
capabilityBoundary?: string | undefined;
|
|
546
638
|
evidence?: string | undefined;
|
|
547
|
-
checkedAt?: string | undefined;
|
|
548
639
|
endpoint?: string | undefined;
|
|
549
640
|
}[];
|
|
550
641
|
inlineStyleAttributes?: {
|
|
@@ -557,18 +648,18 @@ export declare const conformanceFixtureSchema: z.ZodObject<{
|
|
|
557
648
|
} | undefined;
|
|
558
649
|
}, {
|
|
559
650
|
functionalProbes?: {
|
|
560
|
-
name: string;
|
|
561
651
|
status: "pass" | "fail" | "na";
|
|
652
|
+
name: string;
|
|
653
|
+
checkedAt: string;
|
|
562
654
|
capabilityBoundary?: string | undefined;
|
|
563
655
|
evidence?: string | undefined;
|
|
564
|
-
checkedAt?: string | undefined;
|
|
565
656
|
}[] | undefined;
|
|
566
657
|
cspReports?: {
|
|
567
|
-
name: string;
|
|
568
658
|
status: "pass" | "fail" | "na";
|
|
659
|
+
name: string;
|
|
660
|
+
checkedAt: string;
|
|
569
661
|
capabilityBoundary?: string | undefined;
|
|
570
662
|
evidence?: string | undefined;
|
|
571
|
-
checkedAt?: string | undefined;
|
|
572
663
|
endpoint?: string | undefined;
|
|
573
664
|
}[] | undefined;
|
|
574
665
|
inlineStyleAttributes?: {
|
|
@@ -604,7 +695,6 @@ export declare const conformanceFixtureSchema: z.ZodObject<{
|
|
|
604
695
|
}>>;
|
|
605
696
|
expectedFailingCode: z.ZodOptional<z.ZodString>;
|
|
606
697
|
}, "strip", z.ZodTypeAny, {
|
|
607
|
-
url: string;
|
|
608
698
|
expected: {
|
|
609
699
|
schemaTypes: string[];
|
|
610
700
|
discoverEligible: boolean;
|
|
@@ -614,6 +704,7 @@ export declare const conformanceFixtureSchema: z.ZodObject<{
|
|
|
614
704
|
};
|
|
615
705
|
canonicalUrl?: string | undefined;
|
|
616
706
|
};
|
|
707
|
+
url: string;
|
|
617
708
|
audience: "public" | "crawler" | "subscriber" | "member" | "admin" | "private";
|
|
618
709
|
id: string;
|
|
619
710
|
site: string;
|
|
@@ -627,14 +718,24 @@ export declare const conformanceFixtureSchema: z.ZodObject<{
|
|
|
627
718
|
body?: string | undefined;
|
|
628
719
|
};
|
|
629
720
|
publicationSurfaces: {
|
|
630
|
-
name: string;
|
|
631
721
|
status: "na" | "present" | "missing";
|
|
722
|
+
name: string;
|
|
632
723
|
url?: string | undefined;
|
|
633
724
|
httpStatus?: number | undefined;
|
|
634
725
|
contentType?: string | undefined;
|
|
635
726
|
bodyBytes?: number | undefined;
|
|
636
727
|
capabilityBoundary?: string | undefined;
|
|
637
728
|
evidence?: string | undefined;
|
|
729
|
+
intendedOwner?: "static" | "na" | "runtime" | undefined;
|
|
730
|
+
observedOwner?: "static" | "na" | "runtime" | undefined;
|
|
731
|
+
ownerReceipt?: {
|
|
732
|
+
collector: string;
|
|
733
|
+
signalHash: string;
|
|
734
|
+
observedAt?: string | undefined;
|
|
735
|
+
} | undefined;
|
|
736
|
+
staticEntryCount?: number | undefined;
|
|
737
|
+
observedCount?: number | undefined;
|
|
738
|
+
minimumCount?: number | undefined;
|
|
638
739
|
}[];
|
|
639
740
|
cacheVariants: {
|
|
640
741
|
headers: Record<string, string | string[]>;
|
|
@@ -646,18 +747,18 @@ export declare const conformanceFixtureSchema: z.ZodObject<{
|
|
|
646
747
|
}[];
|
|
647
748
|
securityReceipts: {
|
|
648
749
|
functionalProbes: {
|
|
649
|
-
name: string;
|
|
650
750
|
status: "pass" | "fail" | "na";
|
|
751
|
+
name: string;
|
|
752
|
+
checkedAt: string;
|
|
651
753
|
capabilityBoundary?: string | undefined;
|
|
652
754
|
evidence?: string | undefined;
|
|
653
|
-
checkedAt?: string | undefined;
|
|
654
755
|
}[];
|
|
655
756
|
cspReports: {
|
|
656
|
-
name: string;
|
|
657
757
|
status: "pass" | "fail" | "na";
|
|
758
|
+
name: string;
|
|
759
|
+
checkedAt: string;
|
|
658
760
|
capabilityBoundary?: string | undefined;
|
|
659
761
|
evidence?: string | undefined;
|
|
660
|
-
checkedAt?: string | undefined;
|
|
661
762
|
endpoint?: string | undefined;
|
|
662
763
|
}[];
|
|
663
764
|
inlineStyleAttributes?: {
|
|
@@ -685,8 +786,8 @@ export declare const conformanceFixtureSchema: z.ZodObject<{
|
|
|
685
786
|
site: string;
|
|
686
787
|
renderMode: "ssr" | "static";
|
|
687
788
|
response: {
|
|
688
|
-
url?: string | undefined;
|
|
689
789
|
status?: number | undefined;
|
|
790
|
+
url?: string | undefined;
|
|
690
791
|
headers?: Record<string, string | string[]> | undefined;
|
|
691
792
|
html?: string | undefined;
|
|
692
793
|
body?: string | undefined;
|
|
@@ -702,14 +803,24 @@ export declare const conformanceFixtureSchema: z.ZodObject<{
|
|
|
702
803
|
} | undefined;
|
|
703
804
|
environment?: string | undefined;
|
|
704
805
|
publicationSurfaces?: {
|
|
705
|
-
name: string;
|
|
706
806
|
status: "na" | "present" | "missing";
|
|
807
|
+
name: string;
|
|
707
808
|
url?: string | undefined;
|
|
708
809
|
httpStatus?: number | undefined;
|
|
709
810
|
contentType?: string | undefined;
|
|
710
811
|
bodyBytes?: number | undefined;
|
|
711
812
|
capabilityBoundary?: string | undefined;
|
|
712
813
|
evidence?: string | undefined;
|
|
814
|
+
intendedOwner?: "static" | "na" | "runtime" | undefined;
|
|
815
|
+
observedOwner?: "static" | "na" | "runtime" | undefined;
|
|
816
|
+
ownerReceipt?: {
|
|
817
|
+
collector: string;
|
|
818
|
+
signalHash: string;
|
|
819
|
+
observedAt?: string | undefined;
|
|
820
|
+
} | undefined;
|
|
821
|
+
staticEntryCount?: number | undefined;
|
|
822
|
+
observedCount?: number | undefined;
|
|
823
|
+
minimumCount?: number | undefined;
|
|
713
824
|
}[] | undefined;
|
|
714
825
|
cacheVariants?: {
|
|
715
826
|
audience: "public" | "crawler" | "subscriber" | "member" | "admin" | "private";
|
|
@@ -721,18 +832,18 @@ export declare const conformanceFixtureSchema: z.ZodObject<{
|
|
|
721
832
|
}[] | undefined;
|
|
722
833
|
securityReceipts?: {
|
|
723
834
|
functionalProbes?: {
|
|
724
|
-
name: string;
|
|
725
835
|
status: "pass" | "fail" | "na";
|
|
836
|
+
name: string;
|
|
837
|
+
checkedAt: string;
|
|
726
838
|
capabilityBoundary?: string | undefined;
|
|
727
839
|
evidence?: string | undefined;
|
|
728
|
-
checkedAt?: string | undefined;
|
|
729
840
|
}[] | undefined;
|
|
730
841
|
cspReports?: {
|
|
731
|
-
name: string;
|
|
732
842
|
status: "pass" | "fail" | "na";
|
|
843
|
+
name: string;
|
|
844
|
+
checkedAt: string;
|
|
733
845
|
capabilityBoundary?: string | undefined;
|
|
734
846
|
evidence?: string | undefined;
|
|
735
|
-
checkedAt?: string | undefined;
|
|
736
847
|
endpoint?: string | undefined;
|
|
737
848
|
}[] | undefined;
|
|
738
849
|
inlineStyleAttributes?: {
|
|
@@ -802,8 +913,8 @@ export declare const conformanceCheckReceiptSchema: z.ZodObject<{
|
|
|
802
913
|
remediation?: string | undefined;
|
|
803
914
|
}>, "many">;
|
|
804
915
|
}, "strip", z.ZodTypeAny, {
|
|
805
|
-
name: string;
|
|
806
916
|
status: "pass" | "fail" | "na";
|
|
917
|
+
name: string;
|
|
807
918
|
findings: {
|
|
808
919
|
code: string;
|
|
809
920
|
message: string;
|
|
@@ -813,8 +924,8 @@ export declare const conformanceCheckReceiptSchema: z.ZodObject<{
|
|
|
813
924
|
remediation?: string | undefined;
|
|
814
925
|
}[];
|
|
815
926
|
}, {
|
|
816
|
-
name: string;
|
|
817
927
|
status: "pass" | "fail" | "na";
|
|
928
|
+
name: string;
|
|
818
929
|
findings: {
|
|
819
930
|
code: string;
|
|
820
931
|
message: string;
|
|
@@ -890,8 +1001,8 @@ export declare const siteEvidenceBundleSchema: z.ZodObject<{
|
|
|
890
1001
|
remediation?: string | undefined;
|
|
891
1002
|
}>, "many">;
|
|
892
1003
|
}, "strip", z.ZodTypeAny, {
|
|
893
|
-
name: string;
|
|
894
1004
|
status: "pass" | "fail" | "na";
|
|
1005
|
+
name: string;
|
|
895
1006
|
findings: {
|
|
896
1007
|
code: string;
|
|
897
1008
|
message: string;
|
|
@@ -901,8 +1012,8 @@ export declare const siteEvidenceBundleSchema: z.ZodObject<{
|
|
|
901
1012
|
remediation?: string | undefined;
|
|
902
1013
|
}[];
|
|
903
1014
|
}, {
|
|
904
|
-
name: string;
|
|
905
1015
|
status: "pass" | "fail" | "na";
|
|
1016
|
+
name: string;
|
|
906
1017
|
findings: {
|
|
907
1018
|
code: string;
|
|
908
1019
|
message: string;
|
|
@@ -938,42 +1049,42 @@ export declare const siteEvidenceBundleSchema: z.ZodObject<{
|
|
|
938
1049
|
functionalProbes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
939
1050
|
name: z.ZodString;
|
|
940
1051
|
status: z.ZodEnum<["pass", "fail", "na"]>;
|
|
941
|
-
checkedAt: z.
|
|
1052
|
+
checkedAt: z.ZodString;
|
|
942
1053
|
evidence: z.ZodOptional<z.ZodString>;
|
|
943
1054
|
capabilityBoundary: z.ZodOptional<z.ZodString>;
|
|
944
1055
|
}, "strip", z.ZodTypeAny, {
|
|
945
|
-
name: string;
|
|
946
1056
|
status: "pass" | "fail" | "na";
|
|
1057
|
+
name: string;
|
|
1058
|
+
checkedAt: string;
|
|
947
1059
|
capabilityBoundary?: string | undefined;
|
|
948
1060
|
evidence?: string | undefined;
|
|
949
|
-
checkedAt?: string | undefined;
|
|
950
1061
|
}, {
|
|
951
|
-
name: string;
|
|
952
1062
|
status: "pass" | "fail" | "na";
|
|
1063
|
+
name: string;
|
|
1064
|
+
checkedAt: string;
|
|
953
1065
|
capabilityBoundary?: string | undefined;
|
|
954
1066
|
evidence?: string | undefined;
|
|
955
|
-
checkedAt?: string | undefined;
|
|
956
1067
|
}>, "many">>;
|
|
957
1068
|
cspReports: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
958
1069
|
name: z.ZodString;
|
|
959
1070
|
status: z.ZodEnum<["pass", "fail", "na"]>;
|
|
960
|
-
checkedAt: z.
|
|
1071
|
+
checkedAt: z.ZodString;
|
|
961
1072
|
evidence: z.ZodOptional<z.ZodString>;
|
|
962
1073
|
endpoint: z.ZodOptional<z.ZodString>;
|
|
963
1074
|
capabilityBoundary: z.ZodOptional<z.ZodString>;
|
|
964
1075
|
}, "strip", z.ZodTypeAny, {
|
|
965
|
-
name: string;
|
|
966
1076
|
status: "pass" | "fail" | "na";
|
|
1077
|
+
name: string;
|
|
1078
|
+
checkedAt: string;
|
|
967
1079
|
capabilityBoundary?: string | undefined;
|
|
968
1080
|
evidence?: string | undefined;
|
|
969
|
-
checkedAt?: string | undefined;
|
|
970
1081
|
endpoint?: string | undefined;
|
|
971
1082
|
}, {
|
|
972
|
-
name: string;
|
|
973
1083
|
status: "pass" | "fail" | "na";
|
|
1084
|
+
name: string;
|
|
1085
|
+
checkedAt: string;
|
|
974
1086
|
capabilityBoundary?: string | undefined;
|
|
975
1087
|
evidence?: string | undefined;
|
|
976
|
-
checkedAt?: string | undefined;
|
|
977
1088
|
endpoint?: string | undefined;
|
|
978
1089
|
}>, "many">>;
|
|
979
1090
|
inlineStyleAttributes: z.ZodOptional<z.ZodObject<{
|
|
@@ -1006,18 +1117,18 @@ export declare const siteEvidenceBundleSchema: z.ZodObject<{
|
|
|
1006
1117
|
}>>;
|
|
1007
1118
|
}, "strip", z.ZodTypeAny, {
|
|
1008
1119
|
functionalProbes: {
|
|
1009
|
-
name: string;
|
|
1010
1120
|
status: "pass" | "fail" | "na";
|
|
1121
|
+
name: string;
|
|
1122
|
+
checkedAt: string;
|
|
1011
1123
|
capabilityBoundary?: string | undefined;
|
|
1012
1124
|
evidence?: string | undefined;
|
|
1013
|
-
checkedAt?: string | undefined;
|
|
1014
1125
|
}[];
|
|
1015
1126
|
cspReports: {
|
|
1016
|
-
name: string;
|
|
1017
1127
|
status: "pass" | "fail" | "na";
|
|
1128
|
+
name: string;
|
|
1129
|
+
checkedAt: string;
|
|
1018
1130
|
capabilityBoundary?: string | undefined;
|
|
1019
1131
|
evidence?: string | undefined;
|
|
1020
|
-
checkedAt?: string | undefined;
|
|
1021
1132
|
endpoint?: string | undefined;
|
|
1022
1133
|
}[];
|
|
1023
1134
|
inlineStyleAttributes?: {
|
|
@@ -1030,18 +1141,18 @@ export declare const siteEvidenceBundleSchema: z.ZodObject<{
|
|
|
1030
1141
|
} | undefined;
|
|
1031
1142
|
}, {
|
|
1032
1143
|
functionalProbes?: {
|
|
1033
|
-
name: string;
|
|
1034
1144
|
status: "pass" | "fail" | "na";
|
|
1145
|
+
name: string;
|
|
1146
|
+
checkedAt: string;
|
|
1035
1147
|
capabilityBoundary?: string | undefined;
|
|
1036
1148
|
evidence?: string | undefined;
|
|
1037
|
-
checkedAt?: string | undefined;
|
|
1038
1149
|
}[] | undefined;
|
|
1039
1150
|
cspReports?: {
|
|
1040
|
-
name: string;
|
|
1041
1151
|
status: "pass" | "fail" | "na";
|
|
1152
|
+
name: string;
|
|
1153
|
+
checkedAt: string;
|
|
1042
1154
|
capabilityBoundary?: string | undefined;
|
|
1043
1155
|
evidence?: string | undefined;
|
|
1044
|
-
checkedAt?: string | undefined;
|
|
1045
1156
|
endpoint?: string | undefined;
|
|
1046
1157
|
}[] | undefined;
|
|
1047
1158
|
inlineStyleAttributes?: {
|
|
@@ -1054,25 +1165,25 @@ export declare const siteEvidenceBundleSchema: z.ZodObject<{
|
|
|
1054
1165
|
} | undefined;
|
|
1055
1166
|
}>>;
|
|
1056
1167
|
}, "strip", z.ZodTypeAny, {
|
|
1057
|
-
url: string;
|
|
1058
1168
|
status: "pass" | "fail";
|
|
1169
|
+
url: string;
|
|
1059
1170
|
generatedAt: string;
|
|
1060
1171
|
site: string;
|
|
1061
1172
|
environment: string;
|
|
1062
1173
|
securityReceipts: {
|
|
1063
1174
|
functionalProbes: {
|
|
1064
|
-
name: string;
|
|
1065
1175
|
status: "pass" | "fail" | "na";
|
|
1176
|
+
name: string;
|
|
1177
|
+
checkedAt: string;
|
|
1066
1178
|
capabilityBoundary?: string | undefined;
|
|
1067
1179
|
evidence?: string | undefined;
|
|
1068
|
-
checkedAt?: string | undefined;
|
|
1069
1180
|
}[];
|
|
1070
1181
|
cspReports: {
|
|
1071
|
-
name: string;
|
|
1072
1182
|
status: "pass" | "fail" | "na";
|
|
1183
|
+
name: string;
|
|
1184
|
+
checkedAt: string;
|
|
1073
1185
|
capabilityBoundary?: string | undefined;
|
|
1074
1186
|
evidence?: string | undefined;
|
|
1075
|
-
checkedAt?: string | undefined;
|
|
1076
1187
|
endpoint?: string | undefined;
|
|
1077
1188
|
}[];
|
|
1078
1189
|
inlineStyleAttributes?: {
|
|
@@ -1101,8 +1212,8 @@ export declare const siteEvidenceBundleSchema: z.ZodObject<{
|
|
|
1101
1212
|
findings: number;
|
|
1102
1213
|
};
|
|
1103
1214
|
checks: {
|
|
1104
|
-
name: string;
|
|
1105
1215
|
status: "pass" | "fail" | "na";
|
|
1216
|
+
name: string;
|
|
1106
1217
|
findings: {
|
|
1107
1218
|
code: string;
|
|
1108
1219
|
message: string;
|
|
@@ -1113,8 +1224,8 @@ export declare const siteEvidenceBundleSchema: z.ZodObject<{
|
|
|
1113
1224
|
}[];
|
|
1114
1225
|
}[];
|
|
1115
1226
|
}, {
|
|
1116
|
-
url: string;
|
|
1117
1227
|
status: "pass" | "fail";
|
|
1228
|
+
url: string;
|
|
1118
1229
|
generatedAt: string;
|
|
1119
1230
|
site: string;
|
|
1120
1231
|
environment: string;
|
|
@@ -1135,8 +1246,8 @@ export declare const siteEvidenceBundleSchema: z.ZodObject<{
|
|
|
1135
1246
|
findings: number;
|
|
1136
1247
|
};
|
|
1137
1248
|
checks: {
|
|
1138
|
-
name: string;
|
|
1139
1249
|
status: "pass" | "fail" | "na";
|
|
1250
|
+
name: string;
|
|
1140
1251
|
findings: {
|
|
1141
1252
|
code: string;
|
|
1142
1253
|
message: string;
|
|
@@ -1148,18 +1259,18 @@ export declare const siteEvidenceBundleSchema: z.ZodObject<{
|
|
|
1148
1259
|
}[];
|
|
1149
1260
|
securityReceipts?: {
|
|
1150
1261
|
functionalProbes?: {
|
|
1151
|
-
name: string;
|
|
1152
1262
|
status: "pass" | "fail" | "na";
|
|
1263
|
+
name: string;
|
|
1264
|
+
checkedAt: string;
|
|
1153
1265
|
capabilityBoundary?: string | undefined;
|
|
1154
1266
|
evidence?: string | undefined;
|
|
1155
|
-
checkedAt?: string | undefined;
|
|
1156
1267
|
}[] | undefined;
|
|
1157
1268
|
cspReports?: {
|
|
1158
|
-
name: string;
|
|
1159
1269
|
status: "pass" | "fail" | "na";
|
|
1270
|
+
name: string;
|
|
1271
|
+
checkedAt: string;
|
|
1160
1272
|
capabilityBoundary?: string | undefined;
|
|
1161
1273
|
evidence?: string | undefined;
|
|
1162
|
-
checkedAt?: string | undefined;
|
|
1163
1274
|
endpoint?: string | undefined;
|
|
1164
1275
|
}[] | undefined;
|
|
1165
1276
|
inlineStyleAttributes?: {
|
|
@@ -1246,8 +1357,8 @@ export declare const fleetEvidenceBundleSchema: z.ZodObject<{
|
|
|
1246
1357
|
remediation?: string | undefined;
|
|
1247
1358
|
}>, "many">;
|
|
1248
1359
|
}, "strip", z.ZodTypeAny, {
|
|
1249
|
-
name: string;
|
|
1250
1360
|
status: "pass" | "fail" | "na";
|
|
1361
|
+
name: string;
|
|
1251
1362
|
findings: {
|
|
1252
1363
|
code: string;
|
|
1253
1364
|
message: string;
|
|
@@ -1257,8 +1368,8 @@ export declare const fleetEvidenceBundleSchema: z.ZodObject<{
|
|
|
1257
1368
|
remediation?: string | undefined;
|
|
1258
1369
|
}[];
|
|
1259
1370
|
}, {
|
|
1260
|
-
name: string;
|
|
1261
1371
|
status: "pass" | "fail" | "na";
|
|
1372
|
+
name: string;
|
|
1262
1373
|
findings: {
|
|
1263
1374
|
code: string;
|
|
1264
1375
|
message: string;
|
|
@@ -1294,42 +1405,42 @@ export declare const fleetEvidenceBundleSchema: z.ZodObject<{
|
|
|
1294
1405
|
functionalProbes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1295
1406
|
name: z.ZodString;
|
|
1296
1407
|
status: z.ZodEnum<["pass", "fail", "na"]>;
|
|
1297
|
-
checkedAt: z.
|
|
1408
|
+
checkedAt: z.ZodString;
|
|
1298
1409
|
evidence: z.ZodOptional<z.ZodString>;
|
|
1299
1410
|
capabilityBoundary: z.ZodOptional<z.ZodString>;
|
|
1300
1411
|
}, "strip", z.ZodTypeAny, {
|
|
1301
|
-
name: string;
|
|
1302
1412
|
status: "pass" | "fail" | "na";
|
|
1413
|
+
name: string;
|
|
1414
|
+
checkedAt: string;
|
|
1303
1415
|
capabilityBoundary?: string | undefined;
|
|
1304
1416
|
evidence?: string | undefined;
|
|
1305
|
-
checkedAt?: string | undefined;
|
|
1306
1417
|
}, {
|
|
1307
|
-
name: string;
|
|
1308
1418
|
status: "pass" | "fail" | "na";
|
|
1419
|
+
name: string;
|
|
1420
|
+
checkedAt: string;
|
|
1309
1421
|
capabilityBoundary?: string | undefined;
|
|
1310
1422
|
evidence?: string | undefined;
|
|
1311
|
-
checkedAt?: string | undefined;
|
|
1312
1423
|
}>, "many">>;
|
|
1313
1424
|
cspReports: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1314
1425
|
name: z.ZodString;
|
|
1315
1426
|
status: z.ZodEnum<["pass", "fail", "na"]>;
|
|
1316
|
-
checkedAt: z.
|
|
1427
|
+
checkedAt: z.ZodString;
|
|
1317
1428
|
evidence: z.ZodOptional<z.ZodString>;
|
|
1318
1429
|
endpoint: z.ZodOptional<z.ZodString>;
|
|
1319
1430
|
capabilityBoundary: z.ZodOptional<z.ZodString>;
|
|
1320
1431
|
}, "strip", z.ZodTypeAny, {
|
|
1321
|
-
name: string;
|
|
1322
1432
|
status: "pass" | "fail" | "na";
|
|
1433
|
+
name: string;
|
|
1434
|
+
checkedAt: string;
|
|
1323
1435
|
capabilityBoundary?: string | undefined;
|
|
1324
1436
|
evidence?: string | undefined;
|
|
1325
|
-
checkedAt?: string | undefined;
|
|
1326
1437
|
endpoint?: string | undefined;
|
|
1327
1438
|
}, {
|
|
1328
|
-
name: string;
|
|
1329
1439
|
status: "pass" | "fail" | "na";
|
|
1440
|
+
name: string;
|
|
1441
|
+
checkedAt: string;
|
|
1330
1442
|
capabilityBoundary?: string | undefined;
|
|
1331
1443
|
evidence?: string | undefined;
|
|
1332
|
-
checkedAt?: string | undefined;
|
|
1333
1444
|
endpoint?: string | undefined;
|
|
1334
1445
|
}>, "many">>;
|
|
1335
1446
|
inlineStyleAttributes: z.ZodOptional<z.ZodObject<{
|
|
@@ -1362,18 +1473,18 @@ export declare const fleetEvidenceBundleSchema: z.ZodObject<{
|
|
|
1362
1473
|
}>>;
|
|
1363
1474
|
}, "strip", z.ZodTypeAny, {
|
|
1364
1475
|
functionalProbes: {
|
|
1365
|
-
name: string;
|
|
1366
1476
|
status: "pass" | "fail" | "na";
|
|
1477
|
+
name: string;
|
|
1478
|
+
checkedAt: string;
|
|
1367
1479
|
capabilityBoundary?: string | undefined;
|
|
1368
1480
|
evidence?: string | undefined;
|
|
1369
|
-
checkedAt?: string | undefined;
|
|
1370
1481
|
}[];
|
|
1371
1482
|
cspReports: {
|
|
1372
|
-
name: string;
|
|
1373
1483
|
status: "pass" | "fail" | "na";
|
|
1484
|
+
name: string;
|
|
1485
|
+
checkedAt: string;
|
|
1374
1486
|
capabilityBoundary?: string | undefined;
|
|
1375
1487
|
evidence?: string | undefined;
|
|
1376
|
-
checkedAt?: string | undefined;
|
|
1377
1488
|
endpoint?: string | undefined;
|
|
1378
1489
|
}[];
|
|
1379
1490
|
inlineStyleAttributes?: {
|
|
@@ -1386,18 +1497,18 @@ export declare const fleetEvidenceBundleSchema: z.ZodObject<{
|
|
|
1386
1497
|
} | undefined;
|
|
1387
1498
|
}, {
|
|
1388
1499
|
functionalProbes?: {
|
|
1389
|
-
name: string;
|
|
1390
1500
|
status: "pass" | "fail" | "na";
|
|
1501
|
+
name: string;
|
|
1502
|
+
checkedAt: string;
|
|
1391
1503
|
capabilityBoundary?: string | undefined;
|
|
1392
1504
|
evidence?: string | undefined;
|
|
1393
|
-
checkedAt?: string | undefined;
|
|
1394
1505
|
}[] | undefined;
|
|
1395
1506
|
cspReports?: {
|
|
1396
|
-
name: string;
|
|
1397
1507
|
status: "pass" | "fail" | "na";
|
|
1508
|
+
name: string;
|
|
1509
|
+
checkedAt: string;
|
|
1398
1510
|
capabilityBoundary?: string | undefined;
|
|
1399
1511
|
evidence?: string | undefined;
|
|
1400
|
-
checkedAt?: string | undefined;
|
|
1401
1512
|
endpoint?: string | undefined;
|
|
1402
1513
|
}[] | undefined;
|
|
1403
1514
|
inlineStyleAttributes?: {
|
|
@@ -1410,25 +1521,25 @@ export declare const fleetEvidenceBundleSchema: z.ZodObject<{
|
|
|
1410
1521
|
} | undefined;
|
|
1411
1522
|
}>>;
|
|
1412
1523
|
}, "strip", z.ZodTypeAny, {
|
|
1413
|
-
url: string;
|
|
1414
1524
|
status: "pass" | "fail";
|
|
1525
|
+
url: string;
|
|
1415
1526
|
generatedAt: string;
|
|
1416
1527
|
site: string;
|
|
1417
1528
|
environment: string;
|
|
1418
1529
|
securityReceipts: {
|
|
1419
1530
|
functionalProbes: {
|
|
1420
|
-
name: string;
|
|
1421
1531
|
status: "pass" | "fail" | "na";
|
|
1532
|
+
name: string;
|
|
1533
|
+
checkedAt: string;
|
|
1422
1534
|
capabilityBoundary?: string | undefined;
|
|
1423
1535
|
evidence?: string | undefined;
|
|
1424
|
-
checkedAt?: string | undefined;
|
|
1425
1536
|
}[];
|
|
1426
1537
|
cspReports: {
|
|
1427
|
-
name: string;
|
|
1428
1538
|
status: "pass" | "fail" | "na";
|
|
1539
|
+
name: string;
|
|
1540
|
+
checkedAt: string;
|
|
1429
1541
|
capabilityBoundary?: string | undefined;
|
|
1430
1542
|
evidence?: string | undefined;
|
|
1431
|
-
checkedAt?: string | undefined;
|
|
1432
1543
|
endpoint?: string | undefined;
|
|
1433
1544
|
}[];
|
|
1434
1545
|
inlineStyleAttributes?: {
|
|
@@ -1457,8 +1568,8 @@ export declare const fleetEvidenceBundleSchema: z.ZodObject<{
|
|
|
1457
1568
|
findings: number;
|
|
1458
1569
|
};
|
|
1459
1570
|
checks: {
|
|
1460
|
-
name: string;
|
|
1461
1571
|
status: "pass" | "fail" | "na";
|
|
1572
|
+
name: string;
|
|
1462
1573
|
findings: {
|
|
1463
1574
|
code: string;
|
|
1464
1575
|
message: string;
|
|
@@ -1469,8 +1580,8 @@ export declare const fleetEvidenceBundleSchema: z.ZodObject<{
|
|
|
1469
1580
|
}[];
|
|
1470
1581
|
}[];
|
|
1471
1582
|
}, {
|
|
1472
|
-
url: string;
|
|
1473
1583
|
status: "pass" | "fail";
|
|
1584
|
+
url: string;
|
|
1474
1585
|
generatedAt: string;
|
|
1475
1586
|
site: string;
|
|
1476
1587
|
environment: string;
|
|
@@ -1491,8 +1602,8 @@ export declare const fleetEvidenceBundleSchema: z.ZodObject<{
|
|
|
1491
1602
|
findings: number;
|
|
1492
1603
|
};
|
|
1493
1604
|
checks: {
|
|
1494
|
-
name: string;
|
|
1495
1605
|
status: "pass" | "fail" | "na";
|
|
1606
|
+
name: string;
|
|
1496
1607
|
findings: {
|
|
1497
1608
|
code: string;
|
|
1498
1609
|
message: string;
|
|
@@ -1504,18 +1615,18 @@ export declare const fleetEvidenceBundleSchema: z.ZodObject<{
|
|
|
1504
1615
|
}[];
|
|
1505
1616
|
securityReceipts?: {
|
|
1506
1617
|
functionalProbes?: {
|
|
1507
|
-
name: string;
|
|
1508
1618
|
status: "pass" | "fail" | "na";
|
|
1619
|
+
name: string;
|
|
1620
|
+
checkedAt: string;
|
|
1509
1621
|
capabilityBoundary?: string | undefined;
|
|
1510
1622
|
evidence?: string | undefined;
|
|
1511
|
-
checkedAt?: string | undefined;
|
|
1512
1623
|
}[] | undefined;
|
|
1513
1624
|
cspReports?: {
|
|
1514
|
-
name: string;
|
|
1515
1625
|
status: "pass" | "fail" | "na";
|
|
1626
|
+
name: string;
|
|
1627
|
+
checkedAt: string;
|
|
1516
1628
|
capabilityBoundary?: string | undefined;
|
|
1517
1629
|
evidence?: string | undefined;
|
|
1518
|
-
checkedAt?: string | undefined;
|
|
1519
1630
|
endpoint?: string | undefined;
|
|
1520
1631
|
}[] | undefined;
|
|
1521
1632
|
inlineStyleAttributes?: {
|
|
@@ -1540,25 +1651,25 @@ export declare const fleetEvidenceBundleSchema: z.ZodObject<{
|
|
|
1540
1651
|
sites: number;
|
|
1541
1652
|
};
|
|
1542
1653
|
sites: {
|
|
1543
|
-
url: string;
|
|
1544
1654
|
status: "pass" | "fail";
|
|
1655
|
+
url: string;
|
|
1545
1656
|
generatedAt: string;
|
|
1546
1657
|
site: string;
|
|
1547
1658
|
environment: string;
|
|
1548
1659
|
securityReceipts: {
|
|
1549
1660
|
functionalProbes: {
|
|
1550
|
-
name: string;
|
|
1551
1661
|
status: "pass" | "fail" | "na";
|
|
1662
|
+
name: string;
|
|
1663
|
+
checkedAt: string;
|
|
1552
1664
|
capabilityBoundary?: string | undefined;
|
|
1553
1665
|
evidence?: string | undefined;
|
|
1554
|
-
checkedAt?: string | undefined;
|
|
1555
1666
|
}[];
|
|
1556
1667
|
cspReports: {
|
|
1557
|
-
name: string;
|
|
1558
1668
|
status: "pass" | "fail" | "na";
|
|
1669
|
+
name: string;
|
|
1670
|
+
checkedAt: string;
|
|
1559
1671
|
capabilityBoundary?: string | undefined;
|
|
1560
1672
|
evidence?: string | undefined;
|
|
1561
|
-
checkedAt?: string | undefined;
|
|
1562
1673
|
endpoint?: string | undefined;
|
|
1563
1674
|
}[];
|
|
1564
1675
|
inlineStyleAttributes?: {
|
|
@@ -1587,8 +1698,8 @@ export declare const fleetEvidenceBundleSchema: z.ZodObject<{
|
|
|
1587
1698
|
findings: number;
|
|
1588
1699
|
};
|
|
1589
1700
|
checks: {
|
|
1590
|
-
name: string;
|
|
1591
1701
|
status: "pass" | "fail" | "na";
|
|
1702
|
+
name: string;
|
|
1592
1703
|
findings: {
|
|
1593
1704
|
code: string;
|
|
1594
1705
|
message: string;
|
|
@@ -1611,8 +1722,8 @@ export declare const fleetEvidenceBundleSchema: z.ZodObject<{
|
|
|
1611
1722
|
sites: number;
|
|
1612
1723
|
};
|
|
1613
1724
|
sites: {
|
|
1614
|
-
url: string;
|
|
1615
1725
|
status: "pass" | "fail";
|
|
1726
|
+
url: string;
|
|
1616
1727
|
generatedAt: string;
|
|
1617
1728
|
site: string;
|
|
1618
1729
|
environment: string;
|
|
@@ -1633,8 +1744,8 @@ export declare const fleetEvidenceBundleSchema: z.ZodObject<{
|
|
|
1633
1744
|
findings: number;
|
|
1634
1745
|
};
|
|
1635
1746
|
checks: {
|
|
1636
|
-
name: string;
|
|
1637
1747
|
status: "pass" | "fail" | "na";
|
|
1748
|
+
name: string;
|
|
1638
1749
|
findings: {
|
|
1639
1750
|
code: string;
|
|
1640
1751
|
message: string;
|
|
@@ -1646,18 +1757,18 @@ export declare const fleetEvidenceBundleSchema: z.ZodObject<{
|
|
|
1646
1757
|
}[];
|
|
1647
1758
|
securityReceipts?: {
|
|
1648
1759
|
functionalProbes?: {
|
|
1649
|
-
name: string;
|
|
1650
1760
|
status: "pass" | "fail" | "na";
|
|
1761
|
+
name: string;
|
|
1762
|
+
checkedAt: string;
|
|
1651
1763
|
capabilityBoundary?: string | undefined;
|
|
1652
1764
|
evidence?: string | undefined;
|
|
1653
|
-
checkedAt?: string | undefined;
|
|
1654
1765
|
}[] | undefined;
|
|
1655
1766
|
cspReports?: {
|
|
1656
|
-
name: string;
|
|
1657
1767
|
status: "pass" | "fail" | "na";
|
|
1768
|
+
name: string;
|
|
1769
|
+
checkedAt: string;
|
|
1658
1770
|
capabilityBoundary?: string | undefined;
|
|
1659
1771
|
evidence?: string | undefined;
|
|
1660
|
-
checkedAt?: string | undefined;
|
|
1661
1772
|
endpoint?: string | undefined;
|
|
1662
1773
|
}[] | undefined;
|
|
1663
1774
|
inlineStyleAttributes?: {
|
|
@@ -1675,6 +1786,8 @@ export type Audience = z.infer<typeof audienceSchema>;
|
|
|
1675
1786
|
export type RenderMode = z.infer<typeof renderModeSchema>;
|
|
1676
1787
|
export type HeaderMap = z.infer<typeof headerMapSchema>;
|
|
1677
1788
|
export type SurfaceResponse = z.infer<typeof surfaceResponseSchema>;
|
|
1789
|
+
export type PublicationSurfaceOwner = z.infer<typeof publicationSurfaceOwnerSchema>;
|
|
1790
|
+
export type PublicationSurfaceOwnerReceipt = z.infer<typeof publicationSurfaceOwnerReceiptSchema>;
|
|
1678
1791
|
export type PublicationSurfaceEvidence = z.infer<typeof publicationSurfaceSchema>;
|
|
1679
1792
|
export type CacheVariant = z.infer<typeof cacheVariantSchema>;
|
|
1680
1793
|
export type SecurityFunctionalProbeReceipt = z.infer<typeof securityFunctionalProbeReceiptSchema>;
|