@code0-tech/sagittarius-graphql-types 0.0.0-3bdab57d324cfeb2abf2cf60a801039b45de746d → 0.0.0-4274ec7fd0a5bda56f11bb12be1ba5f30a79252d
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 +900 -159
- package/package.json +2 -3
- package/index.js +0 -0
package/index.d.ts
CHANGED
|
@@ -40,7 +40,6 @@ export interface Scalars {
|
|
|
40
40
|
RuntimeID: { input: `gid://sagittarius/Runtime/${number}`; output: `gid://sagittarius/Runtime/${number}`; }
|
|
41
41
|
RuntimeParameterDefinitionID: { input: `gid://sagittarius/RuntimeParameterDefinition/${number}`; output: `gid://sagittarius/RuntimeParameterDefinition/${number}`; }
|
|
42
42
|
Time: { input: string; output: string; }
|
|
43
|
-
TypesFlowTypeID: { input: `gid://sagittarius/TypesFlowType/${number}`; output: `gid://sagittarius/TypesFlowType/${number}`; }
|
|
44
43
|
UserID: { input: `gid://sagittarius/User/${number}`; output: `gid://sagittarius/User/${number}`; }
|
|
45
44
|
UserIdentityID: { input: `gid://sagittarius/UserIdentity/${number}`; output: `gid://sagittarius/UserIdentity/${number}`; }
|
|
46
45
|
UserSessionID: { input: `gid://sagittarius/UserSession/${number}`; output: `gid://sagittarius/UserSession/${number}`; }
|
|
@@ -55,21 +54,67 @@ export interface ActiveModelError {
|
|
|
55
54
|
type?: Maybe<Scalars['String']['output']>;
|
|
56
55
|
}
|
|
57
56
|
|
|
57
|
+
/** Represents the application instance */
|
|
58
|
+
export interface Application {
|
|
59
|
+
__typename?: 'Application';
|
|
60
|
+
/** URL to the legal notice page */
|
|
61
|
+
legalNoticeUrl?: Maybe<Scalars['String']['output']>;
|
|
62
|
+
/** Metadata about the application */
|
|
63
|
+
metadata?: Maybe<Metadata>;
|
|
64
|
+
/** URL to the privacy policy page */
|
|
65
|
+
privacyUrl?: Maybe<Scalars['String']['output']>;
|
|
66
|
+
/** Global application settings */
|
|
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>;
|
|
72
|
+
}
|
|
73
|
+
|
|
58
74
|
/** Represents the application settings */
|
|
59
75
|
export interface ApplicationSettings {
|
|
60
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']>;
|
|
61
83
|
/** Shows if organization creation is restricted to administrators */
|
|
62
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']>;
|
|
63
89
|
/** Shows if user registration is enabled */
|
|
64
90
|
userRegistrationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
65
91
|
}
|
|
66
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
|
+
|
|
67
102
|
/** Autogenerated input type of ApplicationSettingsUpdate */
|
|
68
103
|
export interface ApplicationSettingsUpdateInput {
|
|
104
|
+
/** Set if admin status can be queried by non-administrators. */
|
|
105
|
+
adminStatusVisible?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69
106
|
/** A unique identifier for the client performing the mutation. */
|
|
70
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']>;
|
|
71
112
|
/** Set if organization creation is restricted to administrators. */
|
|
72
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']>;
|
|
73
118
|
/** Set if user registration is enabled. */
|
|
74
119
|
userRegistrationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75
120
|
}
|
|
@@ -85,14 +130,37 @@ export interface ApplicationSettingsUpdatePayload {
|
|
|
85
130
|
errors?: Maybe<Array<Error>>;
|
|
86
131
|
}
|
|
87
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
|
+
|
|
88
150
|
/** Objects that can present an authentication */
|
|
89
151
|
export type Authentication = UserSession;
|
|
90
152
|
|
|
91
153
|
/** Represents a DataType */
|
|
92
154
|
export interface DataType {
|
|
93
155
|
__typename?: 'DataType';
|
|
156
|
+
/** Name of the function */
|
|
157
|
+
aliases?: Maybe<Array<Translation>>;
|
|
94
158
|
/** Time when this DataType was created */
|
|
95
159
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
160
|
+
/** The data type identifiers that are referenced in this data type and its rules */
|
|
161
|
+
dataTypeIdentifiers?: Maybe<DataTypeIdentifierConnection>;
|
|
162
|
+
/** Display message of the function */
|
|
163
|
+
displayMessages?: Maybe<Array<Translation>>;
|
|
96
164
|
/** Generic keys of the datatype */
|
|
97
165
|
genericKeys?: Maybe<Array<Scalars['String']['output']>>;
|
|
98
166
|
/** Global ID of this DataType */
|
|
@@ -100,7 +168,7 @@ export interface DataType {
|
|
|
100
168
|
/** The identifier scoped to the namespace */
|
|
101
169
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
102
170
|
/** Names of the flow type setting */
|
|
103
|
-
name?: Maybe<
|
|
171
|
+
name?: Maybe<Array<Translation>>;
|
|
104
172
|
/** Rules of the datatype */
|
|
105
173
|
rules?: Maybe<DataTypeRuleConnection>;
|
|
106
174
|
/** The runtime where this datatype belongs to */
|
|
@@ -113,7 +181,7 @@ export interface DataType {
|
|
|
113
181
|
|
|
114
182
|
|
|
115
183
|
/** Represents a DataType */
|
|
116
|
-
export interface
|
|
184
|
+
export interface DataTypeDataTypeIdentifiersArgs {
|
|
117
185
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
118
186
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
119
187
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -168,6 +236,28 @@ export interface DataTypeIdentifier {
|
|
|
168
236
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
169
237
|
}
|
|
170
238
|
|
|
239
|
+
/** The connection type for DataTypeIdentifier. */
|
|
240
|
+
export interface DataTypeIdentifierConnection {
|
|
241
|
+
__typename?: 'DataTypeIdentifierConnection';
|
|
242
|
+
/** Total count of collection. */
|
|
243
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
244
|
+
/** A list of edges. */
|
|
245
|
+
edges?: Maybe<Array<Maybe<DataTypeIdentifierEdge>>>;
|
|
246
|
+
/** A list of nodes. */
|
|
247
|
+
nodes?: Maybe<Array<Maybe<DataTypeIdentifier>>>;
|
|
248
|
+
/** Information to aid in pagination. */
|
|
249
|
+
pageInfo?: Maybe<PageInfo>;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
/** An edge in a connection. */
|
|
253
|
+
export interface DataTypeIdentifierEdge {
|
|
254
|
+
__typename?: 'DataTypeIdentifierEdge';
|
|
255
|
+
/** A cursor for use in pagination. */
|
|
256
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
257
|
+
/** The item at the end of the edge. */
|
|
258
|
+
node?: Maybe<DataTypeIdentifier>;
|
|
259
|
+
}
|
|
260
|
+
|
|
171
261
|
/** Input type for data type identifier */
|
|
172
262
|
export interface DataTypeIdentifierInput {
|
|
173
263
|
/** Data type ID */
|
|
@@ -221,8 +311,8 @@ export type DataTypeRulesConfig = DataTypeRulesContainsKeyConfig | DataTypeRules
|
|
|
221
311
|
/** Represents a rule that can be applied to a data type. */
|
|
222
312
|
export interface DataTypeRulesContainsKeyConfig {
|
|
223
313
|
__typename?: 'DataTypeRulesContainsKeyConfig';
|
|
224
|
-
/**
|
|
225
|
-
|
|
314
|
+
/** ID of the identifier of the data type this rule belongs to */
|
|
315
|
+
dataTypeIdentifierId?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
|
|
226
316
|
/** The key of the rule */
|
|
227
317
|
key?: Maybe<Scalars['String']['output']>;
|
|
228
318
|
}
|
|
@@ -230,15 +320,15 @@ export interface DataTypeRulesContainsKeyConfig {
|
|
|
230
320
|
/** Represents a rule that can be applied to a data type. */
|
|
231
321
|
export interface DataTypeRulesContainsTypeConfig {
|
|
232
322
|
__typename?: 'DataTypeRulesContainsTypeConfig';
|
|
233
|
-
/**
|
|
234
|
-
|
|
323
|
+
/** ID of the identifier of the data type this rule belongs to */
|
|
324
|
+
dataTypeIdentifierId?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
|
|
235
325
|
}
|
|
236
326
|
|
|
237
327
|
/** Represents a subtype of input type configuration for a input data type. */
|
|
238
328
|
export interface DataTypeRulesInputTypeConfig {
|
|
239
329
|
__typename?: 'DataTypeRulesInputTypeConfig';
|
|
240
|
-
/**
|
|
241
|
-
|
|
330
|
+
/** ID of the identifier of the data type this input type belongs to */
|
|
331
|
+
dataTypeIdentifierId?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
|
|
242
332
|
/** The input identifier that this configuration applies to */
|
|
243
333
|
inputIdentifier?: Maybe<Scalars['String']['output']>;
|
|
244
334
|
}
|
|
@@ -271,8 +361,8 @@ export interface DataTypeRulesNumberRangeConfig {
|
|
|
271
361
|
/** Represents a rule that can be applied to a data type. */
|
|
272
362
|
export interface DataTypeRulesParentTypeConfig {
|
|
273
363
|
__typename?: 'DataTypeRulesParentTypeConfig';
|
|
274
|
-
/**
|
|
275
|
-
|
|
364
|
+
/** ID of the data type identifier for the parent type. */
|
|
365
|
+
dataTypeIdentifierId?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
|
|
276
366
|
}
|
|
277
367
|
|
|
278
368
|
/** Represents a rule that can be applied to a data type. */
|
|
@@ -286,7 +376,7 @@ export interface DataTypeRulesRegexConfig {
|
|
|
286
376
|
export interface DataTypeRulesReturnTypeConfig {
|
|
287
377
|
__typename?: 'DataTypeRulesReturnTypeConfig';
|
|
288
378
|
/** The data type identifier for the return type. */
|
|
289
|
-
|
|
379
|
+
dataTypeIdentifierId?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
|
|
290
380
|
}
|
|
291
381
|
|
|
292
382
|
/** The type of rule that can be applied to a data type. */
|
|
@@ -296,7 +386,7 @@ export const enum DataTypeRulesVariant {
|
|
|
296
386
|
/** The rule checks if a specific type is present in the data type. */
|
|
297
387
|
ContainsType = 'CONTAINS_TYPE',
|
|
298
388
|
/** The rule checks if the data type matches a specific input type. */
|
|
299
|
-
|
|
389
|
+
InputTypes = 'INPUT_TYPES',
|
|
300
390
|
/** The rule checks if an item is part of a collection in the data type. */
|
|
301
391
|
ItemOfCollection = 'ITEM_OF_COLLECTION',
|
|
302
392
|
/** The rule checks if a number falls within a specified range. */
|
|
@@ -327,6 +417,9 @@ export const enum DataTypeVariant {
|
|
|
327
417
|
Type = 'TYPE'
|
|
328
418
|
}
|
|
329
419
|
|
|
420
|
+
/** Represents a detailed error with either a message or an active model error */
|
|
421
|
+
export type DetailedError = ActiveModelError | FlowValidationError | MessageError;
|
|
422
|
+
|
|
330
423
|
/** Autogenerated input type of Echo */
|
|
331
424
|
export interface EchoInput {
|
|
332
425
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -347,7 +440,181 @@ export interface EchoPayload {
|
|
|
347
440
|
}
|
|
348
441
|
|
|
349
442
|
/** Objects that can present an error */
|
|
350
|
-
export
|
|
443
|
+
export interface Error {
|
|
444
|
+
__typename?: 'Error';
|
|
445
|
+
/** Detailed validation errors if applicable */
|
|
446
|
+
details?: Maybe<Array<DetailedError>>;
|
|
447
|
+
/** The code representing the error type */
|
|
448
|
+
errorCode?: Maybe<ErrorCodeEnum>;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
/** Represents the available error responses */
|
|
452
|
+
export const enum ErrorCodeEnum {
|
|
453
|
+
/** This action would remove the last administrative role */
|
|
454
|
+
CannotDeleteLastAdminRole = 'CANNOT_DELETE_LAST_ADMIN_ROLE',
|
|
455
|
+
/** Only administrators can modify admin status of users */
|
|
456
|
+
CannotModifyAdmin = 'CANNOT_MODIFY_ADMIN',
|
|
457
|
+
/** Users cannot modify their own admin status */
|
|
458
|
+
CannotModifyOwnAdmin = 'CANNOT_MODIFY_OWN_ADMIN',
|
|
459
|
+
/** This action would remove the last administrator */
|
|
460
|
+
CannotRemoveLastAdministrator = 'CANNOT_REMOVE_LAST_ADMINISTRATOR',
|
|
461
|
+
/** This action would remove the last administrative ability */
|
|
462
|
+
CannotRemoveLastAdminAbility = 'CANNOT_REMOVE_LAST_ADMIN_ABILITY',
|
|
463
|
+
/** The data type identifier with the given identifier was not found */
|
|
464
|
+
DataTypeIdentifierNotFound = 'DATA_TYPE_IDENTIFIER_NOT_FOUND',
|
|
465
|
+
/** The data type with the given identifier was not found */
|
|
466
|
+
DataTypeNotFound = 'DATA_TYPE_NOT_FOUND',
|
|
467
|
+
/** Failed to send the email verification */
|
|
468
|
+
EmailVerificationSendFailed = 'EMAIL_VERIFICATION_SEND_FAILED',
|
|
469
|
+
/** This external identity does not exist */
|
|
470
|
+
ExternalIdentityDoesNotExist = 'EXTERNAL_IDENTITY_DOES_NOT_EXIST',
|
|
471
|
+
/** The old backup codes could not be deleted */
|
|
472
|
+
FailedToInvalidateOldBackupCodes = 'FAILED_TO_INVALIDATE_OLD_BACKUP_CODES',
|
|
473
|
+
/** Failed to reset the user password */
|
|
474
|
+
FailedToResetPassword = 'FAILED_TO_RESET_PASSWORD',
|
|
475
|
+
/** The new backup codes could not be saved */
|
|
476
|
+
FailedToSaveValidBackupCode = 'FAILED_TO_SAVE_VALID_BACKUP_CODE',
|
|
477
|
+
/** The flow with the given identifier was not found */
|
|
478
|
+
FlowNotFound = 'FLOW_NOT_FOUND',
|
|
479
|
+
/** The flow type with the given identifier was not found */
|
|
480
|
+
FlowTypeNotFound = 'FLOW_TYPE_NOT_FOUND',
|
|
481
|
+
/** The flow validation has failed */
|
|
482
|
+
FlowValidationFailed = 'FLOW_VALIDATION_FAILED',
|
|
483
|
+
/** The id for the function value node does not exist */
|
|
484
|
+
FunctionValueNotFound = 'FUNCTION_VALUE_NOT_FOUND',
|
|
485
|
+
/** The given key was not found in the data type */
|
|
486
|
+
GenericKeyNotFound = 'GENERIC_KEY_NOT_FOUND',
|
|
487
|
+
/** The external identity with the given identifier was not found */
|
|
488
|
+
IdentityNotFound = 'IDENTITY_NOT_FOUND',
|
|
489
|
+
/** Failed to validate the external identity */
|
|
490
|
+
IdentityValidationFailed = 'IDENTITY_VALIDATION_FAILED',
|
|
491
|
+
/** Resources are from different namespaces */
|
|
492
|
+
InconsistentNamespace = 'INCONSISTENT_NAMESPACE',
|
|
493
|
+
/** The attachment is invalid because of active model errors */
|
|
494
|
+
InvalidAttachment = 'INVALID_ATTACHMENT',
|
|
495
|
+
/** The data type is invalid because of active model errors */
|
|
496
|
+
InvalidDataType = 'INVALID_DATA_TYPE',
|
|
497
|
+
/** This external identity is invalid */
|
|
498
|
+
InvalidExternalIdentity = 'INVALID_EXTERNAL_IDENTITY',
|
|
499
|
+
/** The flow is invalid because of active model errors */
|
|
500
|
+
InvalidFlow = 'INVALID_FLOW',
|
|
501
|
+
/** The flow setting is invalid because of active model errors */
|
|
502
|
+
InvalidFlowSetting = 'INVALID_FLOW_SETTING',
|
|
503
|
+
/** The flow type is invalid because of active model errors */
|
|
504
|
+
InvalidFlowType = 'INVALID_FLOW_TYPE',
|
|
505
|
+
/** The flow type setting is invalid because of active model errors */
|
|
506
|
+
InvalidFlowTypeSetting = 'INVALID_FLOW_TYPE_SETTING',
|
|
507
|
+
/** The generic mapper is invalid because of active model errors */
|
|
508
|
+
InvalidGenericMapper = 'INVALID_GENERIC_MAPPER',
|
|
509
|
+
/** Invalid login data provided */
|
|
510
|
+
InvalidLoginData = 'INVALID_LOGIN_DATA',
|
|
511
|
+
/** The namespace license is invalid because of active model errors */
|
|
512
|
+
InvalidNamespaceLicense = 'INVALID_NAMESPACE_LICENSE',
|
|
513
|
+
/** The namespace member is invalid because of active model errors */
|
|
514
|
+
InvalidNamespaceMember = 'INVALID_NAMESPACE_MEMBER',
|
|
515
|
+
/** The namespace project is invalid because of active model errors */
|
|
516
|
+
InvalidNamespaceProject = 'INVALID_NAMESPACE_PROJECT',
|
|
517
|
+
/** The namespace role is invalid because of active model errors */
|
|
518
|
+
InvalidNamespaceRole = 'INVALID_NAMESPACE_ROLE',
|
|
519
|
+
/** The node function is invalid */
|
|
520
|
+
InvalidNodeFunction = 'INVALID_NODE_FUNCTION',
|
|
521
|
+
/** The node parameter is invalid */
|
|
522
|
+
InvalidNodeParameter = 'INVALID_NODE_PARAMETER',
|
|
523
|
+
/** The organization is invalid because of active model errors */
|
|
524
|
+
InvalidOrganization = 'INVALID_ORGANIZATION',
|
|
525
|
+
/** The provided password repeat does not match the password */
|
|
526
|
+
InvalidPasswordRepeat = 'INVALID_PASSWORD_REPEAT',
|
|
527
|
+
/** The runtime is invalid because of active model errors */
|
|
528
|
+
InvalidRuntime = 'INVALID_RUNTIME',
|
|
529
|
+
/** The runtime function definition is invalid */
|
|
530
|
+
InvalidRuntimeFunctionDefinition = 'INVALID_RUNTIME_FUNCTION_DEFINITION',
|
|
531
|
+
/** The runtime function ID is invalid */
|
|
532
|
+
InvalidRuntimeFunctionId = 'INVALID_RUNTIME_FUNCTION_ID',
|
|
533
|
+
/** The runtime parameter definition is invalid */
|
|
534
|
+
InvalidRuntimeParameterDefinition = 'INVALID_RUNTIME_PARAMETER_DEFINITION',
|
|
535
|
+
/** The runtime parameter ID is invalid */
|
|
536
|
+
InvalidRuntimeParameterId = 'INVALID_RUNTIME_PARAMETER_ID',
|
|
537
|
+
/** Invalid setting provided */
|
|
538
|
+
InvalidSetting = 'INVALID_SETTING',
|
|
539
|
+
/** The TOTP secret is invalid or cannot be verified */
|
|
540
|
+
InvalidTotpSecret = 'INVALID_TOTP_SECRET',
|
|
541
|
+
/** The user is invalid because of active model errors */
|
|
542
|
+
InvalidUser = 'INVALID_USER',
|
|
543
|
+
/** The user identity is invalid because of active model errors */
|
|
544
|
+
InvalidUserIdentity = 'INVALID_USER_IDENTITY',
|
|
545
|
+
/** The user session is invalid because of active model errors */
|
|
546
|
+
InvalidUserSession = 'INVALID_USER_SESSION',
|
|
547
|
+
/** Invalid verification code provided */
|
|
548
|
+
InvalidVerificationCode = 'INVALID_VERIFICATION_CODE',
|
|
549
|
+
/** The namespace license with the given identifier was not found */
|
|
550
|
+
LicenseNotFound = 'LICENSE_NOT_FOUND',
|
|
551
|
+
/** Failed to load user identity from external provider */
|
|
552
|
+
LoadingIdentityFailed = 'LOADING_IDENTITY_FAILED',
|
|
553
|
+
/** Invalid MFA data provided */
|
|
554
|
+
MfaFailed = 'MFA_FAILED',
|
|
555
|
+
/** MFA is required */
|
|
556
|
+
MfaRequired = 'MFA_REQUIRED',
|
|
557
|
+
/** The primary runtime has more definitions than this one */
|
|
558
|
+
MissingDefinition = 'MISSING_DEFINITION',
|
|
559
|
+
/** This external identity is missing data */
|
|
560
|
+
MissingIdentityData = 'MISSING_IDENTITY_DATA',
|
|
561
|
+
/** Not all required parameters are present */
|
|
562
|
+
MissingParameter = 'MISSING_PARAMETER',
|
|
563
|
+
/** The user is not permitted to perform this operation */
|
|
564
|
+
MissingPermission = 'MISSING_PERMISSION',
|
|
565
|
+
/** The project is missing a primary runtime */
|
|
566
|
+
MissingPrimaryRuntime = 'MISSING_PRIMARY_RUNTIME',
|
|
567
|
+
/** The namespace member with the given identifier was not found */
|
|
568
|
+
NamespaceMemberNotFound = 'NAMESPACE_MEMBER_NOT_FOUND',
|
|
569
|
+
/** The namespace with the given identifier was not found */
|
|
570
|
+
NamespaceNotFound = 'NAMESPACE_NOT_FOUND',
|
|
571
|
+
/** The namespace project with the given identifier was not found */
|
|
572
|
+
NamespaceProjectNotFound = 'NAMESPACE_PROJECT_NOT_FOUND',
|
|
573
|
+
/** The namespace role with the given identifier was not found */
|
|
574
|
+
NamespaceRoleNotFound = 'NAMESPACE_ROLE_NOT_FOUND',
|
|
575
|
+
/** The node with this id does not exist */
|
|
576
|
+
NodeNotFound = 'NODE_NOT_FOUND',
|
|
577
|
+
/** No data type identifier could be found for the given generic key */
|
|
578
|
+
NoDatatypeIdentifierForGenericKey = 'NO_DATATYPE_IDENTIFIER_FOR_GENERIC_KEY',
|
|
579
|
+
/** No data type could be found for the given identifier */
|
|
580
|
+
NoDataTypeForIdentifier = 'NO_DATA_TYPE_FOR_IDENTIFIER',
|
|
581
|
+
/** There are no free license seats to complete this operation */
|
|
582
|
+
NoFreeLicenseSeats = 'NO_FREE_LICENSE_SEATS',
|
|
583
|
+
/** No generic type could be found for the given identifier */
|
|
584
|
+
NoGenericTypeForIdentifier = 'NO_GENERIC_TYPE_FOR_IDENTIFIER',
|
|
585
|
+
/** The project does not have a primary runtime */
|
|
586
|
+
NoPrimaryRuntime = 'NO_PRIMARY_RUNTIME',
|
|
587
|
+
/** The organization with the given identifier was not found */
|
|
588
|
+
OrganizationNotFound = 'ORGANIZATION_NOT_FOUND',
|
|
589
|
+
/** The primary runtime has a newer definition than this one */
|
|
590
|
+
OutdatedDefinition = 'OUTDATED_DEFINITION',
|
|
591
|
+
/** @deprecated Outdated concept */
|
|
592
|
+
PrimaryLevelNotFound = 'PRIMARY_LEVEL_NOT_FOUND',
|
|
593
|
+
/** The namespace project with the given identifier was not found */
|
|
594
|
+
ProjectNotFound = 'PROJECT_NOT_FOUND',
|
|
595
|
+
/** A referenced value could not be found */
|
|
596
|
+
ReferencedValueNotFound = 'REFERENCED_VALUE_NOT_FOUND',
|
|
597
|
+
/** Self-registration is disabled */
|
|
598
|
+
RegistrationDisabled = 'REGISTRATION_DISABLED',
|
|
599
|
+
/** Resources are from different runtimes */
|
|
600
|
+
RuntimeMismatch = 'RUNTIME_MISMATCH',
|
|
601
|
+
/** The runtime with the given identifier was not found */
|
|
602
|
+
RuntimeNotFound = 'RUNTIME_NOT_FOUND',
|
|
603
|
+
/** @deprecated Outdated concept */
|
|
604
|
+
SecondaryLevelNotFound = 'SECONDARY_LEVEL_NOT_FOUND',
|
|
605
|
+
/** @deprecated Outdated concept */
|
|
606
|
+
TertiaryLevelExceedsParameters = 'TERTIARY_LEVEL_EXCEEDS_PARAMETERS',
|
|
607
|
+
/** This user already has TOTP set up */
|
|
608
|
+
TotpSecretAlreadySet = 'TOTP_SECRET_ALREADY_SET',
|
|
609
|
+
/** The user is not permitted to modify this field */
|
|
610
|
+
UnmodifiableField = 'UNMODIFIABLE_FIELD',
|
|
611
|
+
/** The user with the given identifier was not found */
|
|
612
|
+
UserNotFound = 'USER_NOT_FOUND',
|
|
613
|
+
/** The user session with the given identifier was not found */
|
|
614
|
+
UserSessionNotFound = 'USER_SESSION_NOT_FOUND',
|
|
615
|
+
/** Invalid TOTP code provided */
|
|
616
|
+
WrongTotp = 'WRONG_TOTP'
|
|
617
|
+
}
|
|
351
618
|
|
|
352
619
|
/** Represents a flow */
|
|
353
620
|
export interface Flow {
|
|
@@ -358,8 +625,12 @@ export interface Flow {
|
|
|
358
625
|
id?: Maybe<Scalars['FlowID']['output']>;
|
|
359
626
|
/** The input data type of the flow */
|
|
360
627
|
inputType?: Maybe<DataType>;
|
|
628
|
+
/** Name of the flow */
|
|
629
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
361
630
|
/** Nodes of the flow */
|
|
362
631
|
nodes?: Maybe<NodeFunctionConnection>;
|
|
632
|
+
/** The project the flow belongs to */
|
|
633
|
+
project?: Maybe<NamespaceProject>;
|
|
363
634
|
/** The return data type of the flow */
|
|
364
635
|
returnType?: Maybe<DataType>;
|
|
365
636
|
/** The settings of the flow */
|
|
@@ -370,6 +641,8 @@ export interface Flow {
|
|
|
370
641
|
type?: Maybe<FlowType>;
|
|
371
642
|
/** Time when this Flow was last updated */
|
|
372
643
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
644
|
+
/** Abilities for the current user on this Flow */
|
|
645
|
+
userAbilities?: Maybe<FlowUserAbilities>;
|
|
373
646
|
}
|
|
374
647
|
|
|
375
648
|
|
|
@@ -414,10 +687,14 @@ export interface FlowEdge {
|
|
|
414
687
|
|
|
415
688
|
/** Input type for creating or updating a flow */
|
|
416
689
|
export interface FlowInput {
|
|
690
|
+
/** The name of the flow */
|
|
691
|
+
name: Scalars['String']['input'];
|
|
692
|
+
/** The node functions of the flow */
|
|
693
|
+
nodes: Array<NodeFunctionInput>;
|
|
417
694
|
/** The settings of the flow */
|
|
418
695
|
settings?: InputMaybe<Array<FlowSettingInput>>;
|
|
419
696
|
/** The starting node of the flow */
|
|
420
|
-
|
|
697
|
+
startingNodeId: Scalars['NodeFunctionID']['input'];
|
|
421
698
|
/** The identifier of the flow type */
|
|
422
699
|
type: Scalars['FlowTypeID']['input'];
|
|
423
700
|
}
|
|
@@ -462,54 +739,42 @@ export interface FlowSettingEdge {
|
|
|
462
739
|
/** Input type for flow settings */
|
|
463
740
|
export interface FlowSettingInput {
|
|
464
741
|
/** The identifier (not database id) of the flow setting */
|
|
465
|
-
|
|
742
|
+
flowSettingIdentifier: Scalars['String']['input'];
|
|
466
743
|
/** The value of the flow setting */
|
|
467
|
-
|
|
744
|
+
value: Scalars['JSON']['input'];
|
|
468
745
|
}
|
|
469
746
|
|
|
470
747
|
/** Represents a flow type */
|
|
471
748
|
export interface FlowType {
|
|
472
749
|
__typename?: 'FlowType';
|
|
750
|
+
/** Name of the function */
|
|
751
|
+
aliases?: Maybe<Array<Translation>>;
|
|
473
752
|
/** Time when this FlowType was created */
|
|
474
753
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
475
754
|
/** Descriptions of the flow type */
|
|
476
|
-
descriptions?: Maybe<
|
|
755
|
+
descriptions?: Maybe<Array<Translation>>;
|
|
756
|
+
/** Display message of the function */
|
|
757
|
+
displayMessages?: Maybe<Array<Translation>>;
|
|
477
758
|
/** Editable status of the flow type */
|
|
478
759
|
editable?: Maybe<Scalars['Boolean']['output']>;
|
|
479
760
|
/** Flow type settings of the flow type */
|
|
480
761
|
flowTypeSettings?: Maybe<Array<FlowTypeSetting>>;
|
|
481
762
|
/** Global ID of this FlowType */
|
|
482
|
-
id?: Maybe<Scalars['
|
|
763
|
+
id?: Maybe<Scalars['FlowTypeID']['output']>;
|
|
483
764
|
/** Identifier of the flow type */
|
|
484
765
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
485
766
|
/** Input type of the flow type */
|
|
486
767
|
inputType?: Maybe<DataType>;
|
|
487
768
|
/** Names of the flow type */
|
|
488
|
-
names?: Maybe<
|
|
769
|
+
names?: Maybe<Array<Translation>>;
|
|
489
770
|
/** Return type of the flow type */
|
|
490
771
|
returnType?: Maybe<DataType>;
|
|
772
|
+
/** Runtime of the flow type */
|
|
773
|
+
runtime?: Maybe<Runtime>;
|
|
491
774
|
/** Time when this FlowType was last updated */
|
|
492
775
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
493
776
|
}
|
|
494
777
|
|
|
495
|
-
|
|
496
|
-
/** Represents a flow type */
|
|
497
|
-
export interface FlowTypeDescriptionsArgs {
|
|
498
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
499
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
500
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
501
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
502
|
-
}
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
/** Represents a flow type */
|
|
506
|
-
export interface FlowTypeNamesArgs {
|
|
507
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
508
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
509
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
510
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
511
|
-
}
|
|
512
|
-
|
|
513
778
|
/** The connection type for FlowType. */
|
|
514
779
|
export interface FlowTypeConnection {
|
|
515
780
|
__typename?: 'FlowTypeConnection';
|
|
@@ -540,7 +805,7 @@ export interface FlowTypeSetting {
|
|
|
540
805
|
/** Data type of the flow type setting */
|
|
541
806
|
dataType?: Maybe<DataType>;
|
|
542
807
|
/** Descriptions of the flow type setting */
|
|
543
|
-
descriptions?: Maybe<
|
|
808
|
+
descriptions?: Maybe<Array<Translation>>;
|
|
544
809
|
/** Flow type of the flow type setting */
|
|
545
810
|
flowType?: Maybe<FlowType>;
|
|
546
811
|
/** Global ID of this FlowTypeSetting */
|
|
@@ -548,42 +813,80 @@ export interface FlowTypeSetting {
|
|
|
548
813
|
/** Identifier of the flow type setting */
|
|
549
814
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
550
815
|
/** Names of the flow type setting */
|
|
551
|
-
names?: Maybe<
|
|
816
|
+
names?: Maybe<Array<Translation>>;
|
|
552
817
|
/** Unique status of the flow type setting */
|
|
553
818
|
unique?: Maybe<Scalars['Boolean']['output']>;
|
|
554
819
|
/** Time when this FlowTypeSetting was last updated */
|
|
555
820
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
556
821
|
}
|
|
557
822
|
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
/**
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
823
|
+
/** Abilities for the current user on this Flow */
|
|
824
|
+
export interface FlowUserAbilities {
|
|
825
|
+
__typename?: 'FlowUserAbilities';
|
|
826
|
+
/** Shows if the current user has the `delete_flow` ability on this Flow */
|
|
827
|
+
deleteFlow?: Maybe<Scalars['Boolean']['output']>;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
/** Represents a flow validation error */
|
|
831
|
+
export interface FlowValidationError {
|
|
832
|
+
__typename?: 'FlowValidationError';
|
|
833
|
+
/** Additional details about the validation error */
|
|
834
|
+
details?: Maybe<ActiveModelError>;
|
|
835
|
+
/** The code representing the validation error type */
|
|
836
|
+
errorCode?: Maybe<FlowValidationErrorCodeEnum>;
|
|
837
|
+
/** The severity of the validation error */
|
|
838
|
+
severity?: Maybe<FlowValidationSeverityEnum>;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
/** Represents the available error responses */
|
|
842
|
+
export const enum FlowValidationErrorCodeEnum {
|
|
843
|
+
/** The generic key for the data type identifier was not found. */
|
|
844
|
+
DataTypeIdentifierGenericKeyNotFound = 'DATA_TYPE_IDENTIFIER_GENERIC_KEY_NOT_FOUND',
|
|
845
|
+
/** The data type identifier runtime does not match the flow type runtime. */
|
|
846
|
+
DataTypeIdentifierRuntimeMismatch = 'DATA_TYPE_IDENTIFIER_RUNTIME_MISMATCH',
|
|
847
|
+
/** The data type rule model is invalid. */
|
|
848
|
+
DataTypeRuleModelInvalid = 'DATA_TYPE_RULE_MODEL_INVALID',
|
|
849
|
+
/** The data type runtime does not match the flow type runtime. */
|
|
850
|
+
DataTypeRuntimeMismatch = 'DATA_TYPE_RUNTIME_MISMATCH',
|
|
851
|
+
/** The flow setting model is invalid. */
|
|
852
|
+
FlowSettingModelInvalid = 'FLOW_SETTING_MODEL_INVALID',
|
|
853
|
+
/** The flow type runtime does not match the project primary runtime. */
|
|
854
|
+
FlowTypeRuntimeMismatch = 'FLOW_TYPE_RUNTIME_MISMATCH',
|
|
855
|
+
/** The node function runtime does not match the project primary runtime. */
|
|
856
|
+
NodeFunctionRuntimeMismatch = 'NODE_FUNCTION_RUNTIME_MISMATCH',
|
|
857
|
+
/** The project does not have a primary runtime set. */
|
|
858
|
+
NoPrimaryRuntime = 'NO_PRIMARY_RUNTIME'
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
/** Represents the severity of a flow validation error */
|
|
862
|
+
export const enum FlowValidationSeverityEnum {
|
|
863
|
+
/** A blocking validation error */
|
|
864
|
+
Error = 'ERROR',
|
|
865
|
+
/** A minor typographical issue can also be blocking */
|
|
866
|
+
Typo = 'TYPO',
|
|
867
|
+
/** A non-blocking validation warning */
|
|
868
|
+
Warning = 'WARNING',
|
|
869
|
+
/** A weak validation issue that may not need to be addressed */
|
|
870
|
+
Weak = 'WEAK'
|
|
574
871
|
}
|
|
575
872
|
|
|
576
873
|
/** Represents a function definition */
|
|
577
874
|
export interface FunctionDefinition {
|
|
578
875
|
__typename?: 'FunctionDefinition';
|
|
876
|
+
/** Name of the function */
|
|
877
|
+
aliases?: Maybe<Array<Translation>>;
|
|
579
878
|
/** Time when this FunctionDefinition was created */
|
|
580
879
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
880
|
+
/** All data type identifiers used within this Node Function */
|
|
881
|
+
dataTypeIdentifiers?: Maybe<DataTypeIdentifierConnection>;
|
|
581
882
|
/** Deprecation message of the function */
|
|
582
|
-
deprecationMessages?: Maybe<
|
|
883
|
+
deprecationMessages?: Maybe<Array<Translation>>;
|
|
583
884
|
/** Description of the function */
|
|
584
|
-
descriptions?: Maybe<
|
|
885
|
+
descriptions?: Maybe<Array<Translation>>;
|
|
886
|
+
/** Display message of the function */
|
|
887
|
+
displayMessages?: Maybe<Array<Translation>>;
|
|
585
888
|
/** Documentation of the function */
|
|
586
|
-
documentations?: Maybe<
|
|
889
|
+
documentations?: Maybe<Array<Translation>>;
|
|
587
890
|
/** Generic keys of the function */
|
|
588
891
|
genericKeys?: Maybe<Array<Scalars['String']['output']>>;
|
|
589
892
|
/** Global ID of this FunctionDefinition */
|
|
@@ -591,7 +894,7 @@ export interface FunctionDefinition {
|
|
|
591
894
|
/** Identifier of the function */
|
|
592
895
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
593
896
|
/** Name of the function */
|
|
594
|
-
names?: Maybe<
|
|
897
|
+
names?: Maybe<Array<Translation>>;
|
|
595
898
|
/** Parameters of the function */
|
|
596
899
|
parameterDefinitions?: Maybe<ParameterDefinitionConnection>;
|
|
597
900
|
/** Return type of the function */
|
|
@@ -606,34 +909,7 @@ export interface FunctionDefinition {
|
|
|
606
909
|
|
|
607
910
|
|
|
608
911
|
/** Represents a function definition */
|
|
609
|
-
export interface
|
|
610
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
611
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
612
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
613
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
/** Represents a function definition */
|
|
618
|
-
export interface FunctionDefinitionDescriptionsArgs {
|
|
619
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
620
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
621
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
622
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
623
|
-
}
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
/** Represents a function definition */
|
|
627
|
-
export interface FunctionDefinitionDocumentationsArgs {
|
|
628
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
629
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
630
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
631
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
632
|
-
}
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
/** Represents a function definition */
|
|
636
|
-
export interface FunctionDefinitionNamesArgs {
|
|
912
|
+
export interface FunctionDefinitionDataTypeIdentifiersArgs {
|
|
637
913
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
638
914
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
639
915
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -704,7 +980,7 @@ export interface GenericMapper {
|
|
|
704
980
|
/** Global ID of this GenericMapper */
|
|
705
981
|
id?: Maybe<Scalars['GenericMapperID']['output']>;
|
|
706
982
|
/** The source data type identifier. */
|
|
707
|
-
|
|
983
|
+
sourceDataTypeIdentifierIds?: Maybe<Array<Scalars['DataTypeIdentifierID']['output']>>;
|
|
708
984
|
/** The target key for the generic value. */
|
|
709
985
|
target?: Maybe<Scalars['String']['output']>;
|
|
710
986
|
/** Time when this GenericMapper was last updated */
|
|
@@ -714,7 +990,7 @@ export interface GenericMapper {
|
|
|
714
990
|
/** Input type for generic mappers */
|
|
715
991
|
export interface GenericMapperInput {
|
|
716
992
|
/** The source data type identifier for the mapper */
|
|
717
|
-
|
|
993
|
+
sourceDataTypeIdentifiers: Array<DataTypeIdentifierInput>;
|
|
718
994
|
/** The target data type identifier for the mapper */
|
|
719
995
|
target: Scalars['String']['input'];
|
|
720
996
|
}
|
|
@@ -748,6 +1024,94 @@ export interface IdentityInput {
|
|
|
748
1024
|
code?: InputMaybe<Scalars['String']['input']>;
|
|
749
1025
|
}
|
|
750
1026
|
|
|
1027
|
+
/** Represents an identity provider configuration. */
|
|
1028
|
+
export interface IdentityProvider {
|
|
1029
|
+
__typename?: 'IdentityProvider';
|
|
1030
|
+
/** Configuration details of the identity provider. */
|
|
1031
|
+
config?: Maybe<IdentityProviderConfig>;
|
|
1032
|
+
/** Unique identifier of the identity provider. */
|
|
1033
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1034
|
+
/** Type of the identity provider. */
|
|
1035
|
+
type?: Maybe<IdentityProviderType>;
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
/** Represents the configuration of an identity provider. */
|
|
1039
|
+
export type IdentityProviderConfig = OidcIdentityProviderConfig | SamlIdentityProviderConfig;
|
|
1040
|
+
|
|
1041
|
+
/** Input for identity provider configuration. Contains fields for both OIDC and SAML. */
|
|
1042
|
+
export interface IdentityProviderConfigInput {
|
|
1043
|
+
/** List of attribute statements for the identity provider */
|
|
1044
|
+
attributeStatements?: InputMaybe<Scalars['JSON']['input']>;
|
|
1045
|
+
/** The authorization URL for the OIDC identity provider */
|
|
1046
|
+
authorizationUrl?: InputMaybe<Scalars['String']['input']>;
|
|
1047
|
+
/** The client ID for the OIDC identity provider */
|
|
1048
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
1049
|
+
/** The client secret for the OIDC identity provider */
|
|
1050
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
1051
|
+
/** Optional metadata URL to fetch metadata (alternative to settings) */
|
|
1052
|
+
metadataUrl?: InputMaybe<Scalars['String']['input']>;
|
|
1053
|
+
/** The name of the identity provider */
|
|
1054
|
+
providerName?: InputMaybe<Scalars['String']['input']>;
|
|
1055
|
+
/** The redirect URI for the OIDC identity provider */
|
|
1056
|
+
redirectUri?: InputMaybe<Scalars['String']['input']>;
|
|
1057
|
+
/** The SAML response settings for the identity provider */
|
|
1058
|
+
responseSettings?: InputMaybe<Scalars['JSON']['input']>;
|
|
1059
|
+
/** The SAML settings for the identity provider */
|
|
1060
|
+
settings?: InputMaybe<Scalars['JSON']['input']>;
|
|
1061
|
+
/** The user details URL for the OIDC identity provider */
|
|
1062
|
+
userDetailsUrl?: InputMaybe<Scalars['String']['input']>;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
/** The connection type for IdentityProvider. */
|
|
1066
|
+
export interface IdentityProviderConnection {
|
|
1067
|
+
__typename?: 'IdentityProviderConnection';
|
|
1068
|
+
/** Total count of collection. */
|
|
1069
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
1070
|
+
/** A list of edges. */
|
|
1071
|
+
edges?: Maybe<Array<Maybe<IdentityProviderEdge>>>;
|
|
1072
|
+
/** A list of nodes. */
|
|
1073
|
+
nodes?: Maybe<Array<Maybe<IdentityProvider>>>;
|
|
1074
|
+
/** Information to aid in pagination. */
|
|
1075
|
+
pageInfo?: Maybe<PageInfo>;
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
/** An edge in a connection. */
|
|
1079
|
+
export interface IdentityProviderEdge {
|
|
1080
|
+
__typename?: 'IdentityProviderEdge';
|
|
1081
|
+
/** A cursor for use in pagination. */
|
|
1082
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
1083
|
+
/** The item at the end of the edge. */
|
|
1084
|
+
node?: Maybe<IdentityProvider>;
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
/** Input for creating or updating an identity provider */
|
|
1088
|
+
export interface IdentityProviderInput {
|
|
1089
|
+
/** Configuration for the identity provider */
|
|
1090
|
+
config: IdentityProviderConfigInput;
|
|
1091
|
+
/** Unique identifier of the identity provider */
|
|
1092
|
+
id: Scalars['String']['input'];
|
|
1093
|
+
/** Type of the identity provider */
|
|
1094
|
+
type: IdentityProviderType;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
/** The available identity provider types. */
|
|
1098
|
+
export const enum IdentityProviderType {
|
|
1099
|
+
/** Identity provider of type discord */
|
|
1100
|
+
Discord = 'DISCORD',
|
|
1101
|
+
/** Identity provider of type github */
|
|
1102
|
+
Github = 'GITHUB',
|
|
1103
|
+
/** Identity provider of type gitlab */
|
|
1104
|
+
Gitlab = 'GITLAB',
|
|
1105
|
+
/** Identity provider of type google */
|
|
1106
|
+
Google = 'GOOGLE',
|
|
1107
|
+
/** Identity provider of type microsoft */
|
|
1108
|
+
Microsoft = 'MICROSOFT',
|
|
1109
|
+
/** Identity provider of type oidc */
|
|
1110
|
+
Oidc = 'OIDC',
|
|
1111
|
+
/** Identity provider of type saml */
|
|
1112
|
+
Saml = 'SAML'
|
|
1113
|
+
}
|
|
1114
|
+
|
|
751
1115
|
/** Represents a literal value, such as a string or number. */
|
|
752
1116
|
export interface LiteralValue {
|
|
753
1117
|
__typename?: 'LiteralValue';
|
|
@@ -766,6 +1130,15 @@ export interface MessageError {
|
|
|
766
1130
|
message?: Maybe<Scalars['String']['output']>;
|
|
767
1131
|
}
|
|
768
1132
|
|
|
1133
|
+
/** Application metadata */
|
|
1134
|
+
export interface Metadata {
|
|
1135
|
+
__typename?: 'Metadata';
|
|
1136
|
+
/** List of loaded extensions */
|
|
1137
|
+
extensions?: Maybe<Array<Scalars['String']['output']>>;
|
|
1138
|
+
/** Application version */
|
|
1139
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
769
1142
|
/** Represents the input for mfa authentication */
|
|
770
1143
|
export interface MfaInput {
|
|
771
1144
|
/** The type of the mfa authentication */
|
|
@@ -774,6 +1147,17 @@ export interface MfaInput {
|
|
|
774
1147
|
value: Scalars['String']['input'];
|
|
775
1148
|
}
|
|
776
1149
|
|
|
1150
|
+
/** Represents the MFA status of a user */
|
|
1151
|
+
export interface MfaStatus {
|
|
1152
|
+
__typename?: 'MfaStatus';
|
|
1153
|
+
/** The number of backup codes remaining for the user. */
|
|
1154
|
+
backupCodesCount?: Maybe<Scalars['Int']['output']>;
|
|
1155
|
+
/** Indicates whether MFA is enabled for the user. */
|
|
1156
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1157
|
+
/** Indicates whether TOTP MFA is enabled for the user. */
|
|
1158
|
+
totpEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
777
1161
|
/** Represent all available types to authenticate with mfa */
|
|
778
1162
|
export const enum MfaType {
|
|
779
1163
|
/** Single use backup code */
|
|
@@ -815,6 +1199,8 @@ export interface Mutation {
|
|
|
815
1199
|
namespacesProjectsFlowsCreate?: Maybe<NamespacesProjectsFlowsCreatePayload>;
|
|
816
1200
|
/** Deletes a namespace project. */
|
|
817
1201
|
namespacesProjectsFlowsDelete?: Maybe<NamespacesProjectsFlowsDeletePayload>;
|
|
1202
|
+
/** Update an existing flow. */
|
|
1203
|
+
namespacesProjectsFlowsUpdate?: Maybe<NamespacesProjectsFlowsUpdatePayload>;
|
|
818
1204
|
/** Updates a namespace project. */
|
|
819
1205
|
namespacesProjectsUpdate?: Maybe<NamespacesProjectsUpdatePayload>;
|
|
820
1206
|
/** Update the abilities a role is granted. */
|
|
@@ -841,6 +1227,10 @@ export interface Mutation {
|
|
|
841
1227
|
runtimesRotateToken?: Maybe<RuntimesRotateTokenPayload>;
|
|
842
1228
|
/** Update an existing runtime. */
|
|
843
1229
|
runtimesUpdate?: Maybe<RuntimesUpdatePayload>;
|
|
1230
|
+
/** Admin-create a user. */
|
|
1231
|
+
usersCreate?: Maybe<UsersCreatePayload>;
|
|
1232
|
+
/** Delete an existing user. */
|
|
1233
|
+
usersDelete?: Maybe<UsersDeletePayload>;
|
|
844
1234
|
/** Verify your email when changing it or signing up */
|
|
845
1235
|
usersEmailVerification?: Maybe<UsersEmailVerificationPayload>;
|
|
846
1236
|
/** Links an external identity to an existing user */
|
|
@@ -861,6 +1251,10 @@ export interface Mutation {
|
|
|
861
1251
|
usersMfaTotpGenerateSecret?: Maybe<UsersMfaTotpGenerateSecretPayload>;
|
|
862
1252
|
/** Validates a TOTP value for the given secret and enables TOTP MFA for the user */
|
|
863
1253
|
usersMfaTotpValidateSecret?: Maybe<UsersMfaTotpValidateSecretPayload>;
|
|
1254
|
+
/** Reset the password using a reset token */
|
|
1255
|
+
usersPasswordReset?: Maybe<UsersPasswordResetPayload>;
|
|
1256
|
+
/** Request an password reset */
|
|
1257
|
+
usersPasswordResetRequest?: Maybe<UsersPasswordResetRequestPayload>;
|
|
864
1258
|
/** Register a new user */
|
|
865
1259
|
usersRegister?: Maybe<UsersRegisterPayload>;
|
|
866
1260
|
/** Update an existing user. */
|
|
@@ -940,6 +1334,12 @@ export interface MutationNamespacesProjectsFlowsDeleteArgs {
|
|
|
940
1334
|
}
|
|
941
1335
|
|
|
942
1336
|
|
|
1337
|
+
/** Root Mutation type */
|
|
1338
|
+
export interface MutationNamespacesProjectsFlowsUpdateArgs {
|
|
1339
|
+
input: NamespacesProjectsFlowsUpdateInput;
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
|
|
943
1343
|
/** Root Mutation type */
|
|
944
1344
|
export interface MutationNamespacesProjectsUpdateArgs {
|
|
945
1345
|
input: NamespacesProjectsUpdateInput;
|
|
@@ -1018,6 +1418,18 @@ export interface MutationRuntimesUpdateArgs {
|
|
|
1018
1418
|
}
|
|
1019
1419
|
|
|
1020
1420
|
|
|
1421
|
+
/** Root Mutation type */
|
|
1422
|
+
export interface MutationUsersCreateArgs {
|
|
1423
|
+
input: UsersCreateInput;
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1426
|
+
|
|
1427
|
+
/** Root Mutation type */
|
|
1428
|
+
export interface MutationUsersDeleteArgs {
|
|
1429
|
+
input: UsersDeleteInput;
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1432
|
+
|
|
1021
1433
|
/** Root Mutation type */
|
|
1022
1434
|
export interface MutationUsersEmailVerificationArgs {
|
|
1023
1435
|
input: UsersEmailVerificationInput;
|
|
@@ -1078,6 +1490,18 @@ export interface MutationUsersMfaTotpValidateSecretArgs {
|
|
|
1078
1490
|
}
|
|
1079
1491
|
|
|
1080
1492
|
|
|
1493
|
+
/** Root Mutation type */
|
|
1494
|
+
export interface MutationUsersPasswordResetArgs {
|
|
1495
|
+
input: UsersPasswordResetInput;
|
|
1496
|
+
}
|
|
1497
|
+
|
|
1498
|
+
|
|
1499
|
+
/** Root Mutation type */
|
|
1500
|
+
export interface MutationUsersPasswordResetRequestArgs {
|
|
1501
|
+
input: UsersPasswordResetRequestInput;
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
|
|
1081
1505
|
/** Root Mutation type */
|
|
1082
1506
|
export interface MutationUsersRegisterArgs {
|
|
1083
1507
|
input: UsersRegisterInput;
|
|
@@ -1094,6 +1518,8 @@ export interface Namespace {
|
|
|
1094
1518
|
__typename?: 'Namespace';
|
|
1095
1519
|
/** Time when this Namespace was created */
|
|
1096
1520
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
1521
|
+
/** (EE only) Currently active license of the namespace */
|
|
1522
|
+
currentNamespaceLicense?: Maybe<NamespaceLicense>;
|
|
1097
1523
|
/** Global ID of this Namespace */
|
|
1098
1524
|
id?: Maybe<Scalars['NamespaceID']['output']>;
|
|
1099
1525
|
/** Members of the namespace */
|
|
@@ -1102,6 +1528,8 @@ export interface Namespace {
|
|
|
1102
1528
|
namespaceLicenses?: Maybe<NamespaceLicenseConnection>;
|
|
1103
1529
|
/** Parent of this namespace */
|
|
1104
1530
|
parent?: Maybe<NamespaceParent>;
|
|
1531
|
+
/** Query a project by its id */
|
|
1532
|
+
project?: Maybe<NamespaceProject>;
|
|
1105
1533
|
/** Projects of the namespace */
|
|
1106
1534
|
projects?: Maybe<NamespaceProjectConnection>;
|
|
1107
1535
|
/** Roles of the namespace */
|
|
@@ -1110,6 +1538,8 @@ export interface Namespace {
|
|
|
1110
1538
|
runtimes?: Maybe<RuntimeConnection>;
|
|
1111
1539
|
/** Time when this Namespace was last updated */
|
|
1112
1540
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
1541
|
+
/** Abilities for the current user on this Namespace */
|
|
1542
|
+
userAbilities?: Maybe<NamespaceUserAbilities>;
|
|
1113
1543
|
}
|
|
1114
1544
|
|
|
1115
1545
|
|
|
@@ -1131,6 +1561,12 @@ export interface NamespaceNamespaceLicensesArgs {
|
|
|
1131
1561
|
}
|
|
1132
1562
|
|
|
1133
1563
|
|
|
1564
|
+
/** Represents a Namespace */
|
|
1565
|
+
export interface NamespaceProjectArgs {
|
|
1566
|
+
id: Scalars['NamespaceProjectID']['input'];
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
|
|
1134
1570
|
/** Represents a Namespace */
|
|
1135
1571
|
export interface NamespaceProjectsArgs {
|
|
1136
1572
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1174,6 +1610,8 @@ export interface NamespaceLicense {
|
|
|
1174
1610
|
startDate?: Maybe<Scalars['Time']['output']>;
|
|
1175
1611
|
/** Time when this NamespaceLicense was last updated */
|
|
1176
1612
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
1613
|
+
/** Abilities for the current user on this NamespaceLicense */
|
|
1614
|
+
userAbilities?: Maybe<NamespaceLicenseUserAbilities>;
|
|
1177
1615
|
}
|
|
1178
1616
|
|
|
1179
1617
|
/** The connection type for NamespaceLicense. */
|
|
@@ -1198,6 +1636,13 @@ export interface NamespaceLicenseEdge {
|
|
|
1198
1636
|
node?: Maybe<NamespaceLicense>;
|
|
1199
1637
|
}
|
|
1200
1638
|
|
|
1639
|
+
/** Abilities for the current user on this NamespaceLicense */
|
|
1640
|
+
export interface NamespaceLicenseUserAbilities {
|
|
1641
|
+
__typename?: 'NamespaceLicenseUserAbilities';
|
|
1642
|
+
/** Shows if the current user has the `delete_namespace_license` ability on this NamespaceLicense */
|
|
1643
|
+
deleteNamespaceLicense?: Maybe<Scalars['Boolean']['output']>;
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1201
1646
|
/** Represents a namespace member */
|
|
1202
1647
|
export interface NamespaceMember {
|
|
1203
1648
|
__typename?: 'NamespaceMember';
|
|
@@ -1215,6 +1660,8 @@ export interface NamespaceMember {
|
|
|
1215
1660
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
1216
1661
|
/** User this member belongs to */
|
|
1217
1662
|
user?: Maybe<User>;
|
|
1663
|
+
/** Abilities for the current user on this NamespaceMember */
|
|
1664
|
+
userAbilities?: Maybe<NamespaceMemberUserAbilities>;
|
|
1218
1665
|
}
|
|
1219
1666
|
|
|
1220
1667
|
|
|
@@ -1294,6 +1741,15 @@ export interface NamespaceMemberRoleEdge {
|
|
|
1294
1741
|
node?: Maybe<NamespaceMemberRole>;
|
|
1295
1742
|
}
|
|
1296
1743
|
|
|
1744
|
+
/** Abilities for the current user on this NamespaceMember */
|
|
1745
|
+
export interface NamespaceMemberUserAbilities {
|
|
1746
|
+
__typename?: 'NamespaceMemberUserAbilities';
|
|
1747
|
+
/** Shows if the current user has the `assign_member_roles` ability on this NamespaceMember */
|
|
1748
|
+
assignMemberRoles?: Maybe<Scalars['Boolean']['output']>;
|
|
1749
|
+
/** Shows if the current user has the `delete_member` ability on this NamespaceMember */
|
|
1750
|
+
deleteMember?: Maybe<Scalars['Boolean']['output']>;
|
|
1751
|
+
}
|
|
1752
|
+
|
|
1297
1753
|
/** Objects that can present a namespace */
|
|
1298
1754
|
export type NamespaceParent = Organization | User;
|
|
1299
1755
|
|
|
@@ -1316,10 +1772,16 @@ export interface NamespaceProject {
|
|
|
1316
1772
|
namespace?: Maybe<Namespace>;
|
|
1317
1773
|
/** The primary runtime for the project */
|
|
1318
1774
|
primaryRuntime?: Maybe<Runtime>;
|
|
1775
|
+
/** Roles assigned to this project */
|
|
1776
|
+
roles?: Maybe<NamespaceRoleConnection>;
|
|
1319
1777
|
/** Runtimes assigned to this project */
|
|
1320
1778
|
runtimes?: Maybe<RuntimeConnection>;
|
|
1779
|
+
/** Slug of the project used in URLs to identify flows */
|
|
1780
|
+
slug?: Maybe<Scalars['String']['output']>;
|
|
1321
1781
|
/** Time when this NamespaceProject was last updated */
|
|
1322
1782
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
1783
|
+
/** Abilities for the current user on this NamespaceProject */
|
|
1784
|
+
userAbilities?: Maybe<NamespaceProjectUserAbilities>;
|
|
1323
1785
|
}
|
|
1324
1786
|
|
|
1325
1787
|
|
|
@@ -1338,6 +1800,15 @@ export interface NamespaceProjectFlowsArgs {
|
|
|
1338
1800
|
}
|
|
1339
1801
|
|
|
1340
1802
|
|
|
1803
|
+
/** Represents a namespace project */
|
|
1804
|
+
export interface NamespaceProjectRolesArgs {
|
|
1805
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1806
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1807
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1808
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1809
|
+
}
|
|
1810
|
+
|
|
1811
|
+
|
|
1341
1812
|
/** Represents a namespace project */
|
|
1342
1813
|
export interface NamespaceProjectRuntimesArgs {
|
|
1343
1814
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1368,6 +1839,19 @@ export interface NamespaceProjectEdge {
|
|
|
1368
1839
|
node?: Maybe<NamespaceProject>;
|
|
1369
1840
|
}
|
|
1370
1841
|
|
|
1842
|
+
/** Abilities for the current user on this NamespaceProject */
|
|
1843
|
+
export interface NamespaceProjectUserAbilities {
|
|
1844
|
+
__typename?: 'NamespaceProjectUserAbilities';
|
|
1845
|
+
/** Shows if the current user has the `assign_project_runtimes` ability on this NamespaceProject */
|
|
1846
|
+
assignProjectRuntimes?: Maybe<Scalars['Boolean']['output']>;
|
|
1847
|
+
/** Shows if the current user has the `create_flow` ability on this NamespaceProject */
|
|
1848
|
+
createFlow?: Maybe<Scalars['Boolean']['output']>;
|
|
1849
|
+
/** Shows if the current user has the `delete_namespace_project` ability on this NamespaceProject */
|
|
1850
|
+
deleteNamespaceProject?: Maybe<Scalars['Boolean']['output']>;
|
|
1851
|
+
/** Shows if the current user has the `update_namespace_project` ability on this NamespaceProject */
|
|
1852
|
+
updateNamespaceProject?: Maybe<Scalars['Boolean']['output']>;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1371
1855
|
/** Represents a namespace role. */
|
|
1372
1856
|
export interface NamespaceRole {
|
|
1373
1857
|
__typename?: 'NamespaceRole';
|
|
@@ -1379,12 +1863,16 @@ export interface NamespaceRole {
|
|
|
1379
1863
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
1380
1864
|
/** Global ID of this NamespaceRole */
|
|
1381
1865
|
id?: Maybe<Scalars['NamespaceRoleID']['output']>;
|
|
1866
|
+
/** The members this role is assigned to */
|
|
1867
|
+
members?: Maybe<NamespaceMemberConnection>;
|
|
1382
1868
|
/** The name of this role */
|
|
1383
1869
|
name?: Maybe<Scalars['String']['output']>;
|
|
1384
1870
|
/** The namespace where this role belongs to */
|
|
1385
1871
|
namespace?: Maybe<Namespace>;
|
|
1386
1872
|
/** Time when this NamespaceRole was last updated */
|
|
1387
1873
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
1874
|
+
/** Abilities for the current user on this NamespaceRole */
|
|
1875
|
+
userAbilities?: Maybe<NamespaceRoleUserAbilities>;
|
|
1388
1876
|
}
|
|
1389
1877
|
|
|
1390
1878
|
|
|
@@ -1396,6 +1884,15 @@ export interface NamespaceRoleAssignedProjectsArgs {
|
|
|
1396
1884
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1397
1885
|
}
|
|
1398
1886
|
|
|
1887
|
+
|
|
1888
|
+
/** Represents a namespace role. */
|
|
1889
|
+
export interface NamespaceRoleMembersArgs {
|
|
1890
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1891
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1892
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1893
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1894
|
+
}
|
|
1895
|
+
|
|
1399
1896
|
/** Represents abilities that can be granted to roles in namespaces. */
|
|
1400
1897
|
export const enum NamespaceRoleAbility {
|
|
1401
1898
|
/** Allows to change the roles of a namespace member */
|
|
@@ -1407,7 +1904,7 @@ export const enum NamespaceRoleAbility {
|
|
|
1407
1904
|
/** Allows to change the assigned projects of a namespace role */
|
|
1408
1905
|
AssignRoleProjects = 'ASSIGN_ROLE_PROJECTS',
|
|
1409
1906
|
/** Allows to create flows in a namespace project */
|
|
1410
|
-
|
|
1907
|
+
CreateFlow = 'CREATE_FLOW',
|
|
1411
1908
|
/** Allows to create a license for the namespace */
|
|
1412
1909
|
CreateNamespaceLicense = 'CREATE_NAMESPACE_LICENSE',
|
|
1413
1910
|
/** Allows to create a project in the namespace */
|
|
@@ -1417,7 +1914,7 @@ export const enum NamespaceRoleAbility {
|
|
|
1417
1914
|
/** Allows to create a runtime globally or for the namespace */
|
|
1418
1915
|
CreateRuntime = 'CREATE_RUNTIME',
|
|
1419
1916
|
/** Allows to delete flows in a namespace project */
|
|
1420
|
-
|
|
1917
|
+
DeleteFlow = 'DELETE_FLOW',
|
|
1421
1918
|
/** Allows to remove members of a namespace */
|
|
1422
1919
|
DeleteMember = 'DELETE_MEMBER',
|
|
1423
1920
|
/** Allows to delete the license of the namespace */
|
|
@@ -1441,7 +1938,7 @@ export const enum NamespaceRoleAbility {
|
|
|
1441
1938
|
/** Allows to regenerate a runtime token */
|
|
1442
1939
|
RotateRuntimeToken = 'ROTATE_RUNTIME_TOKEN',
|
|
1443
1940
|
/** Allows to update flows in the project */
|
|
1444
|
-
|
|
1941
|
+
UpdateFlow = 'UPDATE_FLOW',
|
|
1445
1942
|
/** Allows to update the project of the namespace */
|
|
1446
1943
|
UpdateNamespaceProject = 'UPDATE_NAMESPACE_PROJECT',
|
|
1447
1944
|
/** Allows to update the namespace role */
|
|
@@ -1474,6 +1971,34 @@ export interface NamespaceRoleEdge {
|
|
|
1474
1971
|
node?: Maybe<NamespaceRole>;
|
|
1475
1972
|
}
|
|
1476
1973
|
|
|
1974
|
+
/** Abilities for the current user on this NamespaceRole */
|
|
1975
|
+
export interface NamespaceRoleUserAbilities {
|
|
1976
|
+
__typename?: 'NamespaceRoleUserAbilities';
|
|
1977
|
+
/** Shows if the current user has the `assign_role_abilities` ability on this NamespaceRole */
|
|
1978
|
+
assignRoleAbilities?: Maybe<Scalars['Boolean']['output']>;
|
|
1979
|
+
/** Shows if the current user has the `assign_role_projects` ability on this NamespaceRole */
|
|
1980
|
+
assignRoleProjects?: Maybe<Scalars['Boolean']['output']>;
|
|
1981
|
+
/** Shows if the current user has the `delete_namespace_role` ability on this NamespaceRole */
|
|
1982
|
+
deleteNamespaceRole?: Maybe<Scalars['Boolean']['output']>;
|
|
1983
|
+
/** Shows if the current user has the `update_namespace_role` ability on this NamespaceRole */
|
|
1984
|
+
updateNamespaceRole?: Maybe<Scalars['Boolean']['output']>;
|
|
1985
|
+
}
|
|
1986
|
+
|
|
1987
|
+
/** Abilities for the current user on this Namespace */
|
|
1988
|
+
export interface NamespaceUserAbilities {
|
|
1989
|
+
__typename?: 'NamespaceUserAbilities';
|
|
1990
|
+
/** Shows if the current user has the `create_namespace_license` ability on this Namespace */
|
|
1991
|
+
createNamespaceLicense?: Maybe<Scalars['Boolean']['output']>;
|
|
1992
|
+
/** Shows if the current user has the `create_namespace_project` ability on this Namespace */
|
|
1993
|
+
createNamespaceProject?: Maybe<Scalars['Boolean']['output']>;
|
|
1994
|
+
/** Shows if the current user has the `create_namespace_role` ability on this Namespace */
|
|
1995
|
+
createNamespaceRole?: Maybe<Scalars['Boolean']['output']>;
|
|
1996
|
+
/** Shows if the current user has the `create_runtime` ability on this Namespace */
|
|
1997
|
+
createRuntime?: Maybe<Scalars['Boolean']['output']>;
|
|
1998
|
+
/** Shows if the current user has the `invite_member` ability on this Namespace */
|
|
1999
|
+
inviteMember?: Maybe<Scalars['Boolean']['output']>;
|
|
2000
|
+
}
|
|
2001
|
+
|
|
1477
2002
|
/** Autogenerated input type of NamespacesLicensesCreate */
|
|
1478
2003
|
export interface NamespacesLicensesCreateInput {
|
|
1479
2004
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -1531,8 +2056,8 @@ export interface NamespacesMembersAssignRolesPayload {
|
|
|
1531
2056
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
1532
2057
|
/** Errors encountered during execution of the mutation. */
|
|
1533
2058
|
errors?: Maybe<Array<Error>>;
|
|
1534
|
-
/** The
|
|
1535
|
-
|
|
2059
|
+
/** The member which was assigned the roles */
|
|
2060
|
+
member?: Maybe<NamespaceMember>;
|
|
1536
2061
|
}
|
|
1537
2062
|
|
|
1538
2063
|
/** Autogenerated input type of NamespacesMembersDelete */
|
|
@@ -1606,6 +2131,8 @@ export interface NamespacesProjectsCreateInput {
|
|
|
1606
2131
|
name: Scalars['String']['input'];
|
|
1607
2132
|
/** The id of the namespace which this project will belong to */
|
|
1608
2133
|
namespaceId: Scalars['NamespaceID']['input'];
|
|
2134
|
+
/** Slug for the new project. */
|
|
2135
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
1609
2136
|
}
|
|
1610
2137
|
|
|
1611
2138
|
/** Autogenerated return type of NamespacesProjectsCreate. */
|
|
@@ -1678,6 +2205,27 @@ export interface NamespacesProjectsFlowsDeletePayload {
|
|
|
1678
2205
|
flow?: Maybe<Flow>;
|
|
1679
2206
|
}
|
|
1680
2207
|
|
|
2208
|
+
/** Autogenerated input type of NamespacesProjectsFlowsUpdate */
|
|
2209
|
+
export interface NamespacesProjectsFlowsUpdateInput {
|
|
2210
|
+
/** A unique identifier for the client performing the mutation. */
|
|
2211
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
2212
|
+
/** The ID of the flow to update */
|
|
2213
|
+
flowId: Scalars['FlowID']['input'];
|
|
2214
|
+
/** The updated flow */
|
|
2215
|
+
flowInput: FlowInput;
|
|
2216
|
+
}
|
|
2217
|
+
|
|
2218
|
+
/** Autogenerated return type of NamespacesProjectsFlowsUpdate. */
|
|
2219
|
+
export interface NamespacesProjectsFlowsUpdatePayload {
|
|
2220
|
+
__typename?: 'NamespacesProjectsFlowsUpdatePayload';
|
|
2221
|
+
/** A unique identifier for the client performing the mutation. */
|
|
2222
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2223
|
+
/** Errors encountered during execution of the mutation. */
|
|
2224
|
+
errors?: Maybe<Array<Error>>;
|
|
2225
|
+
/** The updated flow. */
|
|
2226
|
+
flow?: Maybe<Flow>;
|
|
2227
|
+
}
|
|
2228
|
+
|
|
1681
2229
|
/** Autogenerated input type of NamespacesProjectsUpdate */
|
|
1682
2230
|
export interface NamespacesProjectsUpdateInput {
|
|
1683
2231
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -1690,6 +2238,8 @@ export interface NamespacesProjectsUpdateInput {
|
|
|
1690
2238
|
namespaceProjectId: Scalars['NamespaceProjectID']['input'];
|
|
1691
2239
|
/** The primary runtime for the updated project. */
|
|
1692
2240
|
primaryRuntimeId?: InputMaybe<Scalars['RuntimeID']['input']>;
|
|
2241
|
+
/** Slug for the updated project. */
|
|
2242
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
1693
2243
|
}
|
|
1694
2244
|
|
|
1695
2245
|
/** Autogenerated return type of NamespacesProjectsUpdate. */
|
|
@@ -1860,10 +2410,19 @@ export interface NodeFunctionEdge {
|
|
|
1860
2410
|
node?: Maybe<NodeFunction>;
|
|
1861
2411
|
}
|
|
1862
2412
|
|
|
2413
|
+
/** Represents a Node Function id wrapper. */
|
|
2414
|
+
export interface NodeFunctionIdWrapper {
|
|
2415
|
+
__typename?: 'NodeFunctionIdWrapper';
|
|
2416
|
+
/** Global ID of this NodeFunctionIdWrapper */
|
|
2417
|
+
id?: Maybe<Scalars['NodeFunctionID']['output']>;
|
|
2418
|
+
}
|
|
2419
|
+
|
|
1863
2420
|
/** Input type for a Node Function */
|
|
1864
2421
|
export interface NodeFunctionInput {
|
|
2422
|
+
/** The identifier of the Node Function used to create/update the flow */
|
|
2423
|
+
id: Scalars['NodeFunctionID']['input'];
|
|
1865
2424
|
/** The next Node Function in the flow */
|
|
1866
|
-
|
|
2425
|
+
nextNodeId?: InputMaybe<Scalars['NodeFunctionID']['input']>;
|
|
1867
2426
|
/** The parameters of the Node Function */
|
|
1868
2427
|
parameters: Array<NodeParameterInput>;
|
|
1869
2428
|
/** The identifier of the Runtime Function Definition */
|
|
@@ -1916,18 +2475,37 @@ export interface NodeParameterInput {
|
|
|
1916
2475
|
}
|
|
1917
2476
|
|
|
1918
2477
|
/** Represents a parameter value for a node. */
|
|
1919
|
-
export type NodeParameterValue = LiteralValue |
|
|
2478
|
+
export type NodeParameterValue = LiteralValue | NodeFunctionIdWrapper | ReferenceValue;
|
|
1920
2479
|
|
|
1921
2480
|
/** Input type for parameter value */
|
|
1922
2481
|
export interface NodeParameterValueInput {
|
|
1923
|
-
/** The function value of the parameter */
|
|
1924
|
-
functionValue?: InputMaybe<NodeFunctionInput>;
|
|
1925
2482
|
/** The literal value of the parameter */
|
|
1926
2483
|
literalValue?: InputMaybe<Scalars['JSON']['input']>;
|
|
2484
|
+
/** The function value of the parameter as an id */
|
|
2485
|
+
nodeFunctionId?: InputMaybe<Scalars['NodeFunctionID']['input']>;
|
|
1927
2486
|
/** The reference value of the parameter */
|
|
1928
2487
|
referenceValue?: InputMaybe<ReferenceValueInput>;
|
|
1929
2488
|
}
|
|
1930
2489
|
|
|
2490
|
+
/** Represents an OIDC identity provider configuration */
|
|
2491
|
+
export interface OidcIdentityProviderConfig {
|
|
2492
|
+
__typename?: 'OidcIdentityProviderConfig';
|
|
2493
|
+
/** List of attribute statements for the OIDC identity provider */
|
|
2494
|
+
attributeStatements?: Maybe<Scalars['JSON']['output']>;
|
|
2495
|
+
/** The authorization URL for the OIDC identity provider */
|
|
2496
|
+
authorizationUrl?: Maybe<Scalars['String']['output']>;
|
|
2497
|
+
/** The client ID for the OIDC identity provider */
|
|
2498
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
2499
|
+
/** The client secret for the OIDC identity provider */
|
|
2500
|
+
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
2501
|
+
/** The name of the OIDC identity provider */
|
|
2502
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
2503
|
+
/** The redirect URI for the OIDC identity provider */
|
|
2504
|
+
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
2505
|
+
/** The user details URL for the OIDC identity provider */
|
|
2506
|
+
userDetailsUrl?: Maybe<Scalars['String']['output']>;
|
|
2507
|
+
}
|
|
2508
|
+
|
|
1931
2509
|
/** Represents a Organization */
|
|
1932
2510
|
export interface Organization {
|
|
1933
2511
|
__typename?: 'Organization';
|
|
@@ -1941,6 +2519,39 @@ export interface Organization {
|
|
|
1941
2519
|
namespace?: Maybe<Namespace>;
|
|
1942
2520
|
/** Time when this Organization was last updated */
|
|
1943
2521
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
2522
|
+
/** Abilities for the current user on this Organization */
|
|
2523
|
+
userAbilities?: Maybe<OrganizationUserAbilities>;
|
|
2524
|
+
}
|
|
2525
|
+
|
|
2526
|
+
/** The connection type for Organization. */
|
|
2527
|
+
export interface OrganizationConnection {
|
|
2528
|
+
__typename?: 'OrganizationConnection';
|
|
2529
|
+
/** Total count of collection. */
|
|
2530
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
2531
|
+
/** A list of edges. */
|
|
2532
|
+
edges?: Maybe<Array<Maybe<OrganizationEdge>>>;
|
|
2533
|
+
/** A list of nodes. */
|
|
2534
|
+
nodes?: Maybe<Array<Maybe<Organization>>>;
|
|
2535
|
+
/** Information to aid in pagination. */
|
|
2536
|
+
pageInfo?: Maybe<PageInfo>;
|
|
2537
|
+
}
|
|
2538
|
+
|
|
2539
|
+
/** An edge in a connection. */
|
|
2540
|
+
export interface OrganizationEdge {
|
|
2541
|
+
__typename?: 'OrganizationEdge';
|
|
2542
|
+
/** A cursor for use in pagination. */
|
|
2543
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
2544
|
+
/** The item at the end of the edge. */
|
|
2545
|
+
node?: Maybe<Organization>;
|
|
2546
|
+
}
|
|
2547
|
+
|
|
2548
|
+
/** Abilities for the current user on this Organization */
|
|
2549
|
+
export interface OrganizationUserAbilities {
|
|
2550
|
+
__typename?: 'OrganizationUserAbilities';
|
|
2551
|
+
/** Shows if the current user has the `delete_organization` ability on this Organization */
|
|
2552
|
+
deleteOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
2553
|
+
/** Shows if the current user has the `update_organization` ability on this Organization */
|
|
2554
|
+
updateOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
1944
2555
|
}
|
|
1945
2556
|
|
|
1946
2557
|
/** Autogenerated input type of OrganizationsCreate */
|
|
@@ -2023,46 +2634,19 @@ export interface ParameterDefinition {
|
|
|
2023
2634
|
/** Data type of the parameter */
|
|
2024
2635
|
dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
|
|
2025
2636
|
/** Description of the parameter */
|
|
2026
|
-
descriptions?: Maybe<
|
|
2637
|
+
descriptions?: Maybe<Array<Translation>>;
|
|
2027
2638
|
/** Documentation of the parameter */
|
|
2028
|
-
documentations?: Maybe<
|
|
2639
|
+
documentations?: Maybe<Array<Translation>>;
|
|
2029
2640
|
/** Global ID of this ParameterDefinition */
|
|
2030
2641
|
id?: Maybe<Scalars['ParameterDefinitionID']['output']>;
|
|
2031
2642
|
/** Identifier of the parameter */
|
|
2032
2643
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
2033
2644
|
/** Name of the parameter */
|
|
2034
|
-
names?: Maybe<
|
|
2645
|
+
names?: Maybe<Array<Translation>>;
|
|
2035
2646
|
/** Time when this ParameterDefinition was last updated */
|
|
2036
2647
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
2037
2648
|
}
|
|
2038
2649
|
|
|
2039
|
-
|
|
2040
|
-
/** Represents a parameter definition */
|
|
2041
|
-
export interface ParameterDefinitionDescriptionsArgs {
|
|
2042
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
2043
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
2044
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2045
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2046
|
-
}
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
/** Represents a parameter definition */
|
|
2050
|
-
export interface ParameterDefinitionDocumentationsArgs {
|
|
2051
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
2052
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
2053
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2054
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2055
|
-
}
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
/** Represents a parameter definition */
|
|
2059
|
-
export interface ParameterDefinitionNamesArgs {
|
|
2060
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
2061
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
2062
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2063
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2064
|
-
}
|
|
2065
|
-
|
|
2066
2650
|
/** The connection type for ParameterDefinition. */
|
|
2067
2651
|
export interface ParameterDefinitionConnection {
|
|
2068
2652
|
__typename?: 'ParameterDefinitionConnection';
|
|
@@ -2088,8 +2672,8 @@ export interface ParameterDefinitionEdge {
|
|
|
2088
2672
|
/** Root Query type */
|
|
2089
2673
|
export interface Query {
|
|
2090
2674
|
__typename?: 'Query';
|
|
2091
|
-
/** Get
|
|
2092
|
-
|
|
2675
|
+
/** Get application information */
|
|
2676
|
+
application?: Maybe<Application>;
|
|
2093
2677
|
/** Get the currently logged in authentication */
|
|
2094
2678
|
currentAuthentication?: Maybe<Authentication>;
|
|
2095
2679
|
/** Get the currently logged in user */
|
|
@@ -2106,6 +2690,10 @@ export interface Query {
|
|
|
2106
2690
|
nodes?: Maybe<Array<Maybe<Node>>>;
|
|
2107
2691
|
/** Find a organization */
|
|
2108
2692
|
organization?: Maybe<Organization>;
|
|
2693
|
+
/** Find organizations */
|
|
2694
|
+
organizations?: Maybe<OrganizationConnection>;
|
|
2695
|
+
/** Find a user */
|
|
2696
|
+
user?: Maybe<User>;
|
|
2109
2697
|
/** Find users */
|
|
2110
2698
|
users?: Maybe<UserConnection>;
|
|
2111
2699
|
}
|
|
@@ -2151,6 +2739,22 @@ export interface QueryOrganizationArgs {
|
|
|
2151
2739
|
}
|
|
2152
2740
|
|
|
2153
2741
|
|
|
2742
|
+
/** Root Query type */
|
|
2743
|
+
export interface QueryOrganizationsArgs {
|
|
2744
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
2745
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
2746
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2747
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2748
|
+
}
|
|
2749
|
+
|
|
2750
|
+
|
|
2751
|
+
/** Root Query type */
|
|
2752
|
+
export interface QueryUserArgs {
|
|
2753
|
+
id?: InputMaybe<Scalars['UserID']['input']>;
|
|
2754
|
+
username?: InputMaybe<Scalars['String']['input']>;
|
|
2755
|
+
}
|
|
2756
|
+
|
|
2757
|
+
|
|
2154
2758
|
/** Root Query type */
|
|
2155
2759
|
export interface QueryUsersArgs {
|
|
2156
2760
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2195,6 +2799,8 @@ export interface ReferenceValue {
|
|
|
2195
2799
|
id?: Maybe<Scalars['ReferenceValueID']['output']>;
|
|
2196
2800
|
/** The node of the reference value. */
|
|
2197
2801
|
node?: Maybe<Scalars['Int']['output']>;
|
|
2802
|
+
/** The referenced value. */
|
|
2803
|
+
nodeFunctionId?: Maybe<Scalars['NodeFunctionID']['output']>;
|
|
2198
2804
|
/** The paths associated with this reference value. */
|
|
2199
2805
|
referencePath?: Maybe<Array<ReferencePath>>;
|
|
2200
2806
|
/** The scope of the reference value. */
|
|
@@ -2207,14 +2813,16 @@ export interface ReferenceValue {
|
|
|
2207
2813
|
export interface ReferenceValueInput {
|
|
2208
2814
|
/** The identifier of the data type this reference value belongs to */
|
|
2209
2815
|
dataTypeIdentifier: DataTypeIdentifierInput;
|
|
2210
|
-
/** The
|
|
2211
|
-
|
|
2816
|
+
/** The depth of the reference value */
|
|
2817
|
+
depth: Scalars['Int']['input'];
|
|
2818
|
+
/** The node of the reference */
|
|
2819
|
+
node: Scalars['Int']['input'];
|
|
2820
|
+
/** The referenced value */
|
|
2821
|
+
nodeFunctionId: Scalars['NodeFunctionID']['input'];
|
|
2212
2822
|
/** The paths associated with this reference value */
|
|
2213
2823
|
referencePath: Array<ReferencePathInput>;
|
|
2214
|
-
/** The
|
|
2215
|
-
|
|
2216
|
-
/** The tertiary level of the reference value */
|
|
2217
|
-
tertiaryLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
2824
|
+
/** The scope of the reference value */
|
|
2825
|
+
scope: Array<Scalars['Int']['input']>;
|
|
2218
2826
|
}
|
|
2219
2827
|
|
|
2220
2828
|
/** Represents a runtime */
|
|
@@ -2228,6 +2836,8 @@ export interface Runtime {
|
|
|
2228
2836
|
description?: Maybe<Scalars['String']['output']>;
|
|
2229
2837
|
/** FlowTypes of the runtime */
|
|
2230
2838
|
flowTypes?: Maybe<FlowTypeConnection>;
|
|
2839
|
+
/** Function definitions of the runtime */
|
|
2840
|
+
functionDefinitions?: Maybe<FunctionDefinitionConnection>;
|
|
2231
2841
|
/** Global ID of this Runtime */
|
|
2232
2842
|
id?: Maybe<Scalars['RuntimeID']['output']>;
|
|
2233
2843
|
/** The name for the runtime */
|
|
@@ -2242,6 +2852,8 @@ export interface Runtime {
|
|
|
2242
2852
|
token?: Maybe<Scalars['String']['output']>;
|
|
2243
2853
|
/** Time when this Runtime was last updated */
|
|
2244
2854
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
2855
|
+
/** Abilities for the current user on this Runtime */
|
|
2856
|
+
userAbilities?: Maybe<RuntimeUserAbilities>;
|
|
2245
2857
|
}
|
|
2246
2858
|
|
|
2247
2859
|
|
|
@@ -2263,6 +2875,15 @@ export interface RuntimeFlowTypesArgs {
|
|
|
2263
2875
|
}
|
|
2264
2876
|
|
|
2265
2877
|
|
|
2878
|
+
/** Represents a runtime */
|
|
2879
|
+
export interface RuntimeFunctionDefinitionsArgs {
|
|
2880
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
2881
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
2882
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2883
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2884
|
+
}
|
|
2885
|
+
|
|
2886
|
+
|
|
2266
2887
|
/** Represents a runtime */
|
|
2267
2888
|
export interface RuntimeProjectsArgs {
|
|
2268
2889
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2337,6 +2958,8 @@ export interface RuntimeParameterDefinition {
|
|
|
2337
2958
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
2338
2959
|
/** Global ID of this RuntimeParameterDefinition */
|
|
2339
2960
|
id?: Maybe<Scalars['RuntimeParameterDefinitionID']['output']>;
|
|
2961
|
+
/** Identifier of the runtime parameter definition */
|
|
2962
|
+
identifier?: Maybe<Scalars['String']['output']>;
|
|
2340
2963
|
/** Time when this RuntimeParameterDefinition was last updated */
|
|
2341
2964
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
2342
2965
|
}
|
|
@@ -2371,6 +2994,17 @@ export const enum RuntimeStatusType {
|
|
|
2371
2994
|
Disconnected = 'DISCONNECTED'
|
|
2372
2995
|
}
|
|
2373
2996
|
|
|
2997
|
+
/** Abilities for the current user on this Runtime */
|
|
2998
|
+
export interface RuntimeUserAbilities {
|
|
2999
|
+
__typename?: 'RuntimeUserAbilities';
|
|
3000
|
+
/** Shows if the current user has the `delete_runtime` ability on this Runtime */
|
|
3001
|
+
deleteRuntime?: Maybe<Scalars['Boolean']['output']>;
|
|
3002
|
+
/** Shows if the current user has the `rotate_runtime_token` ability on this Runtime */
|
|
3003
|
+
rotateRuntimeToken?: Maybe<Scalars['Boolean']['output']>;
|
|
3004
|
+
/** Shows if the current user has the `update_runtime` ability on this Runtime */
|
|
3005
|
+
updateRuntime?: Maybe<Scalars['Boolean']['output']>;
|
|
3006
|
+
}
|
|
3007
|
+
|
|
2374
3008
|
/** Autogenerated input type of RuntimesCreate */
|
|
2375
3009
|
export interface RuntimesCreateInput {
|
|
2376
3010
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -2455,6 +3089,21 @@ export interface RuntimesUpdatePayload {
|
|
|
2455
3089
|
runtime?: Maybe<Runtime>;
|
|
2456
3090
|
}
|
|
2457
3091
|
|
|
3092
|
+
/** Represents the configuration for a SAML identity provider. */
|
|
3093
|
+
export interface SamlIdentityProviderConfig {
|
|
3094
|
+
__typename?: 'SamlIdentityProviderConfig';
|
|
3095
|
+
/** List of attribute statements for the SAML identity provider */
|
|
3096
|
+
attributeStatements?: Maybe<Scalars['JSON']['output']>;
|
|
3097
|
+
/** The metadata url to fetch the metadatas (replacement for settings) */
|
|
3098
|
+
metadataUrl?: Maybe<Scalars['String']['output']>;
|
|
3099
|
+
/** The name of the SAML identity provider */
|
|
3100
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
3101
|
+
/** The SAML response settings for the identity provider */
|
|
3102
|
+
responseSettings?: Maybe<Scalars['JSON']['output']>;
|
|
3103
|
+
/** The SAML settings for the identity provider */
|
|
3104
|
+
settings?: Maybe<Scalars['JSON']['output']>;
|
|
3105
|
+
}
|
|
3106
|
+
|
|
2458
3107
|
/** Represents a translation */
|
|
2459
3108
|
export interface Translation {
|
|
2460
3109
|
__typename?: 'Translation';
|
|
@@ -2464,28 +3113,6 @@ export interface Translation {
|
|
|
2464
3113
|
content?: Maybe<Scalars['String']['output']>;
|
|
2465
3114
|
}
|
|
2466
3115
|
|
|
2467
|
-
/** The connection type for Translation. */
|
|
2468
|
-
export interface TranslationConnection {
|
|
2469
|
-
__typename?: 'TranslationConnection';
|
|
2470
|
-
/** Total count of collection. */
|
|
2471
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
2472
|
-
/** A list of edges. */
|
|
2473
|
-
edges?: Maybe<Array<Maybe<TranslationEdge>>>;
|
|
2474
|
-
/** A list of nodes. */
|
|
2475
|
-
nodes?: Maybe<Array<Maybe<Translation>>>;
|
|
2476
|
-
/** Information to aid in pagination. */
|
|
2477
|
-
pageInfo?: Maybe<PageInfo>;
|
|
2478
|
-
}
|
|
2479
|
-
|
|
2480
|
-
/** An edge in a connection. */
|
|
2481
|
-
export interface TranslationEdge {
|
|
2482
|
-
__typename?: 'TranslationEdge';
|
|
2483
|
-
/** A cursor for use in pagination. */
|
|
2484
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
2485
|
-
/** The item at the end of the edge. */
|
|
2486
|
-
node?: Maybe<Translation>;
|
|
2487
|
-
}
|
|
2488
|
-
|
|
2489
3116
|
/** Represents a user */
|
|
2490
3117
|
export interface User {
|
|
2491
3118
|
__typename?: 'User';
|
|
@@ -2507,6 +3134,8 @@ export interface User {
|
|
|
2507
3134
|
identities?: Maybe<UserIdentityConnection>;
|
|
2508
3135
|
/** Lastname of the user */
|
|
2509
3136
|
lastname?: Maybe<Scalars['String']['output']>;
|
|
3137
|
+
/** Multi-factor authentication status of this user */
|
|
3138
|
+
mfaStatus?: Maybe<MfaStatus>;
|
|
2510
3139
|
/** Namespace of this user */
|
|
2511
3140
|
namespace?: Maybe<Namespace>;
|
|
2512
3141
|
/** Namespace Memberships of this user */
|
|
@@ -2515,6 +3144,8 @@ export interface User {
|
|
|
2515
3144
|
sessions?: Maybe<UserSessionConnection>;
|
|
2516
3145
|
/** Time when this User was last updated */
|
|
2517
3146
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
3147
|
+
/** Abilities for the current user on this User */
|
|
3148
|
+
userAbilities?: Maybe<UserUserAbilities>;
|
|
2518
3149
|
/** Username of the user */
|
|
2519
3150
|
username?: Maybe<Scalars['String']['output']>;
|
|
2520
3151
|
}
|
|
@@ -2622,6 +3253,8 @@ export interface UserSession {
|
|
|
2622
3253
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
2623
3254
|
/** User that belongs to the session */
|
|
2624
3255
|
user?: Maybe<User>;
|
|
3256
|
+
/** Abilities for the current user on this UserSession */
|
|
3257
|
+
userAbilities?: Maybe<UserSessionUserAbilities>;
|
|
2625
3258
|
}
|
|
2626
3259
|
|
|
2627
3260
|
/** The connection type for UserSession. */
|
|
@@ -2646,6 +3279,72 @@ export interface UserSessionEdge {
|
|
|
2646
3279
|
node?: Maybe<UserSession>;
|
|
2647
3280
|
}
|
|
2648
3281
|
|
|
3282
|
+
/** Abilities for the current user on this UserSession */
|
|
3283
|
+
export interface UserSessionUserAbilities {
|
|
3284
|
+
__typename?: 'UserSessionUserAbilities';
|
|
3285
|
+
/** Shows if the current user has the `logout_session` ability on this UserSession */
|
|
3286
|
+
logoutSession?: Maybe<Scalars['Boolean']['output']>;
|
|
3287
|
+
}
|
|
3288
|
+
|
|
3289
|
+
/** Abilities for the current user on this User */
|
|
3290
|
+
export interface UserUserAbilities {
|
|
3291
|
+
__typename?: 'UserUserAbilities';
|
|
3292
|
+
/** Shows if the current user has the `manage_mfa` ability on this User */
|
|
3293
|
+
manageMfa?: Maybe<Scalars['Boolean']['output']>;
|
|
3294
|
+
/** Shows if the current user has the `update_user` ability on this User */
|
|
3295
|
+
updateUser?: Maybe<Scalars['Boolean']['output']>;
|
|
3296
|
+
}
|
|
3297
|
+
|
|
3298
|
+
/** Autogenerated input type of UsersCreate */
|
|
3299
|
+
export interface UsersCreateInput {
|
|
3300
|
+
/** Admin status for the user. */
|
|
3301
|
+
admin?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3302
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3303
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3304
|
+
/** Email for the user. */
|
|
3305
|
+
email: Scalars['String']['input'];
|
|
3306
|
+
/** Firstname for the user. */
|
|
3307
|
+
firstname?: InputMaybe<Scalars['String']['input']>;
|
|
3308
|
+
/** Lastname for the user. */
|
|
3309
|
+
lastname?: InputMaybe<Scalars['String']['input']>;
|
|
3310
|
+
/** Password for the user. */
|
|
3311
|
+
password: Scalars['String']['input'];
|
|
3312
|
+
/** Password repeat for the user to check for typos. */
|
|
3313
|
+
passwordRepeat: Scalars['String']['input'];
|
|
3314
|
+
/** Username for the user. */
|
|
3315
|
+
username: Scalars['String']['input'];
|
|
3316
|
+
}
|
|
3317
|
+
|
|
3318
|
+
/** Autogenerated return type of UsersCreate. */
|
|
3319
|
+
export interface UsersCreatePayload {
|
|
3320
|
+
__typename?: 'UsersCreatePayload';
|
|
3321
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3322
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3323
|
+
/** Errors encountered during execution of the mutation. */
|
|
3324
|
+
errors?: Maybe<Array<Error>>;
|
|
3325
|
+
/** The created user. */
|
|
3326
|
+
user?: Maybe<User>;
|
|
3327
|
+
}
|
|
3328
|
+
|
|
3329
|
+
/** Autogenerated input type of UsersDelete */
|
|
3330
|
+
export interface UsersDeleteInput {
|
|
3331
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3332
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3333
|
+
/** The user to delete. */
|
|
3334
|
+
userId: Scalars['UserID']['input'];
|
|
3335
|
+
}
|
|
3336
|
+
|
|
3337
|
+
/** Autogenerated return type of UsersDelete. */
|
|
3338
|
+
export interface UsersDeletePayload {
|
|
3339
|
+
__typename?: 'UsersDeletePayload';
|
|
3340
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3341
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3342
|
+
/** Errors encountered during execution of the mutation. */
|
|
3343
|
+
errors?: Maybe<Array<Error>>;
|
|
3344
|
+
/** The deleted user. */
|
|
3345
|
+
user?: Maybe<User>;
|
|
3346
|
+
}
|
|
3347
|
+
|
|
2649
3348
|
/** Autogenerated input type of UsersEmailVerification */
|
|
2650
3349
|
export interface UsersEmailVerificationInput {
|
|
2651
3350
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -2849,6 +3548,48 @@ export interface UsersMfaTotpValidateSecretPayload {
|
|
|
2849
3548
|
user?: Maybe<User>;
|
|
2850
3549
|
}
|
|
2851
3550
|
|
|
3551
|
+
/** Autogenerated input type of UsersPasswordReset */
|
|
3552
|
+
export interface UsersPasswordResetInput {
|
|
3553
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3554
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3555
|
+
/** The new password to set for the user */
|
|
3556
|
+
newPassword: Scalars['String']['input'];
|
|
3557
|
+
/** The confirmation of the new password to set for the user needs to be the same as the new password */
|
|
3558
|
+
newPasswordConfirmation: Scalars['String']['input'];
|
|
3559
|
+
/** The password reset token sent to the user email */
|
|
3560
|
+
resetToken: Scalars['String']['input'];
|
|
3561
|
+
}
|
|
3562
|
+
|
|
3563
|
+
/** Autogenerated return type of UsersPasswordReset. */
|
|
3564
|
+
export interface UsersPasswordResetPayload {
|
|
3565
|
+
__typename?: 'UsersPasswordResetPayload';
|
|
3566
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3567
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3568
|
+
/** Errors encountered during execution of the mutation. */
|
|
3569
|
+
errors?: Maybe<Array<Error>>;
|
|
3570
|
+
/** A message indicating the result of the password reset request */
|
|
3571
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3572
|
+
}
|
|
3573
|
+
|
|
3574
|
+
/** Autogenerated input type of UsersPasswordResetRequest */
|
|
3575
|
+
export interface UsersPasswordResetRequestInput {
|
|
3576
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3577
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3578
|
+
/** Email of the user to reset the password */
|
|
3579
|
+
email: Scalars['String']['input'];
|
|
3580
|
+
}
|
|
3581
|
+
|
|
3582
|
+
/** Autogenerated return type of UsersPasswordResetRequest. */
|
|
3583
|
+
export interface UsersPasswordResetRequestPayload {
|
|
3584
|
+
__typename?: 'UsersPasswordResetRequestPayload';
|
|
3585
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3586
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3587
|
+
/** Errors encountered during execution of the mutation. */
|
|
3588
|
+
errors?: Maybe<Array<Error>>;
|
|
3589
|
+
/** A message indicating the result of the password reset request */
|
|
3590
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3591
|
+
}
|
|
3592
|
+
|
|
2852
3593
|
/** Autogenerated input type of UsersRegister */
|
|
2853
3594
|
export interface UsersRegisterInput {
|
|
2854
3595
|
/** A unique identifier for the client performing the mutation. */
|