@@ -1923,7 +1923,6 @@ def styleguide(
19231923 * ,
19241924 direct_url : str | Omit = omit ,
19251925 domain : str | Omit = omit ,
1926- prioritize : Literal ["speed" , "quality" ] | Omit = omit ,
19271926 timeout_ms : int | Omit = omit ,
19281927 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
19291928 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -1945,11 +1944,6 @@ def styleguide(
19451944 domain: Domain name to extract styleguide from (e.g., 'example.com', 'google.com'). The
19461945 domain will be automatically normalized and validated.
19471946
1948- prioritize: Optional parameter to prioritize screenshot capture for styleguide extraction.
1949- If 'speed', optimizes for faster capture with basic quality. If 'quality',
1950- optimizes for higher quality with longer wait times. Defaults to 'quality' if
1951- not provided.
1952-
19531947 timeout_ms: Optional timeout in milliseconds for the request. If the request takes longer
19541948 than this value, it will be aborted with a 408 status code. Maximum allowed
19551949 value is 300000ms (5 minutes).
@@ -1973,7 +1967,6 @@ def styleguide(
19731967 {
19741968 "direct_url" : direct_url ,
19751969 "domain" : domain ,
1976- "prioritize" : prioritize ,
19771970 "timeout_ms" : timeout_ms ,
19781971 },
19791972 brand_styleguide_params .BrandStyleguideParams ,
@@ -4030,7 +4023,6 @@ async def styleguide(
40304023 * ,
40314024 direct_url : str | Omit = omit ,
40324025 domain : str | Omit = omit ,
4033- prioritize : Literal ["speed" , "quality" ] | Omit = omit ,
40344026 timeout_ms : int | Omit = omit ,
40354027 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
40364028 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -4052,11 +4044,6 @@ async def styleguide(
40524044 domain: Domain name to extract styleguide from (e.g., 'example.com', 'google.com'). The
40534045 domain will be automatically normalized and validated.
40544046
4055- prioritize: Optional parameter to prioritize screenshot capture for styleguide extraction.
4056- If 'speed', optimizes for faster capture with basic quality. If 'quality',
4057- optimizes for higher quality with longer wait times. Defaults to 'quality' if
4058- not provided.
4059-
40604047 timeout_ms: Optional timeout in milliseconds for the request. If the request takes longer
40614048 than this value, it will be aborted with a 408 status code. Maximum allowed
40624049 value is 300000ms (5 minutes).
@@ -4080,7 +4067,6 @@ async def styleguide(
40804067 {
40814068 "direct_url" : direct_url ,
40824069 "domain" : domain ,
4083- "prioritize" : prioritize ,
40844070 "timeout_ms" : timeout_ms ,
40854071 },
40864072 brand_styleguide_params .BrandStyleguideParams ,
0 commit comments