Skip to content

Commit d1d7378

Browse files
feat: Scope name uniqueness to project for profiles, session_pools, extensions, credentials
1 parent 289a15f commit d1d7378

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 112
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-86e061884d273a27064593a0de3a4ba366a12a1001181741addb4f781be18ec9.yml
3-
openapi_spec_hash: e0a4ddf4a3302599376756127099488c
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-b51c72a040c8dfea9c0693de6631feabfffe42922d5feb60b4ac0ee5c83bb8f4.yml
3+
openapi_spec_hash: 8b671cfe4debe8d9ad7c39ba5b0eaf6d
44
config_hash: 08d55086449943a8fec212b870061a3f

src/resources/browser-pools.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ export namespace BrowserPool {
220220
kiosk_mode?: boolean;
221221

222222
/**
223-
* Optional name for the browser pool. Must be unique within the organization.
223+
* Optional name for the browser pool. Must be unique within the project.
224224
*/
225225
name?: string;
226226

@@ -413,7 +413,7 @@ export interface BrowserPoolCreateParams {
413413
kiosk_mode?: boolean;
414414

415415
/**
416-
* Optional name for the browser pool. Must be unique within the organization.
416+
* Optional name for the browser pool. Must be unique within the project.
417417
*/
418418
name?: string;
419419

@@ -503,7 +503,7 @@ export interface BrowserPoolUpdateParams {
503503
kiosk_mode?: boolean;
504504

505505
/**
506-
* Optional name for the browser pool. Must be unique within the organization.
506+
* Optional name for the browser pool. Must be unique within the project.
507507
*/
508508
name?: string;
509509

src/resources/credentials.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export interface CreateCredentialRequest {
122122
domain: string;
123123

124124
/**
125-
* Unique name for the credential within the organization
125+
* Unique name for the credential within the project
126126
*/
127127
name: string;
128128

@@ -166,7 +166,7 @@ export interface Credential {
166166
domain: string;
167167

168168
/**
169-
* Unique name for the credential within the organization
169+
* Unique name for the credential within the project
170170
*/
171171
name: string;
172172

@@ -252,7 +252,7 @@ export interface CredentialCreateParams {
252252
domain: string;
253253

254254
/**
255-
* Unique name for the credential within the organization
255+
* Unique name for the credential within the project
256256
*/
257257
name: string;
258258

src/resources/extensions.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export namespace ExtensionListResponse {
132132

133133
/**
134134
* Optional, easier-to-reference name for the extension. Must be unique within the
135-
* organization.
135+
* project.
136136
*/
137137
name?: string | null;
138138
}
@@ -164,7 +164,7 @@ export interface ExtensionUploadResponse {
164164

165165
/**
166166
* Optional, easier-to-reference name for the extension. Must be unique within the
167-
* organization.
167+
* project.
168168
*/
169169
name?: string | null;
170170
}
@@ -188,7 +188,7 @@ export interface ExtensionUploadParams {
188188
file: Uploadable;
189189

190190
/**
191-
* Optional unique name within the organization to reference this extension.
191+
* Optional unique name within the project to reference this extension.
192192
*/
193193
name?: string;
194194
}

src/resources/profiles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export class Profiles extends APIResource {
6262

6363
export interface ProfileCreateParams {
6464
/**
65-
* Optional name of the profile. Must be unique within the organization.
65+
* Optional name of the profile. Must be unique within the project.
6666
*/
6767
name?: string;
6868
}

0 commit comments

Comments
 (0)