Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions types/defines/artifacts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,14 @@ interface ArtifactsCreateRepoResult {
defaultBranch: string;
/** HTTPS git remote URL. */
remote: string;
/** Plaintext access token (only returned at creation time). */
/** Plaintext access token (only returned at creation time). The token encodes its expiry in the `?expires=<unix_seconds>` query suffix. */
token: string;
/** ISO 8601 token expiry timestamp. */
tokenExpiresAt: string;
}

/** Paginated list of repositories. */
interface ArtifactsRepoListResult {
/** Repositories in this page (without the `remote` field). */
repos: Omit<ArtifactsRepoInfo, 'remote'>[];
/** Repositories in this page. */
repos: ArtifactsRepoInfo[];
/** Total number of repositories in the namespace. */
total: number;
/** Cursor for the next page, if there are more results. */
Expand Down
8 changes: 3 additions & 5 deletions types/generated-snapshot/experimental/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12159,15 +12159,13 @@ interface ArtifactsCreateRepoResult {
defaultBranch: string;
/** HTTPS git remote URL. */
remote: string;
/** Plaintext access token (only returned at creation time). */
/** Plaintext access token (only returned at creation time). The token encodes its expiry in the `?expires=<unix_seconds>` query suffix. */
token: string;
/** ISO 8601 token expiry timestamp. */
tokenExpiresAt: string;
}
/** Paginated list of repositories. */
interface ArtifactsRepoListResult {
/** Repositories in this page (without the `remote` field). */
repos: Omit<ArtifactsRepoInfo, "remote">[];
/** Repositories in this page. */
repos: ArtifactsRepoInfo[];
/** Total number of repositories in the namespace. */
total: number;
/** Cursor for the next page, if there are more results. */
Expand Down
8 changes: 3 additions & 5 deletions types/generated-snapshot/experimental/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12173,15 +12173,13 @@ export interface ArtifactsCreateRepoResult {
defaultBranch: string;
/** HTTPS git remote URL. */
remote: string;
/** Plaintext access token (only returned at creation time). */
/** Plaintext access token (only returned at creation time). The token encodes its expiry in the `?expires=<unix_seconds>` query suffix. */
token: string;
/** ISO 8601 token expiry timestamp. */
tokenExpiresAt: string;
}
/** Paginated list of repositories. */
export interface ArtifactsRepoListResult {
/** Repositories in this page (without the `remote` field). */
repos: Omit<ArtifactsRepoInfo, "remote">[];
/** Repositories in this page. */
repos: ArtifactsRepoInfo[];
/** Total number of repositories in the namespace. */
total: number;
/** Cursor for the next page, if there are more results. */
Expand Down
8 changes: 3 additions & 5 deletions types/generated-snapshot/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11869,15 +11869,13 @@ interface ArtifactsCreateRepoResult {
defaultBranch: string;
/** HTTPS git remote URL. */
remote: string;
/** Plaintext access token (only returned at creation time). */
/** Plaintext access token (only returned at creation time). The token encodes its expiry in the `?expires=<unix_seconds>` query suffix. */
token: string;
/** ISO 8601 token expiry timestamp. */
tokenExpiresAt: string;
}
/** Paginated list of repositories. */
interface ArtifactsRepoListResult {
/** Repositories in this page (without the `remote` field). */
repos: Omit<ArtifactsRepoInfo, "remote">[];
/** Repositories in this page. */
repos: ArtifactsRepoInfo[];
/** Total number of repositories in the namespace. */
total: number;
/** Cursor for the next page, if there are more results. */
Expand Down
8 changes: 3 additions & 5 deletions types/generated-snapshot/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11883,15 +11883,13 @@ export interface ArtifactsCreateRepoResult {
defaultBranch: string;
/** HTTPS git remote URL. */
remote: string;
/** Plaintext access token (only returned at creation time). */
/** Plaintext access token (only returned at creation time). The token encodes its expiry in the `?expires=<unix_seconds>` query suffix. */
token: string;
/** ISO 8601 token expiry timestamp. */
tokenExpiresAt: string;
}
/** Paginated list of repositories. */
export interface ArtifactsRepoListResult {
/** Repositories in this page (without the `remote` field). */
repos: Omit<ArtifactsRepoInfo, "remote">[];
/** Repositories in this page. */
repos: ArtifactsRepoInfo[];
/** Total number of repositories in the namespace. */
total: number;
/** Cursor for the next page, if there are more results. */
Expand Down
Loading