devtools-protocol 0.0.1177611 → 0.0.1179426
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.
| @@ -17446,6 +17446,13 @@ | |
| 17446 17446 | 
             
                                            "ReturnAsBase64",
         | 
| 17447 17447 | 
             
                                            "ReturnAsStream"
         | 
| 17448 17448 | 
             
                                        ]
         | 
| 17449 | 
            +
                                    },
         | 
| 17450 | 
            +
                                    {
         | 
| 17451 | 
            +
                                        "name": "generateTaggedPDF",
         | 
| 17452 | 
            +
                                        "description": "Whether or not to generate tagged (accessible) PDF. Defaults to embedder choice.",
         | 
| 17453 | 
            +
                                        "experimental": true,
         | 
| 17454 | 
            +
                                        "optional": true,
         | 
| 17455 | 
            +
                                        "type": "boolean"
         | 
| 17449 17456 | 
             
                                    }
         | 
| 17450 17457 | 
             
                                ],
         | 
| 17451 17458 | 
             
                                "returns": [
         | 
| @@ -20016,7 +20023,8 @@ | |
| 20016 20023 | 
             
                                    "destinationReportingLimitReached",
         | 
| 20017 20024 | 
             
                                    "destinationGlobalLimitReached",
         | 
| 20018 20025 | 
             
                                    "destinationBothLimitsReached",
         | 
| 20019 | 
            -
                                    "reportingOriginsPerSiteLimitReached"
         | 
| 20026 | 
            +
                                    "reportingOriginsPerSiteLimitReached",
         | 
| 20027 | 
            +
                                    "exceedsMaxChannelCapacity"
         | 
| 20020 20028 | 
             
                                ]
         | 
| 20021 20029 | 
             
                            }
         | 
| 20022 20030 | 
             
                        ],
         | 
    
        package/package.json
    CHANGED
    
    
    
        package/pdl/browser_protocol.pdl
    CHANGED
    
    | @@ -8070,6 +8070,8 @@ domain Page | |
| 8070 8070 | 
             
                  experimental optional enum transferMode
         | 
| 8071 8071 | 
             
                    ReturnAsBase64
         | 
| 8072 8072 | 
             
                    ReturnAsStream
         | 
| 8073 | 
            +
                  # Whether or not to generate tagged (accessible) PDF. Defaults to embedder choice.
         | 
| 8074 | 
            +
                  experimental optional boolean generateTaggedPDF
         | 
| 8073 8075 | 
             
                returns
         | 
| 8074 8076 | 
             
                  # Base64-encoded pdf data. Empty if |returnAsStream| is specified.
         | 
| 8075 8077 | 
             
                  binary data
         | 
| @@ -9720,6 +9722,7 @@ experimental domain Storage | |
| 9720 9722 | 
             
                  destinationGlobalLimitReached
         | 
| 9721 9723 | 
             
                  destinationBothLimitsReached
         | 
| 9722 9724 | 
             
                  reportingOriginsPerSiteLimitReached
         | 
| 9725 | 
            +
                  exceedsMaxChannelCapacity
         | 
| 9723 9726 |  | 
| 9724 9727 | 
             
              # TODO(crbug.com/1458532): Add other Attribution Reporting events, e.g.
         | 
| 9725 9728 | 
             
              # trigger registration.
         | 
    
        package/types/protocol.d.ts
    CHANGED
    
    | @@ -13584,6 +13584,10 @@ export namespace Protocol { | |
| 13584 13584 | 
             
                         * return as stream (PrintToPDFRequestTransferMode enum)
         | 
| 13585 13585 | 
             
                         */
         | 
| 13586 13586 | 
             
                        transferMode?: ('ReturnAsBase64' | 'ReturnAsStream');
         | 
| 13587 | 
            +
                        /**
         | 
| 13588 | 
            +
                         * Whether or not to generate tagged (accessible) PDF. Defaults to embedder choice.
         | 
| 13589 | 
            +
                         */
         | 
| 13590 | 
            +
                        generateTaggedPDF?: boolean;
         | 
| 13587 13591 | 
             
                    }
         | 
| 13588 13592 |  | 
| 13589 13593 | 
             
                    export interface PrintToPDFResponse {
         | 
| @@ -15077,7 +15081,7 @@ export namespace Protocol { | |
| 15077 15081 | 
             
                        debugKey?: UnsignedInt64AsBase10;
         | 
| 15078 15082 | 
             
                    }
         | 
| 15079 15083 |  | 
| 15080 | 
            -
                    export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached');
         | 
| 15084 | 
            +
                    export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity');
         | 
| 15081 15085 |  | 
| 15082 15086 | 
             
                    export interface GetStorageKeyForFrameRequest {
         | 
| 15083 15087 | 
             
                        frameId: Page.FrameId;
         |