@code0-tech/sagittarius-graphql-types 0.0.0-7d24b48c8b78d8f07d3805cd04b406334b0784d4 → 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.
- package/index.d.ts +1 -36
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -225,28 +225,6 @@ export interface DataTypeIdentifier {
|
|
|
225
225
|
updatedAt?: Maybe<Scalars['Time']['output']>;
|
|
226
226
|
}
|
|
227
227
|
|
|
228
|
-
/** The connection type for DataTypeIdentifier. */
|
|
229
|
-
export interface DataTypeIdentifierConnection {
|
|
230
|
-
__typename?: 'DataTypeIdentifierConnection';
|
|
231
|
-
/** Total count of collection. */
|
|
232
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
233
|
-
/** A list of edges. */
|
|
234
|
-
edges?: Maybe<Array<Maybe<DataTypeIdentifierEdge>>>;
|
|
235
|
-
/** A list of nodes. */
|
|
236
|
-
nodes?: Maybe<Array<Maybe<DataTypeIdentifier>>>;
|
|
237
|
-
/** Information to aid in pagination. */
|
|
238
|
-
pageInfo?: Maybe<PageInfo>;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
/** An edge in a connection. */
|
|
242
|
-
export interface DataTypeIdentifierEdge {
|
|
243
|
-
__typename?: 'DataTypeIdentifierEdge';
|
|
244
|
-
/** A cursor for use in pagination. */
|
|
245
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
246
|
-
/** The item at the end of the edge. */
|
|
247
|
-
node?: Maybe<DataTypeIdentifier>;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
228
|
/** Input type for data type identifier */
|
|
251
229
|
export interface DataTypeIdentifierInput {
|
|
252
230
|
/** Data type ID */
|
|
@@ -491,8 +469,6 @@ export const enum ErrorCodeEnum {
|
|
|
491
469
|
InvalidFlowSetting = 'INVALID_FLOW_SETTING',
|
|
492
470
|
/** The flow type is invalid because of active model errors */
|
|
493
471
|
InvalidFlowType = 'INVALID_FLOW_TYPE',
|
|
494
|
-
/** The flow type setting is invalid because of active model errors */
|
|
495
|
-
InvalidFlowTypeSetting = 'INVALID_FLOW_TYPE_SETTING',
|
|
496
472
|
/** The generic mapper is invalid because of active model errors */
|
|
497
473
|
InvalidGenericMapper = 'INVALID_GENERIC_MAPPER',
|
|
498
474
|
/** Invalid login data provided */
|
|
@@ -866,8 +842,6 @@ export interface FunctionDefinition {
|
|
|
866
842
|
aliases?: Maybe<Array<Translation>>;
|
|
867
843
|
/** Time when this FunctionDefinition was created */
|
|
868
844
|
createdAt?: Maybe<Scalars['Time']['output']>;
|
|
869
|
-
/** All data type identifiers used within this Node Function */
|
|
870
|
-
dataTypeIdentifiers?: Maybe<DataTypeIdentifierConnection>;
|
|
871
845
|
/** Deprecation message of the function */
|
|
872
846
|
deprecationMessages?: Maybe<Array<Translation>>;
|
|
873
847
|
/** Description of the function */
|
|
@@ -897,15 +871,6 @@ export interface FunctionDefinition {
|
|
|
897
871
|
}
|
|
898
872
|
|
|
899
873
|
|
|
900
|
-
/** Represents a function definition */
|
|
901
|
-
export interface FunctionDefinitionDataTypeIdentifiersArgs {
|
|
902
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
903
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
904
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
905
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
906
|
-
}
|
|
907
|
-
|
|
908
|
-
|
|
909
874
|
/** Represents a function definition */
|
|
910
875
|
export interface FunctionDefinitionParameterDefinitionsArgs {
|
|
911
876
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -969,7 +934,7 @@ export interface GenericMapper {
|
|
|
969
934
|
/** Global ID of this GenericMapper */
|
|
970
935
|
id?: Maybe<Scalars['GenericMapperID']['output']>;
|
|
971
936
|
/** The source data type identifier. */
|
|
972
|
-
|
|
937
|
+
sourceDataTypeIdentifiers?: Maybe<Array<DataTypeIdentifier>>;
|
|
973
938
|
/** The target key for the generic value. */
|
|
974
939
|
target?: Maybe<Scalars['String']['output']>;
|
|
975
940
|
/** Time when this GenericMapper was last updated */
|
package/package.json
CHANGED