@code0-tech/sagittarius-graphql-types 0.0.0-967667e8c736081887d32d99a5e2ab0445718798 → 0.0.0-968478cecf351385c6c13c2be8aeae5c45da026c

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 +1083 -60
  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,17 +54,55 @@ 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']>;
71
108
  /** Set if organization creation is restricted to administrators. */
@@ -85,14 +122,35 @@ export interface ApplicationSettingsUpdatePayload {
85
122
  errors?: Maybe<Array<Error>>;
86
123
  }
87
124
 
125
+ /** Abilities for the current user on this Application */
126
+ export interface ApplicationUserAbilities {
127
+ __typename?: 'ApplicationUserAbilities';
128
+ /** Shows if the current user has the `create_organization` ability on this Application */
129
+ createOrganization?: Maybe<Scalars['Boolean']['output']>;
130
+ /** Shows if the current user has the `create_runtime` ability on this Application */
131
+ createRuntime?: Maybe<Scalars['Boolean']['output']>;
132
+ /** Shows if the current user has the `delete_runtime` ability on this Application */
133
+ deleteRuntime?: Maybe<Scalars['Boolean']['output']>;
134
+ /** Shows if the current user has the `rotate_runtime_token` ability on this Application */
135
+ rotateRuntimeToken?: Maybe<Scalars['Boolean']['output']>;
136
+ /** Shows if the current user has the `update_application_setting` ability on this Application */
137
+ updateApplicationSetting?: Maybe<Scalars['Boolean']['output']>;
138
+ /** Shows if the current user has the `update_runtime` ability on this Application */
139
+ updateRuntime?: Maybe<Scalars['Boolean']['output']>;
140
+ }
141
+
88
142
  /** Objects that can present an authentication */
89
143
  export type Authentication = UserSession;
90
144
 
91
145
  /** Represents a DataType */
92
146
  export interface DataType {
93
147
  __typename?: 'DataType';
148
+ /** Name of the function */
149
+ aliases?: Maybe<TranslationConnection>;
94
150
  /** Time when this DataType was created */
95
151
  createdAt?: Maybe<Scalars['Time']['output']>;
152
+ /** Display message of the function */
153
+ displayMessages?: Maybe<TranslationConnection>;
96
154
  /** Generic keys of the datatype */
97
155
  genericKeys?: Maybe<Array<Scalars['String']['output']>>;
98
156
  /** Global ID of this DataType */
@@ -101,12 +159,10 @@ export interface DataType {
101
159
  identifier?: Maybe<Scalars['String']['output']>;
102
160
  /** Names of the flow type setting */
103
161
  name?: Maybe<TranslationConnection>;
104
- /** The namespace where this datatype belongs to */
105
- namespace?: Maybe<Namespace>;
106
- /** The parent datatype */
107
- parent?: Maybe<DataTypeIdentifier>;
108
162
  /** Rules of the datatype */
109
163
  rules?: Maybe<DataTypeRuleConnection>;
164
+ /** The runtime where this datatype belongs to */
165
+ runtime?: Maybe<Runtime>;
110
166
  /** Time when this DataType was last updated */
111
167
  updatedAt?: Maybe<Scalars['Time']['output']>;
112
168
  /** The type of the datatype */
@@ -114,6 +170,24 @@ export interface DataType {
114
170
  }
115
171
 
116
172
 
173
+ /** Represents a DataType */
174
+ export interface DataTypeAliasesArgs {
175
+ after?: InputMaybe<Scalars['String']['input']>;
176
+ before?: InputMaybe<Scalars['String']['input']>;
177
+ first?: InputMaybe<Scalars['Int']['input']>;
178
+ last?: InputMaybe<Scalars['Int']['input']>;
179
+ }
180
+
181
+
182
+ /** Represents a DataType */
183
+ export interface DataTypeDisplayMessagesArgs {
184
+ after?: InputMaybe<Scalars['String']['input']>;
185
+ before?: InputMaybe<Scalars['String']['input']>;
186
+ first?: InputMaybe<Scalars['Int']['input']>;
187
+ last?: InputMaybe<Scalars['Int']['input']>;
188
+ }
189
+
190
+
117
191
  /** Represents a DataType */
118
192
  export interface DataTypeNameArgs {
119
193
  after?: InputMaybe<Scalars['String']['input']>;
@@ -241,8 +315,8 @@ export interface DataTypeRulesInputTypeConfig {
241
315
  __typename?: 'DataTypeRulesInputTypeConfig';
242
316
  /** The identifier of the data type this input type belongs to */
243
317
  dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
244
- /** The input data type that this configuration applies to */
245
- inputType?: Maybe<DataType>;
318
+ /** The input identifier that this configuration applies to */
319
+ inputIdentifier?: Maybe<Scalars['String']['output']>;
246
320
  }
247
321
 
248
322
  /** Represents a rule that can be applied to a data type. */
@@ -292,13 +366,13 @@ export interface DataTypeRulesReturnTypeConfig {
292
366
  }
293
367
 
294
368
  /** The type of rule that can be applied to a data type. */
295
- export enum DataTypeRulesVariant {
369
+ export const enum DataTypeRulesVariant {
296
370
  /** The rule checks if a key is present in the data type. */
297
371
  ContainsKey = 'CONTAINS_KEY',
298
372
  /** The rule checks if a specific type is present in the data type. */
299
373
  ContainsType = 'CONTAINS_TYPE',
300
374
  /** The rule checks if the data type matches a specific input type. */
301
- InputType = 'INPUT_TYPE',
375
+ InputTypes = 'INPUT_TYPES',
302
376
  /** The rule checks if an item is part of a collection in the data type. */
303
377
  ItemOfCollection = 'ITEM_OF_COLLECTION',
304
378
  /** The rule checks if a number falls within a specified range. */
@@ -312,7 +386,7 @@ export enum DataTypeRulesVariant {
312
386
  }
313
387
 
314
388
  /** Represent all available types of a datatype */
315
- export enum DataTypeVariant {
389
+ export const enum DataTypeVariant {
316
390
  /** Represents an array */
317
391
  Array = 'ARRAY',
318
392
  /** Represents an data type containing a data type */
@@ -329,6 +403,9 @@ export enum DataTypeVariant {
329
403
  Type = 'TYPE'
330
404
  }
331
405
 
406
+ /** Represents a detailed error with either a message or an active model error */
407
+ export type DetailedError = ActiveModelError | FlowValidationError | MessageError;
408
+
332
409
  /** Autogenerated input type of Echo */
333
410
  export interface EchoInput {
334
411
  /** A unique identifier for the client performing the mutation. */
@@ -349,7 +426,179 @@ export interface EchoPayload {
349
426
  }
350
427
 
351
428
  /** Objects that can present an error */
352
- export type Error = ActiveModelError | MessageError;
429
+ export interface Error {
430
+ __typename?: 'Error';
431
+ /** Detailed validation errors if applicable */
432
+ details?: Maybe<Array<DetailedError>>;
433
+ /** The code representing the error type */
434
+ errorCode?: Maybe<ErrorCodeEnum>;
435
+ }
436
+
437
+ /** Represents the available error responses */
438
+ export const enum ErrorCodeEnum {
439
+ /** This action would remove the last administrative role */
440
+ CannotDeleteLastAdminRole = 'CANNOT_DELETE_LAST_ADMIN_ROLE',
441
+ /** Only administrators can modify admin status of users */
442
+ CannotModifyAdmin = 'CANNOT_MODIFY_ADMIN',
443
+ /** Users cannot modify their own admin status */
444
+ CannotModifyOwnAdmin = 'CANNOT_MODIFY_OWN_ADMIN',
445
+ /** This action would remove the last administrator */
446
+ CannotRemoveLastAdministrator = 'CANNOT_REMOVE_LAST_ADMINISTRATOR',
447
+ /** This action would remove the last administrative ability */
448
+ CannotRemoveLastAdminAbility = 'CANNOT_REMOVE_LAST_ADMIN_ABILITY',
449
+ /** The data type identifier with the given identifier was not found */
450
+ DataTypeIdentifierNotFound = 'DATA_TYPE_IDENTIFIER_NOT_FOUND',
451
+ /** The data type with the given identifier was not found */
452
+ DataTypeNotFound = 'DATA_TYPE_NOT_FOUND',
453
+ /** Failed to send the email verification */
454
+ EmailVerificationSendFailed = 'EMAIL_VERIFICATION_SEND_FAILED',
455
+ /** This external identity does not exist */
456
+ ExternalIdentityDoesNotExist = 'EXTERNAL_IDENTITY_DOES_NOT_EXIST',
457
+ /** The old backup codes could not be deleted */
458
+ FailedToInvalidateOldBackupCodes = 'FAILED_TO_INVALIDATE_OLD_BACKUP_CODES',
459
+ /** Failed to reset the user password */
460
+ FailedToResetPassword = 'FAILED_TO_RESET_PASSWORD',
461
+ /** The new backup codes could not be saved */
462
+ FailedToSaveValidBackupCode = 'FAILED_TO_SAVE_VALID_BACKUP_CODE',
463
+ /** The flow with the given identifier was not found */
464
+ FlowNotFound = 'FLOW_NOT_FOUND',
465
+ /** The flow type with the given identifier was not found */
466
+ FlowTypeNotFound = 'FLOW_TYPE_NOT_FOUND',
467
+ /** The flow validation has failed */
468
+ FlowValidationFailed = 'FLOW_VALIDATION_FAILED',
469
+ /** The id for the function value node does not exist */
470
+ FunctionValueNotFound = 'FUNCTION_VALUE_NOT_FOUND',
471
+ /** The given key was not found in the data type */
472
+ GenericKeyNotFound = 'GENERIC_KEY_NOT_FOUND',
473
+ /** The external identity with the given identifier was not found */
474
+ IdentityNotFound = 'IDENTITY_NOT_FOUND',
475
+ /** Failed to validate the external identity */
476
+ IdentityValidationFailed = 'IDENTITY_VALIDATION_FAILED',
477
+ /** Resources are from different namespaces */
478
+ InconsistentNamespace = 'INCONSISTENT_NAMESPACE',
479
+ /** The attachment is invalid because of active model errors */
480
+ InvalidAttachment = 'INVALID_ATTACHMENT',
481
+ /** The data type is invalid because of active model errors */
482
+ InvalidDataType = 'INVALID_DATA_TYPE',
483
+ /** This external identity is invalid */
484
+ InvalidExternalIdentity = 'INVALID_EXTERNAL_IDENTITY',
485
+ /** The flow is invalid because of active model errors */
486
+ InvalidFlow = 'INVALID_FLOW',
487
+ /** The flow setting is invalid because of active model errors */
488
+ InvalidFlowSetting = 'INVALID_FLOW_SETTING',
489
+ /** The flow type is invalid because of active model errors */
490
+ InvalidFlowType = 'INVALID_FLOW_TYPE',
491
+ /** The generic mapper is invalid because of active model errors */
492
+ InvalidGenericMapper = 'INVALID_GENERIC_MAPPER',
493
+ /** Invalid login data provided */
494
+ InvalidLoginData = 'INVALID_LOGIN_DATA',
495
+ /** The namespace license is invalid because of active model errors */
496
+ InvalidNamespaceLicense = 'INVALID_NAMESPACE_LICENSE',
497
+ /** The namespace member is invalid because of active model errors */
498
+ InvalidNamespaceMember = 'INVALID_NAMESPACE_MEMBER',
499
+ /** The namespace project is invalid because of active model errors */
500
+ InvalidNamespaceProject = 'INVALID_NAMESPACE_PROJECT',
501
+ /** The namespace role is invalid because of active model errors */
502
+ InvalidNamespaceRole = 'INVALID_NAMESPACE_ROLE',
503
+ /** The node function is invalid */
504
+ InvalidNodeFunction = 'INVALID_NODE_FUNCTION',
505
+ /** The node parameter is invalid */
506
+ InvalidNodeParameter = 'INVALID_NODE_PARAMETER',
507
+ /** The organization is invalid because of active model errors */
508
+ InvalidOrganization = 'INVALID_ORGANIZATION',
509
+ /** The provided password repeat does not match the password */
510
+ InvalidPasswordRepeat = 'INVALID_PASSWORD_REPEAT',
511
+ /** The runtime is invalid because of active model errors */
512
+ InvalidRuntime = 'INVALID_RUNTIME',
513
+ /** The runtime function definition is invalid */
514
+ InvalidRuntimeFunctionDefinition = 'INVALID_RUNTIME_FUNCTION_DEFINITION',
515
+ /** The runtime function ID is invalid */
516
+ InvalidRuntimeFunctionId = 'INVALID_RUNTIME_FUNCTION_ID',
517
+ /** The runtime parameter definition is invalid */
518
+ InvalidRuntimeParameterDefinition = 'INVALID_RUNTIME_PARAMETER_DEFINITION',
519
+ /** The runtime parameter ID is invalid */
520
+ InvalidRuntimeParameterId = 'INVALID_RUNTIME_PARAMETER_ID',
521
+ /** Invalid setting provided */
522
+ InvalidSetting = 'INVALID_SETTING',
523
+ /** The TOTP secret is invalid or cannot be verified */
524
+ InvalidTotpSecret = 'INVALID_TOTP_SECRET',
525
+ /** The user is invalid because of active model errors */
526
+ InvalidUser = 'INVALID_USER',
527
+ /** The user identity is invalid because of active model errors */
528
+ InvalidUserIdentity = 'INVALID_USER_IDENTITY',
529
+ /** The user session is invalid because of active model errors */
530
+ InvalidUserSession = 'INVALID_USER_SESSION',
531
+ /** Invalid verification code provided */
532
+ InvalidVerificationCode = 'INVALID_VERIFICATION_CODE',
533
+ /** The namespace license with the given identifier was not found */
534
+ LicenseNotFound = 'LICENSE_NOT_FOUND',
535
+ /** Failed to load user identity from external provider */
536
+ LoadingIdentityFailed = 'LOADING_IDENTITY_FAILED',
537
+ /** Invalid MFA data provided */
538
+ MfaFailed = 'MFA_FAILED',
539
+ /** MFA is required */
540
+ MfaRequired = 'MFA_REQUIRED',
541
+ /** The primary runtime has more definitions than this one */
542
+ MissingDefinition = 'MISSING_DEFINITION',
543
+ /** This external identity is missing data */
544
+ MissingIdentityData = 'MISSING_IDENTITY_DATA',
545
+ /** Not all required parameters are present */
546
+ MissingParameter = 'MISSING_PARAMETER',
547
+ /** The user is not permitted to perform this operation */
548
+ MissingPermission = 'MISSING_PERMISSION',
549
+ /** The project is missing a primary runtime */
550
+ MissingPrimaryRuntime = 'MISSING_PRIMARY_RUNTIME',
551
+ /** The namespace member with the given identifier was not found */
552
+ NamespaceMemberNotFound = 'NAMESPACE_MEMBER_NOT_FOUND',
553
+ /** The namespace with the given identifier was not found */
554
+ NamespaceNotFound = 'NAMESPACE_NOT_FOUND',
555
+ /** The namespace project with the given identifier was not found */
556
+ NamespaceProjectNotFound = 'NAMESPACE_PROJECT_NOT_FOUND',
557
+ /** The namespace role with the given identifier was not found */
558
+ NamespaceRoleNotFound = 'NAMESPACE_ROLE_NOT_FOUND',
559
+ /** The node with this id does not exist */
560
+ NodeNotFound = 'NODE_NOT_FOUND',
561
+ /** No data type identifier could be found for the given generic key */
562
+ NoDatatypeIdentifierForGenericKey = 'NO_DATATYPE_IDENTIFIER_FOR_GENERIC_KEY',
563
+ /** No data type could be found for the given identifier */
564
+ NoDataTypeForIdentifier = 'NO_DATA_TYPE_FOR_IDENTIFIER',
565
+ /** There are no free license seats to complete this operation */
566
+ NoFreeLicenseSeats = 'NO_FREE_LICENSE_SEATS',
567
+ /** No generic type could be found for the given identifier */
568
+ NoGenericTypeForIdentifier = 'NO_GENERIC_TYPE_FOR_IDENTIFIER',
569
+ /** The project does not have a primary runtime */
570
+ NoPrimaryRuntime = 'NO_PRIMARY_RUNTIME',
571
+ /** The organization with the given identifier was not found */
572
+ OrganizationNotFound = 'ORGANIZATION_NOT_FOUND',
573
+ /** The primary runtime has a newer definition than this one */
574
+ OutdatedDefinition = 'OUTDATED_DEFINITION',
575
+ /** @deprecated Outdated concept */
576
+ PrimaryLevelNotFound = 'PRIMARY_LEVEL_NOT_FOUND',
577
+ /** The namespace project with the given identifier was not found */
578
+ ProjectNotFound = 'PROJECT_NOT_FOUND',
579
+ /** A referenced value could not be found */
580
+ ReferencedValueNotFound = 'REFERENCED_VALUE_NOT_FOUND',
581
+ /** Self-registration is disabled */
582
+ RegistrationDisabled = 'REGISTRATION_DISABLED',
583
+ /** Resources are from different runtimes */
584
+ RuntimeMismatch = 'RUNTIME_MISMATCH',
585
+ /** The runtime with the given identifier was not found */
586
+ RuntimeNotFound = 'RUNTIME_NOT_FOUND',
587
+ /** @deprecated Outdated concept */
588
+ SecondaryLevelNotFound = 'SECONDARY_LEVEL_NOT_FOUND',
589
+ /** @deprecated Outdated concept */
590
+ TertiaryLevelExceedsParameters = 'TERTIARY_LEVEL_EXCEEDS_PARAMETERS',
591
+ /** This user already has TOTP set up */
592
+ TotpSecretAlreadySet = 'TOTP_SECRET_ALREADY_SET',
593
+ /** The user is not permitted to modify this field */
594
+ UnmodifiableField = 'UNMODIFIABLE_FIELD',
595
+ /** The user with the given identifier was not found */
596
+ UserNotFound = 'USER_NOT_FOUND',
597
+ /** The user session with the given identifier was not found */
598
+ UserSessionNotFound = 'USER_SESSION_NOT_FOUND',
599
+ /** Invalid TOTP code provided */
600
+ WrongTotp = 'WRONG_TOTP'
601
+ }
353
602
 
354
603
  /** Represents a flow */
355
604
  export interface Flow {
@@ -360,18 +609,22 @@ export interface Flow {
360
609
  id?: Maybe<Scalars['FlowID']['output']>;
361
610
  /** The input data type of the flow */
362
611
  inputType?: Maybe<DataType>;
612
+ /** Name of the flow */
613
+ name?: Maybe<Scalars['String']['output']>;
363
614
  /** Nodes of the flow */
364
615
  nodes?: Maybe<NodeFunctionConnection>;
365
616
  /** The return data type of the flow */
366
617
  returnType?: Maybe<DataType>;
367
618
  /** The settings of the flow */
368
- settings?: Maybe<Array<FlowSetting>>;
619
+ settings?: Maybe<FlowSettingConnection>;
369
620
  /** The ID of the starting node of the flow */
370
621
  startingNodeId?: Maybe<Scalars['NodeFunctionID']['output']>;
371
622
  /** The flow type of the flow */
372
623
  type?: Maybe<FlowType>;
373
624
  /** Time when this Flow was last updated */
374
625
  updatedAt?: Maybe<Scalars['Time']['output']>;
626
+ /** Abilities for the current user on this Flow */
627
+ userAbilities?: Maybe<FlowUserAbilities>;
375
628
  }
376
629
 
377
630
 
@@ -383,6 +636,15 @@ export interface FlowNodesArgs {
383
636
  last?: InputMaybe<Scalars['Int']['input']>;
384
637
  }
385
638
 
639
+
640
+ /** Represents a flow */
641
+ export interface FlowSettingsArgs {
642
+ after?: InputMaybe<Scalars['String']['input']>;
643
+ before?: InputMaybe<Scalars['String']['input']>;
644
+ first?: InputMaybe<Scalars['Int']['input']>;
645
+ last?: InputMaybe<Scalars['Int']['input']>;
646
+ }
647
+
386
648
  /** The connection type for Flow. */
387
649
  export interface FlowConnection {
388
650
  __typename?: 'FlowConnection';
@@ -407,10 +669,14 @@ export interface FlowEdge {
407
669
 
408
670
  /** Input type for creating or updating a flow */
409
671
  export interface FlowInput {
672
+ /** The name of the flow */
673
+ name: Scalars['String']['input'];
674
+ /** The node functions of the flow */
675
+ nodes: Array<NodeFunctionInput>;
410
676
  /** The settings of the flow */
411
677
  settings?: InputMaybe<Array<FlowSettingInput>>;
412
678
  /** The starting node of the flow */
413
- startingNode: NodeFunctionInput;
679
+ startingNodeId: Scalars['NodeFunctionID']['input'];
414
680
  /** The identifier of the flow type */
415
681
  type: Scalars['FlowTypeID']['input'];
416
682
  }
@@ -421,7 +687,7 @@ export interface FlowSetting {
421
687
  /** Time when this FlowSetting was created */
422
688
  createdAt?: Maybe<Scalars['Time']['output']>;
423
689
  /** The identifier of the flow setting */
424
- flowSettingId?: Maybe<Scalars['String']['output']>;
690
+ flowSettingIdentifier?: Maybe<Scalars['String']['output']>;
425
691
  /** Global ID of this FlowSetting */
426
692
  id?: Maybe<Scalars['FlowSettingID']['output']>;
427
693
  /** Time when this FlowSetting was last updated */
@@ -430,27 +696,53 @@ export interface FlowSetting {
430
696
  value?: Maybe<Scalars['JSON']['output']>;
431
697
  }
432
698
 
699
+ /** The connection type for FlowSetting. */
700
+ export interface FlowSettingConnection {
701
+ __typename?: 'FlowSettingConnection';
702
+ /** Total count of collection. */
703
+ count?: Maybe<Scalars['Int']['output']>;
704
+ /** A list of edges. */
705
+ edges?: Maybe<Array<Maybe<FlowSettingEdge>>>;
706
+ /** A list of nodes. */
707
+ nodes?: Maybe<Array<Maybe<FlowSetting>>>;
708
+ /** Information to aid in pagination. */
709
+ pageInfo?: Maybe<PageInfo>;
710
+ }
711
+
712
+ /** An edge in a connection. */
713
+ export interface FlowSettingEdge {
714
+ __typename?: 'FlowSettingEdge';
715
+ /** A cursor for use in pagination. */
716
+ cursor?: Maybe<Scalars['String']['output']>;
717
+ /** The item at the end of the edge. */
718
+ node?: Maybe<FlowSetting>;
719
+ }
720
+
433
721
  /** Input type for flow settings */
434
722
  export interface FlowSettingInput {
435
723
  /** The identifier (not database id) of the flow setting */
436
- flowSettingId: Scalars['String']['input'];
724
+ flowSettingIdentifier: Scalars['String']['input'];
437
725
  /** The value of the flow setting */
438
- object: Scalars['JSON']['input'];
726
+ value: Scalars['JSON']['input'];
439
727
  }
440
728
 
441
729
  /** Represents a flow type */
442
730
  export interface FlowType {
443
731
  __typename?: 'FlowType';
732
+ /** Name of the function */
733
+ aliases?: Maybe<TranslationConnection>;
444
734
  /** Time when this FlowType was created */
445
735
  createdAt?: Maybe<Scalars['Time']['output']>;
446
736
  /** Descriptions of the flow type */
447
737
  descriptions?: Maybe<TranslationConnection>;
738
+ /** Display message of the function */
739
+ displayMessages?: Maybe<TranslationConnection>;
448
740
  /** Editable status of the flow type */
449
741
  editable?: Maybe<Scalars['Boolean']['output']>;
450
742
  /** Flow type settings of the flow type */
451
743
  flowTypeSettings?: Maybe<Array<FlowTypeSetting>>;
452
744
  /** Global ID of this FlowType */
453
- id?: Maybe<Scalars['TypesFlowTypeID']['output']>;
745
+ id?: Maybe<Scalars['FlowTypeID']['output']>;
454
746
  /** Identifier of the flow type */
455
747
  identifier?: Maybe<Scalars['String']['output']>;
456
748
  /** Input type of the flow type */
@@ -464,6 +756,15 @@ export interface FlowType {
464
756
  }
465
757
 
466
758
 
759
+ /** Represents a flow type */
760
+ export interface FlowTypeAliasesArgs {
761
+ after?: InputMaybe<Scalars['String']['input']>;
762
+ before?: InputMaybe<Scalars['String']['input']>;
763
+ first?: InputMaybe<Scalars['Int']['input']>;
764
+ last?: InputMaybe<Scalars['Int']['input']>;
765
+ }
766
+
767
+
467
768
  /** Represents a flow type */
468
769
  export interface FlowTypeDescriptionsArgs {
469
770
  after?: InputMaybe<Scalars['String']['input']>;
@@ -473,6 +774,15 @@ export interface FlowTypeDescriptionsArgs {
473
774
  }
474
775
 
475
776
 
777
+ /** Represents a flow type */
778
+ export interface FlowTypeDisplayMessagesArgs {
779
+ after?: InputMaybe<Scalars['String']['input']>;
780
+ before?: InputMaybe<Scalars['String']['input']>;
781
+ first?: InputMaybe<Scalars['Int']['input']>;
782
+ last?: InputMaybe<Scalars['Int']['input']>;
783
+ }
784
+
785
+
476
786
  /** Represents a flow type */
477
787
  export interface FlowTypeNamesArgs {
478
788
  after?: InputMaybe<Scalars['String']['input']>;
@@ -544,21 +854,77 @@ export interface FlowTypeSettingNamesArgs {
544
854
  last?: InputMaybe<Scalars['Int']['input']>;
545
855
  }
546
856
 
857
+ /** Abilities for the current user on this Flow */
858
+ export interface FlowUserAbilities {
859
+ __typename?: 'FlowUserAbilities';
860
+ /** Shows if the current user has the `delete_flow` ability on this Flow */
861
+ deleteFlow?: Maybe<Scalars['Boolean']['output']>;
862
+ }
863
+
864
+ /** Represents a flow validation error */
865
+ export interface FlowValidationError {
866
+ __typename?: 'FlowValidationError';
867
+ /** Additional details about the validation error */
868
+ details?: Maybe<ActiveModelError>;
869
+ /** The code representing the validation error type */
870
+ errorCode?: Maybe<FlowValidationErrorCodeEnum>;
871
+ /** The severity of the validation error */
872
+ severity?: Maybe<FlowValidationSeverityEnum>;
873
+ }
874
+
875
+ /** Represents the available error responses */
876
+ export const enum FlowValidationErrorCodeEnum {
877
+ /** The generic key for the data type identifier was not found. */
878
+ DataTypeIdentifierGenericKeyNotFound = 'DATA_TYPE_IDENTIFIER_GENERIC_KEY_NOT_FOUND',
879
+ /** The data type identifier runtime does not match the flow type runtime. */
880
+ DataTypeIdentifierRuntimeMismatch = 'DATA_TYPE_IDENTIFIER_RUNTIME_MISMATCH',
881
+ /** The data type rule model is invalid. */
882
+ DataTypeRuleModelInvalid = 'DATA_TYPE_RULE_MODEL_INVALID',
883
+ /** The data type runtime does not match the flow type runtime. */
884
+ DataTypeRuntimeMismatch = 'DATA_TYPE_RUNTIME_MISMATCH',
885
+ /** The flow setting model is invalid. */
886
+ FlowSettingModelInvalid = 'FLOW_SETTING_MODEL_INVALID',
887
+ /** The flow type runtime does not match the project primary runtime. */
888
+ FlowTypeRuntimeMismatch = 'FLOW_TYPE_RUNTIME_MISMATCH',
889
+ /** The node function runtime does not match the project primary runtime. */
890
+ NodeFunctionRuntimeMismatch = 'NODE_FUNCTION_RUNTIME_MISMATCH',
891
+ /** The project does not have a primary runtime set. */
892
+ NoPrimaryRuntime = 'NO_PRIMARY_RUNTIME'
893
+ }
894
+
895
+ /** Represents the severity of a flow validation error */
896
+ export const enum FlowValidationSeverityEnum {
897
+ /** A blocking validation error */
898
+ Error = 'ERROR',
899
+ /** A minor typographical issue can also be blocking */
900
+ Typo = 'TYPO',
901
+ /** A non-blocking validation warning */
902
+ Warning = 'WARNING',
903
+ /** A weak validation issue that may not need to be addressed */
904
+ Weak = 'WEAK'
905
+ }
906
+
547
907
  /** Represents a function definition */
548
908
  export interface FunctionDefinition {
549
909
  __typename?: 'FunctionDefinition';
910
+ /** Name of the function */
911
+ aliases?: Maybe<TranslationConnection>;
550
912
  /** Time when this FunctionDefinition was created */
551
913
  createdAt?: Maybe<Scalars['Time']['output']>;
552
914
  /** Deprecation message of the function */
553
915
  deprecationMessages?: Maybe<TranslationConnection>;
554
916
  /** Description of the function */
555
917
  descriptions?: Maybe<TranslationConnection>;
918
+ /** Display message of the function */
919
+ displayMessages?: Maybe<TranslationConnection>;
556
920
  /** Documentation of the function */
557
921
  documentations?: Maybe<TranslationConnection>;
558
922
  /** Generic keys of the function */
559
923
  genericKeys?: Maybe<Array<Scalars['String']['output']>>;
560
924
  /** Global ID of this FunctionDefinition */
561
925
  id?: Maybe<Scalars['FunctionDefinitionID']['output']>;
926
+ /** Identifier of the function */
927
+ identifier?: Maybe<Scalars['String']['output']>;
562
928
  /** Name of the function */
563
929
  names?: Maybe<TranslationConnection>;
564
930
  /** Parameters of the function */
@@ -574,6 +940,15 @@ export interface FunctionDefinition {
574
940
  }
575
941
 
576
942
 
943
+ /** Represents a function definition */
944
+ export interface FunctionDefinitionAliasesArgs {
945
+ after?: InputMaybe<Scalars['String']['input']>;
946
+ before?: InputMaybe<Scalars['String']['input']>;
947
+ first?: InputMaybe<Scalars['Int']['input']>;
948
+ last?: InputMaybe<Scalars['Int']['input']>;
949
+ }
950
+
951
+
577
952
  /** Represents a function definition */
578
953
  export interface FunctionDefinitionDeprecationMessagesArgs {
579
954
  after?: InputMaybe<Scalars['String']['input']>;
@@ -592,6 +967,15 @@ export interface FunctionDefinitionDescriptionsArgs {
592
967
  }
593
968
 
594
969
 
970
+ /** Represents a function definition */
971
+ export interface FunctionDefinitionDisplayMessagesArgs {
972
+ after?: InputMaybe<Scalars['String']['input']>;
973
+ before?: InputMaybe<Scalars['String']['input']>;
974
+ first?: InputMaybe<Scalars['Int']['input']>;
975
+ last?: InputMaybe<Scalars['Int']['input']>;
976
+ }
977
+
978
+
595
979
  /** Represents a function definition */
596
980
  export interface FunctionDefinitionDocumentationsArgs {
597
981
  after?: InputMaybe<Scalars['String']['input']>;
@@ -656,7 +1040,7 @@ export interface GenericCombinationStrategy {
656
1040
  }
657
1041
 
658
1042
  /** The available combination strategy types. */
659
- export enum GenericCombinationStrategyType {
1043
+ export const enum GenericCombinationStrategyType {
660
1044
  /** Represents a logical AND combination. */
661
1045
  And = 'AND',
662
1046
  /** Represents a logical OR combination. */
@@ -673,7 +1057,7 @@ export interface GenericMapper {
673
1057
  /** Global ID of this GenericMapper */
674
1058
  id?: Maybe<Scalars['GenericMapperID']['output']>;
675
1059
  /** The source data type identifier. */
676
- sources?: Maybe<Array<DataTypeIdentifier>>;
1060
+ sourceDataTypeIdentifiers?: Maybe<Array<DataTypeIdentifier>>;
677
1061
  /** The target key for the generic value. */
678
1062
  target?: Maybe<Scalars['String']['output']>;
679
1063
  /** Time when this GenericMapper was last updated */
@@ -683,7 +1067,7 @@ export interface GenericMapper {
683
1067
  /** Input type for generic mappers */
684
1068
  export interface GenericMapperInput {
685
1069
  /** The source data type identifier for the mapper */
686
- sources: Array<DataTypeIdentifierInput>;
1070
+ sourceDataTypeIdentifiers: Array<DataTypeIdentifierInput>;
687
1071
  /** The target data type identifier for the mapper */
688
1072
  target: Scalars['String']['input'];
689
1073
  }
@@ -717,6 +1101,58 @@ export interface IdentityInput {
717
1101
  code?: InputMaybe<Scalars['String']['input']>;
718
1102
  }
719
1103
 
1104
+ /** Represents an identity provider configuration. */
1105
+ export interface IdentityProvider {
1106
+ __typename?: 'IdentityProvider';
1107
+ /** Configuration details of the identity provider. */
1108
+ config?: Maybe<IdentityProviderConfig>;
1109
+ /** Unique identifier of the identity provider. */
1110
+ id?: Maybe<Scalars['String']['output']>;
1111
+ /** Type of the identity provider. */
1112
+ type?: Maybe<IdentityProviderType>;
1113
+ }
1114
+
1115
+ /** Represents the configuration of an identity provider. */
1116
+ export type IdentityProviderConfig = OidcIdentityProviderConfig | SamlIdentityProviderConfig;
1117
+
1118
+ /** The connection type for IdentityProvider. */
1119
+ export interface IdentityProviderConnection {
1120
+ __typename?: 'IdentityProviderConnection';
1121
+ /** Total count of collection. */
1122
+ count?: Maybe<Scalars['Int']['output']>;
1123
+ /** A list of edges. */
1124
+ edges?: Maybe<Array<Maybe<IdentityProviderEdge>>>;
1125
+ /** A list of nodes. */
1126
+ nodes?: Maybe<Array<Maybe<IdentityProvider>>>;
1127
+ /** Information to aid in pagination. */
1128
+ pageInfo?: Maybe<PageInfo>;
1129
+ }
1130
+
1131
+ /** An edge in a connection. */
1132
+ export interface IdentityProviderEdge {
1133
+ __typename?: 'IdentityProviderEdge';
1134
+ /** A cursor for use in pagination. */
1135
+ cursor?: Maybe<Scalars['String']['output']>;
1136
+ /** The item at the end of the edge. */
1137
+ node?: Maybe<IdentityProvider>;
1138
+ }
1139
+
1140
+ /** The available identity provider types. */
1141
+ export const enum IdentityProviderType {
1142
+ /** Identity provider of type discord */
1143
+ Discord = 'DISCORD',
1144
+ /** Identity provider of type github */
1145
+ Github = 'GITHUB',
1146
+ /** Identity provider of type google */
1147
+ Google = 'GOOGLE',
1148
+ /** Identity provider of type microsoft */
1149
+ Microsoft = 'MICROSOFT',
1150
+ /** Identity provider of type oidc */
1151
+ Oidc = 'OIDC',
1152
+ /** Identity provider of type saml */
1153
+ Saml = 'SAML'
1154
+ }
1155
+
720
1156
  /** Represents a literal value, such as a string or number. */
721
1157
  export interface LiteralValue {
722
1158
  __typename?: 'LiteralValue';
@@ -735,6 +1171,15 @@ export interface MessageError {
735
1171
  message?: Maybe<Scalars['String']['output']>;
736
1172
  }
737
1173
 
1174
+ /** Application metadata */
1175
+ export interface Metadata {
1176
+ __typename?: 'Metadata';
1177
+ /** List of loaded extensions */
1178
+ extensions?: Maybe<Array<Scalars['String']['output']>>;
1179
+ /** Application version */
1180
+ version?: Maybe<Scalars['String']['output']>;
1181
+ }
1182
+
738
1183
  /** Represents the input for mfa authentication */
739
1184
  export interface MfaInput {
740
1185
  /** The type of the mfa authentication */
@@ -743,8 +1188,19 @@ export interface MfaInput {
743
1188
  value: Scalars['String']['input'];
744
1189
  }
745
1190
 
1191
+ /** Represents the MFA status of a user */
1192
+ export interface MfaStatus {
1193
+ __typename?: 'MfaStatus';
1194
+ /** The number of backup codes remaining for the user. */
1195
+ backupCodesCount?: Maybe<Scalars['Int']['output']>;
1196
+ /** Indicates whether MFA is enabled for the user. */
1197
+ enabled?: Maybe<Scalars['Boolean']['output']>;
1198
+ /** Indicates whether TOTP MFA is enabled for the user. */
1199
+ totpEnabled?: Maybe<Scalars['Boolean']['output']>;
1200
+ }
1201
+
746
1202
  /** Represent all available types to authenticate with mfa */
747
- export enum MfaType {
1203
+ export const enum MfaType {
748
1204
  /** Single use backup code */
749
1205
  BackupCode = 'BACKUP_CODE',
750
1206
  /** Time based onetime password */
@@ -764,9 +1220,9 @@ export interface Mutation {
764
1220
  *
765
1221
  */
766
1222
  echo?: Maybe<EchoPayload>;
767
- /** Create a new namespace license. */
1223
+ /** (EE only) Create a new namespace license. */
768
1224
  namespacesLicensesCreate?: Maybe<NamespacesLicensesCreatePayload>;
769
- /** Deletes an namespace license. */
1225
+ /** (EE only) Deletes an namespace license. */
770
1226
  namespacesLicensesDelete?: Maybe<NamespacesLicensesDeletePayload>;
771
1227
  /** Update the roles a member is assigned to. */
772
1228
  namespacesMembersAssignRoles?: Maybe<NamespacesMembersAssignRolesPayload>;
@@ -784,6 +1240,8 @@ export interface Mutation {
784
1240
  namespacesProjectsFlowsCreate?: Maybe<NamespacesProjectsFlowsCreatePayload>;
785
1241
  /** Deletes a namespace project. */
786
1242
  namespacesProjectsFlowsDelete?: Maybe<NamespacesProjectsFlowsDeletePayload>;
1243
+ /** Update an existing flow. */
1244
+ namespacesProjectsFlowsUpdate?: Maybe<NamespacesProjectsFlowsUpdatePayload>;
787
1245
  /** Updates a namespace project. */
788
1246
  namespacesProjectsUpdate?: Maybe<NamespacesProjectsUpdatePayload>;
789
1247
  /** Update the abilities a role is granted. */
@@ -810,6 +1268,10 @@ export interface Mutation {
810
1268
  runtimesRotateToken?: Maybe<RuntimesRotateTokenPayload>;
811
1269
  /** Update an existing runtime. */
812
1270
  runtimesUpdate?: Maybe<RuntimesUpdatePayload>;
1271
+ /** Admin-create a user. */
1272
+ usersCreate?: Maybe<UsersCreatePayload>;
1273
+ /** Delete an existing user. */
1274
+ usersDelete?: Maybe<UsersDeletePayload>;
813
1275
  /** Verify your email when changing it or signing up */
814
1276
  usersEmailVerification?: Maybe<UsersEmailVerificationPayload>;
815
1277
  /** Links an external identity to an existing user */
@@ -830,6 +1292,10 @@ export interface Mutation {
830
1292
  usersMfaTotpGenerateSecret?: Maybe<UsersMfaTotpGenerateSecretPayload>;
831
1293
  /** Validates a TOTP value for the given secret and enables TOTP MFA for the user */
832
1294
  usersMfaTotpValidateSecret?: Maybe<UsersMfaTotpValidateSecretPayload>;
1295
+ /** Reset the password using a reset token */
1296
+ usersPasswordReset?: Maybe<UsersPasswordResetPayload>;
1297
+ /** Request an password reset */
1298
+ usersPasswordResetRequest?: Maybe<UsersPasswordResetRequestPayload>;
833
1299
  /** Register a new user */
834
1300
  usersRegister?: Maybe<UsersRegisterPayload>;
835
1301
  /** Update an existing user. */
@@ -909,6 +1375,12 @@ export interface MutationNamespacesProjectsFlowsDeleteArgs {
909
1375
  }
910
1376
 
911
1377
 
1378
+ /** Root Mutation type */
1379
+ export interface MutationNamespacesProjectsFlowsUpdateArgs {
1380
+ input: NamespacesProjectsFlowsUpdateInput;
1381
+ }
1382
+
1383
+
912
1384
  /** Root Mutation type */
913
1385
  export interface MutationNamespacesProjectsUpdateArgs {
914
1386
  input: NamespacesProjectsUpdateInput;
@@ -987,6 +1459,18 @@ export interface MutationRuntimesUpdateArgs {
987
1459
  }
988
1460
 
989
1461
 
1462
+ /** Root Mutation type */
1463
+ export interface MutationUsersCreateArgs {
1464
+ input: UsersCreateInput;
1465
+ }
1466
+
1467
+
1468
+ /** Root Mutation type */
1469
+ export interface MutationUsersDeleteArgs {
1470
+ input: UsersDeleteInput;
1471
+ }
1472
+
1473
+
990
1474
  /** Root Mutation type */
991
1475
  export interface MutationUsersEmailVerificationArgs {
992
1476
  input: UsersEmailVerificationInput;
@@ -1047,6 +1531,18 @@ export interface MutationUsersMfaTotpValidateSecretArgs {
1047
1531
  }
1048
1532
 
1049
1533
 
1534
+ /** Root Mutation type */
1535
+ export interface MutationUsersPasswordResetArgs {
1536
+ input: UsersPasswordResetInput;
1537
+ }
1538
+
1539
+
1540
+ /** Root Mutation type */
1541
+ export interface MutationUsersPasswordResetRequestArgs {
1542
+ input: UsersPasswordResetRequestInput;
1543
+ }
1544
+
1545
+
1050
1546
  /** Root Mutation type */
1051
1547
  export interface MutationUsersRegisterArgs {
1052
1548
  input: UsersRegisterInput;
@@ -1063,11 +1559,13 @@ export interface Namespace {
1063
1559
  __typename?: 'Namespace';
1064
1560
  /** Time when this Namespace was created */
1065
1561
  createdAt?: Maybe<Scalars['Time']['output']>;
1562
+ /** (EE only) Currently active license of the namespace */
1563
+ currentNamespaceLicense?: Maybe<NamespaceLicense>;
1066
1564
  /** Global ID of this Namespace */
1067
1565
  id?: Maybe<Scalars['NamespaceID']['output']>;
1068
1566
  /** Members of the namespace */
1069
1567
  members?: Maybe<NamespaceMemberConnection>;
1070
- /** Licenses of the namespace */
1568
+ /** (EE only) Licenses of the namespace */
1071
1569
  namespaceLicenses?: Maybe<NamespaceLicenseConnection>;
1072
1570
  /** Parent of this namespace */
1073
1571
  parent?: Maybe<NamespaceParent>;
@@ -1079,6 +1577,8 @@ export interface Namespace {
1079
1577
  runtimes?: Maybe<RuntimeConnection>;
1080
1578
  /** Time when this Namespace was last updated */
1081
1579
  updatedAt?: Maybe<Scalars['Time']['output']>;
1580
+ /** Abilities for the current user on this Namespace */
1581
+ userAbilities?: Maybe<NamespaceUserAbilities>;
1082
1582
  }
1083
1583
 
1084
1584
 
@@ -1126,17 +1626,25 @@ export interface NamespaceRuntimesArgs {
1126
1626
  last?: InputMaybe<Scalars['Int']['input']>;
1127
1627
  }
1128
1628
 
1129
- /** Represents a Namespace License */
1629
+ /** (EE only) Represents a Namespace License */
1130
1630
  export interface NamespaceLicense {
1131
1631
  __typename?: 'NamespaceLicense';
1132
1632
  /** Time when this NamespaceLicense was created */
1133
1633
  createdAt?: Maybe<Scalars['Time']['output']>;
1634
+ /** The end date of the license */
1635
+ endDate?: Maybe<Scalars['Time']['output']>;
1134
1636
  /** Global ID of this NamespaceLicense */
1135
1637
  id?: Maybe<Scalars['NamespaceLicenseID']['output']>;
1638
+ /** The licensee information */
1639
+ licensee?: Maybe<Scalars['JSON']['output']>;
1136
1640
  /** The namespace the license belongs to */
1137
1641
  namespace?: Maybe<Namespace>;
1642
+ /** The start date of the license */
1643
+ startDate?: Maybe<Scalars['Time']['output']>;
1138
1644
  /** Time when this NamespaceLicense was last updated */
1139
1645
  updatedAt?: Maybe<Scalars['Time']['output']>;
1646
+ /** Abilities for the current user on this NamespaceLicense */
1647
+ userAbilities?: Maybe<NamespaceLicenseUserAbilities>;
1140
1648
  }
1141
1649
 
1142
1650
  /** The connection type for NamespaceLicense. */
@@ -1161,6 +1669,13 @@ export interface NamespaceLicenseEdge {
1161
1669
  node?: Maybe<NamespaceLicense>;
1162
1670
  }
1163
1671
 
1672
+ /** Abilities for the current user on this NamespaceLicense */
1673
+ export interface NamespaceLicenseUserAbilities {
1674
+ __typename?: 'NamespaceLicenseUserAbilities';
1675
+ /** Shows if the current user has the `delete_namespace_license` ability on this NamespaceLicense */
1676
+ deleteNamespaceLicense?: Maybe<Scalars['Boolean']['output']>;
1677
+ }
1678
+
1164
1679
  /** Represents a namespace member */
1165
1680
  export interface NamespaceMember {
1166
1681
  __typename?: 'NamespaceMember';
@@ -1168,12 +1683,36 @@ export interface NamespaceMember {
1168
1683
  createdAt?: Maybe<Scalars['Time']['output']>;
1169
1684
  /** Global ID of this NamespaceMember */
1170
1685
  id?: Maybe<Scalars['NamespaceMemberID']['output']>;
1686
+ /** Memberroles of the member */
1687
+ memberRoles?: Maybe<NamespaceMemberRoleConnection>;
1171
1688
  /** Namespace this member belongs to */
1172
1689
  namespace?: Maybe<Namespace>;
1690
+ /** Roles of the member */
1691
+ roles?: Maybe<NamespaceRoleConnection>;
1173
1692
  /** Time when this NamespaceMember was last updated */
1174
1693
  updatedAt?: Maybe<Scalars['Time']['output']>;
1175
1694
  /** User this member belongs to */
1176
1695
  user?: Maybe<User>;
1696
+ /** Abilities for the current user on this NamespaceMember */
1697
+ userAbilities?: Maybe<NamespaceMemberUserAbilities>;
1698
+ }
1699
+
1700
+
1701
+ /** Represents a namespace member */
1702
+ export interface NamespaceMemberMemberRolesArgs {
1703
+ after?: InputMaybe<Scalars['String']['input']>;
1704
+ before?: InputMaybe<Scalars['String']['input']>;
1705
+ first?: InputMaybe<Scalars['Int']['input']>;
1706
+ last?: InputMaybe<Scalars['Int']['input']>;
1707
+ }
1708
+
1709
+
1710
+ /** Represents a namespace member */
1711
+ export interface NamespaceMemberRolesArgs {
1712
+ after?: InputMaybe<Scalars['String']['input']>;
1713
+ before?: InputMaybe<Scalars['String']['input']>;
1714
+ first?: InputMaybe<Scalars['Int']['input']>;
1715
+ last?: InputMaybe<Scalars['Int']['input']>;
1177
1716
  }
1178
1717
 
1179
1718
  /** The connection type for NamespaceMember. */
@@ -1213,8 +1752,39 @@ export interface NamespaceMemberRole {
1213
1752
  updatedAt?: Maybe<Scalars['Time']['output']>;
1214
1753
  }
1215
1754
 
1755
+ /** The connection type for NamespaceMemberRole. */
1756
+ export interface NamespaceMemberRoleConnection {
1757
+ __typename?: 'NamespaceMemberRoleConnection';
1758
+ /** Total count of collection. */
1759
+ count?: Maybe<Scalars['Int']['output']>;
1760
+ /** A list of edges. */
1761
+ edges?: Maybe<Array<Maybe<NamespaceMemberRoleEdge>>>;
1762
+ /** A list of nodes. */
1763
+ nodes?: Maybe<Array<Maybe<NamespaceMemberRole>>>;
1764
+ /** Information to aid in pagination. */
1765
+ pageInfo?: Maybe<PageInfo>;
1766
+ }
1767
+
1768
+ /** An edge in a connection. */
1769
+ export interface NamespaceMemberRoleEdge {
1770
+ __typename?: 'NamespaceMemberRoleEdge';
1771
+ /** A cursor for use in pagination. */
1772
+ cursor?: Maybe<Scalars['String']['output']>;
1773
+ /** The item at the end of the edge. */
1774
+ node?: Maybe<NamespaceMemberRole>;
1775
+ }
1776
+
1777
+ /** Abilities for the current user on this NamespaceMember */
1778
+ export interface NamespaceMemberUserAbilities {
1779
+ __typename?: 'NamespaceMemberUserAbilities';
1780
+ /** Shows if the current user has the `assign_member_roles` ability on this NamespaceMember */
1781
+ assignMemberRoles?: Maybe<Scalars['Boolean']['output']>;
1782
+ /** Shows if the current user has the `delete_member` ability on this NamespaceMember */
1783
+ deleteMember?: Maybe<Scalars['Boolean']['output']>;
1784
+ }
1785
+
1216
1786
  /** Objects that can present a namespace */
1217
- export type NamespaceParent = Organization;
1787
+ export type NamespaceParent = Organization | User;
1218
1788
 
1219
1789
  /** Represents a namespace project */
1220
1790
  export interface NamespaceProject {
@@ -1235,10 +1805,14 @@ export interface NamespaceProject {
1235
1805
  namespace?: Maybe<Namespace>;
1236
1806
  /** The primary runtime for the project */
1237
1807
  primaryRuntime?: Maybe<Runtime>;
1808
+ /** Roles assigned to this project */
1809
+ roles?: Maybe<NamespaceRoleConnection>;
1238
1810
  /** Runtimes assigned to this project */
1239
1811
  runtimes?: Maybe<RuntimeConnection>;
1240
1812
  /** Time when this NamespaceProject was last updated */
1241
1813
  updatedAt?: Maybe<Scalars['Time']['output']>;
1814
+ /** Abilities for the current user on this NamespaceProject */
1815
+ userAbilities?: Maybe<NamespaceProjectUserAbilities>;
1242
1816
  }
1243
1817
 
1244
1818
 
@@ -1257,6 +1831,15 @@ export interface NamespaceProjectFlowsArgs {
1257
1831
  }
1258
1832
 
1259
1833
 
1834
+ /** Represents a namespace project */
1835
+ export interface NamespaceProjectRolesArgs {
1836
+ after?: InputMaybe<Scalars['String']['input']>;
1837
+ before?: InputMaybe<Scalars['String']['input']>;
1838
+ first?: InputMaybe<Scalars['Int']['input']>;
1839
+ last?: InputMaybe<Scalars['Int']['input']>;
1840
+ }
1841
+
1842
+
1260
1843
  /** Represents a namespace project */
1261
1844
  export interface NamespaceProjectRuntimesArgs {
1262
1845
  after?: InputMaybe<Scalars['String']['input']>;
@@ -1287,6 +1870,19 @@ export interface NamespaceProjectEdge {
1287
1870
  node?: Maybe<NamespaceProject>;
1288
1871
  }
1289
1872
 
1873
+ /** Abilities for the current user on this NamespaceProject */
1874
+ export interface NamespaceProjectUserAbilities {
1875
+ __typename?: 'NamespaceProjectUserAbilities';
1876
+ /** Shows if the current user has the `assign_project_runtimes` ability on this NamespaceProject */
1877
+ assignProjectRuntimes?: Maybe<Scalars['Boolean']['output']>;
1878
+ /** Shows if the current user has the `create_flow` ability on this NamespaceProject */
1879
+ createFlow?: Maybe<Scalars['Boolean']['output']>;
1880
+ /** Shows if the current user has the `delete_namespace_project` ability on this NamespaceProject */
1881
+ deleteNamespaceProject?: Maybe<Scalars['Boolean']['output']>;
1882
+ /** Shows if the current user has the `update_namespace_project` ability on this NamespaceProject */
1883
+ updateNamespaceProject?: Maybe<Scalars['Boolean']['output']>;
1884
+ }
1885
+
1290
1886
  /** Represents a namespace role. */
1291
1887
  export interface NamespaceRole {
1292
1888
  __typename?: 'NamespaceRole';
@@ -1298,12 +1894,16 @@ export interface NamespaceRole {
1298
1894
  createdAt?: Maybe<Scalars['Time']['output']>;
1299
1895
  /** Global ID of this NamespaceRole */
1300
1896
  id?: Maybe<Scalars['NamespaceRoleID']['output']>;
1897
+ /** The members this role is assigned to */
1898
+ members?: Maybe<NamespaceMemberConnection>;
1301
1899
  /** The name of this role */
1302
1900
  name?: Maybe<Scalars['String']['output']>;
1303
1901
  /** The namespace where this role belongs to */
1304
1902
  namespace?: Maybe<Namespace>;
1305
1903
  /** Time when this NamespaceRole was last updated */
1306
1904
  updatedAt?: Maybe<Scalars['Time']['output']>;
1905
+ /** Abilities for the current user on this NamespaceRole */
1906
+ userAbilities?: Maybe<NamespaceRoleUserAbilities>;
1307
1907
  }
1308
1908
 
1309
1909
 
@@ -1315,8 +1915,17 @@ export interface NamespaceRoleAssignedProjectsArgs {
1315
1915
  last?: InputMaybe<Scalars['Int']['input']>;
1316
1916
  }
1317
1917
 
1918
+
1919
+ /** Represents a namespace role. */
1920
+ export interface NamespaceRoleMembersArgs {
1921
+ after?: InputMaybe<Scalars['String']['input']>;
1922
+ before?: InputMaybe<Scalars['String']['input']>;
1923
+ first?: InputMaybe<Scalars['Int']['input']>;
1924
+ last?: InputMaybe<Scalars['Int']['input']>;
1925
+ }
1926
+
1318
1927
  /** Represents abilities that can be granted to roles in namespaces. */
1319
- export enum NamespaceRoleAbility {
1928
+ export const enum NamespaceRoleAbility {
1320
1929
  /** Allows to change the roles of a namespace member */
1321
1930
  AssignMemberRoles = 'ASSIGN_MEMBER_ROLES',
1322
1931
  /** Allows to assign runtimes to a project in the namespace */
@@ -1326,7 +1935,7 @@ export enum NamespaceRoleAbility {
1326
1935
  /** Allows to change the assigned projects of a namespace role */
1327
1936
  AssignRoleProjects = 'ASSIGN_ROLE_PROJECTS',
1328
1937
  /** Allows to create flows in a namespace project */
1329
- CreateFlows = 'CREATE_FLOWS',
1938
+ CreateFlow = 'CREATE_FLOW',
1330
1939
  /** Allows to create a license for the namespace */
1331
1940
  CreateNamespaceLicense = 'CREATE_NAMESPACE_LICENSE',
1332
1941
  /** Allows to create a project in the namespace */
@@ -1336,7 +1945,7 @@ export enum NamespaceRoleAbility {
1336
1945
  /** Allows to create a runtime globally or for the namespace */
1337
1946
  CreateRuntime = 'CREATE_RUNTIME',
1338
1947
  /** Allows to delete flows in a namespace project */
1339
- DeleteFlows = 'DELETE_FLOWS',
1948
+ DeleteFlow = 'DELETE_FLOW',
1340
1949
  /** Allows to remove members of a namespace */
1341
1950
  DeleteMember = 'DELETE_MEMBER',
1342
1951
  /** Allows to delete the license of the namespace */
@@ -1360,7 +1969,7 @@ export enum NamespaceRoleAbility {
1360
1969
  /** Allows to regenerate a runtime token */
1361
1970
  RotateRuntimeToken = 'ROTATE_RUNTIME_TOKEN',
1362
1971
  /** Allows to update flows in the project */
1363
- UpdateFlows = 'UPDATE_FLOWS',
1972
+ UpdateFlow = 'UPDATE_FLOW',
1364
1973
  /** Allows to update the project of the namespace */
1365
1974
  UpdateNamespaceProject = 'UPDATE_NAMESPACE_PROJECT',
1366
1975
  /** Allows to update the namespace role */
@@ -1393,6 +2002,34 @@ export interface NamespaceRoleEdge {
1393
2002
  node?: Maybe<NamespaceRole>;
1394
2003
  }
1395
2004
 
2005
+ /** Abilities for the current user on this NamespaceRole */
2006
+ export interface NamespaceRoleUserAbilities {
2007
+ __typename?: 'NamespaceRoleUserAbilities';
2008
+ /** Shows if the current user has the `assign_role_abilities` ability on this NamespaceRole */
2009
+ assignRoleAbilities?: Maybe<Scalars['Boolean']['output']>;
2010
+ /** Shows if the current user has the `assign_role_projects` ability on this NamespaceRole */
2011
+ assignRoleProjects?: Maybe<Scalars['Boolean']['output']>;
2012
+ /** Shows if the current user has the `delete_namespace_role` ability on this NamespaceRole */
2013
+ deleteNamespaceRole?: Maybe<Scalars['Boolean']['output']>;
2014
+ /** Shows if the current user has the `update_namespace_role` ability on this NamespaceRole */
2015
+ updateNamespaceRole?: Maybe<Scalars['Boolean']['output']>;
2016
+ }
2017
+
2018
+ /** Abilities for the current user on this Namespace */
2019
+ export interface NamespaceUserAbilities {
2020
+ __typename?: 'NamespaceUserAbilities';
2021
+ /** Shows if the current user has the `create_namespace_license` ability on this Namespace */
2022
+ createNamespaceLicense?: Maybe<Scalars['Boolean']['output']>;
2023
+ /** Shows if the current user has the `create_namespace_project` ability on this Namespace */
2024
+ createNamespaceProject?: Maybe<Scalars['Boolean']['output']>;
2025
+ /** Shows if the current user has the `create_namespace_role` ability on this Namespace */
2026
+ createNamespaceRole?: Maybe<Scalars['Boolean']['output']>;
2027
+ /** Shows if the current user has the `create_runtime` ability on this Namespace */
2028
+ createRuntime?: Maybe<Scalars['Boolean']['output']>;
2029
+ /** Shows if the current user has the `invite_member` ability on this Namespace */
2030
+ inviteMember?: Maybe<Scalars['Boolean']['output']>;
2031
+ }
2032
+
1396
2033
  /** Autogenerated input type of NamespacesLicensesCreate */
1397
2034
  export interface NamespacesLicensesCreateInput {
1398
2035
  /** A unique identifier for the client performing the mutation. */
@@ -1450,8 +2087,8 @@ export interface NamespacesMembersAssignRolesPayload {
1450
2087
  clientMutationId?: Maybe<Scalars['String']['output']>;
1451
2088
  /** Errors encountered during execution of the mutation. */
1452
2089
  errors?: Maybe<Array<Error>>;
1453
- /** The roles the member is now assigned to */
1454
- namespaceMemberRoles?: Maybe<Array<NamespaceMemberRole>>;
2090
+ /** The member which was assigned the roles */
2091
+ member?: Maybe<NamespaceMember>;
1455
2092
  }
1456
2093
 
1457
2094
  /** Autogenerated input type of NamespacesMembersDelete */
@@ -1597,6 +2234,27 @@ export interface NamespacesProjectsFlowsDeletePayload {
1597
2234
  flow?: Maybe<Flow>;
1598
2235
  }
1599
2236
 
2237
+ /** Autogenerated input type of NamespacesProjectsFlowsUpdate */
2238
+ export interface NamespacesProjectsFlowsUpdateInput {
2239
+ /** A unique identifier for the client performing the mutation. */
2240
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2241
+ /** The ID of the flow to update */
2242
+ flowId: Scalars['FlowID']['input'];
2243
+ /** The updated flow */
2244
+ flowInput: FlowInput;
2245
+ }
2246
+
2247
+ /** Autogenerated return type of NamespacesProjectsFlowsUpdate. */
2248
+ export interface NamespacesProjectsFlowsUpdatePayload {
2249
+ __typename?: 'NamespacesProjectsFlowsUpdatePayload';
2250
+ /** A unique identifier for the client performing the mutation. */
2251
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2252
+ /** Errors encountered during execution of the mutation. */
2253
+ errors?: Maybe<Array<Error>>;
2254
+ /** The updated flow. */
2255
+ flow?: Maybe<Flow>;
2256
+ }
2257
+
1600
2258
  /** Autogenerated input type of NamespacesProjectsUpdate */
1601
2259
  export interface NamespacesProjectsUpdateInput {
1602
2260
  /** A unique identifier for the client performing the mutation. */
@@ -1736,14 +2394,14 @@ export interface NodeFunction {
1736
2394
  __typename?: 'NodeFunction';
1737
2395
  /** Time when this NodeFunction was created */
1738
2396
  createdAt?: Maybe<Scalars['Time']['output']>;
2397
+ /** The definition of the Node Function */
2398
+ functionDefinition?: Maybe<FunctionDefinition>;
1739
2399
  /** Global ID of this NodeFunction */
1740
2400
  id?: Maybe<Scalars['NodeFunctionID']['output']>;
1741
2401
  /** The ID of the next Node Function in the flow */
1742
2402
  nextNodeId?: Maybe<Scalars['NodeFunctionID']['output']>;
1743
2403
  /** The parameters of the Node Function */
1744
2404
  parameters?: Maybe<NodeParameterConnection>;
1745
- /** The definition of the Node Function */
1746
- runtimeFunction?: Maybe<RuntimeFunctionDefinition>;
1747
2405
  /** Time when this NodeFunction was last updated */
1748
2406
  updatedAt?: Maybe<Scalars['Time']['output']>;
1749
2407
  }
@@ -1779,10 +2437,19 @@ export interface NodeFunctionEdge {
1779
2437
  node?: Maybe<NodeFunction>;
1780
2438
  }
1781
2439
 
2440
+ /** Represents a Node Function id wrapper. */
2441
+ export interface NodeFunctionIdWrapper {
2442
+ __typename?: 'NodeFunctionIdWrapper';
2443
+ /** Global ID of this NodeFunctionIdWrapper */
2444
+ id?: Maybe<Scalars['NodeFunctionID']['output']>;
2445
+ }
2446
+
1782
2447
  /** Input type for a Node Function */
1783
2448
  export interface NodeFunctionInput {
2449
+ /** The identifier of the Node Function used to create/update the flow */
2450
+ id: Scalars['NodeFunctionID']['input'];
1784
2451
  /** The next Node Function in the flow */
1785
- nextNode?: InputMaybe<NodeFunctionInput>;
2452
+ nextNodeId?: InputMaybe<Scalars['NodeFunctionID']['input']>;
1786
2453
  /** The parameters of the Node Function */
1787
2454
  parameters: Array<NodeParameterInput>;
1788
2455
  /** The identifier of the Runtime Function Definition */
@@ -1835,18 +2502,37 @@ export interface NodeParameterInput {
1835
2502
  }
1836
2503
 
1837
2504
  /** Represents a parameter value for a node. */
1838
- export type NodeParameterValue = LiteralValue | NodeFunction | ReferenceValue;
2505
+ export type NodeParameterValue = LiteralValue | NodeFunctionIdWrapper | ReferenceValue;
1839
2506
 
1840
2507
  /** Input type for parameter value */
1841
2508
  export interface NodeParameterValueInput {
1842
- /** The function value of the parameter */
1843
- functionValue?: InputMaybe<NodeFunctionInput>;
1844
2509
  /** The literal value of the parameter */
1845
2510
  literalValue?: InputMaybe<Scalars['JSON']['input']>;
2511
+ /** The function value of the parameter as an id */
2512
+ nodeFunctionId?: InputMaybe<Scalars['NodeFunctionID']['input']>;
1846
2513
  /** The reference value of the parameter */
1847
2514
  referenceValue?: InputMaybe<ReferenceValueInput>;
1848
2515
  }
1849
2516
 
2517
+ /** Represents an OIDC identity provider configuration */
2518
+ export interface OidcIdentityProviderConfig {
2519
+ __typename?: 'OidcIdentityProviderConfig';
2520
+ /** List of attribute statements for the OIDC identity provider */
2521
+ attributeStatements?: Maybe<Scalars['JSON']['output']>;
2522
+ /** The authorization URL for the OIDC identity provider */
2523
+ authorizationUrl?: Maybe<Scalars['String']['output']>;
2524
+ /** The client ID for the OIDC identity provider */
2525
+ clientId?: Maybe<Scalars['String']['output']>;
2526
+ /** The client secret for the OIDC identity provider */
2527
+ clientSecret?: Maybe<Scalars['String']['output']>;
2528
+ /** The name of the OIDC identity provider */
2529
+ providerName?: Maybe<Scalars['String']['output']>;
2530
+ /** The redirect URI for the OIDC identity provider */
2531
+ redirectUri?: Maybe<Scalars['String']['output']>;
2532
+ /** The user details URL for the OIDC identity provider */
2533
+ userDetailsUrl?: Maybe<Scalars['String']['output']>;
2534
+ }
2535
+
1850
2536
  /** Represents a Organization */
1851
2537
  export interface Organization {
1852
2538
  __typename?: 'Organization';
@@ -1860,6 +2546,39 @@ export interface Organization {
1860
2546
  namespace?: Maybe<Namespace>;
1861
2547
  /** Time when this Organization was last updated */
1862
2548
  updatedAt?: Maybe<Scalars['Time']['output']>;
2549
+ /** Abilities for the current user on this Organization */
2550
+ userAbilities?: Maybe<OrganizationUserAbilities>;
2551
+ }
2552
+
2553
+ /** The connection type for Organization. */
2554
+ export interface OrganizationConnection {
2555
+ __typename?: 'OrganizationConnection';
2556
+ /** Total count of collection. */
2557
+ count?: Maybe<Scalars['Int']['output']>;
2558
+ /** A list of edges. */
2559
+ edges?: Maybe<Array<Maybe<OrganizationEdge>>>;
2560
+ /** A list of nodes. */
2561
+ nodes?: Maybe<Array<Maybe<Organization>>>;
2562
+ /** Information to aid in pagination. */
2563
+ pageInfo?: Maybe<PageInfo>;
2564
+ }
2565
+
2566
+ /** An edge in a connection. */
2567
+ export interface OrganizationEdge {
2568
+ __typename?: 'OrganizationEdge';
2569
+ /** A cursor for use in pagination. */
2570
+ cursor?: Maybe<Scalars['String']['output']>;
2571
+ /** The item at the end of the edge. */
2572
+ node?: Maybe<Organization>;
2573
+ }
2574
+
2575
+ /** Abilities for the current user on this Organization */
2576
+ export interface OrganizationUserAbilities {
2577
+ __typename?: 'OrganizationUserAbilities';
2578
+ /** Shows if the current user has the `delete_organization` ability on this Organization */
2579
+ deleteOrganization?: Maybe<Scalars['Boolean']['output']>;
2580
+ /** Shows if the current user has the `update_organization` ability on this Organization */
2581
+ updateOrganization?: Maybe<Scalars['Boolean']['output']>;
1863
2582
  }
1864
2583
 
1865
2584
  /** Autogenerated input type of OrganizationsCreate */
@@ -1940,13 +2659,15 @@ export interface ParameterDefinition {
1940
2659
  /** Time when this ParameterDefinition was created */
1941
2660
  createdAt?: Maybe<Scalars['Time']['output']>;
1942
2661
  /** Data type of the parameter */
1943
- dataType?: Maybe<DataTypeIdentifier>;
2662
+ dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
1944
2663
  /** Description of the parameter */
1945
2664
  descriptions?: Maybe<TranslationConnection>;
1946
2665
  /** Documentation of the parameter */
1947
2666
  documentations?: Maybe<TranslationConnection>;
1948
2667
  /** Global ID of this ParameterDefinition */
1949
2668
  id?: Maybe<Scalars['ParameterDefinitionID']['output']>;
2669
+ /** Identifier of the parameter */
2670
+ identifier?: Maybe<Scalars['String']['output']>;
1950
2671
  /** Name of the parameter */
1951
2672
  names?: Maybe<TranslationConnection>;
1952
2673
  /** Time when this ParameterDefinition was last updated */
@@ -2005,8 +2726,8 @@ export interface ParameterDefinitionEdge {
2005
2726
  /** Root Query type */
2006
2727
  export interface Query {
2007
2728
  __typename?: 'Query';
2008
- /** Get global application settings */
2009
- applicationSettings?: Maybe<ApplicationSettings>;
2729
+ /** Get application information */
2730
+ application?: Maybe<Application>;
2010
2731
  /** Get the currently logged in authentication */
2011
2732
  currentAuthentication?: Maybe<Authentication>;
2012
2733
  /** Get the currently logged in user */
@@ -2023,6 +2744,10 @@ export interface Query {
2023
2744
  nodes?: Maybe<Array<Maybe<Node>>>;
2024
2745
  /** Find a organization */
2025
2746
  organization?: Maybe<Organization>;
2747
+ /** Find organizations */
2748
+ organizations?: Maybe<OrganizationConnection>;
2749
+ /** Find a user */
2750
+ user?: Maybe<User>;
2026
2751
  /** Find users */
2027
2752
  users?: Maybe<UserConnection>;
2028
2753
  }
@@ -2068,6 +2793,22 @@ export interface QueryOrganizationArgs {
2068
2793
  }
2069
2794
 
2070
2795
 
2796
+ /** Root Query type */
2797
+ export interface QueryOrganizationsArgs {
2798
+ after?: InputMaybe<Scalars['String']['input']>;
2799
+ before?: InputMaybe<Scalars['String']['input']>;
2800
+ first?: InputMaybe<Scalars['Int']['input']>;
2801
+ last?: InputMaybe<Scalars['Int']['input']>;
2802
+ }
2803
+
2804
+
2805
+ /** Root Query type */
2806
+ export interface QueryUserArgs {
2807
+ id?: InputMaybe<Scalars['UserID']['input']>;
2808
+ username?: InputMaybe<Scalars['String']['input']>;
2809
+ }
2810
+
2811
+
2071
2812
  /** Root Query type */
2072
2813
  export interface QueryUsersArgs {
2073
2814
  after?: InputMaybe<Scalars['String']['input']>;
@@ -2112,6 +2853,8 @@ export interface ReferenceValue {
2112
2853
  id?: Maybe<Scalars['ReferenceValueID']['output']>;
2113
2854
  /** The node of the reference value. */
2114
2855
  node?: Maybe<Scalars['Int']['output']>;
2856
+ /** The referenced value. */
2857
+ nodeFunctionId?: Maybe<Scalars['NodeFunctionID']['output']>;
2115
2858
  /** The paths associated with this reference value. */
2116
2859
  referencePath?: Maybe<Array<ReferencePath>>;
2117
2860
  /** The scope of the reference value. */
@@ -2124,14 +2867,16 @@ export interface ReferenceValue {
2124
2867
  export interface ReferenceValueInput {
2125
2868
  /** The identifier of the data type this reference value belongs to */
2126
2869
  dataTypeIdentifier: DataTypeIdentifierInput;
2127
- /** The primary level of the reference value */
2128
- primaryLevel: Scalars['Int']['input'];
2870
+ /** The depth of the reference value */
2871
+ depth: Scalars['Int']['input'];
2872
+ /** The node of the reference */
2873
+ node: Scalars['Int']['input'];
2874
+ /** The referenced value */
2875
+ nodeFunctionId: Scalars['NodeFunctionID']['input'];
2129
2876
  /** The paths associated with this reference value */
2130
2877
  referencePath: Array<ReferencePathInput>;
2131
- /** The secondary level of the reference value */
2132
- secondaryLevel: Scalars['Int']['input'];
2133
- /** The tertiary level of the reference value */
2134
- tertiaryLevel?: InputMaybe<Scalars['Int']['input']>;
2878
+ /** The scope of the reference value */
2879
+ scope: Array<Scalars['Int']['input']>;
2135
2880
  }
2136
2881
 
2137
2882
  /** Represents a runtime */
@@ -2153,12 +2898,16 @@ export interface Runtime {
2153
2898
  namespace?: Maybe<Namespace>;
2154
2899
  /** Projects associated with the runtime */
2155
2900
  projects?: Maybe<NamespaceProjectConnection>;
2901
+ /** Functions of the runtime */
2902
+ runtimeFunctionDefinitions?: Maybe<RuntimeFunctionDefinitionConnection>;
2156
2903
  /** The status of the runtime */
2157
2904
  status?: Maybe<RuntimeStatusType>;
2158
2905
  /** Token belonging to the runtime, only present on creation */
2159
2906
  token?: Maybe<Scalars['String']['output']>;
2160
2907
  /** Time when this Runtime was last updated */
2161
2908
  updatedAt?: Maybe<Scalars['Time']['output']>;
2909
+ /** Abilities for the current user on this Runtime */
2910
+ userAbilities?: Maybe<RuntimeUserAbilities>;
2162
2911
  }
2163
2912
 
2164
2913
 
@@ -2188,6 +2937,15 @@ export interface RuntimeProjectsArgs {
2188
2937
  last?: InputMaybe<Scalars['Int']['input']>;
2189
2938
  }
2190
2939
 
2940
+
2941
+ /** Represents a runtime */
2942
+ export interface RuntimeRuntimeFunctionDefinitionsArgs {
2943
+ after?: InputMaybe<Scalars['String']['input']>;
2944
+ before?: InputMaybe<Scalars['String']['input']>;
2945
+ first?: InputMaybe<Scalars['Int']['input']>;
2946
+ last?: InputMaybe<Scalars['Int']['input']>;
2947
+ }
2948
+
2191
2949
  /** The connection type for Runtime. */
2192
2950
  export interface RuntimeConnection {
2193
2951
  __typename?: 'RuntimeConnection';
@@ -2210,25 +2968,27 @@ export interface RuntimeEdge {
2210
2968
  node?: Maybe<Runtime>;
2211
2969
  }
2212
2970
 
2213
- /** Represents a Node Function definition */
2971
+ /** Represents a runtime function definition */
2214
2972
  export interface RuntimeFunctionDefinition {
2215
2973
  __typename?: 'RuntimeFunctionDefinition';
2216
2974
  /** Time when this RuntimeFunctionDefinition was created */
2217
2975
  createdAt?: Maybe<Scalars['Time']['output']>;
2218
- /** Function definitions of the Node Function */
2976
+ /** Function definitions of the runtime function definition */
2219
2977
  functionDefinitions?: Maybe<FunctionDefinitionConnection>;
2220
2978
  /** Global ID of this RuntimeFunctionDefinition */
2221
- id?: Maybe<Scalars['RuntimeParameterDefinitionID']['output']>;
2222
- /** Identifier of the Node Function */
2979
+ id?: Maybe<Scalars['RuntimeFunctionDefinitionID']['output']>;
2980
+ /** Identifier of the runtime function definition */
2223
2981
  identifier?: Maybe<Scalars['String']['output']>;
2224
- /** The runtime this Node Function belongs to */
2982
+ /** The runtime this runtime function definition belongs to */
2225
2983
  runtime?: Maybe<Runtime>;
2984
+ /** Parameter definitions of the runtime function definition */
2985
+ runtimeParameterDefinitions?: Maybe<RuntimeParameterDefinitionConnection>;
2226
2986
  /** Time when this RuntimeFunctionDefinition was last updated */
2227
2987
  updatedAt?: Maybe<Scalars['Time']['output']>;
2228
2988
  }
2229
2989
 
2230
2990
 
2231
- /** Represents a Node Function definition */
2991
+ /** Represents a runtime function definition */
2232
2992
  export interface RuntimeFunctionDefinitionFunctionDefinitionsArgs {
2233
2993
  after?: InputMaybe<Scalars['String']['input']>;
2234
2994
  before?: InputMaybe<Scalars['String']['input']>;
@@ -2236,25 +2996,91 @@ export interface RuntimeFunctionDefinitionFunctionDefinitionsArgs {
2236
2996
  last?: InputMaybe<Scalars['Int']['input']>;
2237
2997
  }
2238
2998
 
2239
- /** Represents a Node parameter definition */
2999
+
3000
+ /** Represents a runtime function definition */
3001
+ export interface RuntimeFunctionDefinitionRuntimeParameterDefinitionsArgs {
3002
+ after?: InputMaybe<Scalars['String']['input']>;
3003
+ before?: InputMaybe<Scalars['String']['input']>;
3004
+ first?: InputMaybe<Scalars['Int']['input']>;
3005
+ last?: InputMaybe<Scalars['Int']['input']>;
3006
+ }
3007
+
3008
+ /** The connection type for RuntimeFunctionDefinition. */
3009
+ export interface RuntimeFunctionDefinitionConnection {
3010
+ __typename?: 'RuntimeFunctionDefinitionConnection';
3011
+ /** Total count of collection. */
3012
+ count?: Maybe<Scalars['Int']['output']>;
3013
+ /** A list of edges. */
3014
+ edges?: Maybe<Array<Maybe<RuntimeFunctionDefinitionEdge>>>;
3015
+ /** A list of nodes. */
3016
+ nodes?: Maybe<Array<Maybe<RuntimeFunctionDefinition>>>;
3017
+ /** Information to aid in pagination. */
3018
+ pageInfo?: Maybe<PageInfo>;
3019
+ }
3020
+
3021
+ /** An edge in a connection. */
3022
+ export interface RuntimeFunctionDefinitionEdge {
3023
+ __typename?: 'RuntimeFunctionDefinitionEdge';
3024
+ /** A cursor for use in pagination. */
3025
+ cursor?: Maybe<Scalars['String']['output']>;
3026
+ /** The item at the end of the edge. */
3027
+ node?: Maybe<RuntimeFunctionDefinition>;
3028
+ }
3029
+
3030
+ /** Represents a runtime parameter definition */
2240
3031
  export interface RuntimeParameterDefinition {
2241
3032
  __typename?: 'RuntimeParameterDefinition';
2242
3033
  /** Time when this RuntimeParameterDefinition was created */
2243
3034
  createdAt?: Maybe<Scalars['Time']['output']>;
2244
3035
  /** Global ID of this RuntimeParameterDefinition */
2245
3036
  id?: Maybe<Scalars['RuntimeParameterDefinitionID']['output']>;
3037
+ /** Identifier of the runtime parameter definition */
3038
+ identifier?: Maybe<Scalars['String']['output']>;
2246
3039
  /** Time when this RuntimeParameterDefinition was last updated */
2247
3040
  updatedAt?: Maybe<Scalars['Time']['output']>;
2248
3041
  }
2249
3042
 
3043
+ /** The connection type for RuntimeParameterDefinition. */
3044
+ export interface RuntimeParameterDefinitionConnection {
3045
+ __typename?: 'RuntimeParameterDefinitionConnection';
3046
+ /** Total count of collection. */
3047
+ count?: Maybe<Scalars['Int']['output']>;
3048
+ /** A list of edges. */
3049
+ edges?: Maybe<Array<Maybe<RuntimeParameterDefinitionEdge>>>;
3050
+ /** A list of nodes. */
3051
+ nodes?: Maybe<Array<Maybe<RuntimeParameterDefinition>>>;
3052
+ /** Information to aid in pagination. */
3053
+ pageInfo?: Maybe<PageInfo>;
3054
+ }
3055
+
3056
+ /** An edge in a connection. */
3057
+ export interface RuntimeParameterDefinitionEdge {
3058
+ __typename?: 'RuntimeParameterDefinitionEdge';
3059
+ /** A cursor for use in pagination. */
3060
+ cursor?: Maybe<Scalars['String']['output']>;
3061
+ /** The item at the end of the edge. */
3062
+ node?: Maybe<RuntimeParameterDefinition>;
3063
+ }
3064
+
2250
3065
  /** Represent all available types of statuses of a runtime */
2251
- export enum RuntimeStatusType {
3066
+ export const enum RuntimeStatusType {
2252
3067
  /** No problem with connection, everything works as expected */
2253
3068
  Connected = 'CONNECTED',
2254
3069
  /** The runtime is disconnected, cause unknown */
2255
3070
  Disconnected = 'DISCONNECTED'
2256
3071
  }
2257
3072
 
3073
+ /** Abilities for the current user on this Runtime */
3074
+ export interface RuntimeUserAbilities {
3075
+ __typename?: 'RuntimeUserAbilities';
3076
+ /** Shows if the current user has the `delete_runtime` ability on this Runtime */
3077
+ deleteRuntime?: Maybe<Scalars['Boolean']['output']>;
3078
+ /** Shows if the current user has the `rotate_runtime_token` ability on this Runtime */
3079
+ rotateRuntimeToken?: Maybe<Scalars['Boolean']['output']>;
3080
+ /** Shows if the current user has the `update_runtime` ability on this Runtime */
3081
+ updateRuntime?: Maybe<Scalars['Boolean']['output']>;
3082
+ }
3083
+
2258
3084
  /** Autogenerated input type of RuntimesCreate */
2259
3085
  export interface RuntimesCreateInput {
2260
3086
  /** A unique identifier for the client performing the mutation. */
@@ -2339,6 +3165,21 @@ export interface RuntimesUpdatePayload {
2339
3165
  runtime?: Maybe<Runtime>;
2340
3166
  }
2341
3167
 
3168
+ /** Represents the configuration for a SAML identity provider. */
3169
+ export interface SamlIdentityProviderConfig {
3170
+ __typename?: 'SamlIdentityProviderConfig';
3171
+ /** List of attribute statements for the SAML identity provider */
3172
+ attributeStatements?: Maybe<Scalars['JSON']['output']>;
3173
+ /** The metadata url to fetch the metadatas (replacement for settings) */
3174
+ metadataUrl?: Maybe<Scalars['String']['output']>;
3175
+ /** The name of the SAML identity provider */
3176
+ providerName?: Maybe<Scalars['String']['output']>;
3177
+ /** The SAML response settings for the identity provider */
3178
+ responseSettings?: Maybe<Scalars['JSON']['output']>;
3179
+ /** The SAML settings for the identity provider */
3180
+ settings?: Maybe<Scalars['JSON']['output']>;
3181
+ }
3182
+
2342
3183
  /** Represents a translation */
2343
3184
  export interface Translation {
2344
3185
  __typename?: 'Translation';
@@ -2381,23 +3222,42 @@ export interface User {
2381
3222
  createdAt?: Maybe<Scalars['Time']['output']>;
2382
3223
  /** Email of the user */
2383
3224
  email?: Maybe<Scalars['String']['output']>;
3225
+ /** Email verification date of the user if present */
3226
+ emailVerifiedAt?: Maybe<Scalars['Time']['output']>;
2384
3227
  /** Firstname of the user */
2385
3228
  firstname?: Maybe<Scalars['String']['output']>;
2386
3229
  /** Global ID of this User */
2387
3230
  id?: Maybe<Scalars['UserID']['output']>;
3231
+ /** Identities of this user */
3232
+ identities?: Maybe<UserIdentityConnection>;
2388
3233
  /** Lastname of the user */
2389
3234
  lastname?: Maybe<Scalars['String']['output']>;
3235
+ /** Multi-factor authentication status of this user */
3236
+ mfaStatus?: Maybe<MfaStatus>;
2390
3237
  /** Namespace of this user */
2391
3238
  namespace?: Maybe<Namespace>;
2392
3239
  /** Namespace Memberships of this user */
2393
3240
  namespaceMemberships?: Maybe<NamespaceMemberConnection>;
3241
+ /** Sessions of this user */
3242
+ sessions?: Maybe<UserSessionConnection>;
2394
3243
  /** Time when this User was last updated */
2395
3244
  updatedAt?: Maybe<Scalars['Time']['output']>;
3245
+ /** Abilities for the current user on this User */
3246
+ userAbilities?: Maybe<UserUserAbilities>;
2396
3247
  /** Username of the user */
2397
3248
  username?: Maybe<Scalars['String']['output']>;
2398
3249
  }
2399
3250
 
2400
3251
 
3252
+ /** Represents a user */
3253
+ export interface UserIdentitiesArgs {
3254
+ after?: InputMaybe<Scalars['String']['input']>;
3255
+ before?: InputMaybe<Scalars['String']['input']>;
3256
+ first?: InputMaybe<Scalars['Int']['input']>;
3257
+ last?: InputMaybe<Scalars['Int']['input']>;
3258
+ }
3259
+
3260
+
2401
3261
  /** Represents a user */
2402
3262
  export interface UserNamespaceMembershipsArgs {
2403
3263
  after?: InputMaybe<Scalars['String']['input']>;
@@ -2406,6 +3266,15 @@ export interface UserNamespaceMembershipsArgs {
2406
3266
  last?: InputMaybe<Scalars['Int']['input']>;
2407
3267
  }
2408
3268
 
3269
+
3270
+ /** Represents a user */
3271
+ export interface UserSessionsArgs {
3272
+ after?: InputMaybe<Scalars['String']['input']>;
3273
+ before?: InputMaybe<Scalars['String']['input']>;
3274
+ first?: InputMaybe<Scalars['Int']['input']>;
3275
+ last?: InputMaybe<Scalars['Int']['input']>;
3276
+ }
3277
+
2409
3278
  /** The connection type for User. */
2410
3279
  export interface UserConnection {
2411
3280
  __typename?: 'UserConnection';
@@ -2445,6 +3314,28 @@ export interface UserIdentity {
2445
3314
  user?: Maybe<User>;
2446
3315
  }
2447
3316
 
3317
+ /** The connection type for UserIdentity. */
3318
+ export interface UserIdentityConnection {
3319
+ __typename?: 'UserIdentityConnection';
3320
+ /** Total count of collection. */
3321
+ count?: Maybe<Scalars['Int']['output']>;
3322
+ /** A list of edges. */
3323
+ edges?: Maybe<Array<Maybe<UserIdentityEdge>>>;
3324
+ /** A list of nodes. */
3325
+ nodes?: Maybe<Array<Maybe<UserIdentity>>>;
3326
+ /** Information to aid in pagination. */
3327
+ pageInfo?: Maybe<PageInfo>;
3328
+ }
3329
+
3330
+ /** An edge in a connection. */
3331
+ export interface UserIdentityEdge {
3332
+ __typename?: 'UserIdentityEdge';
3333
+ /** A cursor for use in pagination. */
3334
+ cursor?: Maybe<Scalars['String']['output']>;
3335
+ /** The item at the end of the edge. */
3336
+ node?: Maybe<UserIdentity>;
3337
+ }
3338
+
2448
3339
  /** Represents a user session */
2449
3340
  export interface UserSession {
2450
3341
  __typename?: 'UserSession';
@@ -2460,6 +3351,96 @@ export interface UserSession {
2460
3351
  updatedAt?: Maybe<Scalars['Time']['output']>;
2461
3352
  /** User that belongs to the session */
2462
3353
  user?: Maybe<User>;
3354
+ /** Abilities for the current user on this UserSession */
3355
+ userAbilities?: Maybe<UserSessionUserAbilities>;
3356
+ }
3357
+
3358
+ /** The connection type for UserSession. */
3359
+ export interface UserSessionConnection {
3360
+ __typename?: 'UserSessionConnection';
3361
+ /** Total count of collection. */
3362
+ count?: Maybe<Scalars['Int']['output']>;
3363
+ /** A list of edges. */
3364
+ edges?: Maybe<Array<Maybe<UserSessionEdge>>>;
3365
+ /** A list of nodes. */
3366
+ nodes?: Maybe<Array<Maybe<UserSession>>>;
3367
+ /** Information to aid in pagination. */
3368
+ pageInfo?: Maybe<PageInfo>;
3369
+ }
3370
+
3371
+ /** An edge in a connection. */
3372
+ export interface UserSessionEdge {
3373
+ __typename?: 'UserSessionEdge';
3374
+ /** A cursor for use in pagination. */
3375
+ cursor?: Maybe<Scalars['String']['output']>;
3376
+ /** The item at the end of the edge. */
3377
+ node?: Maybe<UserSession>;
3378
+ }
3379
+
3380
+ /** Abilities for the current user on this UserSession */
3381
+ export interface UserSessionUserAbilities {
3382
+ __typename?: 'UserSessionUserAbilities';
3383
+ /** Shows if the current user has the `logout_session` ability on this UserSession */
3384
+ logoutSession?: Maybe<Scalars['Boolean']['output']>;
3385
+ }
3386
+
3387
+ /** Abilities for the current user on this User */
3388
+ export interface UserUserAbilities {
3389
+ __typename?: 'UserUserAbilities';
3390
+ /** Shows if the current user has the `manage_mfa` ability on this User */
3391
+ manageMfa?: Maybe<Scalars['Boolean']['output']>;
3392
+ /** Shows if the current user has the `update_user` ability on this User */
3393
+ updateUser?: Maybe<Scalars['Boolean']['output']>;
3394
+ }
3395
+
3396
+ /** Autogenerated input type of UsersCreate */
3397
+ export interface UsersCreateInput {
3398
+ /** Admin status for the user. */
3399
+ admin?: InputMaybe<Scalars['Boolean']['input']>;
3400
+ /** A unique identifier for the client performing the mutation. */
3401
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
3402
+ /** Email for the user. */
3403
+ email: Scalars['String']['input'];
3404
+ /** Firstname for the user. */
3405
+ firstname?: InputMaybe<Scalars['String']['input']>;
3406
+ /** Lastname for the user. */
3407
+ lastname?: InputMaybe<Scalars['String']['input']>;
3408
+ /** Password for the user. */
3409
+ password: Scalars['String']['input'];
3410
+ /** Password repeat for the user to check for typos. */
3411
+ passwordRepeat: Scalars['String']['input'];
3412
+ /** Username for the user. */
3413
+ username: Scalars['String']['input'];
3414
+ }
3415
+
3416
+ /** Autogenerated return type of UsersCreate. */
3417
+ export interface UsersCreatePayload {
3418
+ __typename?: 'UsersCreatePayload';
3419
+ /** A unique identifier for the client performing the mutation. */
3420
+ clientMutationId?: Maybe<Scalars['String']['output']>;
3421
+ /** Errors encountered during execution of the mutation. */
3422
+ errors?: Maybe<Array<Error>>;
3423
+ /** The created user. */
3424
+ user?: Maybe<User>;
3425
+ }
3426
+
3427
+ /** Autogenerated input type of UsersDelete */
3428
+ export interface UsersDeleteInput {
3429
+ /** A unique identifier for the client performing the mutation. */
3430
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
3431
+ /** The user to delete. */
3432
+ userId: Scalars['UserID']['input'];
3433
+ }
3434
+
3435
+ /** Autogenerated return type of UsersDelete. */
3436
+ export interface UsersDeletePayload {
3437
+ __typename?: 'UsersDeletePayload';
3438
+ /** A unique identifier for the client performing the mutation. */
3439
+ clientMutationId?: Maybe<Scalars['String']['output']>;
3440
+ /** Errors encountered during execution of the mutation. */
3441
+ errors?: Maybe<Array<Error>>;
3442
+ /** The deleted user. */
3443
+ user?: Maybe<User>;
2463
3444
  }
2464
3445
 
2465
3446
  /** Autogenerated input type of UsersEmailVerification */
@@ -2665,6 +3646,48 @@ export interface UsersMfaTotpValidateSecretPayload {
2665
3646
  user?: Maybe<User>;
2666
3647
  }
2667
3648
 
3649
+ /** Autogenerated input type of UsersPasswordReset */
3650
+ export interface UsersPasswordResetInput {
3651
+ /** A unique identifier for the client performing the mutation. */
3652
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
3653
+ /** The new password to set for the user */
3654
+ newPassword: Scalars['String']['input'];
3655
+ /** The confirmation of the new password to set for the user needs to be the same as the new password */
3656
+ newPasswordConfirmation: Scalars['String']['input'];
3657
+ /** The password reset token sent to the user email */
3658
+ resetToken: Scalars['String']['input'];
3659
+ }
3660
+
3661
+ /** Autogenerated return type of UsersPasswordReset. */
3662
+ export interface UsersPasswordResetPayload {
3663
+ __typename?: 'UsersPasswordResetPayload';
3664
+ /** A unique identifier for the client performing the mutation. */
3665
+ clientMutationId?: Maybe<Scalars['String']['output']>;
3666
+ /** Errors encountered during execution of the mutation. */
3667
+ errors?: Maybe<Array<Error>>;
3668
+ /** A message indicating the result of the password reset request */
3669
+ message?: Maybe<Scalars['String']['output']>;
3670
+ }
3671
+
3672
+ /** Autogenerated input type of UsersPasswordResetRequest */
3673
+ export interface UsersPasswordResetRequestInput {
3674
+ /** A unique identifier for the client performing the mutation. */
3675
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
3676
+ /** Email of the user to reset the password */
3677
+ email: Scalars['String']['input'];
3678
+ }
3679
+
3680
+ /** Autogenerated return type of UsersPasswordResetRequest. */
3681
+ export interface UsersPasswordResetRequestPayload {
3682
+ __typename?: 'UsersPasswordResetRequestPayload';
3683
+ /** A unique identifier for the client performing the mutation. */
3684
+ clientMutationId?: Maybe<Scalars['String']['output']>;
3685
+ /** Errors encountered during execution of the mutation. */
3686
+ errors?: Maybe<Array<Error>>;
3687
+ /** A message indicating the result of the password reset request */
3688
+ message?: Maybe<Scalars['String']['output']>;
3689
+ }
3690
+
2668
3691
  /** Autogenerated input type of UsersRegister */
2669
3692
  export interface UsersRegisterInput {
2670
3693
  /** A unique identifier for the client performing the mutation. */