@code0-tech/sagittarius-graphql-types 0.0.0-3dbc1d7dffaa541501b2cb0954dabc06a9288cf6 → 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.
Files changed (3) hide show
  1. package/index.d.ts +959 -172
  2. package/package.json +2 -3
  3. package/index.js +0 -0
package/index.d.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  export type Maybe<T> = T | null;
2
2
  export type InputMaybe<T> = Maybe<T>;
3
- export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
4
- export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
5
- export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
6
- export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
7
- export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
3
+ export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] }
4
+ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> }
5
+ export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> }
6
+ export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never }
7
+ export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }
8
8
  /** All built-in and custom scalars, mapped to their actual values */
9
9
  export interface Scalars {
10
10
  ID: { input: `gid://sagittarius//${number}`; output: `gid://sagittarius//${number}`; }
@@ -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<TranslationConnection>;
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 DataTypeNameArgs {
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
- /** The identifier of the data type this rule belongs to */
225
- dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
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,17 +320,17 @@ 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
- /** The identifier of the data type this rule belongs to */
234
- dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
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
- /** The identifier of the data type this input type belongs to */
241
- dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
242
- /** The input data type that this configuration applies to */
243
- inputType?: Maybe<DataType>;
330
+ /** ID of the identifier of the data type this input type belongs to */
331
+ dataTypeIdentifierId?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
332
+ /** The input identifier that this configuration applies to */
333
+ inputIdentifier?: Maybe<Scalars['String']['output']>;
244
334
  }
245
335
 
246
336
  /** Represents a rule that can be applied to a data type. */
@@ -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
- /** The data type identifier for the parent type. */
275
- dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
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,17 +376,17 @@ export interface DataTypeRulesRegexConfig {
286
376
  export interface DataTypeRulesReturnTypeConfig {
287
377
  __typename?: 'DataTypeRulesReturnTypeConfig';
288
378
  /** The data type identifier for the return type. */
289
- dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
379
+ dataTypeIdentifierId?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
290
380
  }
291
381
 
292
382
  /** The type of rule that can be applied to a data type. */
293
- export enum DataTypeRulesVariant {
383
+ export const enum DataTypeRulesVariant {
294
384
  /** The rule checks if a key is present in the data type. */
295
385
  ContainsKey = 'CONTAINS_KEY',
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
- InputType = 'INPUT_TYPE',
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. */
@@ -310,7 +400,7 @@ export enum DataTypeRulesVariant {
310
400
  }
311
401
 
312
402
  /** Represent all available types of a datatype */
313
- export enum DataTypeVariant {
403
+ export const enum DataTypeVariant {
314
404
  /** Represents an array */
315
405
  Array = 'ARRAY',
316
406
  /** Represents an data type containing a data type */
@@ -327,6 +417,9 @@ export 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 type Error = ActiveModelError | MessageError;
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
- startingNode: NodeFunctionInput;
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
- flowSettingId: Scalars['String']['input'];
742
+ flowSettingIdentifier: Scalars['String']['input'];
466
743
  /** The value of the flow setting */
467
- object: Scalars['JSON']['input'];
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<TranslationConnection>;
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['TypesFlowTypeID']['output']>;
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<TranslationConnection>;
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<TranslationConnection>;
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<TranslationConnection>;
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
- /** Represents a flow type setting */
560
- export interface FlowTypeSettingDescriptionsArgs {
561
- after?: InputMaybe<Scalars['String']['input']>;
562
- before?: InputMaybe<Scalars['String']['input']>;
563
- first?: InputMaybe<Scalars['Int']['input']>;
564
- last?: InputMaybe<Scalars['Int']['input']>;
565
- }
566
-
567
-
568
- /** Represents a flow type setting */
569
- export interface FlowTypeSettingNamesArgs {
570
- after?: InputMaybe<Scalars['String']['input']>;
571
- before?: InputMaybe<Scalars['String']['input']>;
572
- first?: InputMaybe<Scalars['Int']['input']>;
573
- last?: InputMaybe<Scalars['Int']['input']>;
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<TranslationConnection>;
883
+ deprecationMessages?: Maybe<Array<Translation>>;
583
884
  /** Description of the function */
584
- descriptions?: Maybe<TranslationConnection>;
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<TranslationConnection>;
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<TranslationConnection>;
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 FunctionDefinitionDeprecationMessagesArgs {
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']>;
@@ -687,7 +963,7 @@ export interface GenericCombinationStrategy {
687
963
  }
688
964
 
689
965
  /** The available combination strategy types. */
690
- export enum GenericCombinationStrategyType {
966
+ export const enum GenericCombinationStrategyType {
691
967
  /** Represents a logical AND combination. */
692
968
  And = 'AND',
693
969
  /** Represents a logical OR combination. */
@@ -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
- sourceDataTypeIdentifiers?: Maybe<Array<DataTypeIdentifier>>;
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
- sources: Array<DataTypeIdentifierInput>;
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,8 +1147,19 @@ 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
- export enum MfaType {
1162
+ export const enum MfaType {
779
1163
  /** Single use backup code */
780
1164
  BackupCode = 'BACKUP_CODE',
781
1165
  /** Time based onetime password */
@@ -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';
@@ -1205,12 +1650,36 @@ export interface NamespaceMember {
1205
1650
  createdAt?: Maybe<Scalars['Time']['output']>;
1206
1651
  /** Global ID of this NamespaceMember */
1207
1652
  id?: Maybe<Scalars['NamespaceMemberID']['output']>;
1653
+ /** Memberroles of the member */
1654
+ memberRoles?: Maybe<NamespaceMemberRoleConnection>;
1208
1655
  /** Namespace this member belongs to */
1209
1656
  namespace?: Maybe<Namespace>;
1657
+ /** Roles of the member */
1658
+ roles?: Maybe<NamespaceRoleConnection>;
1210
1659
  /** Time when this NamespaceMember was last updated */
1211
1660
  updatedAt?: Maybe<Scalars['Time']['output']>;
1212
1661
  /** User this member belongs to */
1213
1662
  user?: Maybe<User>;
1663
+ /** Abilities for the current user on this NamespaceMember */
1664
+ userAbilities?: Maybe<NamespaceMemberUserAbilities>;
1665
+ }
1666
+
1667
+
1668
+ /** Represents a namespace member */
1669
+ export interface NamespaceMemberMemberRolesArgs {
1670
+ after?: InputMaybe<Scalars['String']['input']>;
1671
+ before?: InputMaybe<Scalars['String']['input']>;
1672
+ first?: InputMaybe<Scalars['Int']['input']>;
1673
+ last?: InputMaybe<Scalars['Int']['input']>;
1674
+ }
1675
+
1676
+
1677
+ /** Represents a namespace member */
1678
+ export interface NamespaceMemberRolesArgs {
1679
+ after?: InputMaybe<Scalars['String']['input']>;
1680
+ before?: InputMaybe<Scalars['String']['input']>;
1681
+ first?: InputMaybe<Scalars['Int']['input']>;
1682
+ last?: InputMaybe<Scalars['Int']['input']>;
1214
1683
  }
1215
1684
 
1216
1685
  /** The connection type for NamespaceMember. */
@@ -1250,6 +1719,37 @@ export interface NamespaceMemberRole {
1250
1719
  updatedAt?: Maybe<Scalars['Time']['output']>;
1251
1720
  }
1252
1721
 
1722
+ /** The connection type for NamespaceMemberRole. */
1723
+ export interface NamespaceMemberRoleConnection {
1724
+ __typename?: 'NamespaceMemberRoleConnection';
1725
+ /** Total count of collection. */
1726
+ count?: Maybe<Scalars['Int']['output']>;
1727
+ /** A list of edges. */
1728
+ edges?: Maybe<Array<Maybe<NamespaceMemberRoleEdge>>>;
1729
+ /** A list of nodes. */
1730
+ nodes?: Maybe<Array<Maybe<NamespaceMemberRole>>>;
1731
+ /** Information to aid in pagination. */
1732
+ pageInfo?: Maybe<PageInfo>;
1733
+ }
1734
+
1735
+ /** An edge in a connection. */
1736
+ export interface NamespaceMemberRoleEdge {
1737
+ __typename?: 'NamespaceMemberRoleEdge';
1738
+ /** A cursor for use in pagination. */
1739
+ cursor?: Maybe<Scalars['String']['output']>;
1740
+ /** The item at the end of the edge. */
1741
+ node?: Maybe<NamespaceMemberRole>;
1742
+ }
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
+
1253
1753
  /** Objects that can present a namespace */
1254
1754
  export type NamespaceParent = Organization | User;
1255
1755
 
@@ -1272,10 +1772,16 @@ export interface NamespaceProject {
1272
1772
  namespace?: Maybe<Namespace>;
1273
1773
  /** The primary runtime for the project */
1274
1774
  primaryRuntime?: Maybe<Runtime>;
1775
+ /** Roles assigned to this project */
1776
+ roles?: Maybe<NamespaceRoleConnection>;
1275
1777
  /** Runtimes assigned to this project */
1276
1778
  runtimes?: Maybe<RuntimeConnection>;
1779
+ /** Slug of the project used in URLs to identify flows */
1780
+ slug?: Maybe<Scalars['String']['output']>;
1277
1781
  /** Time when this NamespaceProject was last updated */
1278
1782
  updatedAt?: Maybe<Scalars['Time']['output']>;
1783
+ /** Abilities for the current user on this NamespaceProject */
1784
+ userAbilities?: Maybe<NamespaceProjectUserAbilities>;
1279
1785
  }
1280
1786
 
1281
1787
 
@@ -1294,6 +1800,15 @@ export interface NamespaceProjectFlowsArgs {
1294
1800
  }
1295
1801
 
1296
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
+
1297
1812
  /** Represents a namespace project */
1298
1813
  export interface NamespaceProjectRuntimesArgs {
1299
1814
  after?: InputMaybe<Scalars['String']['input']>;
@@ -1324,6 +1839,19 @@ export interface NamespaceProjectEdge {
1324
1839
  node?: Maybe<NamespaceProject>;
1325
1840
  }
1326
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
+
1327
1855
  /** Represents a namespace role. */
1328
1856
  export interface NamespaceRole {
1329
1857
  __typename?: 'NamespaceRole';
@@ -1335,12 +1863,16 @@ export interface NamespaceRole {
1335
1863
  createdAt?: Maybe<Scalars['Time']['output']>;
1336
1864
  /** Global ID of this NamespaceRole */
1337
1865
  id?: Maybe<Scalars['NamespaceRoleID']['output']>;
1866
+ /** The members this role is assigned to */
1867
+ members?: Maybe<NamespaceMemberConnection>;
1338
1868
  /** The name of this role */
1339
1869
  name?: Maybe<Scalars['String']['output']>;
1340
1870
  /** The namespace where this role belongs to */
1341
1871
  namespace?: Maybe<Namespace>;
1342
1872
  /** Time when this NamespaceRole was last updated */
1343
1873
  updatedAt?: Maybe<Scalars['Time']['output']>;
1874
+ /** Abilities for the current user on this NamespaceRole */
1875
+ userAbilities?: Maybe<NamespaceRoleUserAbilities>;
1344
1876
  }
1345
1877
 
1346
1878
 
@@ -1352,8 +1884,17 @@ export interface NamespaceRoleAssignedProjectsArgs {
1352
1884
  last?: InputMaybe<Scalars['Int']['input']>;
1353
1885
  }
1354
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
+
1355
1896
  /** Represents abilities that can be granted to roles in namespaces. */
1356
- export enum NamespaceRoleAbility {
1897
+ export const enum NamespaceRoleAbility {
1357
1898
  /** Allows to change the roles of a namespace member */
1358
1899
  AssignMemberRoles = 'ASSIGN_MEMBER_ROLES',
1359
1900
  /** Allows to assign runtimes to a project in the namespace */
@@ -1363,7 +1904,7 @@ export enum NamespaceRoleAbility {
1363
1904
  /** Allows to change the assigned projects of a namespace role */
1364
1905
  AssignRoleProjects = 'ASSIGN_ROLE_PROJECTS',
1365
1906
  /** Allows to create flows in a namespace project */
1366
- CreateFlows = 'CREATE_FLOWS',
1907
+ CreateFlow = 'CREATE_FLOW',
1367
1908
  /** Allows to create a license for the namespace */
1368
1909
  CreateNamespaceLicense = 'CREATE_NAMESPACE_LICENSE',
1369
1910
  /** Allows to create a project in the namespace */
@@ -1373,7 +1914,7 @@ export enum NamespaceRoleAbility {
1373
1914
  /** Allows to create a runtime globally or for the namespace */
1374
1915
  CreateRuntime = 'CREATE_RUNTIME',
1375
1916
  /** Allows to delete flows in a namespace project */
1376
- DeleteFlows = 'DELETE_FLOWS',
1917
+ DeleteFlow = 'DELETE_FLOW',
1377
1918
  /** Allows to remove members of a namespace */
1378
1919
  DeleteMember = 'DELETE_MEMBER',
1379
1920
  /** Allows to delete the license of the namespace */
@@ -1397,7 +1938,7 @@ export enum NamespaceRoleAbility {
1397
1938
  /** Allows to regenerate a runtime token */
1398
1939
  RotateRuntimeToken = 'ROTATE_RUNTIME_TOKEN',
1399
1940
  /** Allows to update flows in the project */
1400
- UpdateFlows = 'UPDATE_FLOWS',
1941
+ UpdateFlow = 'UPDATE_FLOW',
1401
1942
  /** Allows to update the project of the namespace */
1402
1943
  UpdateNamespaceProject = 'UPDATE_NAMESPACE_PROJECT',
1403
1944
  /** Allows to update the namespace role */
@@ -1430,6 +1971,34 @@ export interface NamespaceRoleEdge {
1430
1971
  node?: Maybe<NamespaceRole>;
1431
1972
  }
1432
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
+
1433
2002
  /** Autogenerated input type of NamespacesLicensesCreate */
1434
2003
  export interface NamespacesLicensesCreateInput {
1435
2004
  /** A unique identifier for the client performing the mutation. */
@@ -1487,8 +2056,8 @@ export interface NamespacesMembersAssignRolesPayload {
1487
2056
  clientMutationId?: Maybe<Scalars['String']['output']>;
1488
2057
  /** Errors encountered during execution of the mutation. */
1489
2058
  errors?: Maybe<Array<Error>>;
1490
- /** The roles the member is now assigned to */
1491
- namespaceMemberRoles?: Maybe<Array<NamespaceMemberRole>>;
2059
+ /** The member which was assigned the roles */
2060
+ member?: Maybe<NamespaceMember>;
1492
2061
  }
1493
2062
 
1494
2063
  /** Autogenerated input type of NamespacesMembersDelete */
@@ -1562,6 +2131,8 @@ export interface NamespacesProjectsCreateInput {
1562
2131
  name: Scalars['String']['input'];
1563
2132
  /** The id of the namespace which this project will belong to */
1564
2133
  namespaceId: Scalars['NamespaceID']['input'];
2134
+ /** Slug for the new project. */
2135
+ slug?: InputMaybe<Scalars['String']['input']>;
1565
2136
  }
1566
2137
 
1567
2138
  /** Autogenerated return type of NamespacesProjectsCreate. */
@@ -1634,6 +2205,27 @@ export interface NamespacesProjectsFlowsDeletePayload {
1634
2205
  flow?: Maybe<Flow>;
1635
2206
  }
1636
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
+
1637
2229
  /** Autogenerated input type of NamespacesProjectsUpdate */
1638
2230
  export interface NamespacesProjectsUpdateInput {
1639
2231
  /** A unique identifier for the client performing the mutation. */
@@ -1646,6 +2238,8 @@ export interface NamespacesProjectsUpdateInput {
1646
2238
  namespaceProjectId: Scalars['NamespaceProjectID']['input'];
1647
2239
  /** The primary runtime for the updated project. */
1648
2240
  primaryRuntimeId?: InputMaybe<Scalars['RuntimeID']['input']>;
2241
+ /** Slug for the updated project. */
2242
+ slug?: InputMaybe<Scalars['String']['input']>;
1649
2243
  }
1650
2244
 
1651
2245
  /** Autogenerated return type of NamespacesProjectsUpdate. */
@@ -1816,10 +2410,19 @@ export interface NodeFunctionEdge {
1816
2410
  node?: Maybe<NodeFunction>;
1817
2411
  }
1818
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
+
1819
2420
  /** Input type for a Node Function */
1820
2421
  export interface NodeFunctionInput {
2422
+ /** The identifier of the Node Function used to create/update the flow */
2423
+ id: Scalars['NodeFunctionID']['input'];
1821
2424
  /** The next Node Function in the flow */
1822
- nextNode?: InputMaybe<NodeFunctionInput>;
2425
+ nextNodeId?: InputMaybe<Scalars['NodeFunctionID']['input']>;
1823
2426
  /** The parameters of the Node Function */
1824
2427
  parameters: Array<NodeParameterInput>;
1825
2428
  /** The identifier of the Runtime Function Definition */
@@ -1872,18 +2475,37 @@ export interface NodeParameterInput {
1872
2475
  }
1873
2476
 
1874
2477
  /** Represents a parameter value for a node. */
1875
- export type NodeParameterValue = LiteralValue | NodeFunction | ReferenceValue;
2478
+ export type NodeParameterValue = LiteralValue | NodeFunctionIdWrapper | ReferenceValue;
1876
2479
 
1877
2480
  /** Input type for parameter value */
1878
2481
  export interface NodeParameterValueInput {
1879
- /** The function value of the parameter */
1880
- functionValue?: InputMaybe<NodeFunctionInput>;
1881
2482
  /** The literal value of the parameter */
1882
2483
  literalValue?: InputMaybe<Scalars['JSON']['input']>;
2484
+ /** The function value of the parameter as an id */
2485
+ nodeFunctionId?: InputMaybe<Scalars['NodeFunctionID']['input']>;
1883
2486
  /** The reference value of the parameter */
1884
2487
  referenceValue?: InputMaybe<ReferenceValueInput>;
1885
2488
  }
1886
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
+
1887
2509
  /** Represents a Organization */
1888
2510
  export interface Organization {
1889
2511
  __typename?: 'Organization';
@@ -1897,6 +2519,39 @@ export interface Organization {
1897
2519
  namespace?: Maybe<Namespace>;
1898
2520
  /** Time when this Organization was last updated */
1899
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']>;
1900
2555
  }
1901
2556
 
1902
2557
  /** Autogenerated input type of OrganizationsCreate */
@@ -1979,46 +2634,19 @@ export interface ParameterDefinition {
1979
2634
  /** Data type of the parameter */
1980
2635
  dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
1981
2636
  /** Description of the parameter */
1982
- descriptions?: Maybe<TranslationConnection>;
2637
+ descriptions?: Maybe<Array<Translation>>;
1983
2638
  /** Documentation of the parameter */
1984
- documentations?: Maybe<TranslationConnection>;
2639
+ documentations?: Maybe<Array<Translation>>;
1985
2640
  /** Global ID of this ParameterDefinition */
1986
2641
  id?: Maybe<Scalars['ParameterDefinitionID']['output']>;
1987
2642
  /** Identifier of the parameter */
1988
2643
  identifier?: Maybe<Scalars['String']['output']>;
1989
2644
  /** Name of the parameter */
1990
- names?: Maybe<TranslationConnection>;
2645
+ names?: Maybe<Array<Translation>>;
1991
2646
  /** Time when this ParameterDefinition was last updated */
1992
2647
  updatedAt?: Maybe<Scalars['Time']['output']>;
1993
2648
  }
1994
2649
 
1995
-
1996
- /** Represents a parameter definition */
1997
- export interface ParameterDefinitionDescriptionsArgs {
1998
- after?: InputMaybe<Scalars['String']['input']>;
1999
- before?: InputMaybe<Scalars['String']['input']>;
2000
- first?: InputMaybe<Scalars['Int']['input']>;
2001
- last?: InputMaybe<Scalars['Int']['input']>;
2002
- }
2003
-
2004
-
2005
- /** Represents a parameter definition */
2006
- export interface ParameterDefinitionDocumentationsArgs {
2007
- after?: InputMaybe<Scalars['String']['input']>;
2008
- before?: InputMaybe<Scalars['String']['input']>;
2009
- first?: InputMaybe<Scalars['Int']['input']>;
2010
- last?: InputMaybe<Scalars['Int']['input']>;
2011
- }
2012
-
2013
-
2014
- /** Represents a parameter definition */
2015
- export interface ParameterDefinitionNamesArgs {
2016
- after?: InputMaybe<Scalars['String']['input']>;
2017
- before?: InputMaybe<Scalars['String']['input']>;
2018
- first?: InputMaybe<Scalars['Int']['input']>;
2019
- last?: InputMaybe<Scalars['Int']['input']>;
2020
- }
2021
-
2022
2650
  /** The connection type for ParameterDefinition. */
2023
2651
  export interface ParameterDefinitionConnection {
2024
2652
  __typename?: 'ParameterDefinitionConnection';
@@ -2044,8 +2672,8 @@ export interface ParameterDefinitionEdge {
2044
2672
  /** Root Query type */
2045
2673
  export interface Query {
2046
2674
  __typename?: 'Query';
2047
- /** Get global application settings */
2048
- applicationSettings?: Maybe<ApplicationSettings>;
2675
+ /** Get application information */
2676
+ application?: Maybe<Application>;
2049
2677
  /** Get the currently logged in authentication */
2050
2678
  currentAuthentication?: Maybe<Authentication>;
2051
2679
  /** Get the currently logged in user */
@@ -2062,6 +2690,10 @@ export interface Query {
2062
2690
  nodes?: Maybe<Array<Maybe<Node>>>;
2063
2691
  /** Find a organization */
2064
2692
  organization?: Maybe<Organization>;
2693
+ /** Find organizations */
2694
+ organizations?: Maybe<OrganizationConnection>;
2695
+ /** Find a user */
2696
+ user?: Maybe<User>;
2065
2697
  /** Find users */
2066
2698
  users?: Maybe<UserConnection>;
2067
2699
  }
@@ -2107,6 +2739,22 @@ export interface QueryOrganizationArgs {
2107
2739
  }
2108
2740
 
2109
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
+
2110
2758
  /** Root Query type */
2111
2759
  export interface QueryUsersArgs {
2112
2760
  after?: InputMaybe<Scalars['String']['input']>;
@@ -2151,6 +2799,8 @@ export interface ReferenceValue {
2151
2799
  id?: Maybe<Scalars['ReferenceValueID']['output']>;
2152
2800
  /** The node of the reference value. */
2153
2801
  node?: Maybe<Scalars['Int']['output']>;
2802
+ /** The referenced value. */
2803
+ nodeFunctionId?: Maybe<Scalars['NodeFunctionID']['output']>;
2154
2804
  /** The paths associated with this reference value. */
2155
2805
  referencePath?: Maybe<Array<ReferencePath>>;
2156
2806
  /** The scope of the reference value. */
@@ -2163,14 +2813,16 @@ export interface ReferenceValue {
2163
2813
  export interface ReferenceValueInput {
2164
2814
  /** The identifier of the data type this reference value belongs to */
2165
2815
  dataTypeIdentifier: DataTypeIdentifierInput;
2166
- /** The primary level of the reference value */
2167
- primaryLevel: Scalars['Int']['input'];
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'];
2168
2822
  /** The paths associated with this reference value */
2169
2823
  referencePath: Array<ReferencePathInput>;
2170
- /** The secondary level of the reference value */
2171
- secondaryLevel: Scalars['Int']['input'];
2172
- /** The tertiary level of the reference value */
2173
- tertiaryLevel?: InputMaybe<Scalars['Int']['input']>;
2824
+ /** The scope of the reference value */
2825
+ scope: Array<Scalars['Int']['input']>;
2174
2826
  }
2175
2827
 
2176
2828
  /** Represents a runtime */
@@ -2184,6 +2836,8 @@ export interface Runtime {
2184
2836
  description?: Maybe<Scalars['String']['output']>;
2185
2837
  /** FlowTypes of the runtime */
2186
2838
  flowTypes?: Maybe<FlowTypeConnection>;
2839
+ /** Function definitions of the runtime */
2840
+ functionDefinitions?: Maybe<FunctionDefinitionConnection>;
2187
2841
  /** Global ID of this Runtime */
2188
2842
  id?: Maybe<Scalars['RuntimeID']['output']>;
2189
2843
  /** The name for the runtime */
@@ -2198,6 +2852,8 @@ export interface Runtime {
2198
2852
  token?: Maybe<Scalars['String']['output']>;
2199
2853
  /** Time when this Runtime was last updated */
2200
2854
  updatedAt?: Maybe<Scalars['Time']['output']>;
2855
+ /** Abilities for the current user on this Runtime */
2856
+ userAbilities?: Maybe<RuntimeUserAbilities>;
2201
2857
  }
2202
2858
 
2203
2859
 
@@ -2219,6 +2875,15 @@ export interface RuntimeFlowTypesArgs {
2219
2875
  }
2220
2876
 
2221
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
+
2222
2887
  /** Represents a runtime */
2223
2888
  export interface RuntimeProjectsArgs {
2224
2889
  after?: InputMaybe<Scalars['String']['input']>;
@@ -2293,6 +2958,8 @@ export interface RuntimeParameterDefinition {
2293
2958
  createdAt?: Maybe<Scalars['Time']['output']>;
2294
2959
  /** Global ID of this RuntimeParameterDefinition */
2295
2960
  id?: Maybe<Scalars['RuntimeParameterDefinitionID']['output']>;
2961
+ /** Identifier of the runtime parameter definition */
2962
+ identifier?: Maybe<Scalars['String']['output']>;
2296
2963
  /** Time when this RuntimeParameterDefinition was last updated */
2297
2964
  updatedAt?: Maybe<Scalars['Time']['output']>;
2298
2965
  }
@@ -2320,13 +2987,24 @@ export interface RuntimeParameterDefinitionEdge {
2320
2987
  }
2321
2988
 
2322
2989
  /** Represent all available types of statuses of a runtime */
2323
- export enum RuntimeStatusType {
2990
+ export const enum RuntimeStatusType {
2324
2991
  /** No problem with connection, everything works as expected */
2325
2992
  Connected = 'CONNECTED',
2326
2993
  /** The runtime is disconnected, cause unknown */
2327
2994
  Disconnected = 'DISCONNECTED'
2328
2995
  }
2329
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
+
2330
3008
  /** Autogenerated input type of RuntimesCreate */
2331
3009
  export interface RuntimesCreateInput {
2332
3010
  /** A unique identifier for the client performing the mutation. */
@@ -2411,6 +3089,21 @@ export interface RuntimesUpdatePayload {
2411
3089
  runtime?: Maybe<Runtime>;
2412
3090
  }
2413
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
+
2414
3107
  /** Represents a translation */
2415
3108
  export interface Translation {
2416
3109
  __typename?: 'Translation';
@@ -2420,28 +3113,6 @@ export interface Translation {
2420
3113
  content?: Maybe<Scalars['String']['output']>;
2421
3114
  }
2422
3115
 
2423
- /** The connection type for Translation. */
2424
- export interface TranslationConnection {
2425
- __typename?: 'TranslationConnection';
2426
- /** Total count of collection. */
2427
- count?: Maybe<Scalars['Int']['output']>;
2428
- /** A list of edges. */
2429
- edges?: Maybe<Array<Maybe<TranslationEdge>>>;
2430
- /** A list of nodes. */
2431
- nodes?: Maybe<Array<Maybe<Translation>>>;
2432
- /** Information to aid in pagination. */
2433
- pageInfo?: Maybe<PageInfo>;
2434
- }
2435
-
2436
- /** An edge in a connection. */
2437
- export interface TranslationEdge {
2438
- __typename?: 'TranslationEdge';
2439
- /** A cursor for use in pagination. */
2440
- cursor?: Maybe<Scalars['String']['output']>;
2441
- /** The item at the end of the edge. */
2442
- node?: Maybe<Translation>;
2443
- }
2444
-
2445
3116
  /** Represents a user */
2446
3117
  export interface User {
2447
3118
  __typename?: 'User';
@@ -2453,6 +3124,8 @@ export interface User {
2453
3124
  createdAt?: Maybe<Scalars['Time']['output']>;
2454
3125
  /** Email of the user */
2455
3126
  email?: Maybe<Scalars['String']['output']>;
3127
+ /** Email verification date of the user if present */
3128
+ emailVerifiedAt?: Maybe<Scalars['Time']['output']>;
2456
3129
  /** Firstname of the user */
2457
3130
  firstname?: Maybe<Scalars['String']['output']>;
2458
3131
  /** Global ID of this User */
@@ -2461,6 +3134,8 @@ export interface User {
2461
3134
  identities?: Maybe<UserIdentityConnection>;
2462
3135
  /** Lastname of the user */
2463
3136
  lastname?: Maybe<Scalars['String']['output']>;
3137
+ /** Multi-factor authentication status of this user */
3138
+ mfaStatus?: Maybe<MfaStatus>;
2464
3139
  /** Namespace of this user */
2465
3140
  namespace?: Maybe<Namespace>;
2466
3141
  /** Namespace Memberships of this user */
@@ -2469,6 +3144,8 @@ export interface User {
2469
3144
  sessions?: Maybe<UserSessionConnection>;
2470
3145
  /** Time when this User was last updated */
2471
3146
  updatedAt?: Maybe<Scalars['Time']['output']>;
3147
+ /** Abilities for the current user on this User */
3148
+ userAbilities?: Maybe<UserUserAbilities>;
2472
3149
  /** Username of the user */
2473
3150
  username?: Maybe<Scalars['String']['output']>;
2474
3151
  }
@@ -2576,6 +3253,8 @@ export interface UserSession {
2576
3253
  updatedAt?: Maybe<Scalars['Time']['output']>;
2577
3254
  /** User that belongs to the session */
2578
3255
  user?: Maybe<User>;
3256
+ /** Abilities for the current user on this UserSession */
3257
+ userAbilities?: Maybe<UserSessionUserAbilities>;
2579
3258
  }
2580
3259
 
2581
3260
  /** The connection type for UserSession. */
@@ -2600,6 +3279,72 @@ export interface UserSessionEdge {
2600
3279
  node?: Maybe<UserSession>;
2601
3280
  }
2602
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
+
2603
3348
  /** Autogenerated input type of UsersEmailVerification */
2604
3349
  export interface UsersEmailVerificationInput {
2605
3350
  /** A unique identifier for the client performing the mutation. */
@@ -2803,6 +3548,48 @@ export interface UsersMfaTotpValidateSecretPayload {
2803
3548
  user?: Maybe<User>;
2804
3549
  }
2805
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
+
2806
3593
  /** Autogenerated input type of UsersRegister */
2807
3594
  export interface UsersRegisterInput {
2808
3595
  /** A unique identifier for the client performing the mutation. */