File tree Expand file tree Collapse file tree 2 files changed +66
-1
lines changed Expand file tree Collapse file tree 2 files changed +66
-1
lines changed Original file line number Diff line number Diff line change 201
201
}
202
202
}
203
203
},
204
- "revision" : " 20240530 " ,
204
+ "revision" : " 20240829 " ,
205
205
"rootUrl" : " https://pagespeedonline.googleapis.com/" ,
206
206
"schemas" : {
207
207
"AuditRefs" : {
432
432
"description" : " The audit's id." ,
433
433
"type" : " string"
434
434
},
435
+ "metricSavings" : {
436
+ "$ref" : " MetricSavings" ,
437
+ "description" : " The metric savings of the audit."
438
+ },
435
439
"numericUnit" : {
436
440
"description" : " The unit of the numeric_value field. Used to format the numeric value for display." ,
437
441
"type" : " string"
592
596
},
593
597
"type" : " object"
594
598
},
599
+ "MetricSavings" : {
600
+ "description" : " The metric savings of the audit." ,
601
+ "id" : " MetricSavings" ,
602
+ "properties" : {
603
+ "CLS" : {
604
+ "description" : " Optional. Optional numeric value representing the audit's savings for the CLS metric." ,
605
+ "format" : " double" ,
606
+ "type" : " number"
607
+ },
608
+ "FCP" : {
609
+ "description" : " Optional. Optional numeric value representing the audit's savings for the FCP metric." ,
610
+ "format" : " double" ,
611
+ "type" : " number"
612
+ },
613
+ "INP" : {
614
+ "description" : " Optional. Optional numeric value representing the audit's savings for the INP metric." ,
615
+ "format" : " double" ,
616
+ "type" : " number"
617
+ },
618
+ "LCP" : {
619
+ "description" : " Optional. Optional numeric value representing the audit's savings for the LCP metric." ,
620
+ "format" : " double" ,
621
+ "type" : " number"
622
+ },
623
+ "TBT" : {
624
+ "description" : " Optional. Optional numeric value representing the audit's savings for the TBT metric." ,
625
+ "format" : " double" ,
626
+ "type" : " number"
627
+ }
628
+ },
629
+ "type" : " object"
630
+ },
595
631
"PagespeedApiLoadingExperienceV5" : {
596
632
"description" : " The CrUX loading experience object that contains CrUX data breakdowns." ,
597
633
"id" : " PagespeedApiLoadingExperienceV5" ,
Original file line number Diff line number Diff line change @@ -316,6 +316,10 @@ export namespace pagespeedonline_v5 {
316
316
* The audit's id.
317
317
*/
318
318
id ?: string | null ;
319
+ /**
320
+ * The metric savings of the audit.
321
+ */
322
+ metricSavings ?: Schema$MetricSavings ;
319
323
/**
320
324
* The unit of the numeric_value field. Used to format the numeric value for display.
321
325
*/
@@ -451,6 +455,31 @@ export namespace pagespeedonline_v5 {
451
455
*/
452
456
userAgent ?: string | null ;
453
457
}
458
+ /**
459
+ * The metric savings of the audit.
460
+ */
461
+ export interface Schema$MetricSavings {
462
+ /**
463
+ * Optional. Optional numeric value representing the audit's savings for the CLS metric.
464
+ */
465
+ CLS ?: number | null ;
466
+ /**
467
+ * Optional. Optional numeric value representing the audit's savings for the FCP metric.
468
+ */
469
+ FCP ?: number | null ;
470
+ /**
471
+ * Optional. Optional numeric value representing the audit's savings for the INP metric.
472
+ */
473
+ INP ?: number | null ;
474
+ /**
475
+ * Optional. Optional numeric value representing the audit's savings for the LCP metric.
476
+ */
477
+ LCP ?: number | null ;
478
+ /**
479
+ * Optional. Optional numeric value representing the audit's savings for the TBT metric.
480
+ */
481
+ TBT ?: number | null ;
482
+ }
454
483
/**
455
484
* The CrUX loading experience object that contains CrUX data breakdowns.
456
485
*/
You can’t perform that action at this time.
0 commit comments