@code0-tech/sagittarius-graphql-types 0.0.0-4274ec7fd0a5bda56f11bb12be1ba5f30a79252d → 0.0.0-a395eea54741fc1bb9649341ff6f082cc1c3e67e

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 +10 -56
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -157,8 +157,6 @@ export interface DataType {
157
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>;
162
160
  /** Display message of the function */
163
161
  displayMessages?: Maybe<Array<Translation>>;
164
162
  /** Generic keys of the datatype */
@@ -180,15 +178,6 @@ export interface DataType {
180
178
  }
181
179
 
182
180
 
183
- /** Represents a DataType */
184
- export interface DataTypeDataTypeIdentifiersArgs {
185
- after?: InputMaybe<Scalars['String']['input']>;
186
- before?: InputMaybe<Scalars['String']['input']>;
187
- first?: InputMaybe<Scalars['Int']['input']>;
188
- last?: InputMaybe<Scalars['Int']['input']>;
189
- }
190
-
191
-
192
181
  /** Represents a DataType */
193
182
  export interface DataTypeRulesArgs {
194
183
  after?: InputMaybe<Scalars['String']['input']>;
@@ -236,28 +225,6 @@ export interface DataTypeIdentifier {
236
225
  updatedAt?: Maybe<Scalars['Time']['output']>;
237
226
  }
238
227
 
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
-
261
228
  /** Input type for data type identifier */
262
229
  export interface DataTypeIdentifierInput {
263
230
  /** Data type ID */
@@ -311,8 +278,8 @@ export type DataTypeRulesConfig = DataTypeRulesContainsKeyConfig | DataTypeRules
311
278
  /** Represents a rule that can be applied to a data type. */
312
279
  export interface DataTypeRulesContainsKeyConfig {
313
280
  __typename?: 'DataTypeRulesContainsKeyConfig';
314
- /** ID of the identifier of the data type this rule belongs to */
315
- dataTypeIdentifierId?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
281
+ /** The identifier of the data type this rule belongs to */
282
+ dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
316
283
  /** The key of the rule */
317
284
  key?: Maybe<Scalars['String']['output']>;
318
285
  }
@@ -320,15 +287,15 @@ export interface DataTypeRulesContainsKeyConfig {
320
287
  /** Represents a rule that can be applied to a data type. */
321
288
  export interface DataTypeRulesContainsTypeConfig {
322
289
  __typename?: 'DataTypeRulesContainsTypeConfig';
323
- /** ID of the identifier of the data type this rule belongs to */
324
- dataTypeIdentifierId?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
290
+ /** The identifier of the data type this rule belongs to */
291
+ dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
325
292
  }
326
293
 
327
294
  /** Represents a subtype of input type configuration for a input data type. */
328
295
  export interface DataTypeRulesInputTypeConfig {
329
296
  __typename?: 'DataTypeRulesInputTypeConfig';
330
- /** ID of the identifier of the data type this input type belongs to */
331
- dataTypeIdentifierId?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
297
+ /** The identifier of the data type this input type belongs to */
298
+ dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
332
299
  /** The input identifier that this configuration applies to */
333
300
  inputIdentifier?: Maybe<Scalars['String']['output']>;
334
301
  }
@@ -361,8 +328,8 @@ export interface DataTypeRulesNumberRangeConfig {
361
328
  /** Represents a rule that can be applied to a data type. */
362
329
  export interface DataTypeRulesParentTypeConfig {
363
330
  __typename?: 'DataTypeRulesParentTypeConfig';
364
- /** ID of the data type identifier for the parent type. */
365
- dataTypeIdentifierId?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
331
+ /** The data type identifier for the parent type. */
332
+ dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
366
333
  }
367
334
 
368
335
  /** Represents a rule that can be applied to a data type. */
@@ -376,7 +343,7 @@ export interface DataTypeRulesRegexConfig {
376
343
  export interface DataTypeRulesReturnTypeConfig {
377
344
  __typename?: 'DataTypeRulesReturnTypeConfig';
378
345
  /** The data type identifier for the return type. */
379
- dataTypeIdentifierId?: Maybe<Scalars['DataTypeIdentifierID']['output']>;
346
+ dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
380
347
  }
381
348
 
382
349
  /** The type of rule that can be applied to a data type. */
@@ -502,8 +469,6 @@ export const enum ErrorCodeEnum {
502
469
  InvalidFlowSetting = 'INVALID_FLOW_SETTING',
503
470
  /** The flow type is invalid because of active model errors */
504
471
  InvalidFlowType = 'INVALID_FLOW_TYPE',
505
- /** The flow type setting is invalid because of active model errors */
506
- InvalidFlowTypeSetting = 'INVALID_FLOW_TYPE_SETTING',
507
472
  /** The generic mapper is invalid because of active model errors */
508
473
  InvalidGenericMapper = 'INVALID_GENERIC_MAPPER',
509
474
  /** Invalid login data provided */
@@ -877,8 +842,6 @@ export interface FunctionDefinition {
877
842
  aliases?: Maybe<Array<Translation>>;
878
843
  /** Time when this FunctionDefinition was created */
879
844
  createdAt?: Maybe<Scalars['Time']['output']>;
880
- /** All data type identifiers used within this Node Function */
881
- dataTypeIdentifiers?: Maybe<DataTypeIdentifierConnection>;
882
845
  /** Deprecation message of the function */
883
846
  deprecationMessages?: Maybe<Array<Translation>>;
884
847
  /** Description of the function */
@@ -908,15 +871,6 @@ export interface FunctionDefinition {
908
871
  }
909
872
 
910
873
 
911
- /** Represents a function definition */
912
- export interface FunctionDefinitionDataTypeIdentifiersArgs {
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
874
  /** Represents a function definition */
921
875
  export interface FunctionDefinitionParameterDefinitionsArgs {
922
876
  after?: InputMaybe<Scalars['String']['input']>;
@@ -980,7 +934,7 @@ export interface GenericMapper {
980
934
  /** Global ID of this GenericMapper */
981
935
  id?: Maybe<Scalars['GenericMapperID']['output']>;
982
936
  /** The source data type identifier. */
983
- sourceDataTypeIdentifierIds?: Maybe<Array<Scalars['DataTypeIdentifierID']['output']>>;
937
+ sourceDataTypeIdentifiers?: Maybe<Array<DataTypeIdentifier>>;
984
938
  /** The target key for the generic value. */
985
939
  target?: Maybe<Scalars['String']['output']>;
986
940
  /** Time when this GenericMapper was last updated */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code0-tech/sagittarius-graphql-types",
3
- "version": "0.0.0-4274ec7fd0a5bda56f11bb12be1ba5f30a79252d",
3
+ "version": "0.0.0-a395eea54741fc1bb9649341ff6f082cc1c3e67e",
4
4
  "description": "",
5
5
  "main": "index.d.ts",
6
6
  "types": "index.d.ts",