Skip to content

Commit 51a2e35

Browse files
committed
Update GraphQL TS Schema
Signed-off-by: Plural Bot <gh-bot@plural.sh>
1 parent 0ce2b52 commit 51a2e35

1 file changed

Lines changed: 26 additions & 1 deletion

File tree

www/src/generated/graphql.ts

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,12 @@ export type ConsentRequest = {
372372
skip?: Maybe<Scalars['Boolean']>;
373373
};
374374

375+
export type ContextAttributes = {
376+
buckets?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
377+
configuration: Scalars['Map'];
378+
domains?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
379+
};
380+
375381
export type Crd = {
376382
__typename?: 'Crd';
377383
blob?: Maybe<Scalars['String']>;
@@ -2390,6 +2396,8 @@ export type RootMutationType = {
23902396
installBundle?: Maybe<Array<Maybe<Installation>>>;
23912397
installChart?: Maybe<ChartInstallation>;
23922398
installRecipe?: Maybe<Array<Maybe<Installation>>>;
2399+
installStack?: Maybe<Array<Maybe<Recipe>>>;
2400+
installStackShell?: Maybe<Array<Maybe<Recipe>>>;
23932401
installTerraform?: Maybe<TerraformInstallation>;
23942402
linkPublisher?: Maybe<Publisher>;
23952403
login?: Maybe<User>;
@@ -2802,7 +2810,7 @@ export type RootMutationTypeImpersonateServiceAccountArgs = {
28022810

28032811

28042812
export type RootMutationTypeInstallBundleArgs = {
2805-
context: Scalars['Map'];
2813+
context: ContextAttributes;
28062814
name: Scalars['String'];
28072815
oidc: Scalars['Boolean'];
28082816
repo: Scalars['String'];
@@ -2821,6 +2829,19 @@ export type RootMutationTypeInstallRecipeArgs = {
28212829
};
28222830

28232831

2832+
export type RootMutationTypeInstallStackArgs = {
2833+
name: Scalars['String'];
2834+
provider: Provider;
2835+
};
2836+
2837+
2838+
export type RootMutationTypeInstallStackShellArgs = {
2839+
context: ContextAttributes;
2840+
name: Scalars['String'];
2841+
oidc: Scalars['Boolean'];
2842+
};
2843+
2844+
28242845
export type RootMutationTypeInstallTerraformArgs = {
28252846
attributes: TerraformInstallationAttributes;
28262847
installationId: Scalars['ID'];
@@ -3528,6 +3549,7 @@ export type RootQueryTypeRepositoriesArgs = {
35283549
first?: InputMaybe<Scalars['Int']>;
35293550
installed?: InputMaybe<Scalars['Boolean']>;
35303551
last?: InputMaybe<Scalars['Int']>;
3552+
provider?: InputMaybe<Provider>;
35313553
publisherId?: InputMaybe<Scalars['ID']>;
35323554
publishers?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
35333555
q?: InputMaybe<Scalars['String']>;
@@ -3843,7 +3865,9 @@ export type ServiceLevelAttributes = {
38433865

38443866
export type ShellConfiguration = {
38453867
__typename?: 'ShellConfiguration';
3868+
buckets?: Maybe<Array<Maybe<Scalars['String']>>>;
38463869
contextConfiguration?: Maybe<Scalars['Map']>;
3870+
domains?: Maybe<Array<Maybe<Scalars['String']>>>;
38473871
git?: Maybe<GitConfiguration>;
38483872
workspace?: Maybe<ShellWorkspace>;
38493873
};
@@ -3905,6 +3929,7 @@ export type Stack = {
39053929
id: Scalars['ID'];
39063930
insertedAt?: Maybe<Scalars['DateTime']>;
39073931
name: Scalars['String'];
3932+
sections?: Maybe<Array<Maybe<RecipeSection>>>;
39083933
updatedAt?: Maybe<Scalars['DateTime']>;
39093934
};
39103935

0 commit comments

Comments
 (0)