@code0-tech/sagittarius-graphql-types 0.0.0-a395eea54741fc1bb9649341ff6f082cc1c3e67e → 0.0.0-f91466f0f343596ad170e7e5c5316a70b072594d
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 +432 -1596
- package/index.js +0 -0
- package/package.json +5 -4
package/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export type Maybe<T> = T | null;
|
|
2
2
|
export type InputMaybe<T> = Maybe<T>;
|
|
3
|
-
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] }
|
|
4
|
-
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> }
|
|
5
|
-
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> }
|
|
6
|
-
export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never }
|
|
7
|
-
export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }
|
|
3
|
+
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
|
|
4
|
+
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
|
|
5
|
+
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
|
|
6
|
+
export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
|
|
7
|
+
export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
|
|
8
8
|
/** All built-in and custom scalars, mapped to their actual values */
|
|
9
9
|
export interface Scalars {
|
|
10
10
|
ID: { input: `gid://sagittarius//${number}`; output: `gid://sagittarius//${number}`; }
|
|
@@ -12,36 +12,67 @@ export interface Scalars {
|
|
|
12
12
|
Boolean: { input: boolean; output: boolean; }
|
|
13
13
|
Int: { input: number; output: number; }
|
|
14
14
|
Float: { input: number; output: number; }
|
|
15
|
+
/** A unique identifier for all DataType entities of the application */
|
|
15
16
|
DataTypeID: { input: `gid://sagittarius/DataType/${number}`; output: `gid://sagittarius/DataType/${number}`; }
|
|
17
|
+
/** A unique identifier for all DataTypeIdentifier entities of the application */
|
|
16
18
|
DataTypeIdentifierID: { input: `gid://sagittarius/DataTypeIdentifier/${number}`; output: `gid://sagittarius/DataTypeIdentifier/${number}`; }
|
|
19
|
+
/** A unique identifier for all DataTypeRule entities of the application */
|
|
17
20
|
DataTypeRuleID: { input: `gid://sagittarius/DataTypeRule/${number}`; output: `gid://sagittarius/DataTypeRule/${number}`; }
|
|
21
|
+
/** A unique identifier for all Flow entities of the application */
|
|
18
22
|
FlowID: { input: `gid://sagittarius/Flow/${number}`; output: `gid://sagittarius/Flow/${number}`; }
|
|
23
|
+
/** A unique identifier for all FlowSetting entities of the application */
|
|
19
24
|
FlowSettingID: { input: `gid://sagittarius/FlowSetting/${number}`; output: `gid://sagittarius/FlowSetting/${number}`; }
|
|
25
|
+
/** A unique identifier for all FlowType entities of the application */
|
|
20
26
|
FlowTypeID: { input: `gid://sagittarius/FlowType/${number}`; output: `gid://sagittarius/FlowType/${number}`; }
|
|
27
|
+
/** A unique identifier for all FlowTypeSetting entities of the application */
|
|
21
28
|
FlowTypeSettingID: { input: `gid://sagittarius/FlowTypeSetting/${number}`; output: `gid://sagittarius/FlowTypeSetting/${number}`; }
|
|
22
|
-
|
|
23
|
-
GenericCombinationStrategyID: { input: `gid://sagittarius/GenericCombinationStrategy/${number}`; output: `gid://sagittarius/GenericCombinationStrategy/${number}`; }
|
|
29
|
+
/** A unique identifier for all GenericMapper entities of the application */
|
|
24
30
|
GenericMapperID: { input: `gid://sagittarius/GenericMapper/${number}`; output: `gid://sagittarius/GenericMapper/${number}`; }
|
|
31
|
+
/** A unique identifier for all GenericType entities of the application */
|
|
25
32
|
GenericTypeID: { input: `gid://sagittarius/GenericType/${number}`; output: `gid://sagittarius/GenericType/${number}`; }
|
|
33
|
+
/** Represents untyped JSON */
|
|
26
34
|
JSON: { input: any; output: any; }
|
|
35
|
+
/** A unique identifier for all Namespace entities of the application */
|
|
27
36
|
NamespaceID: { input: `gid://sagittarius/Namespace/${number}`; output: `gid://sagittarius/Namespace/${number}`; }
|
|
37
|
+
/** A unique identifier for all NamespaceLicense entities of the application */
|
|
28
38
|
NamespaceLicenseID: { input: `gid://sagittarius/NamespaceLicense/${number}`; output: `gid://sagittarius/NamespaceLicense/${number}`; }
|
|
39
|
+
/** A unique identifier for all NamespaceMember entities of the application */
|
|
29
40
|
NamespaceMemberID: { input: `gid://sagittarius/NamespaceMember/${number}`; output: `gid://sagittarius/NamespaceMember/${number}`; }
|
|
41
|
+
/** A unique identifier for all NamespaceMemberRole entities of the application */
|
|
30
42
|
NamespaceMemberRoleID: { input: `gid://sagittarius/NamespaceMemberRole/${number}`; output: `gid://sagittarius/NamespaceMemberRole/${number}`; }
|
|
43
|
+
/** A unique identifier for all NamespaceProject entities of the application */
|
|
31
44
|
NamespaceProjectID: { input: `gid://sagittarius/NamespaceProject/${number}`; output: `gid://sagittarius/NamespaceProject/${number}`; }
|
|
45
|
+
/** A unique identifier for all NamespaceRole entities of the application */
|
|
32
46
|
NamespaceRoleID: { input: `gid://sagittarius/NamespaceRole/${number}`; output: `gid://sagittarius/NamespaceRole/${number}`; }
|
|
47
|
+
/** A unique identifier for all NodeFunction entities of the application */
|
|
33
48
|
NodeFunctionID: { input: `gid://sagittarius/NodeFunction/${number}`; output: `gid://sagittarius/NodeFunction/${number}`; }
|
|
49
|
+
/** A unique identifier for all NodeParameter entities of the application */
|
|
34
50
|
NodeParameterID: { input: `gid://sagittarius/NodeParameter/${number}`; output: `gid://sagittarius/NodeParameter/${number}`; }
|
|
51
|
+
/** A unique identifier for all Organization entities of the application */
|
|
35
52
|
OrganizationID: { input: `gid://sagittarius/Organization/${number}`; output: `gid://sagittarius/Organization/${number}`; }
|
|
36
|
-
|
|
53
|
+
/** A unique identifier for all ReferencePath entities of the application */
|
|
37
54
|
ReferencePathID: { input: `gid://sagittarius/ReferencePath/${number}`; output: `gid://sagittarius/ReferencePath/${number}`; }
|
|
55
|
+
/** A unique identifier for all ReferenceValue entities of the application */
|
|
38
56
|
ReferenceValueID: { input: `gid://sagittarius/ReferenceValue/${number}`; output: `gid://sagittarius/ReferenceValue/${number}`; }
|
|
57
|
+
/** A unique identifier for all RuntimeFunctionDefinition entities of the application */
|
|
39
58
|
RuntimeFunctionDefinitionID: { input: `gid://sagittarius/RuntimeFunctionDefinition/${number}`; output: `gid://sagittarius/RuntimeFunctionDefinition/${number}`; }
|
|
59
|
+
/** A unique identifier for all Runtime entities of the application */
|
|
40
60
|
RuntimeID: { input: `gid://sagittarius/Runtime/${number}`; output: `gid://sagittarius/Runtime/${number}`; }
|
|
61
|
+
/** A unique identifier for all RuntimeParameterDefinition entities of the application */
|
|
41
62
|
RuntimeParameterDefinitionID: { input: `gid://sagittarius/RuntimeParameterDefinition/${number}`; output: `gid://sagittarius/RuntimeParameterDefinition/${number}`; }
|
|
63
|
+
/**
|
|
64
|
+
* Time represented in ISO 8601.
|
|
65
|
+
*
|
|
66
|
+
* For example: "2023-12-15T17:31:00Z".
|
|
67
|
+
*/
|
|
42
68
|
Time: { input: string; output: string; }
|
|
69
|
+
/** A unique identifier for all Types::FlowType entities of the application */
|
|
70
|
+
TypesFlowTypeID: { input: `gid://sagittarius/TypesFlowType/${number}`; output: `gid://sagittarius/TypesFlowType/${number}`; }
|
|
71
|
+
/** A unique identifier for all User entities of the application */
|
|
43
72
|
UserID: { input: `gid://sagittarius/User/${number}`; output: `gid://sagittarius/User/${number}`; }
|
|
73
|
+
/** A unique identifier for all UserIdentity entities of the application */
|
|
44
74
|
UserIdentityID: { input: `gid://sagittarius/UserIdentity/${number}`; output: `gid://sagittarius/UserIdentity/${number}`; }
|
|
75
|
+
/** A unique identifier for all UserSession entities of the application */
|
|
45
76
|
UserSessionID: { input: `gid://sagittarius/UserSession/${number}`; output: `gid://sagittarius/UserSession/${number}`; }
|
|
46
77
|
}
|
|
47
78
|
|
|
@@ -49,72 +80,26 @@ export interface Scalars {
|
|
|
49
80
|
export interface ActiveModelError {
|
|
50
81
|
__typename?: 'ActiveModelError';
|
|
51
82
|
/** The affected attribute on the model */
|
|
52
|
-
attribute
|
|
83
|
+
attribute: Scalars['String']['output'];
|
|
53
84
|
/** The validation type that failed for the attribute */
|
|
54
|
-
type
|
|
55
|
-
}
|
|
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>;
|
|
85
|
+
type: Scalars['String']['output'];
|
|
72
86
|
}
|
|
73
87
|
|
|
74
88
|
/** Represents the application settings */
|
|
75
89
|
export interface ApplicationSettings {
|
|
76
90
|
__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']>;
|
|
83
91
|
/** Shows if organization creation is restricted to administrators */
|
|
84
|
-
organizationCreationRestricted
|
|
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']>;
|
|
92
|
+
organizationCreationRestricted: Scalars['Boolean']['output'];
|
|
89
93
|
/** Shows if user registration is enabled */
|
|
90
|
-
userRegistrationEnabled
|
|
91
|
-
}
|
|
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']>;
|
|
94
|
+
userRegistrationEnabled: Scalars['Boolean']['output'];
|
|
100
95
|
}
|
|
101
96
|
|
|
102
97
|
/** Autogenerated input type of ApplicationSettingsUpdate */
|
|
103
98
|
export interface ApplicationSettingsUpdateInput {
|
|
104
|
-
/** Set if admin status can be queried by non-administrators. */
|
|
105
|
-
adminStatusVisible?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106
99
|
/** A unique identifier for the client performing the mutation. */
|
|
107
100
|
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']>;
|
|
112
101
|
/** Set if organization creation is restricted to administrators. */
|
|
113
102
|
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']>;
|
|
118
103
|
/** Set if user registration is enabled. */
|
|
119
104
|
userRegistrationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
120
105
|
}
|
|
@@ -127,54 +112,63 @@ export interface ApplicationSettingsUpdatePayload {
|
|
|
127
112
|
/** A unique identifier for the client performing the mutation. */
|
|
128
113
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
129
114
|
/** Errors encountered during execution of the mutation. */
|
|
130
|
-
errors
|
|
131
|
-
}
|
|
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']>;
|
|
115
|
+
errors: Array<Error>;
|
|
148
116
|
}
|
|
149
117
|
|
|
150
118
|
/** Objects that can present an authentication */
|
|
151
119
|
export type Authentication = UserSession;
|
|
152
120
|
|
|
121
|
+
/** Represents a rule that can be applied to a data type. */
|
|
122
|
+
export type Config = ContainsKeyConfig | ContainsTypeConfig | InputTypesConfig | ItemOfCollectionConfig | NumberRangeConfig | RegexConfig | ReturnTypeConfig;
|
|
123
|
+
|
|
124
|
+
/** Represents a rule that can be applied to a data type. */
|
|
125
|
+
export interface ContainsKeyConfig {
|
|
126
|
+
__typename?: 'ContainsKeyConfig';
|
|
127
|
+
/** The identifier of the data type this rule belongs to */
|
|
128
|
+
dataTypeIdentifier: DataTypeIdentifier;
|
|
129
|
+
/** The key of the rule */
|
|
130
|
+
key: Scalars['String']['output'];
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/** Represents a rule that can be applied to a data type. */
|
|
134
|
+
export interface ContainsTypeConfig {
|
|
135
|
+
__typename?: 'ContainsTypeConfig';
|
|
136
|
+
/** The identifier of the data type this rule belongs to */
|
|
137
|
+
dataTypeIdentifier: DataTypeIdentifier;
|
|
138
|
+
}
|
|
139
|
+
|
|
153
140
|
/** Represents a DataType */
|
|
154
141
|
export interface DataType {
|
|
155
142
|
__typename?: 'DataType';
|
|
156
|
-
/** Name of the function */
|
|
157
|
-
aliases?: Maybe<Array<Translation>>;
|
|
158
143
|
/** Time when this DataType was created */
|
|
159
|
-
createdAt
|
|
160
|
-
/** Display message of the function */
|
|
161
|
-
displayMessages?: Maybe<Array<Translation>>;
|
|
144
|
+
createdAt: Scalars['Time']['output'];
|
|
162
145
|
/** Generic keys of the datatype */
|
|
163
146
|
genericKeys?: Maybe<Array<Scalars['String']['output']>>;
|
|
164
147
|
/** Global ID of this DataType */
|
|
165
|
-
id
|
|
148
|
+
id: Scalars['DataTypeID']['output'];
|
|
166
149
|
/** The identifier scoped to the namespace */
|
|
167
|
-
identifier
|
|
150
|
+
identifier: Scalars['String']['output'];
|
|
168
151
|
/** Names of the flow type setting */
|
|
169
|
-
name
|
|
152
|
+
name: TranslationConnection;
|
|
153
|
+
/** The namespace where this datatype belongs to */
|
|
154
|
+
namespace?: Maybe<Namespace>;
|
|
155
|
+
/** The parent datatype */
|
|
156
|
+
parent?: Maybe<DataTypeIdentifier>;
|
|
170
157
|
/** Rules of the datatype */
|
|
171
|
-
rules
|
|
172
|
-
/** The runtime where this datatype belongs to */
|
|
173
|
-
runtime?: Maybe<Runtime>;
|
|
158
|
+
rules: DataTypeRuleConnection;
|
|
174
159
|
/** Time when this DataType was last updated */
|
|
175
|
-
updatedAt
|
|
160
|
+
updatedAt: Scalars['Time']['output'];
|
|
176
161
|
/** The type of the datatype */
|
|
177
|
-
variant
|
|
162
|
+
variant: DataTypeVariant;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
/** Represents a DataType */
|
|
167
|
+
export interface DataTypeNameArgs {
|
|
168
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
169
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
170
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
178
172
|
}
|
|
179
173
|
|
|
180
174
|
|
|
@@ -190,20 +184,20 @@ export interface DataTypeRulesArgs {
|
|
|
190
184
|
export interface DataTypeConnection {
|
|
191
185
|
__typename?: 'DataTypeConnection';
|
|
192
186
|
/** Total count of collection. */
|
|
193
|
-
count
|
|
187
|
+
count: Scalars['Int']['output'];
|
|
194
188
|
/** A list of edges. */
|
|
195
189
|
edges?: Maybe<Array<Maybe<DataTypeEdge>>>;
|
|
196
190
|
/** A list of nodes. */
|
|
197
191
|
nodes?: Maybe<Array<Maybe<DataType>>>;
|
|
198
192
|
/** Information to aid in pagination. */
|
|
199
|
-
pageInfo
|
|
193
|
+
pageInfo: PageInfo;
|
|
200
194
|
}
|
|
201
195
|
|
|
202
196
|
/** An edge in a connection. */
|
|
203
197
|
export interface DataTypeEdge {
|
|
204
198
|
__typename?: 'DataTypeEdge';
|
|
205
199
|
/** A cursor for use in pagination. */
|
|
206
|
-
cursor
|
|
200
|
+
cursor: Scalars['String']['output'];
|
|
207
201
|
/** The item at the end of the edge. */
|
|
208
202
|
node?: Maybe<DataType>;
|
|
209
203
|
}
|
|
@@ -212,7 +206,7 @@ export interface DataTypeEdge {
|
|
|
212
206
|
export interface DataTypeIdentifier {
|
|
213
207
|
__typename?: 'DataTypeIdentifier';
|
|
214
208
|
/** Time when this DataTypeIdentifier was created */
|
|
215
|
-
createdAt
|
|
209
|
+
createdAt: Scalars['Time']['output'];
|
|
216
210
|
/** The data type of the data type identifier. */
|
|
217
211
|
dataType?: Maybe<DataType>;
|
|
218
212
|
/** The generic key of the data type identifier. */
|
|
@@ -220,9 +214,9 @@ export interface DataTypeIdentifier {
|
|
|
220
214
|
/** The generic type of the data type identifier. */
|
|
221
215
|
genericType?: Maybe<GenericType>;
|
|
222
216
|
/** Global ID of this DataTypeIdentifier */
|
|
223
|
-
id
|
|
217
|
+
id: Scalars['DataTypeIdentifierID']['output'];
|
|
224
218
|
/** Time when this DataTypeIdentifier was last updated */
|
|
225
|
-
updatedAt
|
|
219
|
+
updatedAt: Scalars['Time']['output'];
|
|
226
220
|
}
|
|
227
221
|
|
|
228
222
|
/** Input type for data type identifier */
|
|
@@ -239,127 +233,51 @@ export interface DataTypeIdentifierInput {
|
|
|
239
233
|
export interface DataTypeRule {
|
|
240
234
|
__typename?: 'DataTypeRule';
|
|
241
235
|
/** The configuration of the rule */
|
|
242
|
-
config
|
|
236
|
+
config: Config;
|
|
243
237
|
/** Time when this DataTypeRule was created */
|
|
244
|
-
createdAt
|
|
238
|
+
createdAt: Scalars['Time']['output'];
|
|
245
239
|
/** Global ID of this DataTypeRule */
|
|
246
|
-
id
|
|
240
|
+
id: Scalars['DataTypeRuleID']['output'];
|
|
247
241
|
/** Time when this DataTypeRule was last updated */
|
|
248
|
-
updatedAt
|
|
242
|
+
updatedAt: Scalars['Time']['output'];
|
|
249
243
|
/** The type of the rule */
|
|
250
|
-
variant
|
|
244
|
+
variant: DataTypeRulesDataTypeRuleVariant;
|
|
251
245
|
}
|
|
252
246
|
|
|
253
247
|
/** The connection type for DataTypeRule. */
|
|
254
248
|
export interface DataTypeRuleConnection {
|
|
255
249
|
__typename?: 'DataTypeRuleConnection';
|
|
256
250
|
/** Total count of collection. */
|
|
257
|
-
count
|
|
251
|
+
count: Scalars['Int']['output'];
|
|
258
252
|
/** A list of edges. */
|
|
259
253
|
edges?: Maybe<Array<Maybe<DataTypeRuleEdge>>>;
|
|
260
254
|
/** A list of nodes. */
|
|
261
255
|
nodes?: Maybe<Array<Maybe<DataTypeRule>>>;
|
|
262
256
|
/** Information to aid in pagination. */
|
|
263
|
-
pageInfo
|
|
257
|
+
pageInfo: PageInfo;
|
|
264
258
|
}
|
|
265
259
|
|
|
266
260
|
/** An edge in a connection. */
|
|
267
261
|
export interface DataTypeRuleEdge {
|
|
268
262
|
__typename?: 'DataTypeRuleEdge';
|
|
269
263
|
/** A cursor for use in pagination. */
|
|
270
|
-
cursor
|
|
264
|
+
cursor: Scalars['String']['output'];
|
|
271
265
|
/** The item at the end of the edge. */
|
|
272
266
|
node?: Maybe<DataTypeRule>;
|
|
273
267
|
}
|
|
274
268
|
|
|
275
|
-
/** Represents a rule that can be applied to a data type. */
|
|
276
|
-
export type DataTypeRulesConfig = DataTypeRulesContainsKeyConfig | DataTypeRulesContainsTypeConfig | DataTypeRulesInputTypesConfig | DataTypeRulesItemOfCollectionConfig | DataTypeRulesNumberRangeConfig | DataTypeRulesParentTypeConfig | DataTypeRulesRegexConfig | DataTypeRulesReturnTypeConfig;
|
|
277
|
-
|
|
278
|
-
/** Represents a rule that can be applied to a data type. */
|
|
279
|
-
export interface DataTypeRulesContainsKeyConfig {
|
|
280
|
-
__typename?: 'DataTypeRulesContainsKeyConfig';
|
|
281
|
-
/** The identifier of the data type this rule belongs to */
|
|
282
|
-
dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
|
|
283
|
-
/** The key of the rule */
|
|
284
|
-
key?: Maybe<Scalars['String']['output']>;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
/** Represents a rule that can be applied to a data type. */
|
|
288
|
-
export interface DataTypeRulesContainsTypeConfig {
|
|
289
|
-
__typename?: 'DataTypeRulesContainsTypeConfig';
|
|
290
|
-
/** The identifier of the data type this rule belongs to */
|
|
291
|
-
dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
/** Represents a subtype of input type configuration for a input data type. */
|
|
295
|
-
export interface DataTypeRulesInputTypeConfig {
|
|
296
|
-
__typename?: 'DataTypeRulesInputTypeConfig';
|
|
297
|
-
/** The identifier of the data type this input type belongs to */
|
|
298
|
-
dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
|
|
299
|
-
/** The input identifier that this configuration applies to */
|
|
300
|
-
inputIdentifier?: Maybe<Scalars['String']['output']>;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
/** Represents a rule that can be applied to a data type. */
|
|
304
|
-
export interface DataTypeRulesInputTypesConfig {
|
|
305
|
-
__typename?: 'DataTypeRulesInputTypesConfig';
|
|
306
|
-
/** The input types that can be used in this data type rule */
|
|
307
|
-
inputTypes?: Maybe<Array<DataTypeRulesInputTypeConfig>>;
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
/** Represents a rule that can be applied to a data type. */
|
|
311
|
-
export interface DataTypeRulesItemOfCollectionConfig {
|
|
312
|
-
__typename?: 'DataTypeRulesItemOfCollectionConfig';
|
|
313
|
-
/** The items that can be configured for this rule. */
|
|
314
|
-
items?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
/** Represents a rule that can be applied to a data type. */
|
|
318
|
-
export interface DataTypeRulesNumberRangeConfig {
|
|
319
|
-
__typename?: 'DataTypeRulesNumberRangeConfig';
|
|
320
|
-
/** The minimum value of the range */
|
|
321
|
-
from?: Maybe<Scalars['Int']['output']>;
|
|
322
|
-
/** The step value for the range, if applicable */
|
|
323
|
-
steps?: Maybe<Scalars['Int']['output']>;
|
|
324
|
-
/** The maximum value of the range */
|
|
325
|
-
to?: Maybe<Scalars['Int']['output']>;
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
/** Represents a rule that can be applied to a data type. */
|
|
329
|
-
export interface DataTypeRulesParentTypeConfig {
|
|
330
|
-
__typename?: 'DataTypeRulesParentTypeConfig';
|
|
331
|
-
/** The data type identifier for the parent type. */
|
|
332
|
-
dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
/** Represents a rule that can be applied to a data type. */
|
|
336
|
-
export interface DataTypeRulesRegexConfig {
|
|
337
|
-
__typename?: 'DataTypeRulesRegexConfig';
|
|
338
|
-
/** The regex pattern to match against the data type value. */
|
|
339
|
-
pattern?: Maybe<Scalars['String']['output']>;
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
/** Represents a rule that can be applied to a data type. */
|
|
343
|
-
export interface DataTypeRulesReturnTypeConfig {
|
|
344
|
-
__typename?: 'DataTypeRulesReturnTypeConfig';
|
|
345
|
-
/** The data type identifier for the return type. */
|
|
346
|
-
dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
|
|
347
|
-
}
|
|
348
|
-
|
|
349
269
|
/** The type of rule that can be applied to a data type. */
|
|
350
|
-
export
|
|
270
|
+
export enum DataTypeRulesDataTypeRuleVariant {
|
|
351
271
|
/** The rule checks if a key is present in the data type. */
|
|
352
272
|
ContainsKey = 'CONTAINS_KEY',
|
|
353
273
|
/** The rule checks if a specific type is present in the data type. */
|
|
354
274
|
ContainsType = 'CONTAINS_TYPE',
|
|
355
275
|
/** The rule checks if the data type matches a specific input type. */
|
|
356
|
-
|
|
276
|
+
InputType = 'INPUT_TYPE',
|
|
357
277
|
/** The rule checks if an item is part of a collection in the data type. */
|
|
358
278
|
ItemOfCollection = 'ITEM_OF_COLLECTION',
|
|
359
279
|
/** The rule checks if a number falls within a specified range. */
|
|
360
280
|
NumberRange = 'NUMBER_RANGE',
|
|
361
|
-
/** The rule checks if the data type is a child of a specific parent type. */
|
|
362
|
-
ParentType = 'PARENT_TYPE',
|
|
363
281
|
/** The rule checks if a string matches a specified regular expression. */
|
|
364
282
|
Regex = 'REGEX',
|
|
365
283
|
/** The rule checks if the data type matches a specific return type. */
|
|
@@ -367,7 +285,7 @@ export const enum DataTypeRulesVariant {
|
|
|
367
285
|
}
|
|
368
286
|
|
|
369
287
|
/** Represent all available types of a datatype */
|
|
370
|
-
export
|
|
288
|
+
export enum DataTypeVariant {
|
|
371
289
|
/** Represents an array */
|
|
372
290
|
Array = 'ARRAY',
|
|
373
291
|
/** Represents an data type containing a data type */
|
|
@@ -384,9 +302,6 @@ export const enum DataTypeVariant {
|
|
|
384
302
|
Type = 'TYPE'
|
|
385
303
|
}
|
|
386
304
|
|
|
387
|
-
/** Represents a detailed error with either a message or an active model error */
|
|
388
|
-
export type DetailedError = ActiveModelError | FlowValidationError | MessageError;
|
|
389
|
-
|
|
390
305
|
/** Autogenerated input type of Echo */
|
|
391
306
|
export interface EchoInput {
|
|
392
307
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -401,265 +316,41 @@ export interface EchoPayload {
|
|
|
401
316
|
/** A unique identifier for the client performing the mutation. */
|
|
402
317
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
403
318
|
/** Errors encountered during execution of the mutation. */
|
|
404
|
-
errors
|
|
319
|
+
errors: Array<Error>;
|
|
405
320
|
/** Message returned to the user. */
|
|
406
321
|
message?: Maybe<Scalars['String']['output']>;
|
|
407
322
|
}
|
|
408
323
|
|
|
409
324
|
/** Objects that can present an error */
|
|
410
|
-
export
|
|
411
|
-
__typename?: 'Error';
|
|
412
|
-
/** Detailed validation errors if applicable */
|
|
413
|
-
details?: Maybe<Array<DetailedError>>;
|
|
414
|
-
/** The code representing the error type */
|
|
415
|
-
errorCode?: Maybe<ErrorCodeEnum>;
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
/** Represents the available error responses */
|
|
419
|
-
export const enum ErrorCodeEnum {
|
|
420
|
-
/** This action would remove the last administrative role */
|
|
421
|
-
CannotDeleteLastAdminRole = 'CANNOT_DELETE_LAST_ADMIN_ROLE',
|
|
422
|
-
/** Only administrators can modify admin status of users */
|
|
423
|
-
CannotModifyAdmin = 'CANNOT_MODIFY_ADMIN',
|
|
424
|
-
/** Users cannot modify their own admin status */
|
|
425
|
-
CannotModifyOwnAdmin = 'CANNOT_MODIFY_OWN_ADMIN',
|
|
426
|
-
/** This action would remove the last administrator */
|
|
427
|
-
CannotRemoveLastAdministrator = 'CANNOT_REMOVE_LAST_ADMINISTRATOR',
|
|
428
|
-
/** This action would remove the last administrative ability */
|
|
429
|
-
CannotRemoveLastAdminAbility = 'CANNOT_REMOVE_LAST_ADMIN_ABILITY',
|
|
430
|
-
/** The data type identifier with the given identifier was not found */
|
|
431
|
-
DataTypeIdentifierNotFound = 'DATA_TYPE_IDENTIFIER_NOT_FOUND',
|
|
432
|
-
/** The data type with the given identifier was not found */
|
|
433
|
-
DataTypeNotFound = 'DATA_TYPE_NOT_FOUND',
|
|
434
|
-
/** Failed to send the email verification */
|
|
435
|
-
EmailVerificationSendFailed = 'EMAIL_VERIFICATION_SEND_FAILED',
|
|
436
|
-
/** This external identity does not exist */
|
|
437
|
-
ExternalIdentityDoesNotExist = 'EXTERNAL_IDENTITY_DOES_NOT_EXIST',
|
|
438
|
-
/** The old backup codes could not be deleted */
|
|
439
|
-
FailedToInvalidateOldBackupCodes = 'FAILED_TO_INVALIDATE_OLD_BACKUP_CODES',
|
|
440
|
-
/** Failed to reset the user password */
|
|
441
|
-
FailedToResetPassword = 'FAILED_TO_RESET_PASSWORD',
|
|
442
|
-
/** The new backup codes could not be saved */
|
|
443
|
-
FailedToSaveValidBackupCode = 'FAILED_TO_SAVE_VALID_BACKUP_CODE',
|
|
444
|
-
/** The flow with the given identifier was not found */
|
|
445
|
-
FlowNotFound = 'FLOW_NOT_FOUND',
|
|
446
|
-
/** The flow type with the given identifier was not found */
|
|
447
|
-
FlowTypeNotFound = 'FLOW_TYPE_NOT_FOUND',
|
|
448
|
-
/** The flow validation has failed */
|
|
449
|
-
FlowValidationFailed = 'FLOW_VALIDATION_FAILED',
|
|
450
|
-
/** The id for the function value node does not exist */
|
|
451
|
-
FunctionValueNotFound = 'FUNCTION_VALUE_NOT_FOUND',
|
|
452
|
-
/** The given key was not found in the data type */
|
|
453
|
-
GenericKeyNotFound = 'GENERIC_KEY_NOT_FOUND',
|
|
454
|
-
/** The external identity with the given identifier was not found */
|
|
455
|
-
IdentityNotFound = 'IDENTITY_NOT_FOUND',
|
|
456
|
-
/** Failed to validate the external identity */
|
|
457
|
-
IdentityValidationFailed = 'IDENTITY_VALIDATION_FAILED',
|
|
458
|
-
/** Resources are from different namespaces */
|
|
459
|
-
InconsistentNamespace = 'INCONSISTENT_NAMESPACE',
|
|
460
|
-
/** The attachment is invalid because of active model errors */
|
|
461
|
-
InvalidAttachment = 'INVALID_ATTACHMENT',
|
|
462
|
-
/** The data type is invalid because of active model errors */
|
|
463
|
-
InvalidDataType = 'INVALID_DATA_TYPE',
|
|
464
|
-
/** This external identity is invalid */
|
|
465
|
-
InvalidExternalIdentity = 'INVALID_EXTERNAL_IDENTITY',
|
|
466
|
-
/** The flow is invalid because of active model errors */
|
|
467
|
-
InvalidFlow = 'INVALID_FLOW',
|
|
468
|
-
/** The flow setting is invalid because of active model errors */
|
|
469
|
-
InvalidFlowSetting = 'INVALID_FLOW_SETTING',
|
|
470
|
-
/** The flow type is invalid because of active model errors */
|
|
471
|
-
InvalidFlowType = 'INVALID_FLOW_TYPE',
|
|
472
|
-
/** The generic mapper is invalid because of active model errors */
|
|
473
|
-
InvalidGenericMapper = 'INVALID_GENERIC_MAPPER',
|
|
474
|
-
/** Invalid login data provided */
|
|
475
|
-
InvalidLoginData = 'INVALID_LOGIN_DATA',
|
|
476
|
-
/** The namespace license is invalid because of active model errors */
|
|
477
|
-
InvalidNamespaceLicense = 'INVALID_NAMESPACE_LICENSE',
|
|
478
|
-
/** The namespace member is invalid because of active model errors */
|
|
479
|
-
InvalidNamespaceMember = 'INVALID_NAMESPACE_MEMBER',
|
|
480
|
-
/** The namespace project is invalid because of active model errors */
|
|
481
|
-
InvalidNamespaceProject = 'INVALID_NAMESPACE_PROJECT',
|
|
482
|
-
/** The namespace role is invalid because of active model errors */
|
|
483
|
-
InvalidNamespaceRole = 'INVALID_NAMESPACE_ROLE',
|
|
484
|
-
/** The node function is invalid */
|
|
485
|
-
InvalidNodeFunction = 'INVALID_NODE_FUNCTION',
|
|
486
|
-
/** The node parameter is invalid */
|
|
487
|
-
InvalidNodeParameter = 'INVALID_NODE_PARAMETER',
|
|
488
|
-
/** The organization is invalid because of active model errors */
|
|
489
|
-
InvalidOrganization = 'INVALID_ORGANIZATION',
|
|
490
|
-
/** The provided password repeat does not match the password */
|
|
491
|
-
InvalidPasswordRepeat = 'INVALID_PASSWORD_REPEAT',
|
|
492
|
-
/** The runtime is invalid because of active model errors */
|
|
493
|
-
InvalidRuntime = 'INVALID_RUNTIME',
|
|
494
|
-
/** The runtime function definition is invalid */
|
|
495
|
-
InvalidRuntimeFunctionDefinition = 'INVALID_RUNTIME_FUNCTION_DEFINITION',
|
|
496
|
-
/** The runtime function ID is invalid */
|
|
497
|
-
InvalidRuntimeFunctionId = 'INVALID_RUNTIME_FUNCTION_ID',
|
|
498
|
-
/** The runtime parameter definition is invalid */
|
|
499
|
-
InvalidRuntimeParameterDefinition = 'INVALID_RUNTIME_PARAMETER_DEFINITION',
|
|
500
|
-
/** The runtime parameter ID is invalid */
|
|
501
|
-
InvalidRuntimeParameterId = 'INVALID_RUNTIME_PARAMETER_ID',
|
|
502
|
-
/** Invalid setting provided */
|
|
503
|
-
InvalidSetting = 'INVALID_SETTING',
|
|
504
|
-
/** The TOTP secret is invalid or cannot be verified */
|
|
505
|
-
InvalidTotpSecret = 'INVALID_TOTP_SECRET',
|
|
506
|
-
/** The user is invalid because of active model errors */
|
|
507
|
-
InvalidUser = 'INVALID_USER',
|
|
508
|
-
/** The user identity is invalid because of active model errors */
|
|
509
|
-
InvalidUserIdentity = 'INVALID_USER_IDENTITY',
|
|
510
|
-
/** The user session is invalid because of active model errors */
|
|
511
|
-
InvalidUserSession = 'INVALID_USER_SESSION',
|
|
512
|
-
/** Invalid verification code provided */
|
|
513
|
-
InvalidVerificationCode = 'INVALID_VERIFICATION_CODE',
|
|
514
|
-
/** The namespace license with the given identifier was not found */
|
|
515
|
-
LicenseNotFound = 'LICENSE_NOT_FOUND',
|
|
516
|
-
/** Failed to load user identity from external provider */
|
|
517
|
-
LoadingIdentityFailed = 'LOADING_IDENTITY_FAILED',
|
|
518
|
-
/** Invalid MFA data provided */
|
|
519
|
-
MfaFailed = 'MFA_FAILED',
|
|
520
|
-
/** MFA is required */
|
|
521
|
-
MfaRequired = 'MFA_REQUIRED',
|
|
522
|
-
/** The primary runtime has more definitions than this one */
|
|
523
|
-
MissingDefinition = 'MISSING_DEFINITION',
|
|
524
|
-
/** This external identity is missing data */
|
|
525
|
-
MissingIdentityData = 'MISSING_IDENTITY_DATA',
|
|
526
|
-
/** Not all required parameters are present */
|
|
527
|
-
MissingParameter = 'MISSING_PARAMETER',
|
|
528
|
-
/** The user is not permitted to perform this operation */
|
|
529
|
-
MissingPermission = 'MISSING_PERMISSION',
|
|
530
|
-
/** The project is missing a primary runtime */
|
|
531
|
-
MissingPrimaryRuntime = 'MISSING_PRIMARY_RUNTIME',
|
|
532
|
-
/** The namespace member with the given identifier was not found */
|
|
533
|
-
NamespaceMemberNotFound = 'NAMESPACE_MEMBER_NOT_FOUND',
|
|
534
|
-
/** The namespace with the given identifier was not found */
|
|
535
|
-
NamespaceNotFound = 'NAMESPACE_NOT_FOUND',
|
|
536
|
-
/** The namespace project with the given identifier was not found */
|
|
537
|
-
NamespaceProjectNotFound = 'NAMESPACE_PROJECT_NOT_FOUND',
|
|
538
|
-
/** The namespace role with the given identifier was not found */
|
|
539
|
-
NamespaceRoleNotFound = 'NAMESPACE_ROLE_NOT_FOUND',
|
|
540
|
-
/** The node with this id does not exist */
|
|
541
|
-
NodeNotFound = 'NODE_NOT_FOUND',
|
|
542
|
-
/** No data type identifier could be found for the given generic key */
|
|
543
|
-
NoDatatypeIdentifierForGenericKey = 'NO_DATATYPE_IDENTIFIER_FOR_GENERIC_KEY',
|
|
544
|
-
/** No data type could be found for the given identifier */
|
|
545
|
-
NoDataTypeForIdentifier = 'NO_DATA_TYPE_FOR_IDENTIFIER',
|
|
546
|
-
/** There are no free license seats to complete this operation */
|
|
547
|
-
NoFreeLicenseSeats = 'NO_FREE_LICENSE_SEATS',
|
|
548
|
-
/** No generic type could be found for the given identifier */
|
|
549
|
-
NoGenericTypeForIdentifier = 'NO_GENERIC_TYPE_FOR_IDENTIFIER',
|
|
550
|
-
/** The project does not have a primary runtime */
|
|
551
|
-
NoPrimaryRuntime = 'NO_PRIMARY_RUNTIME',
|
|
552
|
-
/** The organization with the given identifier was not found */
|
|
553
|
-
OrganizationNotFound = 'ORGANIZATION_NOT_FOUND',
|
|
554
|
-
/** The primary runtime has a newer definition than this one */
|
|
555
|
-
OutdatedDefinition = 'OUTDATED_DEFINITION',
|
|
556
|
-
/** @deprecated Outdated concept */
|
|
557
|
-
PrimaryLevelNotFound = 'PRIMARY_LEVEL_NOT_FOUND',
|
|
558
|
-
/** The namespace project with the given identifier was not found */
|
|
559
|
-
ProjectNotFound = 'PROJECT_NOT_FOUND',
|
|
560
|
-
/** A referenced value could not be found */
|
|
561
|
-
ReferencedValueNotFound = 'REFERENCED_VALUE_NOT_FOUND',
|
|
562
|
-
/** Self-registration is disabled */
|
|
563
|
-
RegistrationDisabled = 'REGISTRATION_DISABLED',
|
|
564
|
-
/** Resources are from different runtimes */
|
|
565
|
-
RuntimeMismatch = 'RUNTIME_MISMATCH',
|
|
566
|
-
/** The runtime with the given identifier was not found */
|
|
567
|
-
RuntimeNotFound = 'RUNTIME_NOT_FOUND',
|
|
568
|
-
/** @deprecated Outdated concept */
|
|
569
|
-
SecondaryLevelNotFound = 'SECONDARY_LEVEL_NOT_FOUND',
|
|
570
|
-
/** @deprecated Outdated concept */
|
|
571
|
-
TertiaryLevelExceedsParameters = 'TERTIARY_LEVEL_EXCEEDS_PARAMETERS',
|
|
572
|
-
/** This user already has TOTP set up */
|
|
573
|
-
TotpSecretAlreadySet = 'TOTP_SECRET_ALREADY_SET',
|
|
574
|
-
/** The user is not permitted to modify this field */
|
|
575
|
-
UnmodifiableField = 'UNMODIFIABLE_FIELD',
|
|
576
|
-
/** The user with the given identifier was not found */
|
|
577
|
-
UserNotFound = 'USER_NOT_FOUND',
|
|
578
|
-
/** The user session with the given identifier was not found */
|
|
579
|
-
UserSessionNotFound = 'USER_SESSION_NOT_FOUND',
|
|
580
|
-
/** Invalid TOTP code provided */
|
|
581
|
-
WrongTotp = 'WRONG_TOTP'
|
|
582
|
-
}
|
|
325
|
+
export type Error = ActiveModelError | MessageError;
|
|
583
326
|
|
|
584
327
|
/** Represents a flow */
|
|
585
328
|
export interface Flow {
|
|
586
329
|
__typename?: 'Flow';
|
|
587
330
|
/** Time when this Flow was created */
|
|
588
|
-
createdAt
|
|
331
|
+
createdAt: Scalars['Time']['output'];
|
|
589
332
|
/** Global ID of this Flow */
|
|
590
|
-
id
|
|
333
|
+
id: Scalars['FlowID']['output'];
|
|
591
334
|
/** The input data type of the flow */
|
|
592
335
|
inputType?: Maybe<DataType>;
|
|
593
|
-
/** Name of the flow */
|
|
594
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
595
|
-
/** Nodes of the flow */
|
|
596
|
-
nodes?: Maybe<NodeFunctionConnection>;
|
|
597
|
-
/** The project the flow belongs to */
|
|
598
|
-
project?: Maybe<NamespaceProject>;
|
|
599
336
|
/** The return data type of the flow */
|
|
600
337
|
returnType?: Maybe<DataType>;
|
|
601
338
|
/** The settings of the flow */
|
|
602
|
-
settings?: Maybe<
|
|
603
|
-
/** The
|
|
604
|
-
|
|
339
|
+
settings?: Maybe<Array<FlowSetting>>;
|
|
340
|
+
/** The starting node of the flow */
|
|
341
|
+
startingNode: NodeFunction;
|
|
605
342
|
/** The flow type of the flow */
|
|
606
|
-
type
|
|
343
|
+
type: FlowType;
|
|
607
344
|
/** Time when this Flow was last updated */
|
|
608
|
-
updatedAt
|
|
609
|
-
/** Abilities for the current user on this Flow */
|
|
610
|
-
userAbilities?: Maybe<FlowUserAbilities>;
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
/** Represents a flow */
|
|
615
|
-
export interface FlowNodesArgs {
|
|
616
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
617
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
618
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
619
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
/** Represents a flow */
|
|
624
|
-
export interface FlowSettingsArgs {
|
|
625
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
626
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
627
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
628
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
629
|
-
}
|
|
630
|
-
|
|
631
|
-
/** The connection type for Flow. */
|
|
632
|
-
export interface FlowConnection {
|
|
633
|
-
__typename?: 'FlowConnection';
|
|
634
|
-
/** Total count of collection. */
|
|
635
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
636
|
-
/** A list of edges. */
|
|
637
|
-
edges?: Maybe<Array<Maybe<FlowEdge>>>;
|
|
638
|
-
/** A list of nodes. */
|
|
639
|
-
nodes?: Maybe<Array<Maybe<Flow>>>;
|
|
640
|
-
/** Information to aid in pagination. */
|
|
641
|
-
pageInfo?: Maybe<PageInfo>;
|
|
642
|
-
}
|
|
643
|
-
|
|
644
|
-
/** An edge in a connection. */
|
|
645
|
-
export interface FlowEdge {
|
|
646
|
-
__typename?: 'FlowEdge';
|
|
647
|
-
/** A cursor for use in pagination. */
|
|
648
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
649
|
-
/** The item at the end of the edge. */
|
|
650
|
-
node?: Maybe<Flow>;
|
|
345
|
+
updatedAt: Scalars['Time']['output'];
|
|
651
346
|
}
|
|
652
347
|
|
|
653
348
|
/** Input type for creating or updating a flow */
|
|
654
349
|
export interface FlowInput {
|
|
655
|
-
/** The name of the flow */
|
|
656
|
-
name: Scalars['String']['input'];
|
|
657
|
-
/** The node functions of the flow */
|
|
658
|
-
nodes: Array<NodeFunctionInput>;
|
|
659
350
|
/** The settings of the flow */
|
|
660
351
|
settings?: InputMaybe<Array<FlowSettingInput>>;
|
|
661
352
|
/** The starting node of the flow */
|
|
662
|
-
|
|
353
|
+
startingNode: NodeFunctionInput;
|
|
663
354
|
/** The identifier of the flow type */
|
|
664
355
|
type: Scalars['FlowTypeID']['input'];
|
|
665
356
|
}
|
|
@@ -668,96 +359,86 @@ export interface FlowInput {
|
|
|
668
359
|
export interface FlowSetting {
|
|
669
360
|
__typename?: 'FlowSetting';
|
|
670
361
|
/** Time when this FlowSetting was created */
|
|
671
|
-
createdAt
|
|
362
|
+
createdAt: Scalars['Time']['output'];
|
|
672
363
|
/** The identifier of the flow setting */
|
|
673
|
-
|
|
364
|
+
flowSettingId: Scalars['String']['output'];
|
|
674
365
|
/** Global ID of this FlowSetting */
|
|
675
|
-
id
|
|
366
|
+
id: Scalars['FlowSettingID']['output'];
|
|
676
367
|
/** Time when this FlowSetting was last updated */
|
|
677
|
-
updatedAt
|
|
368
|
+
updatedAt: Scalars['Time']['output'];
|
|
678
369
|
/** The value of the flow setting */
|
|
679
|
-
value
|
|
680
|
-
}
|
|
681
|
-
|
|
682
|
-
/** The connection type for FlowSetting. */
|
|
683
|
-
export interface FlowSettingConnection {
|
|
684
|
-
__typename?: 'FlowSettingConnection';
|
|
685
|
-
/** Total count of collection. */
|
|
686
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
687
|
-
/** A list of edges. */
|
|
688
|
-
edges?: Maybe<Array<Maybe<FlowSettingEdge>>>;
|
|
689
|
-
/** A list of nodes. */
|
|
690
|
-
nodes?: Maybe<Array<Maybe<FlowSetting>>>;
|
|
691
|
-
/** Information to aid in pagination. */
|
|
692
|
-
pageInfo?: Maybe<PageInfo>;
|
|
693
|
-
}
|
|
694
|
-
|
|
695
|
-
/** An edge in a connection. */
|
|
696
|
-
export interface FlowSettingEdge {
|
|
697
|
-
__typename?: 'FlowSettingEdge';
|
|
698
|
-
/** A cursor for use in pagination. */
|
|
699
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
700
|
-
/** The item at the end of the edge. */
|
|
701
|
-
node?: Maybe<FlowSetting>;
|
|
370
|
+
value: Scalars['JSON']['output'];
|
|
702
371
|
}
|
|
703
372
|
|
|
704
373
|
/** Input type for flow settings */
|
|
705
374
|
export interface FlowSettingInput {
|
|
706
375
|
/** The identifier (not database id) of the flow setting */
|
|
707
|
-
|
|
376
|
+
flowSettingId: Scalars['String']['input'];
|
|
708
377
|
/** The value of the flow setting */
|
|
709
|
-
|
|
378
|
+
object: Scalars['JSON']['input'];
|
|
710
379
|
}
|
|
711
380
|
|
|
712
381
|
/** Represents a flow type */
|
|
713
382
|
export interface FlowType {
|
|
714
383
|
__typename?: 'FlowType';
|
|
715
|
-
/** Name of the function */
|
|
716
|
-
aliases?: Maybe<Array<Translation>>;
|
|
717
384
|
/** Time when this FlowType was created */
|
|
718
|
-
createdAt
|
|
385
|
+
createdAt: Scalars['Time']['output'];
|
|
719
386
|
/** Descriptions of the flow type */
|
|
720
|
-
descriptions?: Maybe<
|
|
721
|
-
/** Display message of the function */
|
|
722
|
-
displayMessages?: Maybe<Array<Translation>>;
|
|
387
|
+
descriptions?: Maybe<TranslationConnection>;
|
|
723
388
|
/** Editable status of the flow type */
|
|
724
|
-
editable
|
|
389
|
+
editable: Scalars['Boolean']['output'];
|
|
725
390
|
/** Flow type settings of the flow type */
|
|
726
|
-
flowTypeSettings
|
|
391
|
+
flowTypeSettings: Array<FlowTypeSetting>;
|
|
727
392
|
/** Global ID of this FlowType */
|
|
728
|
-
id
|
|
393
|
+
id: Scalars['TypesFlowTypeID']['output'];
|
|
729
394
|
/** Identifier of the flow type */
|
|
730
|
-
identifier
|
|
395
|
+
identifier: Scalars['String']['output'];
|
|
731
396
|
/** Input type of the flow type */
|
|
732
397
|
inputType?: Maybe<DataType>;
|
|
733
398
|
/** Names of the flow type */
|
|
734
|
-
names?: Maybe<
|
|
399
|
+
names?: Maybe<TranslationConnection>;
|
|
735
400
|
/** Return type of the flow type */
|
|
736
401
|
returnType?: Maybe<DataType>;
|
|
737
|
-
/** Runtime of the flow type */
|
|
738
|
-
runtime?: Maybe<Runtime>;
|
|
739
402
|
/** Time when this FlowType was last updated */
|
|
740
|
-
updatedAt
|
|
403
|
+
updatedAt: Scalars['Time']['output'];
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
/** Represents a flow type */
|
|
408
|
+
export interface FlowTypeDescriptionsArgs {
|
|
409
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
410
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
411
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
412
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
/** Represents a flow type */
|
|
417
|
+
export interface FlowTypeNamesArgs {
|
|
418
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
419
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
420
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
421
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
741
422
|
}
|
|
742
423
|
|
|
743
424
|
/** The connection type for FlowType. */
|
|
744
425
|
export interface FlowTypeConnection {
|
|
745
426
|
__typename?: 'FlowTypeConnection';
|
|
746
427
|
/** Total count of collection. */
|
|
747
|
-
count
|
|
428
|
+
count: Scalars['Int']['output'];
|
|
748
429
|
/** A list of edges. */
|
|
749
430
|
edges?: Maybe<Array<Maybe<FlowTypeEdge>>>;
|
|
750
431
|
/** A list of nodes. */
|
|
751
432
|
nodes?: Maybe<Array<Maybe<FlowType>>>;
|
|
752
433
|
/** Information to aid in pagination. */
|
|
753
|
-
pageInfo
|
|
434
|
+
pageInfo: PageInfo;
|
|
754
435
|
}
|
|
755
436
|
|
|
756
437
|
/** An edge in a connection. */
|
|
757
438
|
export interface FlowTypeEdge {
|
|
758
439
|
__typename?: 'FlowTypeEdge';
|
|
759
440
|
/** A cursor for use in pagination. */
|
|
760
|
-
cursor
|
|
441
|
+
cursor: Scalars['String']['output'];
|
|
761
442
|
/** The item at the end of the edge. */
|
|
762
443
|
node?: Maybe<FlowType>;
|
|
763
444
|
}
|
|
@@ -766,185 +447,62 @@ export interface FlowTypeEdge {
|
|
|
766
447
|
export interface FlowTypeSetting {
|
|
767
448
|
__typename?: 'FlowTypeSetting';
|
|
768
449
|
/** Time when this FlowTypeSetting was created */
|
|
769
|
-
createdAt
|
|
450
|
+
createdAt: Scalars['Time']['output'];
|
|
770
451
|
/** Data type of the flow type setting */
|
|
771
452
|
dataType?: Maybe<DataType>;
|
|
772
453
|
/** Descriptions of the flow type setting */
|
|
773
|
-
descriptions
|
|
454
|
+
descriptions: TranslationConnection;
|
|
774
455
|
/** Flow type of the flow type setting */
|
|
775
456
|
flowType?: Maybe<FlowType>;
|
|
776
457
|
/** Global ID of this FlowTypeSetting */
|
|
777
|
-
id
|
|
458
|
+
id: Scalars['FlowTypeSettingID']['output'];
|
|
778
459
|
/** Identifier of the flow type setting */
|
|
779
|
-
identifier
|
|
460
|
+
identifier: Scalars['String']['output'];
|
|
780
461
|
/** Names of the flow type setting */
|
|
781
|
-
names
|
|
462
|
+
names: TranslationConnection;
|
|
782
463
|
/** Unique status of the flow type setting */
|
|
783
|
-
unique
|
|
464
|
+
unique: Scalars['Boolean']['output'];
|
|
784
465
|
/** Time when this FlowTypeSetting was last updated */
|
|
785
|
-
updatedAt
|
|
786
|
-
}
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
/** Shows if the current user has the `delete_flow` ability on this Flow */
|
|
792
|
-
deleteFlow?: Maybe<Scalars['Boolean']['output']>;
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
/** Represents a flow validation error */
|
|
796
|
-
export interface FlowValidationError {
|
|
797
|
-
__typename?: 'FlowValidationError';
|
|
798
|
-
/** Additional details about the validation error */
|
|
799
|
-
details?: Maybe<ActiveModelError>;
|
|
800
|
-
/** The code representing the validation error type */
|
|
801
|
-
errorCode?: Maybe<FlowValidationErrorCodeEnum>;
|
|
802
|
-
/** The severity of the validation error */
|
|
803
|
-
severity?: Maybe<FlowValidationSeverityEnum>;
|
|
804
|
-
}
|
|
805
|
-
|
|
806
|
-
/** Represents the available error responses */
|
|
807
|
-
export const enum FlowValidationErrorCodeEnum {
|
|
808
|
-
/** The generic key for the data type identifier was not found. */
|
|
809
|
-
DataTypeIdentifierGenericKeyNotFound = 'DATA_TYPE_IDENTIFIER_GENERIC_KEY_NOT_FOUND',
|
|
810
|
-
/** The data type identifier runtime does not match the flow type runtime. */
|
|
811
|
-
DataTypeIdentifierRuntimeMismatch = 'DATA_TYPE_IDENTIFIER_RUNTIME_MISMATCH',
|
|
812
|
-
/** The data type rule model is invalid. */
|
|
813
|
-
DataTypeRuleModelInvalid = 'DATA_TYPE_RULE_MODEL_INVALID',
|
|
814
|
-
/** The data type runtime does not match the flow type runtime. */
|
|
815
|
-
DataTypeRuntimeMismatch = 'DATA_TYPE_RUNTIME_MISMATCH',
|
|
816
|
-
/** The flow setting model is invalid. */
|
|
817
|
-
FlowSettingModelInvalid = 'FLOW_SETTING_MODEL_INVALID',
|
|
818
|
-
/** The flow type runtime does not match the project primary runtime. */
|
|
819
|
-
FlowTypeRuntimeMismatch = 'FLOW_TYPE_RUNTIME_MISMATCH',
|
|
820
|
-
/** The node function runtime does not match the project primary runtime. */
|
|
821
|
-
NodeFunctionRuntimeMismatch = 'NODE_FUNCTION_RUNTIME_MISMATCH',
|
|
822
|
-
/** The project does not have a primary runtime set. */
|
|
823
|
-
NoPrimaryRuntime = 'NO_PRIMARY_RUNTIME'
|
|
824
|
-
}
|
|
825
|
-
|
|
826
|
-
/** Represents the severity of a flow validation error */
|
|
827
|
-
export const enum FlowValidationSeverityEnum {
|
|
828
|
-
/** A blocking validation error */
|
|
829
|
-
Error = 'ERROR',
|
|
830
|
-
/** A minor typographical issue can also be blocking */
|
|
831
|
-
Typo = 'TYPO',
|
|
832
|
-
/** A non-blocking validation warning */
|
|
833
|
-
Warning = 'WARNING',
|
|
834
|
-
/** A weak validation issue that may not need to be addressed */
|
|
835
|
-
Weak = 'WEAK'
|
|
836
|
-
}
|
|
837
|
-
|
|
838
|
-
/** Represents a function definition */
|
|
839
|
-
export interface FunctionDefinition {
|
|
840
|
-
__typename?: 'FunctionDefinition';
|
|
841
|
-
/** Name of the function */
|
|
842
|
-
aliases?: Maybe<Array<Translation>>;
|
|
843
|
-
/** Time when this FunctionDefinition was created */
|
|
844
|
-
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
845
|
-
/** Deprecation message of the function */
|
|
846
|
-
deprecationMessages?: Maybe<Array<Translation>>;
|
|
847
|
-
/** Description of the function */
|
|
848
|
-
descriptions?: Maybe<Array<Translation>>;
|
|
849
|
-
/** Display message of the function */
|
|
850
|
-
displayMessages?: Maybe<Array<Translation>>;
|
|
851
|
-
/** Documentation of the function */
|
|
852
|
-
documentations?: Maybe<Array<Translation>>;
|
|
853
|
-
/** Generic keys of the function */
|
|
854
|
-
genericKeys?: Maybe<Array<Scalars['String']['output']>>;
|
|
855
|
-
/** Global ID of this FunctionDefinition */
|
|
856
|
-
id?: Maybe<Scalars['FunctionDefinitionID']['output']>;
|
|
857
|
-
/** Identifier of the function */
|
|
858
|
-
identifier?: Maybe<Scalars['String']['output']>;
|
|
859
|
-
/** Name of the function */
|
|
860
|
-
names?: Maybe<Array<Translation>>;
|
|
861
|
-
/** Parameters of the function */
|
|
862
|
-
parameterDefinitions?: Maybe<ParameterDefinitionConnection>;
|
|
863
|
-
/** Return type of the function */
|
|
864
|
-
returnType?: Maybe<DataTypeIdentifier>;
|
|
865
|
-
/** Runtime function definition */
|
|
866
|
-
runtimeFunctionDefinition?: Maybe<RuntimeFunctionDefinition>;
|
|
867
|
-
/** Indicates if the function can throw an error */
|
|
868
|
-
throwsError?: Maybe<Scalars['Boolean']['output']>;
|
|
869
|
-
/** Time when this FunctionDefinition was last updated */
|
|
870
|
-
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
871
|
-
}
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
/** Represents a function definition */
|
|
875
|
-
export interface FunctionDefinitionParameterDefinitionsArgs {
|
|
466
|
+
updatedAt: Scalars['Time']['output'];
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
/** Represents a flow type setting */
|
|
471
|
+
export interface FlowTypeSettingDescriptionsArgs {
|
|
876
472
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
877
473
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
878
474
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
879
475
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
880
476
|
}
|
|
881
477
|
|
|
882
|
-
/** The connection type for FunctionDefinition. */
|
|
883
|
-
export interface FunctionDefinitionConnection {
|
|
884
|
-
__typename?: 'FunctionDefinitionConnection';
|
|
885
|
-
/** Total count of collection. */
|
|
886
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
887
|
-
/** A list of edges. */
|
|
888
|
-
edges?: Maybe<Array<Maybe<FunctionDefinitionEdge>>>;
|
|
889
|
-
/** A list of nodes. */
|
|
890
|
-
nodes?: Maybe<Array<Maybe<FunctionDefinition>>>;
|
|
891
|
-
/** Information to aid in pagination. */
|
|
892
|
-
pageInfo?: Maybe<PageInfo>;
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
/** An edge in a connection. */
|
|
896
|
-
export interface FunctionDefinitionEdge {
|
|
897
|
-
__typename?: 'FunctionDefinitionEdge';
|
|
898
|
-
/** A cursor for use in pagination. */
|
|
899
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
900
|
-
/** The item at the end of the edge. */
|
|
901
|
-
node?: Maybe<FunctionDefinition>;
|
|
902
|
-
}
|
|
903
|
-
|
|
904
|
-
/** Represents a combination strategy with AND/OR logic used by a generic mapper. */
|
|
905
|
-
export interface GenericCombinationStrategy {
|
|
906
|
-
__typename?: 'GenericCombinationStrategy';
|
|
907
|
-
/** Time when this GenericCombinationStrategy was created */
|
|
908
|
-
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
909
|
-
/** The associated generic mapper, if any. */
|
|
910
|
-
genericMapper?: Maybe<GenericMapper>;
|
|
911
|
-
/** Global ID of this GenericCombinationStrategy */
|
|
912
|
-
id?: Maybe<Scalars['GenericCombinationStrategyID']['output']>;
|
|
913
|
-
/** The combination type ('AND' or 'OR'). */
|
|
914
|
-
type?: Maybe<GenericCombinationStrategyType>;
|
|
915
|
-
/** Time when this GenericCombinationStrategy was last updated */
|
|
916
|
-
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
917
|
-
}
|
|
918
478
|
|
|
919
|
-
/**
|
|
920
|
-
export
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
479
|
+
/** Represents a flow type setting */
|
|
480
|
+
export interface FlowTypeSettingNamesArgs {
|
|
481
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
482
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
483
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
484
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
925
485
|
}
|
|
926
486
|
|
|
927
487
|
/** Represents a mapping between a source data type and a target key for generic values. */
|
|
928
488
|
export interface GenericMapper {
|
|
929
489
|
__typename?: 'GenericMapper';
|
|
930
490
|
/** Time when this GenericMapper was created */
|
|
931
|
-
createdAt
|
|
932
|
-
/** Combination strategies associated with this generic mapper. */
|
|
933
|
-
genericCombinationStrategies?: Maybe<Array<GenericCombinationStrategy>>;
|
|
491
|
+
createdAt: Scalars['Time']['output'];
|
|
934
492
|
/** Global ID of this GenericMapper */
|
|
935
|
-
id
|
|
493
|
+
id: Scalars['GenericMapperID']['output'];
|
|
936
494
|
/** The source data type identifier. */
|
|
937
|
-
|
|
495
|
+
source: DataTypeIdentifier;
|
|
938
496
|
/** The target key for the generic value. */
|
|
939
|
-
target
|
|
497
|
+
target: Scalars['String']['output'];
|
|
940
498
|
/** Time when this GenericMapper was last updated */
|
|
941
|
-
updatedAt
|
|
499
|
+
updatedAt: Scalars['Time']['output'];
|
|
942
500
|
}
|
|
943
501
|
|
|
944
502
|
/** Input type for generic mappers */
|
|
945
503
|
export interface GenericMapperInput {
|
|
946
504
|
/** The source data type identifier for the mapper */
|
|
947
|
-
|
|
505
|
+
sources: Array<DataTypeIdentifierInput>;
|
|
948
506
|
/** The target data type identifier for the mapper */
|
|
949
507
|
target: Scalars['String']['input'];
|
|
950
508
|
}
|
|
@@ -953,15 +511,15 @@ export interface GenericMapperInput {
|
|
|
953
511
|
export interface GenericType {
|
|
954
512
|
__typename?: 'GenericType';
|
|
955
513
|
/** Time when this GenericType was created */
|
|
956
|
-
createdAt
|
|
514
|
+
createdAt: Scalars['Time']['output'];
|
|
957
515
|
/** The data type associated with this generic type. */
|
|
958
|
-
dataType
|
|
516
|
+
dataType: DataType;
|
|
959
517
|
/** The mappers associated with this generic type. */
|
|
960
|
-
genericMappers
|
|
518
|
+
genericMappers: Array<GenericMapper>;
|
|
961
519
|
/** Global ID of this GenericType */
|
|
962
|
-
id
|
|
520
|
+
id: Scalars['GenericTypeID']['output'];
|
|
963
521
|
/** Time when this GenericType was last updated */
|
|
964
|
-
updatedAt
|
|
522
|
+
updatedAt: Scalars['Time']['output'];
|
|
965
523
|
}
|
|
966
524
|
|
|
967
525
|
/** Input type for generic type operations. */
|
|
@@ -978,119 +536,45 @@ export interface IdentityInput {
|
|
|
978
536
|
code?: InputMaybe<Scalars['String']['input']>;
|
|
979
537
|
}
|
|
980
538
|
|
|
981
|
-
/** Represents
|
|
982
|
-
export interface
|
|
983
|
-
__typename?: '
|
|
984
|
-
/**
|
|
985
|
-
|
|
986
|
-
/**
|
|
987
|
-
|
|
988
|
-
/** Type of the identity provider. */
|
|
989
|
-
type?: Maybe<IdentityProviderType>;
|
|
990
|
-
}
|
|
991
|
-
|
|
992
|
-
/** Represents the configuration of an identity provider. */
|
|
993
|
-
export type IdentityProviderConfig = OidcIdentityProviderConfig | SamlIdentityProviderConfig;
|
|
994
|
-
|
|
995
|
-
/** Input for identity provider configuration. Contains fields for both OIDC and SAML. */
|
|
996
|
-
export interface IdentityProviderConfigInput {
|
|
997
|
-
/** List of attribute statements for the identity provider */
|
|
998
|
-
attributeStatements?: InputMaybe<Scalars['JSON']['input']>;
|
|
999
|
-
/** The authorization URL for the OIDC identity provider */
|
|
1000
|
-
authorizationUrl?: InputMaybe<Scalars['String']['input']>;
|
|
1001
|
-
/** The client ID for the OIDC identity provider */
|
|
1002
|
-
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
1003
|
-
/** The client secret for the OIDC identity provider */
|
|
1004
|
-
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
1005
|
-
/** Optional metadata URL to fetch metadata (alternative to settings) */
|
|
1006
|
-
metadataUrl?: InputMaybe<Scalars['String']['input']>;
|
|
1007
|
-
/** The name of the identity provider */
|
|
1008
|
-
providerName?: InputMaybe<Scalars['String']['input']>;
|
|
1009
|
-
/** The redirect URI for the OIDC identity provider */
|
|
1010
|
-
redirectUri?: InputMaybe<Scalars['String']['input']>;
|
|
1011
|
-
/** The SAML response settings for the identity provider */
|
|
1012
|
-
responseSettings?: InputMaybe<Scalars['JSON']['input']>;
|
|
1013
|
-
/** The SAML settings for the identity provider */
|
|
1014
|
-
settings?: InputMaybe<Scalars['JSON']['input']>;
|
|
1015
|
-
/** The user details URL for the OIDC identity provider */
|
|
1016
|
-
userDetailsUrl?: InputMaybe<Scalars['String']['input']>;
|
|
1017
|
-
}
|
|
1018
|
-
|
|
1019
|
-
/** The connection type for IdentityProvider. */
|
|
1020
|
-
export interface IdentityProviderConnection {
|
|
1021
|
-
__typename?: 'IdentityProviderConnection';
|
|
1022
|
-
/** Total count of collection. */
|
|
1023
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
1024
|
-
/** A list of edges. */
|
|
1025
|
-
edges?: Maybe<Array<Maybe<IdentityProviderEdge>>>;
|
|
1026
|
-
/** A list of nodes. */
|
|
1027
|
-
nodes?: Maybe<Array<Maybe<IdentityProvider>>>;
|
|
1028
|
-
/** Information to aid in pagination. */
|
|
1029
|
-
pageInfo?: Maybe<PageInfo>;
|
|
539
|
+
/** Represents a subtype of input type configuration for a input data type. */
|
|
540
|
+
export interface InputTypeConfig {
|
|
541
|
+
__typename?: 'InputTypeConfig';
|
|
542
|
+
/** The identifier of the data type this input type belongs to */
|
|
543
|
+
dataTypeIdentifier: DataTypeIdentifier;
|
|
544
|
+
/** The input data type that this configuration applies to */
|
|
545
|
+
inputType: DataType;
|
|
1030
546
|
}
|
|
1031
547
|
|
|
1032
|
-
/**
|
|
1033
|
-
export interface
|
|
1034
|
-
__typename?: '
|
|
1035
|
-
/**
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
config: IdentityProviderConfigInput;
|
|
1045
|
-
/** Unique identifier of the identity provider */
|
|
1046
|
-
id: Scalars['String']['input'];
|
|
1047
|
-
/** Type of the identity provider */
|
|
1048
|
-
type: IdentityProviderType;
|
|
1049
|
-
}
|
|
1050
|
-
|
|
1051
|
-
/** The available identity provider types. */
|
|
1052
|
-
export const enum IdentityProviderType {
|
|
1053
|
-
/** Identity provider of type discord */
|
|
1054
|
-
Discord = 'DISCORD',
|
|
1055
|
-
/** Identity provider of type github */
|
|
1056
|
-
Github = 'GITHUB',
|
|
1057
|
-
/** Identity provider of type gitlab */
|
|
1058
|
-
Gitlab = 'GITLAB',
|
|
1059
|
-
/** Identity provider of type google */
|
|
1060
|
-
Google = 'GOOGLE',
|
|
1061
|
-
/** Identity provider of type microsoft */
|
|
1062
|
-
Microsoft = 'MICROSOFT',
|
|
1063
|
-
/** Identity provider of type oidc */
|
|
1064
|
-
Oidc = 'OIDC',
|
|
1065
|
-
/** Identity provider of type saml */
|
|
1066
|
-
Saml = 'SAML'
|
|
548
|
+
/** Represents a rule that can be applied to a data type. */
|
|
549
|
+
export interface InputTypesConfig {
|
|
550
|
+
__typename?: 'InputTypesConfig';
|
|
551
|
+
/** The input types that can be used in this data type rule */
|
|
552
|
+
inputTypes: Array<InputTypeConfig>;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
/** Represents a rule that can be applied to a data type. */
|
|
556
|
+
export interface ItemOfCollectionConfig {
|
|
557
|
+
__typename?: 'ItemOfCollectionConfig';
|
|
558
|
+
/** The items that can be configured for this rule. */
|
|
559
|
+
items?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
1067
560
|
}
|
|
1068
561
|
|
|
1069
562
|
/** Represents a literal value, such as a string or number. */
|
|
1070
563
|
export interface LiteralValue {
|
|
1071
564
|
__typename?: 'LiteralValue';
|
|
1072
565
|
/** Time when this LiteralValue was created */
|
|
1073
|
-
createdAt
|
|
566
|
+
createdAt: Scalars['Time']['output'];
|
|
1074
567
|
/** Time when this LiteralValue was last updated */
|
|
1075
|
-
updatedAt
|
|
568
|
+
updatedAt: Scalars['Time']['output'];
|
|
1076
569
|
/** The literal value itself as JSON. */
|
|
1077
|
-
value
|
|
570
|
+
value: Scalars['JSON']['output'];
|
|
1078
571
|
}
|
|
1079
572
|
|
|
1080
573
|
/** Represents an error message */
|
|
1081
574
|
export interface MessageError {
|
|
1082
575
|
__typename?: 'MessageError';
|
|
1083
576
|
/** The message provided from the error */
|
|
1084
|
-
message
|
|
1085
|
-
}
|
|
1086
|
-
|
|
1087
|
-
/** Application metadata */
|
|
1088
|
-
export interface Metadata {
|
|
1089
|
-
__typename?: 'Metadata';
|
|
1090
|
-
/** List of loaded extensions */
|
|
1091
|
-
extensions?: Maybe<Array<Scalars['String']['output']>>;
|
|
1092
|
-
/** Application version */
|
|
1093
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
577
|
+
message: Scalars['String']['output'];
|
|
1094
578
|
}
|
|
1095
579
|
|
|
1096
580
|
/** Represents the input for mfa authentication */
|
|
@@ -1101,19 +585,8 @@ export interface MfaInput {
|
|
|
1101
585
|
value: Scalars['String']['input'];
|
|
1102
586
|
}
|
|
1103
587
|
|
|
1104
|
-
/** Represents the MFA status of a user */
|
|
1105
|
-
export interface MfaStatus {
|
|
1106
|
-
__typename?: 'MfaStatus';
|
|
1107
|
-
/** The number of backup codes remaining for the user. */
|
|
1108
|
-
backupCodesCount?: Maybe<Scalars['Int']['output']>;
|
|
1109
|
-
/** Indicates whether MFA is enabled for the user. */
|
|
1110
|
-
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1111
|
-
/** Indicates whether TOTP MFA is enabled for the user. */
|
|
1112
|
-
totpEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1113
|
-
}
|
|
1114
|
-
|
|
1115
588
|
/** Represent all available types to authenticate with mfa */
|
|
1116
|
-
export
|
|
589
|
+
export enum MfaType {
|
|
1117
590
|
/** Single use backup code */
|
|
1118
591
|
BackupCode = 'BACKUP_CODE',
|
|
1119
592
|
/** Time based onetime password */
|
|
@@ -1130,12 +603,11 @@ export interface Mutation {
|
|
|
1130
603
|
*
|
|
1131
604
|
* This is expected to be used for testing of endpoints, to verify
|
|
1132
605
|
* that a user has mutation access.
|
|
1133
|
-
*
|
|
1134
606
|
*/
|
|
1135
607
|
echo?: Maybe<EchoPayload>;
|
|
1136
|
-
/**
|
|
608
|
+
/** Create a new namespace license. */
|
|
1137
609
|
namespacesLicensesCreate?: Maybe<NamespacesLicensesCreatePayload>;
|
|
1138
|
-
/**
|
|
610
|
+
/** Deletes an namespace license. */
|
|
1139
611
|
namespacesLicensesDelete?: Maybe<NamespacesLicensesDeletePayload>;
|
|
1140
612
|
/** Update the roles a member is assigned to. */
|
|
1141
613
|
namespacesMembersAssignRoles?: Maybe<NamespacesMembersAssignRolesPayload>;
|
|
@@ -1153,8 +625,6 @@ export interface Mutation {
|
|
|
1153
625
|
namespacesProjectsFlowsCreate?: Maybe<NamespacesProjectsFlowsCreatePayload>;
|
|
1154
626
|
/** Deletes a namespace project. */
|
|
1155
627
|
namespacesProjectsFlowsDelete?: Maybe<NamespacesProjectsFlowsDeletePayload>;
|
|
1156
|
-
/** Update an existing flow. */
|
|
1157
|
-
namespacesProjectsFlowsUpdate?: Maybe<NamespacesProjectsFlowsUpdatePayload>;
|
|
1158
628
|
/** Updates a namespace project. */
|
|
1159
629
|
namespacesProjectsUpdate?: Maybe<NamespacesProjectsUpdatePayload>;
|
|
1160
630
|
/** Update the abilities a role is granted. */
|
|
@@ -1181,12 +651,6 @@ export interface Mutation {
|
|
|
1181
651
|
runtimesRotateToken?: Maybe<RuntimesRotateTokenPayload>;
|
|
1182
652
|
/** Update an existing runtime. */
|
|
1183
653
|
runtimesUpdate?: Maybe<RuntimesUpdatePayload>;
|
|
1184
|
-
/** Admin-create a user. */
|
|
1185
|
-
usersCreate?: Maybe<UsersCreatePayload>;
|
|
1186
|
-
/** Delete an existing user. */
|
|
1187
|
-
usersDelete?: Maybe<UsersDeletePayload>;
|
|
1188
|
-
/** Verify your email when changing it or signing up */
|
|
1189
|
-
usersEmailVerification?: Maybe<UsersEmailVerificationPayload>;
|
|
1190
654
|
/** Links an external identity to an existing user */
|
|
1191
655
|
usersIdentityLink?: Maybe<UsersIdentityLinkPayload>;
|
|
1192
656
|
/** Login to an existing user via an external identity */
|
|
@@ -1205,10 +669,6 @@ export interface Mutation {
|
|
|
1205
669
|
usersMfaTotpGenerateSecret?: Maybe<UsersMfaTotpGenerateSecretPayload>;
|
|
1206
670
|
/** Validates a TOTP value for the given secret and enables TOTP MFA for the user */
|
|
1207
671
|
usersMfaTotpValidateSecret?: Maybe<UsersMfaTotpValidateSecretPayload>;
|
|
1208
|
-
/** Reset the password using a reset token */
|
|
1209
|
-
usersPasswordReset?: Maybe<UsersPasswordResetPayload>;
|
|
1210
|
-
/** Request an password reset */
|
|
1211
|
-
usersPasswordResetRequest?: Maybe<UsersPasswordResetRequestPayload>;
|
|
1212
672
|
/** Register a new user */
|
|
1213
673
|
usersRegister?: Maybe<UsersRegisterPayload>;
|
|
1214
674
|
/** Update an existing user. */
|
|
@@ -1288,12 +748,6 @@ export interface MutationNamespacesProjectsFlowsDeleteArgs {
|
|
|
1288
748
|
}
|
|
1289
749
|
|
|
1290
750
|
|
|
1291
|
-
/** Root Mutation type */
|
|
1292
|
-
export interface MutationNamespacesProjectsFlowsUpdateArgs {
|
|
1293
|
-
input: NamespacesProjectsFlowsUpdateInput;
|
|
1294
|
-
}
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
751
|
/** Root Mutation type */
|
|
1298
752
|
export interface MutationNamespacesProjectsUpdateArgs {
|
|
1299
753
|
input: NamespacesProjectsUpdateInput;
|
|
@@ -1372,24 +826,6 @@ export interface MutationRuntimesUpdateArgs {
|
|
|
1372
826
|
}
|
|
1373
827
|
|
|
1374
828
|
|
|
1375
|
-
/** Root Mutation type */
|
|
1376
|
-
export interface MutationUsersCreateArgs {
|
|
1377
|
-
input: UsersCreateInput;
|
|
1378
|
-
}
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
/** Root Mutation type */
|
|
1382
|
-
export interface MutationUsersDeleteArgs {
|
|
1383
|
-
input: UsersDeleteInput;
|
|
1384
|
-
}
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
/** Root Mutation type */
|
|
1388
|
-
export interface MutationUsersEmailVerificationArgs {
|
|
1389
|
-
input: UsersEmailVerificationInput;
|
|
1390
|
-
}
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
829
|
/** Root Mutation type */
|
|
1394
830
|
export interface MutationUsersIdentityLinkArgs {
|
|
1395
831
|
input: UsersIdentityLinkInput;
|
|
@@ -1444,18 +880,6 @@ export interface MutationUsersMfaTotpValidateSecretArgs {
|
|
|
1444
880
|
}
|
|
1445
881
|
|
|
1446
882
|
|
|
1447
|
-
/** Root Mutation type */
|
|
1448
|
-
export interface MutationUsersPasswordResetArgs {
|
|
1449
|
-
input: UsersPasswordResetInput;
|
|
1450
|
-
}
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
/** Root Mutation type */
|
|
1454
|
-
export interface MutationUsersPasswordResetRequestArgs {
|
|
1455
|
-
input: UsersPasswordResetRequestInput;
|
|
1456
|
-
}
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
883
|
/** Root Mutation type */
|
|
1460
884
|
export interface MutationUsersRegisterArgs {
|
|
1461
885
|
input: UsersRegisterInput;
|
|
@@ -1471,29 +895,23 @@ export interface MutationUsersUpdateArgs {
|
|
|
1471
895
|
export interface Namespace {
|
|
1472
896
|
__typename?: 'Namespace';
|
|
1473
897
|
/** Time when this Namespace was created */
|
|
1474
|
-
createdAt
|
|
1475
|
-
/** (EE only) Currently active license of the namespace */
|
|
1476
|
-
currentNamespaceLicense?: Maybe<NamespaceLicense>;
|
|
898
|
+
createdAt: Scalars['Time']['output'];
|
|
1477
899
|
/** Global ID of this Namespace */
|
|
1478
|
-
id
|
|
900
|
+
id: Scalars['NamespaceID']['output'];
|
|
1479
901
|
/** Members of the namespace */
|
|
1480
|
-
members
|
|
1481
|
-
/**
|
|
1482
|
-
namespaceLicenses
|
|
902
|
+
members: NamespaceMemberConnection;
|
|
903
|
+
/** Licenses of the namespace */
|
|
904
|
+
namespaceLicenses: NamespaceLicenseConnection;
|
|
1483
905
|
/** Parent of this namespace */
|
|
1484
|
-
parent
|
|
1485
|
-
/** Query a project by its id */
|
|
1486
|
-
project?: Maybe<NamespaceProject>;
|
|
906
|
+
parent: NamespaceParent;
|
|
1487
907
|
/** Projects of the namespace */
|
|
1488
|
-
projects
|
|
908
|
+
projects: NamespaceProjectConnection;
|
|
1489
909
|
/** Roles of the namespace */
|
|
1490
|
-
roles
|
|
910
|
+
roles: NamespaceRoleConnection;
|
|
1491
911
|
/** Runtime of the namespace */
|
|
1492
|
-
runtimes
|
|
912
|
+
runtimes: RuntimeConnection;
|
|
1493
913
|
/** Time when this Namespace was last updated */
|
|
1494
|
-
updatedAt
|
|
1495
|
-
/** Abilities for the current user on this Namespace */
|
|
1496
|
-
userAbilities?: Maybe<NamespaceUserAbilities>;
|
|
914
|
+
updatedAt: Scalars['Time']['output'];
|
|
1497
915
|
}
|
|
1498
916
|
|
|
1499
917
|
|
|
@@ -1515,12 +933,6 @@ export interface NamespaceNamespaceLicensesArgs {
|
|
|
1515
933
|
}
|
|
1516
934
|
|
|
1517
935
|
|
|
1518
|
-
/** Represents a Namespace */
|
|
1519
|
-
export interface NamespaceProjectArgs {
|
|
1520
|
-
id: Scalars['NamespaceProjectID']['input'];
|
|
1521
|
-
}
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
936
|
/** Represents a Namespace */
|
|
1525
937
|
export interface NamespaceProjectsArgs {
|
|
1526
938
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1547,113 +959,74 @@ export interface NamespaceRuntimesArgs {
|
|
|
1547
959
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1548
960
|
}
|
|
1549
961
|
|
|
1550
|
-
/**
|
|
962
|
+
/** Represents a Namespace License */
|
|
1551
963
|
export interface NamespaceLicense {
|
|
1552
964
|
__typename?: 'NamespaceLicense';
|
|
1553
965
|
/** Time when this NamespaceLicense was created */
|
|
1554
|
-
createdAt
|
|
1555
|
-
/** The end date of the license */
|
|
1556
|
-
endDate?: Maybe<Scalars['Time']['output']>;
|
|
966
|
+
createdAt: Scalars['Time']['output'];
|
|
1557
967
|
/** Global ID of this NamespaceLicense */
|
|
1558
|
-
id
|
|
1559
|
-
/** The licensee information */
|
|
1560
|
-
licensee?: Maybe<Scalars['JSON']['output']>;
|
|
968
|
+
id: Scalars['NamespaceLicenseID']['output'];
|
|
1561
969
|
/** The namespace the license belongs to */
|
|
1562
|
-
namespace
|
|
1563
|
-
/** The start date of the license */
|
|
1564
|
-
startDate?: Maybe<Scalars['Time']['output']>;
|
|
970
|
+
namespace: Namespace;
|
|
1565
971
|
/** Time when this NamespaceLicense was last updated */
|
|
1566
|
-
updatedAt
|
|
1567
|
-
/** Abilities for the current user on this NamespaceLicense */
|
|
1568
|
-
userAbilities?: Maybe<NamespaceLicenseUserAbilities>;
|
|
972
|
+
updatedAt: Scalars['Time']['output'];
|
|
1569
973
|
}
|
|
1570
974
|
|
|
1571
975
|
/** The connection type for NamespaceLicense. */
|
|
1572
976
|
export interface NamespaceLicenseConnection {
|
|
1573
977
|
__typename?: 'NamespaceLicenseConnection';
|
|
1574
978
|
/** Total count of collection. */
|
|
1575
|
-
count
|
|
979
|
+
count: Scalars['Int']['output'];
|
|
1576
980
|
/** A list of edges. */
|
|
1577
981
|
edges?: Maybe<Array<Maybe<NamespaceLicenseEdge>>>;
|
|
1578
982
|
/** A list of nodes. */
|
|
1579
983
|
nodes?: Maybe<Array<Maybe<NamespaceLicense>>>;
|
|
1580
984
|
/** Information to aid in pagination. */
|
|
1581
|
-
pageInfo
|
|
985
|
+
pageInfo: PageInfo;
|
|
1582
986
|
}
|
|
1583
987
|
|
|
1584
988
|
/** An edge in a connection. */
|
|
1585
989
|
export interface NamespaceLicenseEdge {
|
|
1586
990
|
__typename?: 'NamespaceLicenseEdge';
|
|
1587
991
|
/** A cursor for use in pagination. */
|
|
1588
|
-
cursor
|
|
992
|
+
cursor: Scalars['String']['output'];
|
|
1589
993
|
/** The item at the end of the edge. */
|
|
1590
994
|
node?: Maybe<NamespaceLicense>;
|
|
1591
995
|
}
|
|
1592
996
|
|
|
1593
|
-
/** Abilities for the current user on this NamespaceLicense */
|
|
1594
|
-
export interface NamespaceLicenseUserAbilities {
|
|
1595
|
-
__typename?: 'NamespaceLicenseUserAbilities';
|
|
1596
|
-
/** Shows if the current user has the `delete_namespace_license` ability on this NamespaceLicense */
|
|
1597
|
-
deleteNamespaceLicense?: Maybe<Scalars['Boolean']['output']>;
|
|
1598
|
-
}
|
|
1599
|
-
|
|
1600
997
|
/** Represents a namespace member */
|
|
1601
998
|
export interface NamespaceMember {
|
|
1602
999
|
__typename?: 'NamespaceMember';
|
|
1603
1000
|
/** Time when this NamespaceMember was created */
|
|
1604
|
-
createdAt
|
|
1001
|
+
createdAt: Scalars['Time']['output'];
|
|
1605
1002
|
/** Global ID of this NamespaceMember */
|
|
1606
|
-
id
|
|
1607
|
-
/** Memberroles of the member */
|
|
1608
|
-
memberRoles?: Maybe<NamespaceMemberRoleConnection>;
|
|
1003
|
+
id: Scalars['NamespaceMemberID']['output'];
|
|
1609
1004
|
/** Namespace this member belongs to */
|
|
1610
|
-
namespace
|
|
1611
|
-
/** Roles of the member */
|
|
1612
|
-
roles?: Maybe<NamespaceRoleConnection>;
|
|
1005
|
+
namespace: Namespace;
|
|
1613
1006
|
/** Time when this NamespaceMember was last updated */
|
|
1614
|
-
updatedAt
|
|
1007
|
+
updatedAt: Scalars['Time']['output'];
|
|
1615
1008
|
/** User this member belongs to */
|
|
1616
|
-
user
|
|
1617
|
-
/** Abilities for the current user on this NamespaceMember */
|
|
1618
|
-
userAbilities?: Maybe<NamespaceMemberUserAbilities>;
|
|
1619
|
-
}
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
/** Represents a namespace member */
|
|
1623
|
-
export interface NamespaceMemberMemberRolesArgs {
|
|
1624
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
1625
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
1626
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1627
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1628
|
-
}
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
/** Represents a namespace member */
|
|
1632
|
-
export interface NamespaceMemberRolesArgs {
|
|
1633
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
1634
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
1635
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1636
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1009
|
+
user: User;
|
|
1637
1010
|
}
|
|
1638
1011
|
|
|
1639
1012
|
/** The connection type for NamespaceMember. */
|
|
1640
1013
|
export interface NamespaceMemberConnection {
|
|
1641
1014
|
__typename?: 'NamespaceMemberConnection';
|
|
1642
1015
|
/** Total count of collection. */
|
|
1643
|
-
count
|
|
1016
|
+
count: Scalars['Int']['output'];
|
|
1644
1017
|
/** A list of edges. */
|
|
1645
1018
|
edges?: Maybe<Array<Maybe<NamespaceMemberEdge>>>;
|
|
1646
1019
|
/** A list of nodes. */
|
|
1647
1020
|
nodes?: Maybe<Array<Maybe<NamespaceMember>>>;
|
|
1648
1021
|
/** Information to aid in pagination. */
|
|
1649
|
-
pageInfo
|
|
1022
|
+
pageInfo: PageInfo;
|
|
1650
1023
|
}
|
|
1651
1024
|
|
|
1652
1025
|
/** An edge in a connection. */
|
|
1653
1026
|
export interface NamespaceMemberEdge {
|
|
1654
1027
|
__typename?: 'NamespaceMemberEdge';
|
|
1655
1028
|
/** A cursor for use in pagination. */
|
|
1656
|
-
cursor
|
|
1029
|
+
cursor: Scalars['String']['output'];
|
|
1657
1030
|
/** The item at the end of the edge. */
|
|
1658
1031
|
node?: Maybe<NamespaceMember>;
|
|
1659
1032
|
}
|
|
@@ -1662,104 +1035,39 @@ export interface NamespaceMemberEdge {
|
|
|
1662
1035
|
export interface NamespaceMemberRole {
|
|
1663
1036
|
__typename?: 'NamespaceMemberRole';
|
|
1664
1037
|
/** Time when this NamespaceMemberRole was created */
|
|
1665
|
-
createdAt
|
|
1038
|
+
createdAt: Scalars['Time']['output'];
|
|
1666
1039
|
/** Global ID of this NamespaceMemberRole */
|
|
1667
|
-
id
|
|
1040
|
+
id: Scalars['NamespaceMemberRoleID']['output'];
|
|
1668
1041
|
/** The member the role is assigned to */
|
|
1669
1042
|
member?: Maybe<NamespaceMember>;
|
|
1670
1043
|
/** The assigned role */
|
|
1671
1044
|
role?: Maybe<NamespaceRole>;
|
|
1672
1045
|
/** Time when this NamespaceMemberRole was last updated */
|
|
1673
|
-
updatedAt
|
|
1674
|
-
}
|
|
1675
|
-
|
|
1676
|
-
/** The connection type for NamespaceMemberRole. */
|
|
1677
|
-
export interface NamespaceMemberRoleConnection {
|
|
1678
|
-
__typename?: 'NamespaceMemberRoleConnection';
|
|
1679
|
-
/** Total count of collection. */
|
|
1680
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
1681
|
-
/** A list of edges. */
|
|
1682
|
-
edges?: Maybe<Array<Maybe<NamespaceMemberRoleEdge>>>;
|
|
1683
|
-
/** A list of nodes. */
|
|
1684
|
-
nodes?: Maybe<Array<Maybe<NamespaceMemberRole>>>;
|
|
1685
|
-
/** Information to aid in pagination. */
|
|
1686
|
-
pageInfo?: Maybe<PageInfo>;
|
|
1687
|
-
}
|
|
1688
|
-
|
|
1689
|
-
/** An edge in a connection. */
|
|
1690
|
-
export interface NamespaceMemberRoleEdge {
|
|
1691
|
-
__typename?: 'NamespaceMemberRoleEdge';
|
|
1692
|
-
/** A cursor for use in pagination. */
|
|
1693
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
1694
|
-
/** The item at the end of the edge. */
|
|
1695
|
-
node?: Maybe<NamespaceMemberRole>;
|
|
1696
|
-
}
|
|
1697
|
-
|
|
1698
|
-
/** Abilities for the current user on this NamespaceMember */
|
|
1699
|
-
export interface NamespaceMemberUserAbilities {
|
|
1700
|
-
__typename?: 'NamespaceMemberUserAbilities';
|
|
1701
|
-
/** Shows if the current user has the `assign_member_roles` ability on this NamespaceMember */
|
|
1702
|
-
assignMemberRoles?: Maybe<Scalars['Boolean']['output']>;
|
|
1703
|
-
/** Shows if the current user has the `delete_member` ability on this NamespaceMember */
|
|
1704
|
-
deleteMember?: Maybe<Scalars['Boolean']['output']>;
|
|
1046
|
+
updatedAt: Scalars['Time']['output'];
|
|
1705
1047
|
}
|
|
1706
1048
|
|
|
1707
1049
|
/** Objects that can present a namespace */
|
|
1708
|
-
export type NamespaceParent = Organization
|
|
1050
|
+
export type NamespaceParent = Organization;
|
|
1709
1051
|
|
|
1710
1052
|
/** Represents a namespace project */
|
|
1711
1053
|
export interface NamespaceProject {
|
|
1712
1054
|
__typename?: 'NamespaceProject';
|
|
1713
1055
|
/** Time when this NamespaceProject was created */
|
|
1714
|
-
createdAt
|
|
1056
|
+
createdAt: Scalars['Time']['output'];
|
|
1715
1057
|
/** Description of the project */
|
|
1716
|
-
description
|
|
1717
|
-
/** Fetches an flow given by its ID */
|
|
1718
|
-
flow?: Maybe<Flow>;
|
|
1719
|
-
/** Fetches all flows in this project */
|
|
1720
|
-
flows?: Maybe<FlowConnection>;
|
|
1058
|
+
description: Scalars['String']['output'];
|
|
1721
1059
|
/** Global ID of this NamespaceProject */
|
|
1722
|
-
id
|
|
1060
|
+
id: Scalars['NamespaceProjectID']['output'];
|
|
1723
1061
|
/** Name of the project */
|
|
1724
|
-
name
|
|
1062
|
+
name: Scalars['String']['output'];
|
|
1725
1063
|
/** The namespace where this project belongs to */
|
|
1726
|
-
namespace
|
|
1064
|
+
namespace: Namespace;
|
|
1727
1065
|
/** The primary runtime for the project */
|
|
1728
1066
|
primaryRuntime?: Maybe<Runtime>;
|
|
1729
|
-
/** Roles assigned to this project */
|
|
1730
|
-
roles?: Maybe<NamespaceRoleConnection>;
|
|
1731
1067
|
/** Runtimes assigned to this project */
|
|
1732
|
-
runtimes
|
|
1733
|
-
/** Slug of the project used in URLs to identify flows */
|
|
1734
|
-
slug?: Maybe<Scalars['String']['output']>;
|
|
1068
|
+
runtimes: RuntimeConnection;
|
|
1735
1069
|
/** Time when this NamespaceProject was last updated */
|
|
1736
|
-
updatedAt
|
|
1737
|
-
/** Abilities for the current user on this NamespaceProject */
|
|
1738
|
-
userAbilities?: Maybe<NamespaceProjectUserAbilities>;
|
|
1739
|
-
}
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
/** Represents a namespace project */
|
|
1743
|
-
export interface NamespaceProjectFlowArgs {
|
|
1744
|
-
id: Scalars['FlowID']['input'];
|
|
1745
|
-
}
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
/** Represents a namespace project */
|
|
1749
|
-
export interface NamespaceProjectFlowsArgs {
|
|
1750
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
1751
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
1752
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1753
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1754
|
-
}
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
/** Represents a namespace project */
|
|
1758
|
-
export interface NamespaceProjectRolesArgs {
|
|
1759
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
1760
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
1761
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1762
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1070
|
+
updatedAt: Scalars['Time']['output'];
|
|
1763
1071
|
}
|
|
1764
1072
|
|
|
1765
1073
|
|
|
@@ -1775,58 +1083,41 @@ export interface NamespaceProjectRuntimesArgs {
|
|
|
1775
1083
|
export interface NamespaceProjectConnection {
|
|
1776
1084
|
__typename?: 'NamespaceProjectConnection';
|
|
1777
1085
|
/** Total count of collection. */
|
|
1778
|
-
count
|
|
1086
|
+
count: Scalars['Int']['output'];
|
|
1779
1087
|
/** A list of edges. */
|
|
1780
1088
|
edges?: Maybe<Array<Maybe<NamespaceProjectEdge>>>;
|
|
1781
1089
|
/** A list of nodes. */
|
|
1782
1090
|
nodes?: Maybe<Array<Maybe<NamespaceProject>>>;
|
|
1783
1091
|
/** Information to aid in pagination. */
|
|
1784
|
-
pageInfo
|
|
1092
|
+
pageInfo: PageInfo;
|
|
1785
1093
|
}
|
|
1786
1094
|
|
|
1787
1095
|
/** An edge in a connection. */
|
|
1788
1096
|
export interface NamespaceProjectEdge {
|
|
1789
1097
|
__typename?: 'NamespaceProjectEdge';
|
|
1790
1098
|
/** A cursor for use in pagination. */
|
|
1791
|
-
cursor
|
|
1099
|
+
cursor: Scalars['String']['output'];
|
|
1792
1100
|
/** The item at the end of the edge. */
|
|
1793
1101
|
node?: Maybe<NamespaceProject>;
|
|
1794
1102
|
}
|
|
1795
1103
|
|
|
1796
|
-
/** Abilities for the current user on this NamespaceProject */
|
|
1797
|
-
export interface NamespaceProjectUserAbilities {
|
|
1798
|
-
__typename?: 'NamespaceProjectUserAbilities';
|
|
1799
|
-
/** Shows if the current user has the `assign_project_runtimes` ability on this NamespaceProject */
|
|
1800
|
-
assignProjectRuntimes?: Maybe<Scalars['Boolean']['output']>;
|
|
1801
|
-
/** Shows if the current user has the `create_flow` ability on this NamespaceProject */
|
|
1802
|
-
createFlow?: Maybe<Scalars['Boolean']['output']>;
|
|
1803
|
-
/** Shows if the current user has the `delete_namespace_project` ability on this NamespaceProject */
|
|
1804
|
-
deleteNamespaceProject?: Maybe<Scalars['Boolean']['output']>;
|
|
1805
|
-
/** Shows if the current user has the `update_namespace_project` ability on this NamespaceProject */
|
|
1806
|
-
updateNamespaceProject?: Maybe<Scalars['Boolean']['output']>;
|
|
1807
|
-
}
|
|
1808
|
-
|
|
1809
1104
|
/** Represents a namespace role. */
|
|
1810
1105
|
export interface NamespaceRole {
|
|
1811
1106
|
__typename?: 'NamespaceRole';
|
|
1812
1107
|
/** The abilities the role is granted */
|
|
1813
|
-
abilities
|
|
1108
|
+
abilities: Array<NamespaceRoleAbility>;
|
|
1814
1109
|
/** The projects this role is assigned to */
|
|
1815
1110
|
assignedProjects?: Maybe<NamespaceProjectConnection>;
|
|
1816
1111
|
/** Time when this NamespaceRole was created */
|
|
1817
|
-
createdAt
|
|
1112
|
+
createdAt: Scalars['Time']['output'];
|
|
1818
1113
|
/** Global ID of this NamespaceRole */
|
|
1819
|
-
id
|
|
1820
|
-
/** The members this role is assigned to */
|
|
1821
|
-
members?: Maybe<NamespaceMemberConnection>;
|
|
1114
|
+
id: Scalars['NamespaceRoleID']['output'];
|
|
1822
1115
|
/** The name of this role */
|
|
1823
|
-
name
|
|
1116
|
+
name: Scalars['String']['output'];
|
|
1824
1117
|
/** The namespace where this role belongs to */
|
|
1825
1118
|
namespace?: Maybe<Namespace>;
|
|
1826
1119
|
/** Time when this NamespaceRole was last updated */
|
|
1827
|
-
updatedAt
|
|
1828
|
-
/** Abilities for the current user on this NamespaceRole */
|
|
1829
|
-
userAbilities?: Maybe<NamespaceRoleUserAbilities>;
|
|
1120
|
+
updatedAt: Scalars['Time']['output'];
|
|
1830
1121
|
}
|
|
1831
1122
|
|
|
1832
1123
|
|
|
@@ -1838,17 +1129,8 @@ export interface NamespaceRoleAssignedProjectsArgs {
|
|
|
1838
1129
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1839
1130
|
}
|
|
1840
1131
|
|
|
1841
|
-
|
|
1842
|
-
/** Represents a namespace role. */
|
|
1843
|
-
export interface NamespaceRoleMembersArgs {
|
|
1844
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
1845
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
1846
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1847
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1848
|
-
}
|
|
1849
|
-
|
|
1850
1132
|
/** Represents abilities that can be granted to roles in namespaces. */
|
|
1851
|
-
export
|
|
1133
|
+
export enum NamespaceRoleAbility {
|
|
1852
1134
|
/** Allows to change the roles of a namespace member */
|
|
1853
1135
|
AssignMemberRoles = 'ASSIGN_MEMBER_ROLES',
|
|
1854
1136
|
/** Allows to assign runtimes to a project in the namespace */
|
|
@@ -1858,7 +1140,7 @@ export const enum NamespaceRoleAbility {
|
|
|
1858
1140
|
/** Allows to change the assigned projects of a namespace role */
|
|
1859
1141
|
AssignRoleProjects = 'ASSIGN_ROLE_PROJECTS',
|
|
1860
1142
|
/** Allows to create flows in a namespace project */
|
|
1861
|
-
|
|
1143
|
+
CreateFlows = 'CREATE_FLOWS',
|
|
1862
1144
|
/** Allows to create a license for the namespace */
|
|
1863
1145
|
CreateNamespaceLicense = 'CREATE_NAMESPACE_LICENSE',
|
|
1864
1146
|
/** Allows to create a project in the namespace */
|
|
@@ -1868,7 +1150,7 @@ export const enum NamespaceRoleAbility {
|
|
|
1868
1150
|
/** Allows to create a runtime globally or for the namespace */
|
|
1869
1151
|
CreateRuntime = 'CREATE_RUNTIME',
|
|
1870
1152
|
/** Allows to delete flows in a namespace project */
|
|
1871
|
-
|
|
1153
|
+
DeleteFlows = 'DELETE_FLOWS',
|
|
1872
1154
|
/** Allows to remove members of a namespace */
|
|
1873
1155
|
DeleteMember = 'DELETE_MEMBER',
|
|
1874
1156
|
/** Allows to delete the license of the namespace */
|
|
@@ -1892,7 +1174,7 @@ export const enum NamespaceRoleAbility {
|
|
|
1892
1174
|
/** Allows to regenerate a runtime token */
|
|
1893
1175
|
RotateRuntimeToken = 'ROTATE_RUNTIME_TOKEN',
|
|
1894
1176
|
/** Allows to update flows in the project */
|
|
1895
|
-
|
|
1177
|
+
UpdateFlows = 'UPDATE_FLOWS',
|
|
1896
1178
|
/** Allows to update the project of the namespace */
|
|
1897
1179
|
UpdateNamespaceProject = 'UPDATE_NAMESPACE_PROJECT',
|
|
1898
1180
|
/** Allows to update the namespace role */
|
|
@@ -1907,52 +1189,24 @@ export const enum NamespaceRoleAbility {
|
|
|
1907
1189
|
export interface NamespaceRoleConnection {
|
|
1908
1190
|
__typename?: 'NamespaceRoleConnection';
|
|
1909
1191
|
/** Total count of collection. */
|
|
1910
|
-
count
|
|
1192
|
+
count: Scalars['Int']['output'];
|
|
1911
1193
|
/** A list of edges. */
|
|
1912
1194
|
edges?: Maybe<Array<Maybe<NamespaceRoleEdge>>>;
|
|
1913
1195
|
/** A list of nodes. */
|
|
1914
1196
|
nodes?: Maybe<Array<Maybe<NamespaceRole>>>;
|
|
1915
1197
|
/** Information to aid in pagination. */
|
|
1916
|
-
pageInfo
|
|
1198
|
+
pageInfo: PageInfo;
|
|
1917
1199
|
}
|
|
1918
1200
|
|
|
1919
1201
|
/** An edge in a connection. */
|
|
1920
1202
|
export interface NamespaceRoleEdge {
|
|
1921
1203
|
__typename?: 'NamespaceRoleEdge';
|
|
1922
1204
|
/** A cursor for use in pagination. */
|
|
1923
|
-
cursor
|
|
1205
|
+
cursor: Scalars['String']['output'];
|
|
1924
1206
|
/** The item at the end of the edge. */
|
|
1925
1207
|
node?: Maybe<NamespaceRole>;
|
|
1926
1208
|
}
|
|
1927
1209
|
|
|
1928
|
-
/** Abilities for the current user on this NamespaceRole */
|
|
1929
|
-
export interface NamespaceRoleUserAbilities {
|
|
1930
|
-
__typename?: 'NamespaceRoleUserAbilities';
|
|
1931
|
-
/** Shows if the current user has the `assign_role_abilities` ability on this NamespaceRole */
|
|
1932
|
-
assignRoleAbilities?: Maybe<Scalars['Boolean']['output']>;
|
|
1933
|
-
/** Shows if the current user has the `assign_role_projects` ability on this NamespaceRole */
|
|
1934
|
-
assignRoleProjects?: Maybe<Scalars['Boolean']['output']>;
|
|
1935
|
-
/** Shows if the current user has the `delete_namespace_role` ability on this NamespaceRole */
|
|
1936
|
-
deleteNamespaceRole?: Maybe<Scalars['Boolean']['output']>;
|
|
1937
|
-
/** Shows if the current user has the `update_namespace_role` ability on this NamespaceRole */
|
|
1938
|
-
updateNamespaceRole?: Maybe<Scalars['Boolean']['output']>;
|
|
1939
|
-
}
|
|
1940
|
-
|
|
1941
|
-
/** Abilities for the current user on this Namespace */
|
|
1942
|
-
export interface NamespaceUserAbilities {
|
|
1943
|
-
__typename?: 'NamespaceUserAbilities';
|
|
1944
|
-
/** Shows if the current user has the `create_namespace_license` ability on this Namespace */
|
|
1945
|
-
createNamespaceLicense?: Maybe<Scalars['Boolean']['output']>;
|
|
1946
|
-
/** Shows if the current user has the `create_namespace_project` ability on this Namespace */
|
|
1947
|
-
createNamespaceProject?: Maybe<Scalars['Boolean']['output']>;
|
|
1948
|
-
/** Shows if the current user has the `create_namespace_role` ability on this Namespace */
|
|
1949
|
-
createNamespaceRole?: Maybe<Scalars['Boolean']['output']>;
|
|
1950
|
-
/** Shows if the current user has the `create_runtime` ability on this Namespace */
|
|
1951
|
-
createRuntime?: Maybe<Scalars['Boolean']['output']>;
|
|
1952
|
-
/** Shows if the current user has the `invite_member` ability on this Namespace */
|
|
1953
|
-
inviteMember?: Maybe<Scalars['Boolean']['output']>;
|
|
1954
|
-
}
|
|
1955
|
-
|
|
1956
1210
|
/** Autogenerated input type of NamespacesLicensesCreate */
|
|
1957
1211
|
export interface NamespacesLicensesCreateInput {
|
|
1958
1212
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -1969,7 +1223,7 @@ export interface NamespacesLicensesCreatePayload {
|
|
|
1969
1223
|
/** A unique identifier for the client performing the mutation. */
|
|
1970
1224
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
1971
1225
|
/** Errors encountered during execution of the mutation. */
|
|
1972
|
-
errors
|
|
1226
|
+
errors: Array<Error>;
|
|
1973
1227
|
/** The newly created license. */
|
|
1974
1228
|
namespaceLicense?: Maybe<NamespaceLicense>;
|
|
1975
1229
|
}
|
|
@@ -1988,7 +1242,7 @@ export interface NamespacesLicensesDeletePayload {
|
|
|
1988
1242
|
/** A unique identifier for the client performing the mutation. */
|
|
1989
1243
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
1990
1244
|
/** Errors encountered during execution of the mutation. */
|
|
1991
|
-
errors
|
|
1245
|
+
errors: Array<Error>;
|
|
1992
1246
|
/** The deleted namespace license. */
|
|
1993
1247
|
namespaceLicense?: Maybe<NamespaceLicense>;
|
|
1994
1248
|
}
|
|
@@ -2009,9 +1263,9 @@ export interface NamespacesMembersAssignRolesPayload {
|
|
|
2009
1263
|
/** A unique identifier for the client performing the mutation. */
|
|
2010
1264
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2011
1265
|
/** Errors encountered during execution of the mutation. */
|
|
2012
|
-
errors
|
|
2013
|
-
/** The member
|
|
2014
|
-
|
|
1266
|
+
errors: Array<Error>;
|
|
1267
|
+
/** The roles the member is now assigned to */
|
|
1268
|
+
namespaceMemberRoles?: Maybe<Array<NamespaceMemberRole>>;
|
|
2015
1269
|
}
|
|
2016
1270
|
|
|
2017
1271
|
/** Autogenerated input type of NamespacesMembersDelete */
|
|
@@ -2028,7 +1282,7 @@ export interface NamespacesMembersDeletePayload {
|
|
|
2028
1282
|
/** A unique identifier for the client performing the mutation. */
|
|
2029
1283
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2030
1284
|
/** Errors encountered during execution of the mutation. */
|
|
2031
|
-
errors
|
|
1285
|
+
errors: Array<Error>;
|
|
2032
1286
|
/** The removed namespace member */
|
|
2033
1287
|
namespaceMember?: Maybe<NamespaceMember>;
|
|
2034
1288
|
}
|
|
@@ -2049,7 +1303,7 @@ export interface NamespacesMembersInvitePayload {
|
|
|
2049
1303
|
/** A unique identifier for the client performing the mutation. */
|
|
2050
1304
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2051
1305
|
/** Errors encountered during execution of the mutation. */
|
|
2052
|
-
errors
|
|
1306
|
+
errors: Array<Error>;
|
|
2053
1307
|
/** The newly created namespace member */
|
|
2054
1308
|
namespaceMember?: Maybe<NamespaceMember>;
|
|
2055
1309
|
}
|
|
@@ -2070,7 +1324,7 @@ export interface NamespacesProjectsAssignRuntimesPayload {
|
|
|
2070
1324
|
/** A unique identifier for the client performing the mutation. */
|
|
2071
1325
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2072
1326
|
/** Errors encountered during execution of the mutation. */
|
|
2073
|
-
errors
|
|
1327
|
+
errors: Array<Error>;
|
|
2074
1328
|
/** The updated project with assigned runtimes */
|
|
2075
1329
|
namespaceProject?: Maybe<NamespaceProject>;
|
|
2076
1330
|
}
|
|
@@ -2085,8 +1339,6 @@ export interface NamespacesProjectsCreateInput {
|
|
|
2085
1339
|
name: Scalars['String']['input'];
|
|
2086
1340
|
/** The id of the namespace which this project will belong to */
|
|
2087
1341
|
namespaceId: Scalars['NamespaceID']['input'];
|
|
2088
|
-
/** Slug for the new project. */
|
|
2089
|
-
slug?: InputMaybe<Scalars['String']['input']>;
|
|
2090
1342
|
}
|
|
2091
1343
|
|
|
2092
1344
|
/** Autogenerated return type of NamespacesProjectsCreate. */
|
|
@@ -2095,7 +1347,7 @@ export interface NamespacesProjectsCreatePayload {
|
|
|
2095
1347
|
/** A unique identifier for the client performing the mutation. */
|
|
2096
1348
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2097
1349
|
/** Errors encountered during execution of the mutation. */
|
|
2098
|
-
errors
|
|
1350
|
+
errors: Array<Error>;
|
|
2099
1351
|
/** The newly created project. */
|
|
2100
1352
|
namespaceProject?: Maybe<NamespaceProject>;
|
|
2101
1353
|
}
|
|
@@ -2114,7 +1366,7 @@ export interface NamespacesProjectsDeletePayload {
|
|
|
2114
1366
|
/** A unique identifier for the client performing the mutation. */
|
|
2115
1367
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2116
1368
|
/** Errors encountered during execution of the mutation. */
|
|
2117
|
-
errors
|
|
1369
|
+
errors: Array<Error>;
|
|
2118
1370
|
/** The deleted project. */
|
|
2119
1371
|
namespaceProject?: Maybe<NamespaceProject>;
|
|
2120
1372
|
}
|
|
@@ -2135,7 +1387,7 @@ export interface NamespacesProjectsFlowsCreatePayload {
|
|
|
2135
1387
|
/** A unique identifier for the client performing the mutation. */
|
|
2136
1388
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2137
1389
|
/** Errors encountered during execution of the mutation. */
|
|
2138
|
-
errors
|
|
1390
|
+
errors: Array<Error>;
|
|
2139
1391
|
/** The newly created flow. */
|
|
2140
1392
|
flow?: Maybe<Flow>;
|
|
2141
1393
|
}
|
|
@@ -2154,32 +1406,11 @@ export interface NamespacesProjectsFlowsDeletePayload {
|
|
|
2154
1406
|
/** A unique identifier for the client performing the mutation. */
|
|
2155
1407
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2156
1408
|
/** Errors encountered during execution of the mutation. */
|
|
2157
|
-
errors
|
|
1409
|
+
errors: Array<Error>;
|
|
2158
1410
|
/** The deleted flow. */
|
|
2159
1411
|
flow?: Maybe<Flow>;
|
|
2160
1412
|
}
|
|
2161
1413
|
|
|
2162
|
-
/** Autogenerated input type of NamespacesProjectsFlowsUpdate */
|
|
2163
|
-
export interface NamespacesProjectsFlowsUpdateInput {
|
|
2164
|
-
/** A unique identifier for the client performing the mutation. */
|
|
2165
|
-
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
2166
|
-
/** The ID of the flow to update */
|
|
2167
|
-
flowId: Scalars['FlowID']['input'];
|
|
2168
|
-
/** The updated flow */
|
|
2169
|
-
flowInput: FlowInput;
|
|
2170
|
-
}
|
|
2171
|
-
|
|
2172
|
-
/** Autogenerated return type of NamespacesProjectsFlowsUpdate. */
|
|
2173
|
-
export interface NamespacesProjectsFlowsUpdatePayload {
|
|
2174
|
-
__typename?: 'NamespacesProjectsFlowsUpdatePayload';
|
|
2175
|
-
/** A unique identifier for the client performing the mutation. */
|
|
2176
|
-
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2177
|
-
/** Errors encountered during execution of the mutation. */
|
|
2178
|
-
errors?: Maybe<Array<Error>>;
|
|
2179
|
-
/** The updated flow. */
|
|
2180
|
-
flow?: Maybe<Flow>;
|
|
2181
|
-
}
|
|
2182
|
-
|
|
2183
1414
|
/** Autogenerated input type of NamespacesProjectsUpdate */
|
|
2184
1415
|
export interface NamespacesProjectsUpdateInput {
|
|
2185
1416
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -2192,8 +1423,6 @@ export interface NamespacesProjectsUpdateInput {
|
|
|
2192
1423
|
namespaceProjectId: Scalars['NamespaceProjectID']['input'];
|
|
2193
1424
|
/** The primary runtime for the updated project. */
|
|
2194
1425
|
primaryRuntimeId?: InputMaybe<Scalars['RuntimeID']['input']>;
|
|
2195
|
-
/** Slug for the updated project. */
|
|
2196
|
-
slug?: InputMaybe<Scalars['String']['input']>;
|
|
2197
1426
|
}
|
|
2198
1427
|
|
|
2199
1428
|
/** Autogenerated return type of NamespacesProjectsUpdate. */
|
|
@@ -2202,7 +1431,7 @@ export interface NamespacesProjectsUpdatePayload {
|
|
|
2202
1431
|
/** A unique identifier for the client performing the mutation. */
|
|
2203
1432
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2204
1433
|
/** Errors encountered during execution of the mutation. */
|
|
2205
|
-
errors
|
|
1434
|
+
errors: Array<Error>;
|
|
2206
1435
|
/** The updated project. */
|
|
2207
1436
|
namespaceProject?: Maybe<NamespaceProject>;
|
|
2208
1437
|
}
|
|
@@ -2225,7 +1454,7 @@ export interface NamespacesRolesAssignAbilitiesPayload {
|
|
|
2225
1454
|
/** A unique identifier for the client performing the mutation. */
|
|
2226
1455
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2227
1456
|
/** Errors encountered during execution of the mutation. */
|
|
2228
|
-
errors
|
|
1457
|
+
errors: Array<Error>;
|
|
2229
1458
|
}
|
|
2230
1459
|
|
|
2231
1460
|
/** Autogenerated input type of NamespacesRolesAssignProjects */
|
|
@@ -2244,7 +1473,7 @@ export interface NamespacesRolesAssignProjectsPayload {
|
|
|
2244
1473
|
/** A unique identifier for the client performing the mutation. */
|
|
2245
1474
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2246
1475
|
/** Errors encountered during execution of the mutation. */
|
|
2247
|
-
errors
|
|
1476
|
+
errors: Array<Error>;
|
|
2248
1477
|
/** The now assigned projects */
|
|
2249
1478
|
projects?: Maybe<Array<NamespaceProject>>;
|
|
2250
1479
|
}
|
|
@@ -2265,7 +1494,7 @@ export interface NamespacesRolesCreatePayload {
|
|
|
2265
1494
|
/** A unique identifier for the client performing the mutation. */
|
|
2266
1495
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2267
1496
|
/** Errors encountered during execution of the mutation. */
|
|
2268
|
-
errors
|
|
1497
|
+
errors: Array<Error>;
|
|
2269
1498
|
/** The newly created namespace role */
|
|
2270
1499
|
namespaceRole?: Maybe<NamespaceRole>;
|
|
2271
1500
|
}
|
|
@@ -2284,7 +1513,7 @@ export interface NamespacesRolesDeletePayload {
|
|
|
2284
1513
|
/** A unique identifier for the client performing the mutation. */
|
|
2285
1514
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2286
1515
|
/** Errors encountered during execution of the mutation. */
|
|
2287
|
-
errors
|
|
1516
|
+
errors: Array<Error>;
|
|
2288
1517
|
/** The deleted namespace role */
|
|
2289
1518
|
namespaceRole?: Maybe<NamespaceRole>;
|
|
2290
1519
|
}
|
|
@@ -2305,7 +1534,7 @@ export interface NamespacesRolesUpdatePayload {
|
|
|
2305
1534
|
/** A unique identifier for the client performing the mutation. */
|
|
2306
1535
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2307
1536
|
/** Errors encountered during execution of the mutation. */
|
|
2308
|
-
errors
|
|
1537
|
+
errors: Array<Error>;
|
|
2309
1538
|
/** The updated namespace role. */
|
|
2310
1539
|
namespaceRole?: Maybe<NamespaceRole>;
|
|
2311
1540
|
}
|
|
@@ -2313,24 +1542,24 @@ export interface NamespacesRolesUpdatePayload {
|
|
|
2313
1542
|
/** An object with an ID. */
|
|
2314
1543
|
export interface Node {
|
|
2315
1544
|
/** ID of the object. */
|
|
2316
|
-
id
|
|
1545
|
+
id: Scalars['ID']['output'];
|
|
2317
1546
|
}
|
|
2318
1547
|
|
|
2319
1548
|
/** Represents a Node Function */
|
|
2320
1549
|
export interface NodeFunction {
|
|
2321
1550
|
__typename?: 'NodeFunction';
|
|
2322
1551
|
/** Time when this NodeFunction was created */
|
|
2323
|
-
createdAt
|
|
2324
|
-
/** The definition of the Node Function */
|
|
2325
|
-
functionDefinition?: Maybe<FunctionDefinition>;
|
|
1552
|
+
createdAt: Scalars['Time']['output'];
|
|
2326
1553
|
/** Global ID of this NodeFunction */
|
|
2327
|
-
id
|
|
2328
|
-
/** The
|
|
2329
|
-
|
|
1554
|
+
id: Scalars['NodeFunctionID']['output'];
|
|
1555
|
+
/** The next Node Function in the flow */
|
|
1556
|
+
nextNode?: Maybe<NodeFunction>;
|
|
2330
1557
|
/** The parameters of the Node Function */
|
|
2331
|
-
parameters
|
|
1558
|
+
parameters: NodeParameterConnection;
|
|
1559
|
+
/** The definition of the Node Function */
|
|
1560
|
+
runtimeFunction: RuntimeFunctionDefinition;
|
|
2332
1561
|
/** Time when this NodeFunction was last updated */
|
|
2333
|
-
updatedAt
|
|
1562
|
+
updatedAt: Scalars['Time']['output'];
|
|
2334
1563
|
}
|
|
2335
1564
|
|
|
2336
1565
|
|
|
@@ -2342,41 +1571,10 @@ export interface NodeFunctionParametersArgs {
|
|
|
2342
1571
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2343
1572
|
}
|
|
2344
1573
|
|
|
2345
|
-
/** The connection type for NodeFunction. */
|
|
2346
|
-
export interface NodeFunctionConnection {
|
|
2347
|
-
__typename?: 'NodeFunctionConnection';
|
|
2348
|
-
/** Total count of collection. */
|
|
2349
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
2350
|
-
/** A list of edges. */
|
|
2351
|
-
edges?: Maybe<Array<Maybe<NodeFunctionEdge>>>;
|
|
2352
|
-
/** A list of nodes. */
|
|
2353
|
-
nodes?: Maybe<Array<Maybe<NodeFunction>>>;
|
|
2354
|
-
/** Information to aid in pagination. */
|
|
2355
|
-
pageInfo?: Maybe<PageInfo>;
|
|
2356
|
-
}
|
|
2357
|
-
|
|
2358
|
-
/** An edge in a connection. */
|
|
2359
|
-
export interface NodeFunctionEdge {
|
|
2360
|
-
__typename?: 'NodeFunctionEdge';
|
|
2361
|
-
/** A cursor for use in pagination. */
|
|
2362
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
2363
|
-
/** The item at the end of the edge. */
|
|
2364
|
-
node?: Maybe<NodeFunction>;
|
|
2365
|
-
}
|
|
2366
|
-
|
|
2367
|
-
/** Represents a Node Function id wrapper. */
|
|
2368
|
-
export interface NodeFunctionIdWrapper {
|
|
2369
|
-
__typename?: 'NodeFunctionIdWrapper';
|
|
2370
|
-
/** Global ID of this NodeFunctionIdWrapper */
|
|
2371
|
-
id?: Maybe<Scalars['NodeFunctionID']['output']>;
|
|
2372
|
-
}
|
|
2373
|
-
|
|
2374
1574
|
/** Input type for a Node Function */
|
|
2375
1575
|
export interface NodeFunctionInput {
|
|
2376
|
-
/** The identifier of the Node Function used to create/update the flow */
|
|
2377
|
-
id: Scalars['NodeFunctionID']['input'];
|
|
2378
1576
|
/** The next Node Function in the flow */
|
|
2379
|
-
|
|
1577
|
+
nextNode?: InputMaybe<NodeFunctionInput>;
|
|
2380
1578
|
/** The parameters of the Node Function */
|
|
2381
1579
|
parameters: Array<NodeParameterInput>;
|
|
2382
1580
|
/** The identifier of the Runtime Function Definition */
|
|
@@ -2387,13 +1585,13 @@ export interface NodeFunctionInput {
|
|
|
2387
1585
|
export interface NodeParameter {
|
|
2388
1586
|
__typename?: 'NodeParameter';
|
|
2389
1587
|
/** Time when this NodeParameter was created */
|
|
2390
|
-
createdAt
|
|
1588
|
+
createdAt: Scalars['Time']['output'];
|
|
2391
1589
|
/** Global ID of this NodeParameter */
|
|
2392
|
-
id
|
|
1590
|
+
id: Scalars['NodeParameterID']['output'];
|
|
2393
1591
|
/** The definition of the parameter */
|
|
2394
|
-
runtimeParameter
|
|
1592
|
+
runtimeParameter: RuntimeParameterDefinition;
|
|
2395
1593
|
/** Time when this NodeParameter was last updated */
|
|
2396
|
-
updatedAt
|
|
1594
|
+
updatedAt: Scalars['Time']['output'];
|
|
2397
1595
|
/** The value of the parameter */
|
|
2398
1596
|
value?: Maybe<NodeParameterValue>;
|
|
2399
1597
|
}
|
|
@@ -2402,20 +1600,20 @@ export interface NodeParameter {
|
|
|
2402
1600
|
export interface NodeParameterConnection {
|
|
2403
1601
|
__typename?: 'NodeParameterConnection';
|
|
2404
1602
|
/** Total count of collection. */
|
|
2405
|
-
count
|
|
1603
|
+
count: Scalars['Int']['output'];
|
|
2406
1604
|
/** A list of edges. */
|
|
2407
1605
|
edges?: Maybe<Array<Maybe<NodeParameterEdge>>>;
|
|
2408
1606
|
/** A list of nodes. */
|
|
2409
1607
|
nodes?: Maybe<Array<Maybe<NodeParameter>>>;
|
|
2410
1608
|
/** Information to aid in pagination. */
|
|
2411
|
-
pageInfo
|
|
1609
|
+
pageInfo: PageInfo;
|
|
2412
1610
|
}
|
|
2413
1611
|
|
|
2414
1612
|
/** An edge in a connection. */
|
|
2415
1613
|
export interface NodeParameterEdge {
|
|
2416
1614
|
__typename?: 'NodeParameterEdge';
|
|
2417
1615
|
/** A cursor for use in pagination. */
|
|
2418
|
-
cursor
|
|
1616
|
+
cursor: Scalars['String']['output'];
|
|
2419
1617
|
/** The item at the end of the edge. */
|
|
2420
1618
|
node?: Maybe<NodeParameter>;
|
|
2421
1619
|
}
|
|
@@ -2429,83 +1627,42 @@ export interface NodeParameterInput {
|
|
|
2429
1627
|
}
|
|
2430
1628
|
|
|
2431
1629
|
/** Represents a parameter value for a node. */
|
|
2432
|
-
export type NodeParameterValue = LiteralValue |
|
|
1630
|
+
export type NodeParameterValue = LiteralValue | NodeFunction | ReferenceValue;
|
|
2433
1631
|
|
|
2434
1632
|
/** Input type for parameter value */
|
|
2435
1633
|
export interface NodeParameterValueInput {
|
|
1634
|
+
/** The function value of the parameter */
|
|
1635
|
+
functionValue?: InputMaybe<NodeFunctionInput>;
|
|
2436
1636
|
/** The literal value of the parameter */
|
|
2437
1637
|
literalValue?: InputMaybe<Scalars['JSON']['input']>;
|
|
2438
|
-
/** The function value of the parameter as an id */
|
|
2439
|
-
nodeFunctionId?: InputMaybe<Scalars['NodeFunctionID']['input']>;
|
|
2440
1638
|
/** The reference value of the parameter */
|
|
2441
1639
|
referenceValue?: InputMaybe<ReferenceValueInput>;
|
|
2442
1640
|
}
|
|
2443
1641
|
|
|
2444
|
-
/** Represents
|
|
2445
|
-
export interface
|
|
2446
|
-
__typename?: '
|
|
2447
|
-
/**
|
|
2448
|
-
|
|
2449
|
-
/** The
|
|
2450
|
-
|
|
2451
|
-
/** The
|
|
2452
|
-
|
|
2453
|
-
/** The client secret for the OIDC identity provider */
|
|
2454
|
-
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
2455
|
-
/** The name of the OIDC identity provider */
|
|
2456
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
2457
|
-
/** The redirect URI for the OIDC identity provider */
|
|
2458
|
-
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
2459
|
-
/** The user details URL for the OIDC identity provider */
|
|
2460
|
-
userDetailsUrl?: Maybe<Scalars['String']['output']>;
|
|
1642
|
+
/** Represents a rule that can be applied to a data type. */
|
|
1643
|
+
export interface NumberRangeConfig {
|
|
1644
|
+
__typename?: 'NumberRangeConfig';
|
|
1645
|
+
/** The minimum value of the range */
|
|
1646
|
+
from: Scalars['Int']['output'];
|
|
1647
|
+
/** The step value for the range, if applicable */
|
|
1648
|
+
steps?: Maybe<Scalars['Int']['output']>;
|
|
1649
|
+
/** The maximum value of the range */
|
|
1650
|
+
to: Scalars['Int']['output'];
|
|
2461
1651
|
}
|
|
2462
1652
|
|
|
2463
1653
|
/** Represents a Organization */
|
|
2464
1654
|
export interface Organization {
|
|
2465
1655
|
__typename?: 'Organization';
|
|
2466
1656
|
/** Time when this Organization was created */
|
|
2467
|
-
createdAt
|
|
1657
|
+
createdAt: Scalars['Time']['output'];
|
|
2468
1658
|
/** Global ID of this Organization */
|
|
2469
|
-
id
|
|
1659
|
+
id: Scalars['OrganizationID']['output'];
|
|
2470
1660
|
/** Name of the organization */
|
|
2471
|
-
name
|
|
1661
|
+
name: Scalars['String']['output'];
|
|
2472
1662
|
/** Namespace of this organization */
|
|
2473
|
-
namespace
|
|
1663
|
+
namespace: Namespace;
|
|
2474
1664
|
/** Time when this Organization was last updated */
|
|
2475
|
-
updatedAt
|
|
2476
|
-
/** Abilities for the current user on this Organization */
|
|
2477
|
-
userAbilities?: Maybe<OrganizationUserAbilities>;
|
|
2478
|
-
}
|
|
2479
|
-
|
|
2480
|
-
/** The connection type for Organization. */
|
|
2481
|
-
export interface OrganizationConnection {
|
|
2482
|
-
__typename?: 'OrganizationConnection';
|
|
2483
|
-
/** Total count of collection. */
|
|
2484
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
2485
|
-
/** A list of edges. */
|
|
2486
|
-
edges?: Maybe<Array<Maybe<OrganizationEdge>>>;
|
|
2487
|
-
/** A list of nodes. */
|
|
2488
|
-
nodes?: Maybe<Array<Maybe<Organization>>>;
|
|
2489
|
-
/** Information to aid in pagination. */
|
|
2490
|
-
pageInfo?: Maybe<PageInfo>;
|
|
2491
|
-
}
|
|
2492
|
-
|
|
2493
|
-
/** An edge in a connection. */
|
|
2494
|
-
export interface OrganizationEdge {
|
|
2495
|
-
__typename?: 'OrganizationEdge';
|
|
2496
|
-
/** A cursor for use in pagination. */
|
|
2497
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
2498
|
-
/** The item at the end of the edge. */
|
|
2499
|
-
node?: Maybe<Organization>;
|
|
2500
|
-
}
|
|
2501
|
-
|
|
2502
|
-
/** Abilities for the current user on this Organization */
|
|
2503
|
-
export interface OrganizationUserAbilities {
|
|
2504
|
-
__typename?: 'OrganizationUserAbilities';
|
|
2505
|
-
/** Shows if the current user has the `delete_organization` ability on this Organization */
|
|
2506
|
-
deleteOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
2507
|
-
/** Shows if the current user has the `update_organization` ability on this Organization */
|
|
2508
|
-
updateOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
1665
|
+
updatedAt: Scalars['Time']['output'];
|
|
2509
1666
|
}
|
|
2510
1667
|
|
|
2511
1668
|
/** Autogenerated input type of OrganizationsCreate */
|
|
@@ -2522,7 +1679,7 @@ export interface OrganizationsCreatePayload {
|
|
|
2522
1679
|
/** A unique identifier for the client performing the mutation. */
|
|
2523
1680
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2524
1681
|
/** Errors encountered during execution of the mutation. */
|
|
2525
|
-
errors
|
|
1682
|
+
errors: Array<Error>;
|
|
2526
1683
|
/** The newly created organization. */
|
|
2527
1684
|
organization?: Maybe<Organization>;
|
|
2528
1685
|
}
|
|
@@ -2541,7 +1698,7 @@ export interface OrganizationsDeletePayload {
|
|
|
2541
1698
|
/** A unique identifier for the client performing the mutation. */
|
|
2542
1699
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2543
1700
|
/** Errors encountered during execution of the mutation. */
|
|
2544
|
-
errors
|
|
1701
|
+
errors: Array<Error>;
|
|
2545
1702
|
/** The deleted organization. */
|
|
2546
1703
|
organization?: Maybe<Organization>;
|
|
2547
1704
|
}
|
|
@@ -2562,7 +1719,7 @@ export interface OrganizationsUpdatePayload {
|
|
|
2562
1719
|
/** A unique identifier for the client performing the mutation. */
|
|
2563
1720
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2564
1721
|
/** Errors encountered during execution of the mutation. */
|
|
2565
|
-
errors
|
|
1722
|
+
errors: Array<Error>;
|
|
2566
1723
|
/** The updated organization. */
|
|
2567
1724
|
organization?: Maybe<Organization>;
|
|
2568
1725
|
}
|
|
@@ -2573,69 +1730,26 @@ export interface PageInfo {
|
|
|
2573
1730
|
/** When paginating forwards, the cursor to continue. */
|
|
2574
1731
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
2575
1732
|
/** When paginating forwards, are there more items? */
|
|
2576
|
-
hasNextPage
|
|
1733
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
2577
1734
|
/** When paginating backwards, are there more items? */
|
|
2578
|
-
hasPreviousPage
|
|
1735
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
2579
1736
|
/** When paginating backwards, the cursor to continue. */
|
|
2580
1737
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
2581
1738
|
}
|
|
2582
1739
|
|
|
2583
|
-
/** Represents a parameter definition */
|
|
2584
|
-
export interface ParameterDefinition {
|
|
2585
|
-
__typename?: 'ParameterDefinition';
|
|
2586
|
-
/** Time when this ParameterDefinition was created */
|
|
2587
|
-
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
2588
|
-
/** Data type of the parameter */
|
|
2589
|
-
dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
|
|
2590
|
-
/** Description of the parameter */
|
|
2591
|
-
descriptions?: Maybe<Array<Translation>>;
|
|
2592
|
-
/** Documentation of the parameter */
|
|
2593
|
-
documentations?: Maybe<Array<Translation>>;
|
|
2594
|
-
/** Global ID of this ParameterDefinition */
|
|
2595
|
-
id?: Maybe<Scalars['ParameterDefinitionID']['output']>;
|
|
2596
|
-
/** Identifier of the parameter */
|
|
2597
|
-
identifier?: Maybe<Scalars['String']['output']>;
|
|
2598
|
-
/** Name of the parameter */
|
|
2599
|
-
names?: Maybe<Array<Translation>>;
|
|
2600
|
-
/** Time when this ParameterDefinition was last updated */
|
|
2601
|
-
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
2602
|
-
}
|
|
2603
|
-
|
|
2604
|
-
/** The connection type for ParameterDefinition. */
|
|
2605
|
-
export interface ParameterDefinitionConnection {
|
|
2606
|
-
__typename?: 'ParameterDefinitionConnection';
|
|
2607
|
-
/** Total count of collection. */
|
|
2608
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
2609
|
-
/** A list of edges. */
|
|
2610
|
-
edges?: Maybe<Array<Maybe<ParameterDefinitionEdge>>>;
|
|
2611
|
-
/** A list of nodes. */
|
|
2612
|
-
nodes?: Maybe<Array<Maybe<ParameterDefinition>>>;
|
|
2613
|
-
/** Information to aid in pagination. */
|
|
2614
|
-
pageInfo?: Maybe<PageInfo>;
|
|
2615
|
-
}
|
|
2616
|
-
|
|
2617
|
-
/** An edge in a connection. */
|
|
2618
|
-
export interface ParameterDefinitionEdge {
|
|
2619
|
-
__typename?: 'ParameterDefinitionEdge';
|
|
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<ParameterDefinition>;
|
|
2624
|
-
}
|
|
2625
|
-
|
|
2626
1740
|
/** Root Query type */
|
|
2627
1741
|
export interface Query {
|
|
2628
1742
|
__typename?: 'Query';
|
|
2629
|
-
/** Get application
|
|
2630
|
-
|
|
1743
|
+
/** Get global application settings */
|
|
1744
|
+
applicationSettings?: Maybe<ApplicationSettings>;
|
|
2631
1745
|
/** Get the currently logged in authentication */
|
|
2632
1746
|
currentAuthentication?: Maybe<Authentication>;
|
|
2633
1747
|
/** Get the currently logged in user */
|
|
2634
1748
|
currentUser?: Maybe<User>;
|
|
2635
1749
|
/** Field available for use to test API access */
|
|
2636
|
-
echo
|
|
1750
|
+
echo: Scalars['String']['output'];
|
|
2637
1751
|
/** Find runtimes */
|
|
2638
|
-
globalRuntimes
|
|
1752
|
+
globalRuntimes: RuntimeConnection;
|
|
2639
1753
|
/** Find a namespace */
|
|
2640
1754
|
namespace?: Maybe<Namespace>;
|
|
2641
1755
|
/** Fetches an object given its ID */
|
|
@@ -2644,12 +1758,8 @@ export interface Query {
|
|
|
2644
1758
|
nodes?: Maybe<Array<Maybe<Node>>>;
|
|
2645
1759
|
/** Find a organization */
|
|
2646
1760
|
organization?: Maybe<Organization>;
|
|
2647
|
-
/** Find organizations */
|
|
2648
|
-
organizations?: Maybe<OrganizationConnection>;
|
|
2649
|
-
/** Find a user */
|
|
2650
|
-
user?: Maybe<User>;
|
|
2651
1761
|
/** Find users */
|
|
2652
|
-
users
|
|
1762
|
+
users: UserConnection;
|
|
2653
1763
|
}
|
|
2654
1764
|
|
|
2655
1765
|
|
|
@@ -2693,22 +1803,6 @@ export interface QueryOrganizationArgs {
|
|
|
2693
1803
|
}
|
|
2694
1804
|
|
|
2695
1805
|
|
|
2696
|
-
/** Root Query type */
|
|
2697
|
-
export interface QueryOrganizationsArgs {
|
|
2698
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
2699
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
2700
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2701
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2702
|
-
}
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
/** Root Query type */
|
|
2706
|
-
export interface QueryUserArgs {
|
|
2707
|
-
id?: InputMaybe<Scalars['UserID']['input']>;
|
|
2708
|
-
username?: InputMaybe<Scalars['String']['input']>;
|
|
2709
|
-
}
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
1806
|
/** Root Query type */
|
|
2713
1807
|
export interface QueryUsersArgs {
|
|
2714
1808
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2723,13 +1817,13 @@ export interface ReferencePath {
|
|
|
2723
1817
|
/** The array index of the referenced data by the path */
|
|
2724
1818
|
arrayIndex?: Maybe<Scalars['Int']['output']>;
|
|
2725
1819
|
/** Time when this ReferencePath was created */
|
|
2726
|
-
createdAt
|
|
1820
|
+
createdAt: Scalars['Time']['output'];
|
|
2727
1821
|
/** Global ID of this ReferencePath */
|
|
2728
|
-
id
|
|
1822
|
+
id: Scalars['ReferencePathID']['output'];
|
|
2729
1823
|
/** The path to the reference in the flow */
|
|
2730
1824
|
path?: Maybe<Scalars['String']['output']>;
|
|
2731
1825
|
/** Time when this ReferencePath was last updated */
|
|
2732
|
-
updatedAt
|
|
1826
|
+
updatedAt: Scalars['Time']['output'];
|
|
2733
1827
|
}
|
|
2734
1828
|
|
|
2735
1829
|
/** Input type for reference path */
|
|
@@ -2744,70 +1838,76 @@ export interface ReferencePathInput {
|
|
|
2744
1838
|
export interface ReferenceValue {
|
|
2745
1839
|
__typename?: 'ReferenceValue';
|
|
2746
1840
|
/** Time when this ReferenceValue was created */
|
|
2747
|
-
createdAt
|
|
1841
|
+
createdAt: Scalars['Time']['output'];
|
|
2748
1842
|
/** The identifier of the data type this reference value belongs to. */
|
|
2749
|
-
dataTypeIdentifier
|
|
2750
|
-
/** The depth of the reference value. */
|
|
2751
|
-
depth?: Maybe<Scalars['Int']['output']>;
|
|
1843
|
+
dataTypeIdentifier: DataTypeIdentifier;
|
|
2752
1844
|
/** Global ID of this ReferenceValue */
|
|
2753
|
-
id
|
|
2754
|
-
/** The
|
|
2755
|
-
|
|
2756
|
-
/** The referenced value. */
|
|
2757
|
-
nodeFunctionId?: Maybe<Scalars['NodeFunctionID']['output']>;
|
|
1845
|
+
id: Scalars['ReferenceValueID']['output'];
|
|
1846
|
+
/** The primary level of the reference value. */
|
|
1847
|
+
primaryLevel: Scalars['Int']['output'];
|
|
2758
1848
|
/** The paths associated with this reference value. */
|
|
2759
|
-
referencePath
|
|
2760
|
-
/** The
|
|
2761
|
-
|
|
1849
|
+
referencePath: Array<ReferencePath>;
|
|
1850
|
+
/** The secondary level of the reference value. */
|
|
1851
|
+
secondaryLevel: Scalars['Int']['output'];
|
|
1852
|
+
/** The tertiary level of the reference value, if applicable. */
|
|
1853
|
+
tertiaryLevel?: Maybe<Scalars['Int']['output']>;
|
|
2762
1854
|
/** Time when this ReferenceValue was last updated */
|
|
2763
|
-
updatedAt
|
|
1855
|
+
updatedAt: Scalars['Time']['output'];
|
|
2764
1856
|
}
|
|
2765
1857
|
|
|
2766
1858
|
/** Input type for reference value */
|
|
2767
1859
|
export interface ReferenceValueInput {
|
|
2768
1860
|
/** The identifier of the data type this reference value belongs to */
|
|
2769
1861
|
dataTypeIdentifier: DataTypeIdentifierInput;
|
|
2770
|
-
/** The
|
|
2771
|
-
|
|
2772
|
-
/** The node of the reference */
|
|
2773
|
-
node: Scalars['Int']['input'];
|
|
2774
|
-
/** The referenced value */
|
|
2775
|
-
nodeFunctionId: Scalars['NodeFunctionID']['input'];
|
|
1862
|
+
/** The primary level of the reference value */
|
|
1863
|
+
primaryLevel: Scalars['Int']['input'];
|
|
2776
1864
|
/** The paths associated with this reference value */
|
|
2777
1865
|
referencePath: Array<ReferencePathInput>;
|
|
2778
|
-
/** The
|
|
2779
|
-
|
|
1866
|
+
/** The secondary level of the reference value */
|
|
1867
|
+
secondaryLevel: Scalars['Int']['input'];
|
|
1868
|
+
/** The tertiary level of the reference value */
|
|
1869
|
+
tertiaryLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
/** Represents a rule that can be applied to a data type. */
|
|
1873
|
+
export interface RegexConfig {
|
|
1874
|
+
__typename?: 'RegexConfig';
|
|
1875
|
+
/** The regex pattern to match against the data type value. */
|
|
1876
|
+
pattern: Scalars['String']['output'];
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1879
|
+
/** Represents a rule that can be applied to a data type. */
|
|
1880
|
+
export interface ReturnTypeConfig {
|
|
1881
|
+
__typename?: 'ReturnTypeConfig';
|
|
1882
|
+
/** The data type identifier for the return type. */
|
|
1883
|
+
dataTypeIdentifier: DataTypeIdentifier;
|
|
2780
1884
|
}
|
|
2781
1885
|
|
|
2782
1886
|
/** Represents a runtime */
|
|
2783
1887
|
export interface Runtime {
|
|
2784
1888
|
__typename?: 'Runtime';
|
|
2785
1889
|
/** Time when this Runtime was created */
|
|
2786
|
-
createdAt
|
|
1890
|
+
createdAt: Scalars['Time']['output'];
|
|
2787
1891
|
/** DataTypes of the runtime */
|
|
2788
|
-
dataTypes
|
|
1892
|
+
dataTypes: DataTypeConnection;
|
|
2789
1893
|
/** The description for the runtime if present */
|
|
2790
|
-
description
|
|
1894
|
+
description: Scalars['String']['output'];
|
|
2791
1895
|
/** FlowTypes of the runtime */
|
|
2792
|
-
flowTypes
|
|
2793
|
-
/** Function definitions of the runtime */
|
|
2794
|
-
functionDefinitions?: Maybe<FunctionDefinitionConnection>;
|
|
1896
|
+
flowTypes: FlowTypeConnection;
|
|
2795
1897
|
/** Global ID of this Runtime */
|
|
2796
|
-
id
|
|
1898
|
+
id: Scalars['RuntimeID']['output'];
|
|
2797
1899
|
/** The name for the runtime */
|
|
2798
|
-
name
|
|
1900
|
+
name: Scalars['String']['output'];
|
|
2799
1901
|
/** The parent namespace for the runtime */
|
|
2800
1902
|
namespace?: Maybe<Namespace>;
|
|
2801
1903
|
/** Projects associated with the runtime */
|
|
2802
|
-
projects
|
|
1904
|
+
projects: NamespaceProjectConnection;
|
|
2803
1905
|
/** The status of the runtime */
|
|
2804
|
-
status
|
|
1906
|
+
status: RuntimeStatusType;
|
|
2805
1907
|
/** Token belonging to the runtime, only present on creation */
|
|
2806
1908
|
token?: Maybe<Scalars['String']['output']>;
|
|
2807
1909
|
/** Time when this Runtime was last updated */
|
|
2808
|
-
updatedAt
|
|
2809
|
-
/** Abilities for the current user on this Runtime */
|
|
2810
|
-
userAbilities?: Maybe<RuntimeUserAbilities>;
|
|
1910
|
+
updatedAt: Scalars['Time']['output'];
|
|
2811
1911
|
}
|
|
2812
1912
|
|
|
2813
1913
|
|
|
@@ -2829,15 +1929,6 @@ export interface RuntimeFlowTypesArgs {
|
|
|
2829
1929
|
}
|
|
2830
1930
|
|
|
2831
1931
|
|
|
2832
|
-
/** Represents a runtime */
|
|
2833
|
-
export interface RuntimeFunctionDefinitionsArgs {
|
|
2834
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
2835
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
2836
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2837
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2838
|
-
}
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
1932
|
/** Represents a runtime */
|
|
2842
1933
|
export interface RuntimeProjectsArgs {
|
|
2843
1934
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2850,115 +1941,54 @@ export interface RuntimeProjectsArgs {
|
|
|
2850
1941
|
export interface RuntimeConnection {
|
|
2851
1942
|
__typename?: 'RuntimeConnection';
|
|
2852
1943
|
/** Total count of collection. */
|
|
2853
|
-
count
|
|
1944
|
+
count: Scalars['Int']['output'];
|
|
2854
1945
|
/** A list of edges. */
|
|
2855
1946
|
edges?: Maybe<Array<Maybe<RuntimeEdge>>>;
|
|
2856
1947
|
/** A list of nodes. */
|
|
2857
1948
|
nodes?: Maybe<Array<Maybe<Runtime>>>;
|
|
2858
1949
|
/** Information to aid in pagination. */
|
|
2859
|
-
pageInfo
|
|
1950
|
+
pageInfo: PageInfo;
|
|
2860
1951
|
}
|
|
2861
1952
|
|
|
2862
1953
|
/** An edge in a connection. */
|
|
2863
1954
|
export interface RuntimeEdge {
|
|
2864
1955
|
__typename?: 'RuntimeEdge';
|
|
2865
1956
|
/** A cursor for use in pagination. */
|
|
2866
|
-
cursor
|
|
1957
|
+
cursor: Scalars['String']['output'];
|
|
2867
1958
|
/** The item at the end of the edge. */
|
|
2868
1959
|
node?: Maybe<Runtime>;
|
|
2869
1960
|
}
|
|
2870
1961
|
|
|
2871
|
-
/** Represents a
|
|
1962
|
+
/** Represents a Node Function definition */
|
|
2872
1963
|
export interface RuntimeFunctionDefinition {
|
|
2873
1964
|
__typename?: 'RuntimeFunctionDefinition';
|
|
2874
1965
|
/** Time when this RuntimeFunctionDefinition was created */
|
|
2875
|
-
createdAt
|
|
2876
|
-
/** Function definitions of the runtime function definition */
|
|
2877
|
-
functionDefinitions?: Maybe<FunctionDefinitionConnection>;
|
|
1966
|
+
createdAt: Scalars['Time']['output'];
|
|
2878
1967
|
/** Global ID of this RuntimeFunctionDefinition */
|
|
2879
|
-
id
|
|
2880
|
-
/** Identifier of the runtime function definition */
|
|
2881
|
-
identifier?: Maybe<Scalars['String']['output']>;
|
|
2882
|
-
/** The runtime this runtime function definition belongs to */
|
|
2883
|
-
runtime?: Maybe<Runtime>;
|
|
2884
|
-
/** Parameter definitions of the runtime function definition */
|
|
2885
|
-
runtimeParameterDefinitions?: Maybe<RuntimeParameterDefinitionConnection>;
|
|
1968
|
+
id: Scalars['RuntimeParameterDefinitionID']['output'];
|
|
2886
1969
|
/** Time when this RuntimeFunctionDefinition was last updated */
|
|
2887
|
-
updatedAt
|
|
1970
|
+
updatedAt: Scalars['Time']['output'];
|
|
2888
1971
|
}
|
|
2889
1972
|
|
|
2890
|
-
|
|
2891
|
-
/** Represents a runtime function definition */
|
|
2892
|
-
export interface RuntimeFunctionDefinitionFunctionDefinitionsArgs {
|
|
2893
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
2894
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
2895
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2896
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2897
|
-
}
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
/** Represents a runtime function definition */
|
|
2901
|
-
export interface RuntimeFunctionDefinitionRuntimeParameterDefinitionsArgs {
|
|
2902
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
2903
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
2904
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2905
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2906
|
-
}
|
|
2907
|
-
|
|
2908
|
-
/** Represents a runtime parameter definition */
|
|
1973
|
+
/** Represents a Node parameter definition */
|
|
2909
1974
|
export interface RuntimeParameterDefinition {
|
|
2910
1975
|
__typename?: 'RuntimeParameterDefinition';
|
|
2911
1976
|
/** Time when this RuntimeParameterDefinition was created */
|
|
2912
|
-
createdAt
|
|
1977
|
+
createdAt: Scalars['Time']['output'];
|
|
2913
1978
|
/** Global ID of this RuntimeParameterDefinition */
|
|
2914
|
-
id
|
|
2915
|
-
/** Identifier of the runtime parameter definition */
|
|
2916
|
-
identifier?: Maybe<Scalars['String']['output']>;
|
|
1979
|
+
id: Scalars['RuntimeParameterDefinitionID']['output'];
|
|
2917
1980
|
/** Time when this RuntimeParameterDefinition was last updated */
|
|
2918
|
-
updatedAt
|
|
2919
|
-
}
|
|
2920
|
-
|
|
2921
|
-
/** The connection type for RuntimeParameterDefinition. */
|
|
2922
|
-
export interface RuntimeParameterDefinitionConnection {
|
|
2923
|
-
__typename?: 'RuntimeParameterDefinitionConnection';
|
|
2924
|
-
/** Total count of collection. */
|
|
2925
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
2926
|
-
/** A list of edges. */
|
|
2927
|
-
edges?: Maybe<Array<Maybe<RuntimeParameterDefinitionEdge>>>;
|
|
2928
|
-
/** A list of nodes. */
|
|
2929
|
-
nodes?: Maybe<Array<Maybe<RuntimeParameterDefinition>>>;
|
|
2930
|
-
/** Information to aid in pagination. */
|
|
2931
|
-
pageInfo?: Maybe<PageInfo>;
|
|
2932
|
-
}
|
|
2933
|
-
|
|
2934
|
-
/** An edge in a connection. */
|
|
2935
|
-
export interface RuntimeParameterDefinitionEdge {
|
|
2936
|
-
__typename?: 'RuntimeParameterDefinitionEdge';
|
|
2937
|
-
/** A cursor for use in pagination. */
|
|
2938
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
2939
|
-
/** The item at the end of the edge. */
|
|
2940
|
-
node?: Maybe<RuntimeParameterDefinition>;
|
|
1981
|
+
updatedAt: Scalars['Time']['output'];
|
|
2941
1982
|
}
|
|
2942
1983
|
|
|
2943
1984
|
/** Represent all available types of statuses of a runtime */
|
|
2944
|
-
export
|
|
1985
|
+
export enum RuntimeStatusType {
|
|
2945
1986
|
/** No problem with connection, everything works as expected */
|
|
2946
1987
|
Connected = 'CONNECTED',
|
|
2947
1988
|
/** The runtime is disconnected, cause unknown */
|
|
2948
1989
|
Disconnected = 'DISCONNECTED'
|
|
2949
1990
|
}
|
|
2950
1991
|
|
|
2951
|
-
/** Abilities for the current user on this Runtime */
|
|
2952
|
-
export interface RuntimeUserAbilities {
|
|
2953
|
-
__typename?: 'RuntimeUserAbilities';
|
|
2954
|
-
/** Shows if the current user has the `delete_runtime` ability on this Runtime */
|
|
2955
|
-
deleteRuntime?: Maybe<Scalars['Boolean']['output']>;
|
|
2956
|
-
/** Shows if the current user has the `rotate_runtime_token` ability on this Runtime */
|
|
2957
|
-
rotateRuntimeToken?: Maybe<Scalars['Boolean']['output']>;
|
|
2958
|
-
/** Shows if the current user has the `update_runtime` ability on this Runtime */
|
|
2959
|
-
updateRuntime?: Maybe<Scalars['Boolean']['output']>;
|
|
2960
|
-
}
|
|
2961
|
-
|
|
2962
1992
|
/** Autogenerated input type of RuntimesCreate */
|
|
2963
1993
|
export interface RuntimesCreateInput {
|
|
2964
1994
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -2977,7 +2007,7 @@ export interface RuntimesCreatePayload {
|
|
|
2977
2007
|
/** A unique identifier for the client performing the mutation. */
|
|
2978
2008
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2979
2009
|
/** Errors encountered during execution of the mutation. */
|
|
2980
|
-
errors
|
|
2010
|
+
errors: Array<Error>;
|
|
2981
2011
|
/** The newly created runtime. */
|
|
2982
2012
|
runtime?: Maybe<Runtime>;
|
|
2983
2013
|
}
|
|
@@ -2996,7 +2026,7 @@ export interface RuntimesDeletePayload {
|
|
|
2996
2026
|
/** A unique identifier for the client performing the mutation. */
|
|
2997
2027
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
2998
2028
|
/** Errors encountered during execution of the mutation. */
|
|
2999
|
-
errors
|
|
2029
|
+
errors: Array<Error>;
|
|
3000
2030
|
/** The updated organization. */
|
|
3001
2031
|
runtime?: Maybe<Runtime>;
|
|
3002
2032
|
}
|
|
@@ -3015,7 +2045,7 @@ export interface RuntimesRotateTokenPayload {
|
|
|
3015
2045
|
/** A unique identifier for the client performing the mutation. */
|
|
3016
2046
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3017
2047
|
/** Errors encountered during execution of the mutation. */
|
|
3018
|
-
errors
|
|
2048
|
+
errors: Array<Error>;
|
|
3019
2049
|
/** The updated runtime. */
|
|
3020
2050
|
runtime?: Maybe<Runtime>;
|
|
3021
2051
|
}
|
|
@@ -3038,79 +2068,67 @@ export interface RuntimesUpdatePayload {
|
|
|
3038
2068
|
/** A unique identifier for the client performing the mutation. */
|
|
3039
2069
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3040
2070
|
/** Errors encountered during execution of the mutation. */
|
|
3041
|
-
errors
|
|
2071
|
+
errors: Array<Error>;
|
|
3042
2072
|
/** The updated runtime. */
|
|
3043
2073
|
runtime?: Maybe<Runtime>;
|
|
3044
2074
|
}
|
|
3045
2075
|
|
|
3046
|
-
/** Represents the configuration for a SAML identity provider. */
|
|
3047
|
-
export interface SamlIdentityProviderConfig {
|
|
3048
|
-
__typename?: 'SamlIdentityProviderConfig';
|
|
3049
|
-
/** List of attribute statements for the SAML identity provider */
|
|
3050
|
-
attributeStatements?: Maybe<Scalars['JSON']['output']>;
|
|
3051
|
-
/** The metadata url to fetch the metadatas (replacement for settings) */
|
|
3052
|
-
metadataUrl?: Maybe<Scalars['String']['output']>;
|
|
3053
|
-
/** The name of the SAML identity provider */
|
|
3054
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
3055
|
-
/** The SAML response settings for the identity provider */
|
|
3056
|
-
responseSettings?: Maybe<Scalars['JSON']['output']>;
|
|
3057
|
-
/** The SAML settings for the identity provider */
|
|
3058
|
-
settings?: Maybe<Scalars['JSON']['output']>;
|
|
3059
|
-
}
|
|
3060
|
-
|
|
3061
2076
|
/** Represents a translation */
|
|
3062
2077
|
export interface Translation {
|
|
3063
2078
|
__typename?: 'Translation';
|
|
3064
2079
|
/** Code of the translation */
|
|
3065
|
-
code
|
|
2080
|
+
code: Scalars['String']['output'];
|
|
3066
2081
|
/** Content of the translation */
|
|
3067
|
-
content
|
|
2082
|
+
content: Scalars['String']['output'];
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
/** The connection type for Translation. */
|
|
2086
|
+
export interface TranslationConnection {
|
|
2087
|
+
__typename?: 'TranslationConnection';
|
|
2088
|
+
/** Total count of collection. */
|
|
2089
|
+
count: Scalars['Int']['output'];
|
|
2090
|
+
/** A list of edges. */
|
|
2091
|
+
edges?: Maybe<Array<Maybe<TranslationEdge>>>;
|
|
2092
|
+
/** A list of nodes. */
|
|
2093
|
+
nodes?: Maybe<Array<Maybe<Translation>>>;
|
|
2094
|
+
/** Information to aid in pagination. */
|
|
2095
|
+
pageInfo: PageInfo;
|
|
2096
|
+
}
|
|
2097
|
+
|
|
2098
|
+
/** An edge in a connection. */
|
|
2099
|
+
export interface TranslationEdge {
|
|
2100
|
+
__typename?: 'TranslationEdge';
|
|
2101
|
+
/** A cursor for use in pagination. */
|
|
2102
|
+
cursor: Scalars['String']['output'];
|
|
2103
|
+
/** The item at the end of the edge. */
|
|
2104
|
+
node?: Maybe<Translation>;
|
|
3068
2105
|
}
|
|
3069
2106
|
|
|
3070
2107
|
/** Represents a user */
|
|
3071
2108
|
export interface User {
|
|
3072
2109
|
__typename?: 'User';
|
|
3073
2110
|
/** Global admin status of the user */
|
|
3074
|
-
admin
|
|
2111
|
+
admin: Scalars['Boolean']['output'];
|
|
3075
2112
|
/** The avatar if present of the user */
|
|
3076
2113
|
avatarPath?: Maybe<Scalars['String']['output']>;
|
|
3077
2114
|
/** Time when this User was created */
|
|
3078
|
-
createdAt
|
|
2115
|
+
createdAt: Scalars['Time']['output'];
|
|
3079
2116
|
/** Email of the user */
|
|
3080
|
-
email
|
|
3081
|
-
/** Email verification date of the user if present */
|
|
3082
|
-
emailVerifiedAt?: Maybe<Scalars['Time']['output']>;
|
|
2117
|
+
email: Scalars['String']['output'];
|
|
3083
2118
|
/** Firstname of the user */
|
|
3084
|
-
firstname
|
|
2119
|
+
firstname: Scalars['String']['output'];
|
|
3085
2120
|
/** Global ID of this User */
|
|
3086
|
-
id
|
|
3087
|
-
/** Identities of this user */
|
|
3088
|
-
identities?: Maybe<UserIdentityConnection>;
|
|
2121
|
+
id: Scalars['UserID']['output'];
|
|
3089
2122
|
/** Lastname of the user */
|
|
3090
|
-
lastname
|
|
3091
|
-
/** Multi-factor authentication status of this user */
|
|
3092
|
-
mfaStatus?: Maybe<MfaStatus>;
|
|
2123
|
+
lastname: Scalars['String']['output'];
|
|
3093
2124
|
/** Namespace of this user */
|
|
3094
2125
|
namespace?: Maybe<Namespace>;
|
|
3095
2126
|
/** Namespace Memberships of this user */
|
|
3096
|
-
namespaceMemberships
|
|
3097
|
-
/** Sessions of this user */
|
|
3098
|
-
sessions?: Maybe<UserSessionConnection>;
|
|
2127
|
+
namespaceMemberships: NamespaceMemberConnection;
|
|
3099
2128
|
/** Time when this User was last updated */
|
|
3100
|
-
updatedAt
|
|
3101
|
-
/** Abilities for the current user on this User */
|
|
3102
|
-
userAbilities?: Maybe<UserUserAbilities>;
|
|
2129
|
+
updatedAt: Scalars['Time']['output'];
|
|
3103
2130
|
/** Username of the user */
|
|
3104
|
-
username
|
|
3105
|
-
}
|
|
3106
|
-
|
|
3107
|
-
|
|
3108
|
-
/** Represents a user */
|
|
3109
|
-
export interface UserIdentitiesArgs {
|
|
3110
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
3111
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
3112
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3113
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2131
|
+
username: Scalars['String']['output'];
|
|
3114
2132
|
}
|
|
3115
2133
|
|
|
3116
2134
|
|
|
@@ -3122,33 +2140,24 @@ export interface UserNamespaceMembershipsArgs {
|
|
|
3122
2140
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3123
2141
|
}
|
|
3124
2142
|
|
|
3125
|
-
|
|
3126
|
-
/** Represents a user */
|
|
3127
|
-
export interface UserSessionsArgs {
|
|
3128
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
3129
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
3130
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3131
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3132
|
-
}
|
|
3133
|
-
|
|
3134
2143
|
/** The connection type for User. */
|
|
3135
2144
|
export interface UserConnection {
|
|
3136
2145
|
__typename?: 'UserConnection';
|
|
3137
2146
|
/** Total count of collection. */
|
|
3138
|
-
count
|
|
2147
|
+
count: Scalars['Int']['output'];
|
|
3139
2148
|
/** A list of edges. */
|
|
3140
2149
|
edges?: Maybe<Array<Maybe<UserEdge>>>;
|
|
3141
2150
|
/** A list of nodes. */
|
|
3142
2151
|
nodes?: Maybe<Array<Maybe<User>>>;
|
|
3143
2152
|
/** Information to aid in pagination. */
|
|
3144
|
-
pageInfo
|
|
2153
|
+
pageInfo: PageInfo;
|
|
3145
2154
|
}
|
|
3146
2155
|
|
|
3147
2156
|
/** An edge in a connection. */
|
|
3148
2157
|
export interface UserEdge {
|
|
3149
2158
|
__typename?: 'UserEdge';
|
|
3150
2159
|
/** A cursor for use in pagination. */
|
|
3151
|
-
cursor
|
|
2160
|
+
cursor: Scalars['String']['output'];
|
|
3152
2161
|
/** The item at the end of the edge. */
|
|
3153
2162
|
node?: Maybe<User>;
|
|
3154
2163
|
}
|
|
@@ -3157,165 +2166,34 @@ export interface UserEdge {
|
|
|
3157
2166
|
export interface UserIdentity {
|
|
3158
2167
|
__typename?: 'UserIdentity';
|
|
3159
2168
|
/** Time when this UserIdentity was created */
|
|
3160
|
-
createdAt
|
|
2169
|
+
createdAt: Scalars['Time']['output'];
|
|
3161
2170
|
/** Global ID of this UserIdentity */
|
|
3162
|
-
id
|
|
2171
|
+
id: Scalars['UserIdentityID']['output'];
|
|
3163
2172
|
/** The description for the runtime if present */
|
|
3164
|
-
identifier
|
|
2173
|
+
identifier: Scalars['String']['output'];
|
|
3165
2174
|
/** The name for the runtime */
|
|
3166
|
-
providerId
|
|
2175
|
+
providerId: Scalars['String']['output'];
|
|
3167
2176
|
/** Time when this UserIdentity was last updated */
|
|
3168
|
-
updatedAt
|
|
2177
|
+
updatedAt: Scalars['Time']['output'];
|
|
3169
2178
|
/** The correlating user of the identity */
|
|
3170
|
-
user
|
|
3171
|
-
}
|
|
3172
|
-
|
|
3173
|
-
/** The connection type for UserIdentity. */
|
|
3174
|
-
export interface UserIdentityConnection {
|
|
3175
|
-
__typename?: 'UserIdentityConnection';
|
|
3176
|
-
/** Total count of collection. */
|
|
3177
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
3178
|
-
/** A list of edges. */
|
|
3179
|
-
edges?: Maybe<Array<Maybe<UserIdentityEdge>>>;
|
|
3180
|
-
/** A list of nodes. */
|
|
3181
|
-
nodes?: Maybe<Array<Maybe<UserIdentity>>>;
|
|
3182
|
-
/** Information to aid in pagination. */
|
|
3183
|
-
pageInfo?: Maybe<PageInfo>;
|
|
3184
|
-
}
|
|
3185
|
-
|
|
3186
|
-
/** An edge in a connection. */
|
|
3187
|
-
export interface UserIdentityEdge {
|
|
3188
|
-
__typename?: 'UserIdentityEdge';
|
|
3189
|
-
/** A cursor for use in pagination. */
|
|
3190
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
3191
|
-
/** The item at the end of the edge. */
|
|
3192
|
-
node?: Maybe<UserIdentity>;
|
|
2179
|
+
user: User;
|
|
3193
2180
|
}
|
|
3194
2181
|
|
|
3195
2182
|
/** Represents a user session */
|
|
3196
2183
|
export interface UserSession {
|
|
3197
2184
|
__typename?: 'UserSession';
|
|
3198
2185
|
/** Whether or not the session is active and can be used */
|
|
3199
|
-
active
|
|
2186
|
+
active: Scalars['Boolean']['output'];
|
|
3200
2187
|
/** Time when this UserSession was created */
|
|
3201
|
-
createdAt
|
|
2188
|
+
createdAt: Scalars['Time']['output'];
|
|
3202
2189
|
/** Global ID of this UserSession */
|
|
3203
|
-
id
|
|
2190
|
+
id: Scalars['UserSessionID']['output'];
|
|
3204
2191
|
/** Token belonging to the session, only present on creation */
|
|
3205
2192
|
token?: Maybe<Scalars['String']['output']>;
|
|
3206
2193
|
/** Time when this UserSession was last updated */
|
|
3207
|
-
updatedAt
|
|
2194
|
+
updatedAt: Scalars['Time']['output'];
|
|
3208
2195
|
/** User that belongs to the session */
|
|
3209
|
-
user
|
|
3210
|
-
/** Abilities for the current user on this UserSession */
|
|
3211
|
-
userAbilities?: Maybe<UserSessionUserAbilities>;
|
|
3212
|
-
}
|
|
3213
|
-
|
|
3214
|
-
/** The connection type for UserSession. */
|
|
3215
|
-
export interface UserSessionConnection {
|
|
3216
|
-
__typename?: 'UserSessionConnection';
|
|
3217
|
-
/** Total count of collection. */
|
|
3218
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
3219
|
-
/** A list of edges. */
|
|
3220
|
-
edges?: Maybe<Array<Maybe<UserSessionEdge>>>;
|
|
3221
|
-
/** A list of nodes. */
|
|
3222
|
-
nodes?: Maybe<Array<Maybe<UserSession>>>;
|
|
3223
|
-
/** Information to aid in pagination. */
|
|
3224
|
-
pageInfo?: Maybe<PageInfo>;
|
|
3225
|
-
}
|
|
3226
|
-
|
|
3227
|
-
/** An edge in a connection. */
|
|
3228
|
-
export interface UserSessionEdge {
|
|
3229
|
-
__typename?: 'UserSessionEdge';
|
|
3230
|
-
/** A cursor for use in pagination. */
|
|
3231
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
3232
|
-
/** The item at the end of the edge. */
|
|
3233
|
-
node?: Maybe<UserSession>;
|
|
3234
|
-
}
|
|
3235
|
-
|
|
3236
|
-
/** Abilities for the current user on this UserSession */
|
|
3237
|
-
export interface UserSessionUserAbilities {
|
|
3238
|
-
__typename?: 'UserSessionUserAbilities';
|
|
3239
|
-
/** Shows if the current user has the `logout_session` ability on this UserSession */
|
|
3240
|
-
logoutSession?: Maybe<Scalars['Boolean']['output']>;
|
|
3241
|
-
}
|
|
3242
|
-
|
|
3243
|
-
/** Abilities for the current user on this User */
|
|
3244
|
-
export interface UserUserAbilities {
|
|
3245
|
-
__typename?: 'UserUserAbilities';
|
|
3246
|
-
/** Shows if the current user has the `manage_mfa` ability on this User */
|
|
3247
|
-
manageMfa?: Maybe<Scalars['Boolean']['output']>;
|
|
3248
|
-
/** Shows if the current user has the `update_user` ability on this User */
|
|
3249
|
-
updateUser?: Maybe<Scalars['Boolean']['output']>;
|
|
3250
|
-
}
|
|
3251
|
-
|
|
3252
|
-
/** Autogenerated input type of UsersCreate */
|
|
3253
|
-
export interface UsersCreateInput {
|
|
3254
|
-
/** Admin status for the user. */
|
|
3255
|
-
admin?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3256
|
-
/** A unique identifier for the client performing the mutation. */
|
|
3257
|
-
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3258
|
-
/** Email for the user. */
|
|
3259
|
-
email: Scalars['String']['input'];
|
|
3260
|
-
/** Firstname for the user. */
|
|
3261
|
-
firstname?: InputMaybe<Scalars['String']['input']>;
|
|
3262
|
-
/** Lastname for the user. */
|
|
3263
|
-
lastname?: InputMaybe<Scalars['String']['input']>;
|
|
3264
|
-
/** Password for the user. */
|
|
3265
|
-
password: Scalars['String']['input'];
|
|
3266
|
-
/** Password repeat for the user to check for typos. */
|
|
3267
|
-
passwordRepeat: Scalars['String']['input'];
|
|
3268
|
-
/** Username for the user. */
|
|
3269
|
-
username: Scalars['String']['input'];
|
|
3270
|
-
}
|
|
3271
|
-
|
|
3272
|
-
/** Autogenerated return type of UsersCreate. */
|
|
3273
|
-
export interface UsersCreatePayload {
|
|
3274
|
-
__typename?: 'UsersCreatePayload';
|
|
3275
|
-
/** A unique identifier for the client performing the mutation. */
|
|
3276
|
-
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3277
|
-
/** Errors encountered during execution of the mutation. */
|
|
3278
|
-
errors?: Maybe<Array<Error>>;
|
|
3279
|
-
/** The created user. */
|
|
3280
|
-
user?: Maybe<User>;
|
|
3281
|
-
}
|
|
3282
|
-
|
|
3283
|
-
/** Autogenerated input type of UsersDelete */
|
|
3284
|
-
export interface UsersDeleteInput {
|
|
3285
|
-
/** A unique identifier for the client performing the mutation. */
|
|
3286
|
-
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3287
|
-
/** The user to delete. */
|
|
3288
|
-
userId: Scalars['UserID']['input'];
|
|
3289
|
-
}
|
|
3290
|
-
|
|
3291
|
-
/** Autogenerated return type of UsersDelete. */
|
|
3292
|
-
export interface UsersDeletePayload {
|
|
3293
|
-
__typename?: 'UsersDeletePayload';
|
|
3294
|
-
/** A unique identifier for the client performing the mutation. */
|
|
3295
|
-
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3296
|
-
/** Errors encountered during execution of the mutation. */
|
|
3297
|
-
errors?: Maybe<Array<Error>>;
|
|
3298
|
-
/** The deleted user. */
|
|
3299
|
-
user?: Maybe<User>;
|
|
3300
|
-
}
|
|
3301
|
-
|
|
3302
|
-
/** Autogenerated input type of UsersEmailVerification */
|
|
3303
|
-
export interface UsersEmailVerificationInput {
|
|
3304
|
-
/** A unique identifier for the client performing the mutation. */
|
|
3305
|
-
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3306
|
-
/** The email verification token */
|
|
3307
|
-
token: Scalars['String']['input'];
|
|
3308
|
-
}
|
|
3309
|
-
|
|
3310
|
-
/** Autogenerated return type of UsersEmailVerification. */
|
|
3311
|
-
export interface UsersEmailVerificationPayload {
|
|
3312
|
-
__typename?: 'UsersEmailVerificationPayload';
|
|
3313
|
-
/** A unique identifier for the client performing the mutation. */
|
|
3314
|
-
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3315
|
-
/** Errors encountered during execution of the mutation. */
|
|
3316
|
-
errors?: Maybe<Array<Error>>;
|
|
3317
|
-
/** The user whose email was verified */
|
|
3318
|
-
user?: Maybe<User>;
|
|
2196
|
+
user: User;
|
|
3319
2197
|
}
|
|
3320
2198
|
|
|
3321
2199
|
/** Autogenerated input type of UsersIdentityLink */
|
|
@@ -3334,7 +2212,7 @@ export interface UsersIdentityLinkPayload {
|
|
|
3334
2212
|
/** A unique identifier for the client performing the mutation. */
|
|
3335
2213
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3336
2214
|
/** Errors encountered during execution of the mutation. */
|
|
3337
|
-
errors
|
|
2215
|
+
errors: Array<Error>;
|
|
3338
2216
|
/** The created user identity */
|
|
3339
2217
|
userIdentity?: Maybe<UserIdentity>;
|
|
3340
2218
|
}
|
|
@@ -3355,7 +2233,7 @@ export interface UsersIdentityLoginPayload {
|
|
|
3355
2233
|
/** A unique identifier for the client performing the mutation. */
|
|
3356
2234
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3357
2235
|
/** Errors encountered during execution of the mutation. */
|
|
3358
|
-
errors
|
|
2236
|
+
errors: Array<Error>;
|
|
3359
2237
|
/** The created user session */
|
|
3360
2238
|
userSession?: Maybe<UserSession>;
|
|
3361
2239
|
}
|
|
@@ -3376,7 +2254,7 @@ export interface UsersIdentityRegisterPayload {
|
|
|
3376
2254
|
/** A unique identifier for the client performing the mutation. */
|
|
3377
2255
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3378
2256
|
/** Errors encountered during execution of the mutation. */
|
|
3379
|
-
errors
|
|
2257
|
+
errors: Array<Error>;
|
|
3380
2258
|
/** The created users session */
|
|
3381
2259
|
userSession?: Maybe<UserSession>;
|
|
3382
2260
|
}
|
|
@@ -3395,7 +2273,7 @@ export interface UsersIdentityUnlinkPayload {
|
|
|
3395
2273
|
/** A unique identifier for the client performing the mutation. */
|
|
3396
2274
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3397
2275
|
/** Errors encountered during execution of the mutation. */
|
|
3398
|
-
errors
|
|
2276
|
+
errors: Array<Error>;
|
|
3399
2277
|
/** The removed identity */
|
|
3400
2278
|
userIdentity?: Maybe<UserIdentity>;
|
|
3401
2279
|
}
|
|
@@ -3420,7 +2298,7 @@ export interface UsersLoginPayload {
|
|
|
3420
2298
|
/** A unique identifier for the client performing the mutation. */
|
|
3421
2299
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3422
2300
|
/** Errors encountered during execution of the mutation. */
|
|
3423
|
-
errors
|
|
2301
|
+
errors: Array<Error>;
|
|
3424
2302
|
/** The created user session */
|
|
3425
2303
|
userSession?: Maybe<UserSession>;
|
|
3426
2304
|
}
|
|
@@ -3439,7 +2317,7 @@ export interface UsersLogoutPayload {
|
|
|
3439
2317
|
/** A unique identifier for the client performing the mutation. */
|
|
3440
2318
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3441
2319
|
/** Errors encountered during execution of the mutation. */
|
|
3442
|
-
errors
|
|
2320
|
+
errors: Array<Error>;
|
|
3443
2321
|
/** The logged out user session */
|
|
3444
2322
|
userSession?: Maybe<UserSession>;
|
|
3445
2323
|
}
|
|
@@ -3458,7 +2336,7 @@ export interface UsersMfaBackupCodesRotatePayload {
|
|
|
3458
2336
|
/** The newly rotated backup codes. */
|
|
3459
2337
|
codes?: Maybe<Array<Scalars['String']['output']>>;
|
|
3460
2338
|
/** Errors encountered during execution of the mutation. */
|
|
3461
|
-
errors
|
|
2339
|
+
errors: Array<Error>;
|
|
3462
2340
|
}
|
|
3463
2341
|
|
|
3464
2342
|
/** Autogenerated input type of UsersMfaTotpGenerateSecret */
|
|
@@ -3473,7 +2351,7 @@ export interface UsersMfaTotpGenerateSecretPayload {
|
|
|
3473
2351
|
/** A unique identifier for the client performing the mutation. */
|
|
3474
2352
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3475
2353
|
/** Errors encountered during execution of the mutation. */
|
|
3476
|
-
errors
|
|
2354
|
+
errors: Array<Error>;
|
|
3477
2355
|
/** The created and signed secret */
|
|
3478
2356
|
secret?: Maybe<Scalars['String']['output']>;
|
|
3479
2357
|
}
|
|
@@ -3497,53 +2375,11 @@ export interface UsersMfaTotpValidateSecretPayload {
|
|
|
3497
2375
|
/** A unique identifier for the client performing the mutation. */
|
|
3498
2376
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3499
2377
|
/** Errors encountered during execution of the mutation. */
|
|
3500
|
-
errors
|
|
2378
|
+
errors: Array<Error>;
|
|
3501
2379
|
/** The modified user */
|
|
3502
2380
|
user?: Maybe<User>;
|
|
3503
2381
|
}
|
|
3504
2382
|
|
|
3505
|
-
/** Autogenerated input type of UsersPasswordReset */
|
|
3506
|
-
export interface UsersPasswordResetInput {
|
|
3507
|
-
/** A unique identifier for the client performing the mutation. */
|
|
3508
|
-
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3509
|
-
/** The new password to set for the user */
|
|
3510
|
-
newPassword: Scalars['String']['input'];
|
|
3511
|
-
/** The confirmation of the new password to set for the user needs to be the same as the new password */
|
|
3512
|
-
newPasswordConfirmation: Scalars['String']['input'];
|
|
3513
|
-
/** The password reset token sent to the user email */
|
|
3514
|
-
resetToken: Scalars['String']['input'];
|
|
3515
|
-
}
|
|
3516
|
-
|
|
3517
|
-
/** Autogenerated return type of UsersPasswordReset. */
|
|
3518
|
-
export interface UsersPasswordResetPayload {
|
|
3519
|
-
__typename?: 'UsersPasswordResetPayload';
|
|
3520
|
-
/** A unique identifier for the client performing the mutation. */
|
|
3521
|
-
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3522
|
-
/** Errors encountered during execution of the mutation. */
|
|
3523
|
-
errors?: Maybe<Array<Error>>;
|
|
3524
|
-
/** A message indicating the result of the password reset request */
|
|
3525
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
3526
|
-
}
|
|
3527
|
-
|
|
3528
|
-
/** Autogenerated input type of UsersPasswordResetRequest */
|
|
3529
|
-
export interface UsersPasswordResetRequestInput {
|
|
3530
|
-
/** A unique identifier for the client performing the mutation. */
|
|
3531
|
-
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3532
|
-
/** Email of the user to reset the password */
|
|
3533
|
-
email: Scalars['String']['input'];
|
|
3534
|
-
}
|
|
3535
|
-
|
|
3536
|
-
/** Autogenerated return type of UsersPasswordResetRequest. */
|
|
3537
|
-
export interface UsersPasswordResetRequestPayload {
|
|
3538
|
-
__typename?: 'UsersPasswordResetRequestPayload';
|
|
3539
|
-
/** A unique identifier for the client performing the mutation. */
|
|
3540
|
-
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3541
|
-
/** Errors encountered during execution of the mutation. */
|
|
3542
|
-
errors?: Maybe<Array<Error>>;
|
|
3543
|
-
/** A message indicating the result of the password reset request */
|
|
3544
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
3545
|
-
}
|
|
3546
|
-
|
|
3547
2383
|
/** Autogenerated input type of UsersRegister */
|
|
3548
2384
|
export interface UsersRegisterInput {
|
|
3549
2385
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3564,7 +2400,7 @@ export interface UsersRegisterPayload {
|
|
|
3564
2400
|
/** A unique identifier for the client performing the mutation. */
|
|
3565
2401
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3566
2402
|
/** Errors encountered during execution of the mutation. */
|
|
3567
|
-
errors
|
|
2403
|
+
errors: Array<Error>;
|
|
3568
2404
|
/** The created users session */
|
|
3569
2405
|
userSession?: Maybe<UserSession>;
|
|
3570
2406
|
}
|
|
@@ -3599,7 +2435,7 @@ export interface UsersUpdatePayload {
|
|
|
3599
2435
|
/** A unique identifier for the client performing the mutation. */
|
|
3600
2436
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
3601
2437
|
/** Errors encountered during execution of the mutation. */
|
|
3602
|
-
errors
|
|
2438
|
+
errors: Array<Error>;
|
|
3603
2439
|
/** The updated user. */
|
|
3604
2440
|
user?: Maybe<User>;
|
|
3605
2441
|
}
|