Skip to content

Commit

Permalink
field still exists
Browse files Browse the repository at this point in the history
  • Loading branch information
ybrill committed Apr 9, 2024
1 parent 64e8d87 commit 4217e39
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions apps/spruce/src/gql/generated/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,7 @@ export type Distro = {
providerSettingsList: Array<Scalars["Map"]["output"]>;
setup: Scalars["String"]["output"];
setupAsSudo: Scalars["Boolean"]["output"];
sshKey: Scalars["String"]["output"];
sshOptions: Array<Scalars["String"]["output"]>;
user: Scalars["String"]["output"];
userSpawnAllowed: Scalars["Boolean"]["output"];
Expand Down Expand Up @@ -452,6 +453,8 @@ export type DistroInput = {
providerSettingsList: Array<Scalars["Map"]["input"]>;
setup: Scalars["String"]["input"];
setupAsSudo: Scalars["Boolean"]["input"];
/** @deprecated removing this field shortly */
sshKey?: InputMaybe<Scalars["String"]["input"]>;
sshOptions: Array<Scalars["String"]["input"]>;
user: Scalars["String"]["input"];
userSpawnAllowed: Scalars["Boolean"]["input"];
Expand Down Expand Up @@ -2303,6 +2306,12 @@ export enum RoundingRule {
Up = "UP",
}

export type SshKey = {
__typename?: "SSHKey";
location: Scalars["String"]["output"];
name: Scalars["String"]["output"];
};

/** SaveDistroInput is the input to the saveDistro mutation. */
export type SaveDistroInput = {
distro: DistroInput;
Expand Down Expand Up @@ -2454,6 +2463,8 @@ export type SpruceConfig = {
containerPools?: Maybe<ContainerPoolsConfig>;
githubOrgs: Array<Scalars["String"]["output"]>;
jira?: Maybe<JiraConfig>;
/** @deprecated removing this field shortly */
keys?: Maybe<Array<SshKey>>;
providers?: Maybe<CloudProviderConfig>;
secretFields: Array<Scalars["String"]["output"]>;
slack?: Maybe<SlackConfig>;
Expand Down

0 comments on commit 4217e39

Please sign in to comment.