@code0-tech/sagittarius-graphql-types 0.0.0-755f9382e6589ede0182dace55452703bcd6e85b → 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.
- package/index.d.ts +400 -30
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -40,7 +40,6 @@ export interface Scalars {
|
|
|
40
40
|
RuntimeID: { input: `gid://sagittarius/Runtime/${number}`; output: `gid://sagittarius/Runtime/${number}`; }
|
|
41
41
|
RuntimeParameterDefinitionID: { input: `gid://sagittarius/RuntimeParameterDefinition/${number}`; output: `gid://sagittarius/RuntimeParameterDefinition/${number}`; }
|
|
42
42
|
Time: { input: string; output: string; }
|
|
43
|
-
TypesFlowTypeID: { input: `gid://sagittarius/TypesFlowType/${number}`; output: `gid://sagittarius/TypesFlowType/${number}`; }
|
|
44
43
|
UserID: { input: `gid://sagittarius/User/${number}`; output: `gid://sagittarius/User/${number}`; }
|
|
45
44
|
UserIdentityID: { input: `gid://sagittarius/UserIdentity/${number}`; output: `gid://sagittarius/UserIdentity/${number}`; }
|
|
46
45
|
UserSessionID: { input: `gid://sagittarius/UserSession/${number}`; output: `gid://sagittarius/UserSession/${number}`; }
|
|
@@ -55,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 */
|
|
@@ -112,6 +170,24 @@ export interface DataType {
|
|
|
112
170
|
}
|
|
113
171
|
|
|
114
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
|
+
|
|
115
191
|
/** Represents a DataType */
|
|
116
192
|
export interface DataTypeNameArgs {
|
|
117
193
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -296,7 +372,7 @@ export const enum DataTypeRulesVariant {
|
|
|
296
372
|
/** The rule checks if a specific type is present in the data type. */
|
|
297
373
|
ContainsType = 'CONTAINS_TYPE',
|
|
298
374
|
/** The rule checks if the data type matches a specific input type. */
|
|
299
|
-
|
|
375
|
+
InputTypes = 'INPUT_TYPES',
|
|
300
376
|
/** The rule checks if an item is part of a collection in the data type. */
|
|
301
377
|
ItemOfCollection = 'ITEM_OF_COLLECTION',
|
|
302
378
|
/** The rule checks if a number falls within a specified range. */
|
|
@@ -370,6 +446,10 @@ export const enum ErrorCodeEnum {
|
|
|
370
446
|
CannotRemoveLastAdministrator = 'CANNOT_REMOVE_LAST_ADMINISTRATOR',
|
|
371
447
|
/** This action would remove the last administrative ability */
|
|
372
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',
|
|
373
453
|
/** Failed to send the email verification */
|
|
374
454
|
EmailVerificationSendFailed = 'EMAIL_VERIFICATION_SEND_FAILED',
|
|
375
455
|
/** This external identity does not exist */
|
|
@@ -386,6 +466,8 @@ export const enum ErrorCodeEnum {
|
|
|
386
466
|
FlowTypeNotFound = 'FLOW_TYPE_NOT_FOUND',
|
|
387
467
|
/** The flow validation has failed */
|
|
388
468
|
FlowValidationFailed = 'FLOW_VALIDATION_FAILED',
|
|
469
|
+
/** The id for the function value node does not exist */
|
|
470
|
+
FunctionValueNotFound = 'FUNCTION_VALUE_NOT_FOUND',
|
|
389
471
|
/** The given key was not found in the data type */
|
|
390
472
|
GenericKeyNotFound = 'GENERIC_KEY_NOT_FOUND',
|
|
391
473
|
/** The external identity with the given identifier was not found */
|
|
@@ -396,12 +478,18 @@ export const enum ErrorCodeEnum {
|
|
|
396
478
|
InconsistentNamespace = 'INCONSISTENT_NAMESPACE',
|
|
397
479
|
/** The attachment is invalid because of active model errors */
|
|
398
480
|
InvalidAttachment = 'INVALID_ATTACHMENT',
|
|
481
|
+
/** The data type is invalid because of active model errors */
|
|
482
|
+
InvalidDataType = 'INVALID_DATA_TYPE',
|
|
399
483
|
/** This external identity is invalid */
|
|
400
484
|
InvalidExternalIdentity = 'INVALID_EXTERNAL_IDENTITY',
|
|
401
485
|
/** The flow is invalid because of active model errors */
|
|
402
486
|
InvalidFlow = 'INVALID_FLOW',
|
|
403
487
|
/** The flow setting is invalid because of active model errors */
|
|
404
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',
|
|
405
493
|
/** Invalid login data provided */
|
|
406
494
|
InvalidLoginData = 'INVALID_LOGIN_DATA',
|
|
407
495
|
/** The namespace license is invalid because of active model errors */
|
|
@@ -412,12 +500,24 @@ export const enum ErrorCodeEnum {
|
|
|
412
500
|
InvalidNamespaceProject = 'INVALID_NAMESPACE_PROJECT',
|
|
413
501
|
/** The namespace role is invalid because of active model errors */
|
|
414
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',
|
|
415
507
|
/** The organization is invalid because of active model errors */
|
|
416
508
|
InvalidOrganization = 'INVALID_ORGANIZATION',
|
|
417
509
|
/** The provided password repeat does not match the password */
|
|
418
510
|
InvalidPasswordRepeat = 'INVALID_PASSWORD_REPEAT',
|
|
419
511
|
/** The runtime is invalid because of active model errors */
|
|
420
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',
|
|
421
521
|
/** Invalid setting provided */
|
|
422
522
|
InvalidSetting = 'INVALID_SETTING',
|
|
423
523
|
/** The TOTP secret is invalid or cannot be verified */
|
|
@@ -456,8 +556,16 @@ export const enum ErrorCodeEnum {
|
|
|
456
556
|
NamespaceProjectNotFound = 'NAMESPACE_PROJECT_NOT_FOUND',
|
|
457
557
|
/** The namespace role with the given identifier was not found */
|
|
458
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',
|
|
459
565
|
/** There are no free license seats to complete this operation */
|
|
460
566
|
NoFreeLicenseSeats = 'NO_FREE_LICENSE_SEATS',
|
|
567
|
+
/** No generic type could be found for the given identifier */
|
|
568
|
+
NoGenericTypeForIdentifier = 'NO_GENERIC_TYPE_FOR_IDENTIFIER',
|
|
461
569
|
/** The project does not have a primary runtime */
|
|
462
570
|
NoPrimaryRuntime = 'NO_PRIMARY_RUNTIME',
|
|
463
571
|
/** The organization with the given identifier was not found */
|
|
@@ -468,6 +576,8 @@ export const enum ErrorCodeEnum {
|
|
|
468
576
|
PrimaryLevelNotFound = 'PRIMARY_LEVEL_NOT_FOUND',
|
|
469
577
|
/** The namespace project with the given identifier was not found */
|
|
470
578
|
ProjectNotFound = 'PROJECT_NOT_FOUND',
|
|
579
|
+
/** A referenced value could not be found */
|
|
580
|
+
ReferencedValueNotFound = 'REFERENCED_VALUE_NOT_FOUND',
|
|
471
581
|
/** Self-registration is disabled */
|
|
472
582
|
RegistrationDisabled = 'REGISTRATION_DISABLED',
|
|
473
583
|
/** Resources are from different runtimes */
|
|
@@ -619,16 +729,20 @@ export interface FlowSettingInput {
|
|
|
619
729
|
/** Represents a flow type */
|
|
620
730
|
export interface FlowType {
|
|
621
731
|
__typename?: 'FlowType';
|
|
732
|
+
/** Name of the function */
|
|
733
|
+
aliases?: Maybe<TranslationConnection>;
|
|
622
734
|
/** Time when this FlowType was created */
|
|
623
735
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
624
736
|
/** Descriptions of the flow type */
|
|
625
737
|
descriptions?: Maybe<TranslationConnection>;
|
|
738
|
+
/** Display message of the function */
|
|
739
|
+
displayMessages?: Maybe<TranslationConnection>;
|
|
626
740
|
/** Editable status of the flow type */
|
|
627
741
|
editable?: Maybe<Scalars['Boolean']['output']>;
|
|
628
742
|
/** Flow type settings of the flow type */
|
|
629
743
|
flowTypeSettings?: Maybe<Array<FlowTypeSetting>>;
|
|
630
744
|
/** Global ID of this FlowType */
|
|
631
|
-
id?: Maybe<Scalars['
|
|
745
|
+
id?: Maybe<Scalars['FlowTypeID']['output']>;
|
|
632
746
|
/** Identifier of the flow type */
|
|
633
747
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
634
748
|
/** Input type of the flow type */
|
|
@@ -642,6 +756,15 @@ export interface FlowType {
|
|
|
642
756
|
}
|
|
643
757
|
|
|
644
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
|
+
|
|
645
768
|
/** Represents a flow type */
|
|
646
769
|
export interface FlowTypeDescriptionsArgs {
|
|
647
770
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -651,6 +774,15 @@ export interface FlowTypeDescriptionsArgs {
|
|
|
651
774
|
}
|
|
652
775
|
|
|
653
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
|
+
|
|
654
786
|
/** Represents a flow type */
|
|
655
787
|
export interface FlowTypeNamesArgs {
|
|
656
788
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -775,12 +907,16 @@ export const enum FlowValidationSeverityEnum {
|
|
|
775
907
|
/** Represents a function definition */
|
|
776
908
|
export interface FunctionDefinition {
|
|
777
909
|
__typename?: 'FunctionDefinition';
|
|
910
|
+
/** Name of the function */
|
|
911
|
+
aliases?: Maybe<TranslationConnection>;
|
|
778
912
|
/** Time when this FunctionDefinition was created */
|
|
779
913
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
780
914
|
/** Deprecation message of the function */
|
|
781
915
|
deprecationMessages?: Maybe<TranslationConnection>;
|
|
782
916
|
/** Description of the function */
|
|
783
917
|
descriptions?: Maybe<TranslationConnection>;
|
|
918
|
+
/** Display message of the function */
|
|
919
|
+
displayMessages?: Maybe<TranslationConnection>;
|
|
784
920
|
/** Documentation of the function */
|
|
785
921
|
documentations?: Maybe<TranslationConnection>;
|
|
786
922
|
/** Generic keys of the function */
|
|
@@ -804,6 +940,15 @@ export interface FunctionDefinition {
|
|
|
804
940
|
}
|
|
805
941
|
|
|
806
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
|
+
|
|
807
952
|
/** Represents a function definition */
|
|
808
953
|
export interface FunctionDefinitionDeprecationMessagesArgs {
|
|
809
954
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -822,6 +967,15 @@ export interface FunctionDefinitionDescriptionsArgs {
|
|
|
822
967
|
}
|
|
823
968
|
|
|
824
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
|
+
|
|
825
979
|
/** Represents a function definition */
|
|
826
980
|
export interface FunctionDefinitionDocumentationsArgs {
|
|
827
981
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -947,21 +1101,56 @@ export interface IdentityInput {
|
|
|
947
1101
|
code?: InputMaybe<Scalars['String']['input']>;
|
|
948
1102
|
}
|
|
949
1103
|
|
|
950
|
-
/**
|
|
951
|
-
export interface
|
|
952
|
-
__typename?: '
|
|
953
|
-
/**
|
|
954
|
-
|
|
955
|
-
/**
|
|
956
|
-
|
|
957
|
-
/**
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
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'
|
|
965
1154
|
}
|
|
966
1155
|
|
|
967
1156
|
/** Represents a literal value, such as a string or number. */
|
|
@@ -999,6 +1188,17 @@ export interface MfaInput {
|
|
|
999
1188
|
value: Scalars['String']['input'];
|
|
1000
1189
|
}
|
|
1001
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
|
+
|
|
1002
1202
|
/** Represent all available types to authenticate with mfa */
|
|
1003
1203
|
export const enum MfaType {
|
|
1004
1204
|
/** Single use backup code */
|
|
@@ -1040,6 +1240,8 @@ export interface Mutation {
|
|
|
1040
1240
|
namespacesProjectsFlowsCreate?: Maybe<NamespacesProjectsFlowsCreatePayload>;
|
|
1041
1241
|
/** Deletes a namespace project. */
|
|
1042
1242
|
namespacesProjectsFlowsDelete?: Maybe<NamespacesProjectsFlowsDeletePayload>;
|
|
1243
|
+
/** Update an existing flow. */
|
|
1244
|
+
namespacesProjectsFlowsUpdate?: Maybe<NamespacesProjectsFlowsUpdatePayload>;
|
|
1043
1245
|
/** Updates a namespace project. */
|
|
1044
1246
|
namespacesProjectsUpdate?: Maybe<NamespacesProjectsUpdatePayload>;
|
|
1045
1247
|
/** Update the abilities a role is granted. */
|
|
@@ -1066,6 +1268,10 @@ export interface Mutation {
|
|
|
1066
1268
|
runtimesRotateToken?: Maybe<RuntimesRotateTokenPayload>;
|
|
1067
1269
|
/** Update an existing runtime. */
|
|
1068
1270
|
runtimesUpdate?: Maybe<RuntimesUpdatePayload>;
|
|
1271
|
+
/** Admin-create a user. */
|
|
1272
|
+
usersCreate?: Maybe<UsersCreatePayload>;
|
|
1273
|
+
/** Delete an existing user. */
|
|
1274
|
+
usersDelete?: Maybe<UsersDeletePayload>;
|
|
1069
1275
|
/** Verify your email when changing it or signing up */
|
|
1070
1276
|
usersEmailVerification?: Maybe<UsersEmailVerificationPayload>;
|
|
1071
1277
|
/** Links an external identity to an existing user */
|
|
@@ -1169,6 +1375,12 @@ export interface MutationNamespacesProjectsFlowsDeleteArgs {
|
|
|
1169
1375
|
}
|
|
1170
1376
|
|
|
1171
1377
|
|
|
1378
|
+
/** Root Mutation type */
|
|
1379
|
+
export interface MutationNamespacesProjectsFlowsUpdateArgs {
|
|
1380
|
+
input: NamespacesProjectsFlowsUpdateInput;
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
|
|
1172
1384
|
/** Root Mutation type */
|
|
1173
1385
|
export interface MutationNamespacesProjectsUpdateArgs {
|
|
1174
1386
|
input: NamespacesProjectsUpdateInput;
|
|
@@ -1247,6 +1459,18 @@ export interface MutationRuntimesUpdateArgs {
|
|
|
1247
1459
|
}
|
|
1248
1460
|
|
|
1249
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
|
+
|
|
1250
1474
|
/** Root Mutation type */
|
|
1251
1475
|
export interface MutationUsersEmailVerificationArgs {
|
|
1252
1476
|
input: UsersEmailVerificationInput;
|
|
@@ -1863,8 +2087,8 @@ export interface NamespacesMembersAssignRolesPayload {
|
|
|
1863
2087
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
1864
2088
|
/** Errors encountered during execution of the mutation. */
|
|
1865
2089
|
errors?: Maybe<Array<Error>>;
|
|
1866
|
-
/** The
|
|
1867
|
-
|
|
2090
|
+
/** The member which was assigned the roles */
|
|
2091
|
+
member?: Maybe<NamespaceMember>;
|
|
1868
2092
|
}
|
|
1869
2093
|
|
|
1870
2094
|
/** Autogenerated input type of NamespacesMembersDelete */
|
|
@@ -2010,6 +2234,27 @@ export interface NamespacesProjectsFlowsDeletePayload {
|
|
|
2010
2234
|
flow?: Maybe<Flow>;
|
|
2011
2235
|
}
|
|
2012
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
|
+
|
|
2013
2258
|
/** Autogenerated input type of NamespacesProjectsUpdate */
|
|
2014
2259
|
export interface NamespacesProjectsUpdateInput {
|
|
2015
2260
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -2192,6 +2437,13 @@ export interface NodeFunctionEdge {
|
|
|
2192
2437
|
node?: Maybe<NodeFunction>;
|
|
2193
2438
|
}
|
|
2194
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
|
+
|
|
2195
2447
|
/** Input type for a Node Function */
|
|
2196
2448
|
export interface NodeFunctionInput {
|
|
2197
2449
|
/** The identifier of the Node Function used to create/update the flow */
|
|
@@ -2250,18 +2502,37 @@ export interface NodeParameterInput {
|
|
|
2250
2502
|
}
|
|
2251
2503
|
|
|
2252
2504
|
/** Represents a parameter value for a node. */
|
|
2253
|
-
export type NodeParameterValue = LiteralValue |
|
|
2505
|
+
export type NodeParameterValue = LiteralValue | NodeFunctionIdWrapper | ReferenceValue;
|
|
2254
2506
|
|
|
2255
2507
|
/** Input type for parameter value */
|
|
2256
2508
|
export interface NodeParameterValueInput {
|
|
2257
|
-
/** The function value of the parameter */
|
|
2258
|
-
functionValue?: InputMaybe<NodeFunctionInput>;
|
|
2259
2509
|
/** The literal value of the parameter */
|
|
2260
2510
|
literalValue?: InputMaybe<Scalars['JSON']['input']>;
|
|
2511
|
+
/** The function value of the parameter as an id */
|
|
2512
|
+
nodeFunctionId?: InputMaybe<Scalars['NodeFunctionID']['input']>;
|
|
2261
2513
|
/** The reference value of the parameter */
|
|
2262
2514
|
referenceValue?: InputMaybe<ReferenceValueInput>;
|
|
2263
2515
|
}
|
|
2264
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
|
+
|
|
2265
2536
|
/** Represents a Organization */
|
|
2266
2537
|
export interface Organization {
|
|
2267
2538
|
__typename?: 'Organization';
|
|
@@ -2455,8 +2726,8 @@ export interface ParameterDefinitionEdge {
|
|
|
2455
2726
|
/** Root Query type */
|
|
2456
2727
|
export interface Query {
|
|
2457
2728
|
__typename?: 'Query';
|
|
2458
|
-
/** Get
|
|
2459
|
-
|
|
2729
|
+
/** Get application information */
|
|
2730
|
+
application?: Maybe<Application>;
|
|
2460
2731
|
/** Get the currently logged in authentication */
|
|
2461
2732
|
currentAuthentication?: Maybe<Authentication>;
|
|
2462
2733
|
/** Get the currently logged in user */
|
|
@@ -2465,8 +2736,6 @@ export interface Query {
|
|
|
2465
2736
|
echo?: Maybe<Scalars['String']['output']>;
|
|
2466
2737
|
/** Find runtimes */
|
|
2467
2738
|
globalRuntimes?: Maybe<RuntimeConnection>;
|
|
2468
|
-
/** Get application metadata */
|
|
2469
|
-
metadata?: Maybe<Metadata>;
|
|
2470
2739
|
/** Find a namespace */
|
|
2471
2740
|
namespace?: Maybe<Namespace>;
|
|
2472
2741
|
/** Fetches an object given its ID */
|
|
@@ -2479,8 +2748,6 @@ export interface Query {
|
|
|
2479
2748
|
organizations?: Maybe<OrganizationConnection>;
|
|
2480
2749
|
/** Find a user */
|
|
2481
2750
|
user?: Maybe<User>;
|
|
2482
|
-
/** Abilities for the current user on this Instance */
|
|
2483
|
-
userAbilities?: Maybe<InstanceUserAbilities>;
|
|
2484
2751
|
/** Find users */
|
|
2485
2752
|
users?: Maybe<UserConnection>;
|
|
2486
2753
|
}
|
|
@@ -2537,7 +2804,8 @@ export interface QueryOrganizationsArgs {
|
|
|
2537
2804
|
|
|
2538
2805
|
/** Root Query type */
|
|
2539
2806
|
export interface QueryUserArgs {
|
|
2540
|
-
id
|
|
2807
|
+
id?: InputMaybe<Scalars['UserID']['input']>;
|
|
2808
|
+
username?: InputMaybe<Scalars['String']['input']>;
|
|
2541
2809
|
}
|
|
2542
2810
|
|
|
2543
2811
|
|
|
@@ -2630,6 +2898,8 @@ export interface Runtime {
|
|
|
2630
2898
|
namespace?: Maybe<Namespace>;
|
|
2631
2899
|
/** Projects associated with the runtime */
|
|
2632
2900
|
projects?: Maybe<NamespaceProjectConnection>;
|
|
2901
|
+
/** Functions of the runtime */
|
|
2902
|
+
runtimeFunctionDefinitions?: Maybe<RuntimeFunctionDefinitionConnection>;
|
|
2633
2903
|
/** The status of the runtime */
|
|
2634
2904
|
status?: Maybe<RuntimeStatusType>;
|
|
2635
2905
|
/** Token belonging to the runtime, only present on creation */
|
|
@@ -2667,6 +2937,15 @@ export interface RuntimeProjectsArgs {
|
|
|
2667
2937
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2668
2938
|
}
|
|
2669
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
|
+
|
|
2670
2949
|
/** The connection type for Runtime. */
|
|
2671
2950
|
export interface RuntimeConnection {
|
|
2672
2951
|
__typename?: 'RuntimeConnection';
|
|
@@ -2726,6 +3005,28 @@ export interface RuntimeFunctionDefinitionRuntimeParameterDefinitionsArgs {
|
|
|
2726
3005
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2727
3006
|
}
|
|
2728
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
|
+
|
|
2729
3030
|
/** Represents a runtime parameter definition */
|
|
2730
3031
|
export interface RuntimeParameterDefinition {
|
|
2731
3032
|
__typename?: 'RuntimeParameterDefinition';
|
|
@@ -2733,6 +3034,8 @@ export interface RuntimeParameterDefinition {
|
|
|
2733
3034
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
2734
3035
|
/** Global ID of this RuntimeParameterDefinition */
|
|
2735
3036
|
id?: Maybe<Scalars['RuntimeParameterDefinitionID']['output']>;
|
|
3037
|
+
/** Identifier of the runtime parameter definition */
|
|
3038
|
+
identifier?: Maybe<Scalars['String']['output']>;
|
|
2736
3039
|
/** Time when this RuntimeParameterDefinition was last updated */
|
|
2737
3040
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
2738
3041
|
}
|
|
@@ -2862,6 +3165,21 @@ export interface RuntimesUpdatePayload {
|
|
|
2862
3165
|
runtime?: Maybe<Runtime>;
|
|
2863
3166
|
}
|
|
2864
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
|
+
|
|
2865
3183
|
/** Represents a translation */
|
|
2866
3184
|
export interface Translation {
|
|
2867
3185
|
__typename?: 'Translation';
|
|
@@ -2914,6 +3232,8 @@ export interface User {
|
|
|
2914
3232
|
identities?: Maybe<UserIdentityConnection>;
|
|
2915
3233
|
/** Lastname of the user */
|
|
2916
3234
|
lastname?: Maybe<Scalars['String']['output']>;
|
|
3235
|
+
/** Multi-factor authentication status of this user */
|
|
3236
|
+
mfaStatus?: Maybe<MfaStatus>;
|
|
2917
3237
|
/** Namespace of this user */
|
|
2918
3238
|
namespace?: Maybe<Namespace>;
|
|
2919
3239
|
/** Namespace Memberships of this user */
|
|
@@ -3073,6 +3393,56 @@ export interface UserUserAbilities {
|
|
|
3073
3393
|
updateUser?: Maybe<Scalars['Boolean']['output']>;
|
|
3074
3394
|
}
|
|
3075
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>;
|
|
3444
|
+
}
|
|
3445
|
+
|
|
3076
3446
|
/** Autogenerated input type of UsersEmailVerification */
|
|
3077
3447
|
export interface UsersEmailVerificationInput {
|
|
3078
3448
|
/** A unique identifier for the client performing the mutation. */
|
package/package.json
CHANGED