@code0-tech/sagittarius-graphql-types 0.0.0-6f0b32a0eb18c9c3569a090f089c6adf1b4d666c → 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 +828 -14
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -7,41 +7,73 @@ export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> =
|
|
|
7
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
|
-
ID: { input:
|
|
10
|
+
ID: { input: `gid://sagittarius//${number}`; output: `gid://sagittarius//${number}`; }
|
|
11
11
|
String: { input: string; output: string; }
|
|
12
12
|
Boolean: { input: boolean; output: boolean; }
|
|
13
13
|
Int: { input: number; output: number; }
|
|
14
14
|
Float: { input: number; output: number; }
|
|
15
15
|
/** A unique identifier for all DataType entities of the application */
|
|
16
|
-
DataTypeID: { input:
|
|
16
|
+
DataTypeID: { input: `gid://sagittarius/DataType/${number}`; output: `gid://sagittarius/DataType/${number}`; }
|
|
17
|
+
/** A unique identifier for all DataTypeIdentifier entities of the application */
|
|
18
|
+
DataTypeIdentifierID: { input: `gid://sagittarius/DataTypeIdentifier/${number}`; output: `gid://sagittarius/DataTypeIdentifier/${number}`; }
|
|
19
|
+
/** A unique identifier for all DataTypeRule entities of the application */
|
|
20
|
+
DataTypeRuleID: { input: `gid://sagittarius/DataTypeRule/${number}`; output: `gid://sagittarius/DataTypeRule/${number}`; }
|
|
21
|
+
/** A unique identifier for all Flow entities of the application */
|
|
22
|
+
FlowID: { input: `gid://sagittarius/Flow/${number}`; output: `gid://sagittarius/Flow/${number}`; }
|
|
23
|
+
/** A unique identifier for all FlowSetting entities of the application */
|
|
24
|
+
FlowSettingID: { input: `gid://sagittarius/FlowSetting/${number}`; output: `gid://sagittarius/FlowSetting/${number}`; }
|
|
25
|
+
/** A unique identifier for all FlowType entities of the application */
|
|
26
|
+
FlowTypeID: { input: `gid://sagittarius/FlowType/${number}`; output: `gid://sagittarius/FlowType/${number}`; }
|
|
27
|
+
/** A unique identifier for all FlowTypeSetting entities of the application */
|
|
28
|
+
FlowTypeSettingID: { input: `gid://sagittarius/FlowTypeSetting/${number}`; output: `gid://sagittarius/FlowTypeSetting/${number}`; }
|
|
29
|
+
/** A unique identifier for all GenericMapper entities of the application */
|
|
30
|
+
GenericMapperID: { input: `gid://sagittarius/GenericMapper/${number}`; output: `gid://sagittarius/GenericMapper/${number}`; }
|
|
31
|
+
/** A unique identifier for all GenericType entities of the application */
|
|
32
|
+
GenericTypeID: { input: `gid://sagittarius/GenericType/${number}`; output: `gid://sagittarius/GenericType/${number}`; }
|
|
33
|
+
/** Represents untyped JSON */
|
|
34
|
+
JSON: { input: any; output: any; }
|
|
17
35
|
/** A unique identifier for all Namespace entities of the application */
|
|
18
|
-
NamespaceID: { input:
|
|
36
|
+
NamespaceID: { input: `gid://sagittarius/Namespace/${number}`; output: `gid://sagittarius/Namespace/${number}`; }
|
|
19
37
|
/** A unique identifier for all NamespaceLicense entities of the application */
|
|
20
|
-
NamespaceLicenseID: { input:
|
|
38
|
+
NamespaceLicenseID: { input: `gid://sagittarius/NamespaceLicense/${number}`; output: `gid://sagittarius/NamespaceLicense/${number}`; }
|
|
21
39
|
/** A unique identifier for all NamespaceMember entities of the application */
|
|
22
|
-
NamespaceMemberID: { input:
|
|
40
|
+
NamespaceMemberID: { input: `gid://sagittarius/NamespaceMember/${number}`; output: `gid://sagittarius/NamespaceMember/${number}`; }
|
|
23
41
|
/** A unique identifier for all NamespaceMemberRole entities of the application */
|
|
24
|
-
NamespaceMemberRoleID: { input:
|
|
42
|
+
NamespaceMemberRoleID: { input: `gid://sagittarius/NamespaceMemberRole/${number}`; output: `gid://sagittarius/NamespaceMemberRole/${number}`; }
|
|
25
43
|
/** A unique identifier for all NamespaceProject entities of the application */
|
|
26
|
-
NamespaceProjectID: { input:
|
|
44
|
+
NamespaceProjectID: { input: `gid://sagittarius/NamespaceProject/${number}`; output: `gid://sagittarius/NamespaceProject/${number}`; }
|
|
27
45
|
/** A unique identifier for all NamespaceRole entities of the application */
|
|
28
|
-
NamespaceRoleID: { input:
|
|
46
|
+
NamespaceRoleID: { input: `gid://sagittarius/NamespaceRole/${number}`; output: `gid://sagittarius/NamespaceRole/${number}`; }
|
|
47
|
+
/** A unique identifier for all NodeFunction entities of the application */
|
|
48
|
+
NodeFunctionID: { input: `gid://sagittarius/NodeFunction/${number}`; output: `gid://sagittarius/NodeFunction/${number}`; }
|
|
49
|
+
/** A unique identifier for all NodeParameter entities of the application */
|
|
50
|
+
NodeParameterID: { input: `gid://sagittarius/NodeParameter/${number}`; output: `gid://sagittarius/NodeParameter/${number}`; }
|
|
29
51
|
/** A unique identifier for all Organization entities of the application */
|
|
30
|
-
OrganizationID: { input:
|
|
52
|
+
OrganizationID: { input: `gid://sagittarius/Organization/${number}`; output: `gid://sagittarius/Organization/${number}`; }
|
|
53
|
+
/** A unique identifier for all ReferencePath entities of the application */
|
|
54
|
+
ReferencePathID: { input: `gid://sagittarius/ReferencePath/${number}`; output: `gid://sagittarius/ReferencePath/${number}`; }
|
|
55
|
+
/** A unique identifier for all ReferenceValue entities of the application */
|
|
56
|
+
ReferenceValueID: { input: `gid://sagittarius/ReferenceValue/${number}`; output: `gid://sagittarius/ReferenceValue/${number}`; }
|
|
57
|
+
/** A unique identifier for all RuntimeFunctionDefinition entities of the application */
|
|
58
|
+
RuntimeFunctionDefinitionID: { input: `gid://sagittarius/RuntimeFunctionDefinition/${number}`; output: `gid://sagittarius/RuntimeFunctionDefinition/${number}`; }
|
|
31
59
|
/** A unique identifier for all Runtime entities of the application */
|
|
32
|
-
RuntimeID: { input:
|
|
60
|
+
RuntimeID: { input: `gid://sagittarius/Runtime/${number}`; output: `gid://sagittarius/Runtime/${number}`; }
|
|
61
|
+
/** A unique identifier for all RuntimeParameterDefinition entities of the application */
|
|
62
|
+
RuntimeParameterDefinitionID: { input: `gid://sagittarius/RuntimeParameterDefinition/${number}`; output: `gid://sagittarius/RuntimeParameterDefinition/${number}`; }
|
|
33
63
|
/**
|
|
34
64
|
* Time represented in ISO 8601.
|
|
35
65
|
*
|
|
36
66
|
* For example: "2023-12-15T17:31:00Z".
|
|
37
67
|
*/
|
|
38
|
-
Time: { input:
|
|
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}`; }
|
|
39
71
|
/** A unique identifier for all User entities of the application */
|
|
40
|
-
UserID: { input:
|
|
72
|
+
UserID: { input: `gid://sagittarius/User/${number}`; output: `gid://sagittarius/User/${number}`; }
|
|
41
73
|
/** A unique identifier for all UserIdentity entities of the application */
|
|
42
|
-
UserIdentityID: { input:
|
|
74
|
+
UserIdentityID: { input: `gid://sagittarius/UserIdentity/${number}`; output: `gid://sagittarius/UserIdentity/${number}`; }
|
|
43
75
|
/** A unique identifier for all UserSession entities of the application */
|
|
44
|
-
UserSessionID: { input:
|
|
76
|
+
UserSessionID: { input: `gid://sagittarius/UserSession/${number}`; output: `gid://sagittarius/UserSession/${number}`; }
|
|
45
77
|
}
|
|
46
78
|
|
|
47
79
|
/** Represents an active model error */
|
|
@@ -86,23 +118,68 @@ export interface ApplicationSettingsUpdatePayload {
|
|
|
86
118
|
/** Objects that can present an authentication */
|
|
87
119
|
export type Authentication = UserSession;
|
|
88
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
|
+
|
|
89
140
|
/** Represents a DataType */
|
|
90
141
|
export interface DataType {
|
|
91
142
|
__typename?: 'DataType';
|
|
92
143
|
/** Time when this DataType was created */
|
|
93
144
|
createdAt: Scalars['Time']['output'];
|
|
145
|
+
/** Generic keys of the datatype */
|
|
146
|
+
genericKeys?: Maybe<Array<Scalars['String']['output']>>;
|
|
94
147
|
/** Global ID of this DataType */
|
|
95
148
|
id: Scalars['DataTypeID']['output'];
|
|
96
149
|
/** The identifier scoped to the namespace */
|
|
97
150
|
identifier: Scalars['String']['output'];
|
|
151
|
+
/** Names of the flow type setting */
|
|
152
|
+
name: TranslationConnection;
|
|
98
153
|
/** The namespace where this datatype belongs to */
|
|
99
154
|
namespace?: Maybe<Namespace>;
|
|
155
|
+
/** The parent datatype */
|
|
156
|
+
parent?: Maybe<DataTypeIdentifier>;
|
|
157
|
+
/** Rules of the datatype */
|
|
158
|
+
rules: DataTypeRuleConnection;
|
|
100
159
|
/** Time when this DataType was last updated */
|
|
101
160
|
updatedAt: Scalars['Time']['output'];
|
|
102
161
|
/** The type of the datatype */
|
|
103
162
|
variant: DataTypeVariant;
|
|
104
163
|
}
|
|
105
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']>;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
/** Represents a DataType */
|
|
176
|
+
export interface DataTypeRulesArgs {
|
|
177
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
178
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
179
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
180
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
181
|
+
}
|
|
182
|
+
|
|
106
183
|
/** The connection type for DataType. */
|
|
107
184
|
export interface DataTypeConnection {
|
|
108
185
|
__typename?: 'DataTypeConnection';
|
|
@@ -125,12 +202,98 @@ export interface DataTypeEdge {
|
|
|
125
202
|
node?: Maybe<DataType>;
|
|
126
203
|
}
|
|
127
204
|
|
|
205
|
+
/** Represents a data type identifier. */
|
|
206
|
+
export interface DataTypeIdentifier {
|
|
207
|
+
__typename?: 'DataTypeIdentifier';
|
|
208
|
+
/** Time when this DataTypeIdentifier was created */
|
|
209
|
+
createdAt: Scalars['Time']['output'];
|
|
210
|
+
/** The data type of the data type identifier. */
|
|
211
|
+
dataType?: Maybe<DataType>;
|
|
212
|
+
/** The generic key of the data type identifier. */
|
|
213
|
+
genericKey?: Maybe<Scalars['String']['output']>;
|
|
214
|
+
/** The generic type of the data type identifier. */
|
|
215
|
+
genericType?: Maybe<GenericType>;
|
|
216
|
+
/** Global ID of this DataTypeIdentifier */
|
|
217
|
+
id: Scalars['DataTypeIdentifierID']['output'];
|
|
218
|
+
/** Time when this DataTypeIdentifier was last updated */
|
|
219
|
+
updatedAt: Scalars['Time']['output'];
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
/** Input type for data type identifier */
|
|
223
|
+
export interface DataTypeIdentifierInput {
|
|
224
|
+
/** Data type ID */
|
|
225
|
+
dataTypeId?: InputMaybe<Scalars['DataTypeID']['input']>;
|
|
226
|
+
/** Generic key value */
|
|
227
|
+
genericKey?: InputMaybe<Scalars['String']['input']>;
|
|
228
|
+
/** Generic type information */
|
|
229
|
+
genericType?: InputMaybe<GenericTypeInput>;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
/** Represents a rule that can be applied to a data type. */
|
|
233
|
+
export interface DataTypeRule {
|
|
234
|
+
__typename?: 'DataTypeRule';
|
|
235
|
+
/** The configuration of the rule */
|
|
236
|
+
config: Config;
|
|
237
|
+
/** Time when this DataTypeRule was created */
|
|
238
|
+
createdAt: Scalars['Time']['output'];
|
|
239
|
+
/** Global ID of this DataTypeRule */
|
|
240
|
+
id: Scalars['DataTypeRuleID']['output'];
|
|
241
|
+
/** Time when this DataTypeRule was last updated */
|
|
242
|
+
updatedAt: Scalars['Time']['output'];
|
|
243
|
+
/** The type of the rule */
|
|
244
|
+
variant: DataTypeRulesDataTypeRuleVariant;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
/** The connection type for DataTypeRule. */
|
|
248
|
+
export interface DataTypeRuleConnection {
|
|
249
|
+
__typename?: 'DataTypeRuleConnection';
|
|
250
|
+
/** Total count of collection. */
|
|
251
|
+
count: Scalars['Int']['output'];
|
|
252
|
+
/** A list of edges. */
|
|
253
|
+
edges?: Maybe<Array<Maybe<DataTypeRuleEdge>>>;
|
|
254
|
+
/** A list of nodes. */
|
|
255
|
+
nodes?: Maybe<Array<Maybe<DataTypeRule>>>;
|
|
256
|
+
/** Information to aid in pagination. */
|
|
257
|
+
pageInfo: PageInfo;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
/** An edge in a connection. */
|
|
261
|
+
export interface DataTypeRuleEdge {
|
|
262
|
+
__typename?: 'DataTypeRuleEdge';
|
|
263
|
+
/** A cursor for use in pagination. */
|
|
264
|
+
cursor: Scalars['String']['output'];
|
|
265
|
+
/** The item at the end of the edge. */
|
|
266
|
+
node?: Maybe<DataTypeRule>;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
/** The type of rule that can be applied to a data type. */
|
|
270
|
+
export enum DataTypeRulesDataTypeRuleVariant {
|
|
271
|
+
/** The rule checks if a key is present in the data type. */
|
|
272
|
+
ContainsKey = 'CONTAINS_KEY',
|
|
273
|
+
/** The rule checks if a specific type is present in the data type. */
|
|
274
|
+
ContainsType = 'CONTAINS_TYPE',
|
|
275
|
+
/** The rule checks if the data type matches a specific input type. */
|
|
276
|
+
InputType = 'INPUT_TYPE',
|
|
277
|
+
/** The rule checks if an item is part of a collection in the data type. */
|
|
278
|
+
ItemOfCollection = 'ITEM_OF_COLLECTION',
|
|
279
|
+
/** The rule checks if a number falls within a specified range. */
|
|
280
|
+
NumberRange = 'NUMBER_RANGE',
|
|
281
|
+
/** The rule checks if a string matches a specified regular expression. */
|
|
282
|
+
Regex = 'REGEX',
|
|
283
|
+
/** The rule checks if the data type matches a specific return type. */
|
|
284
|
+
ReturnType = 'RETURN_TYPE'
|
|
285
|
+
}
|
|
286
|
+
|
|
128
287
|
/** Represent all available types of a datatype */
|
|
129
288
|
export enum DataTypeVariant {
|
|
130
289
|
/** Represents an array */
|
|
131
290
|
Array = 'ARRAY',
|
|
132
291
|
/** Represents an data type containing a data type */
|
|
133
292
|
DataType = 'DATA_TYPE',
|
|
293
|
+
/** Represents a error */
|
|
294
|
+
Error = 'ERROR',
|
|
295
|
+
/** Represents a node */
|
|
296
|
+
Node = 'NODE',
|
|
134
297
|
/** Represents an object */
|
|
135
298
|
Object = 'OBJECT',
|
|
136
299
|
/** Represents a primitive datatype */
|
|
@@ -161,12 +324,252 @@ export interface EchoPayload {
|
|
|
161
324
|
/** Objects that can present an error */
|
|
162
325
|
export type Error = ActiveModelError | MessageError;
|
|
163
326
|
|
|
327
|
+
/** Represents a flow */
|
|
328
|
+
export interface Flow {
|
|
329
|
+
__typename?: 'Flow';
|
|
330
|
+
/** Time when this Flow was created */
|
|
331
|
+
createdAt: Scalars['Time']['output'];
|
|
332
|
+
/** Global ID of this Flow */
|
|
333
|
+
id: Scalars['FlowID']['output'];
|
|
334
|
+
/** The input data type of the flow */
|
|
335
|
+
inputType?: Maybe<DataType>;
|
|
336
|
+
/** The return data type of the flow */
|
|
337
|
+
returnType?: Maybe<DataType>;
|
|
338
|
+
/** The settings of the flow */
|
|
339
|
+
settings?: Maybe<Array<FlowSetting>>;
|
|
340
|
+
/** The starting node of the flow */
|
|
341
|
+
startingNode: NodeFunction;
|
|
342
|
+
/** The flow type of the flow */
|
|
343
|
+
type: FlowType;
|
|
344
|
+
/** Time when this Flow was last updated */
|
|
345
|
+
updatedAt: Scalars['Time']['output'];
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
/** Input type for creating or updating a flow */
|
|
349
|
+
export interface FlowInput {
|
|
350
|
+
/** The settings of the flow */
|
|
351
|
+
settings?: InputMaybe<Array<FlowSettingInput>>;
|
|
352
|
+
/** The starting node of the flow */
|
|
353
|
+
startingNode: NodeFunctionInput;
|
|
354
|
+
/** The identifier of the flow type */
|
|
355
|
+
type: Scalars['FlowTypeID']['input'];
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
/** Represents a flow setting */
|
|
359
|
+
export interface FlowSetting {
|
|
360
|
+
__typename?: 'FlowSetting';
|
|
361
|
+
/** Time when this FlowSetting was created */
|
|
362
|
+
createdAt: Scalars['Time']['output'];
|
|
363
|
+
/** The identifier of the flow setting */
|
|
364
|
+
flowSettingId: Scalars['String']['output'];
|
|
365
|
+
/** Global ID of this FlowSetting */
|
|
366
|
+
id: Scalars['FlowSettingID']['output'];
|
|
367
|
+
/** Time when this FlowSetting was last updated */
|
|
368
|
+
updatedAt: Scalars['Time']['output'];
|
|
369
|
+
/** The value of the flow setting */
|
|
370
|
+
value: Scalars['JSON']['output'];
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
/** Input type for flow settings */
|
|
374
|
+
export interface FlowSettingInput {
|
|
375
|
+
/** The identifier (not database id) of the flow setting */
|
|
376
|
+
flowSettingId: Scalars['String']['input'];
|
|
377
|
+
/** The value of the flow setting */
|
|
378
|
+
object: Scalars['JSON']['input'];
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
/** Represents a flow type */
|
|
382
|
+
export interface FlowType {
|
|
383
|
+
__typename?: 'FlowType';
|
|
384
|
+
/** Time when this FlowType was created */
|
|
385
|
+
createdAt: Scalars['Time']['output'];
|
|
386
|
+
/** Descriptions of the flow type */
|
|
387
|
+
descriptions?: Maybe<TranslationConnection>;
|
|
388
|
+
/** Editable status of the flow type */
|
|
389
|
+
editable: Scalars['Boolean']['output'];
|
|
390
|
+
/** Flow type settings of the flow type */
|
|
391
|
+
flowTypeSettings: Array<FlowTypeSetting>;
|
|
392
|
+
/** Global ID of this FlowType */
|
|
393
|
+
id: Scalars['TypesFlowTypeID']['output'];
|
|
394
|
+
/** Identifier of the flow type */
|
|
395
|
+
identifier: Scalars['String']['output'];
|
|
396
|
+
/** Input type of the flow type */
|
|
397
|
+
inputType?: Maybe<DataType>;
|
|
398
|
+
/** Names of the flow type */
|
|
399
|
+
names?: Maybe<TranslationConnection>;
|
|
400
|
+
/** Return type of the flow type */
|
|
401
|
+
returnType?: Maybe<DataType>;
|
|
402
|
+
/** Time when this FlowType was last updated */
|
|
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']>;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
/** The connection type for FlowType. */
|
|
425
|
+
export interface FlowTypeConnection {
|
|
426
|
+
__typename?: 'FlowTypeConnection';
|
|
427
|
+
/** Total count of collection. */
|
|
428
|
+
count: Scalars['Int']['output'];
|
|
429
|
+
/** A list of edges. */
|
|
430
|
+
edges?: Maybe<Array<Maybe<FlowTypeEdge>>>;
|
|
431
|
+
/** A list of nodes. */
|
|
432
|
+
nodes?: Maybe<Array<Maybe<FlowType>>>;
|
|
433
|
+
/** Information to aid in pagination. */
|
|
434
|
+
pageInfo: PageInfo;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
/** An edge in a connection. */
|
|
438
|
+
export interface FlowTypeEdge {
|
|
439
|
+
__typename?: 'FlowTypeEdge';
|
|
440
|
+
/** A cursor for use in pagination. */
|
|
441
|
+
cursor: Scalars['String']['output'];
|
|
442
|
+
/** The item at the end of the edge. */
|
|
443
|
+
node?: Maybe<FlowType>;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
/** Represents a flow type setting */
|
|
447
|
+
export interface FlowTypeSetting {
|
|
448
|
+
__typename?: 'FlowTypeSetting';
|
|
449
|
+
/** Time when this FlowTypeSetting was created */
|
|
450
|
+
createdAt: Scalars['Time']['output'];
|
|
451
|
+
/** Data type of the flow type setting */
|
|
452
|
+
dataType?: Maybe<DataType>;
|
|
453
|
+
/** Descriptions of the flow type setting */
|
|
454
|
+
descriptions: TranslationConnection;
|
|
455
|
+
/** Flow type of the flow type setting */
|
|
456
|
+
flowType?: Maybe<FlowType>;
|
|
457
|
+
/** Global ID of this FlowTypeSetting */
|
|
458
|
+
id: Scalars['FlowTypeSettingID']['output'];
|
|
459
|
+
/** Identifier of the flow type setting */
|
|
460
|
+
identifier: Scalars['String']['output'];
|
|
461
|
+
/** Names of the flow type setting */
|
|
462
|
+
names: TranslationConnection;
|
|
463
|
+
/** Unique status of the flow type setting */
|
|
464
|
+
unique: Scalars['Boolean']['output'];
|
|
465
|
+
/** Time when this FlowTypeSetting was last updated */
|
|
466
|
+
updatedAt: Scalars['Time']['output'];
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
/** Represents a flow type setting */
|
|
471
|
+
export interface FlowTypeSettingDescriptionsArgs {
|
|
472
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
473
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
474
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
475
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
|
|
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']>;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
/** Represents a mapping between a source data type and a target key for generic values. */
|
|
488
|
+
export interface GenericMapper {
|
|
489
|
+
__typename?: 'GenericMapper';
|
|
490
|
+
/** Time when this GenericMapper was created */
|
|
491
|
+
createdAt: Scalars['Time']['output'];
|
|
492
|
+
/** Global ID of this GenericMapper */
|
|
493
|
+
id: Scalars['GenericMapperID']['output'];
|
|
494
|
+
/** The source data type identifier. */
|
|
495
|
+
source: DataTypeIdentifier;
|
|
496
|
+
/** The target key for the generic value. */
|
|
497
|
+
target: Scalars['String']['output'];
|
|
498
|
+
/** Time when this GenericMapper was last updated */
|
|
499
|
+
updatedAt: Scalars['Time']['output'];
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
/** Input type for generic mappers */
|
|
503
|
+
export interface GenericMapperInput {
|
|
504
|
+
/** The source data type identifier for the mapper */
|
|
505
|
+
sources: Array<DataTypeIdentifierInput>;
|
|
506
|
+
/** The target data type identifier for the mapper */
|
|
507
|
+
target: Scalars['String']['input'];
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
/** Represents a generic type that can be used in various contexts. */
|
|
511
|
+
export interface GenericType {
|
|
512
|
+
__typename?: 'GenericType';
|
|
513
|
+
/** Time when this GenericType was created */
|
|
514
|
+
createdAt: Scalars['Time']['output'];
|
|
515
|
+
/** The data type associated with this generic type. */
|
|
516
|
+
dataType: DataType;
|
|
517
|
+
/** The mappers associated with this generic type. */
|
|
518
|
+
genericMappers: Array<GenericMapper>;
|
|
519
|
+
/** Global ID of this GenericType */
|
|
520
|
+
id: Scalars['GenericTypeID']['output'];
|
|
521
|
+
/** Time when this GenericType was last updated */
|
|
522
|
+
updatedAt: Scalars['Time']['output'];
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
/** Input type for generic type operations. */
|
|
526
|
+
export interface GenericTypeInput {
|
|
527
|
+
/** The data type associated with this generic type. */
|
|
528
|
+
dataTypeId: Scalars['DataTypeID']['input'];
|
|
529
|
+
/** The mappers associated with this generic type. */
|
|
530
|
+
genericMappers: Array<GenericMapperInput>;
|
|
531
|
+
}
|
|
532
|
+
|
|
164
533
|
/** Represents the input for external user identity validation */
|
|
165
534
|
export interface IdentityInput {
|
|
166
535
|
/** This validation code will be used for the oAuth validation process */
|
|
167
536
|
code?: InputMaybe<Scalars['String']['input']>;
|
|
168
537
|
}
|
|
169
538
|
|
|
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;
|
|
546
|
+
}
|
|
547
|
+
|
|
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']>>;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
/** Represents a literal value, such as a string or number. */
|
|
563
|
+
export interface LiteralValue {
|
|
564
|
+
__typename?: 'LiteralValue';
|
|
565
|
+
/** Time when this LiteralValue was created */
|
|
566
|
+
createdAt: Scalars['Time']['output'];
|
|
567
|
+
/** Time when this LiteralValue was last updated */
|
|
568
|
+
updatedAt: Scalars['Time']['output'];
|
|
569
|
+
/** The literal value itself as JSON. */
|
|
570
|
+
value: Scalars['JSON']['output'];
|
|
571
|
+
}
|
|
572
|
+
|
|
170
573
|
/** Represents an error message */
|
|
171
574
|
export interface MessageError {
|
|
172
575
|
__typename?: 'MessageError';
|
|
@@ -212,10 +615,16 @@ export interface Mutation {
|
|
|
212
615
|
namespacesMembersDelete?: Maybe<NamespacesMembersDeletePayload>;
|
|
213
616
|
/** Invite a new member to a namespace. */
|
|
214
617
|
namespacesMembersInvite?: Maybe<NamespacesMembersInvitePayload>;
|
|
618
|
+
/** Assign runtimes to a project */
|
|
619
|
+
namespacesProjectsAssignRuntimes?: Maybe<NamespacesProjectsAssignRuntimesPayload>;
|
|
215
620
|
/** Creates a new namespace project. */
|
|
216
621
|
namespacesProjectsCreate?: Maybe<NamespacesProjectsCreatePayload>;
|
|
217
622
|
/** Deletes a namespace project. */
|
|
218
623
|
namespacesProjectsDelete?: Maybe<NamespacesProjectsDeletePayload>;
|
|
624
|
+
/** Creates a new flow. */
|
|
625
|
+
namespacesProjectsFlowsCreate?: Maybe<NamespacesProjectsFlowsCreatePayload>;
|
|
626
|
+
/** Deletes a namespace project. */
|
|
627
|
+
namespacesProjectsFlowsDelete?: Maybe<NamespacesProjectsFlowsDeletePayload>;
|
|
219
628
|
/** Updates a namespace project. */
|
|
220
629
|
namespacesProjectsUpdate?: Maybe<NamespacesProjectsUpdatePayload>;
|
|
221
630
|
/** Update the abilities a role is granted. */
|
|
@@ -309,6 +718,12 @@ export interface MutationNamespacesMembersInviteArgs {
|
|
|
309
718
|
}
|
|
310
719
|
|
|
311
720
|
|
|
721
|
+
/** Root Mutation type */
|
|
722
|
+
export interface MutationNamespacesProjectsAssignRuntimesArgs {
|
|
723
|
+
input: NamespacesProjectsAssignRuntimesInput;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
|
|
312
727
|
/** Root Mutation type */
|
|
313
728
|
export interface MutationNamespacesProjectsCreateArgs {
|
|
314
729
|
input: NamespacesProjectsCreateInput;
|
|
@@ -321,6 +736,18 @@ export interface MutationNamespacesProjectsDeleteArgs {
|
|
|
321
736
|
}
|
|
322
737
|
|
|
323
738
|
|
|
739
|
+
/** Root Mutation type */
|
|
740
|
+
export interface MutationNamespacesProjectsFlowsCreateArgs {
|
|
741
|
+
input: NamespacesProjectsFlowsCreateInput;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
/** Root Mutation type */
|
|
746
|
+
export interface MutationNamespacesProjectsFlowsDeleteArgs {
|
|
747
|
+
input: NamespacesProjectsFlowsDeleteInput;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
|
|
324
751
|
/** Root Mutation type */
|
|
325
752
|
export interface MutationNamespacesProjectsUpdateArgs {
|
|
326
753
|
input: NamespacesProjectsUpdateInput;
|
|
@@ -635,10 +1062,23 @@ export interface NamespaceProject {
|
|
|
635
1062
|
name: Scalars['String']['output'];
|
|
636
1063
|
/** The namespace where this project belongs to */
|
|
637
1064
|
namespace: Namespace;
|
|
1065
|
+
/** The primary runtime for the project */
|
|
1066
|
+
primaryRuntime?: Maybe<Runtime>;
|
|
1067
|
+
/** Runtimes assigned to this project */
|
|
1068
|
+
runtimes: RuntimeConnection;
|
|
638
1069
|
/** Time when this NamespaceProject was last updated */
|
|
639
1070
|
updatedAt: Scalars['Time']['output'];
|
|
640
1071
|
}
|
|
641
1072
|
|
|
1073
|
+
|
|
1074
|
+
/** Represents a namespace project */
|
|
1075
|
+
export interface NamespaceProjectRuntimesArgs {
|
|
1076
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1077
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1078
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1079
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1080
|
+
}
|
|
1081
|
+
|
|
642
1082
|
/** The connection type for NamespaceProject. */
|
|
643
1083
|
export interface NamespaceProjectConnection {
|
|
644
1084
|
__typename?: 'NamespaceProjectConnection';
|
|
@@ -693,10 +1133,14 @@ export interface NamespaceRoleAssignedProjectsArgs {
|
|
|
693
1133
|
export enum NamespaceRoleAbility {
|
|
694
1134
|
/** Allows to change the roles of a namespace member */
|
|
695
1135
|
AssignMemberRoles = 'ASSIGN_MEMBER_ROLES',
|
|
1136
|
+
/** Allows to assign runtimes to a project in the namespace */
|
|
1137
|
+
AssignProjectRuntimes = 'ASSIGN_PROJECT_RUNTIMES',
|
|
696
1138
|
/** Allows to change the abilities of a namespace role */
|
|
697
1139
|
AssignRoleAbilities = 'ASSIGN_ROLE_ABILITIES',
|
|
698
1140
|
/** Allows to change the assigned projects of a namespace role */
|
|
699
1141
|
AssignRoleProjects = 'ASSIGN_ROLE_PROJECTS',
|
|
1142
|
+
/** Allows to create flows in a namespace project */
|
|
1143
|
+
CreateFlows = 'CREATE_FLOWS',
|
|
700
1144
|
/** Allows to create a license for the namespace */
|
|
701
1145
|
CreateNamespaceLicense = 'CREATE_NAMESPACE_LICENSE',
|
|
702
1146
|
/** Allows to create a project in the namespace */
|
|
@@ -705,6 +1149,8 @@ export enum NamespaceRoleAbility {
|
|
|
705
1149
|
CreateNamespaceRole = 'CREATE_NAMESPACE_ROLE',
|
|
706
1150
|
/** Allows to create a runtime globally or for the namespace */
|
|
707
1151
|
CreateRuntime = 'CREATE_RUNTIME',
|
|
1152
|
+
/** Allows to delete flows in a namespace project */
|
|
1153
|
+
DeleteFlows = 'DELETE_FLOWS',
|
|
708
1154
|
/** Allows to remove members of a namespace */
|
|
709
1155
|
DeleteMember = 'DELETE_MEMBER',
|
|
710
1156
|
/** Allows to delete the license of the namespace */
|
|
@@ -727,6 +1173,8 @@ export enum NamespaceRoleAbility {
|
|
|
727
1173
|
ReadNamespaceProject = 'READ_NAMESPACE_PROJECT',
|
|
728
1174
|
/** Allows to regenerate a runtime token */
|
|
729
1175
|
RotateRuntimeToken = 'ROTATE_RUNTIME_TOKEN',
|
|
1176
|
+
/** Allows to update flows in the project */
|
|
1177
|
+
UpdateFlows = 'UPDATE_FLOWS',
|
|
730
1178
|
/** Allows to update the project of the namespace */
|
|
731
1179
|
UpdateNamespaceProject = 'UPDATE_NAMESPACE_PROJECT',
|
|
732
1180
|
/** Allows to update the namespace role */
|
|
@@ -860,6 +1308,27 @@ export interface NamespacesMembersInvitePayload {
|
|
|
860
1308
|
namespaceMember?: Maybe<NamespaceMember>;
|
|
861
1309
|
}
|
|
862
1310
|
|
|
1311
|
+
/** Autogenerated input type of NamespacesProjectsAssignRuntimes */
|
|
1312
|
+
export interface NamespacesProjectsAssignRuntimesInput {
|
|
1313
|
+
/** A unique identifier for the client performing the mutation. */
|
|
1314
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
1315
|
+
/** ID of the project to assign runtimes to */
|
|
1316
|
+
namespaceProjectId: Scalars['NamespaceProjectID']['input'];
|
|
1317
|
+
/** The new runtimes assigned to the project */
|
|
1318
|
+
runtimeIds: Array<Scalars['RuntimeID']['input']>;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
/** Autogenerated return type of NamespacesProjectsAssignRuntimes. */
|
|
1322
|
+
export interface NamespacesProjectsAssignRuntimesPayload {
|
|
1323
|
+
__typename?: 'NamespacesProjectsAssignRuntimesPayload';
|
|
1324
|
+
/** A unique identifier for the client performing the mutation. */
|
|
1325
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
1326
|
+
/** Errors encountered during execution of the mutation. */
|
|
1327
|
+
errors: Array<Error>;
|
|
1328
|
+
/** The updated project with assigned runtimes */
|
|
1329
|
+
namespaceProject?: Maybe<NamespaceProject>;
|
|
1330
|
+
}
|
|
1331
|
+
|
|
863
1332
|
/** Autogenerated input type of NamespacesProjectsCreate */
|
|
864
1333
|
export interface NamespacesProjectsCreateInput {
|
|
865
1334
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -902,6 +1371,46 @@ export interface NamespacesProjectsDeletePayload {
|
|
|
902
1371
|
namespaceProject?: Maybe<NamespaceProject>;
|
|
903
1372
|
}
|
|
904
1373
|
|
|
1374
|
+
/** Autogenerated input type of NamespacesProjectsFlowsCreate */
|
|
1375
|
+
export interface NamespacesProjectsFlowsCreateInput {
|
|
1376
|
+
/** A unique identifier for the client performing the mutation. */
|
|
1377
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
1378
|
+
/** The flow to create */
|
|
1379
|
+
flow: FlowInput;
|
|
1380
|
+
/** The ID of the project to which the flow belongs to */
|
|
1381
|
+
projectId: Scalars['NamespaceProjectID']['input'];
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
/** Autogenerated return type of NamespacesProjectsFlowsCreate. */
|
|
1385
|
+
export interface NamespacesProjectsFlowsCreatePayload {
|
|
1386
|
+
__typename?: 'NamespacesProjectsFlowsCreatePayload';
|
|
1387
|
+
/** A unique identifier for the client performing the mutation. */
|
|
1388
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
1389
|
+
/** Errors encountered during execution of the mutation. */
|
|
1390
|
+
errors: Array<Error>;
|
|
1391
|
+
/** The newly created flow. */
|
|
1392
|
+
flow?: Maybe<Flow>;
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
/** Autogenerated input type of NamespacesProjectsFlowsDelete */
|
|
1396
|
+
export interface NamespacesProjectsFlowsDeleteInput {
|
|
1397
|
+
/** A unique identifier for the client performing the mutation. */
|
|
1398
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
1399
|
+
/** The id of the flow which will be deleted */
|
|
1400
|
+
flowId: Scalars['FlowID']['input'];
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
/** Autogenerated return type of NamespacesProjectsFlowsDelete. */
|
|
1404
|
+
export interface NamespacesProjectsFlowsDeletePayload {
|
|
1405
|
+
__typename?: 'NamespacesProjectsFlowsDeletePayload';
|
|
1406
|
+
/** A unique identifier for the client performing the mutation. */
|
|
1407
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
1408
|
+
/** Errors encountered during execution of the mutation. */
|
|
1409
|
+
errors: Array<Error>;
|
|
1410
|
+
/** The deleted flow. */
|
|
1411
|
+
flow?: Maybe<Flow>;
|
|
1412
|
+
}
|
|
1413
|
+
|
|
905
1414
|
/** Autogenerated input type of NamespacesProjectsUpdate */
|
|
906
1415
|
export interface NamespacesProjectsUpdateInput {
|
|
907
1416
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -912,6 +1421,8 @@ export interface NamespacesProjectsUpdateInput {
|
|
|
912
1421
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
913
1422
|
/** The id of the namespace project which will be updated */
|
|
914
1423
|
namespaceProjectId: Scalars['NamespaceProjectID']['input'];
|
|
1424
|
+
/** The primary runtime for the updated project. */
|
|
1425
|
+
primaryRuntimeId?: InputMaybe<Scalars['RuntimeID']['input']>;
|
|
915
1426
|
}
|
|
916
1427
|
|
|
917
1428
|
/** Autogenerated return type of NamespacesProjectsUpdate. */
|
|
@@ -1034,6 +1545,111 @@ export interface Node {
|
|
|
1034
1545
|
id: Scalars['ID']['output'];
|
|
1035
1546
|
}
|
|
1036
1547
|
|
|
1548
|
+
/** Represents a Node Function */
|
|
1549
|
+
export interface NodeFunction {
|
|
1550
|
+
__typename?: 'NodeFunction';
|
|
1551
|
+
/** Time when this NodeFunction was created */
|
|
1552
|
+
createdAt: Scalars['Time']['output'];
|
|
1553
|
+
/** Global ID of this NodeFunction */
|
|
1554
|
+
id: Scalars['NodeFunctionID']['output'];
|
|
1555
|
+
/** The next Node Function in the flow */
|
|
1556
|
+
nextNode?: Maybe<NodeFunction>;
|
|
1557
|
+
/** The parameters of the Node Function */
|
|
1558
|
+
parameters: NodeParameterConnection;
|
|
1559
|
+
/** The definition of the Node Function */
|
|
1560
|
+
runtimeFunction: RuntimeFunctionDefinition;
|
|
1561
|
+
/** Time when this NodeFunction was last updated */
|
|
1562
|
+
updatedAt: Scalars['Time']['output'];
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
|
|
1566
|
+
/** Represents a Node Function */
|
|
1567
|
+
export interface NodeFunctionParametersArgs {
|
|
1568
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1569
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1570
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1571
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
/** Input type for a Node Function */
|
|
1575
|
+
export interface NodeFunctionInput {
|
|
1576
|
+
/** The next Node Function in the flow */
|
|
1577
|
+
nextNode?: InputMaybe<NodeFunctionInput>;
|
|
1578
|
+
/** The parameters of the Node Function */
|
|
1579
|
+
parameters: Array<NodeParameterInput>;
|
|
1580
|
+
/** The identifier of the Runtime Function Definition */
|
|
1581
|
+
runtimeFunctionId: Scalars['RuntimeFunctionDefinitionID']['input'];
|
|
1582
|
+
}
|
|
1583
|
+
|
|
1584
|
+
/** Represents a Node parameter */
|
|
1585
|
+
export interface NodeParameter {
|
|
1586
|
+
__typename?: 'NodeParameter';
|
|
1587
|
+
/** Time when this NodeParameter was created */
|
|
1588
|
+
createdAt: Scalars['Time']['output'];
|
|
1589
|
+
/** Global ID of this NodeParameter */
|
|
1590
|
+
id: Scalars['NodeParameterID']['output'];
|
|
1591
|
+
/** The definition of the parameter */
|
|
1592
|
+
runtimeParameter: RuntimeParameterDefinition;
|
|
1593
|
+
/** Time when this NodeParameter was last updated */
|
|
1594
|
+
updatedAt: Scalars['Time']['output'];
|
|
1595
|
+
/** The value of the parameter */
|
|
1596
|
+
value?: Maybe<NodeParameterValue>;
|
|
1597
|
+
}
|
|
1598
|
+
|
|
1599
|
+
/** The connection type for NodeParameter. */
|
|
1600
|
+
export interface NodeParameterConnection {
|
|
1601
|
+
__typename?: 'NodeParameterConnection';
|
|
1602
|
+
/** Total count of collection. */
|
|
1603
|
+
count: Scalars['Int']['output'];
|
|
1604
|
+
/** A list of edges. */
|
|
1605
|
+
edges?: Maybe<Array<Maybe<NodeParameterEdge>>>;
|
|
1606
|
+
/** A list of nodes. */
|
|
1607
|
+
nodes?: Maybe<Array<Maybe<NodeParameter>>>;
|
|
1608
|
+
/** Information to aid in pagination. */
|
|
1609
|
+
pageInfo: PageInfo;
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
/** An edge in a connection. */
|
|
1613
|
+
export interface NodeParameterEdge {
|
|
1614
|
+
__typename?: 'NodeParameterEdge';
|
|
1615
|
+
/** A cursor for use in pagination. */
|
|
1616
|
+
cursor: Scalars['String']['output'];
|
|
1617
|
+
/** The item at the end of the edge. */
|
|
1618
|
+
node?: Maybe<NodeParameter>;
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
/** Input type for Node parameter */
|
|
1622
|
+
export interface NodeParameterInput {
|
|
1623
|
+
/** The identifier of the Runtime Parameter Definition */
|
|
1624
|
+
runtimeParameterDefinitionId: Scalars['RuntimeParameterDefinitionID']['input'];
|
|
1625
|
+
/** The value of the parameter */
|
|
1626
|
+
value?: InputMaybe<NodeParameterValueInput>;
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
/** Represents a parameter value for a node. */
|
|
1630
|
+
export type NodeParameterValue = LiteralValue | NodeFunction | ReferenceValue;
|
|
1631
|
+
|
|
1632
|
+
/** Input type for parameter value */
|
|
1633
|
+
export interface NodeParameterValueInput {
|
|
1634
|
+
/** The function value of the parameter */
|
|
1635
|
+
functionValue?: InputMaybe<NodeFunctionInput>;
|
|
1636
|
+
/** The literal value of the parameter */
|
|
1637
|
+
literalValue?: InputMaybe<Scalars['JSON']['input']>;
|
|
1638
|
+
/** The reference value of the parameter */
|
|
1639
|
+
referenceValue?: InputMaybe<ReferenceValueInput>;
|
|
1640
|
+
}
|
|
1641
|
+
|
|
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'];
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1037
1653
|
/** Represents a Organization */
|
|
1038
1654
|
export interface Organization {
|
|
1039
1655
|
__typename?: 'Organization';
|
|
@@ -1142,6 +1758,8 @@ export interface Query {
|
|
|
1142
1758
|
nodes?: Maybe<Array<Maybe<Node>>>;
|
|
1143
1759
|
/** Find a organization */
|
|
1144
1760
|
organization?: Maybe<Organization>;
|
|
1761
|
+
/** Find users */
|
|
1762
|
+
users: UserConnection;
|
|
1145
1763
|
}
|
|
1146
1764
|
|
|
1147
1765
|
|
|
@@ -1184,6 +1802,87 @@ export interface QueryOrganizationArgs {
|
|
|
1184
1802
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1185
1803
|
}
|
|
1186
1804
|
|
|
1805
|
+
|
|
1806
|
+
/** Root Query type */
|
|
1807
|
+
export interface QueryUsersArgs {
|
|
1808
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1809
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1810
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1811
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
/** Represents a reference path in a flow */
|
|
1815
|
+
export interface ReferencePath {
|
|
1816
|
+
__typename?: 'ReferencePath';
|
|
1817
|
+
/** The array index of the referenced data by the path */
|
|
1818
|
+
arrayIndex?: Maybe<Scalars['Int']['output']>;
|
|
1819
|
+
/** Time when this ReferencePath was created */
|
|
1820
|
+
createdAt: Scalars['Time']['output'];
|
|
1821
|
+
/** Global ID of this ReferencePath */
|
|
1822
|
+
id: Scalars['ReferencePathID']['output'];
|
|
1823
|
+
/** The path to the reference in the flow */
|
|
1824
|
+
path?: Maybe<Scalars['String']['output']>;
|
|
1825
|
+
/** Time when this ReferencePath was last updated */
|
|
1826
|
+
updatedAt: Scalars['Time']['output'];
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
/** Input type for reference path */
|
|
1830
|
+
export interface ReferencePathInput {
|
|
1831
|
+
/** Array index if applicable */
|
|
1832
|
+
arrayIndex?: InputMaybe<Scalars['Int']['input']>;
|
|
1833
|
+
/** The path to the reference in the flow */
|
|
1834
|
+
path?: InputMaybe<Scalars['String']['input']>;
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
/** Represents a reference value in the system. */
|
|
1838
|
+
export interface ReferenceValue {
|
|
1839
|
+
__typename?: 'ReferenceValue';
|
|
1840
|
+
/** Time when this ReferenceValue was created */
|
|
1841
|
+
createdAt: Scalars['Time']['output'];
|
|
1842
|
+
/** The identifier of the data type this reference value belongs to. */
|
|
1843
|
+
dataTypeIdentifier: DataTypeIdentifier;
|
|
1844
|
+
/** Global ID of this ReferenceValue */
|
|
1845
|
+
id: Scalars['ReferenceValueID']['output'];
|
|
1846
|
+
/** The primary level of the reference value. */
|
|
1847
|
+
primaryLevel: Scalars['Int']['output'];
|
|
1848
|
+
/** The paths associated with this reference value. */
|
|
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']>;
|
|
1854
|
+
/** Time when this ReferenceValue was last updated */
|
|
1855
|
+
updatedAt: Scalars['Time']['output'];
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
/** Input type for reference value */
|
|
1859
|
+
export interface ReferenceValueInput {
|
|
1860
|
+
/** The identifier of the data type this reference value belongs to */
|
|
1861
|
+
dataTypeIdentifier: DataTypeIdentifierInput;
|
|
1862
|
+
/** The primary level of the reference value */
|
|
1863
|
+
primaryLevel: Scalars['Int']['input'];
|
|
1864
|
+
/** The paths associated with this reference value */
|
|
1865
|
+
referencePath: Array<ReferencePathInput>;
|
|
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;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1187
1886
|
/** Represents a runtime */
|
|
1188
1887
|
export interface Runtime {
|
|
1189
1888
|
__typename?: 'Runtime';
|
|
@@ -1193,12 +1892,18 @@ export interface Runtime {
|
|
|
1193
1892
|
dataTypes: DataTypeConnection;
|
|
1194
1893
|
/** The description for the runtime if present */
|
|
1195
1894
|
description: Scalars['String']['output'];
|
|
1895
|
+
/** FlowTypes of the runtime */
|
|
1896
|
+
flowTypes: FlowTypeConnection;
|
|
1196
1897
|
/** Global ID of this Runtime */
|
|
1197
1898
|
id: Scalars['RuntimeID']['output'];
|
|
1198
1899
|
/** The name for the runtime */
|
|
1199
1900
|
name: Scalars['String']['output'];
|
|
1200
1901
|
/** The parent namespace for the runtime */
|
|
1201
1902
|
namespace?: Maybe<Namespace>;
|
|
1903
|
+
/** Projects associated with the runtime */
|
|
1904
|
+
projects: NamespaceProjectConnection;
|
|
1905
|
+
/** The status of the runtime */
|
|
1906
|
+
status: RuntimeStatusType;
|
|
1202
1907
|
/** Token belonging to the runtime, only present on creation */
|
|
1203
1908
|
token?: Maybe<Scalars['String']['output']>;
|
|
1204
1909
|
/** Time when this Runtime was last updated */
|
|
@@ -1214,6 +1919,24 @@ export interface RuntimeDataTypesArgs {
|
|
|
1214
1919
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1215
1920
|
}
|
|
1216
1921
|
|
|
1922
|
+
|
|
1923
|
+
/** Represents a runtime */
|
|
1924
|
+
export interface RuntimeFlowTypesArgs {
|
|
1925
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1926
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1927
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1928
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1931
|
+
|
|
1932
|
+
/** Represents a runtime */
|
|
1933
|
+
export interface RuntimeProjectsArgs {
|
|
1934
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1935
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1936
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1937
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1938
|
+
}
|
|
1939
|
+
|
|
1217
1940
|
/** The connection type for Runtime. */
|
|
1218
1941
|
export interface RuntimeConnection {
|
|
1219
1942
|
__typename?: 'RuntimeConnection';
|
|
@@ -1236,6 +1959,36 @@ export interface RuntimeEdge {
|
|
|
1236
1959
|
node?: Maybe<Runtime>;
|
|
1237
1960
|
}
|
|
1238
1961
|
|
|
1962
|
+
/** Represents a Node Function definition */
|
|
1963
|
+
export interface RuntimeFunctionDefinition {
|
|
1964
|
+
__typename?: 'RuntimeFunctionDefinition';
|
|
1965
|
+
/** Time when this RuntimeFunctionDefinition was created */
|
|
1966
|
+
createdAt: Scalars['Time']['output'];
|
|
1967
|
+
/** Global ID of this RuntimeFunctionDefinition */
|
|
1968
|
+
id: Scalars['RuntimeParameterDefinitionID']['output'];
|
|
1969
|
+
/** Time when this RuntimeFunctionDefinition was last updated */
|
|
1970
|
+
updatedAt: Scalars['Time']['output'];
|
|
1971
|
+
}
|
|
1972
|
+
|
|
1973
|
+
/** Represents a Node parameter definition */
|
|
1974
|
+
export interface RuntimeParameterDefinition {
|
|
1975
|
+
__typename?: 'RuntimeParameterDefinition';
|
|
1976
|
+
/** Time when this RuntimeParameterDefinition was created */
|
|
1977
|
+
createdAt: Scalars['Time']['output'];
|
|
1978
|
+
/** Global ID of this RuntimeParameterDefinition */
|
|
1979
|
+
id: Scalars['RuntimeParameterDefinitionID']['output'];
|
|
1980
|
+
/** Time when this RuntimeParameterDefinition was last updated */
|
|
1981
|
+
updatedAt: Scalars['Time']['output'];
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
/** Represent all available types of statuses of a runtime */
|
|
1985
|
+
export enum RuntimeStatusType {
|
|
1986
|
+
/** No problem with connection, everything works as expected */
|
|
1987
|
+
Connected = 'CONNECTED',
|
|
1988
|
+
/** The runtime is disconnected, cause unknown */
|
|
1989
|
+
Disconnected = 'DISCONNECTED'
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1239
1992
|
/** Autogenerated input type of RuntimesCreate */
|
|
1240
1993
|
export interface RuntimesCreateInput {
|
|
1241
1994
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -1320,6 +2073,37 @@ export interface RuntimesUpdatePayload {
|
|
|
1320
2073
|
runtime?: Maybe<Runtime>;
|
|
1321
2074
|
}
|
|
1322
2075
|
|
|
2076
|
+
/** Represents a translation */
|
|
2077
|
+
export interface Translation {
|
|
2078
|
+
__typename?: 'Translation';
|
|
2079
|
+
/** Code of the translation */
|
|
2080
|
+
code: Scalars['String']['output'];
|
|
2081
|
+
/** Content of the translation */
|
|
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>;
|
|
2105
|
+
}
|
|
2106
|
+
|
|
1323
2107
|
/** Represents a user */
|
|
1324
2108
|
export interface User {
|
|
1325
2109
|
__typename?: 'User';
|
|
@@ -1356,6 +2140,28 @@ export interface UserNamespaceMembershipsArgs {
|
|
|
1356
2140
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1357
2141
|
}
|
|
1358
2142
|
|
|
2143
|
+
/** The connection type for User. */
|
|
2144
|
+
export interface UserConnection {
|
|
2145
|
+
__typename?: 'UserConnection';
|
|
2146
|
+
/** Total count of collection. */
|
|
2147
|
+
count: Scalars['Int']['output'];
|
|
2148
|
+
/** A list of edges. */
|
|
2149
|
+
edges?: Maybe<Array<Maybe<UserEdge>>>;
|
|
2150
|
+
/** A list of nodes. */
|
|
2151
|
+
nodes?: Maybe<Array<Maybe<User>>>;
|
|
2152
|
+
/** Information to aid in pagination. */
|
|
2153
|
+
pageInfo: PageInfo;
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2156
|
+
/** An edge in a connection. */
|
|
2157
|
+
export interface UserEdge {
|
|
2158
|
+
__typename?: 'UserEdge';
|
|
2159
|
+
/** A cursor for use in pagination. */
|
|
2160
|
+
cursor: Scalars['String']['output'];
|
|
2161
|
+
/** The item at the end of the edge. */
|
|
2162
|
+
node?: Maybe<User>;
|
|
2163
|
+
}
|
|
2164
|
+
|
|
1359
2165
|
/** Represents an external user identity */
|
|
1360
2166
|
export interface UserIdentity {
|
|
1361
2167
|
__typename?: 'UserIdentity';
|
|
@@ -1582,6 +2388,8 @@ export interface UsersRegisterInput {
|
|
|
1582
2388
|
email: Scalars['String']['input'];
|
|
1583
2389
|
/** Password of the user */
|
|
1584
2390
|
password: Scalars['String']['input'];
|
|
2391
|
+
/** The repeated password of the user to check for typos */
|
|
2392
|
+
passwordRepeat: Scalars['String']['input'];
|
|
1585
2393
|
/** Username of the user */
|
|
1586
2394
|
username: Scalars['String']['input'];
|
|
1587
2395
|
}
|
|
@@ -1609,6 +2417,12 @@ export interface UsersUpdateInput {
|
|
|
1609
2417
|
firstname?: InputMaybe<Scalars['String']['input']>;
|
|
1610
2418
|
/** New lastname for the user. */
|
|
1611
2419
|
lastname?: InputMaybe<Scalars['String']['input']>;
|
|
2420
|
+
/** The data of the mfa validation */
|
|
2421
|
+
mfa?: InputMaybe<MfaInput>;
|
|
2422
|
+
/** New password for the user. */
|
|
2423
|
+
password?: InputMaybe<Scalars['String']['input']>;
|
|
2424
|
+
/** New password repeat for the user to check for typos, required if password is set. */
|
|
2425
|
+
passwordRepeat?: InputMaybe<Scalars['String']['input']>;
|
|
1612
2426
|
/** ID of the user to update. */
|
|
1613
2427
|
userId: Scalars['UserID']['input'];
|
|
1614
2428
|
/** New username for the user. */
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@code0-tech/sagittarius-graphql-types",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-f91466f0f343596ad170e7e5c5316a70b072594d",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"generate": "graphql-codegen --config codegen.
|
|
8
|
+
"generate": "graphql-codegen --config codegen.ts"
|
|
9
9
|
},
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|