@code0-tech/sagittarius-graphql-types 0.0.0-ca5a2e89e8ecc3f5f20bf795a7da11d37e15e88e → 0.0.0-d5637a7e1c1307a9c89dd85bec0f473486debd23

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.
Files changed (2) hide show
  1. package/index.d.ts +259 -23
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -57,27 +57,64 @@ export interface ActiveModelError {
57
57
  /** Represents the application instance */
58
58
  export interface Application {
59
59
  __typename?: 'Application';
60
+ /** URL to the legal notice page */
61
+ legalNoticeUrl?: Maybe<Scalars['String']['output']>;
60
62
  /** Metadata about the application */
61
63
  metadata?: Maybe<Metadata>;
64
+ /** URL to the privacy policy page */
65
+ privacyUrl?: Maybe<Scalars['String']['output']>;
62
66
  /** Global application settings */
63
67
  settings?: Maybe<ApplicationSettings>;
68
+ /** URL to the terms and conditions page */
69
+ termsAndConditionsUrl?: Maybe<Scalars['String']['output']>;
70
+ /** Abilities for the current user on this Application */
71
+ userAbilities?: Maybe<ApplicationUserAbilities>;
64
72
  }
65
73
 
66
74
  /** Represents the application settings */
67
75
  export interface ApplicationSettings {
68
76
  __typename?: 'ApplicationSettings';
77
+ /** Shows if admin status can be queried by non-administrators */
78
+ adminStatusVisible?: Maybe<Scalars['Boolean']['output']>;
79
+ /** List of configured identity providers */
80
+ identityProviders?: Maybe<IdentityProviderConnection>;
81
+ /** URL to the legal notice page */
82
+ legalNoticeUrl?: Maybe<Scalars['String']['output']>;
69
83
  /** Shows if organization creation is restricted to administrators */
70
84
  organizationCreationRestricted?: Maybe<Scalars['Boolean']['output']>;
85
+ /** URL to the privacy policy page */
86
+ privacyUrl?: Maybe<Scalars['String']['output']>;
87
+ /** URL to the terms and conditions page */
88
+ termsAndConditionsUrl?: Maybe<Scalars['String']['output']>;
71
89
  /** Shows if user registration is enabled */
72
90
  userRegistrationEnabled?: Maybe<Scalars['Boolean']['output']>;
73
91
  }
74
92
 
93
+
94
+ /** Represents the application settings */
95
+ export interface ApplicationSettingsIdentityProvidersArgs {
96
+ after?: InputMaybe<Scalars['String']['input']>;
97
+ before?: InputMaybe<Scalars['String']['input']>;
98
+ first?: InputMaybe<Scalars['Int']['input']>;
99
+ last?: InputMaybe<Scalars['Int']['input']>;
100
+ }
101
+
75
102
  /** Autogenerated input type of ApplicationSettingsUpdate */
76
103
  export interface ApplicationSettingsUpdateInput {
104
+ /** Set if admin status can be queried by non-administrators. */
105
+ adminStatusVisible?: InputMaybe<Scalars['Boolean']['input']>;
77
106
  /** A unique identifier for the client performing the mutation. */
78
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']>;
79
112
  /** Set if organization creation is restricted to administrators. */
80
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']>;
81
118
  /** Set if user registration is enabled. */
82
119
  userRegistrationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
83
120
  }
@@ -93,6 +130,23 @@ export interface ApplicationSettingsUpdatePayload {
93
130
  errors?: Maybe<Array<Error>>;
94
131
  }
95
132
 
133
+ /** Abilities for the current user on this Application */
134
+ export interface ApplicationUserAbilities {
135
+ __typename?: 'ApplicationUserAbilities';
136
+ /** Shows if the current user has the `create_organization` ability on this Application */
137
+ createOrganization?: Maybe<Scalars['Boolean']['output']>;
138
+ /** Shows if the current user has the `create_runtime` ability on this Application */
139
+ createRuntime?: Maybe<Scalars['Boolean']['output']>;
140
+ /** Shows if the current user has the `delete_runtime` ability on this Application */
141
+ deleteRuntime?: Maybe<Scalars['Boolean']['output']>;
142
+ /** Shows if the current user has the `rotate_runtime_token` ability on this Application */
143
+ rotateRuntimeToken?: Maybe<Scalars['Boolean']['output']>;
144
+ /** Shows if the current user has the `update_application_setting` ability on this Application */
145
+ updateApplicationSetting?: Maybe<Scalars['Boolean']['output']>;
146
+ /** Shows if the current user has the `update_runtime` ability on this Application */
147
+ updateRuntime?: Maybe<Scalars['Boolean']['output']>;
148
+ }
149
+
96
150
  /** Objects that can present an authentication */
97
151
  export type Authentication = UserSession;
98
152
 
@@ -420,6 +474,8 @@ export const enum ErrorCodeEnum {
420
474
  FlowTypeNotFound = 'FLOW_TYPE_NOT_FOUND',
421
475
  /** The flow validation has failed */
422
476
  FlowValidationFailed = 'FLOW_VALIDATION_FAILED',
477
+ /** The id for the function value node does not exist */
478
+ FunctionValueNotFound = 'FUNCTION_VALUE_NOT_FOUND',
423
479
  /** The given key was not found in the data type */
424
480
  GenericKeyNotFound = 'GENERIC_KEY_NOT_FOUND',
425
481
  /** The external identity with the given identifier was not found */
@@ -452,6 +508,10 @@ export const enum ErrorCodeEnum {
452
508
  InvalidNamespaceProject = 'INVALID_NAMESPACE_PROJECT',
453
509
  /** The namespace role is invalid because of active model errors */
454
510
  InvalidNamespaceRole = 'INVALID_NAMESPACE_ROLE',
511
+ /** The node function is invalid */
512
+ InvalidNodeFunction = 'INVALID_NODE_FUNCTION',
513
+ /** The node parameter is invalid */
514
+ InvalidNodeParameter = 'INVALID_NODE_PARAMETER',
455
515
  /** The organization is invalid because of active model errors */
456
516
  InvalidOrganization = 'INVALID_ORGANIZATION',
457
517
  /** The provided password repeat does not match the password */
@@ -504,6 +564,8 @@ export const enum ErrorCodeEnum {
504
564
  NamespaceProjectNotFound = 'NAMESPACE_PROJECT_NOT_FOUND',
505
565
  /** The namespace role with the given identifier was not found */
506
566
  NamespaceRoleNotFound = 'NAMESPACE_ROLE_NOT_FOUND',
567
+ /** The node with this id does not exist */
568
+ NodeNotFound = 'NODE_NOT_FOUND',
507
569
  /** No data type identifier could be found for the given generic key */
508
570
  NoDatatypeIdentifierForGenericKey = 'NO_DATATYPE_IDENTIFIER_FOR_GENERIC_KEY',
509
571
  /** No data type could be found for the given identifier */
@@ -697,6 +759,8 @@ export interface FlowType {
697
759
  names?: Maybe<TranslationConnection>;
698
760
  /** Return type of the flow type */
699
761
  returnType?: Maybe<DataType>;
762
+ /** Runtime of the flow type */
763
+ runtime?: Maybe<Runtime>;
700
764
  /** Time when this FlowType was last updated */
701
765
  updatedAt?: Maybe<Scalars['Time']['output']>;
702
766
  }
@@ -1047,21 +1111,90 @@ export interface IdentityInput {
1047
1111
  code?: InputMaybe<Scalars['String']['input']>;
1048
1112
  }
1049
1113
 
1050
- /** Abilities for the current user on this Instance */
1051
- export interface InstanceUserAbilities {
1052
- __typename?: 'InstanceUserAbilities';
1053
- /** Shows if the current user has the `create_organization` ability on this Instance */
1054
- createOrganization?: Maybe<Scalars['Boolean']['output']>;
1055
- /** Shows if the current user has the `create_runtime` ability on this Instance */
1056
- createRuntime?: Maybe<Scalars['Boolean']['output']>;
1057
- /** Shows if the current user has the `delete_runtime` ability on this Instance */
1058
- deleteRuntime?: Maybe<Scalars['Boolean']['output']>;
1059
- /** Shows if the current user has the `rotate_runtime_token` ability on this Instance */
1060
- rotateRuntimeToken?: Maybe<Scalars['Boolean']['output']>;
1061
- /** Shows if the current user has the `update_application_setting` ability on this Instance */
1062
- updateApplicationSetting?: Maybe<Scalars['Boolean']['output']>;
1063
- /** Shows if the current user has the `update_runtime` ability on this Instance */
1064
- updateRuntime?: Maybe<Scalars['Boolean']['output']>;
1114
+ /** Represents an identity provider configuration. */
1115
+ export interface IdentityProvider {
1116
+ __typename?: 'IdentityProvider';
1117
+ /** Configuration details of the identity provider. */
1118
+ config?: Maybe<IdentityProviderConfig>;
1119
+ /** Unique identifier of the identity provider. */
1120
+ id?: Maybe<Scalars['String']['output']>;
1121
+ /** Type of the identity provider. */
1122
+ type?: Maybe<IdentityProviderType>;
1123
+ }
1124
+
1125
+ /** Represents the configuration of an identity provider. */
1126
+ export type IdentityProviderConfig = OidcIdentityProviderConfig | SamlIdentityProviderConfig;
1127
+
1128
+ /** Input for identity provider configuration. Contains fields for both OIDC and SAML. */
1129
+ export interface IdentityProviderConfigInput {
1130
+ /** List of attribute statements for the identity provider */
1131
+ attributeStatements?: InputMaybe<Scalars['JSON']['input']>;
1132
+ /** The authorization URL for the OIDC identity provider */
1133
+ authorizationUrl?: InputMaybe<Scalars['String']['input']>;
1134
+ /** The client ID for the OIDC identity provider */
1135
+ clientId?: InputMaybe<Scalars['String']['input']>;
1136
+ /** The client secret for the OIDC identity provider */
1137
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
1138
+ /** Optional metadata URL to fetch metadata (alternative to settings) */
1139
+ metadataUrl?: InputMaybe<Scalars['String']['input']>;
1140
+ /** The name of the identity provider */
1141
+ providerName?: InputMaybe<Scalars['String']['input']>;
1142
+ /** The redirect URI for the OIDC identity provider */
1143
+ redirectUri?: InputMaybe<Scalars['String']['input']>;
1144
+ /** The SAML response settings for the identity provider */
1145
+ responseSettings?: InputMaybe<Scalars['JSON']['input']>;
1146
+ /** The SAML settings for the identity provider */
1147
+ settings?: InputMaybe<Scalars['JSON']['input']>;
1148
+ /** The user details URL for the OIDC identity provider */
1149
+ userDetailsUrl?: InputMaybe<Scalars['String']['input']>;
1150
+ }
1151
+
1152
+ /** The connection type for IdentityProvider. */
1153
+ export interface IdentityProviderConnection {
1154
+ __typename?: 'IdentityProviderConnection';
1155
+ /** Total count of collection. */
1156
+ count?: Maybe<Scalars['Int']['output']>;
1157
+ /** A list of edges. */
1158
+ edges?: Maybe<Array<Maybe<IdentityProviderEdge>>>;
1159
+ /** A list of nodes. */
1160
+ nodes?: Maybe<Array<Maybe<IdentityProvider>>>;
1161
+ /** Information to aid in pagination. */
1162
+ pageInfo?: Maybe<PageInfo>;
1163
+ }
1164
+
1165
+ /** An edge in a connection. */
1166
+ export interface IdentityProviderEdge {
1167
+ __typename?: 'IdentityProviderEdge';
1168
+ /** A cursor for use in pagination. */
1169
+ cursor?: Maybe<Scalars['String']['output']>;
1170
+ /** The item at the end of the edge. */
1171
+ node?: Maybe<IdentityProvider>;
1172
+ }
1173
+
1174
+ /** Input for creating or updating an identity provider */
1175
+ export interface IdentityProviderInput {
1176
+ /** Configuration for the identity provider */
1177
+ config: IdentityProviderConfigInput;
1178
+ /** Unique identifier of the identity provider */
1179
+ id: Scalars['String']['input'];
1180
+ /** Type of the identity provider */
1181
+ type: IdentityProviderType;
1182
+ }
1183
+
1184
+ /** The available identity provider types. */
1185
+ export const enum IdentityProviderType {
1186
+ /** Identity provider of type discord */
1187
+ Discord = 'DISCORD',
1188
+ /** Identity provider of type github */
1189
+ Github = 'GITHUB',
1190
+ /** Identity provider of type google */
1191
+ Google = 'GOOGLE',
1192
+ /** Identity provider of type microsoft */
1193
+ Microsoft = 'MICROSOFT',
1194
+ /** Identity provider of type oidc */
1195
+ Oidc = 'OIDC',
1196
+ /** Identity provider of type saml */
1197
+ Saml = 'SAML'
1065
1198
  }
1066
1199
 
1067
1200
  /** Represents a literal value, such as a string or number. */
@@ -1099,6 +1232,17 @@ export interface MfaInput {
1099
1232
  value: Scalars['String']['input'];
1100
1233
  }
1101
1234
 
1235
+ /** Represents the MFA status of a user */
1236
+ export interface MfaStatus {
1237
+ __typename?: 'MfaStatus';
1238
+ /** The number of backup codes remaining for the user. */
1239
+ backupCodesCount?: Maybe<Scalars['Int']['output']>;
1240
+ /** Indicates whether MFA is enabled for the user. */
1241
+ enabled?: Maybe<Scalars['Boolean']['output']>;
1242
+ /** Indicates whether TOTP MFA is enabled for the user. */
1243
+ totpEnabled?: Maybe<Scalars['Boolean']['output']>;
1244
+ }
1245
+
1102
1246
  /** Represent all available types to authenticate with mfa */
1103
1247
  export const enum MfaType {
1104
1248
  /** Single use backup code */
@@ -1140,6 +1284,8 @@ export interface Mutation {
1140
1284
  namespacesProjectsFlowsCreate?: Maybe<NamespacesProjectsFlowsCreatePayload>;
1141
1285
  /** Deletes a namespace project. */
1142
1286
  namespacesProjectsFlowsDelete?: Maybe<NamespacesProjectsFlowsDeletePayload>;
1287
+ /** Update an existing flow. */
1288
+ namespacesProjectsFlowsUpdate?: Maybe<NamespacesProjectsFlowsUpdatePayload>;
1143
1289
  /** Updates a namespace project. */
1144
1290
  namespacesProjectsUpdate?: Maybe<NamespacesProjectsUpdatePayload>;
1145
1291
  /** Update the abilities a role is granted. */
@@ -1273,6 +1419,12 @@ export interface MutationNamespacesProjectsFlowsDeleteArgs {
1273
1419
  }
1274
1420
 
1275
1421
 
1422
+ /** Root Mutation type */
1423
+ export interface MutationNamespacesProjectsFlowsUpdateArgs {
1424
+ input: NamespacesProjectsFlowsUpdateInput;
1425
+ }
1426
+
1427
+
1276
1428
  /** Root Mutation type */
1277
1429
  export interface MutationNamespacesProjectsUpdateArgs {
1278
1430
  input: NamespacesProjectsUpdateInput;
@@ -1461,6 +1613,8 @@ export interface Namespace {
1461
1613
  namespaceLicenses?: Maybe<NamespaceLicenseConnection>;
1462
1614
  /** Parent of this namespace */
1463
1615
  parent?: Maybe<NamespaceParent>;
1616
+ /** Query a project by its id */
1617
+ project?: Maybe<NamespaceProject>;
1464
1618
  /** Projects of the namespace */
1465
1619
  projects?: Maybe<NamespaceProjectConnection>;
1466
1620
  /** Roles of the namespace */
@@ -1492,6 +1646,12 @@ export interface NamespaceNamespaceLicensesArgs {
1492
1646
  }
1493
1647
 
1494
1648
 
1649
+ /** Represents a Namespace */
1650
+ export interface NamespaceProjectArgs {
1651
+ id: Scalars['NamespaceProjectID']['input'];
1652
+ }
1653
+
1654
+
1495
1655
  /** Represents a Namespace */
1496
1656
  export interface NamespaceProjectsArgs {
1497
1657
  after?: InputMaybe<Scalars['String']['input']>;
@@ -1979,8 +2139,8 @@ export interface NamespacesMembersAssignRolesPayload {
1979
2139
  clientMutationId?: Maybe<Scalars['String']['output']>;
1980
2140
  /** Errors encountered during execution of the mutation. */
1981
2141
  errors?: Maybe<Array<Error>>;
1982
- /** The roles the member is now assigned to */
1983
- namespaceMemberRoles?: Maybe<Array<NamespaceMemberRole>>;
2142
+ /** The member which was assigned the roles */
2143
+ member?: Maybe<NamespaceMember>;
1984
2144
  }
1985
2145
 
1986
2146
  /** Autogenerated input type of NamespacesMembersDelete */
@@ -2126,6 +2286,27 @@ export interface NamespacesProjectsFlowsDeletePayload {
2126
2286
  flow?: Maybe<Flow>;
2127
2287
  }
2128
2288
 
2289
+ /** Autogenerated input type of NamespacesProjectsFlowsUpdate */
2290
+ export interface NamespacesProjectsFlowsUpdateInput {
2291
+ /** A unique identifier for the client performing the mutation. */
2292
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2293
+ /** The ID of the flow to update */
2294
+ flowId: Scalars['FlowID']['input'];
2295
+ /** The updated flow */
2296
+ flowInput: FlowInput;
2297
+ }
2298
+
2299
+ /** Autogenerated return type of NamespacesProjectsFlowsUpdate. */
2300
+ export interface NamespacesProjectsFlowsUpdatePayload {
2301
+ __typename?: 'NamespacesProjectsFlowsUpdatePayload';
2302
+ /** A unique identifier for the client performing the mutation. */
2303
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2304
+ /** Errors encountered during execution of the mutation. */
2305
+ errors?: Maybe<Array<Error>>;
2306
+ /** The updated flow. */
2307
+ flow?: Maybe<Flow>;
2308
+ }
2309
+
2129
2310
  /** Autogenerated input type of NamespacesProjectsUpdate */
2130
2311
  export interface NamespacesProjectsUpdateInput {
2131
2312
  /** A unique identifier for the client performing the mutation. */
@@ -2308,6 +2489,13 @@ export interface NodeFunctionEdge {
2308
2489
  node?: Maybe<NodeFunction>;
2309
2490
  }
2310
2491
 
2492
+ /** Represents a Node Function id wrapper. */
2493
+ export interface NodeFunctionIdWrapper {
2494
+ __typename?: 'NodeFunctionIdWrapper';
2495
+ /** Global ID of this NodeFunctionIdWrapper */
2496
+ id?: Maybe<Scalars['NodeFunctionID']['output']>;
2497
+ }
2498
+
2311
2499
  /** Input type for a Node Function */
2312
2500
  export interface NodeFunctionInput {
2313
2501
  /** The identifier of the Node Function used to create/update the flow */
@@ -2366,18 +2554,37 @@ export interface NodeParameterInput {
2366
2554
  }
2367
2555
 
2368
2556
  /** Represents a parameter value for a node. */
2369
- export type NodeParameterValue = LiteralValue | NodeFunction | ReferenceValue;
2557
+ export type NodeParameterValue = LiteralValue | NodeFunctionIdWrapper | ReferenceValue;
2370
2558
 
2371
2559
  /** Input type for parameter value */
2372
2560
  export interface NodeParameterValueInput {
2373
- /** The function value of the parameter */
2374
- functionValue?: InputMaybe<NodeFunctionInput>;
2375
2561
  /** The literal value of the parameter */
2376
2562
  literalValue?: InputMaybe<Scalars['JSON']['input']>;
2563
+ /** The function value of the parameter as an id */
2564
+ nodeFunctionId?: InputMaybe<Scalars['NodeFunctionID']['input']>;
2377
2565
  /** The reference value of the parameter */
2378
2566
  referenceValue?: InputMaybe<ReferenceValueInput>;
2379
2567
  }
2380
2568
 
2569
+ /** Represents an OIDC identity provider configuration */
2570
+ export interface OidcIdentityProviderConfig {
2571
+ __typename?: 'OidcIdentityProviderConfig';
2572
+ /** List of attribute statements for the OIDC identity provider */
2573
+ attributeStatements?: Maybe<Scalars['JSON']['output']>;
2574
+ /** The authorization URL for the OIDC identity provider */
2575
+ authorizationUrl?: Maybe<Scalars['String']['output']>;
2576
+ /** The client ID for the OIDC identity provider */
2577
+ clientId?: Maybe<Scalars['String']['output']>;
2578
+ /** The client secret for the OIDC identity provider */
2579
+ clientSecret?: Maybe<Scalars['String']['output']>;
2580
+ /** The name of the OIDC identity provider */
2581
+ providerName?: Maybe<Scalars['String']['output']>;
2582
+ /** The redirect URI for the OIDC identity provider */
2583
+ redirectUri?: Maybe<Scalars['String']['output']>;
2584
+ /** The user details URL for the OIDC identity provider */
2585
+ userDetailsUrl?: Maybe<Scalars['String']['output']>;
2586
+ }
2587
+
2381
2588
  /** Represents a Organization */
2382
2589
  export interface Organization {
2383
2590
  __typename?: 'Organization';
@@ -2593,8 +2800,6 @@ export interface Query {
2593
2800
  organizations?: Maybe<OrganizationConnection>;
2594
2801
  /** Find a user */
2595
2802
  user?: Maybe<User>;
2596
- /** Abilities for the current user on this Instance */
2597
- userAbilities?: Maybe<InstanceUserAbilities>;
2598
2803
  /** Find users */
2599
2804
  users?: Maybe<UserConnection>;
2600
2805
  }
@@ -2651,7 +2856,8 @@ export interface QueryOrganizationsArgs {
2651
2856
 
2652
2857
  /** Root Query type */
2653
2858
  export interface QueryUserArgs {
2654
- id: Scalars['UserID']['input'];
2859
+ id?: InputMaybe<Scalars['UserID']['input']>;
2860
+ username?: InputMaybe<Scalars['String']['input']>;
2655
2861
  }
2656
2862
 
2657
2863
 
@@ -2736,6 +2942,8 @@ export interface Runtime {
2736
2942
  description?: Maybe<Scalars['String']['output']>;
2737
2943
  /** FlowTypes of the runtime */
2738
2944
  flowTypes?: Maybe<FlowTypeConnection>;
2945
+ /** Function definitions of the runtime */
2946
+ functionDefinitions?: Maybe<FunctionDefinitionConnection>;
2739
2947
  /** Global ID of this Runtime */
2740
2948
  id?: Maybe<Scalars['RuntimeID']['output']>;
2741
2949
  /** The name for the runtime */
@@ -2773,6 +2981,15 @@ export interface RuntimeFlowTypesArgs {
2773
2981
  }
2774
2982
 
2775
2983
 
2984
+ /** Represents a runtime */
2985
+ export interface RuntimeFunctionDefinitionsArgs {
2986
+ after?: InputMaybe<Scalars['String']['input']>;
2987
+ before?: InputMaybe<Scalars['String']['input']>;
2988
+ first?: InputMaybe<Scalars['Int']['input']>;
2989
+ last?: InputMaybe<Scalars['Int']['input']>;
2990
+ }
2991
+
2992
+
2776
2993
  /** Represents a runtime */
2777
2994
  export interface RuntimeProjectsArgs {
2778
2995
  after?: InputMaybe<Scalars['String']['input']>;
@@ -2847,6 +3064,8 @@ export interface RuntimeParameterDefinition {
2847
3064
  createdAt?: Maybe<Scalars['Time']['output']>;
2848
3065
  /** Global ID of this RuntimeParameterDefinition */
2849
3066
  id?: Maybe<Scalars['RuntimeParameterDefinitionID']['output']>;
3067
+ /** Identifier of the runtime parameter definition */
3068
+ identifier?: Maybe<Scalars['String']['output']>;
2850
3069
  /** Time when this RuntimeParameterDefinition was last updated */
2851
3070
  updatedAt?: Maybe<Scalars['Time']['output']>;
2852
3071
  }
@@ -2976,6 +3195,21 @@ export interface RuntimesUpdatePayload {
2976
3195
  runtime?: Maybe<Runtime>;
2977
3196
  }
2978
3197
 
3198
+ /** Represents the configuration for a SAML identity provider. */
3199
+ export interface SamlIdentityProviderConfig {
3200
+ __typename?: 'SamlIdentityProviderConfig';
3201
+ /** List of attribute statements for the SAML identity provider */
3202
+ attributeStatements?: Maybe<Scalars['JSON']['output']>;
3203
+ /** The metadata url to fetch the metadatas (replacement for settings) */
3204
+ metadataUrl?: Maybe<Scalars['String']['output']>;
3205
+ /** The name of the SAML identity provider */
3206
+ providerName?: Maybe<Scalars['String']['output']>;
3207
+ /** The SAML response settings for the identity provider */
3208
+ responseSettings?: Maybe<Scalars['JSON']['output']>;
3209
+ /** The SAML settings for the identity provider */
3210
+ settings?: Maybe<Scalars['JSON']['output']>;
3211
+ }
3212
+
2979
3213
  /** Represents a translation */
2980
3214
  export interface Translation {
2981
3215
  __typename?: 'Translation';
@@ -3028,6 +3262,8 @@ export interface User {
3028
3262
  identities?: Maybe<UserIdentityConnection>;
3029
3263
  /** Lastname of the user */
3030
3264
  lastname?: Maybe<Scalars['String']['output']>;
3265
+ /** Multi-factor authentication status of this user */
3266
+ mfaStatus?: Maybe<MfaStatus>;
3031
3267
  /** Namespace of this user */
3032
3268
  namespace?: Maybe<Namespace>;
3033
3269
  /** Namespace Memberships of this user */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code0-tech/sagittarius-graphql-types",
3
- "version": "0.0.0-ca5a2e89e8ecc3f5f20bf795a7da11d37e15e88e",
3
+ "version": "0.0.0-d5637a7e1c1307a9c89dd85bec0f473486debd23",
4
4
  "description": "",
5
5
  "main": "index.d.ts",
6
6
  "types": "index.d.ts",