@code0-tech/sagittarius-graphql-types 0.0.0-a395eea54741fc1bb9649341ff6f082cc1c3e67e → 0.0.0-c63274fdd34593b8aa24f9f977659fd3d6270150

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +222 -266
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -57,18 +57,10 @@ export interface ActiveModelError {
57
57
  /** Represents the application instance */
58
58
  export interface Application {
59
59
  __typename?: 'Application';
60
- /** URL to the legal notice page */
61
- legalNoticeUrl?: Maybe<Scalars['String']['output']>;
62
60
  /** Metadata about the application */
63
61
  metadata?: Maybe<Metadata>;
64
- /** URL to the privacy policy page */
65
- privacyUrl?: Maybe<Scalars['String']['output']>;
66
62
  /** Global application settings */
67
63
  settings?: Maybe<ApplicationSettings>;
68
- /** URL to the terms and conditions page */
69
- termsAndConditionsUrl?: Maybe<Scalars['String']['output']>;
70
- /** Abilities for the current user on this Application */
71
- userAbilities?: Maybe<ApplicationUserAbilities>;
72
64
  }
73
65
 
74
66
  /** Represents the application settings */
@@ -76,45 +68,20 @@ export interface ApplicationSettings {
76
68
  __typename?: 'ApplicationSettings';
77
69
  /** Shows if admin status can be queried by non-administrators */
78
70
  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
71
  /** Shows if organization creation is restricted to administrators */
84
72
  organizationCreationRestricted?: Maybe<Scalars['Boolean']['output']>;
85
- /** URL to the privacy policy page */
86
- privacyUrl?: Maybe<Scalars['String']['output']>;
87
- /** URL to the terms and conditions page */
88
- termsAndConditionsUrl?: Maybe<Scalars['String']['output']>;
89
73
  /** Shows if user registration is enabled */
90
74
  userRegistrationEnabled?: Maybe<Scalars['Boolean']['output']>;
91
75
  }
92
76
 
93
-
94
- /** Represents the application settings */
95
- export interface ApplicationSettingsIdentityProvidersArgs {
96
- after?: InputMaybe<Scalars['String']['input']>;
97
- before?: InputMaybe<Scalars['String']['input']>;
98
- first?: InputMaybe<Scalars['Int']['input']>;
99
- last?: InputMaybe<Scalars['Int']['input']>;
100
- }
101
-
102
77
  /** Autogenerated input type of ApplicationSettingsUpdate */
103
78
  export interface ApplicationSettingsUpdateInput {
104
79
  /** Set if admin status can be queried by non-administrators. */
105
80
  adminStatusVisible?: InputMaybe<Scalars['Boolean']['input']>;
106
81
  /** A unique identifier for the client performing the mutation. */
107
82
  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
83
  /** Set if organization creation is restricted to administrators. */
113
84
  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
85
  /** Set if user registration is enabled. */
119
86
  userRegistrationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
120
87
  }
@@ -130,23 +97,6 @@ export interface ApplicationSettingsUpdatePayload {
130
97
  errors?: Maybe<Array<Error>>;
131
98
  }
132
99
 
133
- /** Abilities for the current user on this Application */
134
- export interface ApplicationUserAbilities {
135
- __typename?: 'ApplicationUserAbilities';
136
- /** Shows if the current user has the `create_organization` ability on this Application */
137
- createOrganization?: Maybe<Scalars['Boolean']['output']>;
138
- /** Shows if the current user has the `create_runtime` ability on this Application */
139
- createRuntime?: Maybe<Scalars['Boolean']['output']>;
140
- /** Shows if the current user has the `delete_runtime` ability on this Application */
141
- deleteRuntime?: Maybe<Scalars['Boolean']['output']>;
142
- /** Shows if the current user has the `rotate_runtime_token` ability on this Application */
143
- rotateRuntimeToken?: Maybe<Scalars['Boolean']['output']>;
144
- /** Shows if the current user has the `update_application_setting` ability on this Application */
145
- updateApplicationSetting?: Maybe<Scalars['Boolean']['output']>;
146
- /** Shows if the current user has the `update_runtime` ability on this Application */
147
- updateRuntime?: Maybe<Scalars['Boolean']['output']>;
148
- }
149
-
150
100
  /** Objects that can present an authentication */
151
101
  export type Authentication = UserSession;
152
102
 
@@ -154,11 +104,11 @@ export type Authentication = UserSession;
154
104
  export interface DataType {
155
105
  __typename?: 'DataType';
156
106
  /** Name of the function */
157
- aliases?: Maybe<Array<Translation>>;
107
+ aliases?: Maybe<TranslationConnection>;
158
108
  /** Time when this DataType was created */
159
109
  createdAt?: Maybe<Scalars['Time']['output']>;
160
110
  /** Display message of the function */
161
- displayMessages?: Maybe<Array<Translation>>;
111
+ displayMessages?: Maybe<TranslationConnection>;
162
112
  /** Generic keys of the datatype */
163
113
  genericKeys?: Maybe<Array<Scalars['String']['output']>>;
164
114
  /** Global ID of this DataType */
@@ -166,7 +116,7 @@ export interface DataType {
166
116
  /** The identifier scoped to the namespace */
167
117
  identifier?: Maybe<Scalars['String']['output']>;
168
118
  /** Names of the flow type setting */
169
- name?: Maybe<Array<Translation>>;
119
+ name?: Maybe<TranslationConnection>;
170
120
  /** Rules of the datatype */
171
121
  rules?: Maybe<DataTypeRuleConnection>;
172
122
  /** The runtime where this datatype belongs to */
@@ -178,6 +128,33 @@ export interface DataType {
178
128
  }
179
129
 
180
130
 
131
+ /** Represents a DataType */
132
+ export interface DataTypeAliasesArgs {
133
+ after?: InputMaybe<Scalars['String']['input']>;
134
+ before?: InputMaybe<Scalars['String']['input']>;
135
+ first?: InputMaybe<Scalars['Int']['input']>;
136
+ last?: InputMaybe<Scalars['Int']['input']>;
137
+ }
138
+
139
+
140
+ /** Represents a DataType */
141
+ export interface DataTypeDisplayMessagesArgs {
142
+ after?: InputMaybe<Scalars['String']['input']>;
143
+ before?: InputMaybe<Scalars['String']['input']>;
144
+ first?: InputMaybe<Scalars['Int']['input']>;
145
+ last?: InputMaybe<Scalars['Int']['input']>;
146
+ }
147
+
148
+
149
+ /** Represents a DataType */
150
+ export interface DataTypeNameArgs {
151
+ after?: InputMaybe<Scalars['String']['input']>;
152
+ before?: InputMaybe<Scalars['String']['input']>;
153
+ first?: InputMaybe<Scalars['Int']['input']>;
154
+ last?: InputMaybe<Scalars['Int']['input']>;
155
+ }
156
+
157
+
181
158
  /** Represents a DataType */
182
159
  export interface DataTypeRulesArgs {
183
160
  after?: InputMaybe<Scalars['String']['input']>;
@@ -447,8 +424,6 @@ export const enum ErrorCodeEnum {
447
424
  FlowTypeNotFound = 'FLOW_TYPE_NOT_FOUND',
448
425
  /** The flow validation has failed */
449
426
  FlowValidationFailed = 'FLOW_VALIDATION_FAILED',
450
- /** The id for the function value node does not exist */
451
- FunctionValueNotFound = 'FUNCTION_VALUE_NOT_FOUND',
452
427
  /** The given key was not found in the data type */
453
428
  GenericKeyNotFound = 'GENERIC_KEY_NOT_FOUND',
454
429
  /** The external identity with the given identifier was not found */
@@ -481,10 +456,6 @@ export const enum ErrorCodeEnum {
481
456
  InvalidNamespaceProject = 'INVALID_NAMESPACE_PROJECT',
482
457
  /** The namespace role is invalid because of active model errors */
483
458
  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
459
  /** The organization is invalid because of active model errors */
489
460
  InvalidOrganization = 'INVALID_ORGANIZATION',
490
461
  /** The provided password repeat does not match the password */
@@ -537,8 +508,6 @@ export const enum ErrorCodeEnum {
537
508
  NamespaceProjectNotFound = 'NAMESPACE_PROJECT_NOT_FOUND',
538
509
  /** The namespace role with the given identifier was not found */
539
510
  NamespaceRoleNotFound = 'NAMESPACE_ROLE_NOT_FOUND',
540
- /** The node with this id does not exist */
541
- NodeNotFound = 'NODE_NOT_FOUND',
542
511
  /** No data type identifier could be found for the given generic key */
543
512
  NoDatatypeIdentifierForGenericKey = 'NO_DATATYPE_IDENTIFIER_FOR_GENERIC_KEY',
544
513
  /** No data type could be found for the given identifier */
@@ -594,8 +563,6 @@ export interface Flow {
594
563
  name?: Maybe<Scalars['String']['output']>;
595
564
  /** Nodes of the flow */
596
565
  nodes?: Maybe<NodeFunctionConnection>;
597
- /** The project the flow belongs to */
598
- project?: Maybe<NamespaceProject>;
599
566
  /** The return data type of the flow */
600
567
  returnType?: Maybe<DataType>;
601
568
  /** The settings of the flow */
@@ -713,13 +680,13 @@ export interface FlowSettingInput {
713
680
  export interface FlowType {
714
681
  __typename?: 'FlowType';
715
682
  /** Name of the function */
716
- aliases?: Maybe<Array<Translation>>;
683
+ aliases?: Maybe<TranslationConnection>;
717
684
  /** Time when this FlowType was created */
718
685
  createdAt?: Maybe<Scalars['Time']['output']>;
719
686
  /** Descriptions of the flow type */
720
- descriptions?: Maybe<Array<Translation>>;
687
+ descriptions?: Maybe<TranslationConnection>;
721
688
  /** Display message of the function */
722
- displayMessages?: Maybe<Array<Translation>>;
689
+ displayMessages?: Maybe<TranslationConnection>;
723
690
  /** Editable status of the flow type */
724
691
  editable?: Maybe<Scalars['Boolean']['output']>;
725
692
  /** Flow type settings of the flow type */
@@ -731,15 +698,49 @@ export interface FlowType {
731
698
  /** Input type of the flow type */
732
699
  inputType?: Maybe<DataType>;
733
700
  /** Names of the flow type */
734
- names?: Maybe<Array<Translation>>;
701
+ names?: Maybe<TranslationConnection>;
735
702
  /** Return type of the flow type */
736
703
  returnType?: Maybe<DataType>;
737
- /** Runtime of the flow type */
738
- runtime?: Maybe<Runtime>;
739
704
  /** Time when this FlowType was last updated */
740
705
  updatedAt?: Maybe<Scalars['Time']['output']>;
741
706
  }
742
707
 
708
+
709
+ /** Represents a flow type */
710
+ export interface FlowTypeAliasesArgs {
711
+ after?: InputMaybe<Scalars['String']['input']>;
712
+ before?: InputMaybe<Scalars['String']['input']>;
713
+ first?: InputMaybe<Scalars['Int']['input']>;
714
+ last?: InputMaybe<Scalars['Int']['input']>;
715
+ }
716
+
717
+
718
+ /** Represents a flow type */
719
+ export interface FlowTypeDescriptionsArgs {
720
+ after?: InputMaybe<Scalars['String']['input']>;
721
+ before?: InputMaybe<Scalars['String']['input']>;
722
+ first?: InputMaybe<Scalars['Int']['input']>;
723
+ last?: InputMaybe<Scalars['Int']['input']>;
724
+ }
725
+
726
+
727
+ /** Represents a flow type */
728
+ export interface FlowTypeDisplayMessagesArgs {
729
+ after?: InputMaybe<Scalars['String']['input']>;
730
+ before?: InputMaybe<Scalars['String']['input']>;
731
+ first?: InputMaybe<Scalars['Int']['input']>;
732
+ last?: InputMaybe<Scalars['Int']['input']>;
733
+ }
734
+
735
+
736
+ /** Represents a flow type */
737
+ export interface FlowTypeNamesArgs {
738
+ after?: InputMaybe<Scalars['String']['input']>;
739
+ before?: InputMaybe<Scalars['String']['input']>;
740
+ first?: InputMaybe<Scalars['Int']['input']>;
741
+ last?: InputMaybe<Scalars['Int']['input']>;
742
+ }
743
+
743
744
  /** The connection type for FlowType. */
744
745
  export interface FlowTypeConnection {
745
746
  __typename?: 'FlowTypeConnection';
@@ -770,7 +771,7 @@ export interface FlowTypeSetting {
770
771
  /** Data type of the flow type setting */
771
772
  dataType?: Maybe<DataType>;
772
773
  /** Descriptions of the flow type setting */
773
- descriptions?: Maybe<Array<Translation>>;
774
+ descriptions?: Maybe<TranslationConnection>;
774
775
  /** Flow type of the flow type setting */
775
776
  flowType?: Maybe<FlowType>;
776
777
  /** Global ID of this FlowTypeSetting */
@@ -778,13 +779,31 @@ export interface FlowTypeSetting {
778
779
  /** Identifier of the flow type setting */
779
780
  identifier?: Maybe<Scalars['String']['output']>;
780
781
  /** Names of the flow type setting */
781
- names?: Maybe<Array<Translation>>;
782
+ names?: Maybe<TranslationConnection>;
782
783
  /** Unique status of the flow type setting */
783
784
  unique?: Maybe<Scalars['Boolean']['output']>;
784
785
  /** Time when this FlowTypeSetting was last updated */
785
786
  updatedAt?: Maybe<Scalars['Time']['output']>;
786
787
  }
787
788
 
789
+
790
+ /** Represents a flow type setting */
791
+ export interface FlowTypeSettingDescriptionsArgs {
792
+ after?: InputMaybe<Scalars['String']['input']>;
793
+ before?: InputMaybe<Scalars['String']['input']>;
794
+ first?: InputMaybe<Scalars['Int']['input']>;
795
+ last?: InputMaybe<Scalars['Int']['input']>;
796
+ }
797
+
798
+
799
+ /** Represents a flow type setting */
800
+ export interface FlowTypeSettingNamesArgs {
801
+ after?: InputMaybe<Scalars['String']['input']>;
802
+ before?: InputMaybe<Scalars['String']['input']>;
803
+ first?: InputMaybe<Scalars['Int']['input']>;
804
+ last?: InputMaybe<Scalars['Int']['input']>;
805
+ }
806
+
788
807
  /** Abilities for the current user on this Flow */
789
808
  export interface FlowUserAbilities {
790
809
  __typename?: 'FlowUserAbilities';
@@ -839,17 +858,17 @@ export const enum FlowValidationSeverityEnum {
839
858
  export interface FunctionDefinition {
840
859
  __typename?: 'FunctionDefinition';
841
860
  /** Name of the function */
842
- aliases?: Maybe<Array<Translation>>;
861
+ aliases?: Maybe<TranslationConnection>;
843
862
  /** Time when this FunctionDefinition was created */
844
863
  createdAt?: Maybe<Scalars['Time']['output']>;
845
864
  /** Deprecation message of the function */
846
- deprecationMessages?: Maybe<Array<Translation>>;
865
+ deprecationMessages?: Maybe<TranslationConnection>;
847
866
  /** Description of the function */
848
- descriptions?: Maybe<Array<Translation>>;
867
+ descriptions?: Maybe<TranslationConnection>;
849
868
  /** Display message of the function */
850
- displayMessages?: Maybe<Array<Translation>>;
869
+ displayMessages?: Maybe<TranslationConnection>;
851
870
  /** Documentation of the function */
852
- documentations?: Maybe<Array<Translation>>;
871
+ documentations?: Maybe<TranslationConnection>;
853
872
  /** Generic keys of the function */
854
873
  genericKeys?: Maybe<Array<Scalars['String']['output']>>;
855
874
  /** Global ID of this FunctionDefinition */
@@ -857,7 +876,7 @@ export interface FunctionDefinition {
857
876
  /** Identifier of the function */
858
877
  identifier?: Maybe<Scalars['String']['output']>;
859
878
  /** Name of the function */
860
- names?: Maybe<Array<Translation>>;
879
+ names?: Maybe<TranslationConnection>;
861
880
  /** Parameters of the function */
862
881
  parameterDefinitions?: Maybe<ParameterDefinitionConnection>;
863
882
  /** Return type of the function */
@@ -871,6 +890,60 @@ export interface FunctionDefinition {
871
890
  }
872
891
 
873
892
 
893
+ /** Represents a function definition */
894
+ export interface FunctionDefinitionAliasesArgs {
895
+ after?: InputMaybe<Scalars['String']['input']>;
896
+ before?: InputMaybe<Scalars['String']['input']>;
897
+ first?: InputMaybe<Scalars['Int']['input']>;
898
+ last?: InputMaybe<Scalars['Int']['input']>;
899
+ }
900
+
901
+
902
+ /** Represents a function definition */
903
+ export interface FunctionDefinitionDeprecationMessagesArgs {
904
+ after?: InputMaybe<Scalars['String']['input']>;
905
+ before?: InputMaybe<Scalars['String']['input']>;
906
+ first?: InputMaybe<Scalars['Int']['input']>;
907
+ last?: InputMaybe<Scalars['Int']['input']>;
908
+ }
909
+
910
+
911
+ /** Represents a function definition */
912
+ export interface FunctionDefinitionDescriptionsArgs {
913
+ after?: InputMaybe<Scalars['String']['input']>;
914
+ before?: InputMaybe<Scalars['String']['input']>;
915
+ first?: InputMaybe<Scalars['Int']['input']>;
916
+ last?: InputMaybe<Scalars['Int']['input']>;
917
+ }
918
+
919
+
920
+ /** Represents a function definition */
921
+ export interface FunctionDefinitionDisplayMessagesArgs {
922
+ after?: InputMaybe<Scalars['String']['input']>;
923
+ before?: InputMaybe<Scalars['String']['input']>;
924
+ first?: InputMaybe<Scalars['Int']['input']>;
925
+ last?: InputMaybe<Scalars['Int']['input']>;
926
+ }
927
+
928
+
929
+ /** Represents a function definition */
930
+ export interface FunctionDefinitionDocumentationsArgs {
931
+ after?: InputMaybe<Scalars['String']['input']>;
932
+ before?: InputMaybe<Scalars['String']['input']>;
933
+ first?: InputMaybe<Scalars['Int']['input']>;
934
+ last?: InputMaybe<Scalars['Int']['input']>;
935
+ }
936
+
937
+
938
+ /** Represents a function definition */
939
+ export interface FunctionDefinitionNamesArgs {
940
+ after?: InputMaybe<Scalars['String']['input']>;
941
+ before?: InputMaybe<Scalars['String']['input']>;
942
+ first?: InputMaybe<Scalars['Int']['input']>;
943
+ last?: InputMaybe<Scalars['Int']['input']>;
944
+ }
945
+
946
+
874
947
  /** Represents a function definition */
875
948
  export interface FunctionDefinitionParameterDefinitionsArgs {
876
949
  after?: InputMaybe<Scalars['String']['input']>;
@@ -978,92 +1051,21 @@ export interface IdentityInput {
978
1051
  code?: InputMaybe<Scalars['String']['input']>;
979
1052
  }
980
1053
 
981
- /** Represents an identity provider configuration. */
982
- export interface IdentityProvider {
983
- __typename?: 'IdentityProvider';
984
- /** Configuration details of the identity provider. */
985
- config?: Maybe<IdentityProviderConfig>;
986
- /** Unique identifier of the identity provider. */
987
- id?: Maybe<Scalars['String']['output']>;
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>;
1030
- }
1031
-
1032
- /** An edge in a connection. */
1033
- export interface IdentityProviderEdge {
1034
- __typename?: 'IdentityProviderEdge';
1035
- /** A cursor for use in pagination. */
1036
- cursor?: Maybe<Scalars['String']['output']>;
1037
- /** The item at the end of the edge. */
1038
- node?: Maybe<IdentityProvider>;
1039
- }
1040
-
1041
- /** Input for creating or updating an identity provider */
1042
- export interface IdentityProviderInput {
1043
- /** Configuration for the identity provider */
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'
1054
+ /** Abilities for the current user on this Instance */
1055
+ export interface InstanceUserAbilities {
1056
+ __typename?: 'InstanceUserAbilities';
1057
+ /** Shows if the current user has the `create_organization` ability on this Instance */
1058
+ createOrganization?: Maybe<Scalars['Boolean']['output']>;
1059
+ /** Shows if the current user has the `create_runtime` ability on this Instance */
1060
+ createRuntime?: Maybe<Scalars['Boolean']['output']>;
1061
+ /** Shows if the current user has the `delete_runtime` ability on this Instance */
1062
+ deleteRuntime?: Maybe<Scalars['Boolean']['output']>;
1063
+ /** Shows if the current user has the `rotate_runtime_token` ability on this Instance */
1064
+ rotateRuntimeToken?: Maybe<Scalars['Boolean']['output']>;
1065
+ /** Shows if the current user has the `update_application_setting` ability on this Instance */
1066
+ updateApplicationSetting?: Maybe<Scalars['Boolean']['output']>;
1067
+ /** Shows if the current user has the `update_runtime` ability on this Instance */
1068
+ updateRuntime?: Maybe<Scalars['Boolean']['output']>;
1067
1069
  }
1068
1070
 
1069
1071
  /** Represents a literal value, such as a string or number. */
@@ -1153,8 +1155,6 @@ export interface Mutation {
1153
1155
  namespacesProjectsFlowsCreate?: Maybe<NamespacesProjectsFlowsCreatePayload>;
1154
1156
  /** Deletes a namespace project. */
1155
1157
  namespacesProjectsFlowsDelete?: Maybe<NamespacesProjectsFlowsDeletePayload>;
1156
- /** Update an existing flow. */
1157
- namespacesProjectsFlowsUpdate?: Maybe<NamespacesProjectsFlowsUpdatePayload>;
1158
1158
  /** Updates a namespace project. */
1159
1159
  namespacesProjectsUpdate?: Maybe<NamespacesProjectsUpdatePayload>;
1160
1160
  /** Update the abilities a role is granted. */
@@ -1288,12 +1288,6 @@ export interface MutationNamespacesProjectsFlowsDeleteArgs {
1288
1288
  }
1289
1289
 
1290
1290
 
1291
- /** Root Mutation type */
1292
- export interface MutationNamespacesProjectsFlowsUpdateArgs {
1293
- input: NamespacesProjectsFlowsUpdateInput;
1294
- }
1295
-
1296
-
1297
1291
  /** Root Mutation type */
1298
1292
  export interface MutationNamespacesProjectsUpdateArgs {
1299
1293
  input: NamespacesProjectsUpdateInput;
@@ -1482,8 +1476,6 @@ export interface Namespace {
1482
1476
  namespaceLicenses?: Maybe<NamespaceLicenseConnection>;
1483
1477
  /** Parent of this namespace */
1484
1478
  parent?: Maybe<NamespaceParent>;
1485
- /** Query a project by its id */
1486
- project?: Maybe<NamespaceProject>;
1487
1479
  /** Projects of the namespace */
1488
1480
  projects?: Maybe<NamespaceProjectConnection>;
1489
1481
  /** Roles of the namespace */
@@ -1515,12 +1507,6 @@ export interface NamespaceNamespaceLicensesArgs {
1515
1507
  }
1516
1508
 
1517
1509
 
1518
- /** Represents a Namespace */
1519
- export interface NamespaceProjectArgs {
1520
- id: Scalars['NamespaceProjectID']['input'];
1521
- }
1522
-
1523
-
1524
1510
  /** Represents a Namespace */
1525
1511
  export interface NamespaceProjectsArgs {
1526
1512
  after?: InputMaybe<Scalars['String']['input']>;
@@ -1730,8 +1716,6 @@ export interface NamespaceProject {
1730
1716
  roles?: Maybe<NamespaceRoleConnection>;
1731
1717
  /** Runtimes assigned to this project */
1732
1718
  runtimes?: Maybe<RuntimeConnection>;
1733
- /** Slug of the project used in URLs to identify flows */
1734
- slug?: Maybe<Scalars['String']['output']>;
1735
1719
  /** Time when this NamespaceProject was last updated */
1736
1720
  updatedAt?: Maybe<Scalars['Time']['output']>;
1737
1721
  /** Abilities for the current user on this NamespaceProject */
@@ -2085,8 +2069,6 @@ export interface NamespacesProjectsCreateInput {
2085
2069
  name: Scalars['String']['input'];
2086
2070
  /** The id of the namespace which this project will belong to */
2087
2071
  namespaceId: Scalars['NamespaceID']['input'];
2088
- /** Slug for the new project. */
2089
- slug?: InputMaybe<Scalars['String']['input']>;
2090
2072
  }
2091
2073
 
2092
2074
  /** Autogenerated return type of NamespacesProjectsCreate. */
@@ -2159,27 +2141,6 @@ export interface NamespacesProjectsFlowsDeletePayload {
2159
2141
  flow?: Maybe<Flow>;
2160
2142
  }
2161
2143
 
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
2144
  /** Autogenerated input type of NamespacesProjectsUpdate */
2184
2145
  export interface NamespacesProjectsUpdateInput {
2185
2146
  /** A unique identifier for the client performing the mutation. */
@@ -2192,8 +2153,6 @@ export interface NamespacesProjectsUpdateInput {
2192
2153
  namespaceProjectId: Scalars['NamespaceProjectID']['input'];
2193
2154
  /** The primary runtime for the updated project. */
2194
2155
  primaryRuntimeId?: InputMaybe<Scalars['RuntimeID']['input']>;
2195
- /** Slug for the updated project. */
2196
- slug?: InputMaybe<Scalars['String']['input']>;
2197
2156
  }
2198
2157
 
2199
2158
  /** Autogenerated return type of NamespacesProjectsUpdate. */
@@ -2364,13 +2323,6 @@ export interface NodeFunctionEdge {
2364
2323
  node?: Maybe<NodeFunction>;
2365
2324
  }
2366
2325
 
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
2326
  /** Input type for a Node Function */
2375
2327
  export interface NodeFunctionInput {
2376
2328
  /** The identifier of the Node Function used to create/update the flow */
@@ -2429,37 +2381,18 @@ export interface NodeParameterInput {
2429
2381
  }
2430
2382
 
2431
2383
  /** Represents a parameter value for a node. */
2432
- export type NodeParameterValue = LiteralValue | NodeFunctionIdWrapper | ReferenceValue;
2384
+ export type NodeParameterValue = LiteralValue | NodeFunction | ReferenceValue;
2433
2385
 
2434
2386
  /** Input type for parameter value */
2435
2387
  export interface NodeParameterValueInput {
2388
+ /** The function value of the parameter */
2389
+ functionValue?: InputMaybe<NodeFunctionInput>;
2436
2390
  /** The literal value of the parameter */
2437
2391
  literalValue?: InputMaybe<Scalars['JSON']['input']>;
2438
- /** The function value of the parameter as an id */
2439
- nodeFunctionId?: InputMaybe<Scalars['NodeFunctionID']['input']>;
2440
2392
  /** The reference value of the parameter */
2441
2393
  referenceValue?: InputMaybe<ReferenceValueInput>;
2442
2394
  }
2443
2395
 
2444
- /** Represents an OIDC identity provider configuration */
2445
- export interface OidcIdentityProviderConfig {
2446
- __typename?: 'OidcIdentityProviderConfig';
2447
- /** List of attribute statements for the OIDC identity provider */
2448
- attributeStatements?: Maybe<Scalars['JSON']['output']>;
2449
- /** The authorization URL for the OIDC identity provider */
2450
- authorizationUrl?: Maybe<Scalars['String']['output']>;
2451
- /** The client ID for the OIDC identity provider */
2452
- clientId?: Maybe<Scalars['String']['output']>;
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']>;
2461
- }
2462
-
2463
2396
  /** Represents a Organization */
2464
2397
  export interface Organization {
2465
2398
  __typename?: 'Organization';
@@ -2588,19 +2521,46 @@ export interface ParameterDefinition {
2588
2521
  /** Data type of the parameter */
2589
2522
  dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
2590
2523
  /** Description of the parameter */
2591
- descriptions?: Maybe<Array<Translation>>;
2524
+ descriptions?: Maybe<TranslationConnection>;
2592
2525
  /** Documentation of the parameter */
2593
- documentations?: Maybe<Array<Translation>>;
2526
+ documentations?: Maybe<TranslationConnection>;
2594
2527
  /** Global ID of this ParameterDefinition */
2595
2528
  id?: Maybe<Scalars['ParameterDefinitionID']['output']>;
2596
2529
  /** Identifier of the parameter */
2597
2530
  identifier?: Maybe<Scalars['String']['output']>;
2598
2531
  /** Name of the parameter */
2599
- names?: Maybe<Array<Translation>>;
2532
+ names?: Maybe<TranslationConnection>;
2600
2533
  /** Time when this ParameterDefinition was last updated */
2601
2534
  updatedAt?: Maybe<Scalars['Time']['output']>;
2602
2535
  }
2603
2536
 
2537
+
2538
+ /** Represents a parameter definition */
2539
+ export interface ParameterDefinitionDescriptionsArgs {
2540
+ after?: InputMaybe<Scalars['String']['input']>;
2541
+ before?: InputMaybe<Scalars['String']['input']>;
2542
+ first?: InputMaybe<Scalars['Int']['input']>;
2543
+ last?: InputMaybe<Scalars['Int']['input']>;
2544
+ }
2545
+
2546
+
2547
+ /** Represents a parameter definition */
2548
+ export interface ParameterDefinitionDocumentationsArgs {
2549
+ after?: InputMaybe<Scalars['String']['input']>;
2550
+ before?: InputMaybe<Scalars['String']['input']>;
2551
+ first?: InputMaybe<Scalars['Int']['input']>;
2552
+ last?: InputMaybe<Scalars['Int']['input']>;
2553
+ }
2554
+
2555
+
2556
+ /** Represents a parameter definition */
2557
+ export interface ParameterDefinitionNamesArgs {
2558
+ after?: InputMaybe<Scalars['String']['input']>;
2559
+ before?: InputMaybe<Scalars['String']['input']>;
2560
+ first?: InputMaybe<Scalars['Int']['input']>;
2561
+ last?: InputMaybe<Scalars['Int']['input']>;
2562
+ }
2563
+
2604
2564
  /** The connection type for ParameterDefinition. */
2605
2565
  export interface ParameterDefinitionConnection {
2606
2566
  __typename?: 'ParameterDefinitionConnection';
@@ -2648,6 +2608,8 @@ export interface Query {
2648
2608
  organizations?: Maybe<OrganizationConnection>;
2649
2609
  /** Find a user */
2650
2610
  user?: Maybe<User>;
2611
+ /** Abilities for the current user on this Instance */
2612
+ userAbilities?: Maybe<InstanceUserAbilities>;
2651
2613
  /** Find users */
2652
2614
  users?: Maybe<UserConnection>;
2653
2615
  }
@@ -2790,8 +2752,6 @@ export interface Runtime {
2790
2752
  description?: Maybe<Scalars['String']['output']>;
2791
2753
  /** FlowTypes of the runtime */
2792
2754
  flowTypes?: Maybe<FlowTypeConnection>;
2793
- /** Function definitions of the runtime */
2794
- functionDefinitions?: Maybe<FunctionDefinitionConnection>;
2795
2755
  /** Global ID of this Runtime */
2796
2756
  id?: Maybe<Scalars['RuntimeID']['output']>;
2797
2757
  /** The name for the runtime */
@@ -2829,15 +2789,6 @@ export interface RuntimeFlowTypesArgs {
2829
2789
  }
2830
2790
 
2831
2791
 
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
2792
  /** Represents a runtime */
2842
2793
  export interface RuntimeProjectsArgs {
2843
2794
  after?: InputMaybe<Scalars['String']['input']>;
@@ -2912,8 +2863,6 @@ export interface RuntimeParameterDefinition {
2912
2863
  createdAt?: Maybe<Scalars['Time']['output']>;
2913
2864
  /** Global ID of this RuntimeParameterDefinition */
2914
2865
  id?: Maybe<Scalars['RuntimeParameterDefinitionID']['output']>;
2915
- /** Identifier of the runtime parameter definition */
2916
- identifier?: Maybe<Scalars['String']['output']>;
2917
2866
  /** Time when this RuntimeParameterDefinition was last updated */
2918
2867
  updatedAt?: Maybe<Scalars['Time']['output']>;
2919
2868
  }
@@ -3043,21 +2992,6 @@ export interface RuntimesUpdatePayload {
3043
2992
  runtime?: Maybe<Runtime>;
3044
2993
  }
3045
2994
 
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
2995
  /** Represents a translation */
3062
2996
  export interface Translation {
3063
2997
  __typename?: 'Translation';
@@ -3067,6 +3001,28 @@ export interface Translation {
3067
3001
  content?: Maybe<Scalars['String']['output']>;
3068
3002
  }
3069
3003
 
3004
+ /** The connection type for Translation. */
3005
+ export interface TranslationConnection {
3006
+ __typename?: 'TranslationConnection';
3007
+ /** Total count of collection. */
3008
+ count?: Maybe<Scalars['Int']['output']>;
3009
+ /** A list of edges. */
3010
+ edges?: Maybe<Array<Maybe<TranslationEdge>>>;
3011
+ /** A list of nodes. */
3012
+ nodes?: Maybe<Array<Maybe<Translation>>>;
3013
+ /** Information to aid in pagination. */
3014
+ pageInfo?: Maybe<PageInfo>;
3015
+ }
3016
+
3017
+ /** An edge in a connection. */
3018
+ export interface TranslationEdge {
3019
+ __typename?: 'TranslationEdge';
3020
+ /** A cursor for use in pagination. */
3021
+ cursor?: Maybe<Scalars['String']['output']>;
3022
+ /** The item at the end of the edge. */
3023
+ node?: Maybe<Translation>;
3024
+ }
3025
+
3070
3026
  /** Represents a user */
3071
3027
  export interface User {
3072
3028
  __typename?: 'User';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code0-tech/sagittarius-graphql-types",
3
- "version": "0.0.0-a395eea54741fc1bb9649341ff6f082cc1c3e67e",
3
+ "version": "0.0.0-c63274fdd34593b8aa24f9f977659fd3d6270150",
4
4
  "description": "",
5
5
  "main": "index.d.ts",
6
6
  "types": "index.d.ts",