@parallelworks/client 7.101.0 → 7.102.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/dist/types/api.d.ts +532 -30
- package/package.json +1 -1
package/dist/types/api.d.ts
CHANGED
|
@@ -2595,6 +2595,28 @@ export interface paths {
|
|
|
2595
2595
|
patch?: never;
|
|
2596
2596
|
trace?: never;
|
|
2597
2597
|
};
|
|
2598
|
+
"/api/integrations/github/token": {
|
|
2599
|
+
parameters: {
|
|
2600
|
+
query?: never;
|
|
2601
|
+
header?: never;
|
|
2602
|
+
path?: never;
|
|
2603
|
+
cookie?: never;
|
|
2604
|
+
};
|
|
2605
|
+
get?: never;
|
|
2606
|
+
/**
|
|
2607
|
+
* Connect GitHub with a personal access token
|
|
2608
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
2609
|
+
*
|
|
2610
|
+
* Connects the caller's GitHub account with a personal access token, for a deployment with no GitHub App and for an account the app cannot be installed on. The token is verified against GitHub, stored in the platform's secret store, and never returned.
|
|
2611
|
+
*/
|
|
2612
|
+
put: operations["github-connect-token"];
|
|
2613
|
+
post?: never;
|
|
2614
|
+
delete?: never;
|
|
2615
|
+
options?: never;
|
|
2616
|
+
head?: never;
|
|
2617
|
+
patch?: never;
|
|
2618
|
+
trace?: never;
|
|
2619
|
+
};
|
|
2598
2620
|
"/api/integrations/github/webhook": {
|
|
2599
2621
|
parameters: {
|
|
2600
2622
|
query?: never;
|
|
@@ -13726,6 +13748,138 @@ export interface paths {
|
|
|
13726
13748
|
patch: operations["patch-provision-status"];
|
|
13727
13749
|
trace?: never;
|
|
13728
13750
|
};
|
|
13751
|
+
"/api/repo-suggestions/file": {
|
|
13752
|
+
parameters: {
|
|
13753
|
+
query?: never;
|
|
13754
|
+
header?: never;
|
|
13755
|
+
path?: never;
|
|
13756
|
+
cookie?: never;
|
|
13757
|
+
};
|
|
13758
|
+
/**
|
|
13759
|
+
* Read one file from a repository
|
|
13760
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
13761
|
+
*
|
|
13762
|
+
* Reads a single file from a GitHub or GitLab repository with the caller's connected account, so the editor can complete a referenced workflow's inputs. Only a repository and a path within it are accepted, never a URL.
|
|
13763
|
+
*/
|
|
13764
|
+
get: operations["repo-suggestion-file"];
|
|
13765
|
+
put?: never;
|
|
13766
|
+
post?: never;
|
|
13767
|
+
delete?: never;
|
|
13768
|
+
options?: never;
|
|
13769
|
+
head?: never;
|
|
13770
|
+
patch?: never;
|
|
13771
|
+
trace?: never;
|
|
13772
|
+
};
|
|
13773
|
+
"/api/repo-suggestions/files": {
|
|
13774
|
+
parameters: {
|
|
13775
|
+
query?: never;
|
|
13776
|
+
header?: never;
|
|
13777
|
+
path?: never;
|
|
13778
|
+
cookie?: never;
|
|
13779
|
+
};
|
|
13780
|
+
/**
|
|
13781
|
+
* List a repository directory
|
|
13782
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
13783
|
+
*
|
|
13784
|
+
* Lists the entries directly under one directory of a GitHub or GitLab repository, read with the caller's connected account.
|
|
13785
|
+
*/
|
|
13786
|
+
get: operations["repo-suggestion-files"];
|
|
13787
|
+
put?: never;
|
|
13788
|
+
post?: never;
|
|
13789
|
+
delete?: never;
|
|
13790
|
+
options?: never;
|
|
13791
|
+
head?: never;
|
|
13792
|
+
patch?: never;
|
|
13793
|
+
trace?: never;
|
|
13794
|
+
};
|
|
13795
|
+
"/api/repo-suggestions/gitlab-projects": {
|
|
13796
|
+
parameters: {
|
|
13797
|
+
query?: never;
|
|
13798
|
+
header?: never;
|
|
13799
|
+
path?: never;
|
|
13800
|
+
cookie?: never;
|
|
13801
|
+
};
|
|
13802
|
+
/**
|
|
13803
|
+
* Search GitLab projects across connected servers
|
|
13804
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
13805
|
+
*
|
|
13806
|
+
* Searches the projects the caller can see on every registered GitLab server they are connected to, so the editor can complete a gitlab/ reference that names no host. Each match reports the server it lives on, which is what $host must name.
|
|
13807
|
+
*/
|
|
13808
|
+
get: operations["repo-suggestion-gitlab-projects"];
|
|
13809
|
+
put?: never;
|
|
13810
|
+
post?: never;
|
|
13811
|
+
delete?: never;
|
|
13812
|
+
options?: never;
|
|
13813
|
+
head?: never;
|
|
13814
|
+
patch?: never;
|
|
13815
|
+
trace?: never;
|
|
13816
|
+
};
|
|
13817
|
+
"/api/repo-suggestions/owners": {
|
|
13818
|
+
parameters: {
|
|
13819
|
+
query?: never;
|
|
13820
|
+
header?: never;
|
|
13821
|
+
path?: never;
|
|
13822
|
+
cookie?: never;
|
|
13823
|
+
};
|
|
13824
|
+
/**
|
|
13825
|
+
* List the owners a reference can name
|
|
13826
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
13827
|
+
*
|
|
13828
|
+
* Lists the accounts, organizations and GitLab groups the caller can reach, which is what a reference names before it names a repository. Cheaper than listing every repository only to derive the same names from their paths.
|
|
13829
|
+
*/
|
|
13830
|
+
get: operations["repo-suggestion-owners"];
|
|
13831
|
+
put?: never;
|
|
13832
|
+
post?: never;
|
|
13833
|
+
delete?: never;
|
|
13834
|
+
options?: never;
|
|
13835
|
+
head?: never;
|
|
13836
|
+
patch?: never;
|
|
13837
|
+
trace?: never;
|
|
13838
|
+
};
|
|
13839
|
+
"/api/repo-suggestions/refs": {
|
|
13840
|
+
parameters: {
|
|
13841
|
+
query?: never;
|
|
13842
|
+
header?: never;
|
|
13843
|
+
path?: never;
|
|
13844
|
+
cookie?: never;
|
|
13845
|
+
};
|
|
13846
|
+
/**
|
|
13847
|
+
* List a repository's branches, tags and recent commits
|
|
13848
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
13849
|
+
*
|
|
13850
|
+
* Lists the branches, tags and most recent commits of a GitHub or GitLab repository, read with the caller's connected account so a private repository completes in the editor.
|
|
13851
|
+
*/
|
|
13852
|
+
get: operations["repo-suggestion-refs"];
|
|
13853
|
+
put?: never;
|
|
13854
|
+
post?: never;
|
|
13855
|
+
delete?: never;
|
|
13856
|
+
options?: never;
|
|
13857
|
+
head?: never;
|
|
13858
|
+
patch?: never;
|
|
13859
|
+
trace?: never;
|
|
13860
|
+
};
|
|
13861
|
+
"/api/repo-suggestions/repos": {
|
|
13862
|
+
parameters: {
|
|
13863
|
+
query?: never;
|
|
13864
|
+
header?: never;
|
|
13865
|
+
path?: never;
|
|
13866
|
+
cookie?: never;
|
|
13867
|
+
};
|
|
13868
|
+
/**
|
|
13869
|
+
* List an owner's repositories
|
|
13870
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
13871
|
+
*
|
|
13872
|
+
* Lists the repositories under a GitHub owner, or the projects under a group on a registered GitLab server, read with the caller's connected account. Private repositories appear for an organization the account belongs to and for the account's own namespace.
|
|
13873
|
+
*/
|
|
13874
|
+
get: operations["repo-suggestion-repos"];
|
|
13875
|
+
put?: never;
|
|
13876
|
+
post?: never;
|
|
13877
|
+
delete?: never;
|
|
13878
|
+
options?: never;
|
|
13879
|
+
head?: never;
|
|
13880
|
+
patch?: never;
|
|
13881
|
+
trace?: never;
|
|
13882
|
+
};
|
|
13729
13883
|
"/api/reports/legacy-query": {
|
|
13730
13884
|
parameters: {
|
|
13731
13885
|
query?: never;
|
|
@@ -19288,6 +19442,16 @@ export interface components {
|
|
|
19288
19442
|
*/
|
|
19289
19443
|
status: "connecting" | "input_needed" | "failed" | "on" | "off";
|
|
19290
19444
|
};
|
|
19445
|
+
ConnectTokenInputBody: {
|
|
19446
|
+
/** @description A GitHub personal access token, classic or fine-grained. */
|
|
19447
|
+
token: string;
|
|
19448
|
+
};
|
|
19449
|
+
ConnectTokenOutputBody: {
|
|
19450
|
+
/** @description Whether the token can read private repositories. */
|
|
19451
|
+
private: boolean;
|
|
19452
|
+
/** @description The GitHub account the token belongs to. */
|
|
19453
|
+
username: string;
|
|
19454
|
+
};
|
|
19291
19455
|
ConnectWithTokenInputBody: {
|
|
19292
19456
|
/** @description A personal access token from the GitLab server with the read_api scope. Stored in the platform vault and never returned. */
|
|
19293
19457
|
token: string;
|
|
@@ -21079,6 +21243,8 @@ export interface components {
|
|
|
21079
21243
|
total: number;
|
|
21080
21244
|
};
|
|
21081
21245
|
ExistingCluster: {
|
|
21246
|
+
/** @description Version the connected agent reported when its tunnel registered; empty when no tunnel is registered */
|
|
21247
|
+
agentVersion?: string;
|
|
21082
21248
|
/**
|
|
21083
21249
|
* Format: date-time
|
|
21084
21250
|
* @description Set when the user explicitly disconnected this cluster; reconcilers use this to skip auto-reconnect
|
|
@@ -21216,6 +21382,12 @@ export interface components {
|
|
|
21216
21382
|
/** @description The zone of the instance, if applicable. */
|
|
21217
21383
|
zone: string;
|
|
21218
21384
|
};
|
|
21385
|
+
FileOutputBody: {
|
|
21386
|
+
content: string;
|
|
21387
|
+
};
|
|
21388
|
+
FilesOutputBody: {
|
|
21389
|
+
entries: components["schemas"]["RepoTreeEntry"][] | null;
|
|
21390
|
+
};
|
|
21219
21391
|
FilesystemInfo: {
|
|
21220
21392
|
/** @description Device name (e.g., /dev/sda1) */
|
|
21221
21393
|
device: string;
|
|
@@ -21519,7 +21691,25 @@ export interface components {
|
|
|
21519
21691
|
/** @description The organization's user workspace bootstrap script, or empty when none is set. */
|
|
21520
21692
|
script: string;
|
|
21521
21693
|
};
|
|
21694
|
+
GitHubAppConfigRequest: {
|
|
21695
|
+
/** @description Whether a user may connect GitHub with a personal access token. Omit to leave unchanged. */
|
|
21696
|
+
allowPersonalAccessTokens?: boolean;
|
|
21697
|
+
/**
|
|
21698
|
+
* Format: int64
|
|
21699
|
+
* @description GitHub App ID. Omit for a personal-access-token-only deployment.
|
|
21700
|
+
*/
|
|
21701
|
+
appId?: number;
|
|
21702
|
+
/** @description OAuth Client ID for user authentication. Omit for a personal-access-token-only deployment. */
|
|
21703
|
+
clientId?: string;
|
|
21704
|
+
/** @description OAuth Client Secret (only sent when updating) */
|
|
21705
|
+
clientSecret?: string;
|
|
21706
|
+
/** @description Private key in PEM format (only sent when updating) */
|
|
21707
|
+
privateKeyPEM?: string;
|
|
21708
|
+
/** @description Webhook secret for verifying GitHub webhook payloads (only sent when updating) */
|
|
21709
|
+
webhookSecret?: string;
|
|
21710
|
+
};
|
|
21522
21711
|
GitHubAppConfigResponse: {
|
|
21712
|
+
allowPersonalAccessTokens: boolean;
|
|
21523
21713
|
/** Format: int64 */
|
|
21524
21714
|
appId: number;
|
|
21525
21715
|
appName: string;
|
|
@@ -21639,6 +21829,18 @@ export interface components {
|
|
|
21639
21829
|
*/
|
|
21640
21830
|
tlsVerification?: "public" | "ca-certificate" | "skip";
|
|
21641
21831
|
};
|
|
21832
|
+
GitlabProjectListing: {
|
|
21833
|
+
description?: string;
|
|
21834
|
+
/** @description Server this project lives on, for $host. */
|
|
21835
|
+
host: string;
|
|
21836
|
+
/** @description GROUP/.../PROJECT, what follows gitlab/ in a uses: reference. */
|
|
21837
|
+
path: string;
|
|
21838
|
+
private: boolean;
|
|
21839
|
+
};
|
|
21840
|
+
GitlabProjectsOutputBody: {
|
|
21841
|
+
/** @description Matches across every server the caller is connected to. */
|
|
21842
|
+
projects: components["schemas"]["GitlabProjectListing"][] | null;
|
|
21843
|
+
};
|
|
21642
21844
|
GoogleBucket: {
|
|
21643
21845
|
/**
|
|
21644
21846
|
* @description The requesting user's access level for this bucket.
|
|
@@ -22056,37 +22258,27 @@ export interface components {
|
|
|
22056
22258
|
zone?: string;
|
|
22057
22259
|
};
|
|
22058
22260
|
Group: {
|
|
22059
|
-
/**
|
|
22060
|
-
* Format: double
|
|
22061
|
-
* @description The total allocation for this group.
|
|
22062
|
-
*/
|
|
22063
|
-
allocation?: number;
|
|
22064
|
-
/**
|
|
22065
|
-
* Format: double
|
|
22066
|
-
* @description The allocation used for this group
|
|
22067
|
-
*/
|
|
22068
|
-
allocationUsed?: number;
|
|
22069
22261
|
/** @description Group allocation information, will only show up for groups you are in. Always shows for admins. */
|
|
22070
|
-
allocations?: components["schemas"]["Allocations"];
|
|
22262
|
+
readonly allocations?: components["schemas"]["Allocations"];
|
|
22071
22263
|
/**
|
|
22072
22264
|
* Format: date-time
|
|
22073
22265
|
* @description Group creation time
|
|
22074
22266
|
*/
|
|
22075
|
-
createdAt?: string;
|
|
22267
|
+
readonly createdAt?: string;
|
|
22076
22268
|
/** @description The group description. */
|
|
22077
22269
|
description?: string;
|
|
22078
22270
|
/**
|
|
22079
22271
|
* Format: int64
|
|
22080
22272
|
* @description POSIX group ID, used by user workspaces to create matching system groups.
|
|
22081
22273
|
*/
|
|
22082
|
-
gid?: number;
|
|
22274
|
+
readonly gid?: number;
|
|
22083
22275
|
/** @description The group ID. */
|
|
22084
22276
|
readonly id?: string;
|
|
22085
22277
|
/**
|
|
22086
22278
|
* Format: int64
|
|
22087
22279
|
* @description Number of group members
|
|
22088
22280
|
*/
|
|
22089
|
-
members?: number;
|
|
22281
|
+
readonly members?: number;
|
|
22090
22282
|
/** @description The group name. */
|
|
22091
22283
|
name: string | null;
|
|
22092
22284
|
/** @description Organization name */
|
|
@@ -22172,6 +22364,8 @@ export interface components {
|
|
|
22172
22364
|
HealthSnapshot: {
|
|
22173
22365
|
/** @description Per-domain certificate summary. */
|
|
22174
22366
|
domains?: components["schemas"]["HealthSnapshotDomain"][] | null;
|
|
22367
|
+
/** @description Error tracker counts. */
|
|
22368
|
+
errors?: components["schemas"]["HealthSnapshotErrors"];
|
|
22175
22369
|
/** @description Basic deployment health. */
|
|
22176
22370
|
health: components["schemas"]["HealthSnapshotHealth"];
|
|
22177
22371
|
/**
|
|
@@ -22185,6 +22379,8 @@ export interface components {
|
|
|
22185
22379
|
usage: components["schemas"]["HealthSnapshotUsage"];
|
|
22186
22380
|
/** @description Deployment version. */
|
|
22187
22381
|
version?: string;
|
|
22382
|
+
} & {
|
|
22383
|
+
[key: string]: unknown;
|
|
22188
22384
|
};
|
|
22189
22385
|
HealthSnapshotDomain: {
|
|
22190
22386
|
/**
|
|
@@ -22203,6 +22399,17 @@ export interface components {
|
|
|
22203
22399
|
* @description Certificate expiry.
|
|
22204
22400
|
*/
|
|
22205
22401
|
notAfter?: string;
|
|
22402
|
+
} & {
|
|
22403
|
+
[key: string]: unknown;
|
|
22404
|
+
};
|
|
22405
|
+
HealthSnapshotErrors: {
|
|
22406
|
+
/**
|
|
22407
|
+
* Format: int64
|
|
22408
|
+
* @description Unhandled errors recorded over the trailing 24 hours. The error log is a capped collection, so once it wraps this is a floor, not an exact total.
|
|
22409
|
+
*/
|
|
22410
|
+
count24h?: number;
|
|
22411
|
+
} & {
|
|
22412
|
+
[key: string]: unknown;
|
|
22206
22413
|
};
|
|
22207
22414
|
HealthSnapshotHealth: {
|
|
22208
22415
|
/** @description Whether the deployment can reach its database. */
|
|
@@ -22212,6 +22419,8 @@ export interface components {
|
|
|
22212
22419
|
* @description Process start time.
|
|
22213
22420
|
*/
|
|
22214
22421
|
startedAt?: string;
|
|
22422
|
+
} & {
|
|
22423
|
+
[key: string]: unknown;
|
|
22215
22424
|
};
|
|
22216
22425
|
HealthSnapshotLicense: {
|
|
22217
22426
|
/** @description Whether the license is expired beyond the grace period. */
|
|
@@ -22223,8 +22432,28 @@ export interface components {
|
|
|
22223
22432
|
expiresAt?: string;
|
|
22224
22433
|
/** @description Whether the license is in its grace period. */
|
|
22225
22434
|
gracePeriod?: boolean;
|
|
22435
|
+
} & {
|
|
22436
|
+
[key: string]: unknown;
|
|
22437
|
+
};
|
|
22438
|
+
HealthSnapshotOrgUsage: {
|
|
22439
|
+
/** @description Organization name. */
|
|
22440
|
+
name: string;
|
|
22441
|
+
/**
|
|
22442
|
+
* Format: int64
|
|
22443
|
+
* @description Users in the organization holding a license seat.
|
|
22444
|
+
*/
|
|
22445
|
+
seatsAssigned: number;
|
|
22446
|
+
/**
|
|
22447
|
+
* Format: int64
|
|
22448
|
+
* @description Seats allocated to the organization, when an allocation exists.
|
|
22449
|
+
*/
|
|
22450
|
+
seatsTotal?: number;
|
|
22451
|
+
} & {
|
|
22452
|
+
[key: string]: unknown;
|
|
22226
22453
|
};
|
|
22227
22454
|
HealthSnapshotUsage: {
|
|
22455
|
+
/** @description Per-organization seat usage for organizations with a seat allocation. */
|
|
22456
|
+
orgs?: components["schemas"]["HealthSnapshotOrgUsage"][] | null;
|
|
22228
22457
|
/**
|
|
22229
22458
|
* Format: int64
|
|
22230
22459
|
* @description Users holding a license seat.
|
|
@@ -22245,6 +22474,8 @@ export interface components {
|
|
|
22245
22474
|
* @description Monthly active users over the last 30 days.
|
|
22246
22475
|
*/
|
|
22247
22476
|
totalMAU?: number;
|
|
22477
|
+
} & {
|
|
22478
|
+
[key: string]: unknown;
|
|
22248
22479
|
};
|
|
22249
22480
|
HeartbeatAccessManagement: {
|
|
22250
22481
|
/** @description Enable pam_mkhomedir for automatic home directory creation; absent means unmanaged */
|
|
@@ -24553,6 +24784,11 @@ export interface components {
|
|
|
24553
24784
|
keys: string;
|
|
24554
24785
|
};
|
|
24555
24786
|
MonitoredDeploymentSummary: {
|
|
24787
|
+
/**
|
|
24788
|
+
* Format: int64
|
|
24789
|
+
* @description Unhandled errors the deployment recorded over the trailing 24 hours; a floor once its capped error log wraps.
|
|
24790
|
+
*/
|
|
24791
|
+
errorCount24h?: number;
|
|
24556
24792
|
/** @description Alert rules currently firing for this deployment, evaluated live from the latest snapshot. */
|
|
24557
24793
|
firingAlerts: string[] | null;
|
|
24558
24794
|
/**
|
|
@@ -25266,6 +25502,8 @@ export interface components {
|
|
|
25266
25502
|
appSlug?: string;
|
|
25267
25503
|
/** Format: date-time */
|
|
25268
25504
|
connectedAt?: string;
|
|
25505
|
+
method?: string;
|
|
25506
|
+
tokensAllowed: boolean;
|
|
25269
25507
|
username?: string;
|
|
25270
25508
|
};
|
|
25271
25509
|
Oidc: {
|
|
@@ -26064,10 +26302,21 @@ export interface components {
|
|
|
26064
26302
|
*/
|
|
26065
26303
|
totalCount: number;
|
|
26066
26304
|
};
|
|
26305
|
+
OwnerListing: {
|
|
26306
|
+
/** @description GitLab only: the server this namespace is on. */
|
|
26307
|
+
host?: string;
|
|
26308
|
+
/** @description user, organization or group. */
|
|
26309
|
+
kind: string;
|
|
26310
|
+
/** @description What follows github/ or gitlab/ in a reference. */
|
|
26311
|
+
name: string;
|
|
26312
|
+
};
|
|
26067
26313
|
OwnerOutputBody: {
|
|
26068
26314
|
/** @description The username of the current organization owner, if set. */
|
|
26069
26315
|
username?: string;
|
|
26070
26316
|
};
|
|
26317
|
+
OwnersOutputBody: {
|
|
26318
|
+
owners: components["schemas"]["OwnerListing"][] | null;
|
|
26319
|
+
};
|
|
26071
26320
|
PartitionInfo: {
|
|
26072
26321
|
/**
|
|
26073
26322
|
* Format: int64
|
|
@@ -28107,21 +28356,6 @@ export interface components {
|
|
|
28107
28356
|
*/
|
|
28108
28357
|
type: "cloudclusters" | "userworkspaces";
|
|
28109
28358
|
};
|
|
28110
|
-
PutGitHubAppConfigInputBody: {
|
|
28111
|
-
/**
|
|
28112
|
-
* Format: int64
|
|
28113
|
-
* @description GitHub App ID
|
|
28114
|
-
*/
|
|
28115
|
-
appId: number;
|
|
28116
|
-
/** @description OAuth Client ID for user authentication */
|
|
28117
|
-
clientId: string;
|
|
28118
|
-
/** @description OAuth Client Secret (only sent when updating) */
|
|
28119
|
-
clientSecret?: string;
|
|
28120
|
-
/** @description Private key in PEM format (only sent when updating) */
|
|
28121
|
-
privateKeyPEM?: string;
|
|
28122
|
-
/** @description Webhook secret for verifying GitHub webhook payloads (only sent when updating) */
|
|
28123
|
-
webhookSecret?: string;
|
|
28124
|
-
};
|
|
28125
28359
|
PutImageInputBody: {
|
|
28126
28360
|
/**
|
|
28127
28361
|
* @description Image architecture
|
|
@@ -28448,6 +28682,10 @@ export interface components {
|
|
|
28448
28682
|
/** Format: int64 */
|
|
28449
28683
|
minFreeBytes: number;
|
|
28450
28684
|
};
|
|
28685
|
+
RefsOutputBody: {
|
|
28686
|
+
/** @description Tags first, newest by version, then branches, then recent commits. */
|
|
28687
|
+
refs: components["schemas"]["RepoRefName"][] | null;
|
|
28688
|
+
};
|
|
28451
28689
|
RegionResource: {
|
|
28452
28690
|
cidr?: string;
|
|
28453
28691
|
cspId?: string;
|
|
@@ -28560,6 +28798,19 @@ export interface components {
|
|
|
28560
28798
|
*/
|
|
28561
28799
|
revision: string;
|
|
28562
28800
|
};
|
|
28801
|
+
RepoListing: {
|
|
28802
|
+
description: string;
|
|
28803
|
+
/** @description Repository name, relative to the owner asked for: OWNER/REPO when no owner was given. */
|
|
28804
|
+
name: string;
|
|
28805
|
+
private: boolean;
|
|
28806
|
+
};
|
|
28807
|
+
RepoRefName: {
|
|
28808
|
+
/** @description A commit's subject line. Empty for a branch or a tag. */
|
|
28809
|
+
detail: string;
|
|
28810
|
+
/** @description branch, tag or commit. */
|
|
28811
|
+
kind: string;
|
|
28812
|
+
name: string;
|
|
28813
|
+
};
|
|
28563
28814
|
RepoResponse: {
|
|
28564
28815
|
defaultBranch: string;
|
|
28565
28816
|
description: string;
|
|
@@ -28572,6 +28823,11 @@ export interface components {
|
|
|
28572
28823
|
/** Format: date-time */
|
|
28573
28824
|
updatedAt: string;
|
|
28574
28825
|
};
|
|
28826
|
+
RepoTreeEntry: {
|
|
28827
|
+
path: string;
|
|
28828
|
+
/** @description blob for a file, tree for a directory. */
|
|
28829
|
+
type: string;
|
|
28830
|
+
};
|
|
28575
28831
|
Report: {
|
|
28576
28832
|
/**
|
|
28577
28833
|
* Format: date-time
|
|
@@ -28618,6 +28874,9 @@ export interface components {
|
|
|
28618
28874
|
ReportWorkspaceMountStatusInputBody: {
|
|
28619
28875
|
mounts: components["schemas"]["WorkspaceMountStatus"][] | null;
|
|
28620
28876
|
};
|
|
28877
|
+
ReposOutputBody: {
|
|
28878
|
+
repos: components["schemas"]["RepoListing"][] | null;
|
|
28879
|
+
};
|
|
28621
28880
|
ReservationItem: {
|
|
28622
28881
|
/** @description Name of the allocation the reservation bills under the flexible allocation system */
|
|
28623
28882
|
allocation?: string;
|
|
@@ -36380,6 +36639,39 @@ export interface operations {
|
|
|
36380
36639
|
};
|
|
36381
36640
|
};
|
|
36382
36641
|
};
|
|
36642
|
+
"github-connect-token": {
|
|
36643
|
+
parameters: {
|
|
36644
|
+
query?: never;
|
|
36645
|
+
header?: never;
|
|
36646
|
+
path?: never;
|
|
36647
|
+
cookie?: never;
|
|
36648
|
+
};
|
|
36649
|
+
requestBody: {
|
|
36650
|
+
content: {
|
|
36651
|
+
"application/json": components["schemas"]["ConnectTokenInputBody"];
|
|
36652
|
+
};
|
|
36653
|
+
};
|
|
36654
|
+
responses: {
|
|
36655
|
+
/** @description OK */
|
|
36656
|
+
200: {
|
|
36657
|
+
headers: {
|
|
36658
|
+
[name: string]: unknown;
|
|
36659
|
+
};
|
|
36660
|
+
content: {
|
|
36661
|
+
"application/json": components["schemas"]["ConnectTokenOutputBody"];
|
|
36662
|
+
};
|
|
36663
|
+
};
|
|
36664
|
+
/** @description Error */
|
|
36665
|
+
default: {
|
|
36666
|
+
headers: {
|
|
36667
|
+
[name: string]: unknown;
|
|
36668
|
+
};
|
|
36669
|
+
content: {
|
|
36670
|
+
"application/json": components["schemas"]["Error"];
|
|
36671
|
+
};
|
|
36672
|
+
};
|
|
36673
|
+
};
|
|
36674
|
+
};
|
|
36383
36675
|
"github-webhook": {
|
|
36384
36676
|
parameters: {
|
|
36385
36677
|
query?: never;
|
|
@@ -57913,7 +58205,7 @@ export interface operations {
|
|
|
57913
58205
|
};
|
|
57914
58206
|
requestBody: {
|
|
57915
58207
|
content: {
|
|
57916
|
-
"application/json": components["schemas"]["
|
|
58208
|
+
"application/json": components["schemas"]["GitHubAppConfigRequest"];
|
|
57917
58209
|
};
|
|
57918
58210
|
};
|
|
57919
58211
|
responses: {
|
|
@@ -59260,6 +59552,216 @@ export interface operations {
|
|
|
59260
59552
|
};
|
|
59261
59553
|
};
|
|
59262
59554
|
};
|
|
59555
|
+
"repo-suggestion-file": {
|
|
59556
|
+
parameters: {
|
|
59557
|
+
query: {
|
|
59558
|
+
/** @description Repository the file lives in. */
|
|
59559
|
+
repo: string;
|
|
59560
|
+
/** @description Branch, tag or commit. Defaults to the repository's default branch. */
|
|
59561
|
+
ref?: string;
|
|
59562
|
+
/** @description Path of the file within the repository. */
|
|
59563
|
+
path: string;
|
|
59564
|
+
};
|
|
59565
|
+
header?: never;
|
|
59566
|
+
path?: never;
|
|
59567
|
+
cookie?: never;
|
|
59568
|
+
};
|
|
59569
|
+
requestBody?: never;
|
|
59570
|
+
responses: {
|
|
59571
|
+
/** @description OK */
|
|
59572
|
+
200: {
|
|
59573
|
+
headers: {
|
|
59574
|
+
[name: string]: unknown;
|
|
59575
|
+
};
|
|
59576
|
+
content: {
|
|
59577
|
+
"application/json": components["schemas"]["FileOutputBody"];
|
|
59578
|
+
};
|
|
59579
|
+
};
|
|
59580
|
+
/** @description Error */
|
|
59581
|
+
default: {
|
|
59582
|
+
headers: {
|
|
59583
|
+
[name: string]: unknown;
|
|
59584
|
+
};
|
|
59585
|
+
content: {
|
|
59586
|
+
"application/json": components["schemas"]["Error"];
|
|
59587
|
+
};
|
|
59588
|
+
};
|
|
59589
|
+
};
|
|
59590
|
+
};
|
|
59591
|
+
"repo-suggestion-files": {
|
|
59592
|
+
parameters: {
|
|
59593
|
+
query: {
|
|
59594
|
+
/** @description Repository to list files in. */
|
|
59595
|
+
repo: string;
|
|
59596
|
+
/** @description Branch, tag or commit. Defaults to the repository's default branch. */
|
|
59597
|
+
ref?: string;
|
|
59598
|
+
/** @description Directory to list. Defaults to the repository root. */
|
|
59599
|
+
path?: string;
|
|
59600
|
+
/** @description List every descendant instead of one directory, for completing a path in one pass. */
|
|
59601
|
+
recursive?: boolean;
|
|
59602
|
+
};
|
|
59603
|
+
header?: never;
|
|
59604
|
+
path?: never;
|
|
59605
|
+
cookie?: never;
|
|
59606
|
+
};
|
|
59607
|
+
requestBody?: never;
|
|
59608
|
+
responses: {
|
|
59609
|
+
/** @description OK */
|
|
59610
|
+
200: {
|
|
59611
|
+
headers: {
|
|
59612
|
+
[name: string]: unknown;
|
|
59613
|
+
};
|
|
59614
|
+
content: {
|
|
59615
|
+
"application/json": components["schemas"]["FilesOutputBody"];
|
|
59616
|
+
};
|
|
59617
|
+
};
|
|
59618
|
+
/** @description Error */
|
|
59619
|
+
default: {
|
|
59620
|
+
headers: {
|
|
59621
|
+
[name: string]: unknown;
|
|
59622
|
+
};
|
|
59623
|
+
content: {
|
|
59624
|
+
"application/json": components["schemas"]["Error"];
|
|
59625
|
+
};
|
|
59626
|
+
};
|
|
59627
|
+
};
|
|
59628
|
+
};
|
|
59629
|
+
"repo-suggestion-gitlab-projects": {
|
|
59630
|
+
parameters: {
|
|
59631
|
+
query?: {
|
|
59632
|
+
/** @description Substring to match against GROUP/PROJECT paths. */
|
|
59633
|
+
search?: string;
|
|
59634
|
+
/** @description Limit to one registered server. Omit to search every server the caller is connected to. */
|
|
59635
|
+
host?: string;
|
|
59636
|
+
};
|
|
59637
|
+
header?: never;
|
|
59638
|
+
path?: never;
|
|
59639
|
+
cookie?: never;
|
|
59640
|
+
};
|
|
59641
|
+
requestBody?: never;
|
|
59642
|
+
responses: {
|
|
59643
|
+
/** @description OK */
|
|
59644
|
+
200: {
|
|
59645
|
+
headers: {
|
|
59646
|
+
[name: string]: unknown;
|
|
59647
|
+
};
|
|
59648
|
+
content: {
|
|
59649
|
+
"application/json": components["schemas"]["GitlabProjectsOutputBody"];
|
|
59650
|
+
};
|
|
59651
|
+
};
|
|
59652
|
+
/** @description Error */
|
|
59653
|
+
default: {
|
|
59654
|
+
headers: {
|
|
59655
|
+
[name: string]: unknown;
|
|
59656
|
+
};
|
|
59657
|
+
content: {
|
|
59658
|
+
"application/json": components["schemas"]["Error"];
|
|
59659
|
+
};
|
|
59660
|
+
};
|
|
59661
|
+
};
|
|
59662
|
+
};
|
|
59663
|
+
"repo-suggestion-owners": {
|
|
59664
|
+
parameters: {
|
|
59665
|
+
query: {
|
|
59666
|
+
/** @description Which provider to list owners for. */
|
|
59667
|
+
provider: "github" | "gitlab";
|
|
59668
|
+
/** @description Substring to match against the owner name. */
|
|
59669
|
+
search?: string;
|
|
59670
|
+
/** @description GitLab only: limit to one registered server. */
|
|
59671
|
+
host?: string;
|
|
59672
|
+
};
|
|
59673
|
+
header?: never;
|
|
59674
|
+
path?: never;
|
|
59675
|
+
cookie?: never;
|
|
59676
|
+
};
|
|
59677
|
+
requestBody?: never;
|
|
59678
|
+
responses: {
|
|
59679
|
+
/** @description OK */
|
|
59680
|
+
200: {
|
|
59681
|
+
headers: {
|
|
59682
|
+
[name: string]: unknown;
|
|
59683
|
+
};
|
|
59684
|
+
content: {
|
|
59685
|
+
"application/json": components["schemas"]["OwnersOutputBody"];
|
|
59686
|
+
};
|
|
59687
|
+
};
|
|
59688
|
+
/** @description Error */
|
|
59689
|
+
default: {
|
|
59690
|
+
headers: {
|
|
59691
|
+
[name: string]: unknown;
|
|
59692
|
+
};
|
|
59693
|
+
content: {
|
|
59694
|
+
"application/json": components["schemas"]["Error"];
|
|
59695
|
+
};
|
|
59696
|
+
};
|
|
59697
|
+
};
|
|
59698
|
+
};
|
|
59699
|
+
"repo-suggestion-refs": {
|
|
59700
|
+
parameters: {
|
|
59701
|
+
query: {
|
|
59702
|
+
/** @description Repository to list refs for: OWNER/REPO for GitHub, or the URL of a project on a registered GitLab server. */
|
|
59703
|
+
repo: string;
|
|
59704
|
+
};
|
|
59705
|
+
header?: never;
|
|
59706
|
+
path?: never;
|
|
59707
|
+
cookie?: never;
|
|
59708
|
+
};
|
|
59709
|
+
requestBody?: never;
|
|
59710
|
+
responses: {
|
|
59711
|
+
/** @description OK */
|
|
59712
|
+
200: {
|
|
59713
|
+
headers: {
|
|
59714
|
+
[name: string]: unknown;
|
|
59715
|
+
};
|
|
59716
|
+
content: {
|
|
59717
|
+
"application/json": components["schemas"]["RefsOutputBody"];
|
|
59718
|
+
};
|
|
59719
|
+
};
|
|
59720
|
+
/** @description Error */
|
|
59721
|
+
default: {
|
|
59722
|
+
headers: {
|
|
59723
|
+
[name: string]: unknown;
|
|
59724
|
+
};
|
|
59725
|
+
content: {
|
|
59726
|
+
"application/json": components["schemas"]["Error"];
|
|
59727
|
+
};
|
|
59728
|
+
};
|
|
59729
|
+
};
|
|
59730
|
+
};
|
|
59731
|
+
"repo-suggestion-repos": {
|
|
59732
|
+
parameters: {
|
|
59733
|
+
query?: {
|
|
59734
|
+
/** @description Owner, organization or GitLab group whose repositories to list. Omit for every GitHub repository the caller can reach, across owners. */
|
|
59735
|
+
owner?: string;
|
|
59736
|
+
/** @description Host of a registered GitLab server. Omit for GitHub. */
|
|
59737
|
+
host?: string;
|
|
59738
|
+
};
|
|
59739
|
+
header?: never;
|
|
59740
|
+
path?: never;
|
|
59741
|
+
cookie?: never;
|
|
59742
|
+
};
|
|
59743
|
+
requestBody?: never;
|
|
59744
|
+
responses: {
|
|
59745
|
+
/** @description OK */
|
|
59746
|
+
200: {
|
|
59747
|
+
headers: {
|
|
59748
|
+
[name: string]: unknown;
|
|
59749
|
+
};
|
|
59750
|
+
content: {
|
|
59751
|
+
"application/json": components["schemas"]["ReposOutputBody"];
|
|
59752
|
+
};
|
|
59753
|
+
};
|
|
59754
|
+
/** @description Error */
|
|
59755
|
+
default: {
|
|
59756
|
+
headers: {
|
|
59757
|
+
[name: string]: unknown;
|
|
59758
|
+
};
|
|
59759
|
+
content: {
|
|
59760
|
+
"application/json": components["schemas"]["Error"];
|
|
59761
|
+
};
|
|
59762
|
+
};
|
|
59763
|
+
};
|
|
59764
|
+
};
|
|
59263
59765
|
"get-reports-legacy-query": {
|
|
59264
59766
|
parameters: {
|
|
59265
59767
|
query?: {
|