@code0-tech/sagittarius-graphql-types 0.0.0-00f33663039d78ad59e95306730878c687de5c48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +2968 -0
  2. package/package.json +31 -0
package/index.d.ts ADDED
@@ -0,0 +1,2968 @@
1
+ export type Maybe<T> = T | null;
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 }
8
+ /** All built-in and custom scalars, mapped to their actual values */
9
+ export interface Scalars {
10
+ ID: { input: `gid://sagittarius//${number}`; output: `gid://sagittarius//${number}`; }
11
+ String: { input: string; output: string; }
12
+ Boolean: { input: boolean; output: boolean; }
13
+ Int: { input: number; output: number; }
14
+ Float: { input: number; output: number; }
15
+ DataTypeID: { input: `gid://sagittarius/DataType/${number}`; output: `gid://sagittarius/DataType/${number}`; }
16
+ DataTypeIdentifierID: { input: `gid://sagittarius/DataTypeIdentifier/${number}`; output: `gid://sagittarius/DataTypeIdentifier/${number}`; }
17
+ DataTypeRuleID: { input: `gid://sagittarius/DataTypeRule/${number}`; output: `gid://sagittarius/DataTypeRule/${number}`; }
18
+ FlowID: { input: `gid://sagittarius/Flow/${number}`; output: `gid://sagittarius/Flow/${number}`; }
19
+ FlowSettingID: { input: `gid://sagittarius/FlowSetting/${number}`; output: `gid://sagittarius/FlowSetting/${number}`; }
20
+ FlowTypeID: { input: `gid://sagittarius/FlowType/${number}`; output: `gid://sagittarius/FlowType/${number}`; }
21
+ FlowTypeSettingID: { input: `gid://sagittarius/FlowTypeSetting/${number}`; output: `gid://sagittarius/FlowTypeSetting/${number}`; }
22
+ FunctionDefinitionID: { input: `gid://sagittarius/FunctionDefinition/${number}`; output: `gid://sagittarius/FunctionDefinition/${number}`; }
23
+ GenericCombinationStrategyID: { input: `gid://sagittarius/GenericCombinationStrategy/${number}`; output: `gid://sagittarius/GenericCombinationStrategy/${number}`; }
24
+ GenericMapperID: { input: `gid://sagittarius/GenericMapper/${number}`; output: `gid://sagittarius/GenericMapper/${number}`; }
25
+ GenericTypeID: { input: `gid://sagittarius/GenericType/${number}`; output: `gid://sagittarius/GenericType/${number}`; }
26
+ JSON: { input: any; output: any; }
27
+ NamespaceID: { input: `gid://sagittarius/Namespace/${number}`; output: `gid://sagittarius/Namespace/${number}`; }
28
+ NamespaceLicenseID: { input: `gid://sagittarius/NamespaceLicense/${number}`; output: `gid://sagittarius/NamespaceLicense/${number}`; }
29
+ NamespaceMemberID: { input: `gid://sagittarius/NamespaceMember/${number}`; output: `gid://sagittarius/NamespaceMember/${number}`; }
30
+ NamespaceMemberRoleID: { input: `gid://sagittarius/NamespaceMemberRole/${number}`; output: `gid://sagittarius/NamespaceMemberRole/${number}`; }
31
+ NamespaceProjectID: { input: `gid://sagittarius/NamespaceProject/${number}`; output: `gid://sagittarius/NamespaceProject/${number}`; }
32
+ NamespaceRoleID: { input: `gid://sagittarius/NamespaceRole/${number}`; output: `gid://sagittarius/NamespaceRole/${number}`; }
33
+ NodeFunctionID: { input: `gid://sagittarius/NodeFunction/${number}`; output: `gid://sagittarius/NodeFunction/${number}`; }
34
+ NodeParameterID: { input: `gid://sagittarius/NodeParameter/${number}`; output: `gid://sagittarius/NodeParameter/${number}`; }
35
+ OrganizationID: { input: `gid://sagittarius/Organization/${number}`; output: `gid://sagittarius/Organization/${number}`; }
36
+ ParameterDefinitionID: { input: `gid://sagittarius/ParameterDefinition/${number}`; output: `gid://sagittarius/ParameterDefinition/${number}`; }
37
+ ReferencePathID: { input: `gid://sagittarius/ReferencePath/${number}`; output: `gid://sagittarius/ReferencePath/${number}`; }
38
+ ReferenceValueID: { input: `gid://sagittarius/ReferenceValue/${number}`; output: `gid://sagittarius/ReferenceValue/${number}`; }
39
+ RuntimeFunctionDefinitionID: { input: `gid://sagittarius/RuntimeFunctionDefinition/${number}`; output: `gid://sagittarius/RuntimeFunctionDefinition/${number}`; }
40
+ RuntimeID: { input: `gid://sagittarius/Runtime/${number}`; output: `gid://sagittarius/Runtime/${number}`; }
41
+ RuntimeParameterDefinitionID: { input: `gid://sagittarius/RuntimeParameterDefinition/${number}`; output: `gid://sagittarius/RuntimeParameterDefinition/${number}`; }
42
+ Time: { input: string; output: string; }
43
+ TypesFlowTypeID: { input: `gid://sagittarius/TypesFlowType/${number}`; output: `gid://sagittarius/TypesFlowType/${number}`; }
44
+ UserID: { input: `gid://sagittarius/User/${number}`; output: `gid://sagittarius/User/${number}`; }
45
+ UserIdentityID: { input: `gid://sagittarius/UserIdentity/${number}`; output: `gid://sagittarius/UserIdentity/${number}`; }
46
+ UserSessionID: { input: `gid://sagittarius/UserSession/${number}`; output: `gid://sagittarius/UserSession/${number}`; }
47
+ }
48
+
49
+ /** Represents an active model error */
50
+ export interface ActiveModelError {
51
+ __typename?: 'ActiveModelError';
52
+ /** The affected attribute on the model */
53
+ attribute?: Maybe<Scalars['String']['output']>;
54
+ /** The validation type that failed for the attribute */
55
+ type?: Maybe<Scalars['String']['output']>;
56
+ }
57
+
58
+ /** Represents the application settings */
59
+ export interface ApplicationSettings {
60
+ __typename?: 'ApplicationSettings';
61
+ /** Shows if organization creation is restricted to administrators */
62
+ organizationCreationRestricted?: Maybe<Scalars['Boolean']['output']>;
63
+ /** Shows if user registration is enabled */
64
+ userRegistrationEnabled?: Maybe<Scalars['Boolean']['output']>;
65
+ }
66
+
67
+ /** Autogenerated input type of ApplicationSettingsUpdate */
68
+ export interface ApplicationSettingsUpdateInput {
69
+ /** A unique identifier for the client performing the mutation. */
70
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
71
+ /** Set if organization creation is restricted to administrators. */
72
+ organizationCreationRestricted?: InputMaybe<Scalars['Boolean']['input']>;
73
+ /** Set if user registration is enabled. */
74
+ userRegistrationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
75
+ }
76
+
77
+ /** Autogenerated return type of ApplicationSettingsUpdate. */
78
+ export interface ApplicationSettingsUpdatePayload {
79
+ __typename?: 'ApplicationSettingsUpdatePayload';
80
+ /** The updated application settings. */
81
+ applicationSettings?: Maybe<ApplicationSettings>;
82
+ /** A unique identifier for the client performing the mutation. */
83
+ clientMutationId?: Maybe<Scalars['String']['output']>;
84
+ /** Errors encountered during execution of the mutation. */
85
+ errors?: Maybe<Array<Error>>;
86
+ }
87
+
88
+ /** Objects that can present an authentication */
89
+ export type Authentication = UserSession;
90
+
91
+ /** Represents a DataType */
92
+ export interface DataType {
93
+ __typename?: 'DataType';
94
+ /** Time when this DataType was created */
95
+ createdAt?: Maybe<Scalars['Time']['output']>;
96
+ /** Generic keys of the datatype */
97
+ genericKeys?: Maybe<Array<Scalars['String']['output']>>;
98
+ /** Global ID of this DataType */
99
+ id?: Maybe<Scalars['DataTypeID']['output']>;
100
+ /** The identifier scoped to the namespace */
101
+ identifier?: Maybe<Scalars['String']['output']>;
102
+ /** Names of the flow type setting */
103
+ name?: Maybe<TranslationConnection>;
104
+ /** Rules of the datatype */
105
+ rules?: Maybe<DataTypeRuleConnection>;
106
+ /** The runtime where this datatype belongs to */
107
+ runtime?: Maybe<Runtime>;
108
+ /** Time when this DataType was last updated */
109
+ updatedAt?: Maybe<Scalars['Time']['output']>;
110
+ /** The type of the datatype */
111
+ variant?: Maybe<DataTypeVariant>;
112
+ }
113
+
114
+
115
+ /** Represents a DataType */
116
+ export interface DataTypeNameArgs {
117
+ after?: InputMaybe<Scalars['String']['input']>;
118
+ before?: InputMaybe<Scalars['String']['input']>;
119
+ first?: InputMaybe<Scalars['Int']['input']>;
120
+ last?: InputMaybe<Scalars['Int']['input']>;
121
+ }
122
+
123
+
124
+ /** Represents a DataType */
125
+ export interface DataTypeRulesArgs {
126
+ after?: InputMaybe<Scalars['String']['input']>;
127
+ before?: InputMaybe<Scalars['String']['input']>;
128
+ first?: InputMaybe<Scalars['Int']['input']>;
129
+ last?: InputMaybe<Scalars['Int']['input']>;
130
+ }
131
+
132
+ /** The connection type for DataType. */
133
+ export interface DataTypeConnection {
134
+ __typename?: 'DataTypeConnection';
135
+ /** Total count of collection. */
136
+ count?: Maybe<Scalars['Int']['output']>;
137
+ /** A list of edges. */
138
+ edges?: Maybe<Array<Maybe<DataTypeEdge>>>;
139
+ /** A list of nodes. */
140
+ nodes?: Maybe<Array<Maybe<DataType>>>;
141
+ /** Information to aid in pagination. */
142
+ pageInfo?: Maybe<PageInfo>;
143
+ }
144
+
145
+ /** An edge in a connection. */
146
+ export interface DataTypeEdge {
147
+ __typename?: 'DataTypeEdge';
148
+ /** A cursor for use in pagination. */
149
+ cursor?: Maybe<Scalars['String']['output']>;
150
+ /** The item at the end of the edge. */
151
+ node?: Maybe<DataType>;
152
+ }
153
+
154
+ /** Represents a data type identifier. */
155
+ export interface DataTypeIdentifier {
156
+ __typename?: 'DataTypeIdentifier';
157
+ /** Time when this DataTypeIdentifier was created */
158
+ createdAt?: Maybe<Scalars['Time']['output']>;
159
+ /** The data type of the data type identifier. */
160
+ dataType?: Maybe<DataType>;
161
+ /** The generic key of the data type identifier. */
162
+ genericKey?: Maybe<Scalars['String']['output']>;
163
+ /** The generic type of the data type identifier. */
164
+ genericType?: Maybe<GenericType>;
165
+ /** Global ID of this DataTypeIdentifier */
166
+ id?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
167
+ /** Time when this DataTypeIdentifier was last updated */
168
+ updatedAt?: Maybe<Scalars['Time']['output']>;
169
+ }
170
+
171
+ /** Input type for data type identifier */
172
+ export interface DataTypeIdentifierInput {
173
+ /** Data type ID */
174
+ dataTypeId?: InputMaybe<Scalars['DataTypeID']['input']>;
175
+ /** Generic key value */
176
+ genericKey?: InputMaybe<Scalars['String']['input']>;
177
+ /** Generic type information */
178
+ genericType?: InputMaybe<GenericTypeInput>;
179
+ }
180
+
181
+ /** Represents a rule that can be applied to a data type. */
182
+ export interface DataTypeRule {
183
+ __typename?: 'DataTypeRule';
184
+ /** The configuration of the rule */
185
+ config?: Maybe<DataTypeRulesConfig>;
186
+ /** Time when this DataTypeRule was created */
187
+ createdAt?: Maybe<Scalars['Time']['output']>;
188
+ /** Global ID of this DataTypeRule */
189
+ id?: Maybe<Scalars['DataTypeRuleID']['output']>;
190
+ /** Time when this DataTypeRule was last updated */
191
+ updatedAt?: Maybe<Scalars['Time']['output']>;
192
+ /** The type of the rule */
193
+ variant?: Maybe<DataTypeRulesVariant>;
194
+ }
195
+
196
+ /** The connection type for DataTypeRule. */
197
+ export interface DataTypeRuleConnection {
198
+ __typename?: 'DataTypeRuleConnection';
199
+ /** Total count of collection. */
200
+ count?: Maybe<Scalars['Int']['output']>;
201
+ /** A list of edges. */
202
+ edges?: Maybe<Array<Maybe<DataTypeRuleEdge>>>;
203
+ /** A list of nodes. */
204
+ nodes?: Maybe<Array<Maybe<DataTypeRule>>>;
205
+ /** Information to aid in pagination. */
206
+ pageInfo?: Maybe<PageInfo>;
207
+ }
208
+
209
+ /** An edge in a connection. */
210
+ export interface DataTypeRuleEdge {
211
+ __typename?: 'DataTypeRuleEdge';
212
+ /** A cursor for use in pagination. */
213
+ cursor?: Maybe<Scalars['String']['output']>;
214
+ /** The item at the end of the edge. */
215
+ node?: Maybe<DataTypeRule>;
216
+ }
217
+
218
+ /** Represents a rule that can be applied to a data type. */
219
+ export type DataTypeRulesConfig = DataTypeRulesContainsKeyConfig | DataTypeRulesContainsTypeConfig | DataTypeRulesInputTypesConfig | DataTypeRulesItemOfCollectionConfig | DataTypeRulesNumberRangeConfig | DataTypeRulesParentTypeConfig | DataTypeRulesRegexConfig | DataTypeRulesReturnTypeConfig;
220
+
221
+ /** Represents a rule that can be applied to a data type. */
222
+ export interface DataTypeRulesContainsKeyConfig {
223
+ __typename?: 'DataTypeRulesContainsKeyConfig';
224
+ /** The identifier of the data type this rule belongs to */
225
+ dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
226
+ /** The key of the rule */
227
+ key?: Maybe<Scalars['String']['output']>;
228
+ }
229
+
230
+ /** Represents a rule that can be applied to a data type. */
231
+ export interface DataTypeRulesContainsTypeConfig {
232
+ __typename?: 'DataTypeRulesContainsTypeConfig';
233
+ /** The identifier of the data type this rule belongs to */
234
+ dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
235
+ }
236
+
237
+ /** Represents a subtype of input type configuration for a input data type. */
238
+ export interface DataTypeRulesInputTypeConfig {
239
+ __typename?: 'DataTypeRulesInputTypeConfig';
240
+ /** The identifier of the data type this input type belongs to */
241
+ dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
242
+ /** The input identifier that this configuration applies to */
243
+ inputIdentifier?: Maybe<Scalars['String']['output']>;
244
+ }
245
+
246
+ /** Represents a rule that can be applied to a data type. */
247
+ export interface DataTypeRulesInputTypesConfig {
248
+ __typename?: 'DataTypeRulesInputTypesConfig';
249
+ /** The input types that can be used in this data type rule */
250
+ inputTypes?: Maybe<Array<DataTypeRulesInputTypeConfig>>;
251
+ }
252
+
253
+ /** Represents a rule that can be applied to a data type. */
254
+ export interface DataTypeRulesItemOfCollectionConfig {
255
+ __typename?: 'DataTypeRulesItemOfCollectionConfig';
256
+ /** The items that can be configured for this rule. */
257
+ items?: Maybe<Array<Scalars['JSON']['output']>>;
258
+ }
259
+
260
+ /** Represents a rule that can be applied to a data type. */
261
+ export interface DataTypeRulesNumberRangeConfig {
262
+ __typename?: 'DataTypeRulesNumberRangeConfig';
263
+ /** The minimum value of the range */
264
+ from?: Maybe<Scalars['Int']['output']>;
265
+ /** The step value for the range, if applicable */
266
+ steps?: Maybe<Scalars['Int']['output']>;
267
+ /** The maximum value of the range */
268
+ to?: Maybe<Scalars['Int']['output']>;
269
+ }
270
+
271
+ /** Represents a rule that can be applied to a data type. */
272
+ export interface DataTypeRulesParentTypeConfig {
273
+ __typename?: 'DataTypeRulesParentTypeConfig';
274
+ /** The data type identifier for the parent type. */
275
+ dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
276
+ }
277
+
278
+ /** Represents a rule that can be applied to a data type. */
279
+ export interface DataTypeRulesRegexConfig {
280
+ __typename?: 'DataTypeRulesRegexConfig';
281
+ /** The regex pattern to match against the data type value. */
282
+ pattern?: Maybe<Scalars['String']['output']>;
283
+ }
284
+
285
+ /** Represents a rule that can be applied to a data type. */
286
+ export interface DataTypeRulesReturnTypeConfig {
287
+ __typename?: 'DataTypeRulesReturnTypeConfig';
288
+ /** The data type identifier for the return type. */
289
+ dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
290
+ }
291
+
292
+ /** The type of rule that can be applied to a data type. */
293
+ export const enum DataTypeRulesVariant {
294
+ /** The rule checks if a key is present in the data type. */
295
+ ContainsKey = 'CONTAINS_KEY',
296
+ /** The rule checks if a specific type is present in the data type. */
297
+ ContainsType = 'CONTAINS_TYPE',
298
+ /** The rule checks if the data type matches a specific input type. */
299
+ InputType = 'INPUT_TYPE',
300
+ /** The rule checks if an item is part of a collection in the data type. */
301
+ ItemOfCollection = 'ITEM_OF_COLLECTION',
302
+ /** The rule checks if a number falls within a specified range. */
303
+ NumberRange = 'NUMBER_RANGE',
304
+ /** The rule checks if the data type is a child of a specific parent type. */
305
+ ParentType = 'PARENT_TYPE',
306
+ /** The rule checks if a string matches a specified regular expression. */
307
+ Regex = 'REGEX',
308
+ /** The rule checks if the data type matches a specific return type. */
309
+ ReturnType = 'RETURN_TYPE'
310
+ }
311
+
312
+ /** Represent all available types of a datatype */
313
+ export const enum DataTypeVariant {
314
+ /** Represents an array */
315
+ Array = 'ARRAY',
316
+ /** Represents an data type containing a data type */
317
+ DataType = 'DATA_TYPE',
318
+ /** Represents a error */
319
+ Error = 'ERROR',
320
+ /** Represents a node */
321
+ Node = 'NODE',
322
+ /** Represents an object */
323
+ Object = 'OBJECT',
324
+ /** Represents a primitive datatype */
325
+ Primitive = 'PRIMITIVE',
326
+ /** Represents a type */
327
+ Type = 'TYPE'
328
+ }
329
+
330
+ /** Autogenerated input type of Echo */
331
+ export interface EchoInput {
332
+ /** A unique identifier for the client performing the mutation. */
333
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
334
+ /** Message to return to the user. */
335
+ message?: InputMaybe<Scalars['String']['input']>;
336
+ }
337
+
338
+ /** Autogenerated return type of Echo. */
339
+ export interface EchoPayload {
340
+ __typename?: 'EchoPayload';
341
+ /** A unique identifier for the client performing the mutation. */
342
+ clientMutationId?: Maybe<Scalars['String']['output']>;
343
+ /** Errors encountered during execution of the mutation. */
344
+ errors?: Maybe<Array<Error>>;
345
+ /** Message returned to the user. */
346
+ message?: Maybe<Scalars['String']['output']>;
347
+ }
348
+
349
+ /** Objects that can present an error */
350
+ export type Error = ActiveModelError | MessageError;
351
+
352
+ /** Represents a flow */
353
+ export interface Flow {
354
+ __typename?: 'Flow';
355
+ /** Time when this Flow was created */
356
+ createdAt?: Maybe<Scalars['Time']['output']>;
357
+ /** Global ID of this Flow */
358
+ id?: Maybe<Scalars['FlowID']['output']>;
359
+ /** The input data type of the flow */
360
+ inputType?: Maybe<DataType>;
361
+ /** Nodes of the flow */
362
+ nodes?: Maybe<NodeFunctionConnection>;
363
+ /** The return data type of the flow */
364
+ returnType?: Maybe<DataType>;
365
+ /** The settings of the flow */
366
+ settings?: Maybe<FlowSettingConnection>;
367
+ /** The ID of the starting node of the flow */
368
+ startingNodeId?: Maybe<Scalars['NodeFunctionID']['output']>;
369
+ /** The flow type of the flow */
370
+ type?: Maybe<FlowType>;
371
+ /** Time when this Flow was last updated */
372
+ updatedAt?: Maybe<Scalars['Time']['output']>;
373
+ }
374
+
375
+
376
+ /** Represents a flow */
377
+ export interface FlowNodesArgs {
378
+ after?: InputMaybe<Scalars['String']['input']>;
379
+ before?: InputMaybe<Scalars['String']['input']>;
380
+ first?: InputMaybe<Scalars['Int']['input']>;
381
+ last?: InputMaybe<Scalars['Int']['input']>;
382
+ }
383
+
384
+
385
+ /** Represents a flow */
386
+ export interface FlowSettingsArgs {
387
+ after?: InputMaybe<Scalars['String']['input']>;
388
+ before?: InputMaybe<Scalars['String']['input']>;
389
+ first?: InputMaybe<Scalars['Int']['input']>;
390
+ last?: InputMaybe<Scalars['Int']['input']>;
391
+ }
392
+
393
+ /** The connection type for Flow. */
394
+ export interface FlowConnection {
395
+ __typename?: 'FlowConnection';
396
+ /** Total count of collection. */
397
+ count?: Maybe<Scalars['Int']['output']>;
398
+ /** A list of edges. */
399
+ edges?: Maybe<Array<Maybe<FlowEdge>>>;
400
+ /** A list of nodes. */
401
+ nodes?: Maybe<Array<Maybe<Flow>>>;
402
+ /** Information to aid in pagination. */
403
+ pageInfo?: Maybe<PageInfo>;
404
+ }
405
+
406
+ /** An edge in a connection. */
407
+ export interface FlowEdge {
408
+ __typename?: 'FlowEdge';
409
+ /** A cursor for use in pagination. */
410
+ cursor?: Maybe<Scalars['String']['output']>;
411
+ /** The item at the end of the edge. */
412
+ node?: Maybe<Flow>;
413
+ }
414
+
415
+ /** Input type for creating or updating a flow */
416
+ export interface FlowInput {
417
+ /** The settings of the flow */
418
+ settings?: InputMaybe<Array<FlowSettingInput>>;
419
+ /** The starting node of the flow */
420
+ startingNode: NodeFunctionInput;
421
+ /** The identifier of the flow type */
422
+ type: Scalars['FlowTypeID']['input'];
423
+ }
424
+
425
+ /** Represents a flow setting */
426
+ export interface FlowSetting {
427
+ __typename?: 'FlowSetting';
428
+ /** Time when this FlowSetting was created */
429
+ createdAt?: Maybe<Scalars['Time']['output']>;
430
+ /** The identifier of the flow setting */
431
+ flowSettingIdentifier?: Maybe<Scalars['String']['output']>;
432
+ /** Global ID of this FlowSetting */
433
+ id?: Maybe<Scalars['FlowSettingID']['output']>;
434
+ /** Time when this FlowSetting was last updated */
435
+ updatedAt?: Maybe<Scalars['Time']['output']>;
436
+ /** The value of the flow setting */
437
+ value?: Maybe<Scalars['JSON']['output']>;
438
+ }
439
+
440
+ /** The connection type for FlowSetting. */
441
+ export interface FlowSettingConnection {
442
+ __typename?: 'FlowSettingConnection';
443
+ /** Total count of collection. */
444
+ count?: Maybe<Scalars['Int']['output']>;
445
+ /** A list of edges. */
446
+ edges?: Maybe<Array<Maybe<FlowSettingEdge>>>;
447
+ /** A list of nodes. */
448
+ nodes?: Maybe<Array<Maybe<FlowSetting>>>;
449
+ /** Information to aid in pagination. */
450
+ pageInfo?: Maybe<PageInfo>;
451
+ }
452
+
453
+ /** An edge in a connection. */
454
+ export interface FlowSettingEdge {
455
+ __typename?: 'FlowSettingEdge';
456
+ /** A cursor for use in pagination. */
457
+ cursor?: Maybe<Scalars['String']['output']>;
458
+ /** The item at the end of the edge. */
459
+ node?: Maybe<FlowSetting>;
460
+ }
461
+
462
+ /** Input type for flow settings */
463
+ export interface FlowSettingInput {
464
+ /** The identifier (not database id) of the flow setting */
465
+ flowSettingId: Scalars['String']['input'];
466
+ /** The value of the flow setting */
467
+ object: Scalars['JSON']['input'];
468
+ }
469
+
470
+ /** Represents a flow type */
471
+ export interface FlowType {
472
+ __typename?: 'FlowType';
473
+ /** Time when this FlowType was created */
474
+ createdAt?: Maybe<Scalars['Time']['output']>;
475
+ /** Descriptions of the flow type */
476
+ descriptions?: Maybe<TranslationConnection>;
477
+ /** Editable status of the flow type */
478
+ editable?: Maybe<Scalars['Boolean']['output']>;
479
+ /** Flow type settings of the flow type */
480
+ flowTypeSettings?: Maybe<Array<FlowTypeSetting>>;
481
+ /** Global ID of this FlowType */
482
+ id?: Maybe<Scalars['TypesFlowTypeID']['output']>;
483
+ /** Identifier of the flow type */
484
+ identifier?: Maybe<Scalars['String']['output']>;
485
+ /** Input type of the flow type */
486
+ inputType?: Maybe<DataType>;
487
+ /** Names of the flow type */
488
+ names?: Maybe<TranslationConnection>;
489
+ /** Return type of the flow type */
490
+ returnType?: Maybe<DataType>;
491
+ /** Time when this FlowType was last updated */
492
+ updatedAt?: Maybe<Scalars['Time']['output']>;
493
+ }
494
+
495
+
496
+ /** Represents a flow type */
497
+ export interface FlowTypeDescriptionsArgs {
498
+ after?: InputMaybe<Scalars['String']['input']>;
499
+ before?: InputMaybe<Scalars['String']['input']>;
500
+ first?: InputMaybe<Scalars['Int']['input']>;
501
+ last?: InputMaybe<Scalars['Int']['input']>;
502
+ }
503
+
504
+
505
+ /** Represents a flow type */
506
+ export interface FlowTypeNamesArgs {
507
+ after?: InputMaybe<Scalars['String']['input']>;
508
+ before?: InputMaybe<Scalars['String']['input']>;
509
+ first?: InputMaybe<Scalars['Int']['input']>;
510
+ last?: InputMaybe<Scalars['Int']['input']>;
511
+ }
512
+
513
+ /** The connection type for FlowType. */
514
+ export interface FlowTypeConnection {
515
+ __typename?: 'FlowTypeConnection';
516
+ /** Total count of collection. */
517
+ count?: Maybe<Scalars['Int']['output']>;
518
+ /** A list of edges. */
519
+ edges?: Maybe<Array<Maybe<FlowTypeEdge>>>;
520
+ /** A list of nodes. */
521
+ nodes?: Maybe<Array<Maybe<FlowType>>>;
522
+ /** Information to aid in pagination. */
523
+ pageInfo?: Maybe<PageInfo>;
524
+ }
525
+
526
+ /** An edge in a connection. */
527
+ export interface FlowTypeEdge {
528
+ __typename?: 'FlowTypeEdge';
529
+ /** A cursor for use in pagination. */
530
+ cursor?: Maybe<Scalars['String']['output']>;
531
+ /** The item at the end of the edge. */
532
+ node?: Maybe<FlowType>;
533
+ }
534
+
535
+ /** Represents a flow type setting */
536
+ export interface FlowTypeSetting {
537
+ __typename?: 'FlowTypeSetting';
538
+ /** Time when this FlowTypeSetting was created */
539
+ createdAt?: Maybe<Scalars['Time']['output']>;
540
+ /** Data type of the flow type setting */
541
+ dataType?: Maybe<DataType>;
542
+ /** Descriptions of the flow type setting */
543
+ descriptions?: Maybe<TranslationConnection>;
544
+ /** Flow type of the flow type setting */
545
+ flowType?: Maybe<FlowType>;
546
+ /** Global ID of this FlowTypeSetting */
547
+ id?: Maybe<Scalars['FlowTypeSettingID']['output']>;
548
+ /** Identifier of the flow type setting */
549
+ identifier?: Maybe<Scalars['String']['output']>;
550
+ /** Names of the flow type setting */
551
+ names?: Maybe<TranslationConnection>;
552
+ /** Unique status of the flow type setting */
553
+ unique?: Maybe<Scalars['Boolean']['output']>;
554
+ /** Time when this FlowTypeSetting was last updated */
555
+ updatedAt?: Maybe<Scalars['Time']['output']>;
556
+ }
557
+
558
+
559
+ /** Represents a flow type setting */
560
+ export interface FlowTypeSettingDescriptionsArgs {
561
+ after?: InputMaybe<Scalars['String']['input']>;
562
+ before?: InputMaybe<Scalars['String']['input']>;
563
+ first?: InputMaybe<Scalars['Int']['input']>;
564
+ last?: InputMaybe<Scalars['Int']['input']>;
565
+ }
566
+
567
+
568
+ /** Represents a flow type setting */
569
+ export interface FlowTypeSettingNamesArgs {
570
+ after?: InputMaybe<Scalars['String']['input']>;
571
+ before?: InputMaybe<Scalars['String']['input']>;
572
+ first?: InputMaybe<Scalars['Int']['input']>;
573
+ last?: InputMaybe<Scalars['Int']['input']>;
574
+ }
575
+
576
+ /** Represents a function definition */
577
+ export interface FunctionDefinition {
578
+ __typename?: 'FunctionDefinition';
579
+ /** Time when this FunctionDefinition was created */
580
+ createdAt?: Maybe<Scalars['Time']['output']>;
581
+ /** Deprecation message of the function */
582
+ deprecationMessages?: Maybe<TranslationConnection>;
583
+ /** Description of the function */
584
+ descriptions?: Maybe<TranslationConnection>;
585
+ /** Documentation of the function */
586
+ documentations?: Maybe<TranslationConnection>;
587
+ /** Generic keys of the function */
588
+ genericKeys?: Maybe<Array<Scalars['String']['output']>>;
589
+ /** Global ID of this FunctionDefinition */
590
+ id?: Maybe<Scalars['FunctionDefinitionID']['output']>;
591
+ /** Identifier of the function */
592
+ identifier?: Maybe<Scalars['String']['output']>;
593
+ /** Name of the function */
594
+ names?: Maybe<TranslationConnection>;
595
+ /** Parameters of the function */
596
+ parameterDefinitions?: Maybe<ParameterDefinitionConnection>;
597
+ /** Return type of the function */
598
+ returnType?: Maybe<DataTypeIdentifier>;
599
+ /** Runtime function definition */
600
+ runtimeFunctionDefinition?: Maybe<RuntimeFunctionDefinition>;
601
+ /** Indicates if the function can throw an error */
602
+ throwsError?: Maybe<Scalars['Boolean']['output']>;
603
+ /** Time when this FunctionDefinition was last updated */
604
+ updatedAt?: Maybe<Scalars['Time']['output']>;
605
+ }
606
+
607
+
608
+ /** Represents a function definition */
609
+ export interface FunctionDefinitionDeprecationMessagesArgs {
610
+ after?: InputMaybe<Scalars['String']['input']>;
611
+ before?: InputMaybe<Scalars['String']['input']>;
612
+ first?: InputMaybe<Scalars['Int']['input']>;
613
+ last?: InputMaybe<Scalars['Int']['input']>;
614
+ }
615
+
616
+
617
+ /** Represents a function definition */
618
+ export interface FunctionDefinitionDescriptionsArgs {
619
+ after?: InputMaybe<Scalars['String']['input']>;
620
+ before?: InputMaybe<Scalars['String']['input']>;
621
+ first?: InputMaybe<Scalars['Int']['input']>;
622
+ last?: InputMaybe<Scalars['Int']['input']>;
623
+ }
624
+
625
+
626
+ /** Represents a function definition */
627
+ export interface FunctionDefinitionDocumentationsArgs {
628
+ after?: InputMaybe<Scalars['String']['input']>;
629
+ before?: InputMaybe<Scalars['String']['input']>;
630
+ first?: InputMaybe<Scalars['Int']['input']>;
631
+ last?: InputMaybe<Scalars['Int']['input']>;
632
+ }
633
+
634
+
635
+ /** Represents a function definition */
636
+ export interface FunctionDefinitionNamesArgs {
637
+ after?: InputMaybe<Scalars['String']['input']>;
638
+ before?: InputMaybe<Scalars['String']['input']>;
639
+ first?: InputMaybe<Scalars['Int']['input']>;
640
+ last?: InputMaybe<Scalars['Int']['input']>;
641
+ }
642
+
643
+
644
+ /** Represents a function definition */
645
+ export interface FunctionDefinitionParameterDefinitionsArgs {
646
+ after?: InputMaybe<Scalars['String']['input']>;
647
+ before?: InputMaybe<Scalars['String']['input']>;
648
+ first?: InputMaybe<Scalars['Int']['input']>;
649
+ last?: InputMaybe<Scalars['Int']['input']>;
650
+ }
651
+
652
+ /** The connection type for FunctionDefinition. */
653
+ export interface FunctionDefinitionConnection {
654
+ __typename?: 'FunctionDefinitionConnection';
655
+ /** Total count of collection. */
656
+ count?: Maybe<Scalars['Int']['output']>;
657
+ /** A list of edges. */
658
+ edges?: Maybe<Array<Maybe<FunctionDefinitionEdge>>>;
659
+ /** A list of nodes. */
660
+ nodes?: Maybe<Array<Maybe<FunctionDefinition>>>;
661
+ /** Information to aid in pagination. */
662
+ pageInfo?: Maybe<PageInfo>;
663
+ }
664
+
665
+ /** An edge in a connection. */
666
+ export interface FunctionDefinitionEdge {
667
+ __typename?: 'FunctionDefinitionEdge';
668
+ /** A cursor for use in pagination. */
669
+ cursor?: Maybe<Scalars['String']['output']>;
670
+ /** The item at the end of the edge. */
671
+ node?: Maybe<FunctionDefinition>;
672
+ }
673
+
674
+ /** Represents a combination strategy with AND/OR logic used by a generic mapper. */
675
+ export interface GenericCombinationStrategy {
676
+ __typename?: 'GenericCombinationStrategy';
677
+ /** Time when this GenericCombinationStrategy was created */
678
+ createdAt?: Maybe<Scalars['Time']['output']>;
679
+ /** The associated generic mapper, if any. */
680
+ genericMapper?: Maybe<GenericMapper>;
681
+ /** Global ID of this GenericCombinationStrategy */
682
+ id?: Maybe<Scalars['GenericCombinationStrategyID']['output']>;
683
+ /** The combination type ('AND' or 'OR'). */
684
+ type?: Maybe<GenericCombinationStrategyType>;
685
+ /** Time when this GenericCombinationStrategy was last updated */
686
+ updatedAt?: Maybe<Scalars['Time']['output']>;
687
+ }
688
+
689
+ /** The available combination strategy types. */
690
+ export const enum GenericCombinationStrategyType {
691
+ /** Represents a logical AND combination. */
692
+ And = 'AND',
693
+ /** Represents a logical OR combination. */
694
+ Or = 'OR'
695
+ }
696
+
697
+ /** Represents a mapping between a source data type and a target key for generic values. */
698
+ export interface GenericMapper {
699
+ __typename?: 'GenericMapper';
700
+ /** Time when this GenericMapper was created */
701
+ createdAt?: Maybe<Scalars['Time']['output']>;
702
+ /** Combination strategies associated with this generic mapper. */
703
+ genericCombinationStrategies?: Maybe<Array<GenericCombinationStrategy>>;
704
+ /** Global ID of this GenericMapper */
705
+ id?: Maybe<Scalars['GenericMapperID']['output']>;
706
+ /** The source data type identifier. */
707
+ sourceDataTypeIdentifiers?: Maybe<Array<DataTypeIdentifier>>;
708
+ /** The target key for the generic value. */
709
+ target?: Maybe<Scalars['String']['output']>;
710
+ /** Time when this GenericMapper was last updated */
711
+ updatedAt?: Maybe<Scalars['Time']['output']>;
712
+ }
713
+
714
+ /** Input type for generic mappers */
715
+ export interface GenericMapperInput {
716
+ /** The source data type identifier for the mapper */
717
+ sources: Array<DataTypeIdentifierInput>;
718
+ /** The target data type identifier for the mapper */
719
+ target: Scalars['String']['input'];
720
+ }
721
+
722
+ /** Represents a generic type that can be used in various contexts. */
723
+ export interface GenericType {
724
+ __typename?: 'GenericType';
725
+ /** Time when this GenericType was created */
726
+ createdAt?: Maybe<Scalars['Time']['output']>;
727
+ /** The data type associated with this generic type. */
728
+ dataType?: Maybe<DataType>;
729
+ /** The mappers associated with this generic type. */
730
+ genericMappers?: Maybe<Array<GenericMapper>>;
731
+ /** Global ID of this GenericType */
732
+ id?: Maybe<Scalars['GenericTypeID']['output']>;
733
+ /** Time when this GenericType was last updated */
734
+ updatedAt?: Maybe<Scalars['Time']['output']>;
735
+ }
736
+
737
+ /** Input type for generic type operations. */
738
+ export interface GenericTypeInput {
739
+ /** The data type associated with this generic type. */
740
+ dataTypeId: Scalars['DataTypeID']['input'];
741
+ /** The mappers associated with this generic type. */
742
+ genericMappers: Array<GenericMapperInput>;
743
+ }
744
+
745
+ /** Represents the input for external user identity validation */
746
+ export interface IdentityInput {
747
+ /** This validation code will be used for the oAuth validation process */
748
+ code?: InputMaybe<Scalars['String']['input']>;
749
+ }
750
+
751
+ /** Represents a literal value, such as a string or number. */
752
+ export interface LiteralValue {
753
+ __typename?: 'LiteralValue';
754
+ /** Time when this LiteralValue was created */
755
+ createdAt?: Maybe<Scalars['Time']['output']>;
756
+ /** Time when this LiteralValue was last updated */
757
+ updatedAt?: Maybe<Scalars['Time']['output']>;
758
+ /** The literal value itself as JSON. */
759
+ value?: Maybe<Scalars['JSON']['output']>;
760
+ }
761
+
762
+ /** Represents an error message */
763
+ export interface MessageError {
764
+ __typename?: 'MessageError';
765
+ /** The message provided from the error */
766
+ message?: Maybe<Scalars['String']['output']>;
767
+ }
768
+
769
+ /** Represents the input for mfa authentication */
770
+ export interface MfaInput {
771
+ /** The type of the mfa authentication */
772
+ type: MfaType;
773
+ /** The value of the authentication */
774
+ value: Scalars['String']['input'];
775
+ }
776
+
777
+ /** Represent all available types to authenticate with mfa */
778
+ export const enum MfaType {
779
+ /** Single use backup code */
780
+ BackupCode = 'BACKUP_CODE',
781
+ /** Time based onetime password */
782
+ Totp = 'TOTP'
783
+ }
784
+
785
+ /** Root Mutation type */
786
+ export interface Mutation {
787
+ __typename?: 'Mutation';
788
+ /** Update application settings. */
789
+ applicationSettingsUpdate?: Maybe<ApplicationSettingsUpdatePayload>;
790
+ /**
791
+ * A mutation that does not perform any changes.
792
+ *
793
+ * This is expected to be used for testing of endpoints, to verify
794
+ * that a user has mutation access.
795
+ *
796
+ */
797
+ echo?: Maybe<EchoPayload>;
798
+ /** (EE only) Create a new namespace license. */
799
+ namespacesLicensesCreate?: Maybe<NamespacesLicensesCreatePayload>;
800
+ /** (EE only) Deletes an namespace license. */
801
+ namespacesLicensesDelete?: Maybe<NamespacesLicensesDeletePayload>;
802
+ /** Update the roles a member is assigned to. */
803
+ namespacesMembersAssignRoles?: Maybe<NamespacesMembersAssignRolesPayload>;
804
+ /** Remove a member from a namespace. */
805
+ namespacesMembersDelete?: Maybe<NamespacesMembersDeletePayload>;
806
+ /** Invite a new member to a namespace. */
807
+ namespacesMembersInvite?: Maybe<NamespacesMembersInvitePayload>;
808
+ /** Assign runtimes to a project */
809
+ namespacesProjectsAssignRuntimes?: Maybe<NamespacesProjectsAssignRuntimesPayload>;
810
+ /** Creates a new namespace project. */
811
+ namespacesProjectsCreate?: Maybe<NamespacesProjectsCreatePayload>;
812
+ /** Deletes a namespace project. */
813
+ namespacesProjectsDelete?: Maybe<NamespacesProjectsDeletePayload>;
814
+ /** Creates a new flow. */
815
+ namespacesProjectsFlowsCreate?: Maybe<NamespacesProjectsFlowsCreatePayload>;
816
+ /** Deletes a namespace project. */
817
+ namespacesProjectsFlowsDelete?: Maybe<NamespacesProjectsFlowsDeletePayload>;
818
+ /** Updates a namespace project. */
819
+ namespacesProjectsUpdate?: Maybe<NamespacesProjectsUpdatePayload>;
820
+ /** Update the abilities a role is granted. */
821
+ namespacesRolesAssignAbilities?: Maybe<NamespacesRolesAssignAbilitiesPayload>;
822
+ /** Update the project a role is assigned to. */
823
+ namespacesRolesAssignProjects?: Maybe<NamespacesRolesAssignProjectsPayload>;
824
+ /** Create a new role in a namespace. */
825
+ namespacesRolesCreate?: Maybe<NamespacesRolesCreatePayload>;
826
+ /** Delete an existing role in a namespace. */
827
+ namespacesRolesDelete?: Maybe<NamespacesRolesDeletePayload>;
828
+ /** Update an existing namespace role. */
829
+ namespacesRolesUpdate?: Maybe<NamespacesRolesUpdatePayload>;
830
+ /** Create a new organization. */
831
+ organizationsCreate?: Maybe<OrganizationsCreatePayload>;
832
+ /** Delete an existing organization. */
833
+ organizationsDelete?: Maybe<OrganizationsDeletePayload>;
834
+ /** Update an existing organization. */
835
+ organizationsUpdate?: Maybe<OrganizationsUpdatePayload>;
836
+ /** Create a new runtime. */
837
+ runtimesCreate?: Maybe<RuntimesCreatePayload>;
838
+ /** Delete an existing runtime. */
839
+ runtimesDelete?: Maybe<RuntimesDeletePayload>;
840
+ /** reloads the token of an existing runtime. */
841
+ runtimesRotateToken?: Maybe<RuntimesRotateTokenPayload>;
842
+ /** Update an existing runtime. */
843
+ runtimesUpdate?: Maybe<RuntimesUpdatePayload>;
844
+ /** Verify your email when changing it or signing up */
845
+ usersEmailVerification?: Maybe<UsersEmailVerificationPayload>;
846
+ /** Links an external identity to an existing user */
847
+ usersIdentityLink?: Maybe<UsersIdentityLinkPayload>;
848
+ /** Login to an existing user via an external identity */
849
+ usersIdentityLogin?: Maybe<UsersIdentityLoginPayload>;
850
+ /** Register a new user via an external identity */
851
+ usersIdentityRegister?: Maybe<UsersIdentityRegisterPayload>;
852
+ /** Unlinks an external identity from an user */
853
+ usersIdentityUnlink?: Maybe<UsersIdentityUnlinkPayload>;
854
+ /** Login to an existing user */
855
+ usersLogin?: Maybe<UsersLoginPayload>;
856
+ /** Logout an existing user session */
857
+ usersLogout?: Maybe<UsersLogoutPayload>;
858
+ /** Rotates the backup codes of a user. */
859
+ usersMfaBackupCodesRotate?: Maybe<UsersMfaBackupCodesRotatePayload>;
860
+ /** Generates an encrypted totp secret */
861
+ usersMfaTotpGenerateSecret?: Maybe<UsersMfaTotpGenerateSecretPayload>;
862
+ /** Validates a TOTP value for the given secret and enables TOTP MFA for the user */
863
+ usersMfaTotpValidateSecret?: Maybe<UsersMfaTotpValidateSecretPayload>;
864
+ /** Reset the password using a reset token */
865
+ usersPasswordReset?: Maybe<UsersPasswordResetPayload>;
866
+ /** Request an password reset */
867
+ usersPasswordResetRequest?: Maybe<UsersPasswordResetRequestPayload>;
868
+ /** Register a new user */
869
+ usersRegister?: Maybe<UsersRegisterPayload>;
870
+ /** Update an existing user. */
871
+ usersUpdate?: Maybe<UsersUpdatePayload>;
872
+ }
873
+
874
+
875
+ /** Root Mutation type */
876
+ export interface MutationApplicationSettingsUpdateArgs {
877
+ input: ApplicationSettingsUpdateInput;
878
+ }
879
+
880
+
881
+ /** Root Mutation type */
882
+ export interface MutationEchoArgs {
883
+ input: EchoInput;
884
+ }
885
+
886
+
887
+ /** Root Mutation type */
888
+ export interface MutationNamespacesLicensesCreateArgs {
889
+ input: NamespacesLicensesCreateInput;
890
+ }
891
+
892
+
893
+ /** Root Mutation type */
894
+ export interface MutationNamespacesLicensesDeleteArgs {
895
+ input: NamespacesLicensesDeleteInput;
896
+ }
897
+
898
+
899
+ /** Root Mutation type */
900
+ export interface MutationNamespacesMembersAssignRolesArgs {
901
+ input: NamespacesMembersAssignRolesInput;
902
+ }
903
+
904
+
905
+ /** Root Mutation type */
906
+ export interface MutationNamespacesMembersDeleteArgs {
907
+ input: NamespacesMembersDeleteInput;
908
+ }
909
+
910
+
911
+ /** Root Mutation type */
912
+ export interface MutationNamespacesMembersInviteArgs {
913
+ input: NamespacesMembersInviteInput;
914
+ }
915
+
916
+
917
+ /** Root Mutation type */
918
+ export interface MutationNamespacesProjectsAssignRuntimesArgs {
919
+ input: NamespacesProjectsAssignRuntimesInput;
920
+ }
921
+
922
+
923
+ /** Root Mutation type */
924
+ export interface MutationNamespacesProjectsCreateArgs {
925
+ input: NamespacesProjectsCreateInput;
926
+ }
927
+
928
+
929
+ /** Root Mutation type */
930
+ export interface MutationNamespacesProjectsDeleteArgs {
931
+ input: NamespacesProjectsDeleteInput;
932
+ }
933
+
934
+
935
+ /** Root Mutation type */
936
+ export interface MutationNamespacesProjectsFlowsCreateArgs {
937
+ input: NamespacesProjectsFlowsCreateInput;
938
+ }
939
+
940
+
941
+ /** Root Mutation type */
942
+ export interface MutationNamespacesProjectsFlowsDeleteArgs {
943
+ input: NamespacesProjectsFlowsDeleteInput;
944
+ }
945
+
946
+
947
+ /** Root Mutation type */
948
+ export interface MutationNamespacesProjectsUpdateArgs {
949
+ input: NamespacesProjectsUpdateInput;
950
+ }
951
+
952
+
953
+ /** Root Mutation type */
954
+ export interface MutationNamespacesRolesAssignAbilitiesArgs {
955
+ input: NamespacesRolesAssignAbilitiesInput;
956
+ }
957
+
958
+
959
+ /** Root Mutation type */
960
+ export interface MutationNamespacesRolesAssignProjectsArgs {
961
+ input: NamespacesRolesAssignProjectsInput;
962
+ }
963
+
964
+
965
+ /** Root Mutation type */
966
+ export interface MutationNamespacesRolesCreateArgs {
967
+ input: NamespacesRolesCreateInput;
968
+ }
969
+
970
+
971
+ /** Root Mutation type */
972
+ export interface MutationNamespacesRolesDeleteArgs {
973
+ input: NamespacesRolesDeleteInput;
974
+ }
975
+
976
+
977
+ /** Root Mutation type */
978
+ export interface MutationNamespacesRolesUpdateArgs {
979
+ input: NamespacesRolesUpdateInput;
980
+ }
981
+
982
+
983
+ /** Root Mutation type */
984
+ export interface MutationOrganizationsCreateArgs {
985
+ input: OrganizationsCreateInput;
986
+ }
987
+
988
+
989
+ /** Root Mutation type */
990
+ export interface MutationOrganizationsDeleteArgs {
991
+ input: OrganizationsDeleteInput;
992
+ }
993
+
994
+
995
+ /** Root Mutation type */
996
+ export interface MutationOrganizationsUpdateArgs {
997
+ input: OrganizationsUpdateInput;
998
+ }
999
+
1000
+
1001
+ /** Root Mutation type */
1002
+ export interface MutationRuntimesCreateArgs {
1003
+ input: RuntimesCreateInput;
1004
+ }
1005
+
1006
+
1007
+ /** Root Mutation type */
1008
+ export interface MutationRuntimesDeleteArgs {
1009
+ input: RuntimesDeleteInput;
1010
+ }
1011
+
1012
+
1013
+ /** Root Mutation type */
1014
+ export interface MutationRuntimesRotateTokenArgs {
1015
+ input: RuntimesRotateTokenInput;
1016
+ }
1017
+
1018
+
1019
+ /** Root Mutation type */
1020
+ export interface MutationRuntimesUpdateArgs {
1021
+ input: RuntimesUpdateInput;
1022
+ }
1023
+
1024
+
1025
+ /** Root Mutation type */
1026
+ export interface MutationUsersEmailVerificationArgs {
1027
+ input: UsersEmailVerificationInput;
1028
+ }
1029
+
1030
+
1031
+ /** Root Mutation type */
1032
+ export interface MutationUsersIdentityLinkArgs {
1033
+ input: UsersIdentityLinkInput;
1034
+ }
1035
+
1036
+
1037
+ /** Root Mutation type */
1038
+ export interface MutationUsersIdentityLoginArgs {
1039
+ input: UsersIdentityLoginInput;
1040
+ }
1041
+
1042
+
1043
+ /** Root Mutation type */
1044
+ export interface MutationUsersIdentityRegisterArgs {
1045
+ input: UsersIdentityRegisterInput;
1046
+ }
1047
+
1048
+
1049
+ /** Root Mutation type */
1050
+ export interface MutationUsersIdentityUnlinkArgs {
1051
+ input: UsersIdentityUnlinkInput;
1052
+ }
1053
+
1054
+
1055
+ /** Root Mutation type */
1056
+ export interface MutationUsersLoginArgs {
1057
+ input: UsersLoginInput;
1058
+ }
1059
+
1060
+
1061
+ /** Root Mutation type */
1062
+ export interface MutationUsersLogoutArgs {
1063
+ input: UsersLogoutInput;
1064
+ }
1065
+
1066
+
1067
+ /** Root Mutation type */
1068
+ export interface MutationUsersMfaBackupCodesRotateArgs {
1069
+ input: UsersMfaBackupCodesRotateInput;
1070
+ }
1071
+
1072
+
1073
+ /** Root Mutation type */
1074
+ export interface MutationUsersMfaTotpGenerateSecretArgs {
1075
+ input: UsersMfaTotpGenerateSecretInput;
1076
+ }
1077
+
1078
+
1079
+ /** Root Mutation type */
1080
+ export interface MutationUsersMfaTotpValidateSecretArgs {
1081
+ input: UsersMfaTotpValidateSecretInput;
1082
+ }
1083
+
1084
+
1085
+ /** Root Mutation type */
1086
+ export interface MutationUsersPasswordResetArgs {
1087
+ input: UsersPasswordResetInput;
1088
+ }
1089
+
1090
+
1091
+ /** Root Mutation type */
1092
+ export interface MutationUsersPasswordResetRequestArgs {
1093
+ input: UsersPasswordResetRequestInput;
1094
+ }
1095
+
1096
+
1097
+ /** Root Mutation type */
1098
+ export interface MutationUsersRegisterArgs {
1099
+ input: UsersRegisterInput;
1100
+ }
1101
+
1102
+
1103
+ /** Root Mutation type */
1104
+ export interface MutationUsersUpdateArgs {
1105
+ input: UsersUpdateInput;
1106
+ }
1107
+
1108
+ /** Represents a Namespace */
1109
+ export interface Namespace {
1110
+ __typename?: 'Namespace';
1111
+ /** Time when this Namespace was created */
1112
+ createdAt?: Maybe<Scalars['Time']['output']>;
1113
+ /** Global ID of this Namespace */
1114
+ id?: Maybe<Scalars['NamespaceID']['output']>;
1115
+ /** Members of the namespace */
1116
+ members?: Maybe<NamespaceMemberConnection>;
1117
+ /** (EE only) Licenses of the namespace */
1118
+ namespaceLicenses?: Maybe<NamespaceLicenseConnection>;
1119
+ /** Parent of this namespace */
1120
+ parent?: Maybe<NamespaceParent>;
1121
+ /** Projects of the namespace */
1122
+ projects?: Maybe<NamespaceProjectConnection>;
1123
+ /** Roles of the namespace */
1124
+ roles?: Maybe<NamespaceRoleConnection>;
1125
+ /** Runtime of the namespace */
1126
+ runtimes?: Maybe<RuntimeConnection>;
1127
+ /** Time when this Namespace was last updated */
1128
+ updatedAt?: Maybe<Scalars['Time']['output']>;
1129
+ }
1130
+
1131
+
1132
+ /** Represents a Namespace */
1133
+ export interface NamespaceMembersArgs {
1134
+ after?: InputMaybe<Scalars['String']['input']>;
1135
+ before?: InputMaybe<Scalars['String']['input']>;
1136
+ first?: InputMaybe<Scalars['Int']['input']>;
1137
+ last?: InputMaybe<Scalars['Int']['input']>;
1138
+ }
1139
+
1140
+
1141
+ /** Represents a Namespace */
1142
+ export interface NamespaceNamespaceLicensesArgs {
1143
+ after?: InputMaybe<Scalars['String']['input']>;
1144
+ before?: InputMaybe<Scalars['String']['input']>;
1145
+ first?: InputMaybe<Scalars['Int']['input']>;
1146
+ last?: InputMaybe<Scalars['Int']['input']>;
1147
+ }
1148
+
1149
+
1150
+ /** Represents a Namespace */
1151
+ export interface NamespaceProjectsArgs {
1152
+ after?: InputMaybe<Scalars['String']['input']>;
1153
+ before?: InputMaybe<Scalars['String']['input']>;
1154
+ first?: InputMaybe<Scalars['Int']['input']>;
1155
+ last?: InputMaybe<Scalars['Int']['input']>;
1156
+ }
1157
+
1158
+
1159
+ /** Represents a Namespace */
1160
+ export interface NamespaceRolesArgs {
1161
+ after?: InputMaybe<Scalars['String']['input']>;
1162
+ before?: InputMaybe<Scalars['String']['input']>;
1163
+ first?: InputMaybe<Scalars['Int']['input']>;
1164
+ last?: InputMaybe<Scalars['Int']['input']>;
1165
+ }
1166
+
1167
+
1168
+ /** Represents a Namespace */
1169
+ export interface NamespaceRuntimesArgs {
1170
+ after?: InputMaybe<Scalars['String']['input']>;
1171
+ before?: InputMaybe<Scalars['String']['input']>;
1172
+ first?: InputMaybe<Scalars['Int']['input']>;
1173
+ last?: InputMaybe<Scalars['Int']['input']>;
1174
+ }
1175
+
1176
+ /** (EE only) Represents a Namespace License */
1177
+ export interface NamespaceLicense {
1178
+ __typename?: 'NamespaceLicense';
1179
+ /** Time when this NamespaceLicense was created */
1180
+ createdAt?: Maybe<Scalars['Time']['output']>;
1181
+ /** The end date of the license */
1182
+ endDate?: Maybe<Scalars['Time']['output']>;
1183
+ /** Global ID of this NamespaceLicense */
1184
+ id?: Maybe<Scalars['NamespaceLicenseID']['output']>;
1185
+ /** The licensee information */
1186
+ licensee?: Maybe<Scalars['JSON']['output']>;
1187
+ /** The namespace the license belongs to */
1188
+ namespace?: Maybe<Namespace>;
1189
+ /** The start date of the license */
1190
+ startDate?: Maybe<Scalars['Time']['output']>;
1191
+ /** Time when this NamespaceLicense was last updated */
1192
+ updatedAt?: Maybe<Scalars['Time']['output']>;
1193
+ }
1194
+
1195
+ /** The connection type for NamespaceLicense. */
1196
+ export interface NamespaceLicenseConnection {
1197
+ __typename?: 'NamespaceLicenseConnection';
1198
+ /** Total count of collection. */
1199
+ count?: Maybe<Scalars['Int']['output']>;
1200
+ /** A list of edges. */
1201
+ edges?: Maybe<Array<Maybe<NamespaceLicenseEdge>>>;
1202
+ /** A list of nodes. */
1203
+ nodes?: Maybe<Array<Maybe<NamespaceLicense>>>;
1204
+ /** Information to aid in pagination. */
1205
+ pageInfo?: Maybe<PageInfo>;
1206
+ }
1207
+
1208
+ /** An edge in a connection. */
1209
+ export interface NamespaceLicenseEdge {
1210
+ __typename?: 'NamespaceLicenseEdge';
1211
+ /** A cursor for use in pagination. */
1212
+ cursor?: Maybe<Scalars['String']['output']>;
1213
+ /** The item at the end of the edge. */
1214
+ node?: Maybe<NamespaceLicense>;
1215
+ }
1216
+
1217
+ /** Represents a namespace member */
1218
+ export interface NamespaceMember {
1219
+ __typename?: 'NamespaceMember';
1220
+ /** Time when this NamespaceMember was created */
1221
+ createdAt?: Maybe<Scalars['Time']['output']>;
1222
+ /** Global ID of this NamespaceMember */
1223
+ id?: Maybe<Scalars['NamespaceMemberID']['output']>;
1224
+ /** Memberroles of the member */
1225
+ memberRoles?: Maybe<NamespaceMemberRoleConnection>;
1226
+ /** Namespace this member belongs to */
1227
+ namespace?: Maybe<Namespace>;
1228
+ /** Roles of the member */
1229
+ roles?: Maybe<NamespaceRoleConnection>;
1230
+ /** Time when this NamespaceMember was last updated */
1231
+ updatedAt?: Maybe<Scalars['Time']['output']>;
1232
+ /** User this member belongs to */
1233
+ user?: Maybe<User>;
1234
+ }
1235
+
1236
+
1237
+ /** Represents a namespace member */
1238
+ export interface NamespaceMemberMemberRolesArgs {
1239
+ after?: InputMaybe<Scalars['String']['input']>;
1240
+ before?: InputMaybe<Scalars['String']['input']>;
1241
+ first?: InputMaybe<Scalars['Int']['input']>;
1242
+ last?: InputMaybe<Scalars['Int']['input']>;
1243
+ }
1244
+
1245
+
1246
+ /** Represents a namespace member */
1247
+ export interface NamespaceMemberRolesArgs {
1248
+ after?: InputMaybe<Scalars['String']['input']>;
1249
+ before?: InputMaybe<Scalars['String']['input']>;
1250
+ first?: InputMaybe<Scalars['Int']['input']>;
1251
+ last?: InputMaybe<Scalars['Int']['input']>;
1252
+ }
1253
+
1254
+ /** The connection type for NamespaceMember. */
1255
+ export interface NamespaceMemberConnection {
1256
+ __typename?: 'NamespaceMemberConnection';
1257
+ /** Total count of collection. */
1258
+ count?: Maybe<Scalars['Int']['output']>;
1259
+ /** A list of edges. */
1260
+ edges?: Maybe<Array<Maybe<NamespaceMemberEdge>>>;
1261
+ /** A list of nodes. */
1262
+ nodes?: Maybe<Array<Maybe<NamespaceMember>>>;
1263
+ /** Information to aid in pagination. */
1264
+ pageInfo?: Maybe<PageInfo>;
1265
+ }
1266
+
1267
+ /** An edge in a connection. */
1268
+ export interface NamespaceMemberEdge {
1269
+ __typename?: 'NamespaceMemberEdge';
1270
+ /** A cursor for use in pagination. */
1271
+ cursor?: Maybe<Scalars['String']['output']>;
1272
+ /** The item at the end of the edge. */
1273
+ node?: Maybe<NamespaceMember>;
1274
+ }
1275
+
1276
+ /** Represents an assigned role to a member */
1277
+ export interface NamespaceMemberRole {
1278
+ __typename?: 'NamespaceMemberRole';
1279
+ /** Time when this NamespaceMemberRole was created */
1280
+ createdAt?: Maybe<Scalars['Time']['output']>;
1281
+ /** Global ID of this NamespaceMemberRole */
1282
+ id?: Maybe<Scalars['NamespaceMemberRoleID']['output']>;
1283
+ /** The member the role is assigned to */
1284
+ member?: Maybe<NamespaceMember>;
1285
+ /** The assigned role */
1286
+ role?: Maybe<NamespaceRole>;
1287
+ /** Time when this NamespaceMemberRole was last updated */
1288
+ updatedAt?: Maybe<Scalars['Time']['output']>;
1289
+ }
1290
+
1291
+ /** The connection type for NamespaceMemberRole. */
1292
+ export interface NamespaceMemberRoleConnection {
1293
+ __typename?: 'NamespaceMemberRoleConnection';
1294
+ /** Total count of collection. */
1295
+ count?: Maybe<Scalars['Int']['output']>;
1296
+ /** A list of edges. */
1297
+ edges?: Maybe<Array<Maybe<NamespaceMemberRoleEdge>>>;
1298
+ /** A list of nodes. */
1299
+ nodes?: Maybe<Array<Maybe<NamespaceMemberRole>>>;
1300
+ /** Information to aid in pagination. */
1301
+ pageInfo?: Maybe<PageInfo>;
1302
+ }
1303
+
1304
+ /** An edge in a connection. */
1305
+ export interface NamespaceMemberRoleEdge {
1306
+ __typename?: 'NamespaceMemberRoleEdge';
1307
+ /** A cursor for use in pagination. */
1308
+ cursor?: Maybe<Scalars['String']['output']>;
1309
+ /** The item at the end of the edge. */
1310
+ node?: Maybe<NamespaceMemberRole>;
1311
+ }
1312
+
1313
+ /** Objects that can present a namespace */
1314
+ export type NamespaceParent = Organization | User;
1315
+
1316
+ /** Represents a namespace project */
1317
+ export interface NamespaceProject {
1318
+ __typename?: 'NamespaceProject';
1319
+ /** Time when this NamespaceProject was created */
1320
+ createdAt?: Maybe<Scalars['Time']['output']>;
1321
+ /** Description of the project */
1322
+ description?: Maybe<Scalars['String']['output']>;
1323
+ /** Fetches an flow given by its ID */
1324
+ flow?: Maybe<Flow>;
1325
+ /** Fetches all flows in this project */
1326
+ flows?: Maybe<FlowConnection>;
1327
+ /** Global ID of this NamespaceProject */
1328
+ id?: Maybe<Scalars['NamespaceProjectID']['output']>;
1329
+ /** Name of the project */
1330
+ name?: Maybe<Scalars['String']['output']>;
1331
+ /** The namespace where this project belongs to */
1332
+ namespace?: Maybe<Namespace>;
1333
+ /** The primary runtime for the project */
1334
+ primaryRuntime?: Maybe<Runtime>;
1335
+ /** Runtimes assigned to this project */
1336
+ runtimes?: Maybe<RuntimeConnection>;
1337
+ /** Time when this NamespaceProject was last updated */
1338
+ updatedAt?: Maybe<Scalars['Time']['output']>;
1339
+ }
1340
+
1341
+
1342
+ /** Represents a namespace project */
1343
+ export interface NamespaceProjectFlowArgs {
1344
+ id: Scalars['FlowID']['input'];
1345
+ }
1346
+
1347
+
1348
+ /** Represents a namespace project */
1349
+ export interface NamespaceProjectFlowsArgs {
1350
+ after?: InputMaybe<Scalars['String']['input']>;
1351
+ before?: InputMaybe<Scalars['String']['input']>;
1352
+ first?: InputMaybe<Scalars['Int']['input']>;
1353
+ last?: InputMaybe<Scalars['Int']['input']>;
1354
+ }
1355
+
1356
+
1357
+ /** Represents a namespace project */
1358
+ export interface NamespaceProjectRuntimesArgs {
1359
+ after?: InputMaybe<Scalars['String']['input']>;
1360
+ before?: InputMaybe<Scalars['String']['input']>;
1361
+ first?: InputMaybe<Scalars['Int']['input']>;
1362
+ last?: InputMaybe<Scalars['Int']['input']>;
1363
+ }
1364
+
1365
+ /** The connection type for NamespaceProject. */
1366
+ export interface NamespaceProjectConnection {
1367
+ __typename?: 'NamespaceProjectConnection';
1368
+ /** Total count of collection. */
1369
+ count?: Maybe<Scalars['Int']['output']>;
1370
+ /** A list of edges. */
1371
+ edges?: Maybe<Array<Maybe<NamespaceProjectEdge>>>;
1372
+ /** A list of nodes. */
1373
+ nodes?: Maybe<Array<Maybe<NamespaceProject>>>;
1374
+ /** Information to aid in pagination. */
1375
+ pageInfo?: Maybe<PageInfo>;
1376
+ }
1377
+
1378
+ /** An edge in a connection. */
1379
+ export interface NamespaceProjectEdge {
1380
+ __typename?: 'NamespaceProjectEdge';
1381
+ /** A cursor for use in pagination. */
1382
+ cursor?: Maybe<Scalars['String']['output']>;
1383
+ /** The item at the end of the edge. */
1384
+ node?: Maybe<NamespaceProject>;
1385
+ }
1386
+
1387
+ /** Represents a namespace role. */
1388
+ export interface NamespaceRole {
1389
+ __typename?: 'NamespaceRole';
1390
+ /** The abilities the role is granted */
1391
+ abilities?: Maybe<Array<NamespaceRoleAbility>>;
1392
+ /** The projects this role is assigned to */
1393
+ assignedProjects?: Maybe<NamespaceProjectConnection>;
1394
+ /** Time when this NamespaceRole was created */
1395
+ createdAt?: Maybe<Scalars['Time']['output']>;
1396
+ /** Global ID of this NamespaceRole */
1397
+ id?: Maybe<Scalars['NamespaceRoleID']['output']>;
1398
+ /** The name of this role */
1399
+ name?: Maybe<Scalars['String']['output']>;
1400
+ /** The namespace where this role belongs to */
1401
+ namespace?: Maybe<Namespace>;
1402
+ /** Time when this NamespaceRole was last updated */
1403
+ updatedAt?: Maybe<Scalars['Time']['output']>;
1404
+ }
1405
+
1406
+
1407
+ /** Represents a namespace role. */
1408
+ export interface NamespaceRoleAssignedProjectsArgs {
1409
+ after?: InputMaybe<Scalars['String']['input']>;
1410
+ before?: InputMaybe<Scalars['String']['input']>;
1411
+ first?: InputMaybe<Scalars['Int']['input']>;
1412
+ last?: InputMaybe<Scalars['Int']['input']>;
1413
+ }
1414
+
1415
+ /** Represents abilities that can be granted to roles in namespaces. */
1416
+ export const enum NamespaceRoleAbility {
1417
+ /** Allows to change the roles of a namespace member */
1418
+ AssignMemberRoles = 'ASSIGN_MEMBER_ROLES',
1419
+ /** Allows to assign runtimes to a project in the namespace */
1420
+ AssignProjectRuntimes = 'ASSIGN_PROJECT_RUNTIMES',
1421
+ /** Allows to change the abilities of a namespace role */
1422
+ AssignRoleAbilities = 'ASSIGN_ROLE_ABILITIES',
1423
+ /** Allows to change the assigned projects of a namespace role */
1424
+ AssignRoleProjects = 'ASSIGN_ROLE_PROJECTS',
1425
+ /** Allows to create flows in a namespace project */
1426
+ CreateFlows = 'CREATE_FLOWS',
1427
+ /** Allows to create a license for the namespace */
1428
+ CreateNamespaceLicense = 'CREATE_NAMESPACE_LICENSE',
1429
+ /** Allows to create a project in the namespace */
1430
+ CreateNamespaceProject = 'CREATE_NAMESPACE_PROJECT',
1431
+ /** Allows the creation of roles in a namespace */
1432
+ CreateNamespaceRole = 'CREATE_NAMESPACE_ROLE',
1433
+ /** Allows to create a runtime globally or for the namespace */
1434
+ CreateRuntime = 'CREATE_RUNTIME',
1435
+ /** Allows to delete flows in a namespace project */
1436
+ DeleteFlows = 'DELETE_FLOWS',
1437
+ /** Allows to remove members of a namespace */
1438
+ DeleteMember = 'DELETE_MEMBER',
1439
+ /** Allows to delete the license of the namespace */
1440
+ DeleteNamespaceLicense = 'DELETE_NAMESPACE_LICENSE',
1441
+ /** Allows to delete the project of the namespace */
1442
+ DeleteNamespaceProject = 'DELETE_NAMESPACE_PROJECT',
1443
+ /** Allows the deletion of roles in a namespace */
1444
+ DeleteNamespaceRole = 'DELETE_NAMESPACE_ROLE',
1445
+ /** Allows to delete the organization */
1446
+ DeleteOrganization = 'DELETE_ORGANIZATION',
1447
+ /** Allows to delete a runtime */
1448
+ DeleteRuntime = 'DELETE_RUNTIME',
1449
+ /** Allows to invite new members to a namespace */
1450
+ InviteMember = 'INVITE_MEMBER',
1451
+ /** Allows to perform any action in the namespace */
1452
+ NamespaceAdministrator = 'NAMESPACE_ADMINISTRATOR',
1453
+ /** Allows to read the license of the namespace */
1454
+ ReadNamespaceLicense = 'READ_NAMESPACE_LICENSE',
1455
+ /** Allows to read the project of the namespace */
1456
+ ReadNamespaceProject = 'READ_NAMESPACE_PROJECT',
1457
+ /** Allows to regenerate a runtime token */
1458
+ RotateRuntimeToken = 'ROTATE_RUNTIME_TOKEN',
1459
+ /** Allows to update flows in the project */
1460
+ UpdateFlows = 'UPDATE_FLOWS',
1461
+ /** Allows to update the project of the namespace */
1462
+ UpdateNamespaceProject = 'UPDATE_NAMESPACE_PROJECT',
1463
+ /** Allows to update the namespace role */
1464
+ UpdateNamespaceRole = 'UPDATE_NAMESPACE_ROLE',
1465
+ /** Allows to update the organization */
1466
+ UpdateOrganization = 'UPDATE_ORGANIZATION',
1467
+ /** Allows to update a runtime globally or for the namespace */
1468
+ UpdateRuntime = 'UPDATE_RUNTIME'
1469
+ }
1470
+
1471
+ /** The connection type for NamespaceRole. */
1472
+ export interface NamespaceRoleConnection {
1473
+ __typename?: 'NamespaceRoleConnection';
1474
+ /** Total count of collection. */
1475
+ count?: Maybe<Scalars['Int']['output']>;
1476
+ /** A list of edges. */
1477
+ edges?: Maybe<Array<Maybe<NamespaceRoleEdge>>>;
1478
+ /** A list of nodes. */
1479
+ nodes?: Maybe<Array<Maybe<NamespaceRole>>>;
1480
+ /** Information to aid in pagination. */
1481
+ pageInfo?: Maybe<PageInfo>;
1482
+ }
1483
+
1484
+ /** An edge in a connection. */
1485
+ export interface NamespaceRoleEdge {
1486
+ __typename?: 'NamespaceRoleEdge';
1487
+ /** A cursor for use in pagination. */
1488
+ cursor?: Maybe<Scalars['String']['output']>;
1489
+ /** The item at the end of the edge. */
1490
+ node?: Maybe<NamespaceRole>;
1491
+ }
1492
+
1493
+ /** Autogenerated input type of NamespacesLicensesCreate */
1494
+ export interface NamespacesLicensesCreateInput {
1495
+ /** A unique identifier for the client performing the mutation. */
1496
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1497
+ /** The license data. */
1498
+ data: Scalars['String']['input'];
1499
+ /** The namespace ID. */
1500
+ namespaceId: Scalars['NamespaceID']['input'];
1501
+ }
1502
+
1503
+ /** Autogenerated return type of NamespacesLicensesCreate. */
1504
+ export interface NamespacesLicensesCreatePayload {
1505
+ __typename?: 'NamespacesLicensesCreatePayload';
1506
+ /** A unique identifier for the client performing the mutation. */
1507
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1508
+ /** Errors encountered during execution of the mutation. */
1509
+ errors?: Maybe<Array<Error>>;
1510
+ /** The newly created license. */
1511
+ namespaceLicense?: Maybe<NamespaceLicense>;
1512
+ }
1513
+
1514
+ /** Autogenerated input type of NamespacesLicensesDelete */
1515
+ export interface NamespacesLicensesDeleteInput {
1516
+ /** A unique identifier for the client performing the mutation. */
1517
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1518
+ /** The license id to delete. */
1519
+ namespaceLicenseId: Scalars['NamespaceLicenseID']['input'];
1520
+ }
1521
+
1522
+ /** Autogenerated return type of NamespacesLicensesDelete. */
1523
+ export interface NamespacesLicensesDeletePayload {
1524
+ __typename?: 'NamespacesLicensesDeletePayload';
1525
+ /** A unique identifier for the client performing the mutation. */
1526
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1527
+ /** Errors encountered during execution of the mutation. */
1528
+ errors?: Maybe<Array<Error>>;
1529
+ /** The deleted namespace license. */
1530
+ namespaceLicense?: Maybe<NamespaceLicense>;
1531
+ }
1532
+
1533
+ /** Autogenerated input type of NamespacesMembersAssignRoles */
1534
+ export interface NamespacesMembersAssignRolesInput {
1535
+ /** A unique identifier for the client performing the mutation. */
1536
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1537
+ /** The id of the member which should be assigned the roles */
1538
+ memberId: Scalars['NamespaceMemberID']['input'];
1539
+ /** The roles the member should be assigned to the member */
1540
+ roleIds: Array<Scalars['NamespaceRoleID']['input']>;
1541
+ }
1542
+
1543
+ /** Autogenerated return type of NamespacesMembersAssignRoles. */
1544
+ export interface NamespacesMembersAssignRolesPayload {
1545
+ __typename?: 'NamespacesMembersAssignRolesPayload';
1546
+ /** A unique identifier for the client performing the mutation. */
1547
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1548
+ /** Errors encountered during execution of the mutation. */
1549
+ errors?: Maybe<Array<Error>>;
1550
+ /** The roles the member is now assigned to */
1551
+ namespaceMemberRoles?: Maybe<Array<NamespaceMemberRole>>;
1552
+ }
1553
+
1554
+ /** Autogenerated input type of NamespacesMembersDelete */
1555
+ export interface NamespacesMembersDeleteInput {
1556
+ /** A unique identifier for the client performing the mutation. */
1557
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1558
+ /** The id of the namespace member to remove */
1559
+ namespaceMemberId: Scalars['NamespaceMemberID']['input'];
1560
+ }
1561
+
1562
+ /** Autogenerated return type of NamespacesMembersDelete. */
1563
+ export interface NamespacesMembersDeletePayload {
1564
+ __typename?: 'NamespacesMembersDeletePayload';
1565
+ /** A unique identifier for the client performing the mutation. */
1566
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1567
+ /** Errors encountered during execution of the mutation. */
1568
+ errors?: Maybe<Array<Error>>;
1569
+ /** The removed namespace member */
1570
+ namespaceMember?: Maybe<NamespaceMember>;
1571
+ }
1572
+
1573
+ /** Autogenerated input type of NamespacesMembersInvite */
1574
+ export interface NamespacesMembersInviteInput {
1575
+ /** A unique identifier for the client performing the mutation. */
1576
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1577
+ /** The id of the namespace which this member will belong to */
1578
+ namespaceId: Scalars['NamespaceID']['input'];
1579
+ /** The id of the user to invite */
1580
+ userId: Scalars['UserID']['input'];
1581
+ }
1582
+
1583
+ /** Autogenerated return type of NamespacesMembersInvite. */
1584
+ export interface NamespacesMembersInvitePayload {
1585
+ __typename?: 'NamespacesMembersInvitePayload';
1586
+ /** A unique identifier for the client performing the mutation. */
1587
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1588
+ /** Errors encountered during execution of the mutation. */
1589
+ errors?: Maybe<Array<Error>>;
1590
+ /** The newly created namespace member */
1591
+ namespaceMember?: Maybe<NamespaceMember>;
1592
+ }
1593
+
1594
+ /** Autogenerated input type of NamespacesProjectsAssignRuntimes */
1595
+ export interface NamespacesProjectsAssignRuntimesInput {
1596
+ /** A unique identifier for the client performing the mutation. */
1597
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1598
+ /** ID of the project to assign runtimes to */
1599
+ namespaceProjectId: Scalars['NamespaceProjectID']['input'];
1600
+ /** The new runtimes assigned to the project */
1601
+ runtimeIds: Array<Scalars['RuntimeID']['input']>;
1602
+ }
1603
+
1604
+ /** Autogenerated return type of NamespacesProjectsAssignRuntimes. */
1605
+ export interface NamespacesProjectsAssignRuntimesPayload {
1606
+ __typename?: 'NamespacesProjectsAssignRuntimesPayload';
1607
+ /** A unique identifier for the client performing the mutation. */
1608
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1609
+ /** Errors encountered during execution of the mutation. */
1610
+ errors?: Maybe<Array<Error>>;
1611
+ /** The updated project with assigned runtimes */
1612
+ namespaceProject?: Maybe<NamespaceProject>;
1613
+ }
1614
+
1615
+ /** Autogenerated input type of NamespacesProjectsCreate */
1616
+ export interface NamespacesProjectsCreateInput {
1617
+ /** A unique identifier for the client performing the mutation. */
1618
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1619
+ /** Description for the new project. */
1620
+ description?: InputMaybe<Scalars['String']['input']>;
1621
+ /** Name for the new project. */
1622
+ name: Scalars['String']['input'];
1623
+ /** The id of the namespace which this project will belong to */
1624
+ namespaceId: Scalars['NamespaceID']['input'];
1625
+ }
1626
+
1627
+ /** Autogenerated return type of NamespacesProjectsCreate. */
1628
+ export interface NamespacesProjectsCreatePayload {
1629
+ __typename?: 'NamespacesProjectsCreatePayload';
1630
+ /** A unique identifier for the client performing the mutation. */
1631
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1632
+ /** Errors encountered during execution of the mutation. */
1633
+ errors?: Maybe<Array<Error>>;
1634
+ /** The newly created project. */
1635
+ namespaceProject?: Maybe<NamespaceProject>;
1636
+ }
1637
+
1638
+ /** Autogenerated input type of NamespacesProjectsDelete */
1639
+ export interface NamespacesProjectsDeleteInput {
1640
+ /** A unique identifier for the client performing the mutation. */
1641
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1642
+ /** The id of the namespace project which will be deleted */
1643
+ namespaceProjectId: Scalars['NamespaceProjectID']['input'];
1644
+ }
1645
+
1646
+ /** Autogenerated return type of NamespacesProjectsDelete. */
1647
+ export interface NamespacesProjectsDeletePayload {
1648
+ __typename?: 'NamespacesProjectsDeletePayload';
1649
+ /** A unique identifier for the client performing the mutation. */
1650
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1651
+ /** Errors encountered during execution of the mutation. */
1652
+ errors?: Maybe<Array<Error>>;
1653
+ /** The deleted project. */
1654
+ namespaceProject?: Maybe<NamespaceProject>;
1655
+ }
1656
+
1657
+ /** Autogenerated input type of NamespacesProjectsFlowsCreate */
1658
+ export interface NamespacesProjectsFlowsCreateInput {
1659
+ /** A unique identifier for the client performing the mutation. */
1660
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1661
+ /** The flow to create */
1662
+ flow: FlowInput;
1663
+ /** The ID of the project to which the flow belongs to */
1664
+ projectId: Scalars['NamespaceProjectID']['input'];
1665
+ }
1666
+
1667
+ /** Autogenerated return type of NamespacesProjectsFlowsCreate. */
1668
+ export interface NamespacesProjectsFlowsCreatePayload {
1669
+ __typename?: 'NamespacesProjectsFlowsCreatePayload';
1670
+ /** A unique identifier for the client performing the mutation. */
1671
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1672
+ /** Errors encountered during execution of the mutation. */
1673
+ errors?: Maybe<Array<Error>>;
1674
+ /** The newly created flow. */
1675
+ flow?: Maybe<Flow>;
1676
+ }
1677
+
1678
+ /** Autogenerated input type of NamespacesProjectsFlowsDelete */
1679
+ export interface NamespacesProjectsFlowsDeleteInput {
1680
+ /** A unique identifier for the client performing the mutation. */
1681
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1682
+ /** The id of the flow which will be deleted */
1683
+ flowId: Scalars['FlowID']['input'];
1684
+ }
1685
+
1686
+ /** Autogenerated return type of NamespacesProjectsFlowsDelete. */
1687
+ export interface NamespacesProjectsFlowsDeletePayload {
1688
+ __typename?: 'NamespacesProjectsFlowsDeletePayload';
1689
+ /** A unique identifier for the client performing the mutation. */
1690
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1691
+ /** Errors encountered during execution of the mutation. */
1692
+ errors?: Maybe<Array<Error>>;
1693
+ /** The deleted flow. */
1694
+ flow?: Maybe<Flow>;
1695
+ }
1696
+
1697
+ /** Autogenerated input type of NamespacesProjectsUpdate */
1698
+ export interface NamespacesProjectsUpdateInput {
1699
+ /** A unique identifier for the client performing the mutation. */
1700
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1701
+ /** Description for the updated project. */
1702
+ description?: InputMaybe<Scalars['String']['input']>;
1703
+ /** Name for the updated project. */
1704
+ name?: InputMaybe<Scalars['String']['input']>;
1705
+ /** The id of the namespace project which will be updated */
1706
+ namespaceProjectId: Scalars['NamespaceProjectID']['input'];
1707
+ /** The primary runtime for the updated project. */
1708
+ primaryRuntimeId?: InputMaybe<Scalars['RuntimeID']['input']>;
1709
+ }
1710
+
1711
+ /** Autogenerated return type of NamespacesProjectsUpdate. */
1712
+ export interface NamespacesProjectsUpdatePayload {
1713
+ __typename?: 'NamespacesProjectsUpdatePayload';
1714
+ /** A unique identifier for the client performing the mutation. */
1715
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1716
+ /** Errors encountered during execution of the mutation. */
1717
+ errors?: Maybe<Array<Error>>;
1718
+ /** The updated project. */
1719
+ namespaceProject?: Maybe<NamespaceProject>;
1720
+ }
1721
+
1722
+ /** Autogenerated input type of NamespacesRolesAssignAbilities */
1723
+ export interface NamespacesRolesAssignAbilitiesInput {
1724
+ /** The abilities that should be granted to the ability */
1725
+ abilities: Array<NamespaceRoleAbility>;
1726
+ /** A unique identifier for the client performing the mutation. */
1727
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1728
+ /** The id of the role which should be granted the abilities */
1729
+ roleId: Scalars['NamespaceRoleID']['input'];
1730
+ }
1731
+
1732
+ /** Autogenerated return type of NamespacesRolesAssignAbilities. */
1733
+ export interface NamespacesRolesAssignAbilitiesPayload {
1734
+ __typename?: 'NamespacesRolesAssignAbilitiesPayload';
1735
+ /** The now granted abilities */
1736
+ abilities?: Maybe<Array<NamespaceRoleAbility>>;
1737
+ /** A unique identifier for the client performing the mutation. */
1738
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1739
+ /** Errors encountered during execution of the mutation. */
1740
+ errors?: Maybe<Array<Error>>;
1741
+ }
1742
+
1743
+ /** Autogenerated input type of NamespacesRolesAssignProjects */
1744
+ export interface NamespacesRolesAssignProjectsInput {
1745
+ /** A unique identifier for the client performing the mutation. */
1746
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1747
+ /** The projects that should be assigned to the role */
1748
+ projectIds: Array<Scalars['NamespaceProjectID']['input']>;
1749
+ /** The id of the role which should be assigned to projects */
1750
+ roleId: Scalars['NamespaceRoleID']['input'];
1751
+ }
1752
+
1753
+ /** Autogenerated return type of NamespacesRolesAssignProjects. */
1754
+ export interface NamespacesRolesAssignProjectsPayload {
1755
+ __typename?: 'NamespacesRolesAssignProjectsPayload';
1756
+ /** A unique identifier for the client performing the mutation. */
1757
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1758
+ /** Errors encountered during execution of the mutation. */
1759
+ errors?: Maybe<Array<Error>>;
1760
+ /** The now assigned projects */
1761
+ projects?: Maybe<Array<NamespaceProject>>;
1762
+ }
1763
+
1764
+ /** Autogenerated input type of NamespacesRolesCreate */
1765
+ export interface NamespacesRolesCreateInput {
1766
+ /** A unique identifier for the client performing the mutation. */
1767
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1768
+ /** The name for the new role */
1769
+ name: Scalars['String']['input'];
1770
+ /** The id of the namespace which this role will belong to */
1771
+ namespaceId: Scalars['NamespaceID']['input'];
1772
+ }
1773
+
1774
+ /** Autogenerated return type of NamespacesRolesCreate. */
1775
+ export interface NamespacesRolesCreatePayload {
1776
+ __typename?: 'NamespacesRolesCreatePayload';
1777
+ /** A unique identifier for the client performing the mutation. */
1778
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1779
+ /** Errors encountered during execution of the mutation. */
1780
+ errors?: Maybe<Array<Error>>;
1781
+ /** The newly created namespace role */
1782
+ namespaceRole?: Maybe<NamespaceRole>;
1783
+ }
1784
+
1785
+ /** Autogenerated input type of NamespacesRolesDelete */
1786
+ export interface NamespacesRolesDeleteInput {
1787
+ /** A unique identifier for the client performing the mutation. */
1788
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1789
+ /** The id of the namespace role which will be deleted */
1790
+ namespaceRoleId: Scalars['NamespaceRoleID']['input'];
1791
+ }
1792
+
1793
+ /** Autogenerated return type of NamespacesRolesDelete. */
1794
+ export interface NamespacesRolesDeletePayload {
1795
+ __typename?: 'NamespacesRolesDeletePayload';
1796
+ /** A unique identifier for the client performing the mutation. */
1797
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1798
+ /** Errors encountered during execution of the mutation. */
1799
+ errors?: Maybe<Array<Error>>;
1800
+ /** The deleted namespace role */
1801
+ namespaceRole?: Maybe<NamespaceRole>;
1802
+ }
1803
+
1804
+ /** Autogenerated input type of NamespacesRolesUpdate */
1805
+ export interface NamespacesRolesUpdateInput {
1806
+ /** A unique identifier for the client performing the mutation. */
1807
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1808
+ /** Name for the namespace role. */
1809
+ name: Scalars['String']['input'];
1810
+ /** ID of the namespace role to update. */
1811
+ namespaceRoleId: Scalars['NamespaceRoleID']['input'];
1812
+ }
1813
+
1814
+ /** Autogenerated return type of NamespacesRolesUpdate. */
1815
+ export interface NamespacesRolesUpdatePayload {
1816
+ __typename?: 'NamespacesRolesUpdatePayload';
1817
+ /** A unique identifier for the client performing the mutation. */
1818
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1819
+ /** Errors encountered during execution of the mutation. */
1820
+ errors?: Maybe<Array<Error>>;
1821
+ /** The updated namespace role. */
1822
+ namespaceRole?: Maybe<NamespaceRole>;
1823
+ }
1824
+
1825
+ /** An object with an ID. */
1826
+ export interface Node {
1827
+ /** ID of the object. */
1828
+ id?: Maybe<Scalars['ID']['output']>;
1829
+ }
1830
+
1831
+ /** Represents a Node Function */
1832
+ export interface NodeFunction {
1833
+ __typename?: 'NodeFunction';
1834
+ /** Time when this NodeFunction was created */
1835
+ createdAt?: Maybe<Scalars['Time']['output']>;
1836
+ /** The definition of the Node Function */
1837
+ functionDefinition?: Maybe<FunctionDefinition>;
1838
+ /** Global ID of this NodeFunction */
1839
+ id?: Maybe<Scalars['NodeFunctionID']['output']>;
1840
+ /** The ID of the next Node Function in the flow */
1841
+ nextNodeId?: Maybe<Scalars['NodeFunctionID']['output']>;
1842
+ /** The parameters of the Node Function */
1843
+ parameters?: Maybe<NodeParameterConnection>;
1844
+ /** Time when this NodeFunction was last updated */
1845
+ updatedAt?: Maybe<Scalars['Time']['output']>;
1846
+ }
1847
+
1848
+
1849
+ /** Represents a Node Function */
1850
+ export interface NodeFunctionParametersArgs {
1851
+ after?: InputMaybe<Scalars['String']['input']>;
1852
+ before?: InputMaybe<Scalars['String']['input']>;
1853
+ first?: InputMaybe<Scalars['Int']['input']>;
1854
+ last?: InputMaybe<Scalars['Int']['input']>;
1855
+ }
1856
+
1857
+ /** The connection type for NodeFunction. */
1858
+ export interface NodeFunctionConnection {
1859
+ __typename?: 'NodeFunctionConnection';
1860
+ /** Total count of collection. */
1861
+ count?: Maybe<Scalars['Int']['output']>;
1862
+ /** A list of edges. */
1863
+ edges?: Maybe<Array<Maybe<NodeFunctionEdge>>>;
1864
+ /** A list of nodes. */
1865
+ nodes?: Maybe<Array<Maybe<NodeFunction>>>;
1866
+ /** Information to aid in pagination. */
1867
+ pageInfo?: Maybe<PageInfo>;
1868
+ }
1869
+
1870
+ /** An edge in a connection. */
1871
+ export interface NodeFunctionEdge {
1872
+ __typename?: 'NodeFunctionEdge';
1873
+ /** A cursor for use in pagination. */
1874
+ cursor?: Maybe<Scalars['String']['output']>;
1875
+ /** The item at the end of the edge. */
1876
+ node?: Maybe<NodeFunction>;
1877
+ }
1878
+
1879
+ /** Input type for a Node Function */
1880
+ export interface NodeFunctionInput {
1881
+ /** The next Node Function in the flow */
1882
+ nextNode?: InputMaybe<NodeFunctionInput>;
1883
+ /** The parameters of the Node Function */
1884
+ parameters: Array<NodeParameterInput>;
1885
+ /** The identifier of the Runtime Function Definition */
1886
+ runtimeFunctionId: Scalars['RuntimeFunctionDefinitionID']['input'];
1887
+ }
1888
+
1889
+ /** Represents a Node parameter */
1890
+ export interface NodeParameter {
1891
+ __typename?: 'NodeParameter';
1892
+ /** Time when this NodeParameter was created */
1893
+ createdAt?: Maybe<Scalars['Time']['output']>;
1894
+ /** Global ID of this NodeParameter */
1895
+ id?: Maybe<Scalars['NodeParameterID']['output']>;
1896
+ /** The definition of the parameter */
1897
+ runtimeParameter?: Maybe<RuntimeParameterDefinition>;
1898
+ /** Time when this NodeParameter was last updated */
1899
+ updatedAt?: Maybe<Scalars['Time']['output']>;
1900
+ /** The value of the parameter */
1901
+ value?: Maybe<NodeParameterValue>;
1902
+ }
1903
+
1904
+ /** The connection type for NodeParameter. */
1905
+ export interface NodeParameterConnection {
1906
+ __typename?: 'NodeParameterConnection';
1907
+ /** Total count of collection. */
1908
+ count?: Maybe<Scalars['Int']['output']>;
1909
+ /** A list of edges. */
1910
+ edges?: Maybe<Array<Maybe<NodeParameterEdge>>>;
1911
+ /** A list of nodes. */
1912
+ nodes?: Maybe<Array<Maybe<NodeParameter>>>;
1913
+ /** Information to aid in pagination. */
1914
+ pageInfo?: Maybe<PageInfo>;
1915
+ }
1916
+
1917
+ /** An edge in a connection. */
1918
+ export interface NodeParameterEdge {
1919
+ __typename?: 'NodeParameterEdge';
1920
+ /** A cursor for use in pagination. */
1921
+ cursor?: Maybe<Scalars['String']['output']>;
1922
+ /** The item at the end of the edge. */
1923
+ node?: Maybe<NodeParameter>;
1924
+ }
1925
+
1926
+ /** Input type for Node parameter */
1927
+ export interface NodeParameterInput {
1928
+ /** The identifier of the Runtime Parameter Definition */
1929
+ runtimeParameterDefinitionId: Scalars['RuntimeParameterDefinitionID']['input'];
1930
+ /** The value of the parameter */
1931
+ value?: InputMaybe<NodeParameterValueInput>;
1932
+ }
1933
+
1934
+ /** Represents a parameter value for a node. */
1935
+ export type NodeParameterValue = LiteralValue | NodeFunction | ReferenceValue;
1936
+
1937
+ /** Input type for parameter value */
1938
+ export interface NodeParameterValueInput {
1939
+ /** The function value of the parameter */
1940
+ functionValue?: InputMaybe<NodeFunctionInput>;
1941
+ /** The literal value of the parameter */
1942
+ literalValue?: InputMaybe<Scalars['JSON']['input']>;
1943
+ /** The reference value of the parameter */
1944
+ referenceValue?: InputMaybe<ReferenceValueInput>;
1945
+ }
1946
+
1947
+ /** Represents a Organization */
1948
+ export interface Organization {
1949
+ __typename?: 'Organization';
1950
+ /** Time when this Organization was created */
1951
+ createdAt?: Maybe<Scalars['Time']['output']>;
1952
+ /** Global ID of this Organization */
1953
+ id?: Maybe<Scalars['OrganizationID']['output']>;
1954
+ /** Name of the organization */
1955
+ name?: Maybe<Scalars['String']['output']>;
1956
+ /** Namespace of this organization */
1957
+ namespace?: Maybe<Namespace>;
1958
+ /** Time when this Organization was last updated */
1959
+ updatedAt?: Maybe<Scalars['Time']['output']>;
1960
+ }
1961
+
1962
+ /** Autogenerated input type of OrganizationsCreate */
1963
+ export interface OrganizationsCreateInput {
1964
+ /** A unique identifier for the client performing the mutation. */
1965
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1966
+ /** Name for the new organization. */
1967
+ name: Scalars['String']['input'];
1968
+ }
1969
+
1970
+ /** Autogenerated return type of OrganizationsCreate. */
1971
+ export interface OrganizationsCreatePayload {
1972
+ __typename?: 'OrganizationsCreatePayload';
1973
+ /** A unique identifier for the client performing the mutation. */
1974
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1975
+ /** Errors encountered during execution of the mutation. */
1976
+ errors?: Maybe<Array<Error>>;
1977
+ /** The newly created organization. */
1978
+ organization?: Maybe<Organization>;
1979
+ }
1980
+
1981
+ /** Autogenerated input type of OrganizationsDelete */
1982
+ export interface OrganizationsDeleteInput {
1983
+ /** A unique identifier for the client performing the mutation. */
1984
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
1985
+ /** The organization to delete. */
1986
+ organizationId: Scalars['OrganizationID']['input'];
1987
+ }
1988
+
1989
+ /** Autogenerated return type of OrganizationsDelete. */
1990
+ export interface OrganizationsDeletePayload {
1991
+ __typename?: 'OrganizationsDeletePayload';
1992
+ /** A unique identifier for the client performing the mutation. */
1993
+ clientMutationId?: Maybe<Scalars['String']['output']>;
1994
+ /** Errors encountered during execution of the mutation. */
1995
+ errors?: Maybe<Array<Error>>;
1996
+ /** The deleted organization. */
1997
+ organization?: Maybe<Organization>;
1998
+ }
1999
+
2000
+ /** Autogenerated input type of OrganizationsUpdate */
2001
+ export interface OrganizationsUpdateInput {
2002
+ /** A unique identifier for the client performing the mutation. */
2003
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2004
+ /** Name for the new organization. */
2005
+ name: Scalars['String']['input'];
2006
+ /** ID of the organization to update. */
2007
+ organizationId: Scalars['OrganizationID']['input'];
2008
+ }
2009
+
2010
+ /** Autogenerated return type of OrganizationsUpdate. */
2011
+ export interface OrganizationsUpdatePayload {
2012
+ __typename?: 'OrganizationsUpdatePayload';
2013
+ /** A unique identifier for the client performing the mutation. */
2014
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2015
+ /** Errors encountered during execution of the mutation. */
2016
+ errors?: Maybe<Array<Error>>;
2017
+ /** The updated organization. */
2018
+ organization?: Maybe<Organization>;
2019
+ }
2020
+
2021
+ /** Information about pagination in a connection. */
2022
+ export interface PageInfo {
2023
+ __typename?: 'PageInfo';
2024
+ /** When paginating forwards, the cursor to continue. */
2025
+ endCursor?: Maybe<Scalars['String']['output']>;
2026
+ /** When paginating forwards, are there more items? */
2027
+ hasNextPage?: Maybe<Scalars['Boolean']['output']>;
2028
+ /** When paginating backwards, are there more items? */
2029
+ hasPreviousPage?: Maybe<Scalars['Boolean']['output']>;
2030
+ /** When paginating backwards, the cursor to continue. */
2031
+ startCursor?: Maybe<Scalars['String']['output']>;
2032
+ }
2033
+
2034
+ /** Represents a parameter definition */
2035
+ export interface ParameterDefinition {
2036
+ __typename?: 'ParameterDefinition';
2037
+ /** Time when this ParameterDefinition was created */
2038
+ createdAt?: Maybe<Scalars['Time']['output']>;
2039
+ /** Data type of the parameter */
2040
+ dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
2041
+ /** Description of the parameter */
2042
+ descriptions?: Maybe<TranslationConnection>;
2043
+ /** Documentation of the parameter */
2044
+ documentations?: Maybe<TranslationConnection>;
2045
+ /** Global ID of this ParameterDefinition */
2046
+ id?: Maybe<Scalars['ParameterDefinitionID']['output']>;
2047
+ /** Identifier of the parameter */
2048
+ identifier?: Maybe<Scalars['String']['output']>;
2049
+ /** Name of the parameter */
2050
+ names?: Maybe<TranslationConnection>;
2051
+ /** Time when this ParameterDefinition was last updated */
2052
+ updatedAt?: Maybe<Scalars['Time']['output']>;
2053
+ }
2054
+
2055
+
2056
+ /** Represents a parameter definition */
2057
+ export interface ParameterDefinitionDescriptionsArgs {
2058
+ after?: InputMaybe<Scalars['String']['input']>;
2059
+ before?: InputMaybe<Scalars['String']['input']>;
2060
+ first?: InputMaybe<Scalars['Int']['input']>;
2061
+ last?: InputMaybe<Scalars['Int']['input']>;
2062
+ }
2063
+
2064
+
2065
+ /** Represents a parameter definition */
2066
+ export interface ParameterDefinitionDocumentationsArgs {
2067
+ after?: InputMaybe<Scalars['String']['input']>;
2068
+ before?: InputMaybe<Scalars['String']['input']>;
2069
+ first?: InputMaybe<Scalars['Int']['input']>;
2070
+ last?: InputMaybe<Scalars['Int']['input']>;
2071
+ }
2072
+
2073
+
2074
+ /** Represents a parameter definition */
2075
+ export interface ParameterDefinitionNamesArgs {
2076
+ after?: InputMaybe<Scalars['String']['input']>;
2077
+ before?: InputMaybe<Scalars['String']['input']>;
2078
+ first?: InputMaybe<Scalars['Int']['input']>;
2079
+ last?: InputMaybe<Scalars['Int']['input']>;
2080
+ }
2081
+
2082
+ /** The connection type for ParameterDefinition. */
2083
+ export interface ParameterDefinitionConnection {
2084
+ __typename?: 'ParameterDefinitionConnection';
2085
+ /** Total count of collection. */
2086
+ count?: Maybe<Scalars['Int']['output']>;
2087
+ /** A list of edges. */
2088
+ edges?: Maybe<Array<Maybe<ParameterDefinitionEdge>>>;
2089
+ /** A list of nodes. */
2090
+ nodes?: Maybe<Array<Maybe<ParameterDefinition>>>;
2091
+ /** Information to aid in pagination. */
2092
+ pageInfo?: Maybe<PageInfo>;
2093
+ }
2094
+
2095
+ /** An edge in a connection. */
2096
+ export interface ParameterDefinitionEdge {
2097
+ __typename?: 'ParameterDefinitionEdge';
2098
+ /** A cursor for use in pagination. */
2099
+ cursor?: Maybe<Scalars['String']['output']>;
2100
+ /** The item at the end of the edge. */
2101
+ node?: Maybe<ParameterDefinition>;
2102
+ }
2103
+
2104
+ /** Root Query type */
2105
+ export interface Query {
2106
+ __typename?: 'Query';
2107
+ /** Get global application settings */
2108
+ applicationSettings?: Maybe<ApplicationSettings>;
2109
+ /** Get the currently logged in authentication */
2110
+ currentAuthentication?: Maybe<Authentication>;
2111
+ /** Get the currently logged in user */
2112
+ currentUser?: Maybe<User>;
2113
+ /** Field available for use to test API access */
2114
+ echo?: Maybe<Scalars['String']['output']>;
2115
+ /** Find runtimes */
2116
+ globalRuntimes?: Maybe<RuntimeConnection>;
2117
+ /** Find a namespace */
2118
+ namespace?: Maybe<Namespace>;
2119
+ /** Fetches an object given its ID */
2120
+ node?: Maybe<Node>;
2121
+ /** Fetches a list of objects given a list of IDs */
2122
+ nodes?: Maybe<Array<Maybe<Node>>>;
2123
+ /** Find a organization */
2124
+ organization?: Maybe<Organization>;
2125
+ /** Find users */
2126
+ users?: Maybe<UserConnection>;
2127
+ }
2128
+
2129
+
2130
+ /** Root Query type */
2131
+ export interface QueryEchoArgs {
2132
+ message: Scalars['String']['input'];
2133
+ }
2134
+
2135
+
2136
+ /** Root Query type */
2137
+ export interface QueryGlobalRuntimesArgs {
2138
+ after?: InputMaybe<Scalars['String']['input']>;
2139
+ before?: InputMaybe<Scalars['String']['input']>;
2140
+ first?: InputMaybe<Scalars['Int']['input']>;
2141
+ last?: InputMaybe<Scalars['Int']['input']>;
2142
+ }
2143
+
2144
+
2145
+ /** Root Query type */
2146
+ export interface QueryNamespaceArgs {
2147
+ id: Scalars['NamespaceID']['input'];
2148
+ }
2149
+
2150
+
2151
+ /** Root Query type */
2152
+ export interface QueryNodeArgs {
2153
+ id: Scalars['ID']['input'];
2154
+ }
2155
+
2156
+
2157
+ /** Root Query type */
2158
+ export interface QueryNodesArgs {
2159
+ ids: Array<Scalars['ID']['input']>;
2160
+ }
2161
+
2162
+
2163
+ /** Root Query type */
2164
+ export interface QueryOrganizationArgs {
2165
+ id?: InputMaybe<Scalars['OrganizationID']['input']>;
2166
+ name?: InputMaybe<Scalars['String']['input']>;
2167
+ }
2168
+
2169
+
2170
+ /** Root Query type */
2171
+ export interface QueryUsersArgs {
2172
+ after?: InputMaybe<Scalars['String']['input']>;
2173
+ before?: InputMaybe<Scalars['String']['input']>;
2174
+ first?: InputMaybe<Scalars['Int']['input']>;
2175
+ last?: InputMaybe<Scalars['Int']['input']>;
2176
+ }
2177
+
2178
+ /** Represents a reference path in a flow */
2179
+ export interface ReferencePath {
2180
+ __typename?: 'ReferencePath';
2181
+ /** The array index of the referenced data by the path */
2182
+ arrayIndex?: Maybe<Scalars['Int']['output']>;
2183
+ /** Time when this ReferencePath was created */
2184
+ createdAt?: Maybe<Scalars['Time']['output']>;
2185
+ /** Global ID of this ReferencePath */
2186
+ id?: Maybe<Scalars['ReferencePathID']['output']>;
2187
+ /** The path to the reference in the flow */
2188
+ path?: Maybe<Scalars['String']['output']>;
2189
+ /** Time when this ReferencePath was last updated */
2190
+ updatedAt?: Maybe<Scalars['Time']['output']>;
2191
+ }
2192
+
2193
+ /** Input type for reference path */
2194
+ export interface ReferencePathInput {
2195
+ /** Array index if applicable */
2196
+ arrayIndex?: InputMaybe<Scalars['Int']['input']>;
2197
+ /** The path to the reference in the flow */
2198
+ path?: InputMaybe<Scalars['String']['input']>;
2199
+ }
2200
+
2201
+ /** Represents a reference value in the system. */
2202
+ export interface ReferenceValue {
2203
+ __typename?: 'ReferenceValue';
2204
+ /** Time when this ReferenceValue was created */
2205
+ createdAt?: Maybe<Scalars['Time']['output']>;
2206
+ /** The identifier of the data type this reference value belongs to. */
2207
+ dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
2208
+ /** The depth of the reference value. */
2209
+ depth?: Maybe<Scalars['Int']['output']>;
2210
+ /** Global ID of this ReferenceValue */
2211
+ id?: Maybe<Scalars['ReferenceValueID']['output']>;
2212
+ /** The node of the reference value. */
2213
+ node?: Maybe<Scalars['Int']['output']>;
2214
+ /** The paths associated with this reference value. */
2215
+ referencePath?: Maybe<Array<ReferencePath>>;
2216
+ /** The scope of the reference value. */
2217
+ scope?: Maybe<Array<Scalars['Int']['output']>>;
2218
+ /** Time when this ReferenceValue was last updated */
2219
+ updatedAt?: Maybe<Scalars['Time']['output']>;
2220
+ }
2221
+
2222
+ /** Input type for reference value */
2223
+ export interface ReferenceValueInput {
2224
+ /** The identifier of the data type this reference value belongs to */
2225
+ dataTypeIdentifier: DataTypeIdentifierInput;
2226
+ /** The primary level of the reference value */
2227
+ primaryLevel: Scalars['Int']['input'];
2228
+ /** The paths associated with this reference value */
2229
+ referencePath: Array<ReferencePathInput>;
2230
+ /** The secondary level of the reference value */
2231
+ secondaryLevel: Scalars['Int']['input'];
2232
+ /** The tertiary level of the reference value */
2233
+ tertiaryLevel?: InputMaybe<Scalars['Int']['input']>;
2234
+ }
2235
+
2236
+ /** Represents a runtime */
2237
+ export interface Runtime {
2238
+ __typename?: 'Runtime';
2239
+ /** Time when this Runtime was created */
2240
+ createdAt?: Maybe<Scalars['Time']['output']>;
2241
+ /** DataTypes of the runtime */
2242
+ dataTypes?: Maybe<DataTypeConnection>;
2243
+ /** The description for the runtime if present */
2244
+ description?: Maybe<Scalars['String']['output']>;
2245
+ /** FlowTypes of the runtime */
2246
+ flowTypes?: Maybe<FlowTypeConnection>;
2247
+ /** Global ID of this Runtime */
2248
+ id?: Maybe<Scalars['RuntimeID']['output']>;
2249
+ /** The name for the runtime */
2250
+ name?: Maybe<Scalars['String']['output']>;
2251
+ /** The parent namespace for the runtime */
2252
+ namespace?: Maybe<Namespace>;
2253
+ /** Projects associated with the runtime */
2254
+ projects?: Maybe<NamespaceProjectConnection>;
2255
+ /** The status of the runtime */
2256
+ status?: Maybe<RuntimeStatusType>;
2257
+ /** Token belonging to the runtime, only present on creation */
2258
+ token?: Maybe<Scalars['String']['output']>;
2259
+ /** Time when this Runtime was last updated */
2260
+ updatedAt?: Maybe<Scalars['Time']['output']>;
2261
+ }
2262
+
2263
+
2264
+ /** Represents a runtime */
2265
+ export interface RuntimeDataTypesArgs {
2266
+ after?: InputMaybe<Scalars['String']['input']>;
2267
+ before?: InputMaybe<Scalars['String']['input']>;
2268
+ first?: InputMaybe<Scalars['Int']['input']>;
2269
+ last?: InputMaybe<Scalars['Int']['input']>;
2270
+ }
2271
+
2272
+
2273
+ /** Represents a runtime */
2274
+ export interface RuntimeFlowTypesArgs {
2275
+ after?: InputMaybe<Scalars['String']['input']>;
2276
+ before?: InputMaybe<Scalars['String']['input']>;
2277
+ first?: InputMaybe<Scalars['Int']['input']>;
2278
+ last?: InputMaybe<Scalars['Int']['input']>;
2279
+ }
2280
+
2281
+
2282
+ /** Represents a runtime */
2283
+ export interface RuntimeProjectsArgs {
2284
+ after?: InputMaybe<Scalars['String']['input']>;
2285
+ before?: InputMaybe<Scalars['String']['input']>;
2286
+ first?: InputMaybe<Scalars['Int']['input']>;
2287
+ last?: InputMaybe<Scalars['Int']['input']>;
2288
+ }
2289
+
2290
+ /** The connection type for Runtime. */
2291
+ export interface RuntimeConnection {
2292
+ __typename?: 'RuntimeConnection';
2293
+ /** Total count of collection. */
2294
+ count?: Maybe<Scalars['Int']['output']>;
2295
+ /** A list of edges. */
2296
+ edges?: Maybe<Array<Maybe<RuntimeEdge>>>;
2297
+ /** A list of nodes. */
2298
+ nodes?: Maybe<Array<Maybe<Runtime>>>;
2299
+ /** Information to aid in pagination. */
2300
+ pageInfo?: Maybe<PageInfo>;
2301
+ }
2302
+
2303
+ /** An edge in a connection. */
2304
+ export interface RuntimeEdge {
2305
+ __typename?: 'RuntimeEdge';
2306
+ /** A cursor for use in pagination. */
2307
+ cursor?: Maybe<Scalars['String']['output']>;
2308
+ /** The item at the end of the edge. */
2309
+ node?: Maybe<Runtime>;
2310
+ }
2311
+
2312
+ /** Represents a runtime function definition */
2313
+ export interface RuntimeFunctionDefinition {
2314
+ __typename?: 'RuntimeFunctionDefinition';
2315
+ /** Time when this RuntimeFunctionDefinition was created */
2316
+ createdAt?: Maybe<Scalars['Time']['output']>;
2317
+ /** Function definitions of the runtime function definition */
2318
+ functionDefinitions?: Maybe<FunctionDefinitionConnection>;
2319
+ /** Global ID of this RuntimeFunctionDefinition */
2320
+ id?: Maybe<Scalars['RuntimeFunctionDefinitionID']['output']>;
2321
+ /** Identifier of the runtime function definition */
2322
+ identifier?: Maybe<Scalars['String']['output']>;
2323
+ /** The runtime this runtime function definition belongs to */
2324
+ runtime?: Maybe<Runtime>;
2325
+ /** Parameter definitions of the runtime function definition */
2326
+ runtimeParameterDefinitions?: Maybe<RuntimeParameterDefinitionConnection>;
2327
+ /** Time when this RuntimeFunctionDefinition was last updated */
2328
+ updatedAt?: Maybe<Scalars['Time']['output']>;
2329
+ }
2330
+
2331
+
2332
+ /** Represents a runtime function definition */
2333
+ export interface RuntimeFunctionDefinitionFunctionDefinitionsArgs {
2334
+ after?: InputMaybe<Scalars['String']['input']>;
2335
+ before?: InputMaybe<Scalars['String']['input']>;
2336
+ first?: InputMaybe<Scalars['Int']['input']>;
2337
+ last?: InputMaybe<Scalars['Int']['input']>;
2338
+ }
2339
+
2340
+
2341
+ /** Represents a runtime function definition */
2342
+ export interface RuntimeFunctionDefinitionRuntimeParameterDefinitionsArgs {
2343
+ after?: InputMaybe<Scalars['String']['input']>;
2344
+ before?: InputMaybe<Scalars['String']['input']>;
2345
+ first?: InputMaybe<Scalars['Int']['input']>;
2346
+ last?: InputMaybe<Scalars['Int']['input']>;
2347
+ }
2348
+
2349
+ /** Represents a runtime parameter definition */
2350
+ export interface RuntimeParameterDefinition {
2351
+ __typename?: 'RuntimeParameterDefinition';
2352
+ /** Time when this RuntimeParameterDefinition was created */
2353
+ createdAt?: Maybe<Scalars['Time']['output']>;
2354
+ /** Global ID of this RuntimeParameterDefinition */
2355
+ id?: Maybe<Scalars['RuntimeParameterDefinitionID']['output']>;
2356
+ /** Time when this RuntimeParameterDefinition was last updated */
2357
+ updatedAt?: Maybe<Scalars['Time']['output']>;
2358
+ }
2359
+
2360
+ /** The connection type for RuntimeParameterDefinition. */
2361
+ export interface RuntimeParameterDefinitionConnection {
2362
+ __typename?: 'RuntimeParameterDefinitionConnection';
2363
+ /** Total count of collection. */
2364
+ count?: Maybe<Scalars['Int']['output']>;
2365
+ /** A list of edges. */
2366
+ edges?: Maybe<Array<Maybe<RuntimeParameterDefinitionEdge>>>;
2367
+ /** A list of nodes. */
2368
+ nodes?: Maybe<Array<Maybe<RuntimeParameterDefinition>>>;
2369
+ /** Information to aid in pagination. */
2370
+ pageInfo?: Maybe<PageInfo>;
2371
+ }
2372
+
2373
+ /** An edge in a connection. */
2374
+ export interface RuntimeParameterDefinitionEdge {
2375
+ __typename?: 'RuntimeParameterDefinitionEdge';
2376
+ /** A cursor for use in pagination. */
2377
+ cursor?: Maybe<Scalars['String']['output']>;
2378
+ /** The item at the end of the edge. */
2379
+ node?: Maybe<RuntimeParameterDefinition>;
2380
+ }
2381
+
2382
+ /** Represent all available types of statuses of a runtime */
2383
+ export const enum RuntimeStatusType {
2384
+ /** No problem with connection, everything works as expected */
2385
+ Connected = 'CONNECTED',
2386
+ /** The runtime is disconnected, cause unknown */
2387
+ Disconnected = 'DISCONNECTED'
2388
+ }
2389
+
2390
+ /** Autogenerated input type of RuntimesCreate */
2391
+ export interface RuntimesCreateInput {
2392
+ /** A unique identifier for the client performing the mutation. */
2393
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2394
+ /** The description for the new runtime. */
2395
+ description?: InputMaybe<Scalars['String']['input']>;
2396
+ /** Name for the new runtime. */
2397
+ name: Scalars['String']['input'];
2398
+ /** The Parent Id for the runtime. */
2399
+ namespaceId?: InputMaybe<Scalars['NamespaceID']['input']>;
2400
+ }
2401
+
2402
+ /** Autogenerated return type of RuntimesCreate. */
2403
+ export interface RuntimesCreatePayload {
2404
+ __typename?: 'RuntimesCreatePayload';
2405
+ /** A unique identifier for the client performing the mutation. */
2406
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2407
+ /** Errors encountered during execution of the mutation. */
2408
+ errors?: Maybe<Array<Error>>;
2409
+ /** The newly created runtime. */
2410
+ runtime?: Maybe<Runtime>;
2411
+ }
2412
+
2413
+ /** Autogenerated input type of RuntimesDelete */
2414
+ export interface RuntimesDeleteInput {
2415
+ /** A unique identifier for the client performing the mutation. */
2416
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2417
+ /** The runtime to delete. */
2418
+ runtimeId: Scalars['RuntimeID']['input'];
2419
+ }
2420
+
2421
+ /** Autogenerated return type of RuntimesDelete. */
2422
+ export interface RuntimesDeletePayload {
2423
+ __typename?: 'RuntimesDeletePayload';
2424
+ /** A unique identifier for the client performing the mutation. */
2425
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2426
+ /** Errors encountered during execution of the mutation. */
2427
+ errors?: Maybe<Array<Error>>;
2428
+ /** The updated organization. */
2429
+ runtime?: Maybe<Runtime>;
2430
+ }
2431
+
2432
+ /** Autogenerated input type of RuntimesRotateToken */
2433
+ export interface RuntimesRotateTokenInput {
2434
+ /** A unique identifier for the client performing the mutation. */
2435
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2436
+ /** The runtime to rotate the token. */
2437
+ runtimeId: Scalars['RuntimeID']['input'];
2438
+ }
2439
+
2440
+ /** Autogenerated return type of RuntimesRotateToken. */
2441
+ export interface RuntimesRotateTokenPayload {
2442
+ __typename?: 'RuntimesRotateTokenPayload';
2443
+ /** A unique identifier for the client performing the mutation. */
2444
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2445
+ /** Errors encountered during execution of the mutation. */
2446
+ errors?: Maybe<Array<Error>>;
2447
+ /** The updated runtime. */
2448
+ runtime?: Maybe<Runtime>;
2449
+ }
2450
+
2451
+ /** Autogenerated input type of RuntimesUpdate */
2452
+ export interface RuntimesUpdateInput {
2453
+ /** A unique identifier for the client performing the mutation. */
2454
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2455
+ /** Description for the new runtime. */
2456
+ description?: InputMaybe<Scalars['String']['input']>;
2457
+ /** Name for the new runtime. */
2458
+ name?: InputMaybe<Scalars['String']['input']>;
2459
+ /** ID of the runtime to update. */
2460
+ runtimeId: Scalars['RuntimeID']['input'];
2461
+ }
2462
+
2463
+ /** Autogenerated return type of RuntimesUpdate. */
2464
+ export interface RuntimesUpdatePayload {
2465
+ __typename?: 'RuntimesUpdatePayload';
2466
+ /** A unique identifier for the client performing the mutation. */
2467
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2468
+ /** Errors encountered during execution of the mutation. */
2469
+ errors?: Maybe<Array<Error>>;
2470
+ /** The updated runtime. */
2471
+ runtime?: Maybe<Runtime>;
2472
+ }
2473
+
2474
+ /** Represents a translation */
2475
+ export interface Translation {
2476
+ __typename?: 'Translation';
2477
+ /** Code of the translation */
2478
+ code?: Maybe<Scalars['String']['output']>;
2479
+ /** Content of the translation */
2480
+ content?: Maybe<Scalars['String']['output']>;
2481
+ }
2482
+
2483
+ /** The connection type for Translation. */
2484
+ export interface TranslationConnection {
2485
+ __typename?: 'TranslationConnection';
2486
+ /** Total count of collection. */
2487
+ count?: Maybe<Scalars['Int']['output']>;
2488
+ /** A list of edges. */
2489
+ edges?: Maybe<Array<Maybe<TranslationEdge>>>;
2490
+ /** A list of nodes. */
2491
+ nodes?: Maybe<Array<Maybe<Translation>>>;
2492
+ /** Information to aid in pagination. */
2493
+ pageInfo?: Maybe<PageInfo>;
2494
+ }
2495
+
2496
+ /** An edge in a connection. */
2497
+ export interface TranslationEdge {
2498
+ __typename?: 'TranslationEdge';
2499
+ /** A cursor for use in pagination. */
2500
+ cursor?: Maybe<Scalars['String']['output']>;
2501
+ /** The item at the end of the edge. */
2502
+ node?: Maybe<Translation>;
2503
+ }
2504
+
2505
+ /** Represents a user */
2506
+ export interface User {
2507
+ __typename?: 'User';
2508
+ /** Global admin status of the user */
2509
+ admin?: Maybe<Scalars['Boolean']['output']>;
2510
+ /** The avatar if present of the user */
2511
+ avatarPath?: Maybe<Scalars['String']['output']>;
2512
+ /** Time when this User was created */
2513
+ createdAt?: Maybe<Scalars['Time']['output']>;
2514
+ /** Email of the user */
2515
+ email?: Maybe<Scalars['String']['output']>;
2516
+ /** Email verification date of the user if present */
2517
+ emailVerifiedAt?: Maybe<Scalars['Time']['output']>;
2518
+ /** Firstname of the user */
2519
+ firstname?: Maybe<Scalars['String']['output']>;
2520
+ /** Global ID of this User */
2521
+ id?: Maybe<Scalars['UserID']['output']>;
2522
+ /** Identities of this user */
2523
+ identities?: Maybe<UserIdentityConnection>;
2524
+ /** Lastname of the user */
2525
+ lastname?: Maybe<Scalars['String']['output']>;
2526
+ /** Namespace of this user */
2527
+ namespace?: Maybe<Namespace>;
2528
+ /** Namespace Memberships of this user */
2529
+ namespaceMemberships?: Maybe<NamespaceMemberConnection>;
2530
+ /** Sessions of this user */
2531
+ sessions?: Maybe<UserSessionConnection>;
2532
+ /** Time when this User was last updated */
2533
+ updatedAt?: Maybe<Scalars['Time']['output']>;
2534
+ /** Username of the user */
2535
+ username?: Maybe<Scalars['String']['output']>;
2536
+ }
2537
+
2538
+
2539
+ /** Represents a user */
2540
+ export interface UserIdentitiesArgs {
2541
+ after?: InputMaybe<Scalars['String']['input']>;
2542
+ before?: InputMaybe<Scalars['String']['input']>;
2543
+ first?: InputMaybe<Scalars['Int']['input']>;
2544
+ last?: InputMaybe<Scalars['Int']['input']>;
2545
+ }
2546
+
2547
+
2548
+ /** Represents a user */
2549
+ export interface UserNamespaceMembershipsArgs {
2550
+ after?: InputMaybe<Scalars['String']['input']>;
2551
+ before?: InputMaybe<Scalars['String']['input']>;
2552
+ first?: InputMaybe<Scalars['Int']['input']>;
2553
+ last?: InputMaybe<Scalars['Int']['input']>;
2554
+ }
2555
+
2556
+
2557
+ /** Represents a user */
2558
+ export interface UserSessionsArgs {
2559
+ after?: InputMaybe<Scalars['String']['input']>;
2560
+ before?: InputMaybe<Scalars['String']['input']>;
2561
+ first?: InputMaybe<Scalars['Int']['input']>;
2562
+ last?: InputMaybe<Scalars['Int']['input']>;
2563
+ }
2564
+
2565
+ /** The connection type for User. */
2566
+ export interface UserConnection {
2567
+ __typename?: 'UserConnection';
2568
+ /** Total count of collection. */
2569
+ count?: Maybe<Scalars['Int']['output']>;
2570
+ /** A list of edges. */
2571
+ edges?: Maybe<Array<Maybe<UserEdge>>>;
2572
+ /** A list of nodes. */
2573
+ nodes?: Maybe<Array<Maybe<User>>>;
2574
+ /** Information to aid in pagination. */
2575
+ pageInfo?: Maybe<PageInfo>;
2576
+ }
2577
+
2578
+ /** An edge in a connection. */
2579
+ export interface UserEdge {
2580
+ __typename?: 'UserEdge';
2581
+ /** A cursor for use in pagination. */
2582
+ cursor?: Maybe<Scalars['String']['output']>;
2583
+ /** The item at the end of the edge. */
2584
+ node?: Maybe<User>;
2585
+ }
2586
+
2587
+ /** Represents an external user identity */
2588
+ export interface UserIdentity {
2589
+ __typename?: 'UserIdentity';
2590
+ /** Time when this UserIdentity was created */
2591
+ createdAt?: Maybe<Scalars['Time']['output']>;
2592
+ /** Global ID of this UserIdentity */
2593
+ id?: Maybe<Scalars['UserIdentityID']['output']>;
2594
+ /** The description for the runtime if present */
2595
+ identifier?: Maybe<Scalars['String']['output']>;
2596
+ /** The name for the runtime */
2597
+ providerId?: Maybe<Scalars['String']['output']>;
2598
+ /** Time when this UserIdentity was last updated */
2599
+ updatedAt?: Maybe<Scalars['Time']['output']>;
2600
+ /** The correlating user of the identity */
2601
+ user?: Maybe<User>;
2602
+ }
2603
+
2604
+ /** The connection type for UserIdentity. */
2605
+ export interface UserIdentityConnection {
2606
+ __typename?: 'UserIdentityConnection';
2607
+ /** Total count of collection. */
2608
+ count?: Maybe<Scalars['Int']['output']>;
2609
+ /** A list of edges. */
2610
+ edges?: Maybe<Array<Maybe<UserIdentityEdge>>>;
2611
+ /** A list of nodes. */
2612
+ nodes?: Maybe<Array<Maybe<UserIdentity>>>;
2613
+ /** Information to aid in pagination. */
2614
+ pageInfo?: Maybe<PageInfo>;
2615
+ }
2616
+
2617
+ /** An edge in a connection. */
2618
+ export interface UserIdentityEdge {
2619
+ __typename?: 'UserIdentityEdge';
2620
+ /** A cursor for use in pagination. */
2621
+ cursor?: Maybe<Scalars['String']['output']>;
2622
+ /** The item at the end of the edge. */
2623
+ node?: Maybe<UserIdentity>;
2624
+ }
2625
+
2626
+ /** Represents a user session */
2627
+ export interface UserSession {
2628
+ __typename?: 'UserSession';
2629
+ /** Whether or not the session is active and can be used */
2630
+ active?: Maybe<Scalars['Boolean']['output']>;
2631
+ /** Time when this UserSession was created */
2632
+ createdAt?: Maybe<Scalars['Time']['output']>;
2633
+ /** Global ID of this UserSession */
2634
+ id?: Maybe<Scalars['UserSessionID']['output']>;
2635
+ /** Token belonging to the session, only present on creation */
2636
+ token?: Maybe<Scalars['String']['output']>;
2637
+ /** Time when this UserSession was last updated */
2638
+ updatedAt?: Maybe<Scalars['Time']['output']>;
2639
+ /** User that belongs to the session */
2640
+ user?: Maybe<User>;
2641
+ }
2642
+
2643
+ /** The connection type for UserSession. */
2644
+ export interface UserSessionConnection {
2645
+ __typename?: 'UserSessionConnection';
2646
+ /** Total count of collection. */
2647
+ count?: Maybe<Scalars['Int']['output']>;
2648
+ /** A list of edges. */
2649
+ edges?: Maybe<Array<Maybe<UserSessionEdge>>>;
2650
+ /** A list of nodes. */
2651
+ nodes?: Maybe<Array<Maybe<UserSession>>>;
2652
+ /** Information to aid in pagination. */
2653
+ pageInfo?: Maybe<PageInfo>;
2654
+ }
2655
+
2656
+ /** An edge in a connection. */
2657
+ export interface UserSessionEdge {
2658
+ __typename?: 'UserSessionEdge';
2659
+ /** A cursor for use in pagination. */
2660
+ cursor?: Maybe<Scalars['String']['output']>;
2661
+ /** The item at the end of the edge. */
2662
+ node?: Maybe<UserSession>;
2663
+ }
2664
+
2665
+ /** Autogenerated input type of UsersEmailVerification */
2666
+ export interface UsersEmailVerificationInput {
2667
+ /** A unique identifier for the client performing the mutation. */
2668
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2669
+ /** The email verification token */
2670
+ token: Scalars['String']['input'];
2671
+ }
2672
+
2673
+ /** Autogenerated return type of UsersEmailVerification. */
2674
+ export interface UsersEmailVerificationPayload {
2675
+ __typename?: 'UsersEmailVerificationPayload';
2676
+ /** A unique identifier for the client performing the mutation. */
2677
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2678
+ /** Errors encountered during execution of the mutation. */
2679
+ errors?: Maybe<Array<Error>>;
2680
+ /** The user whose email was verified */
2681
+ user?: Maybe<User>;
2682
+ }
2683
+
2684
+ /** Autogenerated input type of UsersIdentityLink */
2685
+ export interface UsersIdentityLinkInput {
2686
+ /** The validation object */
2687
+ args: IdentityInput;
2688
+ /** A unique identifier for the client performing the mutation. */
2689
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2690
+ /** The ID of the external provider (e.g. google, discord, gitlab...) */
2691
+ providerId: Scalars['String']['input'];
2692
+ }
2693
+
2694
+ /** Autogenerated return type of UsersIdentityLink. */
2695
+ export interface UsersIdentityLinkPayload {
2696
+ __typename?: 'UsersIdentityLinkPayload';
2697
+ /** A unique identifier for the client performing the mutation. */
2698
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2699
+ /** Errors encountered during execution of the mutation. */
2700
+ errors?: Maybe<Array<Error>>;
2701
+ /** The created user identity */
2702
+ userIdentity?: Maybe<UserIdentity>;
2703
+ }
2704
+
2705
+ /** Autogenerated input type of UsersIdentityLogin */
2706
+ export interface UsersIdentityLoginInput {
2707
+ /** The validation object */
2708
+ args: IdentityInput;
2709
+ /** A unique identifier for the client performing the mutation. */
2710
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2711
+ /** The ID of the external provider (e.g. google, discord, gitlab...) */
2712
+ providerId: Scalars['String']['input'];
2713
+ }
2714
+
2715
+ /** Autogenerated return type of UsersIdentityLogin. */
2716
+ export interface UsersIdentityLoginPayload {
2717
+ __typename?: 'UsersIdentityLoginPayload';
2718
+ /** A unique identifier for the client performing the mutation. */
2719
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2720
+ /** Errors encountered during execution of the mutation. */
2721
+ errors?: Maybe<Array<Error>>;
2722
+ /** The created user session */
2723
+ userSession?: Maybe<UserSession>;
2724
+ }
2725
+
2726
+ /** Autogenerated input type of UsersIdentityRegister */
2727
+ export interface UsersIdentityRegisterInput {
2728
+ /** The validation object */
2729
+ args: IdentityInput;
2730
+ /** A unique identifier for the client performing the mutation. */
2731
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2732
+ /** The ID of the external provider (e.g. google, discord, gitlab...) */
2733
+ providerId: Scalars['String']['input'];
2734
+ }
2735
+
2736
+ /** Autogenerated return type of UsersIdentityRegister. */
2737
+ export interface UsersIdentityRegisterPayload {
2738
+ __typename?: 'UsersIdentityRegisterPayload';
2739
+ /** A unique identifier for the client performing the mutation. */
2740
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2741
+ /** Errors encountered during execution of the mutation. */
2742
+ errors?: Maybe<Array<Error>>;
2743
+ /** The created users session */
2744
+ userSession?: Maybe<UserSession>;
2745
+ }
2746
+
2747
+ /** Autogenerated input type of UsersIdentityUnlink */
2748
+ export interface UsersIdentityUnlinkInput {
2749
+ /** A unique identifier for the client performing the mutation. */
2750
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2751
+ /** The ID of the identity to remove */
2752
+ identityId: Scalars['UserIdentityID']['input'];
2753
+ }
2754
+
2755
+ /** Autogenerated return type of UsersIdentityUnlink. */
2756
+ export interface UsersIdentityUnlinkPayload {
2757
+ __typename?: 'UsersIdentityUnlinkPayload';
2758
+ /** A unique identifier for the client performing the mutation. */
2759
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2760
+ /** Errors encountered during execution of the mutation. */
2761
+ errors?: Maybe<Array<Error>>;
2762
+ /** The removed identity */
2763
+ userIdentity?: Maybe<UserIdentity>;
2764
+ }
2765
+
2766
+ /** Autogenerated input type of UsersLogin */
2767
+ export interface UsersLoginInput {
2768
+ /** A unique identifier for the client performing the mutation. */
2769
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2770
+ /** Email of the user */
2771
+ email?: InputMaybe<Scalars['String']['input']>;
2772
+ /** The data of the mfa login */
2773
+ mfa?: InputMaybe<MfaInput>;
2774
+ /** Password of the user */
2775
+ password: Scalars['String']['input'];
2776
+ /** Username of the user */
2777
+ username?: InputMaybe<Scalars['String']['input']>;
2778
+ }
2779
+
2780
+ /** Autogenerated return type of UsersLogin. */
2781
+ export interface UsersLoginPayload {
2782
+ __typename?: 'UsersLoginPayload';
2783
+ /** A unique identifier for the client performing the mutation. */
2784
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2785
+ /** Errors encountered during execution of the mutation. */
2786
+ errors?: Maybe<Array<Error>>;
2787
+ /** The created user session */
2788
+ userSession?: Maybe<UserSession>;
2789
+ }
2790
+
2791
+ /** Autogenerated input type of UsersLogout */
2792
+ export interface UsersLogoutInput {
2793
+ /** A unique identifier for the client performing the mutation. */
2794
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2795
+ /** ID of the session to logout */
2796
+ userSessionId: Scalars['UserSessionID']['input'];
2797
+ }
2798
+
2799
+ /** Autogenerated return type of UsersLogout. */
2800
+ export interface UsersLogoutPayload {
2801
+ __typename?: 'UsersLogoutPayload';
2802
+ /** A unique identifier for the client performing the mutation. */
2803
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2804
+ /** Errors encountered during execution of the mutation. */
2805
+ errors?: Maybe<Array<Error>>;
2806
+ /** The logged out user session */
2807
+ userSession?: Maybe<UserSession>;
2808
+ }
2809
+
2810
+ /** Autogenerated input type of UsersMfaBackupCodesRotate */
2811
+ export interface UsersMfaBackupCodesRotateInput {
2812
+ /** A unique identifier for the client performing the mutation. */
2813
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2814
+ }
2815
+
2816
+ /** Autogenerated return type of UsersMfaBackupCodesRotate. */
2817
+ export interface UsersMfaBackupCodesRotatePayload {
2818
+ __typename?: 'UsersMfaBackupCodesRotatePayload';
2819
+ /** A unique identifier for the client performing the mutation. */
2820
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2821
+ /** The newly rotated backup codes. */
2822
+ codes?: Maybe<Array<Scalars['String']['output']>>;
2823
+ /** Errors encountered during execution of the mutation. */
2824
+ errors?: Maybe<Array<Error>>;
2825
+ }
2826
+
2827
+ /** Autogenerated input type of UsersMfaTotpGenerateSecret */
2828
+ export interface UsersMfaTotpGenerateSecretInput {
2829
+ /** A unique identifier for the client performing the mutation. */
2830
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2831
+ }
2832
+
2833
+ /** Autogenerated return type of UsersMfaTotpGenerateSecret. */
2834
+ export interface UsersMfaTotpGenerateSecretPayload {
2835
+ __typename?: 'UsersMfaTotpGenerateSecretPayload';
2836
+ /** A unique identifier for the client performing the mutation. */
2837
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2838
+ /** Errors encountered during execution of the mutation. */
2839
+ errors?: Maybe<Array<Error>>;
2840
+ /** The created and signed secret */
2841
+ secret?: Maybe<Scalars['String']['output']>;
2842
+ }
2843
+
2844
+ /** Autogenerated input type of UsersMfaTotpValidateSecret */
2845
+ export interface UsersMfaTotpValidateSecretInput {
2846
+ /** A unique identifier for the client performing the mutation. */
2847
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2848
+ /**
2849
+ * The current totp at the time to verify the mfa
2850
+ * authentication device
2851
+ */
2852
+ currentTotp: Scalars['String']['input'];
2853
+ /** The signed secret from the generation */
2854
+ secret: Scalars['String']['input'];
2855
+ }
2856
+
2857
+ /** Autogenerated return type of UsersMfaTotpValidateSecret. */
2858
+ export interface UsersMfaTotpValidateSecretPayload {
2859
+ __typename?: 'UsersMfaTotpValidateSecretPayload';
2860
+ /** A unique identifier for the client performing the mutation. */
2861
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2862
+ /** Errors encountered during execution of the mutation. */
2863
+ errors?: Maybe<Array<Error>>;
2864
+ /** The modified user */
2865
+ user?: Maybe<User>;
2866
+ }
2867
+
2868
+ /** Autogenerated input type of UsersPasswordReset */
2869
+ export interface UsersPasswordResetInput {
2870
+ /** A unique identifier for the client performing the mutation. */
2871
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2872
+ /** The new password to set for the user */
2873
+ newPassword: Scalars['String']['input'];
2874
+ /** The confirmation of the new password to set for the user needs to be the same as the new password */
2875
+ newPasswordConfirmation: Scalars['String']['input'];
2876
+ /** The password reset token sent to the user email */
2877
+ resetToken: Scalars['String']['input'];
2878
+ }
2879
+
2880
+ /** Autogenerated return type of UsersPasswordReset. */
2881
+ export interface UsersPasswordResetPayload {
2882
+ __typename?: 'UsersPasswordResetPayload';
2883
+ /** A unique identifier for the client performing the mutation. */
2884
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2885
+ /** Errors encountered during execution of the mutation. */
2886
+ errors?: Maybe<Array<Error>>;
2887
+ /** A message indicating the result of the password reset request */
2888
+ message?: Maybe<Scalars['String']['output']>;
2889
+ }
2890
+
2891
+ /** Autogenerated input type of UsersPasswordResetRequest */
2892
+ export interface UsersPasswordResetRequestInput {
2893
+ /** A unique identifier for the client performing the mutation. */
2894
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2895
+ /** Email of the user to reset the password */
2896
+ email: Scalars['String']['input'];
2897
+ }
2898
+
2899
+ /** Autogenerated return type of UsersPasswordResetRequest. */
2900
+ export interface UsersPasswordResetRequestPayload {
2901
+ __typename?: 'UsersPasswordResetRequestPayload';
2902
+ /** A unique identifier for the client performing the mutation. */
2903
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2904
+ /** Errors encountered during execution of the mutation. */
2905
+ errors?: Maybe<Array<Error>>;
2906
+ /** A message indicating the result of the password reset request */
2907
+ message?: Maybe<Scalars['String']['output']>;
2908
+ }
2909
+
2910
+ /** Autogenerated input type of UsersRegister */
2911
+ export interface UsersRegisterInput {
2912
+ /** A unique identifier for the client performing the mutation. */
2913
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2914
+ /** Email of the user */
2915
+ email: Scalars['String']['input'];
2916
+ /** Password of the user */
2917
+ password: Scalars['String']['input'];
2918
+ /** The repeated password of the user to check for typos */
2919
+ passwordRepeat: Scalars['String']['input'];
2920
+ /** Username of the user */
2921
+ username: Scalars['String']['input'];
2922
+ }
2923
+
2924
+ /** Autogenerated return type of UsersRegister. */
2925
+ export interface UsersRegisterPayload {
2926
+ __typename?: 'UsersRegisterPayload';
2927
+ /** A unique identifier for the client performing the mutation. */
2928
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2929
+ /** Errors encountered during execution of the mutation. */
2930
+ errors?: Maybe<Array<Error>>;
2931
+ /** The created users session */
2932
+ userSession?: Maybe<UserSession>;
2933
+ }
2934
+
2935
+ /** Autogenerated input type of UsersUpdate */
2936
+ export interface UsersUpdateInput {
2937
+ /** New global admin status for the user. */
2938
+ admin?: InputMaybe<Scalars['Boolean']['input']>;
2939
+ /** A unique identifier for the client performing the mutation. */
2940
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
2941
+ /** New email for the user. */
2942
+ email?: InputMaybe<Scalars['String']['input']>;
2943
+ /** New firstname for the user. */
2944
+ firstname?: InputMaybe<Scalars['String']['input']>;
2945
+ /** New lastname for the user. */
2946
+ lastname?: InputMaybe<Scalars['String']['input']>;
2947
+ /** The data of the mfa validation */
2948
+ mfa?: InputMaybe<MfaInput>;
2949
+ /** New password for the user. */
2950
+ password?: InputMaybe<Scalars['String']['input']>;
2951
+ /** New password repeat for the user to check for typos, required if password is set. */
2952
+ passwordRepeat?: InputMaybe<Scalars['String']['input']>;
2953
+ /** ID of the user to update. */
2954
+ userId: Scalars['UserID']['input'];
2955
+ /** New username for the user. */
2956
+ username?: InputMaybe<Scalars['String']['input']>;
2957
+ }
2958
+
2959
+ /** Autogenerated return type of UsersUpdate. */
2960
+ export interface UsersUpdatePayload {
2961
+ __typename?: 'UsersUpdatePayload';
2962
+ /** A unique identifier for the client performing the mutation. */
2963
+ clientMutationId?: Maybe<Scalars['String']['output']>;
2964
+ /** Errors encountered during execution of the mutation. */
2965
+ errors?: Maybe<Array<Error>>;
2966
+ /** The updated user. */
2967
+ user?: Maybe<User>;
2968
+ }