diff --git a/audits/types.go b/audits/types.go index 4cae4de..3089aed 100644 --- a/audits/types.go +++ b/audits/types.go @@ -786,6 +786,11 @@ const ( AttributionReportingIssueTypeWebAndOsHeaders AttributionReportingIssueType = "WebAndOsHeaders" AttributionReportingIssueTypeNoWebOrOsSupport AttributionReportingIssueType = "NoWebOrOsSupport" AttributionReportingIssueTypeNavigationRegistrationWithoutTransientUserActivation AttributionReportingIssueType = "NavigationRegistrationWithoutTransientUserActivation" + AttributionReportingIssueTypeInvalidInfoHeader AttributionReportingIssueType = "InvalidInfoHeader" + AttributionReportingIssueTypeNoRegisterSourceHeader AttributionReportingIssueType = "NoRegisterSourceHeader" + AttributionReportingIssueTypeNoRegisterTriggerHeader AttributionReportingIssueType = "NoRegisterTriggerHeader" + AttributionReportingIssueTypeNoRegisterOsSourceHeader AttributionReportingIssueType = "NoRegisterOsSourceHeader" + AttributionReportingIssueTypeNoRegisterOsTriggerHeader AttributionReportingIssueType = "NoRegisterOsTriggerHeader" ) // MarshalEasyJSON satisfies easyjson.Marshaler. @@ -832,6 +837,16 @@ func (t *AttributionReportingIssueType) UnmarshalEasyJSON(in *jlexer.Lexer) { *t = AttributionReportingIssueTypeNoWebOrOsSupport case AttributionReportingIssueTypeNavigationRegistrationWithoutTransientUserActivation: *t = AttributionReportingIssueTypeNavigationRegistrationWithoutTransientUserActivation + case AttributionReportingIssueTypeInvalidInfoHeader: + *t = AttributionReportingIssueTypeInvalidInfoHeader + case AttributionReportingIssueTypeNoRegisterSourceHeader: + *t = AttributionReportingIssueTypeNoRegisterSourceHeader + case AttributionReportingIssueTypeNoRegisterTriggerHeader: + *t = AttributionReportingIssueTypeNoRegisterTriggerHeader + case AttributionReportingIssueTypeNoRegisterOsSourceHeader: + *t = AttributionReportingIssueTypeNoRegisterOsSourceHeader + case AttributionReportingIssueTypeNoRegisterOsTriggerHeader: + *t = AttributionReportingIssueTypeNoRegisterOsTriggerHeader default: in.AddError(fmt.Errorf("unknown AttributionReportingIssueType value: %v", v)) diff --git a/page/types.go b/page/types.go index c9d2e64..434b10e 100644 --- a/page/types.go +++ b/page/types.go @@ -1079,6 +1079,7 @@ const ( BackForwardCacheNotRestoredReasonSmartCard BackForwardCacheNotRestoredReason = "SmartCard" BackForwardCacheNotRestoredReasonLiveMediaStreamTrack BackForwardCacheNotRestoredReason = "LiveMediaStreamTrack" BackForwardCacheNotRestoredReasonUnloadHandler BackForwardCacheNotRestoredReason = "UnloadHandler" + BackForwardCacheNotRestoredReasonParserAborted BackForwardCacheNotRestoredReason = "ParserAborted" BackForwardCacheNotRestoredReasonContentSecurityHandler BackForwardCacheNotRestoredReason = "ContentSecurityHandler" BackForwardCacheNotRestoredReasonContentWebAuthenticationAPI BackForwardCacheNotRestoredReason = "ContentWebAuthenticationAPI" BackForwardCacheNotRestoredReasonContentFileChooser BackForwardCacheNotRestoredReason = "ContentFileChooser" @@ -1330,6 +1331,8 @@ func (t *BackForwardCacheNotRestoredReason) UnmarshalEasyJSON(in *jlexer.Lexer) *t = BackForwardCacheNotRestoredReasonLiveMediaStreamTrack case BackForwardCacheNotRestoredReasonUnloadHandler: *t = BackForwardCacheNotRestoredReasonUnloadHandler + case BackForwardCacheNotRestoredReasonParserAborted: + *t = BackForwardCacheNotRestoredReasonParserAborted case BackForwardCacheNotRestoredReasonContentSecurityHandler: *t = BackForwardCacheNotRestoredReasonContentSecurityHandler case BackForwardCacheNotRestoredReasonContentWebAuthenticationAPI: