@code0-tech/sagittarius-graphql-types 0.0.0-755f9382e6589ede0182dace55452703bcd6e85b → 0.0.0-7d24b48c8b78d8f07d3805cd04b406334b0784d4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +426 -165
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -40,7 +40,6 @@ export interface Scalars {
|
|
|
40
40
|
RuntimeID: { input: `gid://sagittarius/Runtime/${number}`; output: `gid://sagittarius/Runtime/${number}`; }
|
|
41
41
|
RuntimeParameterDefinitionID: { input: `gid://sagittarius/RuntimeParameterDefinition/${number}`; output: `gid://sagittarius/RuntimeParameterDefinition/${number}`; }
|
|
42
42
|
Time: { input: string; output: string; }
|
|
43
|
-
TypesFlowTypeID: { input: `gid://sagittarius/TypesFlowType/${number}`; output: `gid://sagittarius/TypesFlowType/${number}`; }
|
|
44
43
|
UserID: { input: `gid://sagittarius/User/${number}`; output: `gid://sagittarius/User/${number}`; }
|
|
45
44
|
UserIdentityID: { input: `gid://sagittarius/UserIdentity/${number}`; output: `gid://sagittarius/UserIdentity/${number}`; }
|
|
46
45
|
UserSessionID: { input: `gid://sagittarius/UserSession/${number}`; output: `gid://sagittarius/UserSession/${number}`; }
|
|
@@ -55,21 +54,67 @@ export interface ActiveModelError {
|
|
|
55
54
|
type?: Maybe<Scalars['String']['output']>;
|
|
56
55
|
}
|
|
57
56
|
|
|
57
|
+
/** Represents the application instance */
|
|
58
|
+
export interface Application {
|
|
59
|
+
__typename?: 'Application';
|
|
60
|
+
/** URL to the legal notice page */
|
|
61
|
+
legalNoticeUrl?: Maybe<Scalars['String']['output']>;
|
|
62
|
+
/** Metadata about the application */
|
|
63
|
+
metadata?: Maybe<Metadata>;
|
|
64
|
+
/** URL to the privacy policy page */
|
|
65
|
+
privacyUrl?: Maybe<Scalars['String']['output']>;
|
|
66
|
+
/** Global application settings */
|
|
67
|
+
settings?: Maybe<ApplicationSettings>;
|
|
68
|
+
/** URL to the terms and conditions page */
|
|
69
|
+
termsAndConditionsUrl?: Maybe<Scalars['String']['output']>;
|
|
70
|
+
/** Abilities for the current user on this Application */
|
|
71
|
+
userAbilities?: Maybe<ApplicationUserAbilities>;
|
|
72
|
+
}
|
|
73
|
+
|
|
58
74
|
/** Represents the application settings */
|
|
59
75
|
export interface ApplicationSettings {
|
|
60
76
|
__typename?: 'ApplicationSettings';
|
|
77
|
+
/** Shows if admin status can be queried by non-administrators */
|
|
78
|
+
adminStatusVisible?: Maybe<Scalars['Boolean']['output']>;
|
|
79
|
+
/** List of configured identity providers */
|
|
80
|
+
identityProviders?: Maybe<IdentityProviderConnection>;
|
|
81
|
+
/** URL to the legal notice page */
|
|
82
|
+
legalNoticeUrl?: Maybe<Scalars['String']['output']>;
|
|
61
83
|
/** Shows if organization creation is restricted to administrators */
|
|
62
84
|
organizationCreationRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
85
|
+
/** URL to the privacy policy page */
|
|
86
|
+
privacyUrl?: Maybe<Scalars['String']['output']>;
|
|
87
|
+
/** URL to the terms and conditions page */
|
|
88
|
+
termsAndConditionsUrl?: Maybe<Scalars['String']['output']>;
|
|
63
89
|
/** Shows if user registration is enabled */
|
|
64
90
|
userRegistrationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
65
91
|
}
|
|
66
92
|
|
|
93
|
+
|
|
94
|
+
/** Represents the application settings */
|
|
95
|
+
export interface ApplicationSettingsIdentityProvidersArgs {
|
|
96
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
97
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
98
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
100
|
+
}
|
|
101
|
+
|
|
67
102
|
/** Autogenerated input type of ApplicationSettingsUpdate */
|
|
68
103
|
export interface ApplicationSettingsUpdateInput {
|
|
104
|
+
/** Set if admin status can be queried by non-administrators. */
|
|
105
|
+
adminStatusVisible?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69
106
|
/** A unique identifier for the client performing the mutation. */
|
|
70
107
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
108
|
+
/** Set the list of configured identity providers. */
|
|
109
|
+
identityProviders?: InputMaybe<Array<IdentityProviderInput>>;
|
|
110
|
+
/** Set the URL to the legal notice page. */
|
|
111
|
+
legalNoticeUrl?: InputMaybe<Scalars['String']['input']>;
|
|
71
112
|
/** Set if organization creation is restricted to administrators. */
|
|
72
113
|
organizationCreationRestricted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
114
|
+
/** Set the URL to the privacy policy page. */
|
|
115
|
+
privacyUrl?: InputMaybe<Scalars['String']['input']>;
|
|
116
|
+
/** Set the URL to the terms and conditions page. */
|
|
117
|
+
termsAndConditionsUrl?: InputMaybe<Scalars['String']['input']>;
|
|
73
118
|
/** Set if user registration is enabled. */
|
|
74
119
|
userRegistrationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75
120
|
}
|
|
@@ -85,14 +130,35 @@ export interface ApplicationSettingsUpdatePayload {
|
|
|
85
130
|
errors?: Maybe<Array<Error>>;
|
|
86
131
|
}
|
|
87
132
|
|
|
133
|
+
/** Abilities for the current user on this Application */
|
|
134
|
+
export interface ApplicationUserAbilities {
|
|
135
|
+
__typename?: 'ApplicationUserAbilities';
|
|
136
|
+
/** Shows if the current user has the `create_organization` ability on this Application */
|
|
137
|
+
createOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
138
|
+
/** Shows if the current user has the `create_runtime` ability on this Application */
|
|
139
|
+
createRuntime?: Maybe<Scalars['Boolean']['output']>;
|
|
140
|
+
/** Shows if the current user has the `delete_runtime` ability on this Application */
|
|
141
|
+
deleteRuntime?: Maybe<Scalars['Boolean']['output']>;
|
|
142
|
+
/** Shows if the current user has the `rotate_runtime_token` ability on this Application */
|
|
143
|
+
rotateRuntimeToken?: Maybe<Scalars['Boolean']['output']>;
|
|
144
|
+
/** Shows if the current user has the `update_application_setting` ability on this Application */
|
|
145
|
+
updateApplicationSetting?: Maybe<Scalars['Boolean']['output']>;
|
|
146
|
+
/** Shows if the current user has the `update_runtime` ability on this Application */
|
|
147
|
+
updateRuntime?: Maybe<Scalars['Boolean']['output']>;
|
|
148
|
+
}
|
|
149
|
+
|
|
88
150
|
/** Objects that can present an authentication */
|
|
89
151
|
export type Authentication = UserSession;
|
|
90
152
|
|
|
91
153
|
/** Represents a DataType */
|
|
92
154
|
export interface DataType {
|
|
93
155
|
__typename?: 'DataType';
|
|
156
|
+
/** Name of the function */
|
|
157
|
+
aliases?: Maybe<Array<Translation>>;
|
|
94
158
|
/** Time when this DataType was created */
|
|
95
159
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
160
|
+
/** Display message of the function */
|
|
161
|
+
displayMessages?: Maybe<Array<Translation>>;
|
|
96
162
|
/** Generic keys of the datatype */
|
|
97
163
|
genericKeys?: Maybe<Array<Scalars['String']['output']>>;
|
|
98
164
|
/** Global ID of this DataType */
|
|
@@ -100,7 +166,7 @@ export interface DataType {
|
|
|
100
166
|
/** The identifier scoped to the namespace */
|
|
101
167
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
102
168
|
/** Names of the flow type setting */
|
|
103
|
-
name?: Maybe<
|
|
169
|
+
name?: Maybe<Array<Translation>>;
|
|
104
170
|
/** Rules of the datatype */
|
|
105
171
|
rules?: Maybe<DataTypeRuleConnection>;
|
|
106
172
|
/** The runtime where this datatype belongs to */
|
|
@@ -112,15 +178,6 @@ export interface DataType {
|
|
|
112
178
|
}
|
|
113
179
|
|
|
114
180
|
|
|
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
181
|
/** Represents a DataType */
|
|
125
182
|
export interface DataTypeRulesArgs {
|
|
126
183
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -168,6 +225,28 @@ export interface DataTypeIdentifier {
|
|
|
168
225
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
169
226
|
}
|
|
170
227
|
|
|
228
|
+
/** The connection type for DataTypeIdentifier. */
|
|
229
|
+
export interface DataTypeIdentifierConnection {
|
|
230
|
+
__typename?: 'DataTypeIdentifierConnection';
|
|
231
|
+
/** Total count of collection. */
|
|
232
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
233
|
+
/** A list of edges. */
|
|
234
|
+
edges?: Maybe<Array<Maybe<DataTypeIdentifierEdge>>>;
|
|
235
|
+
/** A list of nodes. */
|
|
236
|
+
nodes?: Maybe<Array<Maybe<DataTypeIdentifier>>>;
|
|
237
|
+
/** Information to aid in pagination. */
|
|
238
|
+
pageInfo?: Maybe<PageInfo>;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
/** An edge in a connection. */
|
|
242
|
+
export interface DataTypeIdentifierEdge {
|
|
243
|
+
__typename?: 'DataTypeIdentifierEdge';
|
|
244
|
+
/** A cursor for use in pagination. */
|
|
245
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
246
|
+
/** The item at the end of the edge. */
|
|
247
|
+
node?: Maybe<DataTypeIdentifier>;
|
|
248
|
+
}
|
|
249
|
+
|
|
171
250
|
/** Input type for data type identifier */
|
|
172
251
|
export interface DataTypeIdentifierInput {
|
|
173
252
|
/** Data type ID */
|
|
@@ -296,7 +375,7 @@ export const enum DataTypeRulesVariant {
|
|
|
296
375
|
/** The rule checks if a specific type is present in the data type. */
|
|
297
376
|
ContainsType = 'CONTAINS_TYPE',
|
|
298
377
|
/** The rule checks if the data type matches a specific input type. */
|
|
299
|
-
|
|
378
|
+
InputTypes = 'INPUT_TYPES',
|
|
300
379
|
/** The rule checks if an item is part of a collection in the data type. */
|
|
301
380
|
ItemOfCollection = 'ITEM_OF_COLLECTION',
|
|
302
381
|
/** The rule checks if a number falls within a specified range. */
|
|
@@ -370,6 +449,10 @@ export const enum ErrorCodeEnum {
|
|
|
370
449
|
CannotRemoveLastAdministrator = 'CANNOT_REMOVE_LAST_ADMINISTRATOR',
|
|
371
450
|
/** This action would remove the last administrative ability */
|
|
372
451
|
CannotRemoveLastAdminAbility = 'CANNOT_REMOVE_LAST_ADMIN_ABILITY',
|
|
452
|
+
/** The data type identifier with the given identifier was not found */
|
|
453
|
+
DataTypeIdentifierNotFound = 'DATA_TYPE_IDENTIFIER_NOT_FOUND',
|
|
454
|
+
/** The data type with the given identifier was not found */
|
|
455
|
+
DataTypeNotFound = 'DATA_TYPE_NOT_FOUND',
|
|
373
456
|
/** Failed to send the email verification */
|
|
374
457
|
EmailVerificationSendFailed = 'EMAIL_VERIFICATION_SEND_FAILED',
|
|
375
458
|
/** This external identity does not exist */
|
|
@@ -386,6 +469,8 @@ export const enum ErrorCodeEnum {
|
|
|
386
469
|
FlowTypeNotFound = 'FLOW_TYPE_NOT_FOUND',
|
|
387
470
|
/** The flow validation has failed */
|
|
388
471
|
FlowValidationFailed = 'FLOW_VALIDATION_FAILED',
|
|
472
|
+
/** The id for the function value node does not exist */
|
|
473
|
+
FunctionValueNotFound = 'FUNCTION_VALUE_NOT_FOUND',
|
|
389
474
|
/** The given key was not found in the data type */
|
|
390
475
|
GenericKeyNotFound = 'GENERIC_KEY_NOT_FOUND',
|
|
391
476
|
/** The external identity with the given identifier was not found */
|
|
@@ -396,12 +481,20 @@ export const enum ErrorCodeEnum {
|
|
|
396
481
|
InconsistentNamespace = 'INCONSISTENT_NAMESPACE',
|
|
397
482
|
/** The attachment is invalid because of active model errors */
|
|
398
483
|
InvalidAttachment = 'INVALID_ATTACHMENT',
|
|
484
|
+
/** The data type is invalid because of active model errors */
|
|
485
|
+
InvalidDataType = 'INVALID_DATA_TYPE',
|
|
399
486
|
/** This external identity is invalid */
|
|
400
487
|
InvalidExternalIdentity = 'INVALID_EXTERNAL_IDENTITY',
|
|
401
488
|
/** The flow is invalid because of active model errors */
|
|
402
489
|
InvalidFlow = 'INVALID_FLOW',
|
|
403
490
|
/** The flow setting is invalid because of active model errors */
|
|
404
491
|
InvalidFlowSetting = 'INVALID_FLOW_SETTING',
|
|
492
|
+
/** The flow type is invalid because of active model errors */
|
|
493
|
+
InvalidFlowType = 'INVALID_FLOW_TYPE',
|
|
494
|
+
/** The flow type setting is invalid because of active model errors */
|
|
495
|
+
InvalidFlowTypeSetting = 'INVALID_FLOW_TYPE_SETTING',
|
|
496
|
+
/** The generic mapper is invalid because of active model errors */
|
|
497
|
+
InvalidGenericMapper = 'INVALID_GENERIC_MAPPER',
|
|
405
498
|
/** Invalid login data provided */
|
|
406
499
|
InvalidLoginData = 'INVALID_LOGIN_DATA',
|
|
407
500
|
/** The namespace license is invalid because of active model errors */
|
|
@@ -412,12 +505,24 @@ export const enum ErrorCodeEnum {
|
|
|
412
505
|
InvalidNamespaceProject = 'INVALID_NAMESPACE_PROJECT',
|
|
413
506
|
/** The namespace role is invalid because of active model errors */
|
|
414
507
|
InvalidNamespaceRole = 'INVALID_NAMESPACE_ROLE',
|
|
508
|
+
/** The node function is invalid */
|
|
509
|
+
InvalidNodeFunction = 'INVALID_NODE_FUNCTION',
|
|
510
|
+
/** The node parameter is invalid */
|
|
511
|
+
InvalidNodeParameter = 'INVALID_NODE_PARAMETER',
|
|
415
512
|
/** The organization is invalid because of active model errors */
|
|
416
513
|
InvalidOrganization = 'INVALID_ORGANIZATION',
|
|
417
514
|
/** The provided password repeat does not match the password */
|
|
418
515
|
InvalidPasswordRepeat = 'INVALID_PASSWORD_REPEAT',
|
|
419
516
|
/** The runtime is invalid because of active model errors */
|
|
420
517
|
InvalidRuntime = 'INVALID_RUNTIME',
|
|
518
|
+
/** The runtime function definition is invalid */
|
|
519
|
+
InvalidRuntimeFunctionDefinition = 'INVALID_RUNTIME_FUNCTION_DEFINITION',
|
|
520
|
+
/** The runtime function ID is invalid */
|
|
521
|
+
InvalidRuntimeFunctionId = 'INVALID_RUNTIME_FUNCTION_ID',
|
|
522
|
+
/** The runtime parameter definition is invalid */
|
|
523
|
+
InvalidRuntimeParameterDefinition = 'INVALID_RUNTIME_PARAMETER_DEFINITION',
|
|
524
|
+
/** The runtime parameter ID is invalid */
|
|
525
|
+
InvalidRuntimeParameterId = 'INVALID_RUNTIME_PARAMETER_ID',
|
|
421
526
|
/** Invalid setting provided */
|
|
422
527
|
InvalidSetting = 'INVALID_SETTING',
|
|
423
528
|
/** The TOTP secret is invalid or cannot be verified */
|
|
@@ -456,8 +561,16 @@ export const enum ErrorCodeEnum {
|
|
|
456
561
|
NamespaceProjectNotFound = 'NAMESPACE_PROJECT_NOT_FOUND',
|
|
457
562
|
/** The namespace role with the given identifier was not found */
|
|
458
563
|
NamespaceRoleNotFound = 'NAMESPACE_ROLE_NOT_FOUND',
|
|
564
|
+
/** The node with this id does not exist */
|
|
565
|
+
NodeNotFound = 'NODE_NOT_FOUND',
|
|
566
|
+
/** No data type identifier could be found for the given generic key */
|
|
567
|
+
NoDatatypeIdentifierForGenericKey = 'NO_DATATYPE_IDENTIFIER_FOR_GENERIC_KEY',
|
|
568
|
+
/** No data type could be found for the given identifier */
|
|
569
|
+
NoDataTypeForIdentifier = 'NO_DATA_TYPE_FOR_IDENTIFIER',
|
|
459
570
|
/** There are no free license seats to complete this operation */
|
|
460
571
|
NoFreeLicenseSeats = 'NO_FREE_LICENSE_SEATS',
|
|
572
|
+
/** No generic type could be found for the given identifier */
|
|
573
|
+
NoGenericTypeForIdentifier = 'NO_GENERIC_TYPE_FOR_IDENTIFIER',
|
|
461
574
|
/** The project does not have a primary runtime */
|
|
462
575
|
NoPrimaryRuntime = 'NO_PRIMARY_RUNTIME',
|
|
463
576
|
/** The organization with the given identifier was not found */
|
|
@@ -468,6 +581,8 @@ export const enum ErrorCodeEnum {
|
|
|
468
581
|
PrimaryLevelNotFound = 'PRIMARY_LEVEL_NOT_FOUND',
|
|
469
582
|
/** The namespace project with the given identifier was not found */
|
|
470
583
|
ProjectNotFound = 'PROJECT_NOT_FOUND',
|
|
584
|
+
/** A referenced value could not be found */
|
|
585
|
+
ReferencedValueNotFound = 'REFERENCED_VALUE_NOT_FOUND',
|
|
471
586
|
/** Self-registration is disabled */
|
|
472
587
|
RegistrationDisabled = 'REGISTRATION_DISABLED',
|
|
473
588
|
/** Resources are from different runtimes */
|
|
@@ -503,6 +618,8 @@ export interface Flow {
|
|
|
503
618
|
name?: Maybe<Scalars['String']['output']>;
|
|
504
619
|
/** Nodes of the flow */
|
|
505
620
|
nodes?: Maybe<NodeFunctionConnection>;
|
|
621
|
+
/** The project the flow belongs to */
|
|
622
|
+
project?: Maybe<NamespaceProject>;
|
|
506
623
|
/** The return data type of the flow */
|
|
507
624
|
returnType?: Maybe<DataType>;
|
|
508
625
|
/** The settings of the flow */
|
|
@@ -619,46 +736,34 @@ export interface FlowSettingInput {
|
|
|
619
736
|
/** Represents a flow type */
|
|
620
737
|
export interface FlowType {
|
|
621
738
|
__typename?: 'FlowType';
|
|
739
|
+
/** Name of the function */
|
|
740
|
+
aliases?: Maybe<Array<Translation>>;
|
|
622
741
|
/** Time when this FlowType was created */
|
|
623
742
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
624
743
|
/** Descriptions of the flow type */
|
|
625
|
-
descriptions?: Maybe<
|
|
744
|
+
descriptions?: Maybe<Array<Translation>>;
|
|
745
|
+
/** Display message of the function */
|
|
746
|
+
displayMessages?: Maybe<Array<Translation>>;
|
|
626
747
|
/** Editable status of the flow type */
|
|
627
748
|
editable?: Maybe<Scalars['Boolean']['output']>;
|
|
628
749
|
/** Flow type settings of the flow type */
|
|
629
750
|
flowTypeSettings?: Maybe<Array<FlowTypeSetting>>;
|
|
630
751
|
/** Global ID of this FlowType */
|
|
631
|
-
id?: Maybe<Scalars['
|
|
752
|
+
id?: Maybe<Scalars['FlowTypeID']['output']>;
|
|
632
753
|
/** Identifier of the flow type */
|
|
633
754
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
634
755
|
/** Input type of the flow type */
|
|
635
756
|
inputType?: Maybe<DataType>;
|
|
636
757
|
/** Names of the flow type */
|
|
637
|
-
names?: Maybe<
|
|
758
|
+
names?: Maybe<Array<Translation>>;
|
|
638
759
|
/** Return type of the flow type */
|
|
639
760
|
returnType?: Maybe<DataType>;
|
|
761
|
+
/** Runtime of the flow type */
|
|
762
|
+
runtime?: Maybe<Runtime>;
|
|
640
763
|
/** Time when this FlowType was last updated */
|
|
641
764
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
642
765
|
}
|
|
643
766
|
|
|
644
|
-
|
|
645
|
-
/** Represents a flow type */
|
|
646
|
-
export interface FlowTypeDescriptionsArgs {
|
|
647
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
648
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
649
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
650
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
/** Represents a flow type */
|
|
655
|
-
export interface FlowTypeNamesArgs {
|
|
656
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
657
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
658
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
659
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
660
|
-
}
|
|
661
|
-
|
|
662
767
|
/** The connection type for FlowType. */
|
|
663
768
|
export interface FlowTypeConnection {
|
|
664
769
|
__typename?: 'FlowTypeConnection';
|
|
@@ -689,7 +794,7 @@ export interface FlowTypeSetting {
|
|
|
689
794
|
/** Data type of the flow type setting */
|
|
690
795
|
dataType?: Maybe<DataType>;
|
|
691
796
|
/** Descriptions of the flow type setting */
|
|
692
|
-
descriptions?: Maybe<
|
|
797
|
+
descriptions?: Maybe<Array<Translation>>;
|
|
693
798
|
/** Flow type of the flow type setting */
|
|
694
799
|
flowType?: Maybe<FlowType>;
|
|
695
800
|
/** Global ID of this FlowTypeSetting */
|
|
@@ -697,31 +802,13 @@ export interface FlowTypeSetting {
|
|
|
697
802
|
/** Identifier of the flow type setting */
|
|
698
803
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
699
804
|
/** Names of the flow type setting */
|
|
700
|
-
names?: Maybe<
|
|
805
|
+
names?: Maybe<Array<Translation>>;
|
|
701
806
|
/** Unique status of the flow type setting */
|
|
702
807
|
unique?: Maybe<Scalars['Boolean']['output']>;
|
|
703
808
|
/** Time when this FlowTypeSetting was last updated */
|
|
704
809
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
705
810
|
}
|
|
706
811
|
|
|
707
|
-
|
|
708
|
-
/** Represents a flow type setting */
|
|
709
|
-
export interface FlowTypeSettingDescriptionsArgs {
|
|
710
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
711
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
712
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
713
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
/** Represents a flow type setting */
|
|
718
|
-
export interface FlowTypeSettingNamesArgs {
|
|
719
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
720
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
721
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
722
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
723
|
-
}
|
|
724
|
-
|
|
725
812
|
/** Abilities for the current user on this Flow */
|
|
726
813
|
export interface FlowUserAbilities {
|
|
727
814
|
__typename?: 'FlowUserAbilities';
|
|
@@ -775,14 +862,20 @@ export const enum FlowValidationSeverityEnum {
|
|
|
775
862
|
/** Represents a function definition */
|
|
776
863
|
export interface FunctionDefinition {
|
|
777
864
|
__typename?: 'FunctionDefinition';
|
|
865
|
+
/** Name of the function */
|
|
866
|
+
aliases?: Maybe<Array<Translation>>;
|
|
778
867
|
/** Time when this FunctionDefinition was created */
|
|
779
868
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
869
|
+
/** All data type identifiers used within this Node Function */
|
|
870
|
+
dataTypeIdentifiers?: Maybe<DataTypeIdentifierConnection>;
|
|
780
871
|
/** Deprecation message of the function */
|
|
781
|
-
deprecationMessages?: Maybe<
|
|
872
|
+
deprecationMessages?: Maybe<Array<Translation>>;
|
|
782
873
|
/** Description of the function */
|
|
783
|
-
descriptions?: Maybe<
|
|
874
|
+
descriptions?: Maybe<Array<Translation>>;
|
|
875
|
+
/** Display message of the function */
|
|
876
|
+
displayMessages?: Maybe<Array<Translation>>;
|
|
784
877
|
/** Documentation of the function */
|
|
785
|
-
documentations?: Maybe<
|
|
878
|
+
documentations?: Maybe<Array<Translation>>;
|
|
786
879
|
/** Generic keys of the function */
|
|
787
880
|
genericKeys?: Maybe<Array<Scalars['String']['output']>>;
|
|
788
881
|
/** Global ID of this FunctionDefinition */
|
|
@@ -790,7 +883,7 @@ export interface FunctionDefinition {
|
|
|
790
883
|
/** Identifier of the function */
|
|
791
884
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
792
885
|
/** Name of the function */
|
|
793
|
-
names?: Maybe<
|
|
886
|
+
names?: Maybe<Array<Translation>>;
|
|
794
887
|
/** Parameters of the function */
|
|
795
888
|
parameterDefinitions?: Maybe<ParameterDefinitionConnection>;
|
|
796
889
|
/** Return type of the function */
|
|
@@ -805,34 +898,7 @@ export interface FunctionDefinition {
|
|
|
805
898
|
|
|
806
899
|
|
|
807
900
|
/** Represents a function definition */
|
|
808
|
-
export interface
|
|
809
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
810
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
811
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
812
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
813
|
-
}
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
/** Represents a function definition */
|
|
817
|
-
export interface FunctionDefinitionDescriptionsArgs {
|
|
818
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
819
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
820
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
821
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
822
|
-
}
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
/** Represents a function definition */
|
|
826
|
-
export interface FunctionDefinitionDocumentationsArgs {
|
|
827
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
828
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
829
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
830
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
831
|
-
}
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
/** Represents a function definition */
|
|
835
|
-
export interface FunctionDefinitionNamesArgs {
|
|
901
|
+
export interface FunctionDefinitionDataTypeIdentifiersArgs {
|
|
836
902
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
837
903
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
838
904
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -903,7 +969,7 @@ export interface GenericMapper {
|
|
|
903
969
|
/** Global ID of this GenericMapper */
|
|
904
970
|
id?: Maybe<Scalars['GenericMapperID']['output']>;
|
|
905
971
|
/** The source data type identifier. */
|
|
906
|
-
|
|
972
|
+
sourceDataTypeIdentifierIds?: Maybe<Array<Scalars['DataTypeIdentifierID']['output']>>;
|
|
907
973
|
/** The target key for the generic value. */
|
|
908
974
|
target?: Maybe<Scalars['String']['output']>;
|
|
909
975
|
/** Time when this GenericMapper was last updated */
|
|
@@ -947,21 +1013,92 @@ export interface IdentityInput {
|
|
|
947
1013
|
code?: InputMaybe<Scalars['String']['input']>;
|
|
948
1014
|
}
|
|
949
1015
|
|
|
950
|
-
/**
|
|
951
|
-
export interface
|
|
952
|
-
__typename?: '
|
|
953
|
-
/**
|
|
954
|
-
|
|
955
|
-
/**
|
|
956
|
-
|
|
957
|
-
/**
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
1016
|
+
/** Represents an identity provider configuration. */
|
|
1017
|
+
export interface IdentityProvider {
|
|
1018
|
+
__typename?: 'IdentityProvider';
|
|
1019
|
+
/** Configuration details of the identity provider. */
|
|
1020
|
+
config?: Maybe<IdentityProviderConfig>;
|
|
1021
|
+
/** Unique identifier of the identity provider. */
|
|
1022
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1023
|
+
/** Type of the identity provider. */
|
|
1024
|
+
type?: Maybe<IdentityProviderType>;
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
/** Represents the configuration of an identity provider. */
|
|
1028
|
+
export type IdentityProviderConfig = OidcIdentityProviderConfig | SamlIdentityProviderConfig;
|
|
1029
|
+
|
|
1030
|
+
/** Input for identity provider configuration. Contains fields for both OIDC and SAML. */
|
|
1031
|
+
export interface IdentityProviderConfigInput {
|
|
1032
|
+
/** List of attribute statements for the identity provider */
|
|
1033
|
+
attributeStatements?: InputMaybe<Scalars['JSON']['input']>;
|
|
1034
|
+
/** The authorization URL for the OIDC identity provider */
|
|
1035
|
+
authorizationUrl?: InputMaybe<Scalars['String']['input']>;
|
|
1036
|
+
/** The client ID for the OIDC identity provider */
|
|
1037
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
1038
|
+
/** The client secret for the OIDC identity provider */
|
|
1039
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
1040
|
+
/** Optional metadata URL to fetch metadata (alternative to settings) */
|
|
1041
|
+
metadataUrl?: InputMaybe<Scalars['String']['input']>;
|
|
1042
|
+
/** The name of the identity provider */
|
|
1043
|
+
providerName?: InputMaybe<Scalars['String']['input']>;
|
|
1044
|
+
/** The redirect URI for the OIDC identity provider */
|
|
1045
|
+
redirectUri?: InputMaybe<Scalars['String']['input']>;
|
|
1046
|
+
/** The SAML response settings for the identity provider */
|
|
1047
|
+
responseSettings?: InputMaybe<Scalars['JSON']['input']>;
|
|
1048
|
+
/** The SAML settings for the identity provider */
|
|
1049
|
+
settings?: InputMaybe<Scalars['JSON']['input']>;
|
|
1050
|
+
/** The user details URL for the OIDC identity provider */
|
|
1051
|
+
userDetailsUrl?: InputMaybe<Scalars['String']['input']>;
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
/** The connection type for IdentityProvider. */
|
|
1055
|
+
export interface IdentityProviderConnection {
|
|
1056
|
+
__typename?: 'IdentityProviderConnection';
|
|
1057
|
+
/** Total count of collection. */
|
|
1058
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
1059
|
+
/** A list of edges. */
|
|
1060
|
+
edges?: Maybe<Array<Maybe<IdentityProviderEdge>>>;
|
|
1061
|
+
/** A list of nodes. */
|
|
1062
|
+
nodes?: Maybe<Array<Maybe<IdentityProvider>>>;
|
|
1063
|
+
/** Information to aid in pagination. */
|
|
1064
|
+
pageInfo?: Maybe<PageInfo>;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
/** An edge in a connection. */
|
|
1068
|
+
export interface IdentityProviderEdge {
|
|
1069
|
+
__typename?: 'IdentityProviderEdge';
|
|
1070
|
+
/** A cursor for use in pagination. */
|
|
1071
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
1072
|
+
/** The item at the end of the edge. */
|
|
1073
|
+
node?: Maybe<IdentityProvider>;
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
/** Input for creating or updating an identity provider */
|
|
1077
|
+
export interface IdentityProviderInput {
|
|
1078
|
+
/** Configuration for the identity provider */
|
|
1079
|
+
config: IdentityProviderConfigInput;
|
|
1080
|
+
/** Unique identifier of the identity provider */
|
|
1081
|
+
id: Scalars['String']['input'];
|
|
1082
|
+
/** Type of the identity provider */
|
|
1083
|
+
type: IdentityProviderType;
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
/** The available identity provider types. */
|
|
1087
|
+
export const enum IdentityProviderType {
|
|
1088
|
+
/** Identity provider of type discord */
|
|
1089
|
+
Discord = 'DISCORD',
|
|
1090
|
+
/** Identity provider of type github */
|
|
1091
|
+
Github = 'GITHUB',
|
|
1092
|
+
/** Identity provider of type gitlab */
|
|
1093
|
+
Gitlab = 'GITLAB',
|
|
1094
|
+
/** Identity provider of type google */
|
|
1095
|
+
Google = 'GOOGLE',
|
|
1096
|
+
/** Identity provider of type microsoft */
|
|
1097
|
+
Microsoft = 'MICROSOFT',
|
|
1098
|
+
/** Identity provider of type oidc */
|
|
1099
|
+
Oidc = 'OIDC',
|
|
1100
|
+
/** Identity provider of type saml */
|
|
1101
|
+
Saml = 'SAML'
|
|
965
1102
|
}
|
|
966
1103
|
|
|
967
1104
|
/** Represents a literal value, such as a string or number. */
|
|
@@ -999,6 +1136,17 @@ export interface MfaInput {
|
|
|
999
1136
|
value: Scalars['String']['input'];
|
|
1000
1137
|
}
|
|
1001
1138
|
|
|
1139
|
+
/** Represents the MFA status of a user */
|
|
1140
|
+
export interface MfaStatus {
|
|
1141
|
+
__typename?: 'MfaStatus';
|
|
1142
|
+
/** The number of backup codes remaining for the user. */
|
|
1143
|
+
backupCodesCount?: Maybe<Scalars['Int']['output']>;
|
|
1144
|
+
/** Indicates whether MFA is enabled for the user. */
|
|
1145
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1146
|
+
/** Indicates whether TOTP MFA is enabled for the user. */
|
|
1147
|
+
totpEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1002
1150
|
/** Represent all available types to authenticate with mfa */
|
|
1003
1151
|
export const enum MfaType {
|
|
1004
1152
|
/** Single use backup code */
|
|
@@ -1040,6 +1188,8 @@ export interface Mutation {
|
|
|
1040
1188
|
namespacesProjectsFlowsCreate?: Maybe<NamespacesProjectsFlowsCreatePayload>;
|
|
1041
1189
|
/** Deletes a namespace project. */
|
|
1042
1190
|
namespacesProjectsFlowsDelete?: Maybe<NamespacesProjectsFlowsDeletePayload>;
|
|
1191
|
+
/** Update an existing flow. */
|
|
1192
|
+
namespacesProjectsFlowsUpdate?: Maybe<NamespacesProjectsFlowsUpdatePayload>;
|
|
1043
1193
|
/** Updates a namespace project. */
|
|
1044
1194
|
namespacesProjectsUpdate?: Maybe<NamespacesProjectsUpdatePayload>;
|
|
1045
1195
|
/** Update the abilities a role is granted. */
|
|
@@ -1066,6 +1216,10 @@ export interface Mutation {
|
|
|
1066
1216
|
runtimesRotateToken?: Maybe<RuntimesRotateTokenPayload>;
|
|
1067
1217
|
/** Update an existing runtime. */
|
|
1068
1218
|
runtimesUpdate?: Maybe<RuntimesUpdatePayload>;
|
|
1219
|
+
/** Admin-create a user. */
|
|
1220
|
+
usersCreate?: Maybe<UsersCreatePayload>;
|
|
1221
|
+
/** Delete an existing user. */
|
|
1222
|
+
usersDelete?: Maybe<UsersDeletePayload>;
|
|
1069
1223
|
/** Verify your email when changing it or signing up */
|
|
1070
1224
|
usersEmailVerification?: Maybe<UsersEmailVerificationPayload>;
|
|
1071
1225
|
/** Links an external identity to an existing user */
|
|
@@ -1169,6 +1323,12 @@ export interface MutationNamespacesProjectsFlowsDeleteArgs {
|
|
|
1169
1323
|
}
|
|
1170
1324
|
|
|
1171
1325
|
|
|
1326
|
+
/** Root Mutation type */
|
|
1327
|
+
export interface MutationNamespacesProjectsFlowsUpdateArgs {
|
|
1328
|
+
input: NamespacesProjectsFlowsUpdateInput;
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
|
|
1172
1332
|
/** Root Mutation type */
|
|
1173
1333
|
export interface MutationNamespacesProjectsUpdateArgs {
|
|
1174
1334
|
input: NamespacesProjectsUpdateInput;
|
|
@@ -1247,6 +1407,18 @@ export interface MutationRuntimesUpdateArgs {
|
|
|
1247
1407
|
}
|
|
1248
1408
|
|
|
1249
1409
|
|
|
1410
|
+
/** Root Mutation type */
|
|
1411
|
+
export interface MutationUsersCreateArgs {
|
|
1412
|
+
input: UsersCreateInput;
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
|
|
1416
|
+
/** Root Mutation type */
|
|
1417
|
+
export interface MutationUsersDeleteArgs {
|
|
1418
|
+
input: UsersDeleteInput;
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
|
|
1250
1422
|
/** Root Mutation type */
|
|
1251
1423
|
export interface MutationUsersEmailVerificationArgs {
|
|
1252
1424
|
input: UsersEmailVerificationInput;
|
|
@@ -1345,6 +1517,8 @@ export interface Namespace {
|
|
|
1345
1517
|
namespaceLicenses?: Maybe<NamespaceLicenseConnection>;
|
|
1346
1518
|
/** Parent of this namespace */
|
|
1347
1519
|
parent?: Maybe<NamespaceParent>;
|
|
1520
|
+
/** Query a project by its id */
|
|
1521
|
+
project?: Maybe<NamespaceProject>;
|
|
1348
1522
|
/** Projects of the namespace */
|
|
1349
1523
|
projects?: Maybe<NamespaceProjectConnection>;
|
|
1350
1524
|
/** Roles of the namespace */
|
|
@@ -1376,6 +1550,12 @@ export interface NamespaceNamespaceLicensesArgs {
|
|
|
1376
1550
|
}
|
|
1377
1551
|
|
|
1378
1552
|
|
|
1553
|
+
/** Represents a Namespace */
|
|
1554
|
+
export interface NamespaceProjectArgs {
|
|
1555
|
+
id: Scalars['NamespaceProjectID']['input'];
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
|
|
1379
1559
|
/** Represents a Namespace */
|
|
1380
1560
|
export interface NamespaceProjectsArgs {
|
|
1381
1561
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1585,6 +1765,8 @@ export interface NamespaceProject {
|
|
|
1585
1765
|
roles?: Maybe<NamespaceRoleConnection>;
|
|
1586
1766
|
/** Runtimes assigned to this project */
|
|
1587
1767
|
runtimes?: Maybe<RuntimeConnection>;
|
|
1768
|
+
/** Slug of the project used in URLs to identify flows */
|
|
1769
|
+
slug?: Maybe<Scalars['String']['output']>;
|
|
1588
1770
|
/** Time when this NamespaceProject was last updated */
|
|
1589
1771
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
1590
1772
|
/** Abilities for the current user on this NamespaceProject */
|
|
@@ -1863,8 +2045,8 @@ export interface NamespacesMembersAssignRolesPayload {
|
|
|
1863
2045
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
1864
2046
|
/** Errors encountered during execution of the mutation. */
|
|
1865
2047
|
errors?: Maybe<Array<Error>>;
|
|
1866
|
-
/** The
|
|
1867
|
-
|
|
2048
|
+
/** The member which was assigned the roles */
|
|
2049
|
+
member?: Maybe<NamespaceMember>;
|
|
1868
2050
|
}
|
|
1869
2051
|
|
|
1870
2052
|
/** Autogenerated input type of NamespacesMembersDelete */
|
|
@@ -1938,6 +2120,8 @@ export interface NamespacesProjectsCreateInput {
|
|
|
1938
2120
|
name: Scalars['String']['input'];
|
|
1939
2121
|
/** The id of the namespace which this project will belong to */
|
|
1940
2122
|
namespaceId: Scalars['NamespaceID']['input'];
|
|
2123
|
+
/** Slug for the new project. */
|
|
2124
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
1941
2125
|
}
|
|
1942
2126
|
|
|
1943
2127
|
/** Autogenerated return type of NamespacesProjectsCreate. */
|
|
@@ -2010,6 +2194,27 @@ export interface NamespacesProjectsFlowsDeletePayload {
|
|
|
2010
2194
|
flow?: Maybe<Flow>;
|
|
2011
2195
|
}
|
|
2012
2196
|
|
|
2197
|
+
/** Autogenerated input type of NamespacesProjectsFlowsUpdate */
|
|
2198
|
+
export interface NamespacesProjectsFlowsUpdateInput {
|
|
2199
|
+
/** A unique identifier for the client performing the mutation. */
|
|
2200
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
2201
|
+
/** The ID of the flow to update */
|
|
2202
|
+
flowId: Scalars['FlowID']['input'];
|
|
2203
|
+
/** The updated flow */
|
|
2204
|
+
flowInput: FlowInput;
|
|
2205
|
+
}
|
|
2206
|
+
|
|
2207
|
+
/** Autogenerated return type of NamespacesProjectsFlowsUpdate. */
|
|
2208
|
+
export interface NamespacesProjectsFlowsUpdatePayload {
|
|
2209
|
+
__typename?: 'NamespacesProjectsFlowsUpdatePayload';
|
|
2210
|
+
/** A unique identifier for the client performing the mutation. */
|
|
2211
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2212
|
+
/** Errors encountered during execution of the mutation. */
|
|
2213
|
+
errors?: Maybe<Array<Error>>;
|
|
2214
|
+
/** The updated flow. */
|
|
2215
|
+
flow?: Maybe<Flow>;
|
|
2216
|
+
}
|
|
2217
|
+
|
|
2013
2218
|
/** Autogenerated input type of NamespacesProjectsUpdate */
|
|
2014
2219
|
export interface NamespacesProjectsUpdateInput {
|
|
2015
2220
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -2022,6 +2227,8 @@ export interface NamespacesProjectsUpdateInput {
|
|
|
2022
2227
|
namespaceProjectId: Scalars['NamespaceProjectID']['input'];
|
|
2023
2228
|
/** The primary runtime for the updated project. */
|
|
2024
2229
|
primaryRuntimeId?: InputMaybe<Scalars['RuntimeID']['input']>;
|
|
2230
|
+
/** Slug for the updated project. */
|
|
2231
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
2025
2232
|
}
|
|
2026
2233
|
|
|
2027
2234
|
/** Autogenerated return type of NamespacesProjectsUpdate. */
|
|
@@ -2192,6 +2399,13 @@ export interface NodeFunctionEdge {
|
|
|
2192
2399
|
node?: Maybe<NodeFunction>;
|
|
2193
2400
|
}
|
|
2194
2401
|
|
|
2402
|
+
/** Represents a Node Function id wrapper. */
|
|
2403
|
+
export interface NodeFunctionIdWrapper {
|
|
2404
|
+
__typename?: 'NodeFunctionIdWrapper';
|
|
2405
|
+
/** Global ID of this NodeFunctionIdWrapper */
|
|
2406
|
+
id?: Maybe<Scalars['NodeFunctionID']['output']>;
|
|
2407
|
+
}
|
|
2408
|
+
|
|
2195
2409
|
/** Input type for a Node Function */
|
|
2196
2410
|
export interface NodeFunctionInput {
|
|
2197
2411
|
/** The identifier of the Node Function used to create/update the flow */
|
|
@@ -2250,18 +2464,37 @@ export interface NodeParameterInput {
|
|
|
2250
2464
|
}
|
|
2251
2465
|
|
|
2252
2466
|
/** Represents a parameter value for a node. */
|
|
2253
|
-
export type NodeParameterValue = LiteralValue |
|
|
2467
|
+
export type NodeParameterValue = LiteralValue | NodeFunctionIdWrapper | ReferenceValue;
|
|
2254
2468
|
|
|
2255
2469
|
/** Input type for parameter value */
|
|
2256
2470
|
export interface NodeParameterValueInput {
|
|
2257
|
-
/** The function value of the parameter */
|
|
2258
|
-
functionValue?: InputMaybe<NodeFunctionInput>;
|
|
2259
2471
|
/** The literal value of the parameter */
|
|
2260
2472
|
literalValue?: InputMaybe<Scalars['JSON']['input']>;
|
|
2473
|
+
/** The function value of the parameter as an id */
|
|
2474
|
+
nodeFunctionId?: InputMaybe<Scalars['NodeFunctionID']['input']>;
|
|
2261
2475
|
/** The reference value of the parameter */
|
|
2262
2476
|
referenceValue?: InputMaybe<ReferenceValueInput>;
|
|
2263
2477
|
}
|
|
2264
2478
|
|
|
2479
|
+
/** Represents an OIDC identity provider configuration */
|
|
2480
|
+
export interface OidcIdentityProviderConfig {
|
|
2481
|
+
__typename?: 'OidcIdentityProviderConfig';
|
|
2482
|
+
/** List of attribute statements for the OIDC identity provider */
|
|
2483
|
+
attributeStatements?: Maybe<Scalars['JSON']['output']>;
|
|
2484
|
+
/** The authorization URL for the OIDC identity provider */
|
|
2485
|
+
authorizationUrl?: Maybe<Scalars['String']['output']>;
|
|
2486
|
+
/** The client ID for the OIDC identity provider */
|
|
2487
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
2488
|
+
/** The client secret for the OIDC identity provider */
|
|
2489
|
+
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
2490
|
+
/** The name of the OIDC identity provider */
|
|
2491
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
2492
|
+
/** The redirect URI for the OIDC identity provider */
|
|
2493
|
+
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
2494
|
+
/** The user details URL for the OIDC identity provider */
|
|
2495
|
+
userDetailsUrl?: Maybe<Scalars['String']['output']>;
|
|
2496
|
+
}
|
|
2497
|
+
|
|
2265
2498
|
/** Represents a Organization */
|
|
2266
2499
|
export interface Organization {
|
|
2267
2500
|
__typename?: 'Organization';
|
|
@@ -2390,46 +2623,19 @@ export interface ParameterDefinition {
|
|
|
2390
2623
|
/** Data type of the parameter */
|
|
2391
2624
|
dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
|
|
2392
2625
|
/** Description of the parameter */
|
|
2393
|
-
descriptions?: Maybe<
|
|
2626
|
+
descriptions?: Maybe<Array<Translation>>;
|
|
2394
2627
|
/** Documentation of the parameter */
|
|
2395
|
-
documentations?: Maybe<
|
|
2628
|
+
documentations?: Maybe<Array<Translation>>;
|
|
2396
2629
|
/** Global ID of this ParameterDefinition */
|
|
2397
2630
|
id?: Maybe<Scalars['ParameterDefinitionID']['output']>;
|
|
2398
2631
|
/** Identifier of the parameter */
|
|
2399
2632
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
2400
2633
|
/** Name of the parameter */
|
|
2401
|
-
names?: Maybe<
|
|
2634
|
+
names?: Maybe<Array<Translation>>;
|
|
2402
2635
|
/** Time when this ParameterDefinition was last updated */
|
|
2403
2636
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
2404
2637
|
}
|
|
2405
2638
|
|
|
2406
|
-
|
|
2407
|
-
/** Represents a parameter definition */
|
|
2408
|
-
export interface ParameterDefinitionDescriptionsArgs {
|
|
2409
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
2410
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
2411
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2412
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2413
|
-
}
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
/** Represents a parameter definition */
|
|
2417
|
-
export interface ParameterDefinitionDocumentationsArgs {
|
|
2418
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
2419
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
2420
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2421
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2422
|
-
}
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
/** Represents a parameter definition */
|
|
2426
|
-
export interface ParameterDefinitionNamesArgs {
|
|
2427
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
2428
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
2429
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2430
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2431
|
-
}
|
|
2432
|
-
|
|
2433
2639
|
/** The connection type for ParameterDefinition. */
|
|
2434
2640
|
export interface ParameterDefinitionConnection {
|
|
2435
2641
|
__typename?: 'ParameterDefinitionConnection';
|
|
@@ -2455,8 +2661,8 @@ export interface ParameterDefinitionEdge {
|
|
|
2455
2661
|
/** Root Query type */
|
|
2456
2662
|
export interface Query {
|
|
2457
2663
|
__typename?: 'Query';
|
|
2458
|
-
/** Get
|
|
2459
|
-
|
|
2664
|
+
/** Get application information */
|
|
2665
|
+
application?: Maybe<Application>;
|
|
2460
2666
|
/** Get the currently logged in authentication */
|
|
2461
2667
|
currentAuthentication?: Maybe<Authentication>;
|
|
2462
2668
|
/** Get the currently logged in user */
|
|
@@ -2465,8 +2671,6 @@ export interface Query {
|
|
|
2465
2671
|
echo?: Maybe<Scalars['String']['output']>;
|
|
2466
2672
|
/** Find runtimes */
|
|
2467
2673
|
globalRuntimes?: Maybe<RuntimeConnection>;
|
|
2468
|
-
/** Get application metadata */
|
|
2469
|
-
metadata?: Maybe<Metadata>;
|
|
2470
2674
|
/** Find a namespace */
|
|
2471
2675
|
namespace?: Maybe<Namespace>;
|
|
2472
2676
|
/** Fetches an object given its ID */
|
|
@@ -2479,8 +2683,6 @@ export interface Query {
|
|
|
2479
2683
|
organizations?: Maybe<OrganizationConnection>;
|
|
2480
2684
|
/** Find a user */
|
|
2481
2685
|
user?: Maybe<User>;
|
|
2482
|
-
/** Abilities for the current user on this Instance */
|
|
2483
|
-
userAbilities?: Maybe<InstanceUserAbilities>;
|
|
2484
2686
|
/** Find users */
|
|
2485
2687
|
users?: Maybe<UserConnection>;
|
|
2486
2688
|
}
|
|
@@ -2537,7 +2739,8 @@ export interface QueryOrganizationsArgs {
|
|
|
2537
2739
|
|
|
2538
2740
|
/** Root Query type */
|
|
2539
2741
|
export interface QueryUserArgs {
|
|
2540
|
-
id
|
|
2742
|
+
id?: InputMaybe<Scalars['UserID']['input']>;
|
|
2743
|
+
username?: InputMaybe<Scalars['String']['input']>;
|
|
2541
2744
|
}
|
|
2542
2745
|
|
|
2543
2746
|
|
|
@@ -2622,6 +2825,8 @@ export interface Runtime {
|
|
|
2622
2825
|
description?: Maybe<Scalars['String']['output']>;
|
|
2623
2826
|
/** FlowTypes of the runtime */
|
|
2624
2827
|
flowTypes?: Maybe<FlowTypeConnection>;
|
|
2828
|
+
/** Function definitions of the runtime */
|
|
2829
|
+
functionDefinitions?: Maybe<FunctionDefinitionConnection>;
|
|
2625
2830
|
/** Global ID of this Runtime */
|
|
2626
2831
|
id?: Maybe<Scalars['RuntimeID']['output']>;
|
|
2627
2832
|
/** The name for the runtime */
|
|
@@ -2659,6 +2864,15 @@ export interface RuntimeFlowTypesArgs {
|
|
|
2659
2864
|
}
|
|
2660
2865
|
|
|
2661
2866
|
|
|
2867
|
+
/** Represents a runtime */
|
|
2868
|
+
export interface RuntimeFunctionDefinitionsArgs {
|
|
2869
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
2870
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
2871
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2872
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2873
|
+
}
|
|
2874
|
+
|
|
2875
|
+
|
|
2662
2876
|
/** Represents a runtime */
|
|
2663
2877
|
export interface RuntimeProjectsArgs {
|
|
2664
2878
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2733,6 +2947,8 @@ export interface RuntimeParameterDefinition {
|
|
|
2733
2947
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
2734
2948
|
/** Global ID of this RuntimeParameterDefinition */
|
|
2735
2949
|
id?: Maybe<Scalars['RuntimeParameterDefinitionID']['output']>;
|
|
2950
|
+
/** Identifier of the runtime parameter definition */
|
|
2951
|
+
identifier?: Maybe<Scalars['String']['output']>;
|
|
2736
2952
|
/** Time when this RuntimeParameterDefinition was last updated */
|
|
2737
2953
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
2738
2954
|
}
|
|
@@ -2862,6 +3078,21 @@ export interface RuntimesUpdatePayload {
|
|
|
2862
3078
|
runtime?: Maybe<Runtime>;
|
|
2863
3079
|
}
|
|
2864
3080
|
|
|
3081
|
+
/** Represents the configuration for a SAML identity provider. */
|
|
3082
|
+
export interface SamlIdentityProviderConfig {
|
|
3083
|
+
__typename?: 'SamlIdentityProviderConfig';
|
|
3084
|
+
/** List of attribute statements for the SAML identity provider */
|
|
3085
|
+
attributeStatements?: Maybe<Scalars['JSON']['output']>;
|
|
3086
|
+
/** The metadata url to fetch the metadatas (replacement for settings) */
|
|
3087
|
+
metadataUrl?: Maybe<Scalars['String']['output']>;
|
|
3088
|
+
/** The name of the SAML identity provider */
|
|
3089
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
3090
|
+
/** The SAML response settings for the identity provider */
|
|
3091
|
+
responseSettings?: Maybe<Scalars['JSON']['output']>;
|
|
3092
|
+
/** The SAML settings for the identity provider */
|
|
3093
|
+
settings?: Maybe<Scalars['JSON']['output']>;
|
|
3094
|
+
}
|
|
3095
|
+
|
|
2865
3096
|
/** Represents a translation */
|
|
2866
3097
|
export interface Translation {
|
|
2867
3098
|
__typename?: 'Translation';
|
|
@@ -2871,28 +3102,6 @@ export interface Translation {
|
|
|
2871
3102
|
content?: Maybe<Scalars['String']['output']>;
|
|
2872
3103
|
}
|
|
2873
3104
|
|
|
2874
|
-
/** The connection type for Translation. */
|
|
2875
|
-
export interface TranslationConnection {
|
|
2876
|
-
__typename?: 'TranslationConnection';
|
|
2877
|
-
/** Total count of collection. */
|
|
2878
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
2879
|
-
/** A list of edges. */
|
|
2880
|
-
edges?: Maybe<Array<Maybe<TranslationEdge>>>;
|
|
2881
|
-
/** A list of nodes. */
|
|
2882
|
-
nodes?: Maybe<Array<Maybe<Translation>>>;
|
|
2883
|
-
/** Information to aid in pagination. */
|
|
2884
|
-
pageInfo?: Maybe<PageInfo>;
|
|
2885
|
-
}
|
|
2886
|
-
|
|
2887
|
-
/** An edge in a connection. */
|
|
2888
|
-
export interface TranslationEdge {
|
|
2889
|
-
__typename?: 'TranslationEdge';
|
|
2890
|
-
/** A cursor for use in pagination. */
|
|
2891
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
2892
|
-
/** The item at the end of the edge. */
|
|
2893
|
-
node?: Maybe<Translation>;
|
|
2894
|
-
}
|
|
2895
|
-
|
|
2896
3105
|
/** Represents a user */
|
|
2897
3106
|
export interface User {
|
|
2898
3107
|
__typename?: 'User';
|
|
@@ -2914,6 +3123,8 @@ export interface User {
|
|
|
2914
3123
|
identities?: Maybe<UserIdentityConnection>;
|
|
2915
3124
|
/** Lastname of the user */
|
|
2916
3125
|
lastname?: Maybe<Scalars['String']['output']>;
|
|
3126
|
+
/** Multi-factor authentication status of this user */
|
|
3127
|
+
mfaStatus?: Maybe<MfaStatus>;
|
|
2917
3128
|
/** Namespace of this user */
|
|
2918
3129
|
namespace?: Maybe<Namespace>;
|
|
2919
3130
|
/** Namespace Memberships of this user */
|
|
@@ -3073,6 +3284,56 @@ export interface UserUserAbilities {
|
|
|
3073
3284
|
updateUser?: Maybe<Scalars['Boolean']['output']>;
|
|
3074
3285
|
}
|
|
3075
3286
|
|
|
3287
|
+
/** Autogenerated input type of UsersCreate */
|
|
3288
|
+
export interface UsersCreateInput {
|
|
3289
|
+
/** Admin status for the user. */
|
|
3290
|
+
admin?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3291
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3292
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3293
|
+
/** Email for the user. */
|
|
3294
|
+
email: Scalars['String']['input'];
|
|
3295
|
+
/** Firstname for the user. */
|
|
3296
|
+
firstname?: InputMaybe<Scalars['String']['input']>;
|
|
3297
|
+
/** Lastname for the user. */
|
|
3298
|
+
lastname?: InputMaybe<Scalars['String']['input']>;
|
|
3299
|
+
/** Password for the user. */
|
|
3300
|
+
password: Scalars['String']['input'];
|
|
3301
|
+
/** Password repeat for the user to check for typos. */
|
|
3302
|
+
passwordRepeat: Scalars['String']['input'];
|
|
3303
|
+
/** Username for the user. */
|
|
3304
|
+
username: Scalars['String']['input'];
|
|
3305
|
+
}
|
|
3306
|
+
|
|
3307
|
+
/** Autogenerated return type of UsersCreate. */
|
|
3308
|
+
export interface UsersCreatePayload {
|
|
3309
|
+
__typename?: 'UsersCreatePayload';
|
|
3310
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3311
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3312
|
+
/** Errors encountered during execution of the mutation. */
|
|
3313
|
+
errors?: Maybe<Array<Error>>;
|
|
3314
|
+
/** The created user. */
|
|
3315
|
+
user?: Maybe<User>;
|
|
3316
|
+
}
|
|
3317
|
+
|
|
3318
|
+
/** Autogenerated input type of UsersDelete */
|
|
3319
|
+
export interface UsersDeleteInput {
|
|
3320
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3321
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3322
|
+
/** The user to delete. */
|
|
3323
|
+
userId: Scalars['UserID']['input'];
|
|
3324
|
+
}
|
|
3325
|
+
|
|
3326
|
+
/** Autogenerated return type of UsersDelete. */
|
|
3327
|
+
export interface UsersDeletePayload {
|
|
3328
|
+
__typename?: 'UsersDeletePayload';
|
|
3329
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3330
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3331
|
+
/** Errors encountered during execution of the mutation. */
|
|
3332
|
+
errors?: Maybe<Array<Error>>;
|
|
3333
|
+
/** The deleted user. */
|
|
3334
|
+
user?: Maybe<User>;
|
|
3335
|
+
}
|
|
3336
|
+
|
|
3076
3337
|
/** Autogenerated input type of UsersEmailVerification */
|
|
3077
3338
|
export interface UsersEmailVerificationInput {
|
|
3078
3339
|
/** A unique identifier for the client performing the mutation. */
|
package/package.json
CHANGED