Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
Types
Browse files Browse the repository at this point in the history
  • Loading branch information
khelif96 committed Jan 10, 2024
1 parent 1aafebe commit e070bf4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/gql/generated/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,7 @@ export type DisplayTask = {
/** Distro models an environment configuration for a host. */
export type Distro = {
__typename?: "Distro";
adminOnly: Scalars["Boolean"]["output"];
aliases: Array<Scalars["String"]["output"]>;
arch: Arch;
authorizedKeysFile: Scalars["String"]["output"];
Expand Down Expand Up @@ -429,6 +430,8 @@ export type DistroInfo = {
};

export type DistroInput = {
/** TODO: require adminOnly field upon completion of DEVPROD-3533 */
adminOnly?: InputMaybe<Scalars["Boolean"]["input"]>;
aliases: Array<Scalars["String"]["input"]>;
arch: Arch;
authorizedKeysFile: Scalars["String"]["input"];
Expand Down Expand Up @@ -2786,11 +2789,13 @@ export type TestFilterOptions = {
export type TestLog = {
__typename?: "TestLog";
lineNum?: Maybe<Scalars["Int"]["output"]>;
renderingType?: Maybe<Scalars["String"]["output"]>;
url?: Maybe<Scalars["String"]["output"]>;
/** @deprecated Use urlParsley instead */
urlLobster?: Maybe<Scalars["String"]["output"]>;
urlParsley?: Maybe<Scalars["String"]["output"]>;
urlRaw?: Maybe<Scalars["String"]["output"]>;
version?: Maybe<Scalars["Int"]["output"]>;
};

export type TestResult = {
Expand Down

0 comments on commit e070bf4

Please sign in to comment.