Skip to content

Commit

Permalink
Update GraphQL TS Schema
Browse files Browse the repository at this point in the history
Signed-off-by: Plural Bot <[email protected]>
  • Loading branch information
plural-bot committed Dec 15, 2022
1 parent 0ce2b52 commit 51a2e35
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion www/src/generated/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,12 @@ export type ConsentRequest = {
skip?: Maybe<Scalars['Boolean']>;
};

export type ContextAttributes = {
buckets?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
configuration: Scalars['Map'];
domains?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
};

export type Crd = {
__typename?: 'Crd';
blob?: Maybe<Scalars['String']>;
Expand Down Expand Up @@ -2390,6 +2396,8 @@ export type RootMutationType = {
installBundle?: Maybe<Array<Maybe<Installation>>>;
installChart?: Maybe<ChartInstallation>;
installRecipe?: Maybe<Array<Maybe<Installation>>>;
installStack?: Maybe<Array<Maybe<Recipe>>>;
installStackShell?: Maybe<Array<Maybe<Recipe>>>;
installTerraform?: Maybe<TerraformInstallation>;
linkPublisher?: Maybe<Publisher>;
login?: Maybe<User>;
Expand Down Expand Up @@ -2802,7 +2810,7 @@ export type RootMutationTypeImpersonateServiceAccountArgs = {


export type RootMutationTypeInstallBundleArgs = {
context: Scalars['Map'];
context: ContextAttributes;
name: Scalars['String'];
oidc: Scalars['Boolean'];
repo: Scalars['String'];
Expand All @@ -2821,6 +2829,19 @@ export type RootMutationTypeInstallRecipeArgs = {
};


export type RootMutationTypeInstallStackArgs = {
name: Scalars['String'];
provider: Provider;
};


export type RootMutationTypeInstallStackShellArgs = {
context: ContextAttributes;
name: Scalars['String'];
oidc: Scalars['Boolean'];
};


export type RootMutationTypeInstallTerraformArgs = {
attributes: TerraformInstallationAttributes;
installationId: Scalars['ID'];
Expand Down Expand Up @@ -3528,6 +3549,7 @@ export type RootQueryTypeRepositoriesArgs = {
first?: InputMaybe<Scalars['Int']>;
installed?: InputMaybe<Scalars['Boolean']>;
last?: InputMaybe<Scalars['Int']>;
provider?: InputMaybe<Provider>;
publisherId?: InputMaybe<Scalars['ID']>;
publishers?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
q?: InputMaybe<Scalars['String']>;
Expand Down Expand Up @@ -3843,7 +3865,9 @@ export type ServiceLevelAttributes = {

export type ShellConfiguration = {
__typename?: 'ShellConfiguration';
buckets?: Maybe<Array<Maybe<Scalars['String']>>>;
contextConfiguration?: Maybe<Scalars['Map']>;
domains?: Maybe<Array<Maybe<Scalars['String']>>>;
git?: Maybe<GitConfiguration>;
workspace?: Maybe<ShellWorkspace>;
};
Expand Down Expand Up @@ -3905,6 +3929,7 @@ export type Stack = {
id: Scalars['ID'];
insertedAt?: Maybe<Scalars['DateTime']>;
name: Scalars['String'];
sections?: Maybe<Array<Maybe<RecipeSection>>>;
updatedAt?: Maybe<Scalars['DateTime']>;
};

Expand Down

0 comments on commit 51a2e35

Please sign in to comment.