@code0-tech/sagittarius-graphql-types 0.0.0-968478cecf351385c6c13c2be8aeae5c45da026c → 0.0.0-a395eea54741fc1bb9649341ff6f082cc1c3e67e
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +84 -228
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -105,8 +105,16 @@ export interface ApplicationSettingsUpdateInput {
|
|
|
105
105
|
adminStatusVisible?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106
106
|
/** A unique identifier for the client performing the mutation. */
|
|
107
107
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
108
|
+
/** Set the list of configured identity providers. */
|
|
109
|
+
identityProviders?: InputMaybe<Array<IdentityProviderInput>>;
|
|
110
|
+
/** Set the URL to the legal notice page. */
|
|
111
|
+
legalNoticeUrl?: InputMaybe<Scalars['String']['input']>;
|
|
108
112
|
/** Set if organization creation is restricted to administrators. */
|
|
109
113
|
organizationCreationRestricted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
114
|
+
/** Set the URL to the privacy policy page. */
|
|
115
|
+
privacyUrl?: InputMaybe<Scalars['String']['input']>;
|
|
116
|
+
/** Set the URL to the terms and conditions page. */
|
|
117
|
+
termsAndConditionsUrl?: InputMaybe<Scalars['String']['input']>;
|
|
110
118
|
/** Set if user registration is enabled. */
|
|
111
119
|
userRegistrationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
112
120
|
}
|
|
@@ -146,11 +154,11 @@ export type Authentication = UserSession;
|
|
|
146
154
|
export interface DataType {
|
|
147
155
|
__typename?: 'DataType';
|
|
148
156
|
/** Name of the function */
|
|
149
|
-
aliases?: Maybe<
|
|
157
|
+
aliases?: Maybe<Array<Translation>>;
|
|
150
158
|
/** Time when this DataType was created */
|
|
151
159
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
152
160
|
/** Display message of the function */
|
|
153
|
-
displayMessages?: Maybe<
|
|
161
|
+
displayMessages?: Maybe<Array<Translation>>;
|
|
154
162
|
/** Generic keys of the datatype */
|
|
155
163
|
genericKeys?: Maybe<Array<Scalars['String']['output']>>;
|
|
156
164
|
/** Global ID of this DataType */
|
|
@@ -158,7 +166,7 @@ export interface DataType {
|
|
|
158
166
|
/** The identifier scoped to the namespace */
|
|
159
167
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
160
168
|
/** Names of the flow type setting */
|
|
161
|
-
name?: Maybe<
|
|
169
|
+
name?: Maybe<Array<Translation>>;
|
|
162
170
|
/** Rules of the datatype */
|
|
163
171
|
rules?: Maybe<DataTypeRuleConnection>;
|
|
164
172
|
/** The runtime where this datatype belongs to */
|
|
@@ -170,33 +178,6 @@ export interface DataType {
|
|
|
170
178
|
}
|
|
171
179
|
|
|
172
180
|
|
|
173
|
-
/** Represents a DataType */
|
|
174
|
-
export interface DataTypeAliasesArgs {
|
|
175
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
176
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
177
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
178
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
/** Represents a DataType */
|
|
183
|
-
export interface DataTypeDisplayMessagesArgs {
|
|
184
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
185
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
186
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
187
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
/** Represents a DataType */
|
|
192
|
-
export interface DataTypeNameArgs {
|
|
193
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
194
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
195
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
196
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
|
|
200
181
|
/** Represents a DataType */
|
|
201
182
|
export interface DataTypeRulesArgs {
|
|
202
183
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -613,6 +594,8 @@ export interface Flow {
|
|
|
613
594
|
name?: Maybe<Scalars['String']['output']>;
|
|
614
595
|
/** Nodes of the flow */
|
|
615
596
|
nodes?: Maybe<NodeFunctionConnection>;
|
|
597
|
+
/** The project the flow belongs to */
|
|
598
|
+
project?: Maybe<NamespaceProject>;
|
|
616
599
|
/** The return data type of the flow */
|
|
617
600
|
returnType?: Maybe<DataType>;
|
|
618
601
|
/** The settings of the flow */
|
|
@@ -730,13 +713,13 @@ export interface FlowSettingInput {
|
|
|
730
713
|
export interface FlowType {
|
|
731
714
|
__typename?: 'FlowType';
|
|
732
715
|
/** Name of the function */
|
|
733
|
-
aliases?: Maybe<
|
|
716
|
+
aliases?: Maybe<Array<Translation>>;
|
|
734
717
|
/** Time when this FlowType was created */
|
|
735
718
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
736
719
|
/** Descriptions of the flow type */
|
|
737
|
-
descriptions?: Maybe<
|
|
720
|
+
descriptions?: Maybe<Array<Translation>>;
|
|
738
721
|
/** Display message of the function */
|
|
739
|
-
displayMessages?: Maybe<
|
|
722
|
+
displayMessages?: Maybe<Array<Translation>>;
|
|
740
723
|
/** Editable status of the flow type */
|
|
741
724
|
editable?: Maybe<Scalars['Boolean']['output']>;
|
|
742
725
|
/** Flow type settings of the flow type */
|
|
@@ -748,49 +731,15 @@ export interface FlowType {
|
|
|
748
731
|
/** Input type of the flow type */
|
|
749
732
|
inputType?: Maybe<DataType>;
|
|
750
733
|
/** Names of the flow type */
|
|
751
|
-
names?: Maybe<
|
|
734
|
+
names?: Maybe<Array<Translation>>;
|
|
752
735
|
/** Return type of the flow type */
|
|
753
736
|
returnType?: Maybe<DataType>;
|
|
737
|
+
/** Runtime of the flow type */
|
|
738
|
+
runtime?: Maybe<Runtime>;
|
|
754
739
|
/** Time when this FlowType was last updated */
|
|
755
740
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
756
741
|
}
|
|
757
742
|
|
|
758
|
-
|
|
759
|
-
/** Represents a flow type */
|
|
760
|
-
export interface FlowTypeAliasesArgs {
|
|
761
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
762
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
763
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
764
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
765
|
-
}
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
/** Represents a flow type */
|
|
769
|
-
export interface FlowTypeDescriptionsArgs {
|
|
770
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
771
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
772
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
773
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
/** Represents a flow type */
|
|
778
|
-
export interface FlowTypeDisplayMessagesArgs {
|
|
779
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
780
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
781
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
782
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
783
|
-
}
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
/** Represents a flow type */
|
|
787
|
-
export interface FlowTypeNamesArgs {
|
|
788
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
789
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
790
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
791
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
792
|
-
}
|
|
793
|
-
|
|
794
743
|
/** The connection type for FlowType. */
|
|
795
744
|
export interface FlowTypeConnection {
|
|
796
745
|
__typename?: 'FlowTypeConnection';
|
|
@@ -821,7 +770,7 @@ export interface FlowTypeSetting {
|
|
|
821
770
|
/** Data type of the flow type setting */
|
|
822
771
|
dataType?: Maybe<DataType>;
|
|
823
772
|
/** Descriptions of the flow type setting */
|
|
824
|
-
descriptions?: Maybe<
|
|
773
|
+
descriptions?: Maybe<Array<Translation>>;
|
|
825
774
|
/** Flow type of the flow type setting */
|
|
826
775
|
flowType?: Maybe<FlowType>;
|
|
827
776
|
/** Global ID of this FlowTypeSetting */
|
|
@@ -829,31 +778,13 @@ export interface FlowTypeSetting {
|
|
|
829
778
|
/** Identifier of the flow type setting */
|
|
830
779
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
831
780
|
/** Names of the flow type setting */
|
|
832
|
-
names?: Maybe<
|
|
781
|
+
names?: Maybe<Array<Translation>>;
|
|
833
782
|
/** Unique status of the flow type setting */
|
|
834
783
|
unique?: Maybe<Scalars['Boolean']['output']>;
|
|
835
784
|
/** Time when this FlowTypeSetting was last updated */
|
|
836
785
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
837
786
|
}
|
|
838
787
|
|
|
839
|
-
|
|
840
|
-
/** Represents a flow type setting */
|
|
841
|
-
export interface FlowTypeSettingDescriptionsArgs {
|
|
842
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
843
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
844
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
845
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
846
|
-
}
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
/** Represents a flow type setting */
|
|
850
|
-
export interface FlowTypeSettingNamesArgs {
|
|
851
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
852
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
853
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
854
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
855
|
-
}
|
|
856
|
-
|
|
857
788
|
/** Abilities for the current user on this Flow */
|
|
858
789
|
export interface FlowUserAbilities {
|
|
859
790
|
__typename?: 'FlowUserAbilities';
|
|
@@ -908,17 +839,17 @@ export const enum FlowValidationSeverityEnum {
|
|
|
908
839
|
export interface FunctionDefinition {
|
|
909
840
|
__typename?: 'FunctionDefinition';
|
|
910
841
|
/** Name of the function */
|
|
911
|
-
aliases?: Maybe<
|
|
842
|
+
aliases?: Maybe<Array<Translation>>;
|
|
912
843
|
/** Time when this FunctionDefinition was created */
|
|
913
844
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
914
845
|
/** Deprecation message of the function */
|
|
915
|
-
deprecationMessages?: Maybe<
|
|
846
|
+
deprecationMessages?: Maybe<Array<Translation>>;
|
|
916
847
|
/** Description of the function */
|
|
917
|
-
descriptions?: Maybe<
|
|
848
|
+
descriptions?: Maybe<Array<Translation>>;
|
|
918
849
|
/** Display message of the function */
|
|
919
|
-
displayMessages?: Maybe<
|
|
850
|
+
displayMessages?: Maybe<Array<Translation>>;
|
|
920
851
|
/** Documentation of the function */
|
|
921
|
-
documentations?: Maybe<
|
|
852
|
+
documentations?: Maybe<Array<Translation>>;
|
|
922
853
|
/** Generic keys of the function */
|
|
923
854
|
genericKeys?: Maybe<Array<Scalars['String']['output']>>;
|
|
924
855
|
/** Global ID of this FunctionDefinition */
|
|
@@ -926,7 +857,7 @@ export interface FunctionDefinition {
|
|
|
926
857
|
/** Identifier of the function */
|
|
927
858
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
928
859
|
/** Name of the function */
|
|
929
|
-
names?: Maybe<
|
|
860
|
+
names?: Maybe<Array<Translation>>;
|
|
930
861
|
/** Parameters of the function */
|
|
931
862
|
parameterDefinitions?: Maybe<ParameterDefinitionConnection>;
|
|
932
863
|
/** Return type of the function */
|
|
@@ -940,60 +871,6 @@ export interface FunctionDefinition {
|
|
|
940
871
|
}
|
|
941
872
|
|
|
942
873
|
|
|
943
|
-
/** Represents a function definition */
|
|
944
|
-
export interface FunctionDefinitionAliasesArgs {
|
|
945
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
946
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
947
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
948
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
949
|
-
}
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
/** Represents a function definition */
|
|
953
|
-
export interface FunctionDefinitionDeprecationMessagesArgs {
|
|
954
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
955
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
956
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
957
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
958
|
-
}
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
/** Represents a function definition */
|
|
962
|
-
export interface FunctionDefinitionDescriptionsArgs {
|
|
963
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
964
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
965
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
966
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
967
|
-
}
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
/** Represents a function definition */
|
|
971
|
-
export interface FunctionDefinitionDisplayMessagesArgs {
|
|
972
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
973
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
974
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
975
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
976
|
-
}
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
/** Represents a function definition */
|
|
980
|
-
export interface FunctionDefinitionDocumentationsArgs {
|
|
981
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
982
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
983
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
984
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
985
|
-
}
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
/** Represents a function definition */
|
|
989
|
-
export interface FunctionDefinitionNamesArgs {
|
|
990
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
991
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
992
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
993
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
994
|
-
}
|
|
995
|
-
|
|
996
|
-
|
|
997
874
|
/** Represents a function definition */
|
|
998
875
|
export interface FunctionDefinitionParameterDefinitionsArgs {
|
|
999
876
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1115,6 +992,30 @@ export interface IdentityProvider {
|
|
|
1115
992
|
/** Represents the configuration of an identity provider. */
|
|
1116
993
|
export type IdentityProviderConfig = OidcIdentityProviderConfig | SamlIdentityProviderConfig;
|
|
1117
994
|
|
|
995
|
+
/** Input for identity provider configuration. Contains fields for both OIDC and SAML. */
|
|
996
|
+
export interface IdentityProviderConfigInput {
|
|
997
|
+
/** List of attribute statements for the identity provider */
|
|
998
|
+
attributeStatements?: InputMaybe<Scalars['JSON']['input']>;
|
|
999
|
+
/** The authorization URL for the OIDC identity provider */
|
|
1000
|
+
authorizationUrl?: InputMaybe<Scalars['String']['input']>;
|
|
1001
|
+
/** The client ID for the OIDC identity provider */
|
|
1002
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
1003
|
+
/** The client secret for the OIDC identity provider */
|
|
1004
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
1005
|
+
/** Optional metadata URL to fetch metadata (alternative to settings) */
|
|
1006
|
+
metadataUrl?: InputMaybe<Scalars['String']['input']>;
|
|
1007
|
+
/** The name of the identity provider */
|
|
1008
|
+
providerName?: InputMaybe<Scalars['String']['input']>;
|
|
1009
|
+
/** The redirect URI for the OIDC identity provider */
|
|
1010
|
+
redirectUri?: InputMaybe<Scalars['String']['input']>;
|
|
1011
|
+
/** The SAML response settings for the identity provider */
|
|
1012
|
+
responseSettings?: InputMaybe<Scalars['JSON']['input']>;
|
|
1013
|
+
/** The SAML settings for the identity provider */
|
|
1014
|
+
settings?: InputMaybe<Scalars['JSON']['input']>;
|
|
1015
|
+
/** The user details URL for the OIDC identity provider */
|
|
1016
|
+
userDetailsUrl?: InputMaybe<Scalars['String']['input']>;
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1118
1019
|
/** The connection type for IdentityProvider. */
|
|
1119
1020
|
export interface IdentityProviderConnection {
|
|
1120
1021
|
__typename?: 'IdentityProviderConnection';
|
|
@@ -1137,12 +1038,24 @@ export interface IdentityProviderEdge {
|
|
|
1137
1038
|
node?: Maybe<IdentityProvider>;
|
|
1138
1039
|
}
|
|
1139
1040
|
|
|
1041
|
+
/** Input for creating or updating an identity provider */
|
|
1042
|
+
export interface IdentityProviderInput {
|
|
1043
|
+
/** Configuration for the identity provider */
|
|
1044
|
+
config: IdentityProviderConfigInput;
|
|
1045
|
+
/** Unique identifier of the identity provider */
|
|
1046
|
+
id: Scalars['String']['input'];
|
|
1047
|
+
/** Type of the identity provider */
|
|
1048
|
+
type: IdentityProviderType;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1140
1051
|
/** The available identity provider types. */
|
|
1141
1052
|
export const enum IdentityProviderType {
|
|
1142
1053
|
/** Identity provider of type discord */
|
|
1143
1054
|
Discord = 'DISCORD',
|
|
1144
1055
|
/** Identity provider of type github */
|
|
1145
1056
|
Github = 'GITHUB',
|
|
1057
|
+
/** Identity provider of type gitlab */
|
|
1058
|
+
Gitlab = 'GITLAB',
|
|
1146
1059
|
/** Identity provider of type google */
|
|
1147
1060
|
Google = 'GOOGLE',
|
|
1148
1061
|
/** Identity provider of type microsoft */
|
|
@@ -1569,6 +1482,8 @@ export interface Namespace {
|
|
|
1569
1482
|
namespaceLicenses?: Maybe<NamespaceLicenseConnection>;
|
|
1570
1483
|
/** Parent of this namespace */
|
|
1571
1484
|
parent?: Maybe<NamespaceParent>;
|
|
1485
|
+
/** Query a project by its id */
|
|
1486
|
+
project?: Maybe<NamespaceProject>;
|
|
1572
1487
|
/** Projects of the namespace */
|
|
1573
1488
|
projects?: Maybe<NamespaceProjectConnection>;
|
|
1574
1489
|
/** Roles of the namespace */
|
|
@@ -1600,6 +1515,12 @@ export interface NamespaceNamespaceLicensesArgs {
|
|
|
1600
1515
|
}
|
|
1601
1516
|
|
|
1602
1517
|
|
|
1518
|
+
/** Represents a Namespace */
|
|
1519
|
+
export interface NamespaceProjectArgs {
|
|
1520
|
+
id: Scalars['NamespaceProjectID']['input'];
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
|
+
|
|
1603
1524
|
/** Represents a Namespace */
|
|
1604
1525
|
export interface NamespaceProjectsArgs {
|
|
1605
1526
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1809,6 +1730,8 @@ export interface NamespaceProject {
|
|
|
1809
1730
|
roles?: Maybe<NamespaceRoleConnection>;
|
|
1810
1731
|
/** Runtimes assigned to this project */
|
|
1811
1732
|
runtimes?: Maybe<RuntimeConnection>;
|
|
1733
|
+
/** Slug of the project used in URLs to identify flows */
|
|
1734
|
+
slug?: Maybe<Scalars['String']['output']>;
|
|
1812
1735
|
/** Time when this NamespaceProject was last updated */
|
|
1813
1736
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
1814
1737
|
/** Abilities for the current user on this NamespaceProject */
|
|
@@ -2162,6 +2085,8 @@ export interface NamespacesProjectsCreateInput {
|
|
|
2162
2085
|
name: Scalars['String']['input'];
|
|
2163
2086
|
/** The id of the namespace which this project will belong to */
|
|
2164
2087
|
namespaceId: Scalars['NamespaceID']['input'];
|
|
2088
|
+
/** Slug for the new project. */
|
|
2089
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
2165
2090
|
}
|
|
2166
2091
|
|
|
2167
2092
|
/** Autogenerated return type of NamespacesProjectsCreate. */
|
|
@@ -2267,6 +2192,8 @@ export interface NamespacesProjectsUpdateInput {
|
|
|
2267
2192
|
namespaceProjectId: Scalars['NamespaceProjectID']['input'];
|
|
2268
2193
|
/** The primary runtime for the updated project. */
|
|
2269
2194
|
primaryRuntimeId?: InputMaybe<Scalars['RuntimeID']['input']>;
|
|
2195
|
+
/** Slug for the updated project. */
|
|
2196
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
2270
2197
|
}
|
|
2271
2198
|
|
|
2272
2199
|
/** Autogenerated return type of NamespacesProjectsUpdate. */
|
|
@@ -2661,46 +2588,19 @@ export interface ParameterDefinition {
|
|
|
2661
2588
|
/** Data type of the parameter */
|
|
2662
2589
|
dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
|
|
2663
2590
|
/** Description of the parameter */
|
|
2664
|
-
descriptions?: Maybe<
|
|
2591
|
+
descriptions?: Maybe<Array<Translation>>;
|
|
2665
2592
|
/** Documentation of the parameter */
|
|
2666
|
-
documentations?: Maybe<
|
|
2593
|
+
documentations?: Maybe<Array<Translation>>;
|
|
2667
2594
|
/** Global ID of this ParameterDefinition */
|
|
2668
2595
|
id?: Maybe<Scalars['ParameterDefinitionID']['output']>;
|
|
2669
2596
|
/** Identifier of the parameter */
|
|
2670
2597
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
2671
2598
|
/** Name of the parameter */
|
|
2672
|
-
names?: Maybe<
|
|
2599
|
+
names?: Maybe<Array<Translation>>;
|
|
2673
2600
|
/** Time when this ParameterDefinition was last updated */
|
|
2674
2601
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
2675
2602
|
}
|
|
2676
2603
|
|
|
2677
|
-
|
|
2678
|
-
/** Represents a parameter definition */
|
|
2679
|
-
export interface ParameterDefinitionDescriptionsArgs {
|
|
2680
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
2681
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
2682
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2683
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2684
|
-
}
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
/** Represents a parameter definition */
|
|
2688
|
-
export interface ParameterDefinitionDocumentationsArgs {
|
|
2689
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
2690
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
2691
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2692
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2693
|
-
}
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
/** Represents a parameter definition */
|
|
2697
|
-
export interface ParameterDefinitionNamesArgs {
|
|
2698
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
2699
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
2700
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2701
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2702
|
-
}
|
|
2703
|
-
|
|
2704
2604
|
/** The connection type for ParameterDefinition. */
|
|
2705
2605
|
export interface ParameterDefinitionConnection {
|
|
2706
2606
|
__typename?: 'ParameterDefinitionConnection';
|
|
@@ -2890,6 +2790,8 @@ export interface Runtime {
|
|
|
2890
2790
|
description?: Maybe<Scalars['String']['output']>;
|
|
2891
2791
|
/** FlowTypes of the runtime */
|
|
2892
2792
|
flowTypes?: Maybe<FlowTypeConnection>;
|
|
2793
|
+
/** Function definitions of the runtime */
|
|
2794
|
+
functionDefinitions?: Maybe<FunctionDefinitionConnection>;
|
|
2893
2795
|
/** Global ID of this Runtime */
|
|
2894
2796
|
id?: Maybe<Scalars['RuntimeID']['output']>;
|
|
2895
2797
|
/** The name for the runtime */
|
|
@@ -2898,8 +2800,6 @@ export interface Runtime {
|
|
|
2898
2800
|
namespace?: Maybe<Namespace>;
|
|
2899
2801
|
/** Projects associated with the runtime */
|
|
2900
2802
|
projects?: Maybe<NamespaceProjectConnection>;
|
|
2901
|
-
/** Functions of the runtime */
|
|
2902
|
-
runtimeFunctionDefinitions?: Maybe<RuntimeFunctionDefinitionConnection>;
|
|
2903
2803
|
/** The status of the runtime */
|
|
2904
2804
|
status?: Maybe<RuntimeStatusType>;
|
|
2905
2805
|
/** Token belonging to the runtime, only present on creation */
|
|
@@ -2930,7 +2830,7 @@ export interface RuntimeFlowTypesArgs {
|
|
|
2930
2830
|
|
|
2931
2831
|
|
|
2932
2832
|
/** Represents a runtime */
|
|
2933
|
-
export interface
|
|
2833
|
+
export interface RuntimeFunctionDefinitionsArgs {
|
|
2934
2834
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
2935
2835
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
2936
2836
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -2939,7 +2839,7 @@ export interface RuntimeProjectsArgs {
|
|
|
2939
2839
|
|
|
2940
2840
|
|
|
2941
2841
|
/** Represents a runtime */
|
|
2942
|
-
export interface
|
|
2842
|
+
export interface RuntimeProjectsArgs {
|
|
2943
2843
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
2944
2844
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
2945
2845
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -3005,28 +2905,6 @@ export interface RuntimeFunctionDefinitionRuntimeParameterDefinitionsArgs {
|
|
|
3005
2905
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3006
2906
|
}
|
|
3007
2907
|
|
|
3008
|
-
/** The connection type for RuntimeFunctionDefinition. */
|
|
3009
|
-
export interface RuntimeFunctionDefinitionConnection {
|
|
3010
|
-
__typename?: 'RuntimeFunctionDefinitionConnection';
|
|
3011
|
-
/** Total count of collection. */
|
|
3012
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
3013
|
-
/** A list of edges. */
|
|
3014
|
-
edges?: Maybe<Array<Maybe<RuntimeFunctionDefinitionEdge>>>;
|
|
3015
|
-
/** A list of nodes. */
|
|
3016
|
-
nodes?: Maybe<Array<Maybe<RuntimeFunctionDefinition>>>;
|
|
3017
|
-
/** Information to aid in pagination. */
|
|
3018
|
-
pageInfo?: Maybe<PageInfo>;
|
|
3019
|
-
}
|
|
3020
|
-
|
|
3021
|
-
/** An edge in a connection. */
|
|
3022
|
-
export interface RuntimeFunctionDefinitionEdge {
|
|
3023
|
-
__typename?: 'RuntimeFunctionDefinitionEdge';
|
|
3024
|
-
/** A cursor for use in pagination. */
|
|
3025
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
3026
|
-
/** The item at the end of the edge. */
|
|
3027
|
-
node?: Maybe<RuntimeFunctionDefinition>;
|
|
3028
|
-
}
|
|
3029
|
-
|
|
3030
2908
|
/** Represents a runtime parameter definition */
|
|
3031
2909
|
export interface RuntimeParameterDefinition {
|
|
3032
2910
|
__typename?: 'RuntimeParameterDefinition';
|
|
@@ -3189,28 +3067,6 @@ export interface Translation {
|
|
|
3189
3067
|
content?: Maybe<Scalars['String']['output']>;
|
|
3190
3068
|
}
|
|
3191
3069
|
|
|
3192
|
-
/** The connection type for Translation. */
|
|
3193
|
-
export interface TranslationConnection {
|
|
3194
|
-
__typename?: 'TranslationConnection';
|
|
3195
|
-
/** Total count of collection. */
|
|
3196
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
3197
|
-
/** A list of edges. */
|
|
3198
|
-
edges?: Maybe<Array<Maybe<TranslationEdge>>>;
|
|
3199
|
-
/** A list of nodes. */
|
|
3200
|
-
nodes?: Maybe<Array<Maybe<Translation>>>;
|
|
3201
|
-
/** Information to aid in pagination. */
|
|
3202
|
-
pageInfo?: Maybe<PageInfo>;
|
|
3203
|
-
}
|
|
3204
|
-
|
|
3205
|
-
/** An edge in a connection. */
|
|
3206
|
-
export interface TranslationEdge {
|
|
3207
|
-
__typename?: 'TranslationEdge';
|
|
3208
|
-
/** A cursor for use in pagination. */
|
|
3209
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
3210
|
-
/** The item at the end of the edge. */
|
|
3211
|
-
node?: Maybe<Translation>;
|
|
3212
|
-
}
|
|
3213
|
-
|
|
3214
3070
|
/** Represents a user */
|
|
3215
3071
|
export interface User {
|
|
3216
3072
|
__typename?: 'User';
|
package/package.json
CHANGED