@code0-tech/sagittarius-graphql-types 0.0.0-d5637a7e1c1307a9c89dd85bec0f473486debd23 → 0.0.0-e610ffe24a7dc3cf7b4c285994830412410f229e
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 +88 -206
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -154,11 +154,13 @@ export type Authentication = UserSession;
|
|
|
154
154
|
export interface DataType {
|
|
155
155
|
__typename?: 'DataType';
|
|
156
156
|
/** Name of the function */
|
|
157
|
-
aliases?: Maybe<
|
|
157
|
+
aliases?: Maybe<Array<Translation>>;
|
|
158
158
|
/** Time when this DataType was created */
|
|
159
159
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
160
|
+
/** The data type identifiers that are referenced in this data type and its rules */
|
|
161
|
+
dataTypeIdentifiers?: Maybe<DataTypeIdentifierConnection>;
|
|
160
162
|
/** Display message of the function */
|
|
161
|
-
displayMessages?: Maybe<
|
|
163
|
+
displayMessages?: Maybe<Array<Translation>>;
|
|
162
164
|
/** Generic keys of the datatype */
|
|
163
165
|
genericKeys?: Maybe<Array<Scalars['String']['output']>>;
|
|
164
166
|
/** Global ID of this DataType */
|
|
@@ -166,7 +168,7 @@ export interface DataType {
|
|
|
166
168
|
/** The identifier scoped to the namespace */
|
|
167
169
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
168
170
|
/** Names of the flow type setting */
|
|
169
|
-
name?: Maybe<
|
|
171
|
+
name?: Maybe<Array<Translation>>;
|
|
170
172
|
/** Rules of the datatype */
|
|
171
173
|
rules?: Maybe<DataTypeRuleConnection>;
|
|
172
174
|
/** The runtime where this datatype belongs to */
|
|
@@ -179,25 +181,7 @@ export interface DataType {
|
|
|
179
181
|
|
|
180
182
|
|
|
181
183
|
/** Represents a DataType */
|
|
182
|
-
export interface
|
|
183
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
184
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
185
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
186
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
/** Represents a DataType */
|
|
191
|
-
export interface DataTypeDisplayMessagesArgs {
|
|
192
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
193
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
194
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
195
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
/** Represents a DataType */
|
|
200
|
-
export interface DataTypeNameArgs {
|
|
184
|
+
export interface DataTypeDataTypeIdentifiersArgs {
|
|
201
185
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
202
186
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
203
187
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -252,6 +236,28 @@ export interface DataTypeIdentifier {
|
|
|
252
236
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
253
237
|
}
|
|
254
238
|
|
|
239
|
+
/** The connection type for DataTypeIdentifier. */
|
|
240
|
+
export interface DataTypeIdentifierConnection {
|
|
241
|
+
__typename?: 'DataTypeIdentifierConnection';
|
|
242
|
+
/** Total count of collection. */
|
|
243
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
244
|
+
/** A list of edges. */
|
|
245
|
+
edges?: Maybe<Array<Maybe<DataTypeIdentifierEdge>>>;
|
|
246
|
+
/** A list of nodes. */
|
|
247
|
+
nodes?: Maybe<Array<Maybe<DataTypeIdentifier>>>;
|
|
248
|
+
/** Information to aid in pagination. */
|
|
249
|
+
pageInfo?: Maybe<PageInfo>;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
/** An edge in a connection. */
|
|
253
|
+
export interface DataTypeIdentifierEdge {
|
|
254
|
+
__typename?: 'DataTypeIdentifierEdge';
|
|
255
|
+
/** A cursor for use in pagination. */
|
|
256
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
257
|
+
/** The item at the end of the edge. */
|
|
258
|
+
node?: Maybe<DataTypeIdentifier>;
|
|
259
|
+
}
|
|
260
|
+
|
|
255
261
|
/** Input type for data type identifier */
|
|
256
262
|
export interface DataTypeIdentifierInput {
|
|
257
263
|
/** Data type ID */
|
|
@@ -305,8 +311,10 @@ export type DataTypeRulesConfig = DataTypeRulesContainsKeyConfig | DataTypeRules
|
|
|
305
311
|
/** Represents a rule that can be applied to a data type. */
|
|
306
312
|
export interface DataTypeRulesContainsKeyConfig {
|
|
307
313
|
__typename?: 'DataTypeRulesContainsKeyConfig';
|
|
308
|
-
/**
|
|
314
|
+
/** types-only field */
|
|
309
315
|
dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
|
|
316
|
+
/** ID of the identifier of the data type this rule belongs to */
|
|
317
|
+
dataTypeIdentifierId?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
|
|
310
318
|
/** The key of the rule */
|
|
311
319
|
key?: Maybe<Scalars['String']['output']>;
|
|
312
320
|
}
|
|
@@ -314,15 +322,19 @@ export interface DataTypeRulesContainsKeyConfig {
|
|
|
314
322
|
/** Represents a rule that can be applied to a data type. */
|
|
315
323
|
export interface DataTypeRulesContainsTypeConfig {
|
|
316
324
|
__typename?: 'DataTypeRulesContainsTypeConfig';
|
|
317
|
-
/**
|
|
325
|
+
/** types-only field */
|
|
318
326
|
dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
|
|
327
|
+
/** ID of the identifier of the data type this rule belongs to */
|
|
328
|
+
dataTypeIdentifierId?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
|
|
319
329
|
}
|
|
320
330
|
|
|
321
331
|
/** Represents a subtype of input type configuration for a input data type. */
|
|
322
332
|
export interface DataTypeRulesInputTypeConfig {
|
|
323
333
|
__typename?: 'DataTypeRulesInputTypeConfig';
|
|
324
|
-
/**
|
|
334
|
+
/** types-only field */
|
|
325
335
|
dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
|
|
336
|
+
/** ID of the identifier of the data type this input type belongs to */
|
|
337
|
+
dataTypeIdentifierId?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
|
|
326
338
|
/** The input identifier that this configuration applies to */
|
|
327
339
|
inputIdentifier?: Maybe<Scalars['String']['output']>;
|
|
328
340
|
}
|
|
@@ -355,8 +367,10 @@ export interface DataTypeRulesNumberRangeConfig {
|
|
|
355
367
|
/** Represents a rule that can be applied to a data type. */
|
|
356
368
|
export interface DataTypeRulesParentTypeConfig {
|
|
357
369
|
__typename?: 'DataTypeRulesParentTypeConfig';
|
|
358
|
-
/**
|
|
370
|
+
/** types-only field */
|
|
359
371
|
dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
|
|
372
|
+
/** ID of the data type identifier for the parent type. */
|
|
373
|
+
dataTypeIdentifierId?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
|
|
360
374
|
}
|
|
361
375
|
|
|
362
376
|
/** Represents a rule that can be applied to a data type. */
|
|
@@ -369,8 +383,10 @@ export interface DataTypeRulesRegexConfig {
|
|
|
369
383
|
/** Represents a rule that can be applied to a data type. */
|
|
370
384
|
export interface DataTypeRulesReturnTypeConfig {
|
|
371
385
|
__typename?: 'DataTypeRulesReturnTypeConfig';
|
|
372
|
-
/**
|
|
386
|
+
/** types-only field */
|
|
373
387
|
dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
|
|
388
|
+
/** The data type identifier for the return type. */
|
|
389
|
+
dataTypeIdentifierId?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
|
|
374
390
|
}
|
|
375
391
|
|
|
376
392
|
/** The type of rule that can be applied to a data type. */
|
|
@@ -496,6 +512,10 @@ export const enum ErrorCodeEnum {
|
|
|
496
512
|
InvalidFlowSetting = 'INVALID_FLOW_SETTING',
|
|
497
513
|
/** The flow type is invalid because of active model errors */
|
|
498
514
|
InvalidFlowType = 'INVALID_FLOW_TYPE',
|
|
515
|
+
/** The flow type setting is invalid because of active model errors */
|
|
516
|
+
InvalidFlowTypeSetting = 'INVALID_FLOW_TYPE_SETTING',
|
|
517
|
+
/** The function ID is invalid */
|
|
518
|
+
InvalidFunctionId = 'INVALID_FUNCTION_ID',
|
|
499
519
|
/** The generic mapper is invalid because of active model errors */
|
|
500
520
|
InvalidGenericMapper = 'INVALID_GENERIC_MAPPER',
|
|
501
521
|
/** Invalid login data provided */
|
|
@@ -514,18 +534,18 @@ export const enum ErrorCodeEnum {
|
|
|
514
534
|
InvalidNodeParameter = 'INVALID_NODE_PARAMETER',
|
|
515
535
|
/** The organization is invalid because of active model errors */
|
|
516
536
|
InvalidOrganization = 'INVALID_ORGANIZATION',
|
|
537
|
+
/** The parameter ID is invalid */
|
|
538
|
+
InvalidParameterId = 'INVALID_PARAMETER_ID',
|
|
517
539
|
/** The provided password repeat does not match the password */
|
|
518
540
|
InvalidPasswordRepeat = 'INVALID_PASSWORD_REPEAT',
|
|
541
|
+
/** The reference value is invalid */
|
|
542
|
+
InvalidReferenceValue = 'INVALID_REFERENCE_VALUE',
|
|
519
543
|
/** The runtime is invalid because of active model errors */
|
|
520
544
|
InvalidRuntime = 'INVALID_RUNTIME',
|
|
521
545
|
/** The runtime function definition is invalid */
|
|
522
546
|
InvalidRuntimeFunctionDefinition = 'INVALID_RUNTIME_FUNCTION_DEFINITION',
|
|
523
|
-
/** The runtime function ID is invalid */
|
|
524
|
-
InvalidRuntimeFunctionId = 'INVALID_RUNTIME_FUNCTION_ID',
|
|
525
547
|
/** The runtime parameter definition is invalid */
|
|
526
548
|
InvalidRuntimeParameterDefinition = 'INVALID_RUNTIME_PARAMETER_DEFINITION',
|
|
527
|
-
/** The runtime parameter ID is invalid */
|
|
528
|
-
InvalidRuntimeParameterId = 'INVALID_RUNTIME_PARAMETER_ID',
|
|
529
549
|
/** Invalid setting provided */
|
|
530
550
|
InvalidSetting = 'INVALID_SETTING',
|
|
531
551
|
/** The TOTP secret is invalid or cannot be verified */
|
|
@@ -621,6 +641,8 @@ export interface Flow {
|
|
|
621
641
|
name?: Maybe<Scalars['String']['output']>;
|
|
622
642
|
/** Nodes of the flow */
|
|
623
643
|
nodes?: Maybe<NodeFunctionConnection>;
|
|
644
|
+
/** The project the flow belongs to */
|
|
645
|
+
project?: Maybe<NamespaceProject>;
|
|
624
646
|
/** The return data type of the flow */
|
|
625
647
|
returnType?: Maybe<DataType>;
|
|
626
648
|
/** The settings of the flow */
|
|
@@ -684,7 +706,7 @@ export interface FlowInput {
|
|
|
684
706
|
/** The settings of the flow */
|
|
685
707
|
settings?: InputMaybe<Array<FlowSettingInput>>;
|
|
686
708
|
/** The starting node of the flow */
|
|
687
|
-
startingNodeId
|
|
709
|
+
startingNodeId?: InputMaybe<Scalars['NodeFunctionID']['input']>;
|
|
688
710
|
/** The identifier of the flow type */
|
|
689
711
|
type: Scalars['FlowTypeID']['input'];
|
|
690
712
|
}
|
|
@@ -738,13 +760,13 @@ export interface FlowSettingInput {
|
|
|
738
760
|
export interface FlowType {
|
|
739
761
|
__typename?: 'FlowType';
|
|
740
762
|
/** Name of the function */
|
|
741
|
-
aliases?: Maybe<
|
|
763
|
+
aliases?: Maybe<Array<Translation>>;
|
|
742
764
|
/** Time when this FlowType was created */
|
|
743
765
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
744
766
|
/** Descriptions of the flow type */
|
|
745
|
-
descriptions?: Maybe<
|
|
767
|
+
descriptions?: Maybe<Array<Translation>>;
|
|
746
768
|
/** Display message of the function */
|
|
747
|
-
displayMessages?: Maybe<
|
|
769
|
+
displayMessages?: Maybe<Array<Translation>>;
|
|
748
770
|
/** Editable status of the flow type */
|
|
749
771
|
editable?: Maybe<Scalars['Boolean']['output']>;
|
|
750
772
|
/** Flow type settings of the flow type */
|
|
@@ -756,7 +778,7 @@ export interface FlowType {
|
|
|
756
778
|
/** Input type of the flow type */
|
|
757
779
|
inputType?: Maybe<DataType>;
|
|
758
780
|
/** Names of the flow type */
|
|
759
|
-
names?: Maybe<
|
|
781
|
+
names?: Maybe<Array<Translation>>;
|
|
760
782
|
/** Return type of the flow type */
|
|
761
783
|
returnType?: Maybe<DataType>;
|
|
762
784
|
/** Runtime of the flow type */
|
|
@@ -765,42 +787,6 @@ export interface FlowType {
|
|
|
765
787
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
766
788
|
}
|
|
767
789
|
|
|
768
|
-
|
|
769
|
-
/** Represents a flow type */
|
|
770
|
-
export interface FlowTypeAliasesArgs {
|
|
771
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
772
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
773
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
774
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
775
|
-
}
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
/** Represents a flow type */
|
|
779
|
-
export interface FlowTypeDescriptionsArgs {
|
|
780
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
781
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
782
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
783
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
784
|
-
}
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
/** Represents a flow type */
|
|
788
|
-
export interface FlowTypeDisplayMessagesArgs {
|
|
789
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
790
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
791
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
792
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
/** Represents a flow type */
|
|
797
|
-
export interface FlowTypeNamesArgs {
|
|
798
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
799
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
800
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
801
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
802
|
-
}
|
|
803
|
-
|
|
804
790
|
/** The connection type for FlowType. */
|
|
805
791
|
export interface FlowTypeConnection {
|
|
806
792
|
__typename?: 'FlowTypeConnection';
|
|
@@ -831,7 +817,7 @@ export interface FlowTypeSetting {
|
|
|
831
817
|
/** Data type of the flow type setting */
|
|
832
818
|
dataType?: Maybe<DataType>;
|
|
833
819
|
/** Descriptions of the flow type setting */
|
|
834
|
-
descriptions?: Maybe<
|
|
820
|
+
descriptions?: Maybe<Array<Translation>>;
|
|
835
821
|
/** Flow type of the flow type setting */
|
|
836
822
|
flowType?: Maybe<FlowType>;
|
|
837
823
|
/** Global ID of this FlowTypeSetting */
|
|
@@ -839,31 +825,13 @@ export interface FlowTypeSetting {
|
|
|
839
825
|
/** Identifier of the flow type setting */
|
|
840
826
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
841
827
|
/** Names of the flow type setting */
|
|
842
|
-
names?: Maybe<
|
|
828
|
+
names?: Maybe<Array<Translation>>;
|
|
843
829
|
/** Unique status of the flow type setting */
|
|
844
830
|
unique?: Maybe<Scalars['Boolean']['output']>;
|
|
845
831
|
/** Time when this FlowTypeSetting was last updated */
|
|
846
832
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
847
833
|
}
|
|
848
834
|
|
|
849
|
-
|
|
850
|
-
/** Represents a flow type setting */
|
|
851
|
-
export interface FlowTypeSettingDescriptionsArgs {
|
|
852
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
853
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
854
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
855
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
856
|
-
}
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
/** Represents a flow type setting */
|
|
860
|
-
export interface FlowTypeSettingNamesArgs {
|
|
861
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
862
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
863
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
864
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
865
|
-
}
|
|
866
|
-
|
|
867
835
|
/** Abilities for the current user on this Flow */
|
|
868
836
|
export interface FlowUserAbilities {
|
|
869
837
|
__typename?: 'FlowUserAbilities';
|
|
@@ -918,17 +886,19 @@ export const enum FlowValidationSeverityEnum {
|
|
|
918
886
|
export interface FunctionDefinition {
|
|
919
887
|
__typename?: 'FunctionDefinition';
|
|
920
888
|
/** Name of the function */
|
|
921
|
-
aliases?: Maybe<
|
|
889
|
+
aliases?: Maybe<Array<Translation>>;
|
|
922
890
|
/** Time when this FunctionDefinition was created */
|
|
923
891
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
892
|
+
/** All data type identifiers used within this Node Function */
|
|
893
|
+
dataTypeIdentifiers?: Maybe<DataTypeIdentifierConnection>;
|
|
924
894
|
/** Deprecation message of the function */
|
|
925
|
-
deprecationMessages?: Maybe<
|
|
895
|
+
deprecationMessages?: Maybe<Array<Translation>>;
|
|
926
896
|
/** Description of the function */
|
|
927
|
-
descriptions?: Maybe<
|
|
897
|
+
descriptions?: Maybe<Array<Translation>>;
|
|
928
898
|
/** Display message of the function */
|
|
929
|
-
displayMessages?: Maybe<
|
|
899
|
+
displayMessages?: Maybe<Array<Translation>>;
|
|
930
900
|
/** Documentation of the function */
|
|
931
|
-
documentations?: Maybe<
|
|
901
|
+
documentations?: Maybe<Array<Translation>>;
|
|
932
902
|
/** Generic keys of the function */
|
|
933
903
|
genericKeys?: Maybe<Array<Scalars['String']['output']>>;
|
|
934
904
|
/** Global ID of this FunctionDefinition */
|
|
@@ -936,7 +906,7 @@ export interface FunctionDefinition {
|
|
|
936
906
|
/** Identifier of the function */
|
|
937
907
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
938
908
|
/** Name of the function */
|
|
939
|
-
names?: Maybe<
|
|
909
|
+
names?: Maybe<Array<Translation>>;
|
|
940
910
|
/** Parameters of the function */
|
|
941
911
|
parameterDefinitions?: Maybe<ParameterDefinitionConnection>;
|
|
942
912
|
/** Return type of the function */
|
|
@@ -951,52 +921,7 @@ export interface FunctionDefinition {
|
|
|
951
921
|
|
|
952
922
|
|
|
953
923
|
/** Represents a function definition */
|
|
954
|
-
export interface
|
|
955
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
956
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
957
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
958
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
959
|
-
}
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
/** Represents a function definition */
|
|
963
|
-
export interface FunctionDefinitionDeprecationMessagesArgs {
|
|
964
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
965
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
966
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
967
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
968
|
-
}
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
/** Represents a function definition */
|
|
972
|
-
export interface FunctionDefinitionDescriptionsArgs {
|
|
973
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
974
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
975
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
976
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
977
|
-
}
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
/** Represents a function definition */
|
|
981
|
-
export interface FunctionDefinitionDisplayMessagesArgs {
|
|
982
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
983
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
984
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
985
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
986
|
-
}
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
/** Represents a function definition */
|
|
990
|
-
export interface FunctionDefinitionDocumentationsArgs {
|
|
991
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
992
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
993
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
994
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
995
|
-
}
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
/** Represents a function definition */
|
|
999
|
-
export interface FunctionDefinitionNamesArgs {
|
|
924
|
+
export interface FunctionDefinitionDataTypeIdentifiersArgs {
|
|
1000
925
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
1001
926
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
1002
927
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -1067,6 +992,8 @@ export interface GenericMapper {
|
|
|
1067
992
|
/** Global ID of this GenericMapper */
|
|
1068
993
|
id?: Maybe<Scalars['GenericMapperID']['output']>;
|
|
1069
994
|
/** The source data type identifier. */
|
|
995
|
+
sourceDataTypeIdentifierIds?: Maybe<Array<Scalars['DataTypeIdentifierID']['output']>>;
|
|
996
|
+
/** types-only field */
|
|
1070
997
|
sourceDataTypeIdentifiers?: Maybe<Array<DataTypeIdentifier>>;
|
|
1071
998
|
/** The target key for the generic value. */
|
|
1072
999
|
target?: Maybe<Scalars['String']['output']>;
|
|
@@ -1187,6 +1114,8 @@ export const enum IdentityProviderType {
|
|
|
1187
1114
|
Discord = 'DISCORD',
|
|
1188
1115
|
/** Identity provider of type github */
|
|
1189
1116
|
Github = 'GITHUB',
|
|
1117
|
+
/** Identity provider of type gitlab */
|
|
1118
|
+
Gitlab = 'GITLAB',
|
|
1190
1119
|
/** Identity provider of type google */
|
|
1191
1120
|
Google = 'GOOGLE',
|
|
1192
1121
|
/** Identity provider of type microsoft */
|
|
@@ -1200,10 +1129,6 @@ export const enum IdentityProviderType {
|
|
|
1200
1129
|
/** Represents a literal value, such as a string or number. */
|
|
1201
1130
|
export interface LiteralValue {
|
|
1202
1131
|
__typename?: 'LiteralValue';
|
|
1203
|
-
/** Time when this LiteralValue was created */
|
|
1204
|
-
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
1205
|
-
/** Time when this LiteralValue was last updated */
|
|
1206
|
-
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
1207
1132
|
/** The literal value itself as JSON. */
|
|
1208
1133
|
value?: Maybe<Scalars['JSON']['output']>;
|
|
1209
1134
|
}
|
|
@@ -1861,6 +1786,8 @@ export interface NamespaceProject {
|
|
|
1861
1786
|
roles?: Maybe<NamespaceRoleConnection>;
|
|
1862
1787
|
/** Runtimes assigned to this project */
|
|
1863
1788
|
runtimes?: Maybe<RuntimeConnection>;
|
|
1789
|
+
/** Slug of the project used in URLs to identify flows */
|
|
1790
|
+
slug?: Maybe<Scalars['String']['output']>;
|
|
1864
1791
|
/** Time when this NamespaceProject was last updated */
|
|
1865
1792
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
1866
1793
|
/** Abilities for the current user on this NamespaceProject */
|
|
@@ -2214,6 +2141,8 @@ export interface NamespacesProjectsCreateInput {
|
|
|
2214
2141
|
name: Scalars['String']['input'];
|
|
2215
2142
|
/** The id of the namespace which this project will belong to */
|
|
2216
2143
|
namespaceId: Scalars['NamespaceID']['input'];
|
|
2144
|
+
/** Slug for the new project. */
|
|
2145
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
2217
2146
|
}
|
|
2218
2147
|
|
|
2219
2148
|
/** Autogenerated return type of NamespacesProjectsCreate. */
|
|
@@ -2319,6 +2248,8 @@ export interface NamespacesProjectsUpdateInput {
|
|
|
2319
2248
|
namespaceProjectId: Scalars['NamespaceProjectID']['input'];
|
|
2320
2249
|
/** The primary runtime for the updated project. */
|
|
2321
2250
|
primaryRuntimeId?: InputMaybe<Scalars['RuntimeID']['input']>;
|
|
2251
|
+
/** Slug for the updated project. */
|
|
2252
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
2322
2253
|
}
|
|
2323
2254
|
|
|
2324
2255
|
/** Autogenerated return type of NamespacesProjectsUpdate. */
|
|
@@ -2498,14 +2429,14 @@ export interface NodeFunctionIdWrapper {
|
|
|
2498
2429
|
|
|
2499
2430
|
/** Input type for a Node Function */
|
|
2500
2431
|
export interface NodeFunctionInput {
|
|
2432
|
+
/** The identifier of the Function Definition */
|
|
2433
|
+
functionDefinitionId: Scalars['FunctionDefinitionID']['input'];
|
|
2501
2434
|
/** The identifier of the Node Function used to create/update the flow */
|
|
2502
2435
|
id: Scalars['NodeFunctionID']['input'];
|
|
2503
2436
|
/** The next Node Function in the flow */
|
|
2504
2437
|
nextNodeId?: InputMaybe<Scalars['NodeFunctionID']['input']>;
|
|
2505
2438
|
/** The parameters of the Node Function */
|
|
2506
2439
|
parameters: Array<NodeParameterInput>;
|
|
2507
|
-
/** The identifier of the Runtime Function Definition */
|
|
2508
|
-
runtimeFunctionId: Scalars['RuntimeFunctionDefinitionID']['input'];
|
|
2509
2440
|
}
|
|
2510
2441
|
|
|
2511
2442
|
/** Represents a Node parameter */
|
|
@@ -2516,7 +2447,7 @@ export interface NodeParameter {
|
|
|
2516
2447
|
/** Global ID of this NodeParameter */
|
|
2517
2448
|
id?: Maybe<Scalars['NodeParameterID']['output']>;
|
|
2518
2449
|
/** The definition of the parameter */
|
|
2519
|
-
|
|
2450
|
+
parameterDefinition?: Maybe<ParameterDefinition>;
|
|
2520
2451
|
/** Time when this NodeParameter was last updated */
|
|
2521
2452
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
2522
2453
|
/** The value of the parameter */
|
|
@@ -2547,10 +2478,10 @@ export interface NodeParameterEdge {
|
|
|
2547
2478
|
|
|
2548
2479
|
/** Input type for Node parameter */
|
|
2549
2480
|
export interface NodeParameterInput {
|
|
2550
|
-
/** The identifier of the
|
|
2551
|
-
|
|
2481
|
+
/** The identifier of the Parameter Definition */
|
|
2482
|
+
parameterDefinitionId: Scalars['ParameterDefinitionID']['input'];
|
|
2552
2483
|
/** The value of the parameter */
|
|
2553
|
-
value
|
|
2484
|
+
value: NodeParameterValueInput;
|
|
2554
2485
|
}
|
|
2555
2486
|
|
|
2556
2487
|
/** Represents a parameter value for a node. */
|
|
@@ -2713,46 +2644,19 @@ export interface ParameterDefinition {
|
|
|
2713
2644
|
/** Data type of the parameter */
|
|
2714
2645
|
dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
|
|
2715
2646
|
/** Description of the parameter */
|
|
2716
|
-
descriptions?: Maybe<
|
|
2647
|
+
descriptions?: Maybe<Array<Translation>>;
|
|
2717
2648
|
/** Documentation of the parameter */
|
|
2718
|
-
documentations?: Maybe<
|
|
2649
|
+
documentations?: Maybe<Array<Translation>>;
|
|
2719
2650
|
/** Global ID of this ParameterDefinition */
|
|
2720
2651
|
id?: Maybe<Scalars['ParameterDefinitionID']['output']>;
|
|
2721
2652
|
/** Identifier of the parameter */
|
|
2722
2653
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
2723
2654
|
/** Name of the parameter */
|
|
2724
|
-
names?: Maybe<
|
|
2655
|
+
names?: Maybe<Array<Translation>>;
|
|
2725
2656
|
/** Time when this ParameterDefinition was last updated */
|
|
2726
2657
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
2727
2658
|
}
|
|
2728
2659
|
|
|
2729
|
-
|
|
2730
|
-
/** Represents a parameter definition */
|
|
2731
|
-
export interface ParameterDefinitionDescriptionsArgs {
|
|
2732
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
2733
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
2734
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2735
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2736
|
-
}
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
/** Represents a parameter definition */
|
|
2740
|
-
export interface ParameterDefinitionDocumentationsArgs {
|
|
2741
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
2742
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
2743
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2744
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2745
|
-
}
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
/** Represents a parameter definition */
|
|
2749
|
-
export interface ParameterDefinitionNamesArgs {
|
|
2750
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
2751
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
2752
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2753
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2754
|
-
}
|
|
2755
|
-
|
|
2756
2660
|
/** The connection type for ParameterDefinition. */
|
|
2757
2661
|
export interface ParameterDefinitionConnection {
|
|
2758
2662
|
__typename?: 'ParameterDefinitionConnection';
|
|
@@ -3219,28 +3123,6 @@ export interface Translation {
|
|
|
3219
3123
|
content?: Maybe<Scalars['String']['output']>;
|
|
3220
3124
|
}
|
|
3221
3125
|
|
|
3222
|
-
/** The connection type for Translation. */
|
|
3223
|
-
export interface TranslationConnection {
|
|
3224
|
-
__typename?: 'TranslationConnection';
|
|
3225
|
-
/** Total count of collection. */
|
|
3226
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
3227
|
-
/** A list of edges. */
|
|
3228
|
-
edges?: Maybe<Array<Maybe<TranslationEdge>>>;
|
|
3229
|
-
/** A list of nodes. */
|
|
3230
|
-
nodes?: Maybe<Array<Maybe<Translation>>>;
|
|
3231
|
-
/** Information to aid in pagination. */
|
|
3232
|
-
pageInfo?: Maybe<PageInfo>;
|
|
3233
|
-
}
|
|
3234
|
-
|
|
3235
|
-
/** An edge in a connection. */
|
|
3236
|
-
export interface TranslationEdge {
|
|
3237
|
-
__typename?: 'TranslationEdge';
|
|
3238
|
-
/** A cursor for use in pagination. */
|
|
3239
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
3240
|
-
/** The item at the end of the edge. */
|
|
3241
|
-
node?: Maybe<Translation>;
|
|
3242
|
-
}
|
|
3243
|
-
|
|
3244
3126
|
/** Represents a user */
|
|
3245
3127
|
export interface User {
|
|
3246
3128
|
__typename?: 'User';
|
package/package.json
CHANGED