Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into civicpy
Browse files Browse the repository at this point in the history
  • Loading branch information
susannasiebert committed Oct 29, 2024
2 parents e9f3ccc + ac9cb4e commit 888d44b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 1 deletion.
3 changes: 3 additions & 0 deletions client/src/app/generated/civic.apollo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ export enum ActivitySubjectInput {
Assertion = 'ASSERTION',
Comment = 'COMMENT',
EvidenceItem = 'EVIDENCE_ITEM',
ExonCoordinate = 'EXON_COORDINATE',
Feature = 'FEATURE',
Flag = 'FLAG',
MolecularProfile = 'MOLECULAR_PROFILE',
Expand All @@ -137,6 +138,7 @@ export enum ActivitySubjectInput {
Source = 'SOURCE',
SourceSuggestion = 'SOURCE_SUGGESTION',
Variant = 'VARIANT',
VariantCoordinate = 'VARIANT_COORDINATE',
VariantGroup = 'VARIANT_GROUP'
}

Expand Down Expand Up @@ -5251,6 +5253,7 @@ export type QueryEvidenceItemsArgs = {
evidenceType?: InputMaybe<EvidenceType>;
first?: InputMaybe<Scalars['Int']['input']>;
id?: InputMaybe<Scalars['Int']['input']>;
ids?: InputMaybe<Array<Scalars['Int']['input']>>;
last?: InputMaybe<Scalars['Int']['input']>;
molecularProfileId?: InputMaybe<Scalars['Int']['input']>;
molecularProfileName?: InputMaybe<Scalars['String']['input']>;
Expand Down
2 changes: 2 additions & 0 deletions client/src/app/generated/server.model.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ enum ActivitySubjectInput {
ASSERTION
COMMENT
EVIDENCE_ITEM
EXON_COORDINATE
FEATURE
FLAG
MOLECULAR_PROFILE
Expand All @@ -167,6 +168,7 @@ enum ActivitySubjectInput {
SOURCE
SOURCE_SUGGESTION
VARIANT
VARIANT_COORDINATE
VARIANT_GROUP
}

Expand Down
12 changes: 12 additions & 0 deletions client/src/app/generated/server.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1063,6 +1063,18 @@
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "EXON_COORDINATE",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "VARIANT_COORDINATE",
"description": null,
"isDeprecated": false,
"deprecationReason": null
}
],
"possibleTypes": null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ class ActivitySubjectInputType < Types::BaseEnum
value 'REVISION_SET', value: 'RevisionSet'
value 'COMMENT', value: 'Comment'
value 'EXON_COORDINATE', value: 'ExonCoordinate'
value 'GENE_COORDINATE', value: 'GeneCoordinate'
value 'VARIANT_COORDINATE', value: 'VariantCoordinate'
end
end

0 comments on commit 888d44b

Please sign in to comment.