Skip to content

Commit 3f2fc3c

Browse files
Merge remote-tracking branch 'origin/main' into stlc/promote-next
2 parents e58d036 + 29d5ec5 commit 3f2fc3c

4 files changed

Lines changed: 33 additions & 21 deletions

File tree

‎src/resources/auth/connections.ts‎

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,10 @@ export interface ManagedAuth {
261261
status: 'AUTHENTICATED' | 'NEEDS_AUTH';
262262

263263
/**
264-
* Additional domains that are valid for this auth flow (besides the primary
265-
* domain). Useful when login pages redirect to different domains.
264+
* Additional hostname roots valid for this auth flow, besides the primary domain.
265+
* Each value allows credential entry on that exact hostname and its subdomains.
266+
* Leading `www.` and `*.` labels are normalized away. When omitted or empty,
267+
* credential entry is unrestricted.
266268
*
267269
* The following SSO/OAuth provider domains are automatically allowed by default
268270
* and do not need to be specified:
@@ -1016,8 +1018,10 @@ export interface ManagedAuthCreateRequest {
10161018
profile_name: string;
10171019

10181020
/**
1019-
* Additional domains valid for this auth flow (besides the primary domain). Useful
1020-
* when login pages redirect to different domains.
1021+
* Additional hostname roots valid for this auth flow, besides the primary domain.
1022+
* Each value allows credential entry on that exact hostname and its subdomains.
1023+
* Leading `www.` and `*.` labels are normalized away. When omitted or empty,
1024+
* credential entry is unrestricted.
10211025
*
10221026
* The following SSO/OAuth provider domains are automatically allowed by default
10231027
* and do not need to be specified:
@@ -1336,7 +1340,10 @@ export interface ManagedAuthTimelineEvent {
13361340
*/
13371341
export interface ManagedAuthUpdateRequest {
13381342
/**
1339-
* Additional domains valid for this auth flow (replaces existing list)
1343+
* Additional hostname roots valid for this auth flow. Each value allows credential
1344+
* entry on that exact hostname and its subdomains; leading `www.` and `*.` labels
1345+
* are normalized away. An empty list leaves credential entry unrestricted.
1346+
* Replaces the existing list.
13401347
*/
13411348
allowed_domains?: Array<string>;
13421349

@@ -1967,8 +1974,10 @@ export interface ConnectionCreateParams {
19671974
profile_name: string;
19681975

19691976
/**
1970-
* Additional domains valid for this auth flow (besides the primary domain). Useful
1971-
* when login pages redirect to different domains.
1977+
* Additional hostname roots valid for this auth flow, besides the primary domain.
1978+
* Each value allows credential entry on that exact hostname and its subdomains.
1979+
* Leading `www.` and `*.` labels are normalized away. When omitted or empty,
1980+
* credential entry is unrestricted.
19721981
*
19731982
* The following SSO/OAuth provider domains are automatically allowed by default
19741983
* and do not need to be specified:
@@ -2199,7 +2208,10 @@ export namespace ConnectionCreateParams {
21992208

22002209
export interface ConnectionUpdateParams {
22012210
/**
2202-
* Additional domains valid for this auth flow (replaces existing list)
2211+
* Additional hostname roots valid for this auth flow. Each value allows credential
2212+
* entry on that exact hostname and its subdomains; leading `www.` and `*.` labels
2213+
* are normalized away. An empty list leaves credential entry unrestricted.
2214+
* Replaces the existing list.
22032215
*/
22042216
allowed_domains?: Array<string>;
22052217

‎src/resources/browser-pools.ts‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ export interface BrowserPool {
199199
/**
200200
* Geographic region of the browser pool. Fixed once the pool is created.
201201
*/
202-
region: 'us-east' | 'eu-west';
202+
region: 'us-east' | 'eu-west' | 'ap-southeast';
203203

204204
/**
205205
* Browser pool name, if set
@@ -382,7 +382,7 @@ export interface BrowserPoolAcquireResponse {
382382
/**
383383
* Geographic region of the browser session. Fixed once the session is created.
384384
*/
385-
region: 'us-east' | 'eu-west';
385+
region: 'us-east' | 'eu-west' | 'ap-southeast';
386386

387387
/**
388388
* Unique identifier for the browser session
@@ -595,7 +595,7 @@ export interface BrowserPoolCreateParams {
595595
* Region selection requires a Start-Up or Enterprise plan, defaults to us-east
596596
* when omitted on create.
597597
*/
598-
region?: 'us-east' | 'eu-west';
598+
region?: 'us-east' | 'eu-west' | 'ap-southeast';
599599

600600
/**
601601
* Optional URL to navigate to when a new browser is warmed into the pool.
@@ -1028,7 +1028,7 @@ export interface BrowserPoolListParams extends OffsetPaginationParams {
10281028
/**
10291029
* Filter pools by geographic region. Omit to list pools in all regions.
10301030
*/
1031-
region?: 'us-east' | 'eu-west';
1031+
region?: 'us-east' | 'eu-west' | 'ap-southeast';
10321032
}
10331033

10341034
export interface BrowserPoolDeleteParams {

‎src/resources/browsers/browsers.ts‎

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -258,8 +258,8 @@ export class Browsers extends APIResource {
258258
}
259259

260260
/**
261-
* Loads one or more unpacked extensions and restarts Chromium on the browser
262-
* instance.
261+
* Loads one or more unpacked extensions using live CDP activation when eligible.
262+
* Chromium restarts when enterprise policy requires it or live activation fails.
263263
*
264264
* @example
265265
* ```ts
@@ -479,7 +479,7 @@ export interface BrowserCreateResponse {
479479
/**
480480
* Geographic region of the browser session. Fixed once the session is created.
481481
*/
482-
region: 'us-east' | 'eu-west';
482+
region: 'us-east' | 'eu-west' | 'ap-southeast';
483483

484484
/**
485485
* Unique identifier for the browser session
@@ -639,7 +639,7 @@ export interface BrowserRetrieveResponse {
639639
/**
640640
* Geographic region of the browser session. Fixed once the session is created.
641641
*/
642-
region: 'us-east' | 'eu-west';
642+
region: 'us-east' | 'eu-west' | 'ap-southeast';
643643

644644
/**
645645
* Unique identifier for the browser session
@@ -799,7 +799,7 @@ export interface BrowserUpdateResponse {
799799
/**
800800
* Geographic region of the browser session. Fixed once the session is created.
801801
*/
802-
region: 'us-east' | 'eu-west';
802+
region: 'us-east' | 'eu-west' | 'ap-southeast';
803803

804804
/**
805805
* Unique identifier for the browser session
@@ -959,7 +959,7 @@ export interface BrowserListResponse {
959959
/**
960960
* Geographic region of the browser session. Fixed once the session is created.
961961
*/
962-
region: 'us-east' | 'eu-west';
962+
region: 'us-east' | 'eu-west' | 'ap-southeast';
963963

964964
/**
965965
* Unique identifier for the browser session
@@ -1203,7 +1203,7 @@ export interface BrowserCreateParams {
12031203
* created. Region selection requires a Start-Up or Enterprise plan, defaults to
12041204
* us-east when omitted on create.
12051205
*/
1206-
region?: 'us-east' | 'eu-west';
1206+
region?: 'us-east' | 'eu-west' | 'ap-southeast';
12071207

12081208
/**
12091209
* Optional URL to open when the browser session is created. Navigation is
@@ -1542,7 +1542,7 @@ export interface BrowserListParams extends OffsetPaginationParams {
15421542
/**
15431543
* Filter sessions by geographic region. Omit to list sessions in all regions.
15441544
*/
1545-
region?: 'us-east' | 'eu-west';
1545+
region?: 'us-east' | 'eu-west' | 'ap-southeast';
15461546

15471547
/**
15481548
* Filter sessions by status. "active" returns only active sessions (default),

‎src/resources/invocations.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ export namespace InvocationListBrowsersResponse {
442442
/**
443443
* Geographic region of the browser session. Fixed once the session is created.
444444
*/
445-
region: 'us-east' | 'eu-west';
445+
region: 'us-east' | 'eu-west' | 'ap-southeast';
446446

447447
/**
448448
* Unique identifier for the browser session

0 commit comments

Comments
 (0)