@onkernel/sdk 0.75.0 → 0.78.0
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.
- package/CHANGELOG.md +34 -0
- package/client.d.mts +4 -4
- package/client.d.mts.map +1 -1
- package/client.d.ts +4 -4
- package/client.d.ts.map +1 -1
- package/client.js.map +1 -1
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/api-keys.d.mts +10 -2
- package/resources/api-keys.d.mts.map +1 -1
- package/resources/api-keys.d.ts +10 -2
- package/resources/api-keys.d.ts.map +1 -1
- package/resources/audit-logs.d.mts +2 -2
- package/resources/audit-logs.d.mts.map +1 -1
- package/resources/audit-logs.d.ts +2 -2
- package/resources/audit-logs.d.ts.map +1 -1
- package/resources/auth/connections.d.mts +30 -10
- package/resources/auth/connections.d.mts.map +1 -1
- package/resources/auth/connections.d.ts +30 -10
- package/resources/auth/connections.d.ts.map +1 -1
- package/resources/browser-pools.d.mts +56 -45
- package/resources/browser-pools.d.mts.map +1 -1
- package/resources/browser-pools.d.ts +56 -45
- package/resources/browser-pools.d.ts.map +1 -1
- package/resources/browsers/browsers.d.mts +34 -16
- package/resources/browsers/browsers.d.mts.map +1 -1
- package/resources/browsers/browsers.d.ts +34 -16
- package/resources/browsers/browsers.d.ts.map +1 -1
- package/resources/browsers/browsers.js.map +1 -1
- package/resources/browsers/browsers.mjs.map +1 -1
- package/resources/browsers/telemetry.d.mts +12 -9
- package/resources/browsers/telemetry.d.mts.map +1 -1
- package/resources/browsers/telemetry.d.ts +12 -9
- package/resources/browsers/telemetry.d.ts.map +1 -1
- package/resources/credential-providers.d.mts +2 -1
- package/resources/credential-providers.d.mts.map +1 -1
- package/resources/credential-providers.d.ts +2 -1
- package/resources/credential-providers.d.ts.map +1 -1
- package/resources/credentials.d.mts +18 -1
- package/resources/credentials.d.mts.map +1 -1
- package/resources/credentials.d.ts +18 -1
- package/resources/credentials.d.ts.map +1 -1
- package/resources/deployments.d.mts +112 -0
- package/resources/deployments.d.mts.map +1 -1
- package/resources/deployments.d.ts +112 -0
- package/resources/deployments.d.ts.map +1 -1
- package/resources/extensions.d.mts +9 -1
- package/resources/extensions.d.mts.map +1 -1
- package/resources/extensions.d.ts +9 -1
- package/resources/extensions.d.ts.map +1 -1
- package/resources/index.d.mts +2 -2
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +2 -2
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +1 -1
- package/resources/index.mjs.map +1 -1
- package/resources/organization/limits.d.mts +14 -13
- package/resources/organization/limits.d.mts.map +1 -1
- package/resources/organization/limits.d.ts +14 -13
- package/resources/organization/limits.d.ts.map +1 -1
- package/resources/organization/limits.js +4 -4
- package/resources/organization/limits.js.map +1 -1
- package/resources/organization/limits.mjs +4 -4
- package/resources/organization/limits.mjs.map +1 -1
- package/resources/profiles.d.mts +72 -3
- package/resources/profiles.d.mts.map +1 -1
- package/resources/profiles.d.ts +72 -3
- package/resources/profiles.d.ts.map +1 -1
- package/resources/profiles.js +54 -0
- package/resources/profiles.js.map +1 -1
- package/resources/profiles.mjs +54 -0
- package/resources/profiles.mjs.map +1 -1
- package/resources/projects/limits.d.mts +18 -12
- package/resources/projects/limits.d.mts.map +1 -1
- package/resources/projects/limits.d.ts +18 -12
- package/resources/projects/limits.d.ts.map +1 -1
- package/resources/projects/projects.d.mts +5 -0
- package/resources/projects/projects.d.mts.map +1 -1
- package/resources/projects/projects.d.ts +5 -0
- package/resources/projects/projects.d.ts.map +1 -1
- package/resources/projects/projects.js.map +1 -1
- package/resources/projects/projects.mjs.map +1 -1
- package/resources/proxies.d.mts +187 -2
- package/resources/proxies.d.mts.map +1 -1
- package/resources/proxies.d.ts +187 -2
- package/resources/proxies.d.ts.map +1 -1
- package/resources/proxies.js +46 -0
- package/resources/proxies.js.map +1 -1
- package/resources/proxies.mjs +46 -0
- package/resources/proxies.mjs.map +1 -1
- package/src/client.ts +6 -1
- package/src/resources/api-keys.ts +11 -2
- package/src/resources/audit-logs.ts +2 -2
- package/src/resources/auth/connections.ts +30 -10
- package/src/resources/browser-pools.ts +57 -45
- package/src/resources/browsers/browsers.ts +34 -16
- package/src/resources/browsers/telemetry.ts +12 -9
- package/src/resources/credential-providers.ts +2 -1
- package/src/resources/credentials.ts +21 -1
- package/src/resources/deployments.ts +132 -0
- package/src/resources/extensions.ts +10 -1
- package/src/resources/index.ts +8 -1
- package/src/resources/organization/limits.ts +14 -13
- package/src/resources/profiles.ts +85 -3
- package/src/resources/projects/limits.ts +18 -12
- package/src/resources/projects/projects.ts +6 -0
- package/src/resources/proxies.ts +222 -1
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/resources/profiles.d.mts
CHANGED
|
@@ -11,39 +11,108 @@ export declare class Profiles extends APIResource {
|
|
|
11
11
|
/**
|
|
12
12
|
* Create a browser profile that can be used to load state into future browser
|
|
13
13
|
* sessions.
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* ```ts
|
|
17
|
+
* const profile = await client.profiles.create();
|
|
18
|
+
* ```
|
|
14
19
|
*/
|
|
15
20
|
create(body: ProfileCreateParams, options?: RequestOptions): APIPromise<BrowsersAPI.Profile>;
|
|
16
21
|
/**
|
|
17
22
|
* Retrieve details for a single profile by its ID or name.
|
|
23
|
+
*
|
|
24
|
+
* @example
|
|
25
|
+
* ```ts
|
|
26
|
+
* const profile = await client.profiles.retrieve(
|
|
27
|
+
* 'id_or_name',
|
|
28
|
+
* );
|
|
29
|
+
* ```
|
|
18
30
|
*/
|
|
19
31
|
retrieve(idOrName: string, options?: RequestOptions): APIPromise<BrowsersAPI.Profile>;
|
|
32
|
+
/**
|
|
33
|
+
* Update a profile's name. Names must be unique within the logical project; during
|
|
34
|
+
* the default-project migration, unscoped profiles and profiles in the org default
|
|
35
|
+
* project are treated as the same project. Duplicate-name conflicts are checked
|
|
36
|
+
* before update but are best-effort because there is no backing unique index.
|
|
37
|
+
* Renaming a profile while a browser session references it by name may prevent
|
|
38
|
+
* that session's changes from saving; prefer renaming when the profile is not in
|
|
39
|
+
* use.
|
|
40
|
+
*
|
|
41
|
+
* @example
|
|
42
|
+
* ```ts
|
|
43
|
+
* const profile = await client.profiles.update('id_or_name', {
|
|
44
|
+
* name: 'my-renamed-profile',
|
|
45
|
+
* });
|
|
46
|
+
* ```
|
|
47
|
+
*/
|
|
48
|
+
update(idOrName: string, body: ProfileUpdateParams, options?: RequestOptions): APIPromise<BrowsersAPI.Profile>;
|
|
20
49
|
/**
|
|
21
50
|
* List profiles with optional filtering and pagination.
|
|
51
|
+
*
|
|
52
|
+
* @example
|
|
53
|
+
* ```ts
|
|
54
|
+
* // Automatically fetches more pages as needed.
|
|
55
|
+
* for await (const profile of client.profiles.list()) {
|
|
56
|
+
* // ...
|
|
57
|
+
* }
|
|
58
|
+
* ```
|
|
22
59
|
*/
|
|
23
60
|
list(query?: ProfileListParams | null | undefined, options?: RequestOptions): PagePromise<ProfilesOffsetPagination, BrowsersAPI.Profile>;
|
|
24
61
|
/**
|
|
25
62
|
* Delete a profile by its ID or by its name.
|
|
63
|
+
*
|
|
64
|
+
* @example
|
|
65
|
+
* ```ts
|
|
66
|
+
* await client.profiles.delete('id_or_name');
|
|
67
|
+
* ```
|
|
26
68
|
*/
|
|
27
69
|
delete(idOrName: string, options?: RequestOptions): APIPromise<void>;
|
|
28
70
|
/**
|
|
29
71
|
* Returns a zstd-compressed tar file of the full user-data directory.
|
|
72
|
+
*
|
|
73
|
+
* @example
|
|
74
|
+
* ```ts
|
|
75
|
+
* const response = await client.profiles.download(
|
|
76
|
+
* 'id_or_name',
|
|
77
|
+
* );
|
|
78
|
+
*
|
|
79
|
+
* const content = await response.blob();
|
|
80
|
+
* console.log(content);
|
|
81
|
+
* ```
|
|
30
82
|
*/
|
|
31
83
|
download(idOrName: string, options?: RequestOptions): APIPromise<Response>;
|
|
32
84
|
}
|
|
33
85
|
export interface ProfileCreateParams {
|
|
34
86
|
/**
|
|
35
|
-
* Optional name of the profile. Must be unique within the project
|
|
87
|
+
* Optional name of the profile. Must be unique within the logical project; during
|
|
88
|
+
* the default-project migration, unscoped profiles and profiles in the org default
|
|
89
|
+
* project are treated as the same project.
|
|
36
90
|
*/
|
|
37
91
|
name?: string;
|
|
38
92
|
}
|
|
93
|
+
export interface ProfileUpdateParams {
|
|
94
|
+
/**
|
|
95
|
+
* New profile name. Must be unique within the logical project; during the
|
|
96
|
+
* default-project migration, unscoped profiles and profiles in the org default
|
|
97
|
+
* project are treated as the same project.
|
|
98
|
+
*/
|
|
99
|
+
name: string;
|
|
100
|
+
}
|
|
39
101
|
export interface ProfileListParams extends OffsetPaginationParams {
|
|
40
102
|
/**
|
|
41
|
-
*
|
|
103
|
+
* Exact-match filter on profile name using the database collation. In production,
|
|
104
|
+
* matching is case- and accent-insensitive. During the default-project migration,
|
|
105
|
+
* unscoped requests prefer a concrete default-project profile over a legacy
|
|
106
|
+
* unscoped profile with the same name.
|
|
107
|
+
*/
|
|
108
|
+
name?: string;
|
|
109
|
+
/**
|
|
110
|
+
* Case-insensitive substring match against profile name or ID.
|
|
42
111
|
*/
|
|
43
112
|
query?: string;
|
|
44
113
|
}
|
|
45
114
|
export declare namespace Profiles {
|
|
46
|
-
export { type ProfileCreateParams as ProfileCreateParams, type ProfileListParams as ProfileListParams };
|
|
115
|
+
export { type ProfileCreateParams as ProfileCreateParams, type ProfileUpdateParams as ProfileUpdateParams, type ProfileListParams as ProfileListParams, };
|
|
47
116
|
}
|
|
48
117
|
export { type ProfilesOffsetPagination };
|
|
49
118
|
//# sourceMappingURL=profiles.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"profiles.d.mts","sourceRoot":"","sources":["../src/resources/profiles.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,6BAAyB;AAC/C,OAAO,KAAK,WAAW,gCAA4B;AACnD,OAAO,EAAE,wBAAwB,EAAE,gCAA4B;AAC/D,OAAO,EAAE,UAAU,EAAE,gCAA4B;AACjD,OAAO,EAAoB,KAAK,sBAAsB,EAAE,WAAW,EAAE,+BAA2B;AAEhG,OAAO,EAAE,cAAc,EAAE,wCAAoC;AAG7D;;GAEG;AACH,qBAAa,QAAS,SAAQ,WAAW;IACvC
|
|
1
|
+
{"version":3,"file":"profiles.d.mts","sourceRoot":"","sources":["../src/resources/profiles.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,6BAAyB;AAC/C,OAAO,KAAK,WAAW,gCAA4B;AACnD,OAAO,EAAE,wBAAwB,EAAE,gCAA4B;AAC/D,OAAO,EAAE,UAAU,EAAE,gCAA4B;AACjD,OAAO,EAAoB,KAAK,sBAAsB,EAAE,WAAW,EAAE,+BAA2B;AAEhG,OAAO,EAAE,cAAc,EAAE,wCAAoC;AAG7D;;GAEG;AACH,qBAAa,QAAS,SAAQ,WAAW;IACvC;;;;;;;;OAQG;IACH,MAAM,CAAC,IAAI,EAAE,mBAAmB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,WAAW,CAAC,OAAO,CAAC;IAI5F;;;;;;;;;OASG;IACH,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,WAAW,CAAC,OAAO,CAAC;IAIrF;;;;;;;;;;;;;;;OAeG;IACH,MAAM,CACJ,QAAQ,EAAE,MAAM,EAChB,IAAI,EAAE,mBAAmB,EACzB,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,WAAW,CAAC,OAAO,CAAC;IAIlC;;;;;;;;;;OAUG;IACH,IAAI,CACF,KAAK,GAAE,iBAAiB,GAAG,IAAI,GAAG,SAAc,EAChD,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,wBAAwB,EAAE,WAAW,CAAC,OAAO,CAAC;IAI7D;;;;;;;OAOG;IACH,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;IAOpE;;;;;;;;;;;;OAYG;IACH,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,QAAQ,CAAC;CAO3E;AAED,MAAM,WAAW,mBAAmB;IAClC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,mBAAmB;IAClC;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,iBAAkB,SAAQ,sBAAsB;IAC/D;;;;;OAKG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,CAAC,OAAO,WAAW,QAAQ,CAAC;IAChC,OAAO,EACL,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,iBAAiB,IAAI,iBAAiB,GAC5C,CAAC;CACH;AAED,OAAO,EAAE,KAAK,wBAAwB,EAAE,CAAC"}
|
package/resources/profiles.d.ts
CHANGED
|
@@ -11,39 +11,108 @@ export declare class Profiles extends APIResource {
|
|
|
11
11
|
/**
|
|
12
12
|
* Create a browser profile that can be used to load state into future browser
|
|
13
13
|
* sessions.
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* ```ts
|
|
17
|
+
* const profile = await client.profiles.create();
|
|
18
|
+
* ```
|
|
14
19
|
*/
|
|
15
20
|
create(body: ProfileCreateParams, options?: RequestOptions): APIPromise<BrowsersAPI.Profile>;
|
|
16
21
|
/**
|
|
17
22
|
* Retrieve details for a single profile by its ID or name.
|
|
23
|
+
*
|
|
24
|
+
* @example
|
|
25
|
+
* ```ts
|
|
26
|
+
* const profile = await client.profiles.retrieve(
|
|
27
|
+
* 'id_or_name',
|
|
28
|
+
* );
|
|
29
|
+
* ```
|
|
18
30
|
*/
|
|
19
31
|
retrieve(idOrName: string, options?: RequestOptions): APIPromise<BrowsersAPI.Profile>;
|
|
32
|
+
/**
|
|
33
|
+
* Update a profile's name. Names must be unique within the logical project; during
|
|
34
|
+
* the default-project migration, unscoped profiles and profiles in the org default
|
|
35
|
+
* project are treated as the same project. Duplicate-name conflicts are checked
|
|
36
|
+
* before update but are best-effort because there is no backing unique index.
|
|
37
|
+
* Renaming a profile while a browser session references it by name may prevent
|
|
38
|
+
* that session's changes from saving; prefer renaming when the profile is not in
|
|
39
|
+
* use.
|
|
40
|
+
*
|
|
41
|
+
* @example
|
|
42
|
+
* ```ts
|
|
43
|
+
* const profile = await client.profiles.update('id_or_name', {
|
|
44
|
+
* name: 'my-renamed-profile',
|
|
45
|
+
* });
|
|
46
|
+
* ```
|
|
47
|
+
*/
|
|
48
|
+
update(idOrName: string, body: ProfileUpdateParams, options?: RequestOptions): APIPromise<BrowsersAPI.Profile>;
|
|
20
49
|
/**
|
|
21
50
|
* List profiles with optional filtering and pagination.
|
|
51
|
+
*
|
|
52
|
+
* @example
|
|
53
|
+
* ```ts
|
|
54
|
+
* // Automatically fetches more pages as needed.
|
|
55
|
+
* for await (const profile of client.profiles.list()) {
|
|
56
|
+
* // ...
|
|
57
|
+
* }
|
|
58
|
+
* ```
|
|
22
59
|
*/
|
|
23
60
|
list(query?: ProfileListParams | null | undefined, options?: RequestOptions): PagePromise<ProfilesOffsetPagination, BrowsersAPI.Profile>;
|
|
24
61
|
/**
|
|
25
62
|
* Delete a profile by its ID or by its name.
|
|
63
|
+
*
|
|
64
|
+
* @example
|
|
65
|
+
* ```ts
|
|
66
|
+
* await client.profiles.delete('id_or_name');
|
|
67
|
+
* ```
|
|
26
68
|
*/
|
|
27
69
|
delete(idOrName: string, options?: RequestOptions): APIPromise<void>;
|
|
28
70
|
/**
|
|
29
71
|
* Returns a zstd-compressed tar file of the full user-data directory.
|
|
72
|
+
*
|
|
73
|
+
* @example
|
|
74
|
+
* ```ts
|
|
75
|
+
* const response = await client.profiles.download(
|
|
76
|
+
* 'id_or_name',
|
|
77
|
+
* );
|
|
78
|
+
*
|
|
79
|
+
* const content = await response.blob();
|
|
80
|
+
* console.log(content);
|
|
81
|
+
* ```
|
|
30
82
|
*/
|
|
31
83
|
download(idOrName: string, options?: RequestOptions): APIPromise<Response>;
|
|
32
84
|
}
|
|
33
85
|
export interface ProfileCreateParams {
|
|
34
86
|
/**
|
|
35
|
-
* Optional name of the profile. Must be unique within the project
|
|
87
|
+
* Optional name of the profile. Must be unique within the logical project; during
|
|
88
|
+
* the default-project migration, unscoped profiles and profiles in the org default
|
|
89
|
+
* project are treated as the same project.
|
|
36
90
|
*/
|
|
37
91
|
name?: string;
|
|
38
92
|
}
|
|
93
|
+
export interface ProfileUpdateParams {
|
|
94
|
+
/**
|
|
95
|
+
* New profile name. Must be unique within the logical project; during the
|
|
96
|
+
* default-project migration, unscoped profiles and profiles in the org default
|
|
97
|
+
* project are treated as the same project.
|
|
98
|
+
*/
|
|
99
|
+
name: string;
|
|
100
|
+
}
|
|
39
101
|
export interface ProfileListParams extends OffsetPaginationParams {
|
|
40
102
|
/**
|
|
41
|
-
*
|
|
103
|
+
* Exact-match filter on profile name using the database collation. In production,
|
|
104
|
+
* matching is case- and accent-insensitive. During the default-project migration,
|
|
105
|
+
* unscoped requests prefer a concrete default-project profile over a legacy
|
|
106
|
+
* unscoped profile with the same name.
|
|
107
|
+
*/
|
|
108
|
+
name?: string;
|
|
109
|
+
/**
|
|
110
|
+
* Case-insensitive substring match against profile name or ID.
|
|
42
111
|
*/
|
|
43
112
|
query?: string;
|
|
44
113
|
}
|
|
45
114
|
export declare namespace Profiles {
|
|
46
|
-
export { type ProfileCreateParams as ProfileCreateParams, type ProfileListParams as ProfileListParams };
|
|
115
|
+
export { type ProfileCreateParams as ProfileCreateParams, type ProfileUpdateParams as ProfileUpdateParams, type ProfileListParams as ProfileListParams, };
|
|
47
116
|
}
|
|
48
117
|
export { type ProfilesOffsetPagination };
|
|
49
118
|
//# sourceMappingURL=profiles.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"profiles.d.ts","sourceRoot":"","sources":["../src/resources/profiles.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,4BAAyB;AAC/C,OAAO,KAAK,WAAW,+BAA4B;AACnD,OAAO,EAAE,wBAAwB,EAAE,+BAA4B;AAC/D,OAAO,EAAE,UAAU,EAAE,+BAA4B;AACjD,OAAO,EAAoB,KAAK,sBAAsB,EAAE,WAAW,EAAE,8BAA2B;AAEhG,OAAO,EAAE,cAAc,EAAE,uCAAoC;AAG7D;;GAEG;AACH,qBAAa,QAAS,SAAQ,WAAW;IACvC
|
|
1
|
+
{"version":3,"file":"profiles.d.ts","sourceRoot":"","sources":["../src/resources/profiles.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,4BAAyB;AAC/C,OAAO,KAAK,WAAW,+BAA4B;AACnD,OAAO,EAAE,wBAAwB,EAAE,+BAA4B;AAC/D,OAAO,EAAE,UAAU,EAAE,+BAA4B;AACjD,OAAO,EAAoB,KAAK,sBAAsB,EAAE,WAAW,EAAE,8BAA2B;AAEhG,OAAO,EAAE,cAAc,EAAE,uCAAoC;AAG7D;;GAEG;AACH,qBAAa,QAAS,SAAQ,WAAW;IACvC;;;;;;;;OAQG;IACH,MAAM,CAAC,IAAI,EAAE,mBAAmB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,WAAW,CAAC,OAAO,CAAC;IAI5F;;;;;;;;;OASG;IACH,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,WAAW,CAAC,OAAO,CAAC;IAIrF;;;;;;;;;;;;;;;OAeG;IACH,MAAM,CACJ,QAAQ,EAAE,MAAM,EAChB,IAAI,EAAE,mBAAmB,EACzB,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,WAAW,CAAC,OAAO,CAAC;IAIlC;;;;;;;;;;OAUG;IACH,IAAI,CACF,KAAK,GAAE,iBAAiB,GAAG,IAAI,GAAG,SAAc,EAChD,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,wBAAwB,EAAE,WAAW,CAAC,OAAO,CAAC;IAI7D;;;;;;;OAOG;IACH,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;IAOpE;;;;;;;;;;;;OAYG;IACH,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,QAAQ,CAAC;CAO3E;AAED,MAAM,WAAW,mBAAmB;IAClC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,mBAAmB;IAClC;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,iBAAkB,SAAQ,sBAAsB;IAC/D;;;;;OAKG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,CAAC,OAAO,WAAW,QAAQ,CAAC;IAChC,OAAO,EACL,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,iBAAiB,IAAI,iBAAiB,GAC5C,CAAC;CACH;AAED,OAAO,EAAE,KAAK,wBAAwB,EAAE,CAAC"}
|
package/resources/profiles.js
CHANGED
|
@@ -13,24 +13,68 @@ class Profiles extends resource_1.APIResource {
|
|
|
13
13
|
/**
|
|
14
14
|
* Create a browser profile that can be used to load state into future browser
|
|
15
15
|
* sessions.
|
|
16
|
+
*
|
|
17
|
+
* @example
|
|
18
|
+
* ```ts
|
|
19
|
+
* const profile = await client.profiles.create();
|
|
20
|
+
* ```
|
|
16
21
|
*/
|
|
17
22
|
create(body, options) {
|
|
18
23
|
return this._client.post('/profiles', { body, ...options });
|
|
19
24
|
}
|
|
20
25
|
/**
|
|
21
26
|
* Retrieve details for a single profile by its ID or name.
|
|
27
|
+
*
|
|
28
|
+
* @example
|
|
29
|
+
* ```ts
|
|
30
|
+
* const profile = await client.profiles.retrieve(
|
|
31
|
+
* 'id_or_name',
|
|
32
|
+
* );
|
|
33
|
+
* ```
|
|
22
34
|
*/
|
|
23
35
|
retrieve(idOrName, options) {
|
|
24
36
|
return this._client.get((0, path_1.path) `/profiles/${idOrName}`, options);
|
|
25
37
|
}
|
|
38
|
+
/**
|
|
39
|
+
* Update a profile's name. Names must be unique within the logical project; during
|
|
40
|
+
* the default-project migration, unscoped profiles and profiles in the org default
|
|
41
|
+
* project are treated as the same project. Duplicate-name conflicts are checked
|
|
42
|
+
* before update but are best-effort because there is no backing unique index.
|
|
43
|
+
* Renaming a profile while a browser session references it by name may prevent
|
|
44
|
+
* that session's changes from saving; prefer renaming when the profile is not in
|
|
45
|
+
* use.
|
|
46
|
+
*
|
|
47
|
+
* @example
|
|
48
|
+
* ```ts
|
|
49
|
+
* const profile = await client.profiles.update('id_or_name', {
|
|
50
|
+
* name: 'my-renamed-profile',
|
|
51
|
+
* });
|
|
52
|
+
* ```
|
|
53
|
+
*/
|
|
54
|
+
update(idOrName, body, options) {
|
|
55
|
+
return this._client.patch((0, path_1.path) `/profiles/${idOrName}`, { body, ...options });
|
|
56
|
+
}
|
|
26
57
|
/**
|
|
27
58
|
* List profiles with optional filtering and pagination.
|
|
59
|
+
*
|
|
60
|
+
* @example
|
|
61
|
+
* ```ts
|
|
62
|
+
* // Automatically fetches more pages as needed.
|
|
63
|
+
* for await (const profile of client.profiles.list()) {
|
|
64
|
+
* // ...
|
|
65
|
+
* }
|
|
66
|
+
* ```
|
|
28
67
|
*/
|
|
29
68
|
list(query = {}, options) {
|
|
30
69
|
return this._client.getAPIList('/profiles', (pagination_1.OffsetPagination), { query, ...options });
|
|
31
70
|
}
|
|
32
71
|
/**
|
|
33
72
|
* Delete a profile by its ID or by its name.
|
|
73
|
+
*
|
|
74
|
+
* @example
|
|
75
|
+
* ```ts
|
|
76
|
+
* await client.profiles.delete('id_or_name');
|
|
77
|
+
* ```
|
|
34
78
|
*/
|
|
35
79
|
delete(idOrName, options) {
|
|
36
80
|
return this._client.delete((0, path_1.path) `/profiles/${idOrName}`, {
|
|
@@ -40,6 +84,16 @@ class Profiles extends resource_1.APIResource {
|
|
|
40
84
|
}
|
|
41
85
|
/**
|
|
42
86
|
* Returns a zstd-compressed tar file of the full user-data directory.
|
|
87
|
+
*
|
|
88
|
+
* @example
|
|
89
|
+
* ```ts
|
|
90
|
+
* const response = await client.profiles.download(
|
|
91
|
+
* 'id_or_name',
|
|
92
|
+
* );
|
|
93
|
+
*
|
|
94
|
+
* const content = await response.blob();
|
|
95
|
+
* console.log(content);
|
|
96
|
+
* ```
|
|
43
97
|
*/
|
|
44
98
|
download(idOrName, options) {
|
|
45
99
|
return this._client.get((0, path_1.path) `/profiles/${idOrName}/download`, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"profiles.js","sourceRoot":"","sources":["../src/resources/profiles.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,kDAA+C;AAI/C,sDAAgG;AAChG,oDAAmD;AAEnD,oDAA8C;AAE9C;;GAEG;AACH,MAAa,QAAS,SAAQ,sBAAW;IACvC
|
|
1
|
+
{"version":3,"file":"profiles.js","sourceRoot":"","sources":["../src/resources/profiles.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,kDAA+C;AAI/C,sDAAgG;AAChG,oDAAmD;AAEnD,oDAA8C;AAE9C;;GAEG;AACH,MAAa,QAAS,SAAQ,sBAAW;IACvC;;;;;;;;OAQG;IACH,MAAM,CAAC,IAAyB,EAAE,OAAwB;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC9D,CAAC;IAED;;;;;;;;;OASG;IACH,QAAQ,CAAC,QAAgB,EAAE,OAAwB;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,aAAa,QAAQ,EAAE,EAAE,OAAO,CAAC,CAAC;IAChE,CAAC;IAED;;;;;;;;;;;;;;;OAeG;IACH,MAAM,CACJ,QAAgB,EAChB,IAAyB,EACzB,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAA,WAAI,EAAA,aAAa,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC/E,CAAC;IAED;;;;;;;;;;OAUG;IACH,IAAI,CACF,QAA8C,EAAE,EAChD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,WAAW,EAAE,CAAA,6BAAqC,CAAA,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC5G,CAAC;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,QAAgB,EAAE,OAAwB;QAC/C,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAA,WAAI,EAAA,aAAa,QAAQ,EAAE,EAAE;YACtD,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;;;;OAYG;IACH,QAAQ,CAAC,QAAgB,EAAE,OAAwB;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,aAAa,QAAQ,WAAW,EAAE;YAC5D,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC,CAAC,EAAE,MAAM,EAAE,0BAA0B,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;YACjF,gBAAgB,EAAE,IAAI;SACvB,CAAC,CAAC;IACL,CAAC;CACF;AAzGD,4BAyGC"}
|
package/resources/profiles.mjs
CHANGED
|
@@ -10,24 +10,68 @@ export class Profiles extends APIResource {
|
|
|
10
10
|
/**
|
|
11
11
|
* Create a browser profile that can be used to load state into future browser
|
|
12
12
|
* sessions.
|
|
13
|
+
*
|
|
14
|
+
* @example
|
|
15
|
+
* ```ts
|
|
16
|
+
* const profile = await client.profiles.create();
|
|
17
|
+
* ```
|
|
13
18
|
*/
|
|
14
19
|
create(body, options) {
|
|
15
20
|
return this._client.post('/profiles', { body, ...options });
|
|
16
21
|
}
|
|
17
22
|
/**
|
|
18
23
|
* Retrieve details for a single profile by its ID or name.
|
|
24
|
+
*
|
|
25
|
+
* @example
|
|
26
|
+
* ```ts
|
|
27
|
+
* const profile = await client.profiles.retrieve(
|
|
28
|
+
* 'id_or_name',
|
|
29
|
+
* );
|
|
30
|
+
* ```
|
|
19
31
|
*/
|
|
20
32
|
retrieve(idOrName, options) {
|
|
21
33
|
return this._client.get(path `/profiles/${idOrName}`, options);
|
|
22
34
|
}
|
|
35
|
+
/**
|
|
36
|
+
* Update a profile's name. Names must be unique within the logical project; during
|
|
37
|
+
* the default-project migration, unscoped profiles and profiles in the org default
|
|
38
|
+
* project are treated as the same project. Duplicate-name conflicts are checked
|
|
39
|
+
* before update but are best-effort because there is no backing unique index.
|
|
40
|
+
* Renaming a profile while a browser session references it by name may prevent
|
|
41
|
+
* that session's changes from saving; prefer renaming when the profile is not in
|
|
42
|
+
* use.
|
|
43
|
+
*
|
|
44
|
+
* @example
|
|
45
|
+
* ```ts
|
|
46
|
+
* const profile = await client.profiles.update('id_or_name', {
|
|
47
|
+
* name: 'my-renamed-profile',
|
|
48
|
+
* });
|
|
49
|
+
* ```
|
|
50
|
+
*/
|
|
51
|
+
update(idOrName, body, options) {
|
|
52
|
+
return this._client.patch(path `/profiles/${idOrName}`, { body, ...options });
|
|
53
|
+
}
|
|
23
54
|
/**
|
|
24
55
|
* List profiles with optional filtering and pagination.
|
|
56
|
+
*
|
|
57
|
+
* @example
|
|
58
|
+
* ```ts
|
|
59
|
+
* // Automatically fetches more pages as needed.
|
|
60
|
+
* for await (const profile of client.profiles.list()) {
|
|
61
|
+
* // ...
|
|
62
|
+
* }
|
|
63
|
+
* ```
|
|
25
64
|
*/
|
|
26
65
|
list(query = {}, options) {
|
|
27
66
|
return this._client.getAPIList('/profiles', (OffsetPagination), { query, ...options });
|
|
28
67
|
}
|
|
29
68
|
/**
|
|
30
69
|
* Delete a profile by its ID or by its name.
|
|
70
|
+
*
|
|
71
|
+
* @example
|
|
72
|
+
* ```ts
|
|
73
|
+
* await client.profiles.delete('id_or_name');
|
|
74
|
+
* ```
|
|
31
75
|
*/
|
|
32
76
|
delete(idOrName, options) {
|
|
33
77
|
return this._client.delete(path `/profiles/${idOrName}`, {
|
|
@@ -37,6 +81,16 @@ export class Profiles extends APIResource {
|
|
|
37
81
|
}
|
|
38
82
|
/**
|
|
39
83
|
* Returns a zstd-compressed tar file of the full user-data directory.
|
|
84
|
+
*
|
|
85
|
+
* @example
|
|
86
|
+
* ```ts
|
|
87
|
+
* const response = await client.profiles.download(
|
|
88
|
+
* 'id_or_name',
|
|
89
|
+
* );
|
|
90
|
+
*
|
|
91
|
+
* const content = await response.blob();
|
|
92
|
+
* console.log(content);
|
|
93
|
+
* ```
|
|
40
94
|
*/
|
|
41
95
|
download(idOrName, options) {
|
|
42
96
|
return this._client.get(path `/profiles/${idOrName}/download`, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"profiles.mjs","sourceRoot":"","sources":["../src/resources/profiles.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,WAAW,EAAE,6BAAyB;AAI/C,OAAO,EAAE,gBAAgB,EAA4C,+BAA2B;AAChG,OAAO,EAAE,YAAY,EAAE,gCAA4B;AAEnD,OAAO,EAAE,IAAI,EAAE,mCAA+B;AAE9C;;GAEG;AACH,MAAM,OAAO,QAAS,SAAQ,WAAW;IACvC
|
|
1
|
+
{"version":3,"file":"profiles.mjs","sourceRoot":"","sources":["../src/resources/profiles.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,WAAW,EAAE,6BAAyB;AAI/C,OAAO,EAAE,gBAAgB,EAA4C,+BAA2B;AAChG,OAAO,EAAE,YAAY,EAAE,gCAA4B;AAEnD,OAAO,EAAE,IAAI,EAAE,mCAA+B;AAE9C;;GAEG;AACH,MAAM,OAAO,QAAS,SAAQ,WAAW;IACvC;;;;;;;;OAQG;IACH,MAAM,CAAC,IAAyB,EAAE,OAAwB;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC9D,CAAC;IAED;;;;;;;;;OASG;IACH,QAAQ,CAAC,QAAgB,EAAE,OAAwB;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,aAAa,QAAQ,EAAE,EAAE,OAAO,CAAC,CAAC;IAChE,CAAC;IAED;;;;;;;;;;;;;;;OAeG;IACH,MAAM,CACJ,QAAgB,EAChB,IAAyB,EACzB,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAA,aAAa,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC/E,CAAC;IAED;;;;;;;;;;OAUG;IACH,IAAI,CACF,QAA8C,EAAE,EAChD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,WAAW,EAAE,CAAA,gBAAqC,CAAA,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC5G,CAAC;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,QAAgB,EAAE,OAAwB;QAC/C,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAA,aAAa,QAAQ,EAAE,EAAE;YACtD,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;;;;OAYG;IACH,QAAQ,CAAC,QAAgB,EAAE,OAAwB;QACjD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,aAAa,QAAQ,WAAW,EAAE;YAC5D,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,0BAA0B,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;YACjF,gBAAgB,EAAE,IAAI;SACvB,CAAC,CAAC;IACL,CAAC;CACF"}
|
|
@@ -38,13 +38,15 @@ export interface ProjectLimits {
|
|
|
38
38
|
*/
|
|
39
39
|
max_concurrent_invocations?: number | null;
|
|
40
40
|
/**
|
|
41
|
-
* Maximum concurrent
|
|
42
|
-
* project-level
|
|
41
|
+
* Maximum concurrent browsers for this project, covering both on-demand sessions
|
|
42
|
+
* (`browsers.create()`) and browser pool reservations. Null means no project-level
|
|
43
|
+
* cap.
|
|
43
44
|
*/
|
|
44
45
|
max_concurrent_sessions?: number | null;
|
|
45
46
|
/**
|
|
46
|
-
*
|
|
47
|
-
*
|
|
47
|
+
* @deprecated Deprecated: pooled browsers now count toward
|
|
48
|
+
* `max_concurrent_sessions`. Always null once the unified concurrency limit is
|
|
49
|
+
* enabled for your organization.
|
|
48
50
|
*/
|
|
49
51
|
max_pooled_sessions?: number | null;
|
|
50
52
|
}
|
|
@@ -55,13 +57,15 @@ export interface UpdateProjectLimitsRequest {
|
|
|
55
57
|
*/
|
|
56
58
|
max_concurrent_invocations?: number | null;
|
|
57
59
|
/**
|
|
58
|
-
* Maximum concurrent
|
|
59
|
-
* cap; omit to leave
|
|
60
|
+
* Maximum concurrent browsers for this project, covering both on-demand sessions
|
|
61
|
+
* and browser pool reservations. Set to 0 to remove the cap; omit to leave
|
|
62
|
+
* unchanged.
|
|
60
63
|
*/
|
|
61
64
|
max_concurrent_sessions?: number | null;
|
|
62
65
|
/**
|
|
63
|
-
*
|
|
64
|
-
*
|
|
66
|
+
* @deprecated Deprecated: pooled browsers now count toward
|
|
67
|
+
* `max_concurrent_sessions`. Requests that set this field are rejected with a 400
|
|
68
|
+
* once the unified concurrency limit is enabled for your organization.
|
|
65
69
|
*/
|
|
66
70
|
max_pooled_sessions?: number | null;
|
|
67
71
|
}
|
|
@@ -72,13 +76,15 @@ export interface LimitUpdateParams {
|
|
|
72
76
|
*/
|
|
73
77
|
max_concurrent_invocations?: number | null;
|
|
74
78
|
/**
|
|
75
|
-
* Maximum concurrent
|
|
76
|
-
* cap; omit to leave
|
|
79
|
+
* Maximum concurrent browsers for this project, covering both on-demand sessions
|
|
80
|
+
* and browser pool reservations. Set to 0 to remove the cap; omit to leave
|
|
81
|
+
* unchanged.
|
|
77
82
|
*/
|
|
78
83
|
max_concurrent_sessions?: number | null;
|
|
79
84
|
/**
|
|
80
|
-
*
|
|
81
|
-
*
|
|
85
|
+
* @deprecated Deprecated: pooled browsers now count toward
|
|
86
|
+
* `max_concurrent_sessions`. Requests that set this field are rejected with a 400
|
|
87
|
+
* once the unified concurrency limit is enabled for your organization.
|
|
82
88
|
*/
|
|
83
89
|
max_pooled_sessions?: number | null;
|
|
84
90
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"limits.d.mts","sourceRoot":"","sources":["../../src/resources/projects/limits.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,gCAA4B;AAClD,OAAO,EAAE,UAAU,EAAE,mCAA+B;AACpD,OAAO,EAAE,cAAc,EAAE,2CAAuC;AAGhE;;GAEG;AACH,qBAAa,MAAO,SAAQ,WAAW;IACrC;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,aAAa,CAAC;IAIzE;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,aAAa,CAAC;CAGjG;AAED,MAAM,WAAW,aAAa;IAC5B;;;OAGG;IACH,0BAA0B,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3C
|
|
1
|
+
{"version":3,"file":"limits.d.mts","sourceRoot":"","sources":["../../src/resources/projects/limits.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,gCAA4B;AAClD,OAAO,EAAE,UAAU,EAAE,mCAA+B;AACpD,OAAO,EAAE,cAAc,EAAE,2CAAuC;AAGhE;;GAEG;AACH,qBAAa,MAAO,SAAQ,WAAW;IACrC;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,aAAa,CAAC;IAIzE;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,aAAa,CAAC;CAGjG;AAED,MAAM,WAAW,aAAa;IAC5B;;;OAGG;IACH,0BAA0B,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3C;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAExC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACrC;AAED,MAAM,WAAW,0BAA0B;IACzC;;;OAGG;IACH,0BAA0B,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3C;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAExC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACrC;AAED,MAAM,WAAW,iBAAiB;IAChC;;;OAGG;IACH,0BAA0B,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3C;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAExC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACrC;AAED,MAAM,CAAC,OAAO,WAAW,MAAM,CAAC;IAC9B,OAAO,EACL,KAAK,aAAa,IAAI,aAAa,EACnC,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,KAAK,iBAAiB,IAAI,iBAAiB,GAC5C,CAAC;CACH"}
|
|
@@ -38,13 +38,15 @@ export interface ProjectLimits {
|
|
|
38
38
|
*/
|
|
39
39
|
max_concurrent_invocations?: number | null;
|
|
40
40
|
/**
|
|
41
|
-
* Maximum concurrent
|
|
42
|
-
* project-level
|
|
41
|
+
* Maximum concurrent browsers for this project, covering both on-demand sessions
|
|
42
|
+
* (`browsers.create()`) and browser pool reservations. Null means no project-level
|
|
43
|
+
* cap.
|
|
43
44
|
*/
|
|
44
45
|
max_concurrent_sessions?: number | null;
|
|
45
46
|
/**
|
|
46
|
-
*
|
|
47
|
-
*
|
|
47
|
+
* @deprecated Deprecated: pooled browsers now count toward
|
|
48
|
+
* `max_concurrent_sessions`. Always null once the unified concurrency limit is
|
|
49
|
+
* enabled for your organization.
|
|
48
50
|
*/
|
|
49
51
|
max_pooled_sessions?: number | null;
|
|
50
52
|
}
|
|
@@ -55,13 +57,15 @@ export interface UpdateProjectLimitsRequest {
|
|
|
55
57
|
*/
|
|
56
58
|
max_concurrent_invocations?: number | null;
|
|
57
59
|
/**
|
|
58
|
-
* Maximum concurrent
|
|
59
|
-
* cap; omit to leave
|
|
60
|
+
* Maximum concurrent browsers for this project, covering both on-demand sessions
|
|
61
|
+
* and browser pool reservations. Set to 0 to remove the cap; omit to leave
|
|
62
|
+
* unchanged.
|
|
60
63
|
*/
|
|
61
64
|
max_concurrent_sessions?: number | null;
|
|
62
65
|
/**
|
|
63
|
-
*
|
|
64
|
-
*
|
|
66
|
+
* @deprecated Deprecated: pooled browsers now count toward
|
|
67
|
+
* `max_concurrent_sessions`. Requests that set this field are rejected with a 400
|
|
68
|
+
* once the unified concurrency limit is enabled for your organization.
|
|
65
69
|
*/
|
|
66
70
|
max_pooled_sessions?: number | null;
|
|
67
71
|
}
|
|
@@ -72,13 +76,15 @@ export interface LimitUpdateParams {
|
|
|
72
76
|
*/
|
|
73
77
|
max_concurrent_invocations?: number | null;
|
|
74
78
|
/**
|
|
75
|
-
* Maximum concurrent
|
|
76
|
-
* cap; omit to leave
|
|
79
|
+
* Maximum concurrent browsers for this project, covering both on-demand sessions
|
|
80
|
+
* and browser pool reservations. Set to 0 to remove the cap; omit to leave
|
|
81
|
+
* unchanged.
|
|
77
82
|
*/
|
|
78
83
|
max_concurrent_sessions?: number | null;
|
|
79
84
|
/**
|
|
80
|
-
*
|
|
81
|
-
*
|
|
85
|
+
* @deprecated Deprecated: pooled browsers now count toward
|
|
86
|
+
* `max_concurrent_sessions`. Requests that set this field are rejected with a 400
|
|
87
|
+
* once the unified concurrency limit is enabled for your organization.
|
|
82
88
|
*/
|
|
83
89
|
max_pooled_sessions?: number | null;
|
|
84
90
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"limits.d.ts","sourceRoot":"","sources":["../../src/resources/projects/limits.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,+BAA4B;AAClD,OAAO,EAAE,UAAU,EAAE,kCAA+B;AACpD,OAAO,EAAE,cAAc,EAAE,0CAAuC;AAGhE;;GAEG;AACH,qBAAa,MAAO,SAAQ,WAAW;IACrC;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,aAAa,CAAC;IAIzE;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,aAAa,CAAC;CAGjG;AAED,MAAM,WAAW,aAAa;IAC5B;;;OAGG;IACH,0BAA0B,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3C
|
|
1
|
+
{"version":3,"file":"limits.d.ts","sourceRoot":"","sources":["../../src/resources/projects/limits.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,+BAA4B;AAClD,OAAO,EAAE,UAAU,EAAE,kCAA+B;AACpD,OAAO,EAAE,cAAc,EAAE,0CAAuC;AAGhE;;GAEG;AACH,qBAAa,MAAO,SAAQ,WAAW;IACrC;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,aAAa,CAAC;IAIzE;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,aAAa,CAAC;CAGjG;AAED,MAAM,WAAW,aAAa;IAC5B;;;OAGG;IACH,0BAA0B,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3C;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAExC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACrC;AAED,MAAM,WAAW,0BAA0B;IACzC;;;OAGG;IACH,0BAA0B,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3C;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAExC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACrC;AAED,MAAM,WAAW,iBAAiB;IAChC;;;OAGG;IACH,0BAA0B,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3C;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAExC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACrC;AAED,MAAM,CAAC,OAAO,WAAW,MAAM,CAAC;IAC9B,OAAO,EACL,KAAK,aAAa,IAAI,aAAa,EACnC,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,KAAK,iBAAiB,IAAI,iBAAiB,GAC5C,CAAC;CACH"}
|
|
@@ -116,6 +116,11 @@ export interface ProjectUpdateParams {
|
|
|
116
116
|
status?: 'active' | 'archived';
|
|
117
117
|
}
|
|
118
118
|
export interface ProjectListParams extends OffsetPaginationParams {
|
|
119
|
+
/**
|
|
120
|
+
* Exact-match filter on project name using the database collation. In production,
|
|
121
|
+
* matching is case- and accent-insensitive.
|
|
122
|
+
*/
|
|
123
|
+
name?: string;
|
|
119
124
|
/**
|
|
120
125
|
* Case-insensitive substring match against project name
|
|
121
126
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"projects.d.mts","sourceRoot":"","sources":["../../src/resources/projects/projects.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"projects.d.mts","sourceRoot":"","sources":["../../src/resources/projects/projects.ts"],"names":[],"mappings":"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"}
|
|
@@ -116,6 +116,11 @@ export interface ProjectUpdateParams {
|
|
|
116
116
|
status?: 'active' | 'archived';
|
|
117
117
|
}
|
|
118
118
|
export interface ProjectListParams extends OffsetPaginationParams {
|
|
119
|
+
/**
|
|
120
|
+
* Exact-match filter on project name using the database collation. In production,
|
|
121
|
+
* matching is case- and accent-insensitive.
|
|
122
|
+
*/
|
|
123
|
+
name?: string;
|
|
119
124
|
/**
|
|
120
125
|
* Case-insensitive substring match against project name
|
|
121
126
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"projects.d.ts","sourceRoot":"","sources":["../../src/resources/projects/projects.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"projects.d.ts","sourceRoot":"","sources":["../../src/resources/projects/projects.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"projects.js","sourceRoot":"","sources":["../../src/resources/projects/projects.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,qDAAkD;AAClD,+DAAsC;AACtC,wCAAgG;AAEhG,yDAAmG;AACnG,uDAAsD;AAEtD,uDAAiD;AAEjD;;GAEG;AACH,MAAa,QAAS,SAAQ,sBAAW;IAAzC;;QACE,WAAM,GAAqB,IAAI,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAwEhE,CAAC;IAtEC;;;;;;;;;OASG;IACH,MAAM,CAAC,IAAyB,EAAE,OAAwB;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,eAAe,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAClE,CAAC;IAED;;;;;;;OAOG;IACH,QAAQ,CAAC,EAAU,EAAE,OAAwB;QAC3C,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,iBAAiB,EAAE,EAAE,EAAE,OAAO,CAAC,CAAC;IAC9D,CAAC;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,EAAU,EAAE,IAAyB,EAAE,OAAwB;QACpE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAA,WAAI,EAAA,iBAAiB,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC7E,CAAC;IAED;;;;;;;;;;OAUG;IACH,IAAI,CACF,QAA8C,EAAE,EAChD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,eAAe,EAAE,CAAA,6BAAyB,CAAA,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACpG,CAAC;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,EAAU,EAAE,OAAwB;QACzC,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAA,WAAI,EAAA,iBAAiB,EAAE,EAAE,EAAE;YACpD,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;CACF;AAzED,4BAyEC;
|
|
1
|
+
{"version":3,"file":"projects.js","sourceRoot":"","sources":["../../src/resources/projects/projects.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,qDAAkD;AAClD,+DAAsC;AACtC,wCAAgG;AAEhG,yDAAmG;AACnG,uDAAsD;AAEtD,uDAAiD;AAEjD;;GAEG;AACH,MAAa,QAAS,SAAQ,sBAAW;IAAzC;;QACE,WAAM,GAAqB,IAAI,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAwEhE,CAAC;IAtEC;;;;;;;;;OASG;IACH,MAAM,CAAC,IAAyB,EAAE,OAAwB;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,eAAe,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAClE,CAAC;IAED;;;;;;;OAOG;IACH,QAAQ,CAAC,EAAU,EAAE,OAAwB;QAC3C,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,iBAAiB,EAAE,EAAE,EAAE,OAAO,CAAC,CAAC;IAC9D,CAAC;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,EAAU,EAAE,IAAyB,EAAE,OAAwB;QACpE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAA,WAAI,EAAA,iBAAiB,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC7E,CAAC;IAED;;;;;;;;;;OAUG;IACH,IAAI,CACF,QAA8C,EAAE,EAChD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,eAAe,EAAE,CAAA,6BAAyB,CAAA,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACpG,CAAC;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,EAAU,EAAE,OAAwB;QACzC,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAA,WAAI,EAAA,iBAAiB,EAAE,EAAE,EAAE;YACpD,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;CACF;AAzED,4BAyEC;AAkFD,QAAQ,CAAC,MAAM,GAAG,eAAM,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"projects.mjs","sourceRoot":"","sources":["../../src/resources/projects/projects.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,WAAW,EAAE,gCAA4B;AAClD,OAAO,KAAK,SAAS,qBAAiB;AACtC,OAAO,EAAqB,MAAM,EAA6C,qBAAiB;AAEhG,OAAO,EAAE,gBAAgB,EAA4C,kCAA8B;AACnG,OAAO,EAAE,YAAY,EAAE,mCAA+B;AAEtD,OAAO,EAAE,IAAI,EAAE,sCAAkC;AAEjD;;GAEG;AACH,MAAM,OAAO,QAAS,SAAQ,WAAW;IAAzC;;QACE,WAAM,GAAqB,IAAI,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAwEhE,CAAC;IAtEC;;;;;;;;;OASG;IACH,MAAM,CAAC,IAAyB,EAAE,OAAwB;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,eAAe,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAClE,CAAC;IAED;;;;;;;OAOG;IACH,QAAQ,CAAC,EAAU,EAAE,OAAwB;QAC3C,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,iBAAiB,EAAE,EAAE,EAAE,OAAO,CAAC,CAAC;IAC9D,CAAC;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,EAAU,EAAE,IAAyB,EAAE,OAAwB;QACpE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAA,iBAAiB,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC7E,CAAC;IAED;;;;;;;;;;OAUG;IACH,IAAI,CACF,QAA8C,EAAE,EAChD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,eAAe,EAAE,CAAA,gBAAyB,CAAA,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACpG,CAAC;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,EAAU,EAAE,OAAwB;QACzC,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAA,iBAAiB,EAAE,EAAE,EAAE;YACpD,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;CACF;
|
|
1
|
+
{"version":3,"file":"projects.mjs","sourceRoot":"","sources":["../../src/resources/projects/projects.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,WAAW,EAAE,gCAA4B;AAClD,OAAO,KAAK,SAAS,qBAAiB;AACtC,OAAO,EAAqB,MAAM,EAA6C,qBAAiB;AAEhG,OAAO,EAAE,gBAAgB,EAA4C,kCAA8B;AACnG,OAAO,EAAE,YAAY,EAAE,mCAA+B;AAEtD,OAAO,EAAE,IAAI,EAAE,sCAAkC;AAEjD;;GAEG;AACH,MAAM,OAAO,QAAS,SAAQ,WAAW;IAAzC;;QACE,WAAM,GAAqB,IAAI,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAwEhE,CAAC;IAtEC;;;;;;;;;OASG;IACH,MAAM,CAAC,IAAyB,EAAE,OAAwB;QACxD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,eAAe,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAClE,CAAC;IAED;;;;;;;OAOG;IACH,QAAQ,CAAC,EAAU,EAAE,OAAwB;QAC3C,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,iBAAiB,EAAE,EAAE,EAAE,OAAO,CAAC,CAAC;IAC9D,CAAC;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,EAAU,EAAE,IAAyB,EAAE,OAAwB;QACpE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,CAAA,iBAAiB,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC7E,CAAC;IAED;;;;;;;;;;OAUG;IACH,IAAI,CACF,QAA8C,EAAE,EAChD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,eAAe,EAAE,CAAA,gBAAyB,CAAA,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACpG,CAAC;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,EAAU,EAAE,OAAwB;QACzC,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAA,iBAAiB,EAAE,EAAE,EAAE;YACpD,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;CACF;AAkFD,QAAQ,CAAC,MAAM,GAAG,MAAM,CAAC"}
|