@code0-tech/sagittarius-graphql-types 0.0.0-968478cecf351385c6c13c2be8aeae5c45da026c → 0.0.0-d5637a7e1c1307a9c89dd85bec0f473486debd23

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 +56 -26
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -105,8 +105,16 @@ export interface ApplicationSettingsUpdateInput {
105
105
  adminStatusVisible?: InputMaybe<Scalars['Boolean']['input']>;
106
106
  /** A unique identifier for the client performing the mutation. */
107
107
  clientMutationId?: InputMaybe<Scalars['String']['input']>;
108
+ /** Set the list of configured identity providers. */
109
+ identityProviders?: InputMaybe<Array<IdentityProviderInput>>;
110
+ /** Set the URL to the legal notice page. */
111
+ legalNoticeUrl?: InputMaybe<Scalars['String']['input']>;
108
112
  /** Set if organization creation is restricted to administrators. */
109
113
  organizationCreationRestricted?: InputMaybe<Scalars['Boolean']['input']>;
114
+ /** Set the URL to the privacy policy page. */
115
+ privacyUrl?: InputMaybe<Scalars['String']['input']>;
116
+ /** Set the URL to the terms and conditions page. */
117
+ termsAndConditionsUrl?: InputMaybe<Scalars['String']['input']>;
110
118
  /** Set if user registration is enabled. */
111
119
  userRegistrationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
112
120
  }
@@ -751,6 +759,8 @@ export interface FlowType {
751
759
  names?: Maybe<TranslationConnection>;
752
760
  /** Return type of the flow type */
753
761
  returnType?: Maybe<DataType>;
762
+ /** Runtime of the flow type */
763
+ runtime?: Maybe<Runtime>;
754
764
  /** Time when this FlowType was last updated */
755
765
  updatedAt?: Maybe<Scalars['Time']['output']>;
756
766
  }
@@ -1115,6 +1125,30 @@ export interface IdentityProvider {
1115
1125
  /** Represents the configuration of an identity provider. */
1116
1126
  export type IdentityProviderConfig = OidcIdentityProviderConfig | SamlIdentityProviderConfig;
1117
1127
 
1128
+ /** Input for identity provider configuration. Contains fields for both OIDC and SAML. */
1129
+ export interface IdentityProviderConfigInput {
1130
+ /** List of attribute statements for the identity provider */
1131
+ attributeStatements?: InputMaybe<Scalars['JSON']['input']>;
1132
+ /** The authorization URL for the OIDC identity provider */
1133
+ authorizationUrl?: InputMaybe<Scalars['String']['input']>;
1134
+ /** The client ID for the OIDC identity provider */
1135
+ clientId?: InputMaybe<Scalars['String']['input']>;
1136
+ /** The client secret for the OIDC identity provider */
1137
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
1138
+ /** Optional metadata URL to fetch metadata (alternative to settings) */
1139
+ metadataUrl?: InputMaybe<Scalars['String']['input']>;
1140
+ /** The name of the identity provider */
1141
+ providerName?: InputMaybe<Scalars['String']['input']>;
1142
+ /** The redirect URI for the OIDC identity provider */
1143
+ redirectUri?: InputMaybe<Scalars['String']['input']>;
1144
+ /** The SAML response settings for the identity provider */
1145
+ responseSettings?: InputMaybe<Scalars['JSON']['input']>;
1146
+ /** The SAML settings for the identity provider */
1147
+ settings?: InputMaybe<Scalars['JSON']['input']>;
1148
+ /** The user details URL for the OIDC identity provider */
1149
+ userDetailsUrl?: InputMaybe<Scalars['String']['input']>;
1150
+ }
1151
+
1118
1152
  /** The connection type for IdentityProvider. */
1119
1153
  export interface IdentityProviderConnection {
1120
1154
  __typename?: 'IdentityProviderConnection';
@@ -1137,6 +1171,16 @@ export interface IdentityProviderEdge {
1137
1171
  node?: Maybe<IdentityProvider>;
1138
1172
  }
1139
1173
 
1174
+ /** Input for creating or updating an identity provider */
1175
+ export interface IdentityProviderInput {
1176
+ /** Configuration for the identity provider */
1177
+ config: IdentityProviderConfigInput;
1178
+ /** Unique identifier of the identity provider */
1179
+ id: Scalars['String']['input'];
1180
+ /** Type of the identity provider */
1181
+ type: IdentityProviderType;
1182
+ }
1183
+
1140
1184
  /** The available identity provider types. */
1141
1185
  export const enum IdentityProviderType {
1142
1186
  /** Identity provider of type discord */
@@ -1569,6 +1613,8 @@ export interface Namespace {
1569
1613
  namespaceLicenses?: Maybe<NamespaceLicenseConnection>;
1570
1614
  /** Parent of this namespace */
1571
1615
  parent?: Maybe<NamespaceParent>;
1616
+ /** Query a project by its id */
1617
+ project?: Maybe<NamespaceProject>;
1572
1618
  /** Projects of the namespace */
1573
1619
  projects?: Maybe<NamespaceProjectConnection>;
1574
1620
  /** Roles of the namespace */
@@ -1600,6 +1646,12 @@ export interface NamespaceNamespaceLicensesArgs {
1600
1646
  }
1601
1647
 
1602
1648
 
1649
+ /** Represents a Namespace */
1650
+ export interface NamespaceProjectArgs {
1651
+ id: Scalars['NamespaceProjectID']['input'];
1652
+ }
1653
+
1654
+
1603
1655
  /** Represents a Namespace */
1604
1656
  export interface NamespaceProjectsArgs {
1605
1657
  after?: InputMaybe<Scalars['String']['input']>;
@@ -2890,6 +2942,8 @@ export interface Runtime {
2890
2942
  description?: Maybe<Scalars['String']['output']>;
2891
2943
  /** FlowTypes of the runtime */
2892
2944
  flowTypes?: Maybe<FlowTypeConnection>;
2945
+ /** Function definitions of the runtime */
2946
+ functionDefinitions?: Maybe<FunctionDefinitionConnection>;
2893
2947
  /** Global ID of this Runtime */
2894
2948
  id?: Maybe<Scalars['RuntimeID']['output']>;
2895
2949
  /** The name for the runtime */
@@ -2898,8 +2952,6 @@ export interface Runtime {
2898
2952
  namespace?: Maybe<Namespace>;
2899
2953
  /** Projects associated with the runtime */
2900
2954
  projects?: Maybe<NamespaceProjectConnection>;
2901
- /** Functions of the runtime */
2902
- runtimeFunctionDefinitions?: Maybe<RuntimeFunctionDefinitionConnection>;
2903
2955
  /** The status of the runtime */
2904
2956
  status?: Maybe<RuntimeStatusType>;
2905
2957
  /** Token belonging to the runtime, only present on creation */
@@ -2930,7 +2982,7 @@ export interface RuntimeFlowTypesArgs {
2930
2982
 
2931
2983
 
2932
2984
  /** Represents a runtime */
2933
- export interface RuntimeProjectsArgs {
2985
+ export interface RuntimeFunctionDefinitionsArgs {
2934
2986
  after?: InputMaybe<Scalars['String']['input']>;
2935
2987
  before?: InputMaybe<Scalars['String']['input']>;
2936
2988
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -2939,7 +2991,7 @@ export interface RuntimeProjectsArgs {
2939
2991
 
2940
2992
 
2941
2993
  /** Represents a runtime */
2942
- export interface RuntimeRuntimeFunctionDefinitionsArgs {
2994
+ export interface RuntimeProjectsArgs {
2943
2995
  after?: InputMaybe<Scalars['String']['input']>;
2944
2996
  before?: InputMaybe<Scalars['String']['input']>;
2945
2997
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -3005,28 +3057,6 @@ export interface RuntimeFunctionDefinitionRuntimeParameterDefinitionsArgs {
3005
3057
  last?: InputMaybe<Scalars['Int']['input']>;
3006
3058
  }
3007
3059
 
3008
- /** The connection type for RuntimeFunctionDefinition. */
3009
- export interface RuntimeFunctionDefinitionConnection {
3010
- __typename?: 'RuntimeFunctionDefinitionConnection';
3011
- /** Total count of collection. */
3012
- count?: Maybe<Scalars['Int']['output']>;
3013
- /** A list of edges. */
3014
- edges?: Maybe<Array<Maybe<RuntimeFunctionDefinitionEdge>>>;
3015
- /** A list of nodes. */
3016
- nodes?: Maybe<Array<Maybe<RuntimeFunctionDefinition>>>;
3017
- /** Information to aid in pagination. */
3018
- pageInfo?: Maybe<PageInfo>;
3019
- }
3020
-
3021
- /** An edge in a connection. */
3022
- export interface RuntimeFunctionDefinitionEdge {
3023
- __typename?: 'RuntimeFunctionDefinitionEdge';
3024
- /** A cursor for use in pagination. */
3025
- cursor?: Maybe<Scalars['String']['output']>;
3026
- /** The item at the end of the edge. */
3027
- node?: Maybe<RuntimeFunctionDefinition>;
3028
- }
3029
-
3030
3060
  /** Represents a runtime parameter definition */
3031
3061
  export interface RuntimeParameterDefinition {
3032
3062
  __typename?: 'RuntimeParameterDefinition';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code0-tech/sagittarius-graphql-types",
3
- "version": "0.0.0-968478cecf351385c6c13c2be8aeae5c45da026c",
3
+ "version": "0.0.0-d5637a7e1c1307a9c89dd85bec0f473486debd23",
4
4
  "description": "",
5
5
  "main": "index.d.ts",
6
6
  "types": "index.d.ts",